@backstage/plugin-permission-common 0.7.13-next.0 → 0.7.13

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 +21 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # @backstage/plugin-permission-common
2
2
 
3
+ ## 0.7.13
4
+
5
+ ### Patch Changes
6
+
7
+ - 0502d82: The `token` option of the `PermissionEvaluator` methods is now deprecated. The options that only apply to backend implementations have been moved to `PermissionsService` from `@backstage/backend-plugin-api` instead.
8
+ - 0fb419b: Updated dependency `uuid` to `^9.0.0`.
9
+ Updated dependency `@types/uuid` to `^9.0.0`.
10
+ - Updated dependencies
11
+ - @backstage/config@1.2.0
12
+ - @backstage/errors@1.2.4
13
+ - @backstage/types@1.1.1
14
+
15
+ ## 0.7.13-next.1
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies
20
+ - @backstage/config@1.2.0-next.1
21
+ - @backstage/errors@1.2.4-next.0
22
+ - @backstage/types@1.1.1
23
+
3
24
  ## 0.7.13-next.0
4
25
 
5
26
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-permission-common",
3
- "version": "0.7.13-next.0",
3
+ "version": "0.7.13",
4
4
  "description": "Isomorphic types and client for Backstage permissions and authorization",
5
5
  "backstage": {
6
6
  "role": "common-library"
@@ -41,15 +41,15 @@
41
41
  "test": "backstage-cli package test"
42
42
  },
43
43
  "dependencies": {
44
- "@backstage/config": "^1.1.2-next.0",
45
- "@backstage/errors": "^1.2.4-next.0",
44
+ "@backstage/config": "^1.2.0",
45
+ "@backstage/errors": "^1.2.4",
46
46
  "@backstage/types": "^1.1.1",
47
47
  "cross-fetch": "^4.0.0",
48
48
  "uuid": "^9.0.0",
49
49
  "zod": "^3.22.4"
50
50
  },
51
51
  "devDependencies": {
52
- "@backstage/cli": "^0.25.3-next.0",
52
+ "@backstage/cli": "^0.26.0",
53
53
  "msw": "^1.0.0"
54
54
  },
55
55
  "configSchema": "config.d.ts",