@backstage/plugin-search-backend-node 1.0.2-next.1 → 1.0.2
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 +25 -0
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# @backstage/plugin-search-backend-node
|
|
2
2
|
|
|
3
|
+
## 1.0.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 3f739be9d9: Minor API signatures cleanup
|
|
8
|
+
- a1124adf5e: Fixed bug in LunrSearchEngine where stopwords in title is causing in-doc search not working
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
- @backstage/backend-common@0.15.1
|
|
11
|
+
- @backstage/backend-tasks@0.3.5
|
|
12
|
+
- @backstage/config@1.0.2
|
|
13
|
+
- @backstage/errors@1.1.1
|
|
14
|
+
- @backstage/plugin-permission-common@0.6.4
|
|
15
|
+
- @backstage/plugin-search-common@1.0.1
|
|
16
|
+
|
|
17
|
+
## 1.0.2-next.2
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies
|
|
22
|
+
- @backstage/config@1.0.2-next.0
|
|
23
|
+
- @backstage/errors@1.1.1-next.0
|
|
24
|
+
- @backstage/plugin-permission-common@0.6.4-next.2
|
|
25
|
+
- @backstage/backend-common@0.15.1-next.3
|
|
26
|
+
- @backstage/backend-tasks@0.3.5-next.1
|
|
27
|
+
|
|
3
28
|
## 1.0.2-next.1
|
|
4
29
|
|
|
5
30
|
### Patch Changes
|
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": "1.0.2
|
|
4
|
+
"version": "1.0.2",
|
|
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.15.1
|
|
27
|
-
"@backstage/backend-tasks": "^0.3.5
|
|
28
|
-
"@backstage/config": "^1.0.
|
|
29
|
-
"@backstage/errors": "^1.1.
|
|
30
|
-
"@backstage/plugin-permission-common": "^0.6.4
|
|
31
|
-
"@backstage/plugin-search-common": "^1.0.1
|
|
26
|
+
"@backstage/backend-common": "^0.15.1",
|
|
27
|
+
"@backstage/backend-tasks": "^0.3.5",
|
|
28
|
+
"@backstage/config": "^1.0.2",
|
|
29
|
+
"@backstage/errors": "^1.1.1",
|
|
30
|
+
"@backstage/plugin-permission-common": "^0.6.4",
|
|
31
|
+
"@backstage/plugin-search-common": "^1.0.1",
|
|
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.15.1
|
|
42
|
-
"@backstage/cli": "^0.19.0
|
|
41
|
+
"@backstage/backend-common": "^0.15.1",
|
|
42
|
+
"@backstage/cli": "^0.19.0",
|
|
43
43
|
"@types/ndjson": "^2.0.1"
|
|
44
44
|
},
|
|
45
45
|
"files": [
|
|
46
46
|
"dist"
|
|
47
47
|
],
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "25b94e63455f1fb170506f9e84e3f430f4b79406"
|
|
49
49
|
}
|