@backstage/plugin-search-backend-module-pg 0.2.5 → 0.2.8

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 +42 -0
  2. package/package.json +18 -15
package/CHANGELOG.md CHANGED
@@ -1,5 +1,47 @@
1
1
  # @backstage/plugin-search-backend-module-pg
2
2
 
3
+ ## 0.2.8
4
+
5
+ ### Patch Changes
6
+
7
+ - Fix for the previous release with missing type declarations.
8
+ - Updated dependencies
9
+ - @backstage/backend-common@0.10.9
10
+ - @backstage/search-common@0.2.4
11
+ - @backstage/plugin-search-backend-node@0.4.7
12
+
13
+ ## 0.2.7
14
+
15
+ ### Patch Changes
16
+
17
+ - c77c5c7eb6: Added `backstage.role` to `package.json`
18
+ - Updated dependencies
19
+ - @backstage/backend-common@0.10.8
20
+ - @backstage/search-common@0.2.3
21
+ - @backstage/plugin-search-backend-node@0.4.6
22
+
23
+ ## 0.2.6
24
+
25
+ ### Patch Changes
26
+
27
+ - 2441d1cf59: chore(deps): bump `knex` from 0.95.6 to 1.0.2
28
+
29
+ This also replaces `sqlite3` with `@vscode/sqlite3` 5.0.7
30
+
31
+ - Updated dependencies
32
+ - @backstage/backend-common@0.10.7
33
+
34
+ ## 0.2.6-next.0
35
+
36
+ ### Patch Changes
37
+
38
+ - 2441d1cf59: chore(deps): bump `knex` from 0.95.6 to 1.0.2
39
+
40
+ This also replaces `sqlite3` with `@vscode/sqlite3` 5.0.7
41
+
42
+ - Updated dependencies
43
+ - @backstage/backend-common@0.10.7-next.0
44
+
3
45
  ## 0.2.5
4
46
 
5
47
  ### 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.2.5",
4
+ "version": "0.2.8",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -10,29 +10,32 @@
10
10
  "main": "dist/index.cjs.js",
11
11
  "types": "dist/index.d.ts"
12
12
  },
13
+ "backstage": {
14
+ "role": "backend-plugin-module"
15
+ },
13
16
  "scripts": {
14
- "start": "backstage-cli backend:dev",
15
- "build": "backstage-cli backend:build",
16
- "lint": "backstage-cli lint",
17
- "test": "backstage-cli test",
18
- "prepack": "backstage-cli prepack",
19
- "postpack": "backstage-cli postpack",
20
- "clean": "backstage-cli clean"
17
+ "start": "backstage-cli package start",
18
+ "build": "backstage-cli package build",
19
+ "lint": "backstage-cli package lint",
20
+ "test": "backstage-cli package test",
21
+ "prepack": "backstage-cli package prepack",
22
+ "postpack": "backstage-cli package postpack",
23
+ "clean": "backstage-cli package clean"
21
24
  },
22
25
  "dependencies": {
23
- "@backstage/backend-common": "^0.10.6",
24
- "@backstage/plugin-search-backend-node": "^0.4.5",
25
- "@backstage/search-common": "^0.2.2",
26
- "knex": "^0.95.1",
26
+ "@backstage/backend-common": "^0.10.9",
27
+ "@backstage/plugin-search-backend-node": "^0.4.7",
28
+ "@backstage/search-common": "^0.2.4",
29
+ "knex": "^1.0.2",
27
30
  "lodash": "^4.17.21"
28
31
  },
29
32
  "devDependencies": {
30
- "@backstage/backend-test-utils": "^0.1.16",
31
- "@backstage/cli": "^0.13.1"
33
+ "@backstage/backend-test-utils": "^0.1.18",
34
+ "@backstage/cli": "^0.14.0"
32
35
  },
33
36
  "files": [
34
37
  "dist",
35
38
  "migrations"
36
39
  ],
37
- "gitHead": "f944a625c4a8ec7f6a6237502691da9209ce6b14"
40
+ "gitHead": "e244b348c473700e7d5e5fbcef38bd9f9fd1d0ba"
38
41
  }