@backstage/plugin-search-backend-node 0.6.1-next.1 → 0.6.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 (2) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # @backstage/plugin-search-backend-node
2
2
 
3
+ ## 0.6.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 71d3432710: Search Engines will now index documents in batches of 1000 instead of 100 (under the hood). This may result in your Backstage backend consuming slightly more memory during index runs, but should dramatically improve indexing performance for large document sets.
8
+ - 3a74e203a8: Support generating highlighted matched terms in search result data
9
+ - Updated dependencies
10
+ - @backstage/backend-tasks@0.3.1
11
+ - @backstage/plugin-search-common@0.3.4
12
+
3
13
  ## 0.6.1-next.1
4
14
 
5
15
  ### 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": "0.6.1-next.1",
4
+ "version": "0.6.1",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -23,9 +23,9 @@
23
23
  "clean": "backstage-cli package clean"
24
24
  },
25
25
  "dependencies": {
26
- "@backstage/backend-tasks": "^0.3.1-next.1",
26
+ "@backstage/backend-tasks": "^0.3.1",
27
27
  "@backstage/errors": "^1.0.0",
28
- "@backstage/plugin-search-common": "^0.3.4-next.0",
28
+ "@backstage/plugin-search-common": "^0.3.4",
29
29
  "@types/lunr": "^2.3.3",
30
30
  "lodash": "^4.17.21",
31
31
  "lunr": "^2.3.9",
@@ -34,11 +34,11 @@
34
34
  "winston": "^3.2.1"
35
35
  },
36
36
  "devDependencies": {
37
- "@backstage/backend-common": "^0.13.3-next.2",
38
- "@backstage/cli": "^0.17.1-next.2"
37
+ "@backstage/backend-common": "^0.13.3",
38
+ "@backstage/cli": "^0.17.1"
39
39
  },
40
40
  "files": [
41
41
  "dist"
42
42
  ],
43
- "gitHead": "cfbf5762d7d91eee18999306b21d63840400ee29"
43
+ "gitHead": "96323f280ba32ee526c5b151cda42260aee927c9"
44
44
  }