@backstage/plugin-catalog 1.2.0-next.2 → 1.2.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 +23 -0
  2. package/package.json +16 -16
package/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # @backstage/plugin-catalog
2
2
 
3
+ ## 1.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 4274844a8c: Use InfoCardVariants on custom cards variant attribute
8
+ - ceca63d149: Added the prop `NotFoundComponent` to `EntityLayout` which can be used to include a custom component when an entity is not found in the catalog
9
+
10
+ ### Patch Changes
11
+
12
+ - 051fc60258: Lighthouse was reporting this button as having invalid aria- values, as the popover doesn't exist until clicked. This adds additional labels to the button to make it valid aria
13
+ - 2bcb0a0e2b: Sidebar NAV now includes aria-label. Component AboutField now uses h2 variant instead of subtitle2 (font properties unchanged)
14
+ - 3a74e203a8: Updated search result components to support rendering content with highlighted matched terms
15
+ - Updated dependencies
16
+ - @backstage/core-components@0.9.4
17
+ - @backstage/core-plugin-api@1.0.2
18
+ - @backstage/plugin-catalog-react@1.1.0
19
+ - @backstage/integration-react@1.1.0
20
+ - @backstage/plugin-search-react@0.2.0
21
+ - @backstage/plugin-search-common@0.3.4
22
+ - @backstage/catalog-client@1.0.2
23
+ - @backstage/catalog-model@1.0.2
24
+ - @backstage/plugin-catalog-common@1.0.2
25
+
3
26
  ## 1.2.0-next.2
4
27
 
5
28
  ### 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.2.0-next.2",
4
+ "version": "1.2.0",
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
  "clean": "backstage-cli package clean"
35
35
  },
36
36
  "dependencies": {
37
- "@backstage/catalog-client": "^1.0.2-next.0",
38
- "@backstage/catalog-model": "^1.0.2-next.0",
39
- "@backstage/core-components": "^0.9.4-next.1",
40
- "@backstage/core-plugin-api": "^1.0.2-next.1",
37
+ "@backstage/catalog-client": "^1.0.2",
38
+ "@backstage/catalog-model": "^1.0.2",
39
+ "@backstage/core-components": "^0.9.4",
40
+ "@backstage/core-plugin-api": "^1.0.2",
41
41
  "@backstage/errors": "^1.0.0",
42
- "@backstage/integration-react": "^1.1.0-next.2",
43
- "@backstage/plugin-catalog-common": "^1.0.2-next.0",
44
- "@backstage/plugin-catalog-react": "^1.1.0-next.2",
45
- "@backstage/plugin-search-common": "^0.3.4-next.0",
46
- "@backstage/plugin-search-react": "^0.2.0-next.2",
42
+ "@backstage/integration-react": "^1.1.0",
43
+ "@backstage/plugin-catalog-common": "^1.0.2",
44
+ "@backstage/plugin-catalog-react": "^1.1.0",
45
+ "@backstage/plugin-search-common": "^0.3.4",
46
+ "@backstage/plugin-search-react": "^0.2.0",
47
47
  "@backstage/theme": "^0.2.15",
48
48
  "@backstage/types": "^1.0.0",
49
49
  "@material-ui/core": "^4.12.2",
@@ -61,11 +61,11 @@
61
61
  "react": "^16.13.1 || ^17.0.0"
62
62
  },
63
63
  "devDependencies": {
64
- "@backstage/cli": "^0.17.1-next.2",
65
- "@backstage/core-app-api": "^1.0.2-next.1",
66
- "@backstage/dev-utils": "^1.0.2-next.2",
67
- "@backstage/plugin-permission-react": "^0.4.1-next.1",
68
- "@backstage/test-utils": "^1.1.0-next.2",
64
+ "@backstage/cli": "^0.17.1",
65
+ "@backstage/core-app-api": "^1.0.2",
66
+ "@backstage/dev-utils": "^1.0.2",
67
+ "@backstage/plugin-permission-react": "^0.4.1",
68
+ "@backstage/test-utils": "^1.1.0",
69
69
  "@testing-library/jest-dom": "^5.10.1",
70
70
  "@testing-library/react": "^12.1.3",
71
71
  "@testing-library/user-event": "^14.0.0",
@@ -75,5 +75,5 @@
75
75
  "files": [
76
76
  "dist"
77
77
  ],
78
- "gitHead": "cfbf5762d7d91eee18999306b21d63840400ee29"
78
+ "gitHead": "96323f280ba32ee526c5b151cda42260aee927c9"
79
79
  }