@backstage/plugin-search-backend-module-pg 0.4.1-next.1 → 0.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # @backstage/plugin-search-backend-module-pg
2
2
 
3
+ ## 0.4.1
4
+
5
+ ### Patch Changes
6
+
7
+ - a799972bb1: The search engine has been updated to take advantage of the `pageLimit` property on search queries. If none is provided, the search engine will continue to use its default value of 25 results per page.
8
+ - Updated dependencies
9
+ - @backstage/backend-common@0.15.2
10
+ - @backstage/plugin-search-common@1.1.0
11
+ - @backstage/plugin-search-backend-node@1.0.3
12
+ - @backstage/config@1.0.3
13
+
14
+ ## 0.4.1-next.2
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies
19
+ - @backstage/backend-common@0.15.2-next.2
20
+ - @backstage/plugin-search-backend-node@1.0.3-next.2
21
+ - @backstage/plugin-search-common@1.1.0-next.2
22
+ - @backstage/config@1.0.3-next.2
23
+
3
24
  ## 0.4.1-next.1
4
25
 
5
26
  ### Patch Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-search-backend-module-pg",
3
3
  "description": "A module for the search backend that implements search using PostgreSQL",
4
- "version": "0.4.1-next.1",
4
+ "version": "0.4.1",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -23,17 +23,17 @@
23
23
  "clean": "backstage-cli package clean"
24
24
  },
25
25
  "dependencies": {
26
- "@backstage/backend-common": "^0.15.2-next.1",
27
- "@backstage/config": "^1.0.3-next.1",
28
- "@backstage/plugin-search-backend-node": "^1.0.3-next.1",
29
- "@backstage/plugin-search-common": "^1.1.0-next.1",
26
+ "@backstage/backend-common": "^0.15.2",
27
+ "@backstage/config": "^1.0.3",
28
+ "@backstage/plugin-search-backend-node": "^1.0.3",
29
+ "@backstage/plugin-search-common": "^1.1.0",
30
30
  "knex": "^2.0.0",
31
31
  "lodash": "^4.17.21",
32
32
  "uuid": "^8.3.2"
33
33
  },
34
34
  "devDependencies": {
35
- "@backstage/backend-test-utils": "^0.1.29-next.1",
36
- "@backstage/cli": "^0.20.0-next.1"
35
+ "@backstage/backend-test-utils": "^0.1.29",
36
+ "@backstage/cli": "^0.20.0"
37
37
  },
38
38
  "files": [
39
39
  "dist",