@backstage/integration-react 0.0.0-nightly-20220417023605 → 0.0.0-nightly-20220422024928

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 +46 -4
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -1,15 +1,57 @@
1
1
  # @backstage/integration-react
2
2
 
3
- ## 0.0.0-nightly-20220417023605
3
+ ## 0.0.0-nightly-20220422024928
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/integration@0.0.0-nightly-20220422024928
44
+
45
+ ## 1.0.1
4
46
 
5
47
  ### Patch Changes
6
48
 
7
49
  - 24254fd433: build(deps): bump `@testing-library/user-event` from 13.5.0 to 14.0.0
8
50
  - 230ad0826f: Bump to using `@types/node` v16
9
51
  - Updated dependencies
10
- - @backstage/integration@0.0.0-nightly-20220417023605
11
- - @backstage/core-components@0.0.0-nightly-20220417023605
12
- - @backstage/core-plugin-api@0.0.0-nightly-20220417023605
52
+ - @backstage/integration@1.1.0
53
+ - @backstage/core-components@0.9.3
54
+ - @backstage/core-plugin-api@1.0.1
13
55
 
14
56
  ## 1.0.1-next.2
15
57
 
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": "0.0.0-nightly-20220417023605",
4
+ "version": "0.0.0-nightly-20220422024928",
5
5
  "main": "dist/index.esm.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -25,9 +25,9 @@
25
25
  },
26
26
  "dependencies": {
27
27
  "@backstage/config": "^1.0.0",
28
- "@backstage/core-components": "^0.0.0-nightly-20220417023605",
29
- "@backstage/core-plugin-api": "^0.0.0-nightly-20220417023605",
30
- "@backstage/integration": "^0.0.0-nightly-20220417023605",
28
+ "@backstage/core-components": "^0.9.3",
29
+ "@backstage/core-plugin-api": "^1.0.1",
30
+ "@backstage/integration": "^0.0.0-nightly-20220422024928",
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.0.0-nightly-20220417023605",
42
- "@backstage/dev-utils": "^0.0.0-nightly-20220417023605",
43
- "@backstage/test-utils": "^0.0.0-nightly-20220417023605",
41
+ "@backstage/cli": "^0.0.0-nightly-20220422024928",
42
+ "@backstage/dev-utils": "^1.0.1",
43
+ "@backstage/test-utils": "^0.0.0-nightly-20220422024928",
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",