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.342.8"
"${LATEST}": "3.342.9"
},
"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 Ruby 3.4 (ruby3.4) support to AWS Lambda.

## 2.9.0

### Added
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.9-dev"
"dev-master": "2.10-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 @@ -44,6 +44,7 @@ final class Runtime
public const RUBY_2_7 = 'ruby2.7';
public const RUBY_3_2 = 'ruby3.2';
public const RUBY_3_3 = 'ruby3.3';
public const RUBY_3_4 = 'ruby3.4';

public static function exists(string $value): bool
{
Expand Down Expand Up @@ -88,6 +89,7 @@ public static function exists(string $value): bool
self::RUBY_2_7 => true,
self::RUBY_3_2 => true,
self::RUBY_3_3 => true,
self::RUBY_3_4 => true,
][$value]);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
use Symfony\Contracts\HttpClient\ResponseInterface;

/**
* The request body could not be parsed as JSON.
* The request body could not be parsed as JSON, or a request header is invalid. For example, the 'x-amzn-RequestId'
* header is not a valid UUID string.
*/
final class InvalidRequestContentException extends ClientException
{
Expand Down