@backstage/plugin-catalog-react 0.0.0-nightly-20230919021144 → 0.0.0-nightly-20230923020926

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,6 +1,25 @@
1
1
  # @backstage/plugin-catalog-react
2
2
 
3
- ## 0.0.0-nightly-20230919021144
3
+ ## 0.0.0-nightly-20230923020926
4
+
5
+ ### Patch Changes
6
+
7
+ - a402e1dfb977: Fixed an issue causing `EntityPage` to show an error for entities containing special characters
8
+ - Updated dependencies
9
+ - @backstage/integration@0.0.0-nightly-20230923020926
10
+ - @backstage/catalog-client@1.4.4
11
+ - @backstage/catalog-model@1.4.2
12
+ - @backstage/core-components@0.13.5
13
+ - @backstage/core-plugin-api@1.6.0
14
+ - @backstage/errors@1.2.2
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
+ - @backstage/plugin-permission-react@0.4.15
21
+
22
+ ## 1.8.4
4
23
 
5
24
  ### Patch Changes
6
25
 
@@ -8,18 +27,18 @@
8
27
  - 406b786a2a2c: Mark package as being free of side effects, allowing more optimized Webpack builds.
9
28
  - 7029ba1ce0af: Added delete alert popup when user delete the entity
10
29
  - Updated dependencies
11
- - @backstage/core-components@0.0.0-nightly-20230919021144
12
- - @backstage/catalog-client@0.0.0-nightly-20230919021144
13
- - @backstage/catalog-model@0.0.0-nightly-20230919021144
14
- - @backstage/core-plugin-api@0.0.0-nightly-20230919021144
15
- - @backstage/errors@0.0.0-nightly-20230919021144
16
- - @backstage/integration@0.0.0-nightly-20230919021144
17
- - @backstage/plugin-catalog-common@0.0.0-nightly-20230919021144
18
- - @backstage/plugin-permission-common@0.0.0-nightly-20230919021144
19
- - @backstage/plugin-permission-react@0.0.0-nightly-20230919021144
20
- - @backstage/theme@0.0.0-nightly-20230919021144
21
- - @backstage/types@0.0.0-nightly-20230919021144
22
- - @backstage/version-bridge@0.0.0-nightly-20230919021144
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
23
42
 
24
43
  ## 1.8.4-next.3
25
44
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-react",
3
- "version": "0.0.0-nightly-20230919021144",
3
+ "version": "0.0.0-nightly-20230923020926",
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 }