@backstage/plugin-permission-react 0.4.0-next.1 → 0.4.1-next.1

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 +30 -0
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -1,5 +1,35 @@
1
1
  # @backstage/plugin-permission-react
2
2
 
3
+ ## 0.4.1-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/config@1.0.1-next.0
9
+ - @backstage/core-plugin-api@1.0.2-next.1
10
+ - @backstage/plugin-permission-common@0.6.1-next.0
11
+
12
+ ## 0.4.1-next.0
13
+
14
+ ### Patch Changes
15
+
16
+ - Updated dependencies
17
+ - @backstage/core-plugin-api@1.0.2-next.0
18
+
19
+ ## 0.4.0
20
+
21
+ ### Minor Changes
22
+
23
+ - 5bdcb8c45d: **BREAKING**: More restrictive typing for `usePermission` hook and `PermissionedRoute` component. It's no longer possible to pass a `resourceRef` unless the permission is of type `ResourcePermission`.
24
+
25
+ ### Patch Changes
26
+
27
+ - c98d271466: Use updated types from `@backstage/plugin-permission-common`
28
+ - 322b69e46a: **BREAKING:** Make `IdentityPermissionApi#authorize` typing more strict, using `AuthorizePermissionRequest` and `AuthorizePermissionResponse`.
29
+ - Updated dependencies
30
+ - @backstage/plugin-permission-common@0.6.0
31
+ - @backstage/core-plugin-api@1.0.1
32
+
3
33
  ## 0.4.0-next.1
4
34
 
5
35
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-permission-react",
3
- "version": "0.4.0-next.1",
3
+ "version": "0.4.1-next.1",
4
4
  "main": "dist/index.esm.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "license": "Apache-2.0",
@@ -31,9 +31,9 @@
31
31
  "start": "backstage-cli package start"
32
32
  },
33
33
  "dependencies": {
34
- "@backstage/config": "^1.0.0",
35
- "@backstage/core-plugin-api": "^1.0.1-next.0",
36
- "@backstage/plugin-permission-common": "^0.6.0-next.1",
34
+ "@backstage/config": "^1.0.1-next.0",
35
+ "@backstage/core-plugin-api": "^1.0.2-next.1",
36
+ "@backstage/plugin-permission-common": "^0.6.1-next.0",
37
37
  "cross-fetch": "^3.1.5",
38
38
  "react-router": "6.0.0-beta.0",
39
39
  "react-use": "^17.2.4",
@@ -44,8 +44,8 @@
44
44
  "react": "^16.13.1 || ^17.0.0"
45
45
  },
46
46
  "devDependencies": {
47
- "@backstage/cli": "^0.17.0-next.3",
48
- "@backstage/test-utils": "^1.0.1-next.2",
47
+ "@backstage/cli": "^0.17.1-next.2",
48
+ "@backstage/test-utils": "^1.1.0-next.2",
49
49
  "@testing-library/jest-dom": "^5.10.1",
50
50
  "@testing-library/react": "^12.1.3",
51
51
  "@types/jest": "^26.0.7"
@@ -53,5 +53,5 @@
53
53
  "files": [
54
54
  "dist"
55
55
  ],
56
- "gitHead": "2eca57d93ef1081f4a76a19fc994a8e9e1a19e00"
56
+ "gitHead": "cfbf5762d7d91eee18999306b21d63840400ee29"
57
57
  }