Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

From most recent to oldest, with major releases in bold:

* *4.4.0* (2025-10-15): upgrade Lambda runtime to Nodejs22.x
* *4.3.6* (2024-11-07): updated dependencies (CVE-2024-41818)
* *4.3.5* (2024-09-16): array-shape input support, JSON logging bugfix, externalized ASL, updated dependencies
* *4.3.4* (2024-02-26): upgrade to Nodejs20, custom state machine prefix, SDKv3 migration, new includeOutputResults input parameter, JSON loggin support
Expand Down
8 changes: 4 additions & 4 deletions template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Metadata:
ReadmeUrl: README-SAR.md
Labels: ['lambda', 'power', 'state-machine', 'step-functions', 'optimization']
HomePageUrl: https://github.com/alexcasalboni/aws-lambda-power-tuning
SemanticVersion: 4.3.6
SemanticVersion: 4.4.0
SourceCodeUrl: https://github.com/alexcasalboni/aws-lambda-power-tuning

Parameters:
Expand Down Expand Up @@ -80,7 +80,7 @@ Conditions:

Globals:
Function:
Runtime: nodejs20.x
Runtime: nodejs22.x
MemorySize: 128
Timeout: !Ref totalExecutionTimeout
PermissionsBoundary: !If [UsePermissionsBoundary, !Ref permissionsBoundary, !Ref AWS::NoValue]
Expand All @@ -105,11 +105,11 @@ Resources:
Description: AWS SDK 3
ContentUri: ./layer-sdk
CompatibleRuntimes:
- nodejs20.x
- nodejs22.x
LicenseInfo: 'Available under the MIT-0 license.'
RetentionPolicy: Retain
Metadata:
BuildMethod: nodejs20.x
BuildMethod: nodejs22.x

initializerLogGroup:
Type: AWS::Logs::LogGroup
Expand Down
Loading