@backstage/integration-react 1.1.0-next.2 → 1.1.1-next.1

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 +10 -10
package/CHANGELOG.md CHANGED
@@ -1,5 +1,68 @@
1
1
  # @backstage/integration-react
2
2
 
3
+ ## 1.1.1-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 8f7b1835df: Updated dependency `msw` to `^0.41.0`.
8
+ - Updated dependencies
9
+ - @backstage/core-components@0.9.5-next.1
10
+ - @backstage/core-plugin-api@1.0.3-next.0
11
+ - @backstage/integration@1.2.1-next.1
12
+
13
+ ## 1.1.1-next.0
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies
18
+ - @backstage/core-components@0.9.5-next.0
19
+ - @backstage/integration@1.2.1-next.0
20
+
21
+ ## 1.1.0
22
+
23
+ ### Minor Changes
24
+
25
+ - 1b4e1e2306: Split `bitbucket` integration into `bitbucketCloud` and `bitbucketServer`
26
+ (backwards compatible).
27
+
28
+ In order to migrate to the new integration configs,
29
+ move your configs from `integrations.bitbucket`
30
+ to `integrations.bitbucketCloud` or `integrations.bitbucketServer`.
31
+
32
+ Migration example:
33
+
34
+ **Before:**
35
+
36
+ ```yaml
37
+ integrations:
38
+ bitbucket:
39
+ - host: bitbucket.org
40
+ username: bitbucket_user
41
+ appPassword: app-password
42
+ - host: bitbucket-server.company.com
43
+ token: my-token
44
+ ```
45
+
46
+ **After:**
47
+
48
+ ```yaml
49
+ integrations:
50
+ bitbucketCloud:
51
+ - username: bitbucket_user
52
+ appPassword: app-password
53
+ bitbucketServer:
54
+ - host: bitbucket-server.company.com
55
+ token: my-token
56
+ ```
57
+
58
+ ### Patch Changes
59
+
60
+ - Updated dependencies
61
+ - @backstage/core-components@0.9.4
62
+ - @backstage/integration@1.2.0
63
+ - @backstage/core-plugin-api@1.0.2
64
+ - @backstage/config@1.0.1
65
+
3
66
  ## 1.1.0-next.2
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.2",
4
+ "version": "1.1.1-next.1",
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-next.0",
28
- "@backstage/core-components": "^0.9.4-next.1",
29
- "@backstage/core-plugin-api": "^1.0.2-next.1",
30
- "@backstage/integration": "^1.2.0-next.1",
27
+ "@backstage/config": "^1.0.1",
28
+ "@backstage/core-components": "^0.9.5-next.1",
29
+ "@backstage/core-plugin-api": "^1.0.3-next.0",
30
+ "@backstage/integration": "^1.2.1-next.1",
31
31
  "@backstage/theme": "^0.2.15",
32
32
  "@material-ui/core": "^4.12.2",
33
33
  "@material-ui/icons": "^4.9.1",
@@ -38,19 +38,19 @@
38
38
  "react": "^16.13.1 || ^17.0.0"
39
39
  },
40
40
  "devDependencies": {
41
- "@backstage/cli": "^0.17.1-next.2",
42
- "@backstage/dev-utils": "^1.0.2-next.2",
43
- "@backstage/test-utils": "^1.1.0-next.2",
41
+ "@backstage/cli": "^0.17.2-next.1",
42
+ "@backstage/dev-utils": "^1.0.3-next.1",
43
+ "@backstage/test-utils": "^1.1.1-next.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",
47
47
  "@types/jest": "^26.0.7",
48
48
  "@types/node": "^16.11.26",
49
49
  "cross-fetch": "^3.1.5",
50
- "msw": "^0.35.0"
50
+ "msw": "^0.42.0"
51
51
  },
52
52
  "files": [
53
53
  "dist"
54
54
  ],
55
- "gitHead": "cfbf5762d7d91eee18999306b21d63840400ee29"
55
+ "gitHead": "e15c24ddb5d14034629ced8a5a5d8f12b8f1a7dd"
56
56
  }