@backstage/integration-react 1.2.0-next.1 → 1.2.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 +24 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @backstage/integration-react
|
|
2
2
|
|
|
3
|
+
## 1.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- a11495a: Added new ScmAuth method `forBitbucketServer` that uses correct OAuth scopes by default. Also updated `forBitbucket` method to allow overriding the default OAuth scopes.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- e969dc7: Move `@types/react` to a peer dependency.
|
|
12
|
+
- 3dbac17: Revert of change #26430
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
- @backstage/core-plugin-api@1.10.0
|
|
15
|
+
- @backstage/integration@1.15.1
|
|
16
|
+
- @backstage/config@1.2.0
|
|
17
|
+
|
|
18
|
+
## 1.2.0-next.2
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- Updated dependencies
|
|
23
|
+
- @backstage/integration@1.15.1-next.1
|
|
24
|
+
- @backstage/config@1.2.0
|
|
25
|
+
- @backstage/core-plugin-api@1.10.0-next.1
|
|
26
|
+
|
|
3
27
|
## 1.2.0-next.1
|
|
4
28
|
|
|
5
29
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/integration-react",
|
|
3
|
-
"version": "1.2.0
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "Frontend package for managing integrations towards external systems",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "web-library"
|
|
@@ -33,17 +33,17 @@
|
|
|
33
33
|
"test": "backstage-cli package test"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@backstage/config": "1.2.0",
|
|
37
|
-
"@backstage/core-plugin-api": "1.10.0
|
|
38
|
-
"@backstage/integration": "1.15.1
|
|
36
|
+
"@backstage/config": "^1.2.0",
|
|
37
|
+
"@backstage/core-plugin-api": "^1.10.0",
|
|
38
|
+
"@backstage/integration": "^1.15.1",
|
|
39
39
|
"@material-ui/core": "^4.12.2",
|
|
40
40
|
"@material-ui/icons": "^4.9.1"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@backstage/cli": "0.28.0
|
|
44
|
-
"@backstage/core-components": "0.15.1
|
|
45
|
-
"@backstage/dev-utils": "1.1.2
|
|
46
|
-
"@backstage/test-utils": "1.
|
|
43
|
+
"@backstage/cli": "^0.28.0",
|
|
44
|
+
"@backstage/core-components": "^0.15.1",
|
|
45
|
+
"@backstage/dev-utils": "^1.1.2",
|
|
46
|
+
"@backstage/test-utils": "^1.7.0",
|
|
47
47
|
"@testing-library/dom": "^10.0.0",
|
|
48
48
|
"@testing-library/jest-dom": "^6.0.0",
|
|
49
49
|
"@types/react": "^18.0.0",
|