Version Packages

This commit is contained in:
github-actions[bot]
2022-03-03 15:23:53 +00:00
parent 17e0b29a42
commit 3c8bb2854d
324 changed files with 2644 additions and 1649 deletions
+23
View File
@@ -1,5 +1,28 @@
# @backstage/plugin-search-backend-node
## 0.5.0
### Minor Changes
- 022507c860: **BREAKING**
The Backstage Search Platform's indexing process has been rewritten as a stream
pipeline in order to improve efficiency and performance on large document sets.
The concepts of `Collator` and `Decorator` have been replaced with readable and
transform object streams (respectively), as well as factory classes to
instantiate them. Accordingly, the `SearchEngine.index()` method has also been
replaced with a `getIndexer()` factory method that resolves to a writable
object stream.
Check [this upgrade guide](https://backstage.io/docs/features/search/how-to-guides#how-to-migrate-from-search-alpha-to-beta)
for further details.
### Patch Changes
- Updated dependencies
- @backstage/search-common@0.3.0
## 0.4.7
### Patch Changes
+4 -4
View File
@@ -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": "0.4.7",
"version": "0.5.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -24,15 +24,15 @@
},
"dependencies": {
"@backstage/errors": "^0.2.2",
"@backstage/search-common": "^0.2.4",
"@backstage/search-common": "^0.3.0",
"@types/lunr": "^2.3.3",
"lodash": "^4.17.21",
"lunr": "^2.3.9",
"winston": "^3.2.1"
},
"devDependencies": {
"@backstage/backend-common": "^0.11.0",
"@backstage/cli": "^0.14.1"
"@backstage/backend-common": "^0.12.0",
"@backstage/cli": "^0.15.0"
},
"files": [
"dist"