@backstage/plugin-catalog-react 1.8.4 → 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 +19 -0
- package/alpha/package.json +1 -1
- package/dist/index.esm.js +5 -1
- package/dist/index.esm.js.map +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
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
|
+
|
|
3
22
|
## 1.8.4
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
package/alpha/package.json
CHANGED
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 = {
|
|
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 }
|