Skip to content

Commit 101cb2a

Browse files
Update generated code (#1527)
update generated code
1 parent fa2fdaa commit 101cb2a

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515

1616
- AWS api-change: This release adds RecursiveInvocationException to the Invoke API and InvokeWithResponseStream API.
1717
- AWS enhancement: Documentation updates.
18+
- AWS api-change: Add Python 3.11 (python3.11) support to AWS Lambda
1819

1920
## 1.9.0
2021

src/Enum/Runtime.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ final class Runtime
2828
public const PROVIDED_AL_2 = 'provided.al2';
2929
public const PYTHON_2_7 = 'python2.7';
3030
public const PYTHON_3_10 = 'python3.10';
31+
public const PYTHON_3_11 = 'python3.11';
3132
public const PYTHON_3_6 = 'python3.6';
3233
public const PYTHON_3_7 = 'python3.7';
3334
public const PYTHON_3_8 = 'python3.8';
@@ -63,6 +64,7 @@ public static function exists(string $value): bool
6364
self::PROVIDED_AL_2 => true,
6465
self::PYTHON_2_7 => true,
6566
self::PYTHON_3_10 => true,
67+
self::PYTHON_3_11 => true,
6668
self::PYTHON_3_6 => true,
6769
self::PYTHON_3_7 => true,
6870
self::PYTHON_3_8 => true,

0 commit comments

Comments
 (0)