@spotify/backstage-plugin-rbac 0.6.4 → 0.7.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 +14 -0
- package/alpha/package.json +1 -1
- package/dist/alpha.d.ts +1 -1
- package/package.json +17 -18
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @spotify/backstage-plugin-rbac
|
|
2
2
|
|
|
3
|
+
## 0.7.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Upgraded Backstage to `v1.30.3`.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Add peerDependency on react-dom
|
|
12
|
+
- Remove peerDependency on @backstage/plugin-permission-node
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
- @spotify/backstage-plugin-core@0.8.0
|
|
15
|
+
- @spotify/backstage-plugin-rbac-common@0.6.0
|
|
16
|
+
|
|
3
17
|
## 0.6.4
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/dist/alpha.d.ts
CHANGED
|
@@ -3,6 +3,6 @@ import * as _backstage_frontend_plugin_api from '@backstage/frontend-plugin-api'
|
|
|
3
3
|
/**
|
|
4
4
|
* @public
|
|
5
5
|
*/
|
|
6
|
-
declare const _default: _backstage_frontend_plugin_api.BackstagePlugin<{}, {}>;
|
|
6
|
+
declare const _default: _backstage_frontend_plugin_api.BackstagePlugin<{}, {}, {}>;
|
|
7
7
|
|
|
8
8
|
export { _default as default };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spotify/backstage-plugin-rbac",
|
|
3
3
|
"description": "Control access to actions and data in Backstage with ease.",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.7.0",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"homepage": "https://backstage.spotify.com",
|
|
7
7
|
"main": "./dist/index.esm.js",
|
|
@@ -42,22 +42,22 @@
|
|
|
42
42
|
"a11y": "yarn dlx @lhci/cli@0.13.x --config ./.lighthouserc.js autorun"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@backstage/catalog-model": "^1.
|
|
46
|
-
"@backstage/core-compat-api": "^0.2.
|
|
47
|
-
"@backstage/core-components": "^0.14.
|
|
45
|
+
"@backstage/catalog-model": "^1.6.0",
|
|
46
|
+
"@backstage/core-compat-api": "^0.2.8",
|
|
47
|
+
"@backstage/core-components": "^0.14.10",
|
|
48
48
|
"@backstage/core-plugin-api": "^1.9.3",
|
|
49
49
|
"@backstage/errors": "^1.2.4",
|
|
50
|
-
"@backstage/frontend-plugin-api": "^0.
|
|
51
|
-
"@backstage/plugin-catalog-react": "^1.12.
|
|
52
|
-
"@backstage/plugin-permission-common": "^0.8.
|
|
53
|
-
"@backstage/plugin-permission-react": "^0.4.
|
|
50
|
+
"@backstage/frontend-plugin-api": "^0.7.0",
|
|
51
|
+
"@backstage/plugin-catalog-react": "^1.12.3",
|
|
52
|
+
"@backstage/plugin-permission-common": "^0.8.1",
|
|
53
|
+
"@backstage/plugin-permission-react": "^0.4.25",
|
|
54
54
|
"@backstage/theme": "^0.5.6",
|
|
55
55
|
"@backstage/types": "^1.1.1",
|
|
56
56
|
"@material-ui/core": "^4.12.2",
|
|
57
57
|
"@material-ui/icons": "^4.9.1",
|
|
58
58
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
59
|
-
"@spotify/backstage-plugin-core": "^0.
|
|
60
|
-
"@spotify/backstage-plugin-rbac-common": "^0.
|
|
59
|
+
"@spotify/backstage-plugin-core": "^0.8.0",
|
|
60
|
+
"@spotify/backstage-plugin-rbac-common": "^0.6.0",
|
|
61
61
|
"ajv": "^8.11.2",
|
|
62
62
|
"file-saver": "^2.0.5",
|
|
63
63
|
"js-yaml": "^4.1.0",
|
|
@@ -71,20 +71,19 @@
|
|
|
71
71
|
"zod-to-json-schema": "^3.20.2"
|
|
72
72
|
},
|
|
73
73
|
"peerDependencies": {
|
|
74
|
-
"@backstage/plugin-permission-node": "^0.8.0",
|
|
75
74
|
"react": "^16.13.1 || ^17.0.0 || ^18.0.0",
|
|
75
|
+
"react-dom": "^16.13.1 || ^17.0.0 || ^18.0.0",
|
|
76
76
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
|
-
"@backstage/cli": "^0.
|
|
80
|
-
"@backstage/core-app-api": "^1.14.
|
|
81
|
-
"@backstage/dev-utils": "^1.0.
|
|
79
|
+
"@backstage/cli": "^0.27.0",
|
|
80
|
+
"@backstage/core-app-api": "^1.14.2",
|
|
81
|
+
"@backstage/dev-utils": "^1.0.37",
|
|
82
82
|
"@backstage/e2e-test-utils": "^0.1.1",
|
|
83
|
-
"@backstage/frontend-test-utils": "^0.1.
|
|
84
|
-
"@backstage/
|
|
85
|
-
"@backstage/test-utils": "^1.5.8",
|
|
83
|
+
"@backstage/frontend-test-utils": "^0.1.12",
|
|
84
|
+
"@backstage/test-utils": "^1.5.10",
|
|
86
85
|
"@playwright/test": "^1.32.3",
|
|
87
|
-
"@sp4b-dev/test-utils": "^0.0.
|
|
86
|
+
"@sp4b-dev/test-utils": "^0.0.6",
|
|
88
87
|
"@testing-library/jest-dom": "^6.0.0",
|
|
89
88
|
"@testing-library/react": "^14.0.0",
|
|
90
89
|
"@testing-library/user-event": "^14.0.0",
|