@backstage-community/plugin-rbac 1.47.4 → 1.48.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # @backstage-community/plugin-rbac
2
2
 
3
+ ## 1.48.0
4
+
5
+ ### Minor Changes
6
+
7
+ - e6dbf70: Backstage version bump to v1.47.2
8
+
9
+ ### Patch Changes
10
+
11
+ - 658c2c9: Updated dependency `start-server-and-test` to `2.1.3`.
12
+ - a184943: Updated dependency `@types/node` to `22.19.7`.
13
+ - Updated dependencies [e6dbf70]
14
+ - @backstage-community/plugin-rbac-common@1.23.0
15
+
3
16
  ## 1.47.4
4
17
 
5
18
  ### Patch Changes
package/dist/alpha.d.ts CHANGED
@@ -1,10 +1,10 @@
1
- import * as _backstage_core_plugin_api_alpha from '@backstage/core-plugin-api/alpha';
1
+ import * as _backstage_frontend_plugin_api from '@backstage/frontend-plugin-api';
2
2
 
3
3
  /**
4
4
  * Translation reference for RBAC plugin
5
5
  * @public
6
6
  */
7
- declare const rbacTranslationRef: _backstage_core_plugin_api_alpha.TranslationRef<"plugin.rbac", {
7
+ declare const rbacTranslationRef: _backstage_frontend_plugin_api.TranslationRef<"plugin.rbac", {
8
8
  readonly "dialog.cancel": string;
9
9
  readonly "dialog.cancelRoleCreation": string;
10
10
  readonly "dialog.exitRoleCreation": string;
@@ -176,6 +176,6 @@ declare const rbacTranslationRef: _backstage_core_plugin_api_alpha.TranslationRe
176
176
  /**
177
177
  * @public
178
178
  */
179
- declare const rbacTranslations: _backstage_core_plugin_api_alpha.TranslationResource<"plugin.rbac">;
179
+ declare const rbacTranslations: _backstage_frontend_plugin_api.TranslationResource<"plugin.rbac">;
180
180
 
181
181
  export { rbacTranslationRef, rbacTranslations };
package/dist/index.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
3
+ import * as _backstage_frontend_plugin_api from '@backstage/frontend-plugin-api';
3
4
  import { RoleConditionalPolicyDecision, PermissionAction, Role, RoleBasedPolicy, PluginPermissionMetaData } from '@backstage-community/plugin-rbac-common';
4
5
  import { UserEntity, GroupEntity } from '@backstage/catalog-model';
5
6
  import { RJSFSchema } from '@rjsf/utils';
@@ -87,6 +88,6 @@ type RBACAPI = {
87
88
  /**
88
89
  * @public
89
90
  */
90
- declare const rbacApiRef: _backstage_core_plugin_api.ApiRef<RBACAPI>;
91
+ declare const rbacApiRef: _backstage_frontend_plugin_api.ApiRef<RBACAPI>;
91
92
 
92
93
  export { Administration, type ConditionRule, type MemberEntity, type PluginConditionRules, type RBACAPI, RbacPage, type RoleBasedConditions, type RoleError, rbacApiRef, rbacPlugin };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage-community/plugin-rbac",
3
- "version": "1.47.4",
3
+ "version": "1.48.0",
4
4
  "main": "./dist/index.esm.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "license": "Apache-2.0",
@@ -56,15 +56,15 @@
56
56
  "ui-test": "start-server-and-test start localhost:3000 'playwright test'"
57
57
  },
58
58
  "dependencies": {
59
- "@backstage-community/plugin-rbac-common": "^1.22.0",
59
+ "@backstage-community/plugin-rbac-common": "^1.23.0",
60
60
  "@backstage/catalog-model": "^1.7.6",
61
- "@backstage/core-components": "^0.18.3",
62
- "@backstage/core-plugin-api": "^1.12.0",
63
- "@backstage/plugin-catalog": "^1.32.0",
61
+ "@backstage/core-components": "^0.18.6",
62
+ "@backstage/core-plugin-api": "^1.12.2",
63
+ "@backstage/plugin-catalog": "^1.32.2",
64
64
  "@backstage/plugin-catalog-common": "^1.1.7",
65
- "@backstage/plugin-permission-common": "^0.9.3",
66
- "@backstage/plugin-permission-react": "^0.4.38",
67
- "@backstage/theme": "^0.7.0",
65
+ "@backstage/plugin-permission-common": "^0.9.5",
66
+ "@backstage/plugin-permission-react": "^0.4.39",
67
+ "@backstage/theme": "^0.7.1",
68
68
  "@mui/icons-material": "5.18.0",
69
69
  "@mui/material": "^5.14.18",
70
70
  "@mui/styles": "^6.1.7",
@@ -83,11 +83,11 @@
83
83
  },
84
84
  "devDependencies": {
85
85
  "@axe-core/playwright": "^4.11.0",
86
- "@backstage/cli": "^0.34.5",
87
- "@backstage/core-app-api": "^1.19.2",
88
- "@backstage/dev-utils": "^1.1.17",
89
- "@backstage/test-utils": "^1.7.13",
90
- "@backstage/ui": "^0.9.0",
86
+ "@backstage/cli": "^0.35.3",
87
+ "@backstage/core-app-api": "^1.19.4",
88
+ "@backstage/dev-utils": "^1.1.19",
89
+ "@backstage/test-utils": "^1.7.14",
90
+ "@backstage/ui": "^0.11.2",
91
91
  "@playwright/test": "^1.56.1",
92
92
  "@testing-library/dom": "^10.0.0",
93
93
  "@testing-library/jest-dom": "^6.0.0",
@@ -95,13 +95,13 @@
95
95
  "@testing-library/react-hooks": "8.0.1",
96
96
  "@testing-library/user-event": "14.6.1",
97
97
  "@types/autosuggest-highlight": "3.2.3",
98
- "@types/node": "22.19.3",
98
+ "@types/node": "22.19.7",
99
99
  "@types/react": "^18.2.58",
100
100
  "msw": "1.3.5",
101
101
  "react": "^16.13.1 || ^17.0.0 || ^18.0.0",
102
102
  "react-dom": "^16.13.1 || ^17.0.0 || ^18.0.0",
103
103
  "react-router-dom": "^6.0.0",
104
- "start-server-and-test": "2.1.2"
104
+ "start-server-and-test": "2.1.3"
105
105
  },
106
106
  "files": [
107
107
  "dist"