@backstage-community/plugin-rbac-backend 7.7.1 → 7.8.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +43 -0
  2. package/package.json +17 -17
package/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # @backstage-community/plugin-rbac-backend
2
2
 
3
+ ## 7.8.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 843bbe2: Backstage version bump to v1.48.4
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [843bbe2]
12
+ - @backstage-community/plugin-rbac-common@1.24.0
13
+ - @backstage-community/plugin-rbac-node@1.18.0
14
+
15
+ ## 7.7.2
16
+
17
+ ### Patch Changes
18
+
19
+ - 8c7bddb: Added NFS support
20
+ - af998b7: Updated dependency `supertest` to `7.2.2`.
21
+
3
22
  ## 7.7.1
4
23
 
5
24
  ### Patch Changes
@@ -22,6 +41,14 @@
22
41
  - @backstage-community/plugin-rbac-common@1.23.0
23
42
  - @backstage-community/plugin-rbac-node@1.17.0
24
43
 
44
+ ## 7.6.2
45
+
46
+ ### Patch Changes
47
+
48
+ - 9a07184: Backport: Remove usage of breaking imports from @backstage/backend-defaults
49
+
50
+ This backports the fix from commit 9c7ae87 to avoid compatibility issue when @backstage/backend-defaults resolves to 0.13.2, which introduced breaking changes to address a CVE. By removing the problematic import, this plugin remains compatible with both 0.13.1 and 0.13.2 and does not use the code containing the CVE.
51
+
25
52
  ## 7.6.1
26
53
 
27
54
  ### Patch Changes
@@ -43,6 +70,14 @@
43
70
  - @backstage-community/plugin-rbac-common@1.22.0
44
71
  - @backstage-community/plugin-rbac-node@1.16.0
45
72
 
73
+ ## 7.5.1
74
+
75
+ ### Patch Changes
76
+
77
+ - 0743ffa: Backport: Remove usage of breaking imports from @backstage/backend-defaults
78
+
79
+ This backports the fix from commit 9c7ae87 to avoid compatibility issues when @backstage backend-defaults resolves to 0.13.2, which introduced breaking changes to address a CVE. By removing the problematic import, this plugin remains compatible with both 0.13.1 and 0.13.2 and does not use the code containing the CVE.
80
+
46
81
  ## 7.5.0
47
82
 
48
83
  ### Minor Changes
@@ -55,6 +90,14 @@
55
90
  - @backstage-community/plugin-rbac-common@1.21.0
56
91
  - @backstage-community/plugin-rbac-node@1.15.0
57
92
 
93
+ ## 7.4.3
94
+
95
+ ### Patch Changes
96
+
97
+ - 05801c1: Backport: Remove usage of breaking imports from @backstage/backend-defaults
98
+
99
+ This backports the fix from commit 9c7ae87 to avoid compatibility issues when @backstage backend-defaults resolves to 0.13.2, which introduced breaking changes to address a CVE. By removing the problematic import, this plugin remains compatible with both 0.13.1 and 0.13.2 and does not use the code containing the CVE.
100
+
58
101
  ## 7.4.2
59
102
 
60
103
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage-community/plugin-rbac-backend",
3
- "version": "7.7.1",
3
+ "version": "7.8.0",
4
4
  "main": "dist/index.cjs.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "license": "Apache-2.0",
@@ -36,17 +36,17 @@
36
36
  "postpack": "backstage-cli package postpack"
37
37
  },
38
38
  "dependencies": {
39
- "@backstage-community/plugin-rbac-common": "^1.23.0",
40
- "@backstage-community/plugin-rbac-node": "^1.17.0",
41
- "@backstage/backend-defaults": "^0.15.1",
42
- "@backstage/backend-plugin-api": "^1.6.2",
43
- "@backstage/catalog-client": "^1.12.1",
39
+ "@backstage-community/plugin-rbac-common": "^1.24.0",
40
+ "@backstage-community/plugin-rbac-node": "^1.18.0",
41
+ "@backstage/backend-defaults": "^0.15.2",
42
+ "@backstage/backend-plugin-api": "^1.7.0",
43
+ "@backstage/catalog-client": "^1.13.0",
44
44
  "@backstage/catalog-model": "^1.7.6",
45
45
  "@backstage/errors": "^1.2.7",
46
- "@backstage/plugin-auth-node": "^0.6.12",
47
- "@backstage/plugin-permission-backend": "^0.7.8",
48
- "@backstage/plugin-permission-common": "^0.9.5",
49
- "@backstage/plugin-permission-node": "^0.10.9",
46
+ "@backstage/plugin-auth-node": "^0.6.13",
47
+ "@backstage/plugin-permission-backend": "^0.7.9",
48
+ "@backstage/plugin-permission-common": "^0.9.6",
49
+ "@backstage/plugin-permission-node": "^0.10.10",
50
50
  "@dagrejs/graphlib": "^2.1.13",
51
51
  "casbin": "^5.27.1",
52
52
  "chokidar": "^3.6.0",
@@ -57,15 +57,15 @@
57
57
  "knex": "^3.0.0",
58
58
  "lodash": "^4.17.21",
59
59
  "typeorm-adapter": "^1.6.1",
60
- "zod": "^3.22.4",
61
- "zod-to-json-schema": "^3.24.5"
60
+ "zod": "^3.25.76",
61
+ "zod-to-json-schema": "^3.25.1"
62
62
  },
63
63
  "devDependencies": {
64
- "@backstage/backend-test-utils": "^1.10.4",
65
- "@backstage/cli": "^0.35.3",
64
+ "@backstage/backend-test-utils": "^1.11.0",
65
+ "@backstage/cli": "^0.35.4",
66
66
  "@backstage/config": "^1.3.6",
67
- "@backstage/core-plugin-api": "^1.12.2",
68
- "@backstage/plugin-catalog-node": "^1.20.1",
67
+ "@backstage/core-plugin-api": "^1.12.3",
68
+ "@backstage/plugin-catalog-node": "^2.0.0",
69
69
  "@backstage/types": "^1.2.2",
70
70
  "@types/express": "4.17.25",
71
71
  "@types/js-yaml": "^4.0.9",
@@ -76,7 +76,7 @@
76
76
  "knex-mock-client": "3.0.2",
77
77
  "msw": "1.3.5",
78
78
  "qs": "6.14.1",
79
- "supertest": "7.1.4"
79
+ "supertest": "7.2.2"
80
80
  },
81
81
  "files": [
82
82
  "dist",