File tree 4 files changed +15
-1
lines changed
4 files changed +15
-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: This release adds support for environment type WINDOWS_SERVER_2022_CONTAINER in ProjectEnvironment
8
+ - AWS api-change: Added ` us-isob-east-1 ` region.
9
+
5
10
## 2.9.0
6
11
7
12
### Added
Original file line number Diff line number Diff line change 28
28
},
29
29
"extra" : {
30
30
"branch-alias" : {
31
- "dev-master" : " 2.9 -dev"
31
+ "dev-master" : " 2.10 -dev"
32
32
}
33
33
}
34
34
}
Original file line number Diff line number Diff line change @@ -224,6 +224,13 @@ protected function getEndpointMetadata(?string $region): array
224
224
'signService ' => 'codebuild ' ,
225
225
'signVersions ' => ['v4 ' ],
226
226
];
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
+ ];
227
234
}
228
235
229
236
return [
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ final class EnvironmentType
15
15
public const WINDOWS_CONTAINER = 'WINDOWS_CONTAINER ' ;
16
16
public const WINDOWS_EC2 = 'WINDOWS_EC2 ' ;
17
17
public const WINDOWS_SERVER_2019_CONTAINER = 'WINDOWS_SERVER_2019_CONTAINER ' ;
18
+ public const WINDOWS_SERVER_2022_CONTAINER = 'WINDOWS_SERVER_2022_CONTAINER ' ;
18
19
19
20
public static function exists (string $ value ): bool
20
21
{
@@ -30,6 +31,7 @@ public static function exists(string $value): bool
30
31
self ::WINDOWS_CONTAINER => true ,
31
32
self ::WINDOWS_EC2 => true ,
32
33
self ::WINDOWS_SERVER_2019_CONTAINER => true ,
34
+ self ::WINDOWS_SERVER_2022_CONTAINER => true ,
33
35
][$ value ]);
34
36
}
35
37
}
You can’t perform that action at this time.
0 commit comments