@backstage/plugin-catalog 1.24.0-next.2 → 1.24.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 +28 -0
- package/alpha/package.json +1 -1
- package/package.json +22 -22
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @backstage/plugin-catalog
|
|
2
2
|
|
|
3
|
+
## 1.24.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 71f9f0c: Updated default columns for location entities to remove description and tags from the catalog table view.
|
|
8
|
+
- cec8e8c: Adding negation keyword for entity filtering
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- e969dc7: Move `@types/react` to a peer dependency.
|
|
13
|
+
- 46b5a20: Empty states updated with external link icon for learn more links
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
- @backstage/core-components@0.15.1
|
|
16
|
+
- @backstage/frontend-plugin-api@0.9.0
|
|
17
|
+
- @backstage/integration-react@1.2.0
|
|
18
|
+
- @backstage/core-compat-api@0.3.1
|
|
19
|
+
- @backstage/core-plugin-api@1.10.0
|
|
20
|
+
- @backstage/plugin-permission-react@0.4.27
|
|
21
|
+
- @backstage/plugin-catalog-react@1.14.0
|
|
22
|
+
- @backstage/plugin-search-react@1.8.1
|
|
23
|
+
- @backstage/catalog-client@1.7.1
|
|
24
|
+
- @backstage/catalog-model@1.7.0
|
|
25
|
+
- @backstage/errors@1.2.4
|
|
26
|
+
- @backstage/types@1.1.1
|
|
27
|
+
- @backstage/plugin-catalog-common@1.1.0
|
|
28
|
+
- @backstage/plugin-scaffolder-common@1.5.6
|
|
29
|
+
- @backstage/plugin-search-common@1.2.14
|
|
30
|
+
|
|
3
31
|
## 1.24.0-next.2
|
|
4
32
|
|
|
5
33
|
### Minor 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.24.0
|
|
3
|
+
"version": "1.24.0",
|
|
4
4
|
"description": "The Backstage plugin for browsing the Backstage catalog",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -58,21 +58,21 @@
|
|
|
58
58
|
"test": "backstage-cli package test"
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
|
-
"@backstage/catalog-client": "1.7.1
|
|
62
|
-
"@backstage/catalog-model": "1.7.0",
|
|
63
|
-
"@backstage/core-compat-api": "0.3.1
|
|
64
|
-
"@backstage/core-components": "0.15.1
|
|
65
|
-
"@backstage/core-plugin-api": "1.10.0
|
|
66
|
-
"@backstage/errors": "1.2.4",
|
|
67
|
-
"@backstage/frontend-plugin-api": "0.9.0
|
|
68
|
-
"@backstage/integration-react": "1.2.0
|
|
69
|
-
"@backstage/plugin-catalog-common": "1.1.0",
|
|
70
|
-
"@backstage/plugin-catalog-react": "1.14.0
|
|
71
|
-
"@backstage/plugin-permission-react": "0.4.27
|
|
72
|
-
"@backstage/plugin-scaffolder-common": "1.5.6",
|
|
73
|
-
"@backstage/plugin-search-common": "1.2.14",
|
|
74
|
-
"@backstage/plugin-search-react": "1.8.1
|
|
75
|
-
"@backstage/types": "1.1.1",
|
|
61
|
+
"@backstage/catalog-client": "^1.7.1",
|
|
62
|
+
"@backstage/catalog-model": "^1.7.0",
|
|
63
|
+
"@backstage/core-compat-api": "^0.3.1",
|
|
64
|
+
"@backstage/core-components": "^0.15.1",
|
|
65
|
+
"@backstage/core-plugin-api": "^1.10.0",
|
|
66
|
+
"@backstage/errors": "^1.2.4",
|
|
67
|
+
"@backstage/frontend-plugin-api": "^0.9.0",
|
|
68
|
+
"@backstage/integration-react": "^1.2.0",
|
|
69
|
+
"@backstage/plugin-catalog-common": "^1.1.0",
|
|
70
|
+
"@backstage/plugin-catalog-react": "^1.14.0",
|
|
71
|
+
"@backstage/plugin-permission-react": "^0.4.27",
|
|
72
|
+
"@backstage/plugin-scaffolder-common": "^1.5.6",
|
|
73
|
+
"@backstage/plugin-search-common": "^1.2.14",
|
|
74
|
+
"@backstage/plugin-search-react": "^1.8.1",
|
|
75
|
+
"@backstage/types": "^1.1.1",
|
|
76
76
|
"@material-ui/core": "^4.12.2",
|
|
77
77
|
"@material-ui/icons": "^4.9.1",
|
|
78
78
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
@@ -86,12 +86,12 @@
|
|
|
86
86
|
"zen-observable": "^0.10.0"
|
|
87
87
|
},
|
|
88
88
|
"devDependencies": {
|
|
89
|
-
"@backstage/cli": "0.28.0
|
|
90
|
-
"@backstage/core-app-api": "1.15.1
|
|
91
|
-
"@backstage/dev-utils": "1.1.2
|
|
92
|
-
"@backstage/frontend-test-utils": "0.2.1
|
|
93
|
-
"@backstage/plugin-permission-common": "0.8.1",
|
|
94
|
-
"@backstage/test-utils": "1.
|
|
89
|
+
"@backstage/cli": "^0.28.0",
|
|
90
|
+
"@backstage/core-app-api": "^1.15.1",
|
|
91
|
+
"@backstage/dev-utils": "^1.1.2",
|
|
92
|
+
"@backstage/frontend-test-utils": "^0.2.1",
|
|
93
|
+
"@backstage/plugin-permission-common": "^0.8.1",
|
|
94
|
+
"@backstage/test-utils": "^1.7.0",
|
|
95
95
|
"@testing-library/dom": "^10.0.0",
|
|
96
96
|
"@testing-library/jest-dom": "^6.0.0",
|
|
97
97
|
"@testing-library/react": "^16.0.0",
|