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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

0 commit comments

Comments
 (0)