@backstage/plugin-catalog-react 1.1.2-next.3 → 1.1.2

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 CHANGED
@@ -1,5 +1,61 @@
1
1
  # @backstage/plugin-catalog-react
2
2
 
3
+ ## 1.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 72622d9143: Updated dependency `yaml` to `^2.0.0`.
8
+ - be26d95141: Added new `EntityProcessingStatusPicker` that will filter for entities with orphans and/or errors.
9
+
10
+ If you are using the default Catalog page this picker will be added automatically. For those who have customized their Catalog page you'll need to add this manually by doing something like this:
11
+
12
+ ```diff
13
+ ...
14
+ import {
15
+ CatalogFilterLayout,
16
+ EntityTypePicker,
17
+ UserListPicker,
18
+ EntityTagPicker
19
+ + EntityProcessingStatusPicker,
20
+ } from '@backstage/plugin-catalog-react';
21
+ ...
22
+ export const CustomCatalogPage = ({
23
+ columns,
24
+ actions,
25
+ initiallySelectedFilter = 'owned',
26
+ }: CatalogPageProps) => {
27
+ return (
28
+ ...
29
+ <EntityListProvider>
30
+ <CatalogFilterLayout>
31
+ <CatalogFilterLayout.Filters>
32
+ <EntityKindPicker initialFilter="component" hidden />
33
+ <EntityTypePicker />
34
+ <UserListPicker initialFilter={initiallySelectedFilter} />
35
+ <EntityTagPicker />
36
+ + <EntityProcessingStatusPicker />
37
+ <CatalogFilterLayout.Filters>
38
+ <CatalogFilterLayout.Content>
39
+ <CatalogTable columns={columns} actions={actions} />
40
+ </CatalogFilterLayout.Content>
41
+ </CatalogFilterLayout>
42
+ </EntityListProvider>
43
+ ...
44
+ };
45
+ ```
46
+
47
+ - Updated dependencies
48
+ - @backstage/core-components@0.10.0
49
+ - @backstage/catalog-model@1.1.0
50
+ - @backstage/core-plugin-api@1.0.4
51
+ - @backstage/integration@1.2.2
52
+ - @backstage/catalog-client@1.0.4
53
+ - @backstage/plugin-permission-common@0.6.3
54
+ - @backstage/theme@0.2.16
55
+ - @backstage/errors@1.1.0
56
+ - @backstage/plugin-catalog-common@1.0.4
57
+ - @backstage/plugin-permission-react@0.4.3
58
+
3
59
  ## 1.1.2-next.3
4
60
 
5
61
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-react",
3
- "version": "1.1.2-next.3",
3
+ "version": "1.1.2",
4
4
  "main": "../dist/index.esm.js",
5
5
  "types": "../dist/index.alpha.d.ts"
6
6
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-react",
3
3
  "description": "A frontend library that helps other Backstage plugins interact with the catalog",
4
- "version": "1.1.2-next.3",
4
+ "version": "1.1.2",
5
5
  "main": "dist/index.esm.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -34,16 +34,16 @@
34
34
  "start": "backstage-cli package start"
35
35
  },
36
36
  "dependencies": {
37
- "@backstage/catalog-client": "^1.0.4-next.2",
38
- "@backstage/catalog-model": "^1.1.0-next.3",
39
- "@backstage/core-components": "^0.10.0-next.3",
40
- "@backstage/core-plugin-api": "^1.0.4-next.0",
41
- "@backstage/errors": "^1.1.0-next.0",
42
- "@backstage/integration": "^1.2.2-next.3",
43
- "@backstage/plugin-catalog-common": "^1.0.4-next.0",
44
- "@backstage/plugin-permission-common": "^0.6.3-next.1",
45
- "@backstage/plugin-permission-react": "^0.4.3-next.1",
46
- "@backstage/theme": "^0.2.16-next.1",
37
+ "@backstage/catalog-client": "^1.0.4",
38
+ "@backstage/catalog-model": "^1.1.0",
39
+ "@backstage/core-components": "^0.10.0",
40
+ "@backstage/core-plugin-api": "^1.0.4",
41
+ "@backstage/errors": "^1.1.0",
42
+ "@backstage/integration": "^1.2.2",
43
+ "@backstage/plugin-catalog-common": "^1.0.4",
44
+ "@backstage/plugin-permission-common": "^0.6.3",
45
+ "@backstage/plugin-permission-react": "^0.4.3",
46
+ "@backstage/theme": "^0.2.16",
47
47
  "@backstage/types": "^1.0.0",
48
48
  "@backstage/version-bridge": "^1.0.1",
49
49
  "@material-ui/core": "^4.12.2",
@@ -63,11 +63,11 @@
63
63
  "react": "^16.13.1 || ^17.0.0"
64
64
  },
65
65
  "devDependencies": {
66
- "@backstage/cli": "^0.18.0-next.3",
67
- "@backstage/core-app-api": "^1.0.4-next.1",
68
- "@backstage/plugin-catalog-common": "^1.0.4-next.0",
69
- "@backstage/plugin-scaffolder-common": "^1.1.2-next.0",
70
- "@backstage/test-utils": "^1.1.2-next.2",
66
+ "@backstage/cli": "^0.18.0",
67
+ "@backstage/core-app-api": "^1.0.4",
68
+ "@backstage/plugin-catalog-common": "^1.0.4",
69
+ "@backstage/plugin-scaffolder-common": "^1.1.2",
70
+ "@backstage/test-utils": "^1.1.2",
71
71
  "@testing-library/jest-dom": "^5.10.1",
72
72
  "@testing-library/react": "^12.1.3",
73
73
  "@testing-library/react-hooks": "^8.0.0",
@@ -82,5 +82,5 @@
82
82
  "dist",
83
83
  "alpha"
84
84
  ],
85
- "gitHead": "291b3a07233061266d9f3ce431345bf19fa4bbd5"
85
+ "gitHead": "999878d8f1ae30f6a15925816af2016cb9d717a1"
86
86
  }