Skip to content

Commit

Permalink
Updates SDK to v2.42.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Apr 18, 2017
1 parent da5e7b2 commit 55a8f68
Show file tree
Hide file tree
Showing 11 changed files with 794 additions and 383 deletions.
12 changes: 12 additions & 0 deletions .changes/2.42.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[
{
"type": "bugfix",
"category": "Parser",
"description": "Makes casting payload blobs to strings an exceptional behavior rather than the default"
},
{
"type": "feature",
"category": "Lambda",
"description": "You can use tags to group and filter your Lambda functions, making it easier to analyze them for billing allocation purposes. For more information, see Tagging Lambda Functions. You can now write or upgrade your Lambda functions using Python version 3.6. For more information, see Programming Model for Authoring Lambda Functions in Python. Note: Features will be rolled out in the US regions on 4/19."
}
]
5 changes: 0 additions & 5 deletions .changes/next-release/bugfix-Parser-d7e3b2f2.json

This file was deleted.

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.41.0-->
<!--LATEST=2.42.0-->
<!--ENTRYINSERT-->

## 2.42.0
* bugfix: Parser: Makes casting payload blobs to strings an exceptional behavior rather than the default
* feature: Lambda: You can use tags to group and filter your Lambda functions, making it easier to analyze them for billing allocation purposes. For more information, see Tagging Lambda Functions. You can now write or upgrade your Lambda functions using Python version 3.6. For more information, see Programming Model for Authoring Lambda Functions in Python. Note: Features will be rolled out in the US regions on 4/19.

## 2.41.0
* feature: APIGateway: API Gateway request validators
* feature: Batch: API Update for AWS Batch: Customer provided AMI for MANAGED Compute Environment
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.41.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.42.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
107 changes: 96 additions & 11 deletions apis/lambda-2015-03-31.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -152,11 +152,14 @@
"Environment": {
"shape": "S17"
},
"KMSKeyArn": {}
"KMSKeyArn": {},
"Tags": {
"shape": "S1c"
}
}
},
"output": {
"shape": "S1c"
"shape": "S1f"
}
},
"DeleteAlias": {
Expand Down Expand Up @@ -347,14 +350,17 @@
"type": "structure",
"members": {
"Configuration": {
"shape": "S1c"
"shape": "S1f"
},
"Code": {
"type": "structure",
"members": {
"RepositoryType": {},
"Location": {}
}
},
"Tags": {
"shape": "S1c"
}
}
}
Expand Down Expand Up @@ -382,7 +388,7 @@
}
},
"output": {
"shape": "S1c"
"shape": "S1f"
}
},
"GetPolicy": {
Expand Down Expand Up @@ -618,7 +624,33 @@
"members": {
"NextMarker": {},
"Functions": {
"shape": "S2h"
"shape": "S2k"
}
}
}
},
"ListTags": {
"http": {
"method": "GET",
"requestUri": "/2017-03-31/tags/{ARN}"
},
"input": {
"type": "structure",
"required": [
"Resource"
],
"members": {
"Resource": {
"location": "uri",
"locationName": "ARN"
}
}
},
"output": {
"type": "structure",
"members": {
"Tags": {
"shape": "S1c"
}
}
}
Expand Down Expand Up @@ -655,7 +687,7 @@
"members": {
"NextMarker": {},
"Versions": {
"shape": "S2h"
"shape": "S2k"
}
}
}
Expand All @@ -680,7 +712,7 @@
}
},
"output": {
"shape": "S1c"
"shape": "S1f"
}
},
"RemovePermission": {
Expand Down Expand Up @@ -711,6 +743,54 @@
}
}
},
"TagResource": {
"http": {
"requestUri": "/2017-03-31/tags/{ARN}",
"responseCode": 204
},
"input": {
"type": "structure",
"required": [
"Resource",
"Tags"
],
"members": {
"Resource": {
"location": "uri",
"locationName": "ARN"
},
"Tags": {
"shape": "S1c"
}
}
}
},
"UntagResource": {
"http": {
"method": "DELETE",
"requestUri": "/2017-03-31/tags/{ARN}",
"responseCode": 204
},
"input": {
"type": "structure",
"required": [
"Resource",
"TagKeys"
],
"members": {
"Resource": {
"location": "uri",
"locationName": "ARN"
},
"TagKeys": {
"location": "querystring",
"locationName": "tagKeys",
"type": "list",
"member": {}
}
}
}
},
"UpdateAlias": {
"http": {
"method": "PUT",
Expand Down Expand Up @@ -797,7 +877,7 @@
}
},
"output": {
"shape": "S1c"
"shape": "S1f"
}
},
"UpdateFunctionConfiguration": {
Expand Down Expand Up @@ -839,7 +919,7 @@
}
},
"output": {
"shape": "S1c"
"shape": "S1f"
}
}
},
Expand Down Expand Up @@ -920,6 +1000,11 @@
"sensitive": true
},
"S1c": {
"type": "map",
"key": {},
"value": {}
},
"S1f": {
"type": "structure",
"members": {
"FunctionName": {},
Expand Down Expand Up @@ -976,10 +1061,10 @@
"KMSKeyArn": {}
}
},
"S2h": {
"S2k": {
"type": "list",
"member": {
"shape": "S1c"
"shape": "S1f"
}
}
}
Expand Down
Loading

0 comments on commit 55a8f68

Please sign in to comment.