Skip to content

Commit

Permalink
Updates SDK to v2.683.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed May 22, 2020
1 parent eb0f0ef commit f0ac2e5
Show file tree
Hide file tree
Showing 17 changed files with 542 additions and 417 deletions.
22 changes: 22 additions & 0 deletions .changes/2.683.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[
{
"type": "bugfix",
"category": "DualStack",
"description": "Add dualstack by modifying existing endpoint in config"
},
{
"type": "bugfix",
"category": "EndpointDiscovery",
"description": "* If at least one operation requires endpoint discovery then the SDK enables endpoint discovery by default including operational endpoint discovery operations; * Users can set config `endpointDiscoveryEnabled`, env `AWS_ENDPOINT_DISCOVERY_ENABLED`, config file entry `endpoint_discovery_enabled` to `false` to explictly disable endpoint discovery, even operations the require endpoint discovery will fail; * SDK throws if endpoint discovery is explicitly disabled but operation requires endpoint discovery; * Now SDK throws more clear error message when required endpoint operation fails"
},
{
"type": "bugfix",
"category": "S3",
"description": "throw exception when incomplete body is returned from CopyObject, UploadPartCopy, and CompleteMultipartUpload"
},
{
"type": "feature",
"category": "IoTSiteWise",
"description": "This release adds support for the standard deviation auto-computed aggregate and improved support for portal logo images in SiteWise."
}
]
5 changes: 0 additions & 5 deletions .changes/next-release/bugfix-DualStack-a5f57529.json

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/next-release/bugfix-EndpointDiscovery-f55d6800.json

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/next-release/bugfix-S3-6167b5a8.json

This file was deleted.

8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.682.0-->
<!--LATEST=2.683.0-->
<!--ENTRYINSERT-->

## 2.683.0
* bugfix: DualStack: Add dualstack by modifying existing endpoint in config
* bugfix: EndpointDiscovery: * If at least one operation requires endpoint discovery then the SDK enables endpoint discovery by default including operational endpoint discovery operations; * Users can set config `endpointDiscoveryEnabled`, env `AWS_ENDPOINT_DISCOVERY_ENABLED`, config file entry `endpoint_discovery_enabled` to `false` to explictly disable endpoint discovery, even operations the require endpoint discovery will fail; * SDK throws if endpoint discovery is explicitly disabled but operation requires endpoint discovery; * Now SDK throws more clear error message when required endpoint operation fails
* bugfix: S3: throw exception when incomplete body is returned from CopyObject, UploadPartCopy, and CompleteMultipartUpload
* feature: IoTSiteWise: This release adds support for the standard deviation auto-computed aggregate and improved support for portal logo images in SiteWise.

## 2.682.0
* bugfix: Typings: When implementing `Credentials` interface's `refresh()` method, the callback needs a defined `AWSError` as arg but it may not exist in case of successful refresh. Hence, modifed the method typing to include the fact that the callback can be called with no error on success as described in the docs.
* feature: CodeBuild: CodeBuild adds support for tagging with report groups
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ version.
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.682.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.683.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
136 changes: 68 additions & 68 deletions apis/autoscaling-2011-01-01.normal.json

Large diffs are not rendered by default.

33 changes: 22 additions & 11 deletions apis/iotsitewise-2019-12-02.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -1199,13 +1199,15 @@
"portalLastUpdateDate": {
"type": "timestamp"
},
"portalLogoImage": {
"portalLogoImageLocation": {
"type": "structure",
"required": [
"id",
"url"
],
"members": {
"locationUrl": {},
"lastUpdateDate": {
"type": "timestamp"
}
"id": {},
"url": {}
}
},
"roleArn": {}
Expand Down Expand Up @@ -1390,6 +1392,9 @@
},
"sum": {
"type": "double"
},
"standardDeviation": {
"type": "double"
}
}
}
Expand Down Expand Up @@ -2450,8 +2455,14 @@
"portalName": {},
"portalDescription": {},
"portalContactEmail": {},
"portalLogoImageFile": {
"shape": "S2m"
"portalLogoImage": {
"type": "structure",
"members": {
"id": {},
"file": {
"shape": "S2m"
}
}
},
"roleArn": {},
"clientToken": {
Expand Down Expand Up @@ -2752,14 +2763,14 @@
"S2m": {
"type": "structure",
"required": [
"encodedString",
"fileType"
"data",
"type"
],
"members": {
"encodedString": {
"data": {
"type": "blob"
},
"fileType": {}
"type": {}
}
},
"S2r": {
Expand Down
Loading

0 comments on commit f0ac2e5

Please sign in to comment.