@backstage/plugin-catalog-react 3.2.1-next.3 → 3.2.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.
- package/CHANGELOG.md +21 -0
- package/package.json +22 -22
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-react
|
|
2
2
|
|
|
3
|
+
## 3.2.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 9fcfbc9: Fixed a performance issue where all components reading the entity context on an entity page would rerender unnecessarily whenever the page rendered again without the entity data having changed, for example when a URL query parameter changed. This was particularly noticeable when switching tabs in the entity inspector dialog, which caused the entire underlying page to rerender.
|
|
8
|
+
- e766061: Fixed an issue where the "Owned" count in `UserListPicker` would display the total number of catalog entities instead of 0 when the logged-in user has no ownership entity refs. The empty `relations.ownedBy` filter was being silently dropped by the catalog client, causing the backend to return all entities with no ownership filter applied.
|
|
9
|
+
|
|
10
|
+
This was a regression introduced in #22131, which removed an explicit `ownershipEntityRefs?.length === 0` guard that had been present since #20339.
|
|
11
|
+
|
|
12
|
+
- ed462ad: Fixed `EntityOwnerPicker` in `owners-only` mode to display human-readable entity titles (from `metadata.title` or `spec.profile.displayName`) instead of opaque internal names, both in the dropdown list and in the selected owner chips. The owner list is now virtualized, keeping the picker responsive for catalogs with large numbers of owner entities.
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
- @backstage/catalog-model@1.10.0
|
|
15
|
+
- @backstage/core-components@0.18.13
|
|
16
|
+
- @backstage/core-plugin-api@1.12.9
|
|
17
|
+
- @backstage/ui@0.17.1
|
|
18
|
+
- @backstage/plugin-permission-common@0.9.10
|
|
19
|
+
- @backstage/frontend-plugin-api@0.18.0
|
|
20
|
+
- @backstage/core-compat-api@0.5.14
|
|
21
|
+
- @backstage/integration-react@1.2.21
|
|
22
|
+
- @backstage/plugin-permission-react@0.5.4
|
|
23
|
+
|
|
3
24
|
## 3.2.1-next.3
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-react",
|
|
3
|
-
"version": "3.2.1
|
|
3
|
+
"version": "3.2.1",
|
|
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.
|
|
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.
|
|
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.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.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
|
|
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.3
|
|
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",
|