File tree Expand file tree Collapse file tree 1 file changed +17
-1
lines changed
Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Original file line number Diff line number Diff 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
3637let 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
192207let retiredRuntimes = {
193208 node : [
209+ 'nodejs18.x' ,
194210 'nodejs16.x' ,
195211 'nodejs14.x' ,
196212 'nodejs12.x' ,
You can’t perform that action at this time.
0 commit comments