@backstage/plugin-search-backend-module-catalog 0.3.7-next.0 → 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.
- package/CHANGELOG.md +17 -0
- package/config.d.ts +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
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
|
+
|
|
3
20
|
## 0.3.7-next.0
|
|
4
21
|
|
|
5
22
|
### 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.7-next.
|
|
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",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@backstage/backend-test-utils": "1.7.1-next.0",
|
|
54
|
-
"@backstage/cli": "0.
|
|
54
|
+
"@backstage/cli": "0.34.0-next.1"
|
|
55
55
|
},
|
|
56
56
|
"configSchema": "config.d.ts",
|
|
57
57
|
"typesVersions": {
|