@backstage/integration-aws-node 0.1.9-next.0 → 0.1.9
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 +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @backstage/integration-aws-node
|
|
2
2
|
|
|
3
|
+
## 0.1.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 6d898f7: All single-line secrets read from config will now have both leading and trailing whitespace trimmed. This is done to ensure that the secrets are always valid HTTP header values, since many fetch implementations will include the header value itself when an error is thrown due to invalid header values.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/config@1.1.1
|
|
10
|
+
- @backstage/errors@1.2.3
|
|
11
|
+
|
|
3
12
|
## 0.1.9-next.0
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/integration-aws-node",
|
|
3
3
|
"description": "Helpers for fetching AWS account credentials",
|
|
4
|
-
"version": "0.1.9
|
|
4
|
+
"version": "0.1.9",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"publishConfig": {
|
|
@@ -41,9 +41,9 @@
|
|
|
41
41
|
"@backstage/errors": "^1.2.3"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@backstage/cli": "^0.25.2
|
|
45
|
-
"@backstage/config-loader": "^1.6.2
|
|
46
|
-
"@backstage/test-utils": "^1.5.0
|
|
44
|
+
"@backstage/cli": "^0.25.2",
|
|
45
|
+
"@backstage/config-loader": "^1.6.2",
|
|
46
|
+
"@backstage/test-utils": "^1.5.0",
|
|
47
47
|
"aws-sdk-client-mock": "^3.0.0",
|
|
48
48
|
"aws-sdk-client-mock-jest": "^3.0.0"
|
|
49
49
|
},
|