@backstage/plugin-catalog-react 0.0.0-nightly-2021101422237 → 0.0.0-nightly-202111222339

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 CHANGED
@@ -1,19 +1,16 @@
1
1
  # @backstage/plugin-catalog-react
2
2
 
3
- ## 0.0.0-nightly-2021101422237
3
+ ## 0.6.4
4
4
 
5
5
  ### Patch Changes
6
6
 
7
+ - a125278b81: Refactor out the deprecated path and icon from RouteRefs
7
8
  - Updated dependencies
8
- - @backstage/catalog-client@0.0.0-nightly-2021101422237
9
- - @backstage/core-plugin-api@0.0.0-nightly-2021101422237
10
- - @backstage/core-app-api@0.0.0-nightly-2021101422237
11
- - @backstage/catalog-model@0.0.0-nightly-2021101422237
12
- - @backstage/core-components@0.0.0-nightly-2021101422237
13
- - @backstage/errors@0.0.0-nightly-2021101422237
14
- - @backstage/integration@0.0.0-nightly-2021101422237
15
- - @backstage/types@0.0.0-nightly-2021101422237
16
- - @backstage/version-bridge@0.0.0-nightly-2021101422237
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
17
14
 
18
15
  ## 0.6.3
19
16
 
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
- icon: NoIcon,
118
- path: "",
119
- title: "Catalog"
116
+ id: "catalog"
120
117
  });
121
118
  const catalogRouteRef = rootRoute;
122
119
  const entityRoute = corePluginApi.createRouteRef({
123
- icon: NoIcon,
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;