@aws-sdk/client-rbin 3.171.0 → 3.175.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 +17 -1
- package/dist-es/endpoints.js +17 -1
- 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.175.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.174.0...v3.175.0) (2022-09-20)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **clients:** update client endpoints as of 2022-09-20 ([2a4842f](https://github.com/aws/aws-sdk-js-v3/commit/2a4842f5d0d2887351b46cd343c46dc6946126c7))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @aws-sdk/client-rbin
|
package/dist-cjs/endpoints.js
CHANGED
|
@@ -27,6 +27,22 @@ const regionHash = {
|
|
|
27
27
|
},
|
|
28
28
|
],
|
|
29
29
|
},
|
|
30
|
+
"us-gov-east-1": {
|
|
31
|
+
variants: [
|
|
32
|
+
{
|
|
33
|
+
hostname: "rbin-fips.us-gov-east-1.amazonaws.com",
|
|
34
|
+
tags: ["fips"],
|
|
35
|
+
},
|
|
36
|
+
],
|
|
37
|
+
},
|
|
38
|
+
"us-gov-west-1": {
|
|
39
|
+
variants: [
|
|
40
|
+
{
|
|
41
|
+
hostname: "rbin-fips.us-gov-west-1.amazonaws.com",
|
|
42
|
+
tags: ["fips"],
|
|
43
|
+
},
|
|
44
|
+
],
|
|
45
|
+
},
|
|
30
46
|
"us-west-1": {
|
|
31
47
|
variants: [
|
|
32
48
|
{
|
|
@@ -147,7 +163,7 @@ const partitionHash = {
|
|
|
147
163
|
],
|
|
148
164
|
},
|
|
149
165
|
"aws-us-gov": {
|
|
150
|
-
regions: ["us-gov-east-1", "us-gov-west-1"],
|
|
166
|
+
regions: ["fips-us-gov-east-1", "fips-us-gov-west-1", "us-gov-east-1", "us-gov-west-1"],
|
|
151
167
|
regionRegex: "^us\\-gov\\-\\w+\\-\\d+$",
|
|
152
168
|
variants: [
|
|
153
169
|
{
|
package/dist-es/endpoints.js
CHANGED
|
@@ -25,6 +25,22 @@ var regionHash = {
|
|
|
25
25
|
},
|
|
26
26
|
],
|
|
27
27
|
},
|
|
28
|
+
"us-gov-east-1": {
|
|
29
|
+
variants: [
|
|
30
|
+
{
|
|
31
|
+
hostname: "rbin-fips.us-gov-east-1.amazonaws.com",
|
|
32
|
+
tags: ["fips"],
|
|
33
|
+
},
|
|
34
|
+
],
|
|
35
|
+
},
|
|
36
|
+
"us-gov-west-1": {
|
|
37
|
+
variants: [
|
|
38
|
+
{
|
|
39
|
+
hostname: "rbin-fips.us-gov-west-1.amazonaws.com",
|
|
40
|
+
tags: ["fips"],
|
|
41
|
+
},
|
|
42
|
+
],
|
|
43
|
+
},
|
|
28
44
|
"us-west-1": {
|
|
29
45
|
variants: [
|
|
30
46
|
{
|
|
@@ -145,7 +161,7 @@ var partitionHash = {
|
|
|
145
161
|
],
|
|
146
162
|
},
|
|
147
163
|
"aws-us-gov": {
|
|
148
|
-
regions: ["us-gov-east-1", "us-gov-west-1"],
|
|
164
|
+
regions: ["fips-us-gov-east-1", "fips-us-gov-west-1", "us-gov-east-1", "us-gov-west-1"],
|
|
149
165
|
regionRegex: "^us\\-gov\\-\\w+\\-\\d+$",
|
|
150
166
|
variants: [
|
|
151
167
|
{
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-rbin",
|
|
3
3
|
"description": "AWS SDK for JavaScript Rbin Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.175.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|