@backstage/plugin-catalog 1.21.0-next.3 → 1.21.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 +38 -0
- package/alpha/package.json +1 -1
- package/package.json +17 -17
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,43 @@
|
|
|
1
1
|
# @backstage/plugin-catalog
|
|
2
2
|
|
|
3
|
+
## 1.21.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 863a800: Added the following default targets for external routes:
|
|
8
|
+
|
|
9
|
+
- `createComponent` binds to the Scaffolder page.
|
|
10
|
+
- `viewTechDoc` binds to the TechDocs entity documentation page.
|
|
11
|
+
- `createFromTemplate` binds to the Scaffolder selected template page.
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- d44a20a: Added additional plugin metadata to `package.json`.
|
|
16
|
+
- e04e57d: Fix bug with missing Actions column after adding "pagination" prop to catalog table
|
|
17
|
+
- a2d2649: Export `catalogTranslationRef` under `/alpha`
|
|
18
|
+
- bcec60f: updated the ContextMenu, ActionsPage, OngoingTask and TemplateCard frontend components to support the new scaffolder permissions:
|
|
19
|
+
|
|
20
|
+
- `scaffolder.task.create`
|
|
21
|
+
- `scaffolder.task.cancel`
|
|
22
|
+
- `scaffolder.task.read`
|
|
23
|
+
|
|
24
|
+
- Updated dependencies
|
|
25
|
+
- @backstage/core-components@0.14.8
|
|
26
|
+
- @backstage/core-compat-api@0.2.6
|
|
27
|
+
- @backstage/core-plugin-api@1.9.3
|
|
28
|
+
- @backstage/plugin-scaffolder-common@1.5.3
|
|
29
|
+
- @backstage/plugin-permission-react@0.4.23
|
|
30
|
+
- @backstage/plugin-catalog-common@1.0.24
|
|
31
|
+
- @backstage/plugin-catalog-react@1.12.1
|
|
32
|
+
- @backstage/plugin-search-common@1.2.12
|
|
33
|
+
- @backstage/plugin-search-react@1.7.12
|
|
34
|
+
- @backstage/integration-react@1.1.28
|
|
35
|
+
- @backstage/frontend-plugin-api@0.6.6
|
|
36
|
+
- @backstage/catalog-client@1.6.5
|
|
37
|
+
- @backstage/catalog-model@1.5.0
|
|
38
|
+
- @backstage/errors@1.2.4
|
|
39
|
+
- @backstage/types@1.1.1
|
|
40
|
+
|
|
3
41
|
## 1.21.0-next.3
|
|
4
42
|
|
|
5
43
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog",
|
|
3
|
-
"version": "1.21.0
|
|
3
|
+
"version": "1.21.0",
|
|
4
4
|
"description": "The Backstage plugin for browsing the Backstage catalog",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -59,18 +59,18 @@
|
|
|
59
59
|
"dependencies": {
|
|
60
60
|
"@backstage/catalog-client": "^1.6.5",
|
|
61
61
|
"@backstage/catalog-model": "^1.5.0",
|
|
62
|
-
"@backstage/core-compat-api": "^0.2.6
|
|
63
|
-
"@backstage/core-components": "^0.14.8
|
|
64
|
-
"@backstage/core-plugin-api": "^1.9.3
|
|
62
|
+
"@backstage/core-compat-api": "^0.2.6",
|
|
63
|
+
"@backstage/core-components": "^0.14.8",
|
|
64
|
+
"@backstage/core-plugin-api": "^1.9.3",
|
|
65
65
|
"@backstage/errors": "^1.2.4",
|
|
66
|
-
"@backstage/frontend-plugin-api": "^0.6.6
|
|
67
|
-
"@backstage/integration-react": "^1.1.28
|
|
68
|
-
"@backstage/plugin-catalog-common": "^1.0.24
|
|
69
|
-
"@backstage/plugin-catalog-react": "^1.12.1
|
|
70
|
-
"@backstage/plugin-permission-react": "^0.4.23
|
|
71
|
-
"@backstage/plugin-scaffolder-common": "^1.5.3
|
|
72
|
-
"@backstage/plugin-search-common": "^1.2.12
|
|
73
|
-
"@backstage/plugin-search-react": "^1.7.12
|
|
66
|
+
"@backstage/frontend-plugin-api": "^0.6.6",
|
|
67
|
+
"@backstage/integration-react": "^1.1.28",
|
|
68
|
+
"@backstage/plugin-catalog-common": "^1.0.24",
|
|
69
|
+
"@backstage/plugin-catalog-react": "^1.12.1",
|
|
70
|
+
"@backstage/plugin-permission-react": "^0.4.23",
|
|
71
|
+
"@backstage/plugin-scaffolder-common": "^1.5.3",
|
|
72
|
+
"@backstage/plugin-search-common": "^1.2.12",
|
|
73
|
+
"@backstage/plugin-search-react": "^1.7.12",
|
|
74
74
|
"@backstage/types": "^1.1.1",
|
|
75
75
|
"@material-ui/core": "^4.12.2",
|
|
76
76
|
"@material-ui/icons": "^4.9.1",
|
|
@@ -86,11 +86,11 @@
|
|
|
86
86
|
"zen-observable": "^0.10.0"
|
|
87
87
|
},
|
|
88
88
|
"devDependencies": {
|
|
89
|
-
"@backstage/cli": "^0.26.7
|
|
90
|
-
"@backstage/core-app-api": "^1.12.6
|
|
91
|
-
"@backstage/dev-utils": "^1.0.33
|
|
92
|
-
"@backstage/plugin-permission-common": "^0.7.14
|
|
93
|
-
"@backstage/test-utils": "^1.5.6
|
|
89
|
+
"@backstage/cli": "^0.26.7",
|
|
90
|
+
"@backstage/core-app-api": "^1.12.6",
|
|
91
|
+
"@backstage/dev-utils": "^1.0.33",
|
|
92
|
+
"@backstage/plugin-permission-common": "^0.7.14",
|
|
93
|
+
"@backstage/test-utils": "^1.5.6",
|
|
94
94
|
"@testing-library/dom": "^10.0.0",
|
|
95
95
|
"@testing-library/jest-dom": "^6.0.0",
|
|
96
96
|
"@testing-library/react": "^15.0.0",
|