@backstage/plugin-search-backend-module-catalog 0.3.6 → 0.3.7-next.1

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 (3) hide show
  1. package/CHANGELOG.md +33 -0
  2. package/config.d.ts +1 -1
  3. package/package.json +13 -13
package/CHANGELOG.md CHANGED
@@ -1,5 +1,38 @@
1
1
  # @backstage/plugin-search-backend-module-catalog
2
2
 
3
+ ## 0.3.7-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - d9bda0f: Allow filter to be an array in config schema
8
+ - Updated dependencies
9
+ - @backstage/backend-plugin-api@1.4.2-next.0
10
+ - @backstage/catalog-client@1.11.0-next.0
11
+ - @backstage/catalog-model@1.7.5
12
+ - @backstage/config@1.3.3
13
+ - @backstage/errors@1.2.7
14
+ - @backstage/plugin-catalog-common@1.1.5
15
+ - @backstage/plugin-catalog-node@1.18.0-next.0
16
+ - @backstage/plugin-permission-common@0.9.1
17
+ - @backstage/plugin-search-backend-node@1.3.14-next.0
18
+ - @backstage/plugin-search-common@1.2.19
19
+
20
+ ## 0.3.7-next.0
21
+
22
+ ### Patch Changes
23
+
24
+ - Updated dependencies
25
+ - @backstage/catalog-client@1.11.0-next.0
26
+ - @backstage/plugin-catalog-node@1.18.0-next.0
27
+ - @backstage/plugin-search-backend-node@1.3.14-next.0
28
+ - @backstage/backend-plugin-api@1.4.2-next.0
29
+ - @backstage/catalog-model@1.7.5
30
+ - @backstage/config@1.3.3
31
+ - @backstage/errors@1.2.7
32
+ - @backstage/plugin-catalog-common@1.1.5
33
+ - @backstage/plugin-permission-common@0.9.1
34
+ - @backstage/plugin-search-common@1.2.19
35
+
3
36
  ## 0.3.6
4
37
 
5
38
  ### Patch Changes
package/config.d.ts CHANGED
@@ -36,7 +36,7 @@ export interface Config {
36
36
  *
37
37
  * Defaults to no filter, ie indexing all entities.
38
38
  */
39
- filter?: object;
39
+ filter?: object | object[];
40
40
  /**
41
41
  * The number of entities to process at a time. Keep this at a
42
42
  * reasonable number to avoid overloading either the catalog or the
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-search-backend-module-catalog",
3
- "version": "0.3.6",
3
+ "version": "0.3.7-next.1",
4
4
  "description": "A module for the search backend that exports catalog modules",
5
5
  "backstage": {
6
6
  "role": "backend-plugin-module",
@@ -38,20 +38,20 @@
38
38
  "test": "backstage-cli package test"
39
39
  },
40
40
  "dependencies": {
41
- "@backstage/backend-plugin-api": "^1.4.1",
42
- "@backstage/catalog-client": "^1.10.2",
43
- "@backstage/catalog-model": "^1.7.5",
44
- "@backstage/config": "^1.3.3",
45
- "@backstage/errors": "^1.2.7",
46
- "@backstage/plugin-catalog-common": "^1.1.5",
47
- "@backstage/plugin-catalog-node": "^1.17.2",
48
- "@backstage/plugin-permission-common": "^0.9.1",
49
- "@backstage/plugin-search-backend-node": "^1.3.13",
50
- "@backstage/plugin-search-common": "^1.2.19"
41
+ "@backstage/backend-plugin-api": "1.4.2-next.0",
42
+ "@backstage/catalog-client": "1.11.0-next.0",
43
+ "@backstage/catalog-model": "1.7.5",
44
+ "@backstage/config": "1.3.3",
45
+ "@backstage/errors": "1.2.7",
46
+ "@backstage/plugin-catalog-common": "1.1.5",
47
+ "@backstage/plugin-catalog-node": "1.18.0-next.0",
48
+ "@backstage/plugin-permission-common": "0.9.1",
49
+ "@backstage/plugin-search-backend-node": "1.3.14-next.0",
50
+ "@backstage/plugin-search-common": "1.2.19"
51
51
  },
52
52
  "devDependencies": {
53
- "@backstage/backend-test-utils": "^1.7.0",
54
- "@backstage/cli": "^0.33.1"
53
+ "@backstage/backend-test-utils": "1.7.1-next.0",
54
+ "@backstage/cli": "0.34.0-next.1"
55
55
  },
56
56
  "configSchema": "config.d.ts",
57
57
  "typesVersions": {