lambda-runtimes
Advanced tools
Comparing version 2.0.0 to 2.0.1
@@ -5,7 +5,7 @@ # `lambda-runtimes` changelog | ||
## [2.0.0] 2024-01-23 | ||
## [2.0.0 - 2.0.1] 2024-01-23 | ||
### Added | ||
- Added `python3.12` | ||
- Added `python3.12`, `java21` | ||
@@ -15,5 +15,11 @@ | ||
- Breaking change: updated default runtimes for Node.js, Python | ||
- All current runtimes now support `arm64` | ||
- Breaking change: updated default runtimes for Node.js, Python, .NET | ||
- Node.js: `nodejs20.x` | ||
- Python: `python3.12` | ||
- .NET: `dotnet7` | ||
- Retired `go1.x` (deprecated 2024-01-08) | ||
- AWS will no longer have a Go-specific runtime, so `go` and `golang` aliases have also been removed | ||
- Retired `java8` (deprecated 2024-01-08) | ||
- Retired `provided` (deprecated 2024-01-08) | ||
@@ -24,3 +30,3 @@ --- | ||
### Added | ||
### Changed | ||
@@ -27,0 +33,0 @@ - Retired `nodejs14.x` (deprecated 2023-11-27) |
@@ -18,14 +18,11 @@ // Canonical runtime list: https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html | ||
java: [ | ||
'java21', | ||
'java17', | ||
'java11', | ||
'java17', | ||
'java8.al2', | ||
'java8', | ||
], | ||
dotnet: [ | ||
'dotnet7', | ||
'dotnet6', | ||
'dotnet7', | ||
], | ||
go: [ | ||
'go1.x', | ||
], | ||
ruby: [ | ||
@@ -37,3 +34,2 @@ 'ruby3.2', | ||
'provided.al2', | ||
'provided', | ||
], | ||
@@ -99,2 +95,9 @@ } | ||
}, | ||
'java21': { | ||
runtime: 'java', | ||
major: '21', | ||
minor: null, | ||
patch: null, | ||
wildcard: '21.*.*', | ||
}, | ||
'java17': { | ||
@@ -121,9 +124,2 @@ runtime: 'java', | ||
}, | ||
'java8': { | ||
runtime: 'java', | ||
major: '8', | ||
minor: null, | ||
patch: null, | ||
wildcard: '8.*.*', | ||
}, | ||
'dotnet7': { | ||
@@ -143,9 +139,2 @@ runtime: 'dotnet', | ||
}, | ||
'go1.x': { | ||
runtime: 'go', | ||
major: '1', | ||
minor: null, | ||
patch: null, | ||
wildcard: '1.*.*', | ||
}, | ||
'ruby3.2': { | ||
@@ -164,8 +153,8 @@ runtime: 'ruby', | ||
arm64: [ | ||
...runtimes.node.slice(0, 3), | ||
...runtimes.python.slice(0, 4), | ||
...runtimes.java.slice(0, 3), | ||
...runtimes.dotnet.slice(0, 2), | ||
...runtimes.ruby.slice(0, 2), | ||
...runtimes.custom.slice(0, 1), | ||
...runtimes.node, | ||
...runtimes.python, | ||
...runtimes.java, | ||
...runtimes.dotnet, | ||
...runtimes.ruby, | ||
...runtimes.custom, | ||
], | ||
@@ -177,3 +166,2 @@ x86_64: [ | ||
...runtimes.java, | ||
...runtimes.go, | ||
...runtimes.dotnet, | ||
@@ -206,4 +194,2 @@ ...runtimes.custom, | ||
java: 'java', | ||
go: 'go', | ||
golang: 'go', | ||
dotnet: 'dotnet', | ||
@@ -234,4 +220,8 @@ '.net': 'dotnet', | ||
], | ||
java: [], | ||
go: [], | ||
java: [ | ||
'java8', | ||
], | ||
go: [ | ||
'go1.x', | ||
], | ||
dotnet: [ | ||
@@ -245,2 +235,5 @@ 'dotnet5.0', | ||
custom: [], | ||
provided: [ | ||
'provided', | ||
], | ||
} | ||
@@ -247,0 +240,0 @@ |
{ | ||
"name": "lambda-runtimes", | ||
"description": "Canonical list of AWS Lambda runtime identifiers and corresponding CPU architectures", | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"type": "module", | ||
@@ -6,0 +6,0 @@ "module": "./esm/index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
12732
316