Skip to content

Commit

Permalink
Updates SDK to v2.52.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed May 16, 2017
1 parent 575e3e7 commit f008572
Show file tree
Hide file tree
Showing 23 changed files with 1,599 additions and 1,100 deletions.
17 changes: 17 additions & 0 deletions .changes/2.52.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[
{
"type": "feature",
"category": "CodeDeploy",
"description": "This release introduces the previousRevision field in the responses to the GetDeployment and BatchGetDeployments actions. previousRevision provides information about the application revision that was deployed to the deployment group before the most recent successful deployment. Also, the fileExistsBehavior parameter has been added for CreateDeployment action requests. In the past, if the AWS CodeDeploy agent detected files in a target location that weren't part of the application revision from the most recent successful deployment, it would fail the current deployment by default. This new parameter provides options for how the agent handles these files: fail the deployment, retain the content, or overwrite the content."
},
{
"type": "feature",
"category": "GameLift",
"description": "Allow developers to specify how metrics are grouped in CloudWatch for their GameLift fleets. Developers can also specify how many concurrent game sessions activate on a per-instance basis."
},
{
"type": "feature",
"category": "Inspector",
"description": "Adds ability to produce an assessment report that includes detailed and comprehensive results of a specified assessment run."
}
]
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.51.0-->
<!--LATEST=2.52.0-->
<!--ENTRYINSERT-->

## 2.52.0
* feature: CodeDeploy: This release introduces the previousRevision field in the responses to the GetDeployment and BatchGetDeployments actions. previousRevision provides information about the application revision that was deployed to the deployment group before the most recent successful deployment. Also, the fileExistsBehavior parameter has been added for CreateDeployment action requests. In the past, if the AWS CodeDeploy agent detected files in a target location that weren't part of the application revision from the most recent successful deployment, it would fail the current deployment by default. This new parameter provides options for how the agent handles these files: fail the deployment, retain the content, or overwrite the content.
* feature: GameLift: Allow developers to specify how metrics are grouped in CloudWatch for their GameLift fleets. Developers can also specify how many concurrent game sessions activate on a per-instance basis.
* feature: Inspector: Adds ability to produce an assessment report that includes detailed and comprehensive results of a specified assessment run.

## 2.51.0
* feature: SSM: UpdateAssociation API now supports updating document name and targets of an association. GetAutomationExecution API can return FailureDetails as an optional field to the StepExecution Object, which contains failure type, failure stage as well as other failure related information for a failed step.

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
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.51.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.52.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
5 changes: 5 additions & 0 deletions apis/codedeploy-2014-10-06.examples.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"version": "1.0",
"examples": {
}
}
21 changes: 13 additions & 8 deletions apis/codedeploy-2014-10-06.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@
"instanceInfos": {
"type": "list",
"member": {
"shape": "S3b"
"shape": "S3c"
}
}
}
Expand Down Expand Up @@ -233,7 +233,8 @@
},
"updateOutdatedInstancesOnly": {
"type": "boolean"
}
},
"fileExistsBehavior": {}
}
},
"output": {
Expand All @@ -252,7 +253,7 @@
"members": {
"deploymentConfigName": {},
"minimumHealthyHosts": {
"shape": "S3l"
"shape": "S3m"
}
}
},
Expand Down Expand Up @@ -450,7 +451,7 @@
"deploymentConfigId": {},
"deploymentConfigName": {},
"minimumHealthyHosts": {
"shape": "S3l"
"shape": "S3m"
},
"createTime": {
"type": "timestamp"
Expand Down Expand Up @@ -516,7 +517,7 @@
"type": "structure",
"members": {
"instanceInfo": {
"shape": "S3b"
"shape": "S3c"
}
}
}
Expand Down Expand Up @@ -1127,6 +1128,9 @@
"deploymentGroupName": {},
"deploymentConfigName": {},
"deploymentId": {},
"previousRevision": {
"shape": "Sb"
},
"revision": {
"shape": "Sb"
},
Expand Down Expand Up @@ -1204,7 +1208,8 @@
"loadBalancerInfo": {
"shape": "S27"
},
"additionalDeploymentStatusInfo": {}
"additionalDeploymentStatusInfo": {},
"fileExistsBehavior": {}
}
},
"S35": {
Expand All @@ -1222,7 +1227,7 @@
"type": "list",
"member": {}
},
"S3b": {
"S3c": {
"type": "structure",
"members": {
"instanceName": {},
Expand All @@ -1240,7 +1245,7 @@
}
}
},
"S3l": {
"S3m": {
"type": "structure",
"members": {
"value": {
Expand Down

0 comments on commit f008572

Please sign in to comment.