Skip to content

Commit 2b07a7a

Browse files
committed
Update Node.js and Python runtimes
1 parent 68ba6c0 commit 2b07a7a

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

cjs/index.js

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@ let runtimes = {
55
node: [
66
'nodejs20.x',
77
'nodejs22.x',
8-
'nodejs18.x',
8+
'nodejs24.x',
99
],
1010
python: [
1111
'python3.12',
1212
'python3.13',
13+
'python3.14',
1314
'python3.11',
1415
'python3.10',
1516
'python3.9',
@@ -34,6 +35,13 @@ let runtimes = {
3435
}
3536

3637
let runtimeVersions = {
38+
'nodejs24.x': {
39+
runtime: 'node',
40+
major: '24',
41+
minor: null,
42+
patch: null,
43+
wildcard: '24.*.*'
44+
},
3745
'nodejs22.x': {
3846
runtime: 'node',
3947
major: '22',
@@ -55,6 +63,13 @@ let runtimeVersions = {
5563
patch: null,
5664
wildcard: '18.*.*'
5765
},
66+
'python3.14': {
67+
runtime: 'python',
68+
major: '3',
69+
minor: '14',
70+
patch: null,
71+
wildcard: '3.14.*',
72+
},
5873
'python3.13': {
5974
runtime: 'python',
6075
major: '3',
@@ -191,6 +206,7 @@ let aliases = {
191206

192207
let retiredRuntimes = {
193208
node: [
209+
'nodejs18.x',
194210
'nodejs16.x',
195211
'nodejs14.x',
196212
'nodejs12.x',

0 commit comments

Comments
 (0)