@backstage-community/plugin-rbac-backend 7.7.1 → 7.7.2
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 +31 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @backstage-community/plugin-rbac-backend
|
|
2
2
|
|
|
3
|
+
## 7.7.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 8c7bddb: Added NFS support
|
|
8
|
+
- af998b7: Updated dependency `supertest` to `7.2.2`.
|
|
9
|
+
|
|
3
10
|
## 7.7.1
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
|
@@ -22,6 +29,14 @@
|
|
|
22
29
|
- @backstage-community/plugin-rbac-common@1.23.0
|
|
23
30
|
- @backstage-community/plugin-rbac-node@1.17.0
|
|
24
31
|
|
|
32
|
+
## 7.6.2
|
|
33
|
+
|
|
34
|
+
### Patch Changes
|
|
35
|
+
|
|
36
|
+
- 9a07184: Backport: Remove usage of breaking imports from @backstage/backend-defaults
|
|
37
|
+
|
|
38
|
+
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.
|
|
39
|
+
|
|
25
40
|
## 7.6.1
|
|
26
41
|
|
|
27
42
|
### Patch Changes
|
|
@@ -43,6 +58,14 @@
|
|
|
43
58
|
- @backstage-community/plugin-rbac-common@1.22.0
|
|
44
59
|
- @backstage-community/plugin-rbac-node@1.16.0
|
|
45
60
|
|
|
61
|
+
## 7.5.1
|
|
62
|
+
|
|
63
|
+
### Patch Changes
|
|
64
|
+
|
|
65
|
+
- 0743ffa: Backport: Remove usage of breaking imports from @backstage/backend-defaults
|
|
66
|
+
|
|
67
|
+
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.
|
|
68
|
+
|
|
46
69
|
## 7.5.0
|
|
47
70
|
|
|
48
71
|
### Minor Changes
|
|
@@ -55,6 +78,14 @@
|
|
|
55
78
|
- @backstage-community/plugin-rbac-common@1.21.0
|
|
56
79
|
- @backstage-community/plugin-rbac-node@1.15.0
|
|
57
80
|
|
|
81
|
+
## 7.4.3
|
|
82
|
+
|
|
83
|
+
### Patch Changes
|
|
84
|
+
|
|
85
|
+
- 05801c1: Backport: Remove usage of breaking imports from @backstage/backend-defaults
|
|
86
|
+
|
|
87
|
+
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.
|
|
88
|
+
|
|
58
89
|
## 7.4.2
|
|
59
90
|
|
|
60
91
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage-community/plugin-rbac-backend",
|
|
3
|
-
"version": "7.7.
|
|
3
|
+
"version": "7.7.2",
|
|
4
4
|
"main": "dist/index.cjs.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -57,8 +57,8 @@
|
|
|
57
57
|
"knex": "^3.0.0",
|
|
58
58
|
"lodash": "^4.17.21",
|
|
59
59
|
"typeorm-adapter": "^1.6.1",
|
|
60
|
-
"zod": "^3.
|
|
61
|
-
"zod-to-json-schema": "^3.
|
|
60
|
+
"zod": "^3.25.76",
|
|
61
|
+
"zod-to-json-schema": "^3.25.1"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
64
|
"@backstage/backend-test-utils": "^1.10.4",
|
|
@@ -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.
|
|
79
|
+
"supertest": "7.2.2"
|
|
80
80
|
},
|
|
81
81
|
"files": [
|
|
82
82
|
"dist",
|