@backstage/integration-react 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 +45 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,50 @@
|
|
|
1
1
|
# @backstage/integration-react
|
|
2
2
|
|
|
3
|
+
## 1.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 1b4e1e2306: Split `bitbucket` integration into `bitbucketCloud` and `bitbucketServer`
|
|
8
|
+
(backwards compatible).
|
|
9
|
+
|
|
10
|
+
In order to migrate to the new integration configs,
|
|
11
|
+
move your configs from `integrations.bitbucket`
|
|
12
|
+
to `integrations.bitbucketCloud` or `integrations.bitbucketServer`.
|
|
13
|
+
|
|
14
|
+
Migration example:
|
|
15
|
+
|
|
16
|
+
**Before:**
|
|
17
|
+
|
|
18
|
+
```yaml
|
|
19
|
+
integrations:
|
|
20
|
+
bitbucket:
|
|
21
|
+
- host: bitbucket.org
|
|
22
|
+
username: bitbucket_user
|
|
23
|
+
appPassword: app-password
|
|
24
|
+
- host: bitbucket-server.company.com
|
|
25
|
+
token: my-token
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
**After:**
|
|
29
|
+
|
|
30
|
+
```yaml
|
|
31
|
+
integrations:
|
|
32
|
+
bitbucketCloud:
|
|
33
|
+
- username: bitbucket_user
|
|
34
|
+
appPassword: app-password
|
|
35
|
+
bitbucketServer:
|
|
36
|
+
- host: bitbucket-server.company.com
|
|
37
|
+
token: my-token
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
### Patch Changes
|
|
41
|
+
|
|
42
|
+
- Updated dependencies
|
|
43
|
+
- @backstage/core-components@0.9.4
|
|
44
|
+
- @backstage/integration@1.2.0
|
|
45
|
+
- @backstage/core-plugin-api@1.0.2
|
|
46
|
+
- @backstage/config@1.0.1
|
|
47
|
+
|
|
3
48
|
## 1.1.0-next.2
|
|
4
49
|
|
|
5
50
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/integration-react",
|
|
3
3
|
"description": "Frontend package for managing integrations towards external systems",
|
|
4
|
-
"version": "1.1.0
|
|
4
|
+
"version": "1.1.0",
|
|
5
5
|
"main": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -24,10 +24,10 @@
|
|
|
24
24
|
"clean": "backstage-cli package clean"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@backstage/config": "^1.0.1
|
|
28
|
-
"@backstage/core-components": "^0.9.4
|
|
29
|
-
"@backstage/core-plugin-api": "^1.0.2
|
|
30
|
-
"@backstage/integration": "^1.2.0
|
|
27
|
+
"@backstage/config": "^1.0.1",
|
|
28
|
+
"@backstage/core-components": "^0.9.4",
|
|
29
|
+
"@backstage/core-plugin-api": "^1.0.2",
|
|
30
|
+
"@backstage/integration": "^1.2.0",
|
|
31
31
|
"@backstage/theme": "^0.2.15",
|
|
32
32
|
"@material-ui/core": "^4.12.2",
|
|
33
33
|
"@material-ui/icons": "^4.9.1",
|
|
@@ -38,9 +38,9 @@
|
|
|
38
38
|
"react": "^16.13.1 || ^17.0.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@backstage/cli": "^0.17.1
|
|
42
|
-
"@backstage/dev-utils": "^1.0.2
|
|
43
|
-
"@backstage/test-utils": "^1.1.0
|
|
41
|
+
"@backstage/cli": "^0.17.1",
|
|
42
|
+
"@backstage/dev-utils": "^1.0.2",
|
|
43
|
+
"@backstage/test-utils": "^1.1.0",
|
|
44
44
|
"@testing-library/jest-dom": "^5.10.1",
|
|
45
45
|
"@testing-library/react": "^12.1.3",
|
|
46
46
|
"@testing-library/user-event": "^14.0.0",
|
|
@@ -52,5 +52,5 @@
|
|
|
52
52
|
"files": [
|
|
53
53
|
"dist"
|
|
54
54
|
],
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "96323f280ba32ee526c5b151cda42260aee927c9"
|
|
56
56
|
}
|