@backstage/plugin-catalog-react 1.8.4 → 1.8.5-next.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 CHANGED
@@ -1,5 +1,42 @@
1
1
  # @backstage/plugin-catalog-react
2
2
 
3
+ ## 1.8.5-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/core-components@0.13.6-next.1
9
+ - @backstage/core-plugin-api@1.7.0-next.0
10
+ - @backstage/plugin-permission-react@0.4.16-next.0
11
+ - @backstage/catalog-client@1.4.4
12
+ - @backstage/catalog-model@1.4.2
13
+ - @backstage/errors@1.2.2
14
+ - @backstage/integration@1.7.1-next.0
15
+ - @backstage/theme@0.4.2
16
+ - @backstage/types@1.1.1
17
+ - @backstage/version-bridge@1.0.5
18
+ - @backstage/plugin-catalog-common@1.0.16
19
+ - @backstage/plugin-permission-common@0.7.8
20
+
21
+ ## 1.8.5-next.0
22
+
23
+ ### Patch Changes
24
+
25
+ - a402e1dfb9: Fixed an issue causing `EntityPage` to show an error for entities containing special characters
26
+ - Updated dependencies
27
+ - @backstage/integration@1.7.1-next.0
28
+ - @backstage/core-plugin-api@1.7.0-next.0
29
+ - @backstage/core-components@0.13.6-next.0
30
+ - @backstage/plugin-permission-react@0.4.16-next.0
31
+ - @backstage/catalog-client@1.4.4
32
+ - @backstage/catalog-model@1.4.2
33
+ - @backstage/errors@1.2.2
34
+ - @backstage/theme@0.4.2
35
+ - @backstage/types@1.1.1
36
+ - @backstage/version-bridge@1.0.5
37
+ - @backstage/plugin-catalog-common@1.0.16
38
+ - @backstage/plugin-permission-common@0.7.8
39
+
3
40
  ## 1.8.4
4
41
 
5
42
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-react",
3
- "version": "1.8.4",
3
+ "version": "1.8.5-next.1",
4
4
  "main": "../dist/alpha.esm.js",
5
5
  "module": "../dist/alpha.esm.js",
6
6
  "types": "../dist/alpha.d.ts"
package/dist/index.esm.js CHANGED
@@ -1235,7 +1235,11 @@ const EntityRefLink = forwardRef(
1235
1235
  }
1236
1236
  kind = kind.toLocaleLowerCase("en-US");
1237
1237
  namespace = (_a = namespace == null ? void 0 : namespace.toLocaleLowerCase("en-US")) != null ? _a : DEFAULT_NAMESPACE;
1238
- const routeParams = { kind, namespace, name };
1238
+ const routeParams = {
1239
+ kind: encodeURIComponent(kind),
1240
+ namespace: encodeURIComponent(namespace),
1241
+ name: encodeURIComponent(name)
1242
+ };
1239
1243
  const formattedEntityRefTitle = humanizeEntityRef(
1240
1244
  { kind, namespace, name },
1241
1245
  { defaultKind }