@@ -30,6 +30,7 @@ final class Runtime
3030 public const NODEJS_20_X = 'nodejs20.x ' ;
3131 public const NODEJS_22_X = 'nodejs22.x ' ;
3232 public const NODEJS_24_X = 'nodejs24.x ' ;
33+ public const NODEJS_26_X = 'nodejs26.x ' ;
3334 public const NODEJS_4_3 = 'nodejs4.3 ' ;
3435 public const NODEJS_4_3_EDGE = 'nodejs4.3-edge ' ;
3536 public const NODEJS_6_10 = 'nodejs6.10 ' ;
@@ -43,6 +44,7 @@ final class Runtime
4344 public const PYTHON_3_12 = 'python3.12 ' ;
4445 public const PYTHON_3_13 = 'python3.13 ' ;
4546 public const PYTHON_3_14 = 'python3.14 ' ;
47+ public const PYTHON_3_15 = 'python3.15 ' ;
4648 public const PYTHON_3_6 = 'python3.6 ' ;
4749 public const PYTHON_3_7 = 'python3.7 ' ;
4850 public const PYTHON_3_8 = 'python3.8 ' ;
@@ -87,6 +89,7 @@ public static function exists(string $value): bool
8789 self ::NODEJS_20_X => true ,
8890 self ::NODEJS_22_X => true ,
8991 self ::NODEJS_24_X => true ,
92+ self ::NODEJS_26_X => true ,
9093 self ::NODEJS_4_3 => true ,
9194 self ::NODEJS_4_3_EDGE => true ,
9295 self ::NODEJS_6_10 => true ,
@@ -100,6 +103,7 @@ public static function exists(string $value): bool
100103 self ::PYTHON_3_12 => true ,
101104 self ::PYTHON_3_13 => true ,
102105 self ::PYTHON_3_14 => true ,
106+ self ::PYTHON_3_15 => true ,
103107 self ::PYTHON_3_6 => true ,
104108 self ::PYTHON_3_7 => true ,
105109 self ::PYTHON_3_8 => true ,
0 commit comments