@backstage-community/plugin-multi-source-security-viewer 0.11.0 → 0.12.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 +24 -0
- package/README.md +13 -4
- package/package.json +6 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @backstage-community/plugin-multi-source-security-viewer
|
|
2
2
|
|
|
3
|
+
## 0.12.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 4b2575b: Updated dependency `@backstage-community/plugin-azure-devops-common` to `^0.19.0`.
|
|
8
|
+
|
|
9
|
+
## 0.12.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- fcd0d52: Updated dependency `@backstage-community/plugin-azure-devops` to `^0.24.0`.
|
|
14
|
+
- 202c077: Updated dependency `@backstage-community/plugin-azure-devops` to `^0.25.0`.
|
|
15
|
+
|
|
16
|
+
## 0.12.0
|
|
17
|
+
|
|
18
|
+
### Minor Changes
|
|
19
|
+
|
|
20
|
+
- 3338247: Create the Multi Source Security Viewer backend plugin. This will enhance the RBAC UX by allowing users to configure the MSSV permissions in the RBAC plugin UI.
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- Updated dependencies [3338247]
|
|
25
|
+
- @backstage-community/plugin-multi-source-security-viewer-common@0.10.0
|
|
26
|
+
|
|
3
27
|
## 0.11.0
|
|
4
28
|
|
|
5
29
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -217,14 +217,17 @@ See [example](https://github.com/redhat-appstudio/tssc-dev-multi-ci/blob/main/rh
|
|
|
217
217
|
|
|
218
218
|
## Additional configuration
|
|
219
219
|
|
|
220
|
-
### For
|
|
220
|
+
### For administrators
|
|
221
221
|
|
|
222
222
|
#### Permission Framework Support
|
|
223
223
|
|
|
224
224
|
The Multi Source Security Viewer (MSSV) plugin has support for the permission framework.
|
|
225
225
|
|
|
226
|
-
|
|
227
|
-
|
|
226
|
+
#### RBAC Policy CSV File
|
|
227
|
+
|
|
228
|
+
When [RBAC permission](https://github.com/backstage/community-plugins/tree/main/workspaces/rbac/plugins/rbac-backend#installation) framework is enabled, for non-admin users to access MSSV UI, the role associated with your user should have the following permission policies associated with it.
|
|
229
|
+
|
|
230
|
+
Add the following in your permission policies configuration file named `rbac-policy.csv`:
|
|
228
231
|
|
|
229
232
|
```CSV
|
|
230
233
|
p, role:default/team_a, mssv.view.read, read, allow
|
|
@@ -240,7 +243,9 @@ permission:
|
|
|
240
243
|
policyFileReload: true
|
|
241
244
|
```
|
|
242
245
|
|
|
243
|
-
|
|
246
|
+
#### Permission Policy Framework
|
|
247
|
+
|
|
248
|
+
When using the [permission policy](https://backstage.io/docs/permissions/writing-a-policy/) framework.
|
|
244
249
|
|
|
245
250
|
Configure the backend by [configuring the permission policy](https://github.com/backstage/backstage/blob/master/docs/permissions/getting-started.md#test-permission-policy). You can use below policy as example.
|
|
246
251
|
|
|
@@ -285,3 +290,7 @@ export default createBackendModule({
|
|
|
285
290
|
```
|
|
286
291
|
|
|
287
292
|

|
|
293
|
+
|
|
294
|
+
#### RBAC Plugin UI
|
|
295
|
+
|
|
296
|
+
The [multi-source-security-viewer-backend](../multi-source-security-viewer-backend/README.md) plugin allows you to configure RBAC permissions using the RBAC plugin UI.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage-community/plugin-multi-source-security-viewer",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.12.2",
|
|
4
4
|
"main": "dist/index.esm.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"pluginId": "multi-source-security-viewer",
|
|
20
20
|
"pluginPackages": [
|
|
21
21
|
"@backstage-community/plugin-multi-source-security-viewer",
|
|
22
|
+
"@backstage-community/plugin-multi-source-security-viewer-backend",
|
|
22
23
|
"@backstage-community/plugin-multi-source-security-viewer-common"
|
|
23
24
|
]
|
|
24
25
|
},
|
|
@@ -40,11 +41,11 @@
|
|
|
40
41
|
},
|
|
41
42
|
"dependencies": {
|
|
42
43
|
"@aonic-ui/pipelines": "^3.1.1",
|
|
43
|
-
"@backstage-community/plugin-azure-devops": "^0.
|
|
44
|
-
"@backstage-community/plugin-azure-devops-common": "^0.
|
|
45
|
-
"@backstage-community/plugin-github-actions": "^0.
|
|
44
|
+
"@backstage-community/plugin-azure-devops": "^0.25.0",
|
|
45
|
+
"@backstage-community/plugin-azure-devops-common": "^0.19.0",
|
|
46
|
+
"@backstage-community/plugin-github-actions": "^0.19.0",
|
|
46
47
|
"@backstage-community/plugin-jenkins": "^0.26.0",
|
|
47
|
-
"@backstage-community/plugin-multi-source-security-viewer-common": "^0.
|
|
48
|
+
"@backstage-community/plugin-multi-source-security-viewer-common": "^0.10.0",
|
|
48
49
|
"@backstage/catalog-model": "^1.7.6",
|
|
49
50
|
"@backstage/core-components": "^0.18.4",
|
|
50
51
|
"@backstage/core-plugin-api": "^1.12.1",
|