@backstage-community/plugin-multi-source-security-viewer 0.10.1 → 0.12.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 (3) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/README.md +13 -4
  3. package/package.json +14 -13
package/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # @backstage-community/plugin-multi-source-security-viewer
2
2
 
3
+ ## 0.12.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 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.
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [3338247]
12
+ - @backstage-community/plugin-multi-source-security-viewer-common@0.10.0
13
+
14
+ ## 0.11.0
15
+
16
+ ### Minor Changes
17
+
18
+ - 04d24c5: Backstage version bump to v1.46.3
19
+
20
+ ### Patch Changes
21
+
22
+ - Updated dependencies [04d24c5]
23
+ - @backstage-community/plugin-multi-source-security-viewer-common@0.9.0
24
+
3
25
  ## 0.10.1
4
26
 
5
27
  ### Patch 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 adminstrators
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
- 1. 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.
227
- Add the following in your permission policies configuration file named `rbac-policy.csv`:
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
- 2. When using the [permission policy](https://backstage.io/docs/permissions/writing-a-policy/) framework.
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
  ![mssv-rbac](./docs/images/mssv-rbac.png)
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.10.1",
3
+ "version": "0.12.0",
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
  },
@@ -44,15 +45,15 @@
44
45
  "@backstage-community/plugin-azure-devops-common": "^0.17.0",
45
46
  "@backstage-community/plugin-github-actions": "^0.18.0",
46
47
  "@backstage-community/plugin-jenkins": "^0.26.0",
47
- "@backstage-community/plugin-multi-source-security-viewer-common": "^0.8.0",
48
+ "@backstage-community/plugin-multi-source-security-viewer-common": "^0.10.0",
48
49
  "@backstage/catalog-model": "^1.7.6",
49
- "@backstage/core-components": "^0.18.3",
50
- "@backstage/core-plugin-api": "^1.12.0",
51
- "@backstage/integration-react": "^1.2.12",
52
- "@backstage/plugin-catalog-react": "^1.21.3",
53
- "@backstage/plugin-permission-react": "^0.4.38",
54
- "@backstage/theme": "^0.7.0",
55
- "@backstage/ui": "^0.9.1",
50
+ "@backstage/core-components": "^0.18.4",
51
+ "@backstage/core-plugin-api": "^1.12.1",
52
+ "@backstage/integration-react": "^1.2.13",
53
+ "@backstage/plugin-catalog-react": "^1.21.4",
54
+ "@backstage/plugin-permission-react": "^0.4.39",
55
+ "@backstage/theme": "^0.7.1",
56
+ "@backstage/ui": "^0.10.0",
56
57
  "@immobiliarelabs/backstage-plugin-gitlab": "^6.8.0",
57
58
  "@material-ui/core": "^4.9.13",
58
59
  "@material-ui/icons": "^4.9.1",
@@ -71,10 +72,10 @@
71
72
  "react-router-dom": "^6.0.0"
72
73
  },
73
74
  "devDependencies": {
74
- "@backstage/cli": "^0.34.5",
75
- "@backstage/core-app-api": "^1.19.2",
76
- "@backstage/dev-utils": "^1.1.17",
77
- "@backstage/test-utils": "^1.7.13",
75
+ "@backstage/cli": "^0.35.1",
76
+ "@backstage/core-app-api": "^1.19.3",
77
+ "@backstage/dev-utils": "^1.1.18",
78
+ "@backstage/test-utils": "^1.7.14",
78
79
  "@testing-library/jest-dom": "^6.0.0",
79
80
  "@testing-library/react": "^14.0.0",
80
81
  "@testing-library/user-event": "^14.0.0",