aws-sdk 2.852.0 → 2.853.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -1
- package/README.md +1 -1
- package/apis/eks-2017-11-01.min.json +154 -122
- package/apis/elasticmapreduce-2009-03-31.min.json +19 -1
- package/apis/s3-2006-03-01.examples.json +109 -109
- package/apis/s3-2006-03-01.min.json +8 -0
- package/clients/eks.d.ts +29 -4
- package/clients/emr.d.ts +80 -50
- package/clients/s3.d.ts +40 -38
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +21 -7
- package/dist/aws-sdk.js +47 -7
- package/dist/aws-sdk.min.js +48 -48
- package/lib/core.js +1 -1
- package/lib/services/s3.js +13 -1
- package/lib/services/s3util.js +4 -2
- package/package.json +1 -1
- package/scripts/region-checker/allowlist.js +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,14 @@
|
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
|
2
|
-
<!--LATEST=2.
|
|
2
|
+
<!--LATEST=2.853.0-->
|
|
3
3
|
<!--ENTRYINSERT-->
|
|
4
4
|
|
|
5
|
+
## 2.853.0
|
|
6
|
+
* bugfix: s3: Bugfixing the s3 arn endpoint parser
|
|
7
|
+
* feature: EKS: Amazon EKS now supports adding KMS envelope encryption to existing clusters to enhance security for secrets
|
|
8
|
+
* feature: EMR: Added UpdateStudio API that allows updating a few attributes of an EMR Studio.
|
|
9
|
+
* feature: S3: Add RequestPayer to GetObjectTagging and PutObjectTagging.
|
|
10
|
+
* feature: SSOAdmin: Relax constraint on List* API pagination tokens to include underscore character
|
|
11
|
+
|
|
5
12
|
## 2.852.0
|
|
6
13
|
* feature: DataBrew: This SDK release adds two new dataset features: 1) support for specifying the file format for a dataset, and 2) support for specifying whether the first row of a CSV or Excel file contains a header.
|
|
7
14
|
* feature: Detective: Changed "master account" to "administrator account." A new AdministratorId field replaces the deprecated MasterId field. Added an option to disable email notifications for member account invitations.
|
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
|
|
|
29
29
|
To use the SDK in the browser, simply add the following script tag to your
|
|
30
30
|
HTML pages:
|
|
31
31
|
|
|
32
|
-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.
|
|
32
|
+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.853.0.min.js"></script>
|
|
33
33
|
|
|
34
34
|
You can also build a custom browser SDK with your specified set of AWS services.
|
|
35
35
|
This can allow you to reduce the SDK's size, specify different API versions of
|