@backstage/plugin-catalog 1.1.0-next.3 → 1.1.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 +22 -0
- package/package.json +15 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @backstage/plugin-catalog
|
|
2
2
|
|
|
3
|
+
## 1.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- bdc61b4002: Expose 'initalFilter' through initialKind prop on Catalog Page.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 24254fd433: build(deps): bump `@testing-library/user-event` from 13.5.0 to 14.0.0
|
|
12
|
+
- 2a3cac4c60: Corrected replacements for depreciated FilteredEntityLayout items
|
|
13
|
+
- f6d2694092: Added tableOptions property to CatalogTable and DefaultCatalogPage to support customization of the Catalog Table. Related issue #10453
|
|
14
|
+
- 5d5fdbe541: Columns in CatalogTable now change depending on the entity kind, ensuring only relevant columns are displayed.
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
- @backstage/plugin-catalog-react@1.0.1
|
|
17
|
+
- @backstage/catalog-model@1.0.1
|
|
18
|
+
- @backstage/core-components@0.9.3
|
|
19
|
+
- @backstage/core-plugin-api@1.0.1
|
|
20
|
+
- @backstage/integration-react@1.0.1
|
|
21
|
+
- @backstage/plugin-search-common@0.3.3
|
|
22
|
+
- @backstage/plugin-catalog-common@1.0.1
|
|
23
|
+
- @backstage/catalog-client@1.0.1
|
|
24
|
+
|
|
3
25
|
## 1.1.0-next.3
|
|
4
26
|
|
|
5
27
|
### 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.1.0
|
|
4
|
+
"version": "1.1.0",
|
|
5
5
|
"main": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -34,15 +34,15 @@
|
|
|
34
34
|
"clean": "backstage-cli package clean"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@backstage/catalog-client": "^1.0.1
|
|
38
|
-
"@backstage/catalog-model": "^1.0.1
|
|
39
|
-
"@backstage/core-components": "^0.9.3
|
|
40
|
-
"@backstage/core-plugin-api": "^1.0.1
|
|
37
|
+
"@backstage/catalog-client": "^1.0.1",
|
|
38
|
+
"@backstage/catalog-model": "^1.0.1",
|
|
39
|
+
"@backstage/core-components": "^0.9.3",
|
|
40
|
+
"@backstage/core-plugin-api": "^1.0.1",
|
|
41
41
|
"@backstage/errors": "^1.0.0",
|
|
42
|
-
"@backstage/integration-react": "^1.0.1
|
|
43
|
-
"@backstage/plugin-catalog-common": "^1.0.1
|
|
44
|
-
"@backstage/plugin-catalog-react": "^1.0.1
|
|
45
|
-
"@backstage/plugin-search-common": "^0.3.3
|
|
42
|
+
"@backstage/integration-react": "^1.0.1",
|
|
43
|
+
"@backstage/plugin-catalog-common": "^1.0.1",
|
|
44
|
+
"@backstage/plugin-catalog-react": "^1.0.1",
|
|
45
|
+
"@backstage/plugin-search-common": "^0.3.3",
|
|
46
46
|
"@backstage/theme": "^0.2.15",
|
|
47
47
|
"@backstage/types": "^1.0.0",
|
|
48
48
|
"@material-ui/core": "^4.12.2",
|
|
@@ -60,11 +60,11 @@
|
|
|
60
60
|
"react": "^16.13.1 || ^17.0.0"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
|
-
"@backstage/cli": "^0.17.0
|
|
64
|
-
"@backstage/core-app-api": "^1.0.1
|
|
65
|
-
"@backstage/dev-utils": "^1.0.1
|
|
66
|
-
"@backstage/plugin-permission-react": "^0.4.0
|
|
67
|
-
"@backstage/test-utils": "^1.0.1
|
|
63
|
+
"@backstage/cli": "^0.17.0",
|
|
64
|
+
"@backstage/core-app-api": "^1.0.1",
|
|
65
|
+
"@backstage/dev-utils": "^1.0.1",
|
|
66
|
+
"@backstage/plugin-permission-react": "^0.4.0",
|
|
67
|
+
"@backstage/test-utils": "^1.0.1",
|
|
68
68
|
"@testing-library/jest-dom": "^5.10.1",
|
|
69
69
|
"@testing-library/react": "^12.1.3",
|
|
70
70
|
"@testing-library/user-event": "^14.0.0",
|
|
@@ -74,5 +74,5 @@
|
|
|
74
74
|
"files": [
|
|
75
75
|
"dist"
|
|
76
76
|
],
|
|
77
|
-
"gitHead": "
|
|
77
|
+
"gitHead": "e0e44c433319711c2fb8b175db411a621f7aaec2"
|
|
78
78
|
}
|