@backstage/plugin-permission-backend 0.4.0-next.0 → 0.4.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 +15 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @backstage/plugin-permission-backend
|
|
2
2
|
|
|
3
|
+
## 0.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- b768259244: **BREAKING**: Wrap batched requests and responses to /authorize in an envelope object. The latest version of the PermissionClient in @backstage/permission-common uses the new format - as long as the permission-backend is consumed using this client, no other changes are necessary.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @backstage/plugin-auth-backend@0.7.0
|
|
13
|
+
- @backstage/plugin-permission-common@0.4.0
|
|
14
|
+
- @backstage/backend-common@0.10.4
|
|
15
|
+
- @backstage/config@0.1.13
|
|
16
|
+
- @backstage/plugin-permission-node@0.4.0
|
|
17
|
+
|
|
3
18
|
## 0.4.0-next.0
|
|
4
19
|
|
|
5
20
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-permission-backend",
|
|
3
|
-
"version": "0.4.0
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"main": "dist/index.cjs.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -19,12 +19,12 @@
|
|
|
19
19
|
"clean": "backstage-cli clean"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@backstage/backend-common": "^0.10.4
|
|
23
|
-
"@backstage/config": "^0.1.13
|
|
22
|
+
"@backstage/backend-common": "^0.10.4",
|
|
23
|
+
"@backstage/config": "^0.1.13",
|
|
24
24
|
"@backstage/errors": "^0.2.0",
|
|
25
|
-
"@backstage/plugin-auth-backend": "^0.7.0
|
|
26
|
-
"@backstage/plugin-permission-common": "^0.4.0
|
|
27
|
-
"@backstage/plugin-permission-node": "^0.4.0
|
|
25
|
+
"@backstage/plugin-auth-backend": "^0.7.0",
|
|
26
|
+
"@backstage/plugin-permission-common": "^0.4.0",
|
|
27
|
+
"@backstage/plugin-permission-node": "^0.4.0",
|
|
28
28
|
"@types/express": "*",
|
|
29
29
|
"dataloader": "^2.0.0",
|
|
30
30
|
"express": "^4.17.1",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"zod": "^3.11.6"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@backstage/cli": "^0.12.0
|
|
39
|
+
"@backstage/cli": "^0.12.0",
|
|
40
40
|
"@types/lodash": "^4.14.151",
|
|
41
41
|
"@types/supertest": "^2.0.8",
|
|
42
42
|
"msw": "^0.35.0",
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"files": [
|
|
46
46
|
"dist"
|
|
47
47
|
],
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "600d6e3c854bbfb12a0078ca6f726d1c0d1fea0b"
|
|
49
49
|
}
|