@backstage/plugin-search-backend-node 0.6.3-next.2 → 1.0.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.
- package/CHANGELOG.md +16 -0
- package/dist/index.d.ts +0 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @backstage/plugin-search-backend-node
|
|
2
2
|
|
|
3
|
+
## 1.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- 7bd7d336b2: This package has been promoted to 1.0. Read more about what it means in [New release: Backstage Search 1.0 blog](https://backstage.io/blog/2022/07/19/releasing-backstage-search-1.0)
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- a21cd43467: Exports `MissingIndexError` that can be used by the search engines for better error handling when missing index.
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
- @backstage/backend-common@0.14.1
|
|
14
|
+
- @backstage/plugin-search-common@1.0.0
|
|
15
|
+
- @backstage/plugin-permission-common@0.6.3
|
|
16
|
+
- @backstage/backend-tasks@0.3.3
|
|
17
|
+
- @backstage/errors@1.1.0
|
|
18
|
+
|
|
3
19
|
## 0.6.3-next.2
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
2
|
import { SearchEngine, DocumentCollatorFactory, DocumentDecoratorFactory, DocumentTypeInfo, IndexableDocument, SearchQuery, QueryTranslator, IndexableResultSet } from '@backstage/plugin-search-common';
|
|
3
|
-
export { SearchEngine } from '@backstage/plugin-search-common';
|
|
4
3
|
import { Logger } from 'winston';
|
|
5
4
|
import { TaskFunction, TaskRunner } from '@backstage/backend-tasks';
|
|
6
5
|
import { UrlReader } from '@backstage/backend-common';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-search-backend-node",
|
|
3
3
|
"description": "A library for Backstage backend plugins that want to interact with the search backend plugin",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "1.0.0",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -23,12 +23,12 @@
|
|
|
23
23
|
"clean": "backstage-cli package clean"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@backstage/backend-common": "^0.14.1
|
|
27
|
-
"@backstage/backend-tasks": "^0.3.3
|
|
26
|
+
"@backstage/backend-common": "^0.14.1",
|
|
27
|
+
"@backstage/backend-tasks": "^0.3.3",
|
|
28
28
|
"@backstage/config": "^1.0.1",
|
|
29
|
-
"@backstage/errors": "^1.1.0
|
|
30
|
-
"@backstage/plugin-permission-common": "^0.6.3
|
|
31
|
-
"@backstage/plugin-search-common": "^0.
|
|
29
|
+
"@backstage/errors": "^1.1.0",
|
|
30
|
+
"@backstage/plugin-permission-common": "^0.6.3",
|
|
31
|
+
"@backstage/plugin-search-common": "^1.0.0",
|
|
32
32
|
"@types/lunr": "^2.3.3",
|
|
33
33
|
"lodash": "^4.17.21",
|
|
34
34
|
"lunr": "^2.3.9",
|
|
@@ -38,12 +38,12 @@
|
|
|
38
38
|
"winston": "^3.2.1"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@backstage/backend-common": "^0.14.1
|
|
42
|
-
"@backstage/cli": "^0.18.0
|
|
41
|
+
"@backstage/backend-common": "^0.14.1",
|
|
42
|
+
"@backstage/cli": "^0.18.0",
|
|
43
43
|
"@types/ndjson": "^2.0.1"
|
|
44
44
|
},
|
|
45
45
|
"files": [
|
|
46
46
|
"dist"
|
|
47
47
|
],
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "999878d8f1ae30f6a15925816af2016cb9d717a1"
|
|
49
49
|
}
|