Skip to content
Merged
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
12 changes: 12 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

---

## [3.0.1] 2025-12-23

### Added
- Added `java25` (Amazon Linux 2023, deprecation: Jun 30, 2029)
- Added `dotnet9` (Amazon Linux 2023, deprecation: Nov 10, 2026)
- Added `ruby3.4` (Amazon Linux 2023, deprecation: Mar 31, 2028)

### Changed
- Retired `python3.9` (deprecated Dec 15, 2025)

---

## [3.0.0] 2025-12-03

- Added `nodejs24.x`, `python3.14`; thanks again @lpsinger!
Expand Down
29 changes: 23 additions & 6 deletions cjs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,20 @@ let runtimes = {
'python3.14',
'python3.11',
'python3.10',
'python3.9',
],
java: [
'java25',
'java21',
'java17',
'java11',
'java8.al2',
],
dotnet: [
'dotnet9',
'dotnet8',
],
ruby: [
'ruby3.4',
'ruby3.3',
'ruby3.2',
],
Expand Down Expand Up @@ -91,12 +93,12 @@ let runtimeVersions = {
patch: null,
wildcard: '3.10.*',
},
'python3.9': {
runtime: 'python',
major: '3',
minor: '9',
'java25': {
runtime: 'java',
major: '25',
minor: null,
patch: null,
wildcard: '3.9.*',
wildcard: '25.*.*',
},
'java21': {
runtime: 'java',
Expand Down Expand Up @@ -126,13 +128,27 @@ let runtimeVersions = {
patch: null,
wildcard: '8.*.*',
},
'dotnet9': {
runtime: 'dotnet',
major: '9',
minor: null,
patch: null,
wildcard: '9.*',
},
'dotnet8': {
runtime: 'dotnet',
major: '8',
minor: null,
patch: null,
wildcard: '8.*',
},
'ruby3.4': {
runtime: 'ruby',
major: '3',
minor: '4',
patch: null,
wildcard: '3.4.*',
},
'ruby3.3': {
runtime: 'ruby',
major: '3',
Expand Down Expand Up @@ -211,6 +227,7 @@ let retiredRuntimes = {
'nodejs', // 0.10
],
python: [
'python3.9',
'python3.8',
'python3.7',
'python3.6',
Expand Down