@aws-sdk/client-sts 3.41.0 → 3.42.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 +11 -0
- package/dist-cjs/endpoints.js +8 -0
- package/dist-es/endpoints.js +8 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.42.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.41.0...v3.42.0) (2021-11-19)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **clients:** merge default variants by comparing tags ([#3044](https://github.com/aws/aws-sdk-js-v3/issues/3044)) ([d65a310](https://github.com/aws/aws-sdk-js-v3/commit/d65a310ed5a471e72633a18ae6f3c98390e20783))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.41.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.40.1...v3.41.0) (2021-11-11)
|
|
7
18
|
|
|
8
19
|
|
package/dist-cjs/endpoints.js
CHANGED
|
@@ -197,6 +197,14 @@ const partitionHash = {
|
|
|
197
197
|
hostname: "sts.{region}.amazonaws.com",
|
|
198
198
|
tags: ["fips"],
|
|
199
199
|
},
|
|
200
|
+
{
|
|
201
|
+
hostname: "sts-fips.{region}.api.aws",
|
|
202
|
+
tags: ["dualstack", "fips"],
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
hostname: "sts.{region}.api.aws",
|
|
206
|
+
tags: ["dualstack"],
|
|
207
|
+
},
|
|
200
208
|
],
|
|
201
209
|
},
|
|
202
210
|
};
|
package/dist-es/endpoints.js
CHANGED
|
@@ -195,6 +195,14 @@ var partitionHash = {
|
|
|
195
195
|
hostname: "sts.{region}.amazonaws.com",
|
|
196
196
|
tags: ["fips"],
|
|
197
197
|
},
|
|
198
|
+
{
|
|
199
|
+
hostname: "sts-fips.{region}.api.aws",
|
|
200
|
+
tags: ["dualstack", "fips"],
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
hostname: "sts.{region}.api.aws",
|
|
204
|
+
tags: ["dualstack"],
|
|
205
|
+
},
|
|
198
206
|
],
|
|
199
207
|
},
|
|
200
208
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sts",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sts Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.42.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn build:cjs && yarn build:es && yarn build:types",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.json",
|