@backstage/plugin-catalog-react 0.6.3 → 0.6.4
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 +12 -0
- package/dist/index.cjs.js +2 -7
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +2 -7
- package/dist/index.esm.js.map +1 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-react
|
|
2
2
|
|
|
3
|
+
## 0.6.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- a125278b81: Refactor out the deprecated path and icon from RouteRefs
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/catalog-client@0.5.2
|
|
10
|
+
- @backstage/catalog-model@0.9.7
|
|
11
|
+
- @backstage/core-components@0.7.4
|
|
12
|
+
- @backstage/core-plugin-api@0.2.0
|
|
13
|
+
- @backstage/core-app-api@0.1.21
|
|
14
|
+
|
|
3
15
|
## 0.6.3
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/dist/index.cjs.js
CHANGED
|
@@ -112,17 +112,12 @@ const starredEntitiesApiRef = corePluginApi.createApiRef({
|
|
|
112
112
|
id: "catalog-react.starred-entities"
|
|
113
113
|
});
|
|
114
114
|
|
|
115
|
-
const NoIcon = () => null;
|
|
116
115
|
const rootRoute = corePluginApi.createRouteRef({
|
|
117
|
-
|
|
118
|
-
path: "",
|
|
119
|
-
title: "Catalog"
|
|
116
|
+
id: "catalog"
|
|
120
117
|
});
|
|
121
118
|
const catalogRouteRef = rootRoute;
|
|
122
119
|
const entityRoute = corePluginApi.createRouteRef({
|
|
123
|
-
|
|
124
|
-
path: ":namespace/:kind/:name/*",
|
|
125
|
-
title: "Entity",
|
|
120
|
+
id: "catalog:entity",
|
|
126
121
|
params: ["namespace", "kind", "name"]
|
|
127
122
|
});
|
|
128
123
|
const entityRouteRef = entityRoute;
|