@backstage/plugin-permission-react 0.4.19-next.0 → 0.4.19
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 +20 -0
- package/README.md +2 -4
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @backstage/plugin-permission-react
|
|
2
2
|
|
|
3
|
+
## 0.4.19
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 4016f21: Remove some unused dependencies
|
|
8
|
+
- b1acd9b: Updated README
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
- @backstage/core-plugin-api@1.8.2
|
|
11
|
+
- @backstage/plugin-permission-common@0.7.12
|
|
12
|
+
- @backstage/config@1.1.1
|
|
13
|
+
|
|
14
|
+
## 0.4.19-next.1
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
- @backstage/core-plugin-api@1.8.2-next.0
|
|
20
|
+
- @backstage/config@1.1.1
|
|
21
|
+
- @backstage/plugin-permission-common@0.7.11
|
|
22
|
+
|
|
3
23
|
## 0.4.19-next.0
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
# permission
|
|
1
|
+
# @backstage/plugin-permission-react
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
Components and hooks to help implement permissions in Backstage frontend plugins. For more information, see the [authorization PRFC](https://github.com/backstage/backstage/pull/7761).
|
|
3
|
+
Components and hooks to help implement permissions in Backstage frontend plugins. For more information, see the [permissions documentation on Backstage.io](https://backstage.io/docs/permissions/overview).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-permission-react",
|
|
3
|
-
"version": "0.4.19
|
|
3
|
+
"version": "0.4.19",
|
|
4
4
|
"main": "dist/index.esm.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@backstage/config": "^1.1.1",
|
|
36
|
-
"@backstage/core-plugin-api": "^1.8.
|
|
37
|
-
"@backstage/plugin-permission-common": "^0.7.
|
|
36
|
+
"@backstage/core-plugin-api": "^1.8.2",
|
|
37
|
+
"@backstage/plugin-permission-common": "^0.7.12",
|
|
38
38
|
"@types/react": "^16.13.1 || ^17.0.0",
|
|
39
39
|
"swr": "^2.0.0"
|
|
40
40
|
},
|
|
@@ -44,8 +44,8 @@
|
|
|
44
44
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@backstage/cli": "^0.25.1
|
|
48
|
-
"@backstage/test-utils": "^1.4.7
|
|
47
|
+
"@backstage/cli": "^0.25.1",
|
|
48
|
+
"@backstage/test-utils": "^1.4.7",
|
|
49
49
|
"@testing-library/jest-dom": "^6.0.0",
|
|
50
50
|
"@testing-library/react": "^14.0.0"
|
|
51
51
|
},
|