Skip to content

Commit 55a8f68

Browse files
author
awstools
committed
Updates SDK to v2.42.0
1 parent da5e7b2 commit 55a8f68

11 files changed

+794
-383
lines changed

.changes/2.42.0.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[
2+
{
3+
"type": "bugfix",
4+
"category": "Parser",
5+
"description": "Makes casting payload blobs to strings an exceptional behavior rather than the default"
6+
},
7+
{
8+
"type": "feature",
9+
"category": "Lambda",
10+
"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."
11+
}
12+
]

.changes/next-release/bugfix-Parser-d7e3b2f2.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
# Changelog for AWS SDK for JavaScript
2-
<!--LATEST=2.41.0-->
2+
<!--LATEST=2.42.0-->
33
<!--ENTRYINSERT-->
44

5+
## 2.42.0
6+
* bugfix: Parser: Makes casting payload blobs to strings an exceptional behavior rather than the default
7+
* 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.
8+
59
## 2.41.0
610
* feature: APIGateway: API Gateway request validators
711
* feature: Batch: API Update for AWS Batch: Customer provided AMI for MANAGED Compute Environment

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ to work with the new major version.
2424
To use the SDK in the browser, simply add the following script tag to your
2525
HTML pages:
2626

27-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.41.0.min.js"></script>
27+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.42.0.min.js"></script>
2828

2929
You can also build a custom browser SDK with your specified set of AWS services.
3030
This can allow you to reduce the SDK's size, specify different API versions of

apis/lambda-2015-03-31.min.json

Lines changed: 96 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -152,11 +152,14 @@
152152
"Environment": {
153153
"shape": "S17"
154154
},
155-
"KMSKeyArn": {}
155+
"KMSKeyArn": {},
156+
"Tags": {
157+
"shape": "S1c"
158+
}
156159
}
157160
},
158161
"output": {
159-
"shape": "S1c"
162+
"shape": "S1f"
160163
}
161164
},
162165
"DeleteAlias": {
@@ -347,14 +350,17 @@
347350
"type": "structure",
348351
"members": {
349352
"Configuration": {
350-
"shape": "S1c"
353+
"shape": "S1f"
351354
},
352355
"Code": {
353356
"type": "structure",
354357
"members": {
355358
"RepositoryType": {},
356359
"Location": {}
357360
}
361+
},
362+
"Tags": {
363+
"shape": "S1c"
358364
}
359365
}
360366
}
@@ -382,7 +388,7 @@
382388
}
383389
},
384390
"output": {
385-
"shape": "S1c"
391+
"shape": "S1f"
386392
}
387393
},
388394
"GetPolicy": {
@@ -618,7 +624,33 @@
618624
"members": {
619625
"NextMarker": {},
620626
"Functions": {
621-
"shape": "S2h"
627+
"shape": "S2k"
628+
}
629+
}
630+
}
631+
},
632+
"ListTags": {
633+
"http": {
634+
"method": "GET",
635+
"requestUri": "/2017-03-31/tags/{ARN}"
636+
},
637+
"input": {
638+
"type": "structure",
639+
"required": [
640+
"Resource"
641+
],
642+
"members": {
643+
"Resource": {
644+
"location": "uri",
645+
"locationName": "ARN"
646+
}
647+
}
648+
},
649+
"output": {
650+
"type": "structure",
651+
"members": {
652+
"Tags": {
653+
"shape": "S1c"
622654
}
623655
}
624656
}
@@ -655,7 +687,7 @@
655687
"members": {
656688
"NextMarker": {},
657689
"Versions": {
658-
"shape": "S2h"
690+
"shape": "S2k"
659691
}
660692
}
661693
}
@@ -680,7 +712,7 @@
680712
}
681713
},
682714
"output": {
683-
"shape": "S1c"
715+
"shape": "S1f"
684716
}
685717
},
686718
"RemovePermission": {
@@ -711,6 +743,54 @@
711743
}
712744
}
713745
},
746+
"TagResource": {
747+
"http": {
748+
"requestUri": "/2017-03-31/tags/{ARN}",
749+
"responseCode": 204
750+
},
751+
"input": {
752+
"type": "structure",
753+
"required": [
754+
"Resource",
755+
"Tags"
756+
],
757+
"members": {
758+
"Resource": {
759+
"location": "uri",
760+
"locationName": "ARN"
761+
},
762+
"Tags": {
763+
"shape": "S1c"
764+
}
765+
}
766+
}
767+
},
768+
"UntagResource": {
769+
"http": {
770+
"method": "DELETE",
771+
"requestUri": "/2017-03-31/tags/{ARN}",
772+
"responseCode": 204
773+
},
774+
"input": {
775+
"type": "structure",
776+
"required": [
777+
"Resource",
778+
"TagKeys"
779+
],
780+
"members": {
781+
"Resource": {
782+
"location": "uri",
783+
"locationName": "ARN"
784+
},
785+
"TagKeys": {
786+
"location": "querystring",
787+
"locationName": "tagKeys",
788+
"type": "list",
789+
"member": {}
790+
}
791+
}
792+
}
793+
},
714794
"UpdateAlias": {
715795
"http": {
716796
"method": "PUT",
@@ -797,7 +877,7 @@
797877
}
798878
},
799879
"output": {
800-
"shape": "S1c"
880+
"shape": "S1f"
801881
}
802882
},
803883
"UpdateFunctionConfiguration": {
@@ -839,7 +919,7 @@
839919
}
840920
},
841921
"output": {
842-
"shape": "S1c"
922+
"shape": "S1f"
843923
}
844924
}
845925
},
@@ -920,6 +1000,11 @@
9201000
"sensitive": true
9211001
},
9221002
"S1c": {
1003+
"type": "map",
1004+
"key": {},
1005+
"value": {}
1006+
},
1007+
"S1f": {
9231008
"type": "structure",
9241009
"members": {
9251010
"FunctionName": {},
@@ -976,10 +1061,10 @@
9761061
"KMSKeyArn": {}
9771062
}
9781063
},
979-
"S2h": {
1064+
"S2k": {
9801065
"type": "list",
9811066
"member": {
982-
"shape": "S1c"
1067+
"shape": "S1f"
9831068
}
9841069
}
9851070
}

0 commit comments

Comments
 (0)