Skip to content

Commit

Permalink
Updates SDK to v2.27.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Mar 10, 2017
1 parent 373a148 commit 719fd61
Show file tree
Hide file tree
Showing 14 changed files with 1,978 additions and 504 deletions.
17 changes: 17 additions & 0 deletions .changes/2.27.0.json
@@ -0,0 +1,17 @@
[
{
"type": "bugfix",
"category": "TemporaryCredentials",
"description": "Ensure master credentials are not expired before using them to refresh temporary credentials"
},
{
"type": "feature",
"category": "CodeDeploy",
"description": "Add paginators for Codedeploy"
},
{
"type": "feature",
"category": "EMR",
"description": "This release includes support for instance fleets in Amazon EMR"
}
]

This file was deleted.

7 changes: 6 additions & 1 deletion CHANGELOG.md
@@ -1,7 +1,12 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.26.0-->
<!--LATEST=2.27.0-->
<!--ENTRYINSERT-->

## 2.27.0
* bugfix: TemporaryCredentials: Ensure master credentials are not expired before using them to refresh temporary credentials
* feature: CodeDeploy: Add paginators for Codedeploy
* feature: EMR: This release includes support for instance fleets in Amazon EMR

## 2.26.0
* feature: APIGateway: API Gateway has added support for ACM certificates on custom domain names. Both Amazon-issued certificates and uploaded third-part certificates are supported.
* feature: CloudDirectory: Introduces a new Cloud Directory API that enables you to retrieve all available parent paths for any type of object (a node, leaf node, policy node, and index node) in a hierarchy.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -24,7 +24,7 @@ to work with the new major 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.26.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.27.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
32 changes: 31 additions & 1 deletion apis/codedeploy-2014-10-06.paginators.json
@@ -1,4 +1,34 @@
{
"pagination": {
"ListApplicationRevisions": {
"input_token": "nextToken",
"output_token": "nextToken",
"result_key": "revisions"
},
"ListApplications": {
"input_token": "nextToken",
"output_token": "nextToken",
"result_key": "applications"
},
"ListDeploymentConfigs": {
"input_token": "nextToken",
"output_token": "nextToken",
"result_key": "deploymentConfigsList"
},
"ListDeploymentGroups": {
"input_token": "nextToken",
"output_token": "nextToken",
"result_key": "deploymentGroups"
},
"ListDeploymentInstances": {
"input_token": "nextToken",
"output_token": "nextToken",
"result_key": "instancesList"
},
"ListDeployments": {
"input_token": "nextToken",
"output_token": "nextToken",
"result_key": "deployments"
}
}
}
}

0 comments on commit 719fd61

Please sign in to comment.