Skip to content

Commit 65cfc9d

Browse files
committed
update generated code
1 parent a4bf4b9 commit 65cfc9d

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"variables": {
3-
"${LATEST}": "3.325.5"
3+
"${LATEST}": "3.325.6"
44
},
55
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
66
"services": {

src/Service/Lambda/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.

src/Service/Lambda/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/Service/Lambda/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)