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 2
2
3
3
## NOT RELEASED
4
4
5
+ ### Added
6
+
7
+ - AWS api-change: Add Ruby 3.3 (ruby3.3) support to AWS Lambda
8
+
5
9
### Changed
6
10
7
11
- AWS enhancement: Documentation updates.
Original file line number Diff line number Diff line change 28
28
},
29
29
"extra" : {
30
30
"branch-alias" : {
31
- "dev-master" : " 2.4 -dev"
31
+ "dev-master" : " 2.5 -dev"
32
32
}
33
33
}
34
34
}
Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ final class Runtime
41
41
public const RUBY_2_5 = 'ruby2.5 ' ;
42
42
public const RUBY_2_7 = 'ruby2.7 ' ;
43
43
public const RUBY_3_2 = 'ruby3.2 ' ;
44
+ public const RUBY_3_3 = 'ruby3.3 ' ;
44
45
45
46
public static function exists (string $ value ): bool
46
47
{
@@ -82,6 +83,7 @@ public static function exists(string $value): bool
82
83
self ::RUBY_2_5 => true ,
83
84
self ::RUBY_2_7 => true ,
84
85
self ::RUBY_3_2 => true ,
86
+ self ::RUBY_3_3 => true ,
85
87
][$ value ]);
86
88
}
87
89
}
Original file line number Diff line number Diff line change @@ -174,7 +174,7 @@ final class UpdateFunctionConfigurationRequest extends Input
174
174
/**
175
175
* Container image configuration values [^1] that override the values in the container image Docker file.
176
176
*
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
178
178
*
179
179
* @var ImageConfig|null
180
180
*/
You can’t perform that action at this time.
0 commit comments