@backstage/plugin-catalog-react 1.8.4-next.3 → 1.8.5-next.0

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,45 @@
1
1
  # @backstage/plugin-catalog-react
2
2
 
3
+ ## 1.8.5-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - a402e1dfb9: Fixed an issue causing `EntityPage` to show an error for entities containing special characters
8
+ - Updated dependencies
9
+ - @backstage/integration@1.7.1-next.0
10
+ - @backstage/core-plugin-api@1.7.0-next.0
11
+ - @backstage/core-components@0.13.6-next.0
12
+ - @backstage/plugin-permission-react@0.4.16-next.0
13
+ - @backstage/catalog-client@1.4.4
14
+ - @backstage/catalog-model@1.4.2
15
+ - @backstage/errors@1.2.2
16
+ - @backstage/theme@0.4.2
17
+ - @backstage/types@1.1.1
18
+ - @backstage/version-bridge@1.0.5
19
+ - @backstage/plugin-catalog-common@1.0.16
20
+ - @backstage/plugin-permission-common@0.7.8
21
+
22
+ ## 1.8.4
23
+
24
+ ### Patch Changes
25
+
26
+ - bd817209ddd7: Export the `EntityAutocompletePicker` component.
27
+ - 406b786a2a2c: Mark package as being free of side effects, allowing more optimized Webpack builds.
28
+ - 7029ba1ce0af: Added delete alert popup when user delete the entity
29
+ - Updated dependencies
30
+ - @backstage/core-components@0.13.5
31
+ - @backstage/catalog-client@1.4.4
32
+ - @backstage/catalog-model@1.4.2
33
+ - @backstage/core-plugin-api@1.6.0
34
+ - @backstage/errors@1.2.2
35
+ - @backstage/integration@1.7.0
36
+ - @backstage/plugin-catalog-common@1.0.16
37
+ - @backstage/plugin-permission-common@0.7.8
38
+ - @backstage/plugin-permission-react@0.4.15
39
+ - @backstage/theme@0.4.2
40
+ - @backstage/types@1.1.1
41
+ - @backstage/version-bridge@1.0.5
42
+
3
43
  ## 1.8.4-next.3
4
44
 
5
45
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-react",
3
- "version": "1.8.4-next.3",
3
+ "version": "1.8.5-next.0",
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 }