@backstage/plugin-permission-node 0.4.0-next.0 → 0.4.2-next.1

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +38 -0
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -1,5 +1,43 @@
1
1
  # @backstage/plugin-permission-node
2
2
 
3
+ ## 0.4.2-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/plugin-auth-backend@0.9.0-next.1
9
+ - @backstage/backend-common@0.10.6-next.0
10
+
11
+ ## 0.4.2-next.0
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies
16
+ - @backstage/plugin-auth-backend@0.9.0-next.0
17
+
18
+ ## 0.4.1
19
+
20
+ ### Patch Changes
21
+
22
+ - Updated dependencies
23
+ - @backstage/plugin-auth-backend@0.8.0
24
+ - @backstage/backend-common@0.10.5
25
+
26
+ ## 0.4.0
27
+
28
+ ### Minor Changes
29
+
30
+ - 0ae4f4cc82: **BREAKING**: `PolicyAuthorizeRequest` type has been renamed to `PolicyAuthorizeQuery`.
31
+ **BREAKING**: Update to use renamed request and response types from @backstage/plugin-permission-common.
32
+
33
+ ### Patch Changes
34
+
35
+ - Updated dependencies
36
+ - @backstage/plugin-auth-backend@0.7.0
37
+ - @backstage/plugin-permission-common@0.4.0
38
+ - @backstage/backend-common@0.10.4
39
+ - @backstage/config@0.1.13
40
+
3
41
  ## 0.4.0-next.0
4
42
 
5
43
  ### Minor Changes
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.4.0-next.0",
4
+ "version": "0.4.2-next.1",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -29,18 +29,18 @@
29
29
  "clean": "backstage-cli clean"
30
30
  },
31
31
  "dependencies": {
32
- "@backstage/backend-common": "^0.10.4-next.0",
33
- "@backstage/config": "^0.1.13-next.0",
32
+ "@backstage/backend-common": "^0.10.6-next.0",
33
+ "@backstage/config": "^0.1.13",
34
34
  "@backstage/errors": "^0.2.0",
35
- "@backstage/plugin-auth-backend": "^0.7.0-next.0",
36
- "@backstage/plugin-permission-common": "^0.4.0-next.0",
35
+ "@backstage/plugin-auth-backend": "^0.9.0-next.1",
36
+ "@backstage/plugin-permission-common": "^0.4.0",
37
37
  "@types/express": "^4.17.6",
38
38
  "express": "^4.17.1",
39
39
  "express-promise-router": "^4.1.0",
40
40
  "zod": "^3.11.6"
41
41
  },
42
42
  "devDependencies": {
43
- "@backstage/cli": "^0.12.0-next.0",
43
+ "@backstage/cli": "^0.13.1-next.1",
44
44
  "@types/supertest": "^2.0.8",
45
45
  "msw": "^0.35.0",
46
46
  "supertest": "^6.1.3"
@@ -48,5 +48,5 @@
48
48
  "files": [
49
49
  "dist"
50
50
  ],
51
- "gitHead": "31184691d5a38cb78b091c8f7ad6db80604519a6"
51
+ "gitHead": "d6da97a1edeb21fcefc682d91916987ba9f3d89a"
52
52
  }