Skip to content

Commit 107e763

Browse files
Update generated code (#1670)
update generated code
1 parent 6573cae commit 107e763

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
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 .NET 8 (dotnet8) Runtime support to AWS Lambda.
8+
59
### Changed
610

711
- AWS enhancement: Documentation updates.

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.3-dev"
31+
"dev-master": "2.4-dev"
3232
}
3333
}
3434
}

src/Enum/Runtime.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ final class Runtime
99
public const DOTNETCORE_2_1 = 'dotnetcore2.1';
1010
public const DOTNETCORE_3_1 = 'dotnetcore3.1';
1111
public const DOTNET_6 = 'dotnet6';
12+
public const DOTNET_8 = 'dotnet8';
1213
public const GO_1_X = 'go1.x';
1314
public const JAVA_11 = 'java11';
1415
public const JAVA_17 = 'java17';
@@ -49,6 +50,7 @@ public static function exists(string $value): bool
4950
self::DOTNETCORE_2_1 => true,
5051
self::DOTNETCORE_3_1 => true,
5152
self::DOTNET_6 => true,
53+
self::DOTNET_8 => true,
5254
self::GO_1_X => true,
5355
self::JAVA_11 => true,
5456
self::JAVA_17 => true,

0 commit comments

Comments
 (0)