@backstage/plugin-catalog 1.11.0-next.2 → 1.11.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +41 -0
  2. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -1,5 +1,46 @@
1
1
  # @backstage/plugin-catalog
2
2
 
3
+ ## 1.11.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 2258dcae970: Added an entity namespace filter and column on the default catalog page.
8
+
9
+ If you have a custom version of the catalog page, you can add this filter in your CatalogPage code:
10
+
11
+ ```ts
12
+ <CatalogFilterLayout>
13
+ <CatalogFilterLayout.Filters>
14
+ <EntityTypePicker />
15
+ <UserListPicker initialFilter={initiallySelectedFilter} />
16
+ <EntityTagPicker />
17
+ /* if you want namespace picker */
18
+ <EntityNamespacePicker />
19
+ </CatalogFilterLayout.Filters>
20
+ <CatalogFilterLayout.Content>
21
+ <CatalogTable columns={columns} actions={actions} />
22
+ </CatalogFilterLayout.Content>
23
+ </CatalogFilterLayout>
24
+ ```
25
+
26
+ The namespace column can be added using `createNamespaceColumn();`. This is only needed if you customized the columns for CatalogTable.
27
+
28
+ ### Patch Changes
29
+
30
+ - Updated dependencies
31
+ - @backstage/theme@0.3.0
32
+ - @backstage/plugin-catalog-react@1.6.0
33
+ - @backstage/plugin-search-react@1.6.0
34
+ - @backstage/core-components@0.13.1
35
+ - @backstage/integration-react@1.1.13
36
+ - @backstage/catalog-client@1.4.1
37
+ - @backstage/catalog-model@1.3.0
38
+ - @backstage/core-plugin-api@1.5.1
39
+ - @backstage/errors@1.1.5
40
+ - @backstage/types@1.0.2
41
+ - @backstage/plugin-catalog-common@1.0.13
42
+ - @backstage/plugin-search-common@1.2.3
43
+
3
44
  ## 1.11.0-next.2
4
45
 
5
46
  ### 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.11.0-next.2",
4
+ "version": "1.11.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
  "dependencies": {
35
35
  "@backstage/catalog-client": "^1.4.1",
36
36
  "@backstage/catalog-model": "^1.3.0",
37
- "@backstage/core-components": "^0.13.1-next.1",
37
+ "@backstage/core-components": "^0.13.1",
38
38
  "@backstage/core-plugin-api": "^1.5.1",
39
39
  "@backstage/errors": "^1.1.5",
40
- "@backstage/integration-react": "^1.1.13-next.2",
40
+ "@backstage/integration-react": "^1.1.13",
41
41
  "@backstage/plugin-catalog-common": "^1.0.13",
42
- "@backstage/plugin-catalog-react": "^1.6.0-next.2",
42
+ "@backstage/plugin-catalog-react": "^1.6.0",
43
43
  "@backstage/plugin-search-common": "^1.2.3",
44
- "@backstage/plugin-search-react": "^1.6.0-next.2",
45
- "@backstage/theme": "^0.3.0-next.0",
44
+ "@backstage/plugin-search-react": "^1.6.0",
45
+ "@backstage/theme": "^0.3.0",
46
46
  "@backstage/types": "^1.0.2",
47
47
  "@material-ui/core": "^4.12.2",
48
48
  "@material-ui/icons": "^4.9.1",
@@ -61,11 +61,11 @@
61
61
  "react-router-dom": "6.0.0-beta.0 || ^6.3.0"
62
62
  },
63
63
  "devDependencies": {
64
- "@backstage/cli": "^0.22.7-next.0",
65
- "@backstage/core-app-api": "^1.8.0-next.1",
66
- "@backstage/dev-utils": "^1.0.15-next.2",
64
+ "@backstage/cli": "^0.22.7",
65
+ "@backstage/core-app-api": "^1.8.0",
66
+ "@backstage/dev-utils": "^1.0.15",
67
67
  "@backstage/plugin-permission-react": "^0.4.12",
68
- "@backstage/test-utils": "^1.3.1-next.2",
68
+ "@backstage/test-utils": "^1.3.1",
69
69
  "@testing-library/dom": "^8.0.0",
70
70
  "@testing-library/jest-dom": "^5.10.1",
71
71
  "@testing-library/react": "^12.1.3",