@backstage/integration-aws-node 0.1.16-next.0 → 0.1.16
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 +9 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @backstage/integration-aws-node
|
|
2
2
|
|
|
3
|
+
## 0.1.16
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- db4630e: Fixed bug in DefaultAwsCredentialsManager where aws.mainAccount.region has no effect on the STS region used for account ID lookup during credential provider lookup when falling back to the main account, and it does not default to us-east-1
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/config@1.3.2
|
|
10
|
+
- @backstage/errors@1.2.7
|
|
11
|
+
|
|
3
12
|
## 0.1.16-next.0
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/integration-aws-node",
|
|
3
|
-
"version": "0.1.16
|
|
3
|
+
"version": "0.1.16",
|
|
4
4
|
"description": "Helpers for fetching AWS account credentials",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "node-library"
|
|
@@ -41,13 +41,13 @@
|
|
|
41
41
|
"@aws-sdk/credential-providers": "^3.350.0",
|
|
42
42
|
"@aws-sdk/types": "^3.347.0",
|
|
43
43
|
"@aws-sdk/util-arn-parser": "^3.310.0",
|
|
44
|
-
"@backstage/config": "1.3.2",
|
|
45
|
-
"@backstage/errors": "1.2.7"
|
|
44
|
+
"@backstage/config": "^1.3.2",
|
|
45
|
+
"@backstage/errors": "^1.2.7"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@backstage/cli": "0.32.1
|
|
49
|
-
"@backstage/config-loader": "1.10.1
|
|
50
|
-
"@backstage/test-utils": "1.7.8
|
|
48
|
+
"@backstage/cli": "^0.32.1",
|
|
49
|
+
"@backstage/config-loader": "^1.10.1",
|
|
50
|
+
"@backstage/test-utils": "^1.7.8",
|
|
51
51
|
"aws-sdk-client-mock": "^4.0.0",
|
|
52
52
|
"aws-sdk-client-mock-jest": "^4.0.0"
|
|
53
53
|
},
|