@backstage/plugin-catalog-react 3.2.2-next.0 → 3.2.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 +2 -8
  2. package/package.json +22 -22
package/CHANGELOG.md CHANGED
@@ -1,21 +1,15 @@
1
1
  # @backstage/plugin-catalog-react
2
2
 
3
- ## 3.2.2-next.0
3
+ ## 3.2.2
4
4
 
5
5
  ### Patch Changes
6
6
 
7
- - 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`.
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`.
8
8
 
9
9
  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
10
 
11
11
  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
12
 
13
- - Updated dependencies
14
- - @backstage/ui@0.17.2-next.0
15
- - @backstage/core-components@0.18.14-next.0
16
- - @backstage/core-compat-api@0.5.15-next.0
17
- - @backstage/frontend-test-utils@0.6.4-next.0
18
-
19
13
  ## 3.2.1
20
14
 
21
15
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-react",
3
- "version": "3.2.2-next.0",
3
+ "version": "3.2.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,20 +73,20 @@
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.15-next.0",
79
- "@backstage/core-components": "0.18.14-next.0",
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.2-next.0",
89
- "@backstage/version-bridge": "1.0.12",
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",
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",
@@ -103,12 +103,12 @@
103
103
  "zod": "^4.0.0"
104
104
  },
105
105
  "devDependencies": {
106
- "@backstage/cli": "0.36.6-next.0",
107
- "@backstage/core-app-api": "1.20.5-next.0",
108
- "@backstage/frontend-test-utils": "0.6.4-next.0",
109
- "@backstage/plugin-catalog-common": "1.1.10",
110
- "@backstage/plugin-scaffolder-common": "2.3.0-next.0",
111
- "@backstage/test-utils": "1.7.22-next.0",
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",
112
112
  "@testing-library/dom": "^10.0.0",
113
113
  "@testing-library/jest-dom": "^6.0.0",
114
114
  "@testing-library/react": "^16.0.0",
@@ -122,7 +122,7 @@
122
122
  "react-test-renderer": "^16.13.1"
123
123
  },
124
124
  "peerDependencies": {
125
- "@backstage/frontend-test-utils": "0.6.4-next.0",
125
+ "@backstage/frontend-test-utils": "^0.6.3",
126
126
  "@types/react": "^17.0.0 || ^18.0.0",
127
127
  "react": "^17.0.0 || ^18.0.0",
128
128
  "react-dom": "^17.0.0 || ^18.0.0",