Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"variables": {
"${LATEST}": "3.325.5"
"${LATEST}": "3.325.6"
},
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
"services": {
Expand Down
4 changes: 4 additions & 0 deletions src/Service/Lambda/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## NOT RELEASED

### Added

- AWS api-change: Add Python 3.13 (python3.13) support to AWS Lambda

### Changed

- AWS enhancement: Documentation updates.
Expand Down
2 changes: 1 addition & 1 deletion src/Service/Lambda/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "2.6-dev"
"dev-master": "2.7-dev"
}
}
}
2 changes: 2 additions & 0 deletions src/Service/Lambda/src/Enum/Runtime.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ final class Runtime
public const PYTHON_3_10 = 'python3.10';
public const PYTHON_3_11 = 'python3.11';
public const PYTHON_3_12 = 'python3.12';
public const PYTHON_3_13 = 'python3.13';
public const PYTHON_3_6 = 'python3.6';
public const PYTHON_3_7 = 'python3.7';
public const PYTHON_3_8 = 'python3.8';
Expand Down Expand Up @@ -76,6 +77,7 @@ public static function exists(string $value): bool
self::PYTHON_3_10 => true,
self::PYTHON_3_11 => true,
self::PYTHON_3_12 => true,
self::PYTHON_3_13 => true,
self::PYTHON_3_6 => true,
self::PYTHON_3_7 => true,
self::PYTHON_3_8 => true,
Expand Down