File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Expand file tree Collapse file tree 3 files changed +7
-1
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 .NET 8 (dotnet8) Runtime 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.3 -dev"
31
+ "dev-master" : " 2.4 -dev"
32
32
}
33
33
}
34
34
}
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ final class Runtime
9
9
public const DOTNETCORE_2_1 = 'dotnetcore2.1 ' ;
10
10
public const DOTNETCORE_3_1 = 'dotnetcore3.1 ' ;
11
11
public const DOTNET_6 = 'dotnet6 ' ;
12
+ public const DOTNET_8 = 'dotnet8 ' ;
12
13
public const GO_1_X = 'go1.x ' ;
13
14
public const JAVA_11 = 'java11 ' ;
14
15
public const JAVA_17 = 'java17 ' ;
@@ -49,6 +50,7 @@ public static function exists(string $value): bool
49
50
self ::DOTNETCORE_2_1 => true ,
50
51
self ::DOTNETCORE_3_1 => true ,
51
52
self ::DOTNET_6 => true ,
53
+ self ::DOTNET_8 => true ,
52
54
self ::GO_1_X => true ,
53
55
self ::JAVA_11 => true ,
54
56
self ::JAVA_17 => true ,
You can’t perform that action at this time.
0 commit comments