Version Packages (next)

This commit is contained in:
github-actions[bot]
2022-03-22 12:28:03 +00:00
parent a78f15013c
commit ad955c1b1b
255 changed files with 2255 additions and 905 deletions
+16
View File
@@ -1,5 +1,21 @@
# @backstage/plugin-search-backend
## 0.5.0-next.0
### Minor Changes
- 94ccd772d4: **BREAKING**: The `authorization` property is no longer returned on search results when queried. Note: this will only result in a breaking change if you have custom code in your frontend that relies on the `authorization.resourceRef` property on documents.
### Patch Changes
- 62ee65422c: Use new `IndexableResultSet` type as return type of query method in `SearchEngine` implementation.
- Updated dependencies
- @backstage/plugin-auth-node@0.2.0-next.0
- @backstage/plugin-search-common@0.3.3-next.0
- @backstage/plugin-search-backend-node@0.5.3-next.0
- @backstage/backend-common@0.13.2-next.0
- @backstage/plugin-permission-node@0.5.6-next.0
## 0.4.8
### Patch Changes
+7 -7
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-search-backend",
"description": "The Backstage backend plugin that provides your backstage app with search",
"version": "0.4.8",
"version": "0.5.0-next.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -23,14 +23,14 @@
"clean": "backstage-cli package clean"
},
"dependencies": {
"@backstage/backend-common": "^0.13.1",
"@backstage/backend-common": "^0.13.2-next.0",
"@backstage/config": "^1.0.0",
"@backstage/errors": "^1.0.0",
"@backstage/plugin-auth-node": "^0.1.6",
"@backstage/plugin-auth-node": "^0.2.0-next.0",
"@backstage/plugin-permission-common": "^0.5.3",
"@backstage/plugin-permission-node": "^0.5.5",
"@backstage/plugin-search-backend-node": "^0.5.2",
"@backstage/plugin-search-common": "^0.3.2",
"@backstage/plugin-permission-node": "^0.5.6-next.0",
"@backstage/plugin-search-backend-node": "^0.5.3-next.0",
"@backstage/plugin-search-common": "^0.3.3-next.0",
"@backstage/types": "^1.0.0",
"@types/express": "^4.17.6",
"dataloader": "^2.0.0",
@@ -43,7 +43,7 @@
"zod": "^3.11.6"
},
"devDependencies": {
"@backstage/cli": "^0.16.0",
"@backstage/cli": "^0.16.1-next.0",
"@types/supertest": "^2.0.8",
"supertest": "^6.1.3"
},