Skip to content

Commit 3ad5a7e

Browse files
author
awstools
committed
Updates SDK to v2.1025.0
1 parent 8af6be7 commit 3ad5a7e

19 files changed

+1078
-239
lines changed

.changes/2.1025.0.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[
2+
{
3+
"type": "feature",
4+
"category": "Batch",
5+
"description": "Adds support for scheduling policy APIs."
6+
},
7+
{
8+
"type": "feature",
9+
"category": "GreengrassV2",
10+
"description": "This release adds support for Greengrass core devices running Windows. You can now specify name of a Windows user to run a component."
11+
}
12+
]

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
# Changelog for AWS SDK for JavaScript
2-
<!--LATEST=2.1024.0-->
2+
<!--LATEST=2.1025.0-->
33
<!--ENTRYINSERT-->
44

5+
## 2.1025.0
6+
* feature: Batch: Adds support for scheduling policy APIs.
7+
* feature: GreengrassV2: This release adds support for Greengrass core devices running Windows. You can now specify name of a Windows user to run a component.
8+
59
## 2.1024.0
610
* feature: ChimeSDKMeetings: Updated format validation for ids and regions.
711
* feature: EC2: This release adds internal validation on the GatewayAssociationState field

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
2929
To use the SDK in the browser, simply add the following script tag to your
3030
HTML pages:
3131

32-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1024.0.min.js"></script>
32+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1025.0.min.js"></script>
3333

3434
You can also build a custom browser SDK with your specified set of AWS services.
3535
This can allow you to reduce the SDK's size, specify different API versions of

apis/batch-2016-08-10.examples.json

Lines changed: 30 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -298,14 +298,22 @@
298298

299299
],
300300
"image": "busybox",
301-
"memory": 128,
302301
"mountPoints": [
303302

303+
],
304+
"resourceRequirements": [
305+
{
306+
"type": "MEMORY",
307+
"value": "128"
308+
},
309+
{
310+
"type": "VCPU",
311+
"value": "1"
312+
}
304313
],
305314
"ulimits": [
306315

307316
],
308-
"vcpus": 1,
309317
"volumes": [
310318

311319
]
@@ -504,8 +512,16 @@
504512
"10"
505513
],
506514
"image": "busybox",
507-
"memory": 128,
508-
"vcpus": 1
515+
"resourceRequirements": [
516+
{
517+
"type": "MEMORY",
518+
"value": "128"
519+
},
520+
{
521+
"type": "VCPU",
522+
"value": "1"
523+
}
524+
]
509525
},
510526
"jobDefinitionName": "sleep10"
511527
},
@@ -533,8 +549,16 @@
533549
"30"
534550
],
535551
"image": "busybox",
536-
"memory": 128,
537-
"vcpus": 1
552+
"resourceRequirements": [
553+
{
554+
"type": "MEMORY",
555+
"value": "128"
556+
},
557+
{
558+
"type": "VCPU",
559+
"value": "1"
560+
}
561+
]
538562
},
539563
"jobDefinitionName": "sleep30",
540564
"tags": {

0 commit comments

Comments
 (0)