Version Packages
This commit is contained in:
@@ -1,5 +1,36 @@
|
||||
# @backstage/plugin-search-backend-node
|
||||
|
||||
## 1.1.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 29ebc43a0b: numberOfResults is now provided alongside the query result
|
||||
- dff9843718: The search engine now better handles the case when it receives 0 documents at index-time. Prior to this change, the indexer would replace any existing index with an empty index, effectively deleting it. Now instead, a warning is logged, and any existing index is left alone (preserving the index from the last successful indexing attempt).
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- a962ce0551: Wait for indexer initialization before finalizing indexing.
|
||||
- de8a975911: Changed to use native `AbortController` and `AbortSignal` from Node.js, instead
|
||||
of the one from `node-abort-controller`. This is possible now that the minimum
|
||||
supported Node.js version of the project is 16.
|
||||
|
||||
Note that their interfaces are very slightly different, but typically not in a
|
||||
way that matters to consumers. If you see any typescript errors as a direct
|
||||
result from this, they are compatible with each other in the ways that we
|
||||
interact with them, and should be possible to type-cast across without ill
|
||||
effects.
|
||||
|
||||
- 683ced83f6: Fixed a bug that could cause a `max listeners exceeded warning` to be logged when more than 10 collators were running simultaneously.
|
||||
- 81b1e7b0fe: Updated indexer and decorator base classes to take advantage of features introduced in Node.js v16; be sure you are running a [supported version of Node.js](https://backstage.io/docs/releases/v1.8.0#node-16-and-18).
|
||||
- 54c5836f7a: Use of `TestPipeline.withSubject()` is now deprecated. Instead, use the `fromCollator`, `fromDecorator`, or `fromIndexer` static methods to instantiate a test pipeline. You may also use the class' `withCollator`, `withDecorator`, and `withIndexer` instance methods to build test pipelines that consist of multiple test subjects.
|
||||
- Updated dependencies
|
||||
- @backstage/backend-common@0.17.0
|
||||
- @backstage/backend-tasks@0.4.0
|
||||
- @backstage/plugin-permission-common@0.7.2
|
||||
- @backstage/errors@1.1.4
|
||||
- @backstage/plugin-search-common@1.2.0
|
||||
- @backstage/config@1.0.5
|
||||
|
||||
## 1.1.0-next.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/plugin-search-backend-node",
|
||||
"description": "A library for Backstage backend plugins that want to interact with the search backend plugin",
|
||||
"version": "1.1.0-next.3",
|
||||
"version": "1.1.0",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
|
||||
Reference in New Issue
Block a user