File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change 15
15
16
16
- AWS api-change: This release adds RecursiveInvocationException to the Invoke API and InvokeWithResponseStream API.
17
17
- AWS enhancement: Documentation updates.
18
+ - AWS api-change: Add Python 3.11 (python3.11) support to AWS Lambda
18
19
19
20
## 1.9.0
20
21
Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ final class Runtime
28
28
public const PROVIDED_AL_2 = 'provided.al2 ' ;
29
29
public const PYTHON_2_7 = 'python2.7 ' ;
30
30
public const PYTHON_3_10 = 'python3.10 ' ;
31
+ public const PYTHON_3_11 = 'python3.11 ' ;
31
32
public const PYTHON_3_6 = 'python3.6 ' ;
32
33
public const PYTHON_3_7 = 'python3.7 ' ;
33
34
public const PYTHON_3_8 = 'python3.8 ' ;
@@ -63,6 +64,7 @@ public static function exists(string $value): bool
63
64
self ::PROVIDED_AL_2 => true ,
64
65
self ::PYTHON_2_7 => true ,
65
66
self ::PYTHON_3_10 => true ,
67
+ self ::PYTHON_3_11 => true ,
66
68
self ::PYTHON_3_6 => true ,
67
69
self ::PYTHON_3_7 => true ,
68
70
self ::PYTHON_3_8 => true ,
You can’t perform that action at this time.
0 commit comments