Skip to content

Commit

Permalink
Merge pull request #3457 from aws/release-v1.82.0
Browse files Browse the repository at this point in the history
Release 1.82.0 (to main)
  • Loading branch information
ssenchenko committed Dec 5, 2023
2 parents b164667 + 500895f commit 770a7ea
Show file tree
Hide file tree
Showing 234 changed files with 316 additions and 316 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -26,7 +26,7 @@ Resources:
MyFunction:
Type: AWS::Serverless::Function
Properties:
Runtime: nodejs16.x
Runtime: nodejs18.x
Handler: index.handler
InlineCode: |
exports.handler = async (event) => {
Expand Down Expand Up @@ -56,7 +56,7 @@ Resources:
}
Handler: index.handler
Role: !GetAtt MyFunctionRole.Arn
Runtime: nodejs16.x
Runtime: nodejs18.x
Tags:
- Key: lambda:createdBy
Value: SAM
Expand Down
2 changes: 1 addition & 1 deletion samtranslator/__init__.py
@@ -1 +1 @@
__version__ = "1.81.0"
__version__ = "1.82.0"
2 changes: 1 addition & 1 deletion tests/translator/input/api_merge_definitions_global.yaml
Expand Up @@ -31,7 +31,7 @@ Resources:
Type: AWS::Serverless::Function
Properties:
Handler: index.handler
Runtime: nodejs14.x
Runtime: nodejs18.x
InlineCode: |
exports.handler = async (event, context, callback) => {
return {
Expand Down
Expand Up @@ -28,7 +28,7 @@ Resources:
Type: AWS::Serverless::Function
Properties:
Handler: index.handler
Runtime: nodejs14.x
Runtime: nodejs18.x
InlineCode: |
exports.handler = async (event, context, callback) => {
return {
Expand Down
Expand Up @@ -27,7 +27,7 @@ Resources:
Type: AWS::Serverless::Function
Properties:
Handler: index.handler
Runtime: nodejs14.x
Runtime: nodejs18.x
InlineCode: |
exports.handler = async (event, context, callback) => {
return {
Expand Down
Expand Up @@ -35,7 +35,7 @@ Resources:
Type: AWS::Serverless::Function
Properties:
Handler: index.handler
Runtime: nodejs14.x
Runtime: nodejs18.x
InlineCode: |
exports.handler = async (event, context, callback) => {
return {
Expand Down
Expand Up @@ -27,7 +27,7 @@ Resources:
Type: AWS::Serverless::Function
Properties:
Handler: index.handler
Runtime: nodejs14.x
Runtime: nodejs18.x
InlineCode: |
exports.handler = async (event, context, callback) => {
return {
Expand Down
Expand Up @@ -49,7 +49,7 @@ Resources:
Type: AWS::Serverless::Function
Properties:
Handler: index.handler
Runtime: nodejs14.x
Runtime: nodejs18.x
InlineCode: |
exports.handler = async (event, context, callback) => {
return {
Expand Down
Expand Up @@ -38,7 +38,7 @@ Resources:
return response;
};
Handler: index.handler
Runtime: nodejs14.x
Runtime: nodejs18.x
Events:
ImplicitGet:
Type: Api
Expand Down
2 changes: 1 addition & 1 deletion tests/translator/input/api_with_custom_domains_edge.yaml
Expand Up @@ -19,7 +19,7 @@ Resources:
return response;
};
Handler: index.handler
Runtime: nodejs14.x
Runtime: nodejs18.x
Events:
Fetch:
Type: Api
Expand Down
Expand Up @@ -38,7 +38,7 @@ Resources:
return response;
};
Handler: index.handler
Runtime: nodejs14.x
Runtime: nodejs18.x
Events:
ImplicitGet:
Type: Api
Expand Down
Expand Up @@ -41,7 +41,7 @@ Resources:
return response;
};
Handler: index.handler
Runtime: nodejs14.x
Runtime: nodejs18.x
Events:
ImplicitGet:
Type: Api
Expand Down
Expand Up @@ -42,7 +42,7 @@ Resources:
return response;
};
Handler: index.handler
Runtime: nodejs14.x
Runtime: nodejs18.x
Events:
ImplicitGet:
Type: Api
Expand Down
Expand Up @@ -42,7 +42,7 @@ Resources:
return response;
};
Handler: index.handler
Runtime: nodejs14.x
Runtime: nodejs18.x
Events:
ImplicitGet:
Type: Api
Expand Down
Expand Up @@ -29,7 +29,7 @@ Resources:
});
}
Handler: index.handler
Runtime: nodejs14.x
Runtime: nodejs18.x
Events:
GetHtml:
Type: Api
Expand Down
Expand Up @@ -4,7 +4,7 @@ Resources:
Properties:
CodeUri: s3://bucket/key
Handler: app.handler
Runtime: nodejs14.x
Runtime: nodejs18.x
Events:
CognitoUserPoolPreSignup:
Type: Cognito
Expand Down
4 changes: 2 additions & 2 deletions tests/translator/input/connector_api_to_function.yaml
Expand Up @@ -34,7 +34,7 @@ Resources:
MyServerlessFunction:
Type: AWS::Serverless::Function
Properties:
Runtime: nodejs14.x
Runtime: nodejs18.x
Handler: index.handler
InlineCode: |
const AWS = require('aws-sdk');
Expand All @@ -58,7 +58,7 @@ Resources:
Type: AWS::Lambda::Function
Properties:
Role: !GetAtt MyRole.Arn
Runtime: nodejs14.x
Runtime: nodejs18.x
Handler: index.handler
Code:
ZipFile: |
Expand Down
Expand Up @@ -7,7 +7,7 @@ Resources:
MyServerlessFunction:
Type: AWS::Serverless::Function
Properties:
Runtime: nodejs14.x
Runtime: nodejs18.x
Handler: index.handler
InlineCode: |
const AWS = require('aws-sdk');
Expand All @@ -31,7 +31,7 @@ Resources:
Type: AWS::Lambda::Function
Properties:
Role: !GetAtt MyRole.Arn
Runtime: nodejs14.x
Runtime: nodejs18.x
Handler: index.handler
Code:
ZipFile: |
Expand Down
Expand Up @@ -28,5 +28,5 @@ Resources:
}
}
PackageType: Zip
Runtime: nodejs14.x
Runtime: nodejs18.x
Handler: index.handler
2 changes: 1 addition & 1 deletion tests/translator/input/connector_appsync_to_lambda.yaml
Expand Up @@ -19,7 +19,7 @@ Resources:
return "Hello World"
}
Handler: index.handler
Runtime: nodejs14.x
Runtime: nodejs18.x

AppSyncApi:
Type: AWS::AppSync::GraphQLApi
Expand Down
2 changes: 1 addition & 1 deletion tests/translator/input/connector_bucket_to_function.yaml
Expand Up @@ -2,7 +2,7 @@ Resources:
Function:
Type: AWS::Serverless::Function
Properties:
Runtime: nodejs14.x
Runtime: nodejs18.x
Handler: index.handler
InlineCode: |
const AWS = require('aws-sdk');
Expand Down
2 changes: 1 addition & 1 deletion tests/translator/input/connector_function_to_location.yaml
Expand Up @@ -2,7 +2,7 @@ Resources:
MyFunction:
Type: AWS::Serverless::Function
Properties:
Runtime: nodejs14.x
Runtime: nodejs18.x
Handler: index.handler
InlineCode: |
const AWS = require('aws-sdk');
Expand Down
Expand Up @@ -2,7 +2,7 @@ Resources:
MyFunction:
Type: AWS::Serverless::Function
Properties:
Runtime: nodejs14.x
Runtime: nodejs18.x
Handler: index.handler
InlineCode: |
const AWS = require('aws-sdk');
Expand Down
2 changes: 1 addition & 1 deletion tests/translator/input/connector_function_to_s3.yaml
Expand Up @@ -2,7 +2,7 @@ Resources:
MyFunction:
Type: AWS::Serverless::Function
Properties:
Runtime: nodejs14.x
Runtime: nodejs18.x
Handler: index.handler
InlineCode: |
const AWS = require('aws-sdk');
Expand Down
4 changes: 2 additions & 2 deletions tests/translator/input/connector_function_to_sqs.yaml
Expand Up @@ -15,7 +15,7 @@ Resources:
Type: AWS::Lambda::Function
Properties:
Role: !GetAtt MyRole.Arn
Runtime: nodejs14.x
Runtime: nodejs18.x
Handler: index.handler
Code:
ZipFile: |
Expand All @@ -30,7 +30,7 @@ Resources:
MyServerlessFunction:
Type: AWS::Serverless::Function
Properties:
Runtime: nodejs14.x
Runtime: nodejs18.x
Handler: index.handler
InlineCode: |
const AWS = require('aws-sdk');
Expand Down
4 changes: 2 additions & 2 deletions tests/translator/input/connector_function_to_table.yaml
Expand Up @@ -15,7 +15,7 @@ Resources:
Type: AWS::Lambda::Function
Properties:
Role: !GetAtt MyRole.Arn
Runtime: nodejs14.x
Runtime: nodejs18.x
Handler: index.handler
Code:
ZipFile: |
Expand All @@ -32,7 +32,7 @@ Resources:
MyServerlessFunction:
Type: AWS::Serverless::Function
Properties:
Runtime: nodejs14.x
Runtime: nodejs18.x
Handler: index.handler
InlineCode: |
const AWS = require('aws-sdk');
Expand Down
4 changes: 2 additions & 2 deletions tests/translator/input/connector_mix_destination.yaml
Expand Up @@ -2,7 +2,7 @@ Resources:
TriggerFunction:
Type: AWS::Serverless::Function
Properties:
Runtime: nodejs14.x
Runtime: nodejs18.x
Handler: index.handler
Timeout: 10 # in case eb has delay
InlineCode: |
Expand Down Expand Up @@ -54,7 +54,7 @@ Resources:
Function:
Type: AWS::Serverless::Function
Properties:
Runtime: nodejs14.x
Runtime: nodejs18.x
Handler: index.handler
InlineCode: |
const AWS = require('aws-sdk');
Expand Down
2 changes: 1 addition & 1 deletion tests/translator/input/connector_sfn_to_function.yaml
Expand Up @@ -19,7 +19,7 @@ Resources:
MyFunction:
Type: AWS::Serverless::Function
Properties:
Runtime: nodejs14.x
Runtime: nodejs18.x
Handler: index.handler
InlineCode: |
const AWS = require('aws-sdk');
Expand Down
Expand Up @@ -16,7 +16,7 @@ Resources:
MyFunction:
Type: AWS::Serverless::Function
Properties:
Runtime: nodejs14.x
Runtime: nodejs18.x
Handler: index.handler
InlineCode: |
exports.handler = async (event) => {
Expand Down
2 changes: 1 addition & 1 deletion tests/translator/input/connector_sns_to_function.yaml
Expand Up @@ -18,7 +18,7 @@ Resources:
Type: AWS::Lambda::Function
Properties:
Role: !GetAtt MyRole.Arn
Runtime: nodejs14.x
Runtime: nodejs18.x
Handler: index.handler
Code:
ZipFile: |
Expand Down
4 changes: 2 additions & 2 deletions tests/translator/input/connector_sqs_to_function.yaml
Expand Up @@ -5,7 +5,7 @@ Resources:
TriggerFunction:
Type: AWS::Serverless::Function
Properties:
Runtime: nodejs14.x
Runtime: nodejs18.x
Handler: index.handler
Timeout: 10 # in case eb has delay
InlineCode: |
Expand Down Expand Up @@ -39,7 +39,7 @@ Resources:
InvokedFunction:
Type: AWS::Serverless::Function
Properties:
Runtime: nodejs14.x
Runtime: nodejs18.x
Handler: index.handler
InlineCode: |
const AWS = require('aws-sdk');
Expand Down
Expand Up @@ -5,7 +5,7 @@ Resources:
InvokedFunction:
Type: AWS::Serverless::Function
Properties:
Runtime: nodejs14.x
Runtime: nodejs18.x
Handler: index.handler
InlineCode: |
const AWS = require('aws-sdk');
Expand All @@ -26,7 +26,7 @@ Resources:
InvokedFunction2:
Type: AWS::Serverless::Function
Properties:
Runtime: nodejs14.x
Runtime: nodejs18.x
Handler: index.handler
InlineCode: |
const AWS = require('aws-sdk');
Expand Down
2 changes: 1 addition & 1 deletion tests/translator/input/connector_table_to_function.yaml
Expand Up @@ -15,7 +15,7 @@ Resources:
Type: AWS::Lambda::Function
Properties:
Role: !GetAtt MyRole.Arn
Runtime: nodejs14.x
Runtime: nodejs18.x
Handler: index.handler
Code:
ZipFile: |
Expand Down
4 changes: 2 additions & 2 deletions tests/translator/input/connector_table_to_function_read.yaml
Expand Up @@ -2,7 +2,7 @@ Resources:
TriggerFunction:
Type: AWS::Serverless::Function
Properties:
Runtime: nodejs14.x
Runtime: nodejs18.x
Handler: index.handler
Timeout: 10 # in case eb has delay
InlineCode: |
Expand Down Expand Up @@ -36,7 +36,7 @@ Resources:
InvokedFunction:
Type: AWS::Serverless::Function
Properties:
Runtime: nodejs14.x
Runtime: nodejs18.x
Handler: index.handler
InlineCode: |
const AWS = require('aws-sdk');
Expand Down
Expand Up @@ -16,7 +16,7 @@ Resources:
SamFunction:
Type: AWS::Serverless::Function
Properties:
Runtime: nodejs14.x
Runtime: nodejs18.x
Handler: index.handler
Role: !GetAtt MyRole.Arn
InlineCode: |
Expand Down
Expand Up @@ -11,7 +11,7 @@ Resources:
- Read
- Write
Properties:
Runtime: nodejs14.x
Runtime: nodejs18.x
Handler: index.handler
InlineCode: |
const AWS = require('aws-sdk');
Expand Down

0 comments on commit 770a7ea

Please sign in to comment.