File tree Expand file tree Collapse file tree 4 files changed +8
-2
lines changed
Expand file tree Collapse file tree 4 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 22
33## NOT RELEASED
44
5+ ### Added
6+
7+ - AWS api-change: Add Ruby 3.3 (ruby3.3) support to AWS Lambda
8+
59### Changed
610
711- AWS enhancement: Documentation updates.
Original file line number Diff line number Diff line change 2828 },
2929 "extra" : {
3030 "branch-alias" : {
31- "dev-master" : " 2.4 -dev"
31+ "dev-master" : " 2.5 -dev"
3232 }
3333 }
3434}
Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ final class Runtime
4141 public const RUBY_2_5 = 'ruby2.5 ' ;
4242 public const RUBY_2_7 = 'ruby2.7 ' ;
4343 public const RUBY_3_2 = 'ruby3.2 ' ;
44+ public const RUBY_3_3 = 'ruby3.3 ' ;
4445
4546 public static function exists (string $ value ): bool
4647 {
@@ -82,6 +83,7 @@ public static function exists(string $value): bool
8283 self ::RUBY_2_5 => true ,
8384 self ::RUBY_2_7 => true ,
8485 self ::RUBY_3_2 => true ,
86+ self ::RUBY_3_3 => true ,
8587 ][$ value ]);
8688 }
8789}
Original file line number Diff line number Diff line change @@ -174,7 +174,7 @@ final class UpdateFunctionConfigurationRequest extends Input
174174 /**
175175 * Container image configuration values [^1] that override the values in the container image Docker file.
176176 *
177- * [^1]: https://docs.aws.amazon.com/lambda/latest/dg/images-parms .html
177+ * [^1]: https://docs.aws.amazon.com/lambda/latest/dg/images-create .html#images-parms
178178 *
179179 * @var ImageConfig|null
180180 */
You can’t perform that action at this time.
0 commit comments