File tree Expand file tree Collapse file tree 4 files changed +15
-1
lines changed Expand file tree Collapse file tree 4 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 22
33## NOT RELEASED
44
5+ ### Added
6+
7+ - AWS api-change: This release adds support for environment type WINDOWS_SERVER_2022_CONTAINER in ProjectEnvironment
8+ - AWS api-change: Added ` us-isob-east-1 ` region.
9+
510## 2.9.0
611
712### Added
Original file line number Diff line number Diff line change 2828 },
2929 "extra" : {
3030 "branch-alias" : {
31- "dev-master" : " 2.9 -dev"
31+ "dev-master" : " 2.10 -dev"
3232 }
3333 }
3434}
Original file line number Diff line number Diff line change @@ -224,6 +224,13 @@ protected function getEndpointMetadata(?string $region): array
224224 'signService ' => 'codebuild ' ,
225225 'signVersions ' => ['v4 ' ],
226226 ];
227+ case 'us-isob-east-1 ' :
228+ return [
229+ 'endpoint ' => 'https://codebuild.us-isob-east-1.sc2s.sgov.gov ' ,
230+ 'signRegion ' => 'us-isob-east-1 ' ,
231+ 'signService ' => 'codebuild ' ,
232+ 'signVersions ' => ['v4 ' ],
233+ ];
227234 }
228235
229236 return [
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ final class EnvironmentType
1515 public const WINDOWS_CONTAINER = 'WINDOWS_CONTAINER ' ;
1616 public const WINDOWS_EC2 = 'WINDOWS_EC2 ' ;
1717 public const WINDOWS_SERVER_2019_CONTAINER = 'WINDOWS_SERVER_2019_CONTAINER ' ;
18+ public const WINDOWS_SERVER_2022_CONTAINER = 'WINDOWS_SERVER_2022_CONTAINER ' ;
1819
1920 public static function exists (string $ value ): bool
2021 {
@@ -30,6 +31,7 @@ public static function exists(string $value): bool
3031 self ::WINDOWS_CONTAINER => true ,
3132 self ::WINDOWS_EC2 => true ,
3233 self ::WINDOWS_SERVER_2019_CONTAINER => true ,
34+ self ::WINDOWS_SERVER_2022_CONTAINER => true ,
3335 ][$ value ]);
3436 }
3537}
You can’t perform that action at this time.
0 commit comments