Version Packages

This commit is contained in:
github-actions[bot]
2022-06-14 09:12:05 +00:00
parent c8c5115e58
commit 2e2a82c9d7
431 changed files with 5900 additions and 2965 deletions
+18
View File
@@ -1,5 +1,23 @@
# @backstage/plugin-search-backend-node
## 0.6.2
### Patch Changes
- e7794a0aaa: propagate indexing errors so they don't appear successful to the task scheduler
- 3bb25a9acc: Introducing a `NewlineDelimitedJsonCollatorFactory`, which can be used to create search indices from newline delimited JSON files stored in external storage readable via a configured `UrlReader` instance.
This is useful if you have an independent process periodically generating `*.ndjson` files consisting of `IndexableDocument` objects and want to be able to generate a fresh index based on the latest version of such a file.
- 3bb25a9acc: Fixed a bug that prevented `TestPipeline.withSubject` from identifying valid `Readable` subjects that were technically transform streams.
- 915700f64f: The provided search engine now adds a pagination-aware `rank` value to all results.
- 7d8acfc32e: Replaced all `@beta` exports with `@public` exports
- Updated dependencies
- @backstage/plugin-search-common@0.3.5
- @backstage/backend-tasks@0.3.2
- @backstage/backend-common@0.14.0
- @backstage/plugin-permission-common@0.6.2
## 0.6.2-next.2
### Patch Changes
+7 -7
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.6.2-next.2",
"version": "0.6.2",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -23,12 +23,12 @@
"clean": "backstage-cli package clean"
},
"dependencies": {
"@backstage/backend-common": "^0.14.0-next.2",
"@backstage/backend-tasks": "^0.3.2-next.2",
"@backstage/backend-common": "^0.14.0",
"@backstage/backend-tasks": "^0.3.2",
"@backstage/config": "^1.0.1",
"@backstage/errors": "^1.0.0",
"@backstage/plugin-permission-common": "^0.6.2-next.0",
"@backstage/plugin-search-common": "^0.3.5-next.1",
"@backstage/plugin-permission-common": "^0.6.2",
"@backstage/plugin-search-common": "^0.3.5",
"@types/lunr": "^2.3.3",
"lodash": "^4.17.21",
"lunr": "^2.3.9",
@@ -38,8 +38,8 @@
"winston": "^3.2.1"
},
"devDependencies": {
"@backstage/backend-common": "^0.14.0-next.2",
"@backstage/cli": "^0.17.2-next.2",
"@backstage/backend-common": "^0.14.0",
"@backstage/cli": "^0.17.2",
"@types/ndjson": "^2.0.1"
},
"files": [