Skip to content

Commit 0c52338

Browse files
authored
feat: Update framework and runtime versions (serverless#747)
1 parent ad56e06 commit 0c52338

File tree

125 files changed

+262
-1539
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

125 files changed

+262
-1539
lines changed

aws-golang-http-get-post/serverless.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ service: goservice # NOTE: update this with your service name
1616
# You can pin your service to only deploy with a specific Serverless version
1717
# Check out our docs for more details
1818
# frameworkVersion: "=X.X.X"
19-
frameworkVersion: ">=2.24.0"
19+
frameworkVersion: "3"
2020

2121
provider:
2222
name: aws

aws-golang-rest-api-with-dynamodb/serverless.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
app: aws-golang-rest-api-with-dynamodb
22
service: aws-golang-rest-api-with-dynamodb
33

4-
frameworkVersion: ">=2.24.0"
4+
frameworkVersion: "3"
55

66
provider:
77
name: aws

aws-golang-s3-file-replicator/serverless.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
service: aws-golang-s3-file-replicator
2-
frameworkVersion: ">=2.24.0"
2+
frameworkVersion: "3"
33

44
custom:
55
inputBucket: replicator-input-101

aws-golang-stream-kinesis-to-elasticsearch/serverless.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
service: aws-golang-kinesis-to-elasticsearch
22

3-
frameworkVersion: ">=1.28.0 <2.0.0"
3+
frameworkVersion: "3"
44

55
provider:
66
name: aws

aws-java-simple-http-endpoint/serverless.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
service: aws-java-simple-http-endpoint
2-
frameworkVersion: '2'
2+
frameworkVersion: '3'
33

44
provider:
55
name: aws

aws-multiple-runtime/serverless.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ provider:
44

55
functions:
66
hello:
7-
runtime: python3.6
7+
runtime: python3.9
88
events:
99
- httpApi:
1010
method: get

aws-node-alexa-skill/serverless.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
service: aws-node-alexa-skill
22

3-
frameworkVersion: ">=1.4.0 <2.0.0"
3+
frameworkVersion: "3"
44

55
provider:
66
name: aws
7-
runtime: nodejs12.x
7+
runtime: nodejs18.x
88

99
functions:
1010
luckyNumber:

aws-node-auth0-cognito-custom-authorizers-api/serverless.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11

22
service: aws-node-auth0-cognito-custom-authorizers-api
33

4+
frameworkVersion: "3"
5+
46
provider:
57
name: aws
6-
runtime: nodejs12.x
8+
runtime: nodejs18.x
79

810
functions:
911
publicEndpoint:

aws-node-auth0-custom-authorizers-api/serverless.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11

22
service: aws-custom-authorizer-auth0
33

4+
frameworkVersion: "3"
5+
46
plugins:
57
- serverless-offline
68

79
provider:
810
name: aws
9-
runtime: nodejs12.x
11+
runtime: nodejs18.x
1012
region: us-west-2
1113
environment:
1214
AUTH0_CLIENT_ID: ${file(./secrets.json):AUTH0_CLIENT_ID}

aws-node-dynamic-image-resizer/serverless.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
service:
22
name: ${self:custom.serviceName}
33

4+
frameworkVersion: "3"
5+
46
plugins:
57
- serverless-offline
68
- serverless-webpack
79

810
provider:
911
name: aws
10-
runtime: nodejs12.x
12+
runtime: nodejs18.x
1113
profile: dev-fii
1214

1315
usagePlan:

0 commit comments

Comments
 (0)