@backstage/integration-react 1.1.0-next.1 → 1.1.1-next.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +63 -0
  2. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,68 @@
1
1
  # @backstage/integration-react
2
2
 
3
+ ## 1.1.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/core-components@0.9.5-next.0
9
+ - @backstage/integration@1.2.1-next.0
10
+
11
+ ## 1.1.0
12
+
13
+ ### Minor Changes
14
+
15
+ - 1b4e1e2306: Split `bitbucket` integration into `bitbucketCloud` and `bitbucketServer`
16
+ (backwards compatible).
17
+
18
+ In order to migrate to the new integration configs,
19
+ move your configs from `integrations.bitbucket`
20
+ to `integrations.bitbucketCloud` or `integrations.bitbucketServer`.
21
+
22
+ Migration example:
23
+
24
+ **Before:**
25
+
26
+ ```yaml
27
+ integrations:
28
+ bitbucket:
29
+ - host: bitbucket.org
30
+ username: bitbucket_user
31
+ appPassword: app-password
32
+ - host: bitbucket-server.company.com
33
+ token: my-token
34
+ ```
35
+
36
+ **After:**
37
+
38
+ ```yaml
39
+ integrations:
40
+ bitbucketCloud:
41
+ - username: bitbucket_user
42
+ appPassword: app-password
43
+ bitbucketServer:
44
+ - host: bitbucket-server.company.com
45
+ token: my-token
46
+ ```
47
+
48
+ ### Patch Changes
49
+
50
+ - Updated dependencies
51
+ - @backstage/core-components@0.9.4
52
+ - @backstage/integration@1.2.0
53
+ - @backstage/core-plugin-api@1.0.2
54
+ - @backstage/config@1.0.1
55
+
56
+ ## 1.1.0-next.2
57
+
58
+ ### Patch Changes
59
+
60
+ - Updated dependencies
61
+ - @backstage/core-components@0.9.4-next.1
62
+ - @backstage/config@1.0.1-next.0
63
+ - @backstage/core-plugin-api@1.0.2-next.1
64
+ - @backstage/integration@1.2.0-next.1
65
+
3
66
  ## 1.1.0-next.1
4
67
 
5
68
  ### 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-next.1",
4
+ "version": "1.1.1-next.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.0",
28
- "@backstage/core-components": "^0.9.4-next.0",
29
- "@backstage/core-plugin-api": "^1.0.2-next.0",
30
- "@backstage/integration": "^1.2.0-next.0",
27
+ "@backstage/config": "^1.0.1",
28
+ "@backstage/core-components": "^0.9.5-next.0",
29
+ "@backstage/core-plugin-api": "^1.0.2",
30
+ "@backstage/integration": "^1.2.1-next.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-next.1",
42
- "@backstage/dev-utils": "^1.0.2-next.1",
43
- "@backstage/test-utils": "^1.1.0-next.1",
41
+ "@backstage/cli": "^0.17.2-next.0",
42
+ "@backstage/dev-utils": "^1.0.3-next.0",
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": "0b3df66a238c66a5498dab85b1ed85a8607289f1"
55
+ "gitHead": "c1511c99a532aeb003a97510a5638bd939ee65ca"
56
56
  }