@backstage/plugin-catalog 1.13.0-next.3 → 1.13.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 +26 -0
- package/package.json +19 -19
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @backstage/plugin-catalog
|
|
2
2
|
|
|
3
|
+
## 1.13.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- e44f45ac4515: This change allows a new annotation of `backstage.io/techdocs-entity` this ref allows you to reference another entity for its TechDocs. This allows you have a single TechDoc for all items in a system, for example you might have a frontend and a backend in the same repo. This would allow you to have TechDocs build under a `System` entity while referencing the system e.g.: `backstage.io/techdocs-entity: system:default/example` that will show the systems docs in both the TechDocs button and the TechDocs tab without needing to do duplicate builds and filling the TechDocs page with garbage.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 832eef72485b: Added title to props for `Has<kind>Cards`.
|
|
12
|
+
- 163a41035e42: Fixed an issue where `EntitySwitch` was preventing the display of entity errors.
|
|
13
|
+
- 406b786a2a2c: Mark package as being free of side effects, allowing more optimized Webpack builds.
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
- @backstage/integration-react@1.1.19
|
|
16
|
+
- @backstage/plugin-catalog-react@1.8.4
|
|
17
|
+
- @backstage/core-components@0.13.5
|
|
18
|
+
- @backstage/catalog-client@1.4.4
|
|
19
|
+
- @backstage/catalog-model@1.4.2
|
|
20
|
+
- @backstage/core-plugin-api@1.6.0
|
|
21
|
+
- @backstage/errors@1.2.2
|
|
22
|
+
- @backstage/plugin-catalog-common@1.0.16
|
|
23
|
+
- @backstage/plugin-scaffolder-common@1.4.1
|
|
24
|
+
- @backstage/plugin-search-common@1.2.6
|
|
25
|
+
- @backstage/plugin-search-react@1.7.0
|
|
26
|
+
- @backstage/theme@0.4.2
|
|
27
|
+
- @backstage/types@1.1.1
|
|
28
|
+
|
|
3
29
|
## 1.13.0-next.3
|
|
4
30
|
|
|
5
31
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog",
|
|
3
3
|
"description": "The Backstage plugin for browsing the Backstage catalog",
|
|
4
|
-
"version": "1.13.0
|
|
4
|
+
"version": "1.13.0",
|
|
5
5
|
"main": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -33,19 +33,19 @@
|
|
|
33
33
|
"clean": "backstage-cli package clean"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@backstage/catalog-client": "^1.4.4
|
|
37
|
-
"@backstage/catalog-model": "^1.4.2
|
|
38
|
-
"@backstage/core-components": "^0.13.5
|
|
39
|
-
"@backstage/core-plugin-api": "^1.6.0
|
|
40
|
-
"@backstage/errors": "^1.2.2
|
|
41
|
-
"@backstage/integration-react": "^1.1.19
|
|
42
|
-
"@backstage/plugin-catalog-common": "^1.0.16
|
|
43
|
-
"@backstage/plugin-catalog-react": "^1.8.4
|
|
44
|
-
"@backstage/plugin-scaffolder-common": "^1.4.1
|
|
45
|
-
"@backstage/plugin-search-common": "^1.2.6
|
|
46
|
-
"@backstage/plugin-search-react": "^1.7.0
|
|
47
|
-
"@backstage/theme": "^0.4.2
|
|
48
|
-
"@backstage/types": "^1.1.1
|
|
36
|
+
"@backstage/catalog-client": "^1.4.4",
|
|
37
|
+
"@backstage/catalog-model": "^1.4.2",
|
|
38
|
+
"@backstage/core-components": "^0.13.5",
|
|
39
|
+
"@backstage/core-plugin-api": "^1.6.0",
|
|
40
|
+
"@backstage/errors": "^1.2.2",
|
|
41
|
+
"@backstage/integration-react": "^1.1.19",
|
|
42
|
+
"@backstage/plugin-catalog-common": "^1.0.16",
|
|
43
|
+
"@backstage/plugin-catalog-react": "^1.8.4",
|
|
44
|
+
"@backstage/plugin-scaffolder-common": "^1.4.1",
|
|
45
|
+
"@backstage/plugin-search-common": "^1.2.6",
|
|
46
|
+
"@backstage/plugin-search-react": "^1.7.0",
|
|
47
|
+
"@backstage/theme": "^0.4.2",
|
|
48
|
+
"@backstage/types": "^1.1.1",
|
|
49
49
|
"@material-ui/core": "^4.12.2",
|
|
50
50
|
"@material-ui/icons": "^4.9.1",
|
|
51
51
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
@@ -63,11 +63,11 @@
|
|
|
63
63
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
|
-
"@backstage/cli": "^0.22.13
|
|
67
|
-
"@backstage/core-app-api": "^1.10.0
|
|
68
|
-
"@backstage/dev-utils": "^1.0.21
|
|
69
|
-
"@backstage/plugin-permission-react": "^0.4.15
|
|
70
|
-
"@backstage/test-utils": "^1.4.3
|
|
66
|
+
"@backstage/cli": "^0.22.13",
|
|
67
|
+
"@backstage/core-app-api": "^1.10.0",
|
|
68
|
+
"@backstage/dev-utils": "^1.0.21",
|
|
69
|
+
"@backstage/plugin-permission-react": "^0.4.15",
|
|
70
|
+
"@backstage/test-utils": "^1.4.3",
|
|
71
71
|
"@testing-library/dom": "^8.0.0",
|
|
72
72
|
"@testing-library/jest-dom": "^5.10.1",
|
|
73
73
|
"@testing-library/react": "^12.1.3",
|