Skip to content

Commit 207fad7

Browse files
committed
update generated code
1 parent e32a5ad commit 207fad7

File tree

5 files changed

+10
-3
lines changed

5 files changed

+10
-3
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.342.8"
3+
"${LATEST}": "3.342.9"
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 Ruby 3.4 (ruby3.4) support to AWS Lambda.
8+
59
## 2.9.0
610

711
### Added

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

4849
public static function exists(string $value): bool
4950
{
@@ -88,6 +89,7 @@ public static function exists(string $value): bool
8889
self::RUBY_2_7 => true,
8990
self::RUBY_3_2 => true,
9091
self::RUBY_3_3 => true,
92+
self::RUBY_3_4 => true,
9193
][$value]);
9294
}
9395
}

src/Service/Lambda/src/Exception/InvalidRequestContentException.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
use Symfony\Contracts\HttpClient\ResponseInterface;
77

88
/**
9-
* The request body could not be parsed as JSON.
9+
* The request body could not be parsed as JSON, or a request header is invalid. For example, the 'x-amzn-RequestId'
10+
* header is not a valid UUID string.
1011
*/
1112
final class InvalidRequestContentException extends ClientException
1213
{

0 commit comments

Comments
 (0)