@backstage/plugin-search-backend-module-pg 0.5.12-next.3 → 0.5.12
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.
- package/CHANGELOG.md +28 -0
- package/alpha/package.json +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @backstage/plugin-search-backend-module-pg
|
|
2
2
|
|
|
3
|
+
## 0.5.12
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 4ccf9204bc95: Added `indexerBatchSize` option to be able to control the size of the batches being indexed. Also added a debug log entry to list out all the entities in the batch
|
|
8
|
+
- 71114ac50e02: The export for the new backend system has been moved to be the `default` export.
|
|
9
|
+
|
|
10
|
+
For example, if you are currently importing the plugin using the following pattern:
|
|
11
|
+
|
|
12
|
+
```ts
|
|
13
|
+
import { examplePlugin } from '@backstage/plugin-example-backend';
|
|
14
|
+
|
|
15
|
+
backend.add(examplePlugin);
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
It should be migrated to this:
|
|
19
|
+
|
|
20
|
+
```ts
|
|
21
|
+
backend.add(import('@backstage/plugin-example-backend'));
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
- Updated dependencies
|
|
25
|
+
- @backstage/backend-common@0.19.5
|
|
26
|
+
- @backstage/config@1.1.0
|
|
27
|
+
- @backstage/plugin-search-common@1.2.6
|
|
28
|
+
- @backstage/backend-plugin-api@0.6.3
|
|
29
|
+
- @backstage/plugin-search-backend-node@1.2.7
|
|
30
|
+
|
|
3
31
|
## 0.5.12-next.3
|
|
4
32
|
|
|
5
33
|
### Patch Changes
|
package/alpha/package.json
CHANGED
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.5.12
|
|
4
|
+
"version": "0.5.12",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -40,19 +40,19 @@
|
|
|
40
40
|
"clean": "backstage-cli package clean"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@backstage/backend-common": "^0.19.5
|
|
44
|
-
"@backstage/backend-plugin-api": "^0.6.3
|
|
45
|
-
"@backstage/config": "^1.1.0
|
|
46
|
-
"@backstage/plugin-search-backend-node": "^1.2.7
|
|
47
|
-
"@backstage/plugin-search-common": "^1.2.6
|
|
43
|
+
"@backstage/backend-common": "^0.19.5",
|
|
44
|
+
"@backstage/backend-plugin-api": "^0.6.3",
|
|
45
|
+
"@backstage/config": "^1.1.0",
|
|
46
|
+
"@backstage/plugin-search-backend-node": "^1.2.7",
|
|
47
|
+
"@backstage/plugin-search-common": "^1.2.6",
|
|
48
48
|
"knex": "^2.0.0",
|
|
49
49
|
"lodash": "^4.17.21",
|
|
50
50
|
"uuid": "^8.3.2",
|
|
51
51
|
"winston": "^3.2.1"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@backstage/backend-test-utils": "^0.2.3
|
|
55
|
-
"@backstage/cli": "^0.22.13
|
|
54
|
+
"@backstage/backend-test-utils": "^0.2.3",
|
|
55
|
+
"@backstage/cli": "^0.22.13"
|
|
56
56
|
},
|
|
57
57
|
"files": [
|
|
58
58
|
"dist",
|