Skip to content

Commit 2f9d3d2

Browse files
Update generated code (#1795)
update generated code
1 parent 86d81bd commit 2f9d3d2

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## NOT RELEASED
44

5+
### Added
6+
7+
- AWS api-change: Add Python 3.13 (python3.13) support to AWS Lambda
8+
59
### Changed
610

711
- AWS enhancement: Documentation updates.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
},
2929
"extra": {
3030
"branch-alias": {
31-
"dev-master": "2.6-dev"
31+
"dev-master": "2.7-dev"
3232
}
3333
}
3434
}

src/Enum/Runtime.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ final class Runtime
3434
public const PYTHON_3_10 = 'python3.10';
3535
public const PYTHON_3_11 = 'python3.11';
3636
public const PYTHON_3_12 = 'python3.12';
37+
public const PYTHON_3_13 = 'python3.13';
3738
public const PYTHON_3_6 = 'python3.6';
3839
public const PYTHON_3_7 = 'python3.7';
3940
public const PYTHON_3_8 = 'python3.8';
@@ -76,6 +77,7 @@ public static function exists(string $value): bool
7677
self::PYTHON_3_10 => true,
7778
self::PYTHON_3_11 => true,
7879
self::PYTHON_3_12 => true,
80+
self::PYTHON_3_13 => true,
7981
self::PYTHON_3_6 => true,
8082
self::PYTHON_3_7 => true,
8183
self::PYTHON_3_8 => true,

0 commit comments

Comments
 (0)