@backstage/plugin-catalog-common 0.0.0-nightly-20220303023541 → 0.0.0-nightly-20220305022735

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,6 +1,20 @@
1
1
  # @backstage/plugin-catalog-common
2
2
 
3
- ## 0.0.0-nightly-20220303023541
3
+ ## 0.0.0-nightly-20220305022735
4
+
5
+ ### Patch Changes
6
+
7
+ - b1aacbf96a: Applied the fix for the `/alpha` entry point resolution that was part of the `v0.70.1` release of Backstage.
8
+ - Updated dependencies
9
+ - @backstage/search-common@0.0.0-nightly-20220305022735
10
+
11
+ ## 0.2.1
12
+
13
+ ### Patch Changes
14
+
15
+ - Fixed runtime resolution of the `/alpha` entry point.
16
+
17
+ ## 0.2.0
4
18
 
5
19
  ### Minor Changes
6
20
 
@@ -18,8 +32,15 @@
18
32
 
19
33
  ### Patch Changes
20
34
 
35
+ - ab7b6cb7b1: **DEPRECATION**: Moved the `CatalogEntityDocument` to `@backstage/plugin-catalog-common` and deprecated the export from `@backstage/plugin-catalog-backend`.
36
+
37
+ A new `type` field has also been added to `CatalogEntityDocument` as a replacement for `componentType`, which is now deprecated. Both fields are still present and should be set to the same value in order to avoid issues with indexing.
38
+
39
+ Any search customizations need to be updated to use this new `type` field instead, including any custom frontend filters, custom frontend result components, custom search decorators, or non-default Catalog collator implementations.
40
+
21
41
  - Updated dependencies
22
- - @backstage/plugin-permission-common@0.0.0-nightly-20220303023541
42
+ - @backstage/plugin-permission-common@0.5.2
43
+ - @backstage/search-common@0.3.0
23
44
 
24
45
  ## 0.1.4
25
46
 
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-common",
3
- "version": "0.0.0-nightly-20220303023541",
4
- "main": "..",
5
- "module": "..",
3
+ "version": "0.0.0-nightly-20220305022735",
4
+ "main": "../dist/index.cjs.js",
5
+ "module": "../dist/index.esm.js",
6
6
  "types": "../dist/index.alpha.d.ts"
7
7
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-common",
3
3
  "description": "Common functionalities for the catalog plugin",
4
- "version": "0.0.0-nightly-20220303023541",
4
+ "version": "0.0.0-nightly-20220305022735",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -34,10 +34,11 @@
34
34
  "clean": "backstage-cli package clean"
35
35
  },
36
36
  "dependencies": {
37
- "@backstage/plugin-permission-common": "^0.0.0-nightly-20220303023541"
37
+ "@backstage/plugin-permission-common": "^0.5.2",
38
+ "@backstage/search-common": "^0.0.0-nightly-20220305022735"
38
39
  },
39
40
  "devDependencies": {
40
- "@backstage/cli": "^0.0.0-nightly-20220303023541"
41
+ "@backstage/cli": "^0.0.0-nightly-20220305022735"
41
42
  },
42
43
  "files": [
43
44
  "dist",