Skip to content

Commit 43f5744

Browse files
authored
Merge pull request #3329 from aws/release-v1.74.0
Release 1.74.0 (to main)
2 parents 35ecafc + 6d23b0f commit 43f5744

File tree

150 files changed

+1310
-230
lines changed

Some content is hidden

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

150 files changed

+1310
-230
lines changed

integration/resources/templates/combination/api_with_authorizer_apikey.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Resources:
1414
Type: AWS::Serverless::Function
1515
Properties:
1616
Handler: index.handler
17-
Runtime: nodejs14.x
17+
Runtime: nodejs16.x
1818
InlineCode: |
1919
exports.handler = async (event, context, callback) => {
2020
return {
@@ -45,7 +45,7 @@ Resources:
4545
Type: AWS::Serverless::Function
4646
Properties:
4747
Handler: index.handler
48-
Runtime: nodejs14.x
48+
Runtime: nodejs16.x
4949
InlineCode: |
5050
exports.handler = async (event, context, callback) => {
5151
console.log(event);

integration/resources/templates/combination/api_with_authorizers_invokefunction_set_none.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Resources:
3131
InlineCode: |
3232
print("hello")
3333
Handler: index.handler
34-
Runtime: nodejs14.x
34+
Runtime: nodejs16.x
3535
Events:
3636
API3:
3737
Type: Api
@@ -50,7 +50,7 @@ Resources:
5050
InlineCode: |
5151
print("hello")
5252
Handler: index.handler
53-
Runtime: nodejs14.x
53+
Runtime: nodejs16.x
5454
Events:
5555
MyApiWithAwsIamAuth:
5656
Type: Api

integration/resources/templates/combination/api_with_authorizers_max.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Resources:
4343
Type: AWS::Serverless::Function
4444
Properties:
4545
Handler: index.handler
46-
Runtime: nodejs14.x
46+
Runtime: nodejs16.x
4747
InlineCode: |
4848
exports.handler = async (event, context, callback) => {
4949
return {
@@ -101,7 +101,7 @@ Resources:
101101
Type: AWS::Serverless::Function
102102
Properties:
103103
Handler: index.handler
104-
Runtime: nodejs14.x
104+
Runtime: nodejs16.x
105105
InlineCode: |
106106
exports.handler = async (event, context, callback) => {
107107
const token = event.type === 'TOKEN' ? event.authorizationToken : event.queryStringParameters.authorization

integration/resources/templates/combination/api_with_authorizers_max_openapi.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Resources:
4646
Type: AWS::Serverless::Function
4747
Properties:
4848
Handler: index.handler
49-
Runtime: nodejs14.x
49+
Runtime: nodejs16.x
5050
InlineCode: |
5151
exports.handler = async (event, context, callback) => {
5252
return {
@@ -114,7 +114,7 @@ Resources:
114114
Type: AWS::Serverless::Function
115115
Properties:
116116
Handler: index.handler
117-
Runtime: nodejs14.x
117+
Runtime: nodejs16.x
118118
InlineCode: |
119119
exports.handler = async (event, context, callback) => {
120120
const token = event.type === 'TOKEN' ? event.authorizationToken : event.queryStringParameters.authorization

integration/resources/templates/combination/api_with_authorizers_min.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Resources:
2323
Type: AWS::Serverless::Function
2424
Properties:
2525
Handler: index.handler
26-
Runtime: nodejs14.x
26+
Runtime: nodejs16.x
2727
InlineCode: |
2828
exports.handler = async (event, context, callback) => {
2929
return {
@@ -80,7 +80,7 @@ Resources:
8080
Type: AWS::Serverless::Function
8181
Properties:
8282
Handler: index.handler
83-
Runtime: nodejs14.x
83+
Runtime: nodejs16.x
8484
InlineCode: |
8585
exports.handler = async (event, context, callback) => {
8686
const token = event.type === 'TOKEN' ? event.authorizationToken : event.queryStringParameters.authorization

integration/resources/templates/combination/api_with_binary_media_types_with_definition_body_openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Resources:
5151
Type: AWS::Serverless::Function
5252
Properties:
5353
Handler: index.handler
54-
Runtime: nodejs14.x
54+
Runtime: nodejs16.x
5555
CodeUri:
5656
Bucket:
5757
Ref: Bucket

integration/resources/templates/combination/api_with_cors.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Resources:
2222
Type: AWS::Serverless::Function
2323
Properties:
2424
Handler: index.handler
25-
Runtime: nodejs14.x
25+
Runtime: nodejs16.x
2626
CodeUri: ${codeuri}
2727
MemorySize: 128
2828

integration/resources/templates/combination/api_with_cors_only_headers.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Resources:
2424
Type: AWS::Serverless::Function
2525
Properties:
2626
Handler: index.handler
27-
Runtime: nodejs14.x
27+
Runtime: nodejs16.x
2828
CodeUri: ${codeuri}
2929
MemorySize: 128
3030

integration/resources/templates/combination/api_with_cors_only_max_age.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Resources:
2424
Type: AWS::Serverless::Function
2525
Properties:
2626
Handler: index.handler
27-
Runtime: nodejs14.x
27+
Runtime: nodejs16.x
2828
CodeUri: ${codeuri}
2929
MemorySize: 128
3030

integration/resources/templates/combination/api_with_cors_only_methods.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Resources:
2424
Type: AWS::Serverless::Function
2525
Properties:
2626
Handler: index.handler
27-
Runtime: nodejs14.x
27+
Runtime: nodejs16.x
2828
CodeUri: ${codeuri}
2929
MemorySize: 128
3030

0 commit comments

Comments
 (0)