@backstage/plugin-search-backend-module-pg 0.5.49-next.0 → 0.5.49

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 +22 -0
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # @backstage/plugin-search-backend-module-pg
2
2
 
3
+ ## 0.5.49
4
+
5
+ ### Patch Changes
6
+
7
+ - a919ca3: Truncate long docs to fit PG index size limit
8
+ - 8d15a51: Added the < character to the query filter regexp
9
+ - Updated dependencies
10
+ - @backstage/config@1.3.5
11
+ - @backstage/backend-plugin-api@1.4.4
12
+ - @backstage/plugin-search-backend-node@1.3.16
13
+ - @backstage/plugin-search-common@1.2.20
14
+
15
+ ## 0.5.49-next.1
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies
20
+ - @backstage/config@1.3.4-next.0
21
+ - @backstage/backend-plugin-api@1.4.4-next.0
22
+ - @backstage/plugin-search-backend-node@1.3.16-next.0
23
+ - @backstage/plugin-search-common@1.2.20-next.0
24
+
3
25
  ## 0.5.49-next.0
4
26
 
5
27
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-search-backend-module-pg",
3
- "version": "0.5.49-next.0",
3
+ "version": "0.5.49",
4
4
  "description": "A module for the search backend that implements search using PostgreSQL",
5
5
  "backstage": {
6
6
  "role": "backend-plugin-module",
@@ -63,17 +63,17 @@
63
63
  "test": "backstage-cli package test"
64
64
  },
65
65
  "dependencies": {
66
- "@backstage/backend-plugin-api": "1.4.3",
67
- "@backstage/config": "1.3.3",
68
- "@backstage/plugin-search-backend-node": "1.3.15",
69
- "@backstage/plugin-search-common": "1.2.19",
66
+ "@backstage/backend-plugin-api": "^1.4.4",
67
+ "@backstage/config": "^1.3.5",
68
+ "@backstage/plugin-search-backend-node": "^1.3.16",
69
+ "@backstage/plugin-search-common": "^1.2.20",
70
70
  "knex": "^3.0.0",
71
71
  "lodash": "^4.17.21",
72
72
  "uuid": "^11.0.0"
73
73
  },
74
74
  "devDependencies": {
75
- "@backstage/backend-test-utils": "1.9.1-next.0",
76
- "@backstage/cli": "0.34.4-next.0"
75
+ "@backstage/backend-test-utils": "^1.9.1",
76
+ "@backstage/cli": "^0.34.4"
77
77
  },
78
78
  "configSchema": "config.d.ts"
79
79
  }