Skip to content

Commit 4e332e0

Browse files
Update generated code (#1860)
update generated code
1 parent c83916c commit 4e332e0

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-2
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 Ruby 3.4 (ruby3.4) support to AWS Lambda.
8+
59
## 2.9.0
610

711
### Added

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/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/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)