@backstage/integration 1.1.0-next.2 → 1.1.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 +17 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @backstage/integration
|
|
2
2
|
|
|
3
|
+
## 1.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- b7436743cb: Gerrit integration: Added an optional configuration to set the Gitiles base url.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 1691c6c5c2: Clarify that config locations that emit User and Group kinds now need to declare so in the `catalog.locations.[].rules`
|
|
12
|
+
- 3ef123bbf0: Support external ID when assuming roles in S3 integration
|
|
13
|
+
|
|
14
|
+
In order to assume a role created by a 3rd party as external
|
|
15
|
+
ID is needed. This change adds an optional field to the s3
|
|
16
|
+
integration configuration and consumes that in the AwsS3UrlReader.
|
|
17
|
+
|
|
18
|
+
- d26e1b0146: Exported `replaceGitLabUrlType` from package
|
|
19
|
+
|
|
3
20
|
## 1.1.0-next.2
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/integration",
|
|
3
3
|
"description": "Helpers for managing integrations towards external systems",
|
|
4
|
-
"version": "1.1.0
|
|
4
|
+
"version": "1.1.0",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -42,9 +42,9 @@
|
|
|
42
42
|
"luxon": "^2.0.2"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@backstage/cli": "^0.17.0
|
|
46
|
-
"@backstage/config-loader": "^1.1.0
|
|
47
|
-
"@backstage/test-utils": "^1.0.1
|
|
45
|
+
"@backstage/cli": "^0.17.0",
|
|
46
|
+
"@backstage/config-loader": "^1.1.0",
|
|
47
|
+
"@backstage/test-utils": "^1.0.1",
|
|
48
48
|
"@types/jest": "^26.0.7",
|
|
49
49
|
"@types/luxon": "^2.0.4",
|
|
50
50
|
"msw": "^0.35.0"
|
|
@@ -54,6 +54,6 @@
|
|
|
54
54
|
"config.d.ts"
|
|
55
55
|
],
|
|
56
56
|
"configSchema": "config.d.ts",
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "e0e44c433319711c2fb8b175db411a621f7aaec2",
|
|
58
58
|
"module": "dist/index.esm.js"
|
|
59
59
|
}
|