Skip to content

Commit

Permalink
Updates SDK to v2.1025.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Nov 9, 2021
1 parent 8af6be7 commit 3ad5a7e
Show file tree
Hide file tree
Showing 19 changed files with 1,078 additions and 239 deletions.
12 changes: 12 additions & 0 deletions .changes/2.1025.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[
{
"type": "feature",
"category": "Batch",
"description": "Adds support for scheduling policy APIs."
},
{
"type": "feature",
"category": "GreengrassV2",
"description": "This release adds support for Greengrass core devices running Windows. You can now specify name of a Windows user to run a component."
}
]
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.1024.0-->
<!--LATEST=2.1025.0-->
<!--ENTRYINSERT-->

## 2.1025.0
* feature: Batch: Adds support for scheduling policy APIs.
* 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.

## 2.1024.0
* feature: ChimeSDKMeetings: Updated format validation for ids and regions.
* feature: EC2: This release adds internal validation on the GatewayAssociationState field
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
To use the SDK in the browser, simply add the following script tag to your
HTML pages:

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

You can also build a custom browser SDK with your specified set of AWS services.
This can allow you to reduce the SDK's size, specify different API versions of
Expand Down
36 changes: 30 additions & 6 deletions apis/batch-2016-08-10.examples.json
Original file line number Diff line number Diff line change
Expand Up @@ -298,14 +298,22 @@

],
"image": "busybox",
"memory": 128,
"mountPoints": [

],
"resourceRequirements": [
{
"type": "MEMORY",
"value": "128"
},
{
"type": "VCPU",
"value": "1"
}
],
"ulimits": [

],
"vcpus": 1,
"volumes": [

]
Expand Down Expand Up @@ -504,8 +512,16 @@
"10"
],
"image": "busybox",
"memory": 128,
"vcpus": 1
"resourceRequirements": [
{
"type": "MEMORY",
"value": "128"
},
{
"type": "VCPU",
"value": "1"
}
]
},
"jobDefinitionName": "sleep10"
},
Expand Down Expand Up @@ -533,8 +549,16 @@
"30"
],
"image": "busybox",
"memory": 128,
"vcpus": 1
"resourceRequirements": [
{
"type": "MEMORY",
"value": "128"
},
{
"type": "VCPU",
"value": "1"
}
]
},
"jobDefinitionName": "sleep30",
"tags": {
Expand Down
Loading

0 comments on commit 3ad5a7e

Please sign in to comment.