@backstage/plugin-catalog-react 3.2.2 → 3.2.3-next.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +39 -2
  2. package/package.json +23 -22
package/CHANGELOG.md CHANGED
@@ -1,15 +1,52 @@
1
1
  # @backstage/plugin-catalog-react
2
2
 
3
- ## 3.2.2
3
+ ## 3.2.3-next.2
4
4
 
5
5
  ### Patch Changes
6
6
 
7
- - a131165: Fixed `EntityOwnerPicker` crashing with `Entity reference "<name>" had missing or empty kind` when the `owners` query parameter contains humanized entity refs, as produced by the `OwnershipCard` links in `@backstage/plugin-org`.
7
+ - Updated dependencies
8
+ - @backstage/ui@0.18.0-next.2
9
+ - @backstage/catalog-client@1.16.2-next.1
10
+ - @backstage/core-components@0.18.14-next.2
11
+ - @backstage/core-plugin-api@1.12.10-next.1
12
+ - @backstage/filter-predicates@0.1.5-next.1
13
+ - @backstage/frontend-plugin-api@0.18.1-next.1
14
+ - @backstage/integration-react@1.2.22-next.1
15
+ - @backstage/plugin-permission-common@0.9.11-next.0
16
+ - @backstage/plugin-permission-react@0.5.5-next.1
17
+
18
+ ## 3.2.3-next.1
19
+
20
+ ### Patch Changes
21
+
22
+ - bf7e890: Added the missing Material UI dependency used by catalog popovers.
23
+ - Updated dependencies
24
+ - @backstage/core-components@0.18.14-next.1
25
+ - @backstage/frontend-plugin-api@0.18.1-next.0
26
+ - @backstage/filter-predicates@0.1.5-next.0
27
+ - @backstage/ui@0.18.0-next.1
28
+ - @backstage/integration-react@1.2.22-next.0
29
+ - @backstage/core-compat-api@0.5.15-next.1
30
+ - @backstage/core-plugin-api@1.12.10-next.0
31
+ - @backstage/catalog-client@1.16.2-next.0
32
+ - @backstage/plugin-permission-react@0.5.5-next.0
33
+
34
+ ## 3.2.2-next.0
35
+
36
+ ### Patch Changes
37
+
38
+ - a7b14b5: Fixed `EntityOwnerPicker` crashing with `Entity reference "<name>" had missing or empty kind` when the `owners` query parameter contains humanized entity refs, as produced by the `OwnershipCard` links in `@backstage/plugin-org`.
8
39
 
9
40
  Query parameters were stored as-is in the initial state and only converted to full entity refs by an effect, which runs after the first render. That first render passed the raw value to the entity presentation API, whose `parseEntityRef` call rejects a ref without a kind. The same raw value was also sent to `catalogApi.getEntitiesByRefs` on mount, and made the option checkboxes render unselected until the effect ran.
10
41
 
11
42
  The query parameters are now normalized through `EntityOwnerFilter` when the state is initialized, matching what the existing effect already did and what the `filters` code path already produced.
12
43
 
44
+ - Updated dependencies
45
+ - @backstage/ui@0.17.2-next.0
46
+ - @backstage/core-components@0.18.14-next.0
47
+ - @backstage/core-compat-api@0.5.15-next.0
48
+ - @backstage/frontend-test-utils@0.6.4-next.0
49
+
13
50
  ## 3.2.1
14
51
 
15
52
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-react",
3
- "version": "3.2.2",
3
+ "version": "3.2.3-next.2",
4
4
  "description": "A frontend library that helps other Backstage plugins interact with the catalog",
5
5
  "backstage": {
6
6
  "role": "web-library",
@@ -73,23 +73,24 @@
73
73
  "test": "backstage-cli package test"
74
74
  },
75
75
  "dependencies": {
76
- "@backstage/catalog-client": "^1.16.1",
77
- "@backstage/catalog-model": "^1.10.0",
78
- "@backstage/core-compat-api": "^0.5.14",
79
- "@backstage/core-components": "^0.18.13",
80
- "@backstage/core-plugin-api": "^1.12.9",
81
- "@backstage/errors": "^1.3.1",
82
- "@backstage/filter-predicates": "^0.1.4",
83
- "@backstage/frontend-plugin-api": "^0.18.0",
84
- "@backstage/integration-react": "^1.2.21",
85
- "@backstage/plugin-permission-common": "^0.9.10",
86
- "@backstage/plugin-permission-react": "^0.5.4",
87
- "@backstage/types": "^1.2.2",
88
- "@backstage/ui": "^0.17.1",
89
- "@backstage/version-bridge": "^1.0.12",
76
+ "@backstage/catalog-client": "1.16.2-next.1",
77
+ "@backstage/catalog-model": "1.10.0",
78
+ "@backstage/core-compat-api": "0.5.15-next.1",
79
+ "@backstage/core-components": "0.18.14-next.2",
80
+ "@backstage/core-plugin-api": "1.12.10-next.1",
81
+ "@backstage/errors": "1.3.1",
82
+ "@backstage/filter-predicates": "0.1.5-next.1",
83
+ "@backstage/frontend-plugin-api": "0.18.1-next.1",
84
+ "@backstage/integration-react": "1.2.22-next.1",
85
+ "@backstage/plugin-permission-common": "0.9.11-next.0",
86
+ "@backstage/plugin-permission-react": "0.5.5-next.1",
87
+ "@backstage/types": "1.2.2",
88
+ "@backstage/ui": "0.18.0-next.2",
89
+ "@backstage/version-bridge": "1.0.12",
90
90
  "@material-ui/core": "^4.12.2",
91
91
  "@material-ui/icons": "^4.9.1",
92
92
  "@material-ui/lab": "4.0.0-alpha.61",
93
+ "@mui/material": "^5.12.2",
93
94
  "@react-hookz/web": "^24.0.0",
94
95
  "@remixicon/react": ">=4.6.0 <4.9.0",
95
96
  "classnames": "^2.2.6",
@@ -103,12 +104,12 @@
103
104
  "zod": "^4.0.0"
104
105
  },
105
106
  "devDependencies": {
106
- "@backstage/cli": "^0.36.5",
107
- "@backstage/core-app-api": "^1.20.4",
108
- "@backstage/frontend-test-utils": "^0.6.3",
109
- "@backstage/plugin-catalog-common": "^1.1.10",
110
- "@backstage/plugin-scaffolder-common": "^2.2.2",
111
- "@backstage/test-utils": "^1.7.21",
107
+ "@backstage/cli": "0.36.6-next.1",
108
+ "@backstage/core-app-api": "1.20.5-next.2",
109
+ "@backstage/frontend-test-utils": "0.6.4-next.2",
110
+ "@backstage/plugin-catalog-common": "1.2.0-next.0",
111
+ "@backstage/plugin-scaffolder-common": "2.3.0-next.2",
112
+ "@backstage/test-utils": "1.7.22-next.2",
112
113
  "@testing-library/dom": "^10.0.0",
113
114
  "@testing-library/jest-dom": "^6.0.0",
114
115
  "@testing-library/react": "^16.0.0",
@@ -122,7 +123,7 @@
122
123
  "react-test-renderer": "^16.13.1"
123
124
  },
124
125
  "peerDependencies": {
125
- "@backstage/frontend-test-utils": "^0.6.3",
126
+ "@backstage/frontend-test-utils": "0.6.4-next.2",
126
127
  "@types/react": "^17.0.0 || ^18.0.0",
127
128
  "react": "^17.0.0 || ^18.0.0",
128
129
  "react-dom": "^17.0.0 || ^18.0.0",