Skip to content

Commit a6be68e

Browse files
Update generated code (#1981)
* update generated code * Update src/Service/Kinesis/CHANGELOG.md --------- Co-authored-by: Jérémy Derussé <[email protected]>
1 parent 611a9a0 commit a6be68e

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
- AWS api-change: Add NodeJs 24 (nodejs24.x) support to AWS Lambda.
88
- AWS api-change: Added `us-isob-west-1` region
99
- AWS api-change: Added SerializedRequestEntityTooLargeException to Lambda Invoke API
10+
- AWS api-change: Add Python3.14 (python3.14) and Java 25 (java25) support to AWS Lambda
1011

1112
### Dependency bumped
1213

src/Enum/Runtime.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ final class Runtime
1414
public const JAVA_11 = 'java11';
1515
public const JAVA_17 = 'java17';
1616
public const JAVA_21 = 'java21';
17+
public const JAVA_25 = 'java25';
1718
public const JAVA_8 = 'java8';
1819
public const JAVA_8_AL_2 = 'java8.al2';
1920
public const NODEJS = 'nodejs';
@@ -37,6 +38,7 @@ final class Runtime
3738
public const PYTHON_3_11 = 'python3.11';
3839
public const PYTHON_3_12 = 'python3.12';
3940
public const PYTHON_3_13 = 'python3.13';
41+
public const PYTHON_3_14 = 'python3.14';
4042
public const PYTHON_3_6 = 'python3.6';
4143
public const PYTHON_3_7 = 'python3.7';
4244
public const PYTHON_3_8 = 'python3.8';
@@ -60,6 +62,7 @@ public static function exists(string $value): bool
6062
self::JAVA_11 => true,
6163
self::JAVA_17 => true,
6264
self::JAVA_21 => true,
65+
self::JAVA_25 => true,
6366
self::JAVA_8 => true,
6467
self::JAVA_8_AL_2 => true,
6568
self::NODEJS => true,
@@ -83,6 +86,7 @@ public static function exists(string $value): bool
8386
self::PYTHON_3_11 => true,
8487
self::PYTHON_3_12 => true,
8588
self::PYTHON_3_13 => true,
89+
self::PYTHON_3_14 => true,
8690
self::PYTHON_3_6 => true,
8791
self::PYTHON_3_7 => true,
8892
self::PYTHON_3_8 => true,

0 commit comments

Comments
 (0)