@backstage/plugin-search-backend-module-pg 0.5.28-next.2 → 0.5.28

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 CHANGED
@@ -1,5 +1,33 @@
1
1
  # @backstage/plugin-search-backend-module-pg
2
2
 
3
+ ## 0.5.28
4
+
5
+ ### Patch Changes
6
+
7
+ - 78a0b08: Internal refactor to handle `BackendFeature` contract change.
8
+ - 6a576dc: Replace the usage of `getVoidLogger` with `mockServices.logger.mock` in order to remove the dependency with the soon-to-be-deprecated `backend-common` package.
9
+ - d44a20a: Added additional plugin metadata to `package.json`.
10
+ - Updated dependencies
11
+ - @backstage/backend-app-api@0.7.6
12
+ - @backstage/backend-common@0.23.0
13
+ - @backstage/backend-plugin-api@0.6.19
14
+ - @backstage/plugin-search-backend-node@1.2.24
15
+ - @backstage/plugin-search-common@1.2.12
16
+ - @backstage/config@1.2.0
17
+
18
+ ## 0.5.28-next.3
19
+
20
+ ### Patch Changes
21
+
22
+ - d44a20a: Added additional plugin metadata to `package.json`.
23
+ - Updated dependencies
24
+ - @backstage/backend-plugin-api@0.6.19-next.3
25
+ - @backstage/plugin-search-backend-node@1.2.24-next.3
26
+ - @backstage/plugin-search-common@1.2.12-next.0
27
+ - @backstage/backend-common@0.23.0-next.3
28
+ - @backstage/backend-app-api@0.7.6-next.3
29
+ - @backstage/config@1.2.0
30
+
3
31
  ## 0.5.28-next.2
4
32
 
5
33
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-search-backend-module-pg",
3
- "version": "0.5.28-next.2",
3
+ "version": "0.5.28",
4
4
  "main": "../dist/alpha.cjs.js",
5
5
  "types": "../dist/alpha.d.ts"
6
6
  }
package/dist/alpha.d.ts CHANGED
@@ -4,6 +4,6 @@ import * as _backstage_backend_plugin_api from '@backstage/backend-plugin-api';
4
4
  * @alpha
5
5
  * Search backend module for the Postgres engine.
6
6
  */
7
- declare const _default: () => _backstage_backend_plugin_api.BackendFeature;
7
+ declare const _default: _backstage_backend_plugin_api.BackendFeatureCompat;
8
8
 
9
9
  export { _default as default };
package/package.json CHANGED
@@ -1,9 +1,11 @@
1
1
  {
2
2
  "name": "@backstage/plugin-search-backend-module-pg",
3
- "version": "0.5.28-next.2",
3
+ "version": "0.5.28",
4
4
  "description": "A module for the search backend that implements search using PostgreSQL",
5
5
  "backstage": {
6
- "role": "backend-plugin-module"
6
+ "role": "backend-plugin-module",
7
+ "pluginId": "search",
8
+ "pluginPackage": "@backstage/plugin-search-backend"
7
9
  },
8
10
  "publishConfig": {
9
11
  "access": "public"
@@ -46,20 +48,20 @@
46
48
  "test": "backstage-cli package test"
47
49
  },
48
50
  "dependencies": {
49
- "@backstage/backend-app-api": "^0.7.6-next.2",
50
- "@backstage/backend-common": "^0.23.0-next.2",
51
- "@backstage/backend-plugin-api": "^0.6.19-next.2",
51
+ "@backstage/backend-app-api": "^0.7.6",
52
+ "@backstage/backend-common": "^0.23.0",
53
+ "@backstage/backend-plugin-api": "^0.6.19",
52
54
  "@backstage/config": "^1.2.0",
53
- "@backstage/plugin-search-backend-node": "^1.2.24-next.2",
54
- "@backstage/plugin-search-common": "^1.2.11",
55
+ "@backstage/plugin-search-backend-node": "^1.2.24",
56
+ "@backstage/plugin-search-common": "^1.2.12",
55
57
  "knex": "^3.0.0",
56
58
  "lodash": "^4.17.21",
57
59
  "uuid": "^9.0.0",
58
60
  "winston": "^3.2.1"
59
61
  },
60
62
  "devDependencies": {
61
- "@backstage/backend-test-utils": "^0.4.0-next.2",
62
- "@backstage/cli": "^0.26.7-next.2"
63
+ "@backstage/backend-test-utils": "^0.4.0",
64
+ "@backstage/cli": "^0.26.7"
63
65
  },
64
66
  "configSchema": "config.d.ts"
65
67
  }