Skip to content

Commit 770a7ea

Browse files
authored
Merge pull request #3457 from aws/release-v1.82.0
Release 1.82.0 (to main)
2 parents b164667 + 500895f commit 770a7ea

File tree

234 files changed

+316
-316
lines changed

Some content is hidden

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

234 files changed

+316
-316
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Resources:
2626
MyFunction:
2727
Type: AWS::Serverless::Function
2828
Properties:
29-
Runtime: nodejs16.x
29+
Runtime: nodejs18.x
3030
Handler: index.handler
3131
InlineCode: |
3232
exports.handler = async (event) => {
@@ -56,7 +56,7 @@ Resources:
5656
}
5757
Handler: index.handler
5858
Role: !GetAtt MyFunctionRole.Arn
59-
Runtime: nodejs16.x
59+
Runtime: nodejs18.x
6060
Tags:
6161
- Key: lambda:createdBy
6262
Value: SAM

samtranslator/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.81.0"
1+
__version__ = "1.82.0"

tests/translator/input/api_merge_definitions_global.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Resources:
3131
Type: AWS::Serverless::Function
3232
Properties:
3333
Handler: index.handler
34-
Runtime: nodejs14.x
34+
Runtime: nodejs18.x
3535
InlineCode: |
3636
exports.handler = async (event, context, callback) => {
3737
return {

tests/translator/input/api_merge_definitions_with_conflicting_auth.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Resources:
2828
Type: AWS::Serverless::Function
2929
Properties:
3030
Handler: index.handler
31-
Runtime: nodejs14.x
31+
Runtime: nodejs18.x
3232
InlineCode: |
3333
exports.handler = async (event, context, callback) => {
3434
return {

tests/translator/input/api_merge_definitions_with_conflicting_methods.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Resources:
2727
Type: AWS::Serverless::Function
2828
Properties:
2929
Handler: index.handler
30-
Runtime: nodejs14.x
30+
Runtime: nodejs18.x
3131
InlineCode: |
3232
exports.handler = async (event, context, callback) => {
3333
return {

tests/translator/input/api_merge_definitions_with_conflicting_request_models.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Resources:
3535
Type: AWS::Serverless::Function
3636
Properties:
3737
Handler: index.handler
38-
Runtime: nodejs14.x
38+
Runtime: nodejs18.x
3939
InlineCode: |
4040
exports.handler = async (event, context, callback) => {
4141
return {

tests/translator/input/api_merge_definitions_with_different_methods.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Resources:
2727
Type: AWS::Serverless::Function
2828
Properties:
2929
Handler: index.handler
30-
Runtime: nodejs14.x
30+
Runtime: nodejs18.x
3131
InlineCode: |
3232
exports.handler = async (event, context, callback) => {
3333
return {

tests/translator/input/api_merge_definitions_with_full_properties.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Resources:
4949
Type: AWS::Serverless::Function
5050
Properties:
5151
Handler: index.handler
52-
Runtime: nodejs14.x
52+
Runtime: nodejs18.x
5353
InlineCode: |
5454
exports.handler = async (event, context, callback) => {
5555
return {

tests/translator/input/api_with_custom_domain_regional.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Resources:
3838
return response;
3939
};
4040
Handler: index.handler
41-
Runtime: nodejs14.x
41+
Runtime: nodejs18.x
4242
Events:
4343
ImplicitGet:
4444
Type: Api

tests/translator/input/api_with_custom_domains_edge.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Resources:
1919
return response;
2020
};
2121
Handler: index.handler
22-
Runtime: nodejs14.x
22+
Runtime: nodejs18.x
2323
Events:
2424
Fetch:
2525
Type: Api

tests/translator/input/api_with_custom_domains_regional.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Resources:
3838
return response;
3939
};
4040
Handler: index.handler
41-
Runtime: nodejs14.x
41+
Runtime: nodejs18.x
4242
Events:
4343
ImplicitGet:
4444
Type: Api

tests/translator/input/api_with_custom_domains_regional_latency_routing.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Resources:
4141
return response;
4242
};
4343
Handler: index.handler
44-
Runtime: nodejs14.x
44+
Runtime: nodejs18.x
4545
Events:
4646
ImplicitGet:
4747
Type: Api

tests/translator/input/api_with_custom_domains_regional_latency_routing_ipv6.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Resources:
4242
return response;
4343
};
4444
Handler: index.handler
45-
Runtime: nodejs14.x
45+
Runtime: nodejs18.x
4646
Events:
4747
ImplicitGet:
4848
Type: Api

tests/translator/input/api_with_custom_domains_regional_ownership_verification.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Resources:
4242
return response;
4343
};
4444
Handler: index.handler
45-
Runtime: nodejs14.x
45+
Runtime: nodejs18.x
4646
Events:
4747
ImplicitGet:
4848
Type: Api

tests/translator/input/api_with_request_parameters_openapi.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Resources:
2929
});
3030
}
3131
Handler: index.handler
32-
Runtime: nodejs14.x
32+
Runtime: nodejs18.x
3333
Events:
3434
GetHtml:
3535
Type: Api

tests/translator/input/congito_userpool_with_sms_configuration.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Resources:
44
Properties:
55
CodeUri: s3://bucket/key
66
Handler: app.handler
7-
Runtime: nodejs14.x
7+
Runtime: nodejs18.x
88
Events:
99
CognitoUserPoolPreSignup:
1010
Type: Cognito

tests/translator/input/connector_api_to_function.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Resources:
3434
MyServerlessFunction:
3535
Type: AWS::Serverless::Function
3636
Properties:
37-
Runtime: nodejs14.x
37+
Runtime: nodejs18.x
3838
Handler: index.handler
3939
InlineCode: |
4040
const AWS = require('aws-sdk');
@@ -58,7 +58,7 @@ Resources:
5858
Type: AWS::Lambda::Function
5959
Properties:
6060
Role: !GetAtt MyRole.Arn
61-
Runtime: nodejs14.x
61+
Runtime: nodejs18.x
6262
Handler: index.handler
6363
Code:
6464
ZipFile: |

tests/translator/input/connector_api_to_multiple_function.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Resources:
77
MyServerlessFunction:
88
Type: AWS::Serverless::Function
99
Properties:
10-
Runtime: nodejs14.x
10+
Runtime: nodejs18.x
1111
Handler: index.handler
1212
InlineCode: |
1313
const AWS = require('aws-sdk');
@@ -31,7 +31,7 @@ Resources:
3131
Type: AWS::Lambda::Function
3232
Properties:
3333
Role: !GetAtt MyRole.Arn
34-
Runtime: nodejs14.x
34+
Runtime: nodejs18.x
3535
Handler: index.handler
3636
Code:
3737
ZipFile: |

tests/translator/input/connector_appsync_api_to_lambda.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ Resources:
2828
}
2929
}
3030
PackageType: Zip
31-
Runtime: nodejs14.x
31+
Runtime: nodejs18.x
3232
Handler: index.handler

tests/translator/input/connector_appsync_to_lambda.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Resources:
1919
return "Hello World"
2020
}
2121
Handler: index.handler
22-
Runtime: nodejs14.x
22+
Runtime: nodejs18.x
2323

2424
AppSyncApi:
2525
Type: AWS::AppSync::GraphQLApi

tests/translator/input/connector_bucket_to_function.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Resources:
22
Function:
33
Type: AWS::Serverless::Function
44
Properties:
5-
Runtime: nodejs14.x
5+
Runtime: nodejs18.x
66
Handler: index.handler
77
InlineCode: |
88
const AWS = require('aws-sdk');

tests/translator/input/connector_function_to_location.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Resources:
22
MyFunction:
33
Type: AWS::Serverless::Function
44
Properties:
5-
Runtime: nodejs14.x
5+
Runtime: nodejs18.x
66
Handler: index.handler
77
InlineCode: |
88
const AWS = require('aws-sdk');

tests/translator/input/connector_function_to_multiple_s3.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Resources:
22
MyFunction:
33
Type: AWS::Serverless::Function
44
Properties:
5-
Runtime: nodejs14.x
5+
Runtime: nodejs18.x
66
Handler: index.handler
77
InlineCode: |
88
const AWS = require('aws-sdk');

tests/translator/input/connector_function_to_s3.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Resources:
22
MyFunction:
33
Type: AWS::Serverless::Function
44
Properties:
5-
Runtime: nodejs14.x
5+
Runtime: nodejs18.x
66
Handler: index.handler
77
InlineCode: |
88
const AWS = require('aws-sdk');

tests/translator/input/connector_function_to_sqs.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Resources:
1515
Type: AWS::Lambda::Function
1616
Properties:
1717
Role: !GetAtt MyRole.Arn
18-
Runtime: nodejs14.x
18+
Runtime: nodejs18.x
1919
Handler: index.handler
2020
Code:
2121
ZipFile: |
@@ -30,7 +30,7 @@ Resources:
3030
MyServerlessFunction:
3131
Type: AWS::Serverless::Function
3232
Properties:
33-
Runtime: nodejs14.x
33+
Runtime: nodejs18.x
3434
Handler: index.handler
3535
InlineCode: |
3636
const AWS = require('aws-sdk');

tests/translator/input/connector_function_to_table.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Resources:
1515
Type: AWS::Lambda::Function
1616
Properties:
1717
Role: !GetAtt MyRole.Arn
18-
Runtime: nodejs14.x
18+
Runtime: nodejs18.x
1919
Handler: index.handler
2020
Code:
2121
ZipFile: |
@@ -32,7 +32,7 @@ Resources:
3232
MyServerlessFunction:
3333
Type: AWS::Serverless::Function
3434
Properties:
35-
Runtime: nodejs14.x
35+
Runtime: nodejs18.x
3636
Handler: index.handler
3737
InlineCode: |
3838
const AWS = require('aws-sdk');

tests/translator/input/connector_mix_destination.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Resources:
22
TriggerFunction:
33
Type: AWS::Serverless::Function
44
Properties:
5-
Runtime: nodejs14.x
5+
Runtime: nodejs18.x
66
Handler: index.handler
77
Timeout: 10 # in case eb has delay
88
InlineCode: |
@@ -54,7 +54,7 @@ Resources:
5454
Function:
5555
Type: AWS::Serverless::Function
5656
Properties:
57-
Runtime: nodejs14.x
57+
Runtime: nodejs18.x
5858
Handler: index.handler
5959
InlineCode: |
6060
const AWS = require('aws-sdk');

tests/translator/input/connector_sfn_to_function.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Resources:
1919
MyFunction:
2020
Type: AWS::Serverless::Function
2121
Properties:
22-
Runtime: nodejs14.x
22+
Runtime: nodejs18.x
2323
Handler: index.handler
2424
InlineCode: |
2525
const AWS = require('aws-sdk');

tests/translator/input/connector_sfn_to_function_without_policy.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Resources:
1616
MyFunction:
1717
Type: AWS::Serverless::Function
1818
Properties:
19-
Runtime: nodejs14.x
19+
Runtime: nodejs18.x
2020
Handler: index.handler
2121
InlineCode: |
2222
exports.handler = async (event) => {

tests/translator/input/connector_sns_to_function.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Resources:
1818
Type: AWS::Lambda::Function
1919
Properties:
2020
Role: !GetAtt MyRole.Arn
21-
Runtime: nodejs14.x
21+
Runtime: nodejs18.x
2222
Handler: index.handler
2323
Code:
2424
ZipFile: |

tests/translator/input/connector_sqs_to_function.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Resources:
55
TriggerFunction:
66
Type: AWS::Serverless::Function
77
Properties:
8-
Runtime: nodejs14.x
8+
Runtime: nodejs18.x
99
Handler: index.handler
1010
Timeout: 10 # in case eb has delay
1111
InlineCode: |
@@ -39,7 +39,7 @@ Resources:
3939
InvokedFunction:
4040
Type: AWS::Serverless::Function
4141
Properties:
42-
Runtime: nodejs14.x
42+
Runtime: nodejs18.x
4343
Handler: index.handler
4444
InlineCode: |
4545
const AWS = require('aws-sdk');

tests/translator/input/connector_sqs_to_multiple_function.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Resources:
55
InvokedFunction:
66
Type: AWS::Serverless::Function
77
Properties:
8-
Runtime: nodejs14.x
8+
Runtime: nodejs18.x
99
Handler: index.handler
1010
InlineCode: |
1111
const AWS = require('aws-sdk');
@@ -26,7 +26,7 @@ Resources:
2626
InvokedFunction2:
2727
Type: AWS::Serverless::Function
2828
Properties:
29-
Runtime: nodejs14.x
29+
Runtime: nodejs18.x
3030
Handler: index.handler
3131
InlineCode: |
3232
const AWS = require('aws-sdk');

tests/translator/input/connector_table_to_function.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Resources:
1515
Type: AWS::Lambda::Function
1616
Properties:
1717
Role: !GetAtt MyRole.Arn
18-
Runtime: nodejs14.x
18+
Runtime: nodejs18.x
1919
Handler: index.handler
2020
Code:
2121
ZipFile: |

tests/translator/input/connector_table_to_function_read.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Resources:
22
TriggerFunction:
33
Type: AWS::Serverless::Function
44
Properties:
5-
Runtime: nodejs14.x
5+
Runtime: nodejs18.x
66
Handler: index.handler
77
Timeout: 10 # in case eb has delay
88
InlineCode: |
@@ -36,7 +36,7 @@ Resources:
3636
InvokedFunction:
3737
Type: AWS::Serverless::Function
3838
Properties:
39-
Runtime: nodejs14.x
39+
Runtime: nodejs18.x
4040
Handler: index.handler
4141
InlineCode: |
4242
const AWS = require('aws-sdk');

tests/translator/input/connector_with_non_id_source_and_destination.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Resources:
1616
SamFunction:
1717
Type: AWS::Serverless::Function
1818
Properties:
19-
Runtime: nodejs14.x
19+
Runtime: nodejs18.x
2020
Handler: index.handler
2121
Role: !GetAtt MyRole.Arn
2222
InlineCode: |

tests/translator/input/embedded_connector_function_to_multi_dest.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Resources:
1111
- Read
1212
- Write
1313
Properties:
14-
Runtime: nodejs14.x
14+
Runtime: nodejs18.x
1515
Handler: index.handler
1616
InlineCode: |
1717
const AWS = require('aws-sdk');

0 commit comments

Comments
 (0)