@backstage/plugin-permission-node 0.7.20-next.2 → 0.7.21-next.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 +25 -0
- package/README.md +1 -5
- package/alpha/package.json +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# @backstage/plugin-permission-node
|
|
2
2
|
|
|
3
|
+
## 0.7.21-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/backend-common@0.21.0-next.0
|
|
9
|
+
- @backstage/plugin-auth-node@0.4.4-next.0
|
|
10
|
+
- @backstage/backend-plugin-api@0.6.10-next.0
|
|
11
|
+
- @backstage/config@1.1.1
|
|
12
|
+
- @backstage/errors@1.2.3
|
|
13
|
+
- @backstage/plugin-permission-common@0.7.12
|
|
14
|
+
|
|
15
|
+
## 0.7.20
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- b1acd9b: Updated README
|
|
20
|
+
- Updated dependencies
|
|
21
|
+
- @backstage/backend-common@0.20.1
|
|
22
|
+
- @backstage/backend-plugin-api@0.6.9
|
|
23
|
+
- @backstage/plugin-permission-common@0.7.12
|
|
24
|
+
- @backstage/plugin-auth-node@0.4.3
|
|
25
|
+
- @backstage/config@1.1.1
|
|
26
|
+
- @backstage/errors@1.2.3
|
|
27
|
+
|
|
3
28
|
## 0.7.20-next.2
|
|
4
29
|
|
|
5
30
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,7 +1,3 @@
|
|
|
1
1
|
# @backstage/plugin-permission-node
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
Common permission and authorization utilities for backend plugins. For more
|
|
6
|
-
information, see the [authorization
|
|
7
|
-
PRFC](https://github.com/backstage/backstage/pull/7761).
|
|
3
|
+
Common permission and authorization utilities for backend plugins. For more information, see the [permissions documentation on Backstage.io](https://backstage.io/docs/permissions/overview).
|
package/alpha/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-permission-node",
|
|
3
3
|
"description": "Common permission and authorization utilities for backend plugins",
|
|
4
|
-
"version": "0.7.
|
|
4
|
+
"version": "0.7.21-next.0",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -44,12 +44,12 @@
|
|
|
44
44
|
"start": "backstage-cli package start"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@backstage/backend-common": "^0.
|
|
48
|
-
"@backstage/backend-plugin-api": "^0.6.
|
|
47
|
+
"@backstage/backend-common": "^0.21.0-next.0",
|
|
48
|
+
"@backstage/backend-plugin-api": "^0.6.10-next.0",
|
|
49
49
|
"@backstage/config": "^1.1.1",
|
|
50
50
|
"@backstage/errors": "^1.2.3",
|
|
51
|
-
"@backstage/plugin-auth-node": "^0.4.
|
|
52
|
-
"@backstage/plugin-permission-common": "^0.7.
|
|
51
|
+
"@backstage/plugin-auth-node": "^0.4.4-next.0",
|
|
52
|
+
"@backstage/plugin-permission-common": "^0.7.12",
|
|
53
53
|
"@types/express": "^4.17.6",
|
|
54
54
|
"express": "^4.17.1",
|
|
55
55
|
"express-promise-router": "^4.1.0",
|
|
@@ -57,8 +57,8 @@
|
|
|
57
57
|
"zod-to-json-schema": "^3.20.4"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@backstage/backend-test-utils": "^0.
|
|
61
|
-
"@backstage/cli": "^0.25.
|
|
60
|
+
"@backstage/backend-test-utils": "^0.3.0-next.0",
|
|
61
|
+
"@backstage/cli": "^0.25.2-next.0",
|
|
62
62
|
"@types/supertest": "^2.0.8",
|
|
63
63
|
"msw": "^1.0.0",
|
|
64
64
|
"supertest": "^6.1.3"
|