Skip to content

Commit

Permalink
Update generated code (#1670)
Browse files Browse the repository at this point in the history
update generated code
  • Loading branch information
async-aws-bot authored Feb 21, 2024
1 parent 6573cae commit 107e763
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## NOT RELEASED

### Added

- AWS api-change: Add .NET 8 (dotnet8) Runtime support to AWS Lambda.

### Changed

- AWS enhancement: Documentation updates.
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "2.3-dev"
"dev-master": "2.4-dev"
}
}
}
2 changes: 2 additions & 0 deletions src/Enum/Runtime.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ final class Runtime
public const DOTNETCORE_2_1 = 'dotnetcore2.1';
public const DOTNETCORE_3_1 = 'dotnetcore3.1';
public const DOTNET_6 = 'dotnet6';
public const DOTNET_8 = 'dotnet8';
public const GO_1_X = 'go1.x';
public const JAVA_11 = 'java11';
public const JAVA_17 = 'java17';
Expand Down Expand Up @@ -49,6 +50,7 @@ public static function exists(string $value): bool
self::DOTNETCORE_2_1 => true,
self::DOTNETCORE_3_1 => true,
self::DOTNET_6 => true,
self::DOTNET_8 => true,
self::GO_1_X => true,
self::JAVA_11 => true,
self::JAVA_17 => true,
Expand Down

0 comments on commit 107e763

Please sign in to comment.