Version Packages (next)

This commit is contained in:
github-actions[bot]
2022-10-04 12:08:16 +00:00
parent 452063b87d
commit 721c1efdb4
329 changed files with 4376 additions and 165 deletions
+29
View File
@@ -1,5 +1,34 @@
# @backstage/plugin-search-backend
## 1.1.0-next.1
### Minor Changes
- 16c853a6ed: Be less restrictive with unknown keys on query endpoint
- a799972bb1: The query received by search engines now contains a property called `pageLimit`, it specifies how many results to return per page when sending a query request to the search backend.
Example:
_Returns up to 30 results per page_
```
GET /query?pageLimit=30
```
The search backend validates the page limit and this value must not exceed 100, but it doesn't set a default value for the page limit parameter, it leaves it up to each search engine to set this, so Lunr, Postgres and Elastic Search set 25 results per page as a default value.
### Patch Changes
- Updated dependencies
- @backstage/backend-common@0.15.2-next.1
- @backstage/plugin-search-common@1.1.0-next.1
- @backstage/plugin-search-backend-node@1.0.3-next.1
- @backstage/config@1.0.3-next.1
- @backstage/errors@1.1.2-next.1
- @backstage/types@1.0.0
- @backstage/plugin-auth-node@0.2.6-next.1
- @backstage/plugin-permission-common@0.6.5-next.1
- @backstage/plugin-permission-node@0.6.6-next.1
## 1.0.3-next.0
### Patch Changes
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-search-backend",
"description": "The Backstage backend plugin that provides your backstage app with search",
"version": "1.0.3-next.0",
"version": "1.1.0-next.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",