@backstage/plugin-search-backend-module-pg 0.5.35-next.2 → 0.5.36-next.0

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,29 @@
1
1
  # @backstage/plugin-search-backend-module-pg
2
2
 
3
+ ## 0.5.36-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 094eaa3: Remove references to in-repo backend-common
8
+ - Updated dependencies
9
+ - @backstage/plugin-search-backend-node@1.3.3-next.0
10
+ - @backstage/backend-plugin-api@1.0.1-next.0
11
+ - @backstage/config@1.2.0
12
+ - @backstage/plugin-search-common@1.2.14
13
+
14
+ ## 0.5.35
15
+
16
+ ### Patch Changes
17
+
18
+ - d425fc4: Modules, plugins, and services are now `BackendFeature`, not a function that returns a feature.
19
+ - 5726390: Internal refactor to use `LoggerService` and `DatabaseService` instead of the legacy `Logger` and `PluginDatabaseManager` types.
20
+ - Updated dependencies
21
+ - @backstage/backend-common@0.25.0
22
+ - @backstage/backend-plugin-api@1.0.0
23
+ - @backstage/config@1.2.0
24
+ - @backstage/plugin-search-backend-node@1.3.2
25
+ - @backstage/plugin-search-common@1.2.14
26
+
3
27
  ## 0.5.35-next.2
4
28
 
5
29
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-search-backend-module-pg__alpha",
3
- "version": "0.5.35-next.2",
3
+ "version": "0.5.36-next.0",
4
4
  "main": "../dist/alpha.cjs.js",
5
5
  "types": "../dist/alpha.d.ts"
6
6
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-search-backend-module-pg",
3
- "version": "0.5.35-next.2",
3
+ "version": "0.5.36-next.0",
4
4
  "description": "A module for the search backend that implements search using PostgreSQL",
5
5
  "backstage": {
6
6
  "role": "backend-plugin-module",
@@ -24,6 +24,7 @@
24
24
  "default": "./dist/index.cjs.js"
25
25
  },
26
26
  "./alpha": {
27
+ "backstage": "@backstage/BackendFeature",
27
28
  "require": "./dist/alpha.cjs.js",
28
29
  "types": "./dist/alpha.d.ts",
29
30
  "default": "./dist/alpha.cjs.js"
@@ -48,18 +49,18 @@
48
49
  "test": "backstage-cli package test"
49
50
  },
50
51
  "dependencies": {
51
- "@backstage/backend-common": "^0.25.0-next.2",
52
- "@backstage/backend-plugin-api": "^1.0.0-next.2",
52
+ "@backstage/backend-common": "^0.25.0",
53
+ "@backstage/backend-plugin-api": "^1.0.1-next.0",
53
54
  "@backstage/config": "^1.2.0",
54
- "@backstage/plugin-search-backend-node": "^1.3.2-next.2",
55
+ "@backstage/plugin-search-backend-node": "^1.3.3-next.0",
55
56
  "@backstage/plugin-search-common": "^1.2.14",
56
57
  "knex": "^3.0.0",
57
58
  "lodash": "^4.17.21",
58
59
  "uuid": "^9.0.0"
59
60
  },
60
61
  "devDependencies": {
61
- "@backstage/backend-test-utils": "^1.0.0-next.2",
62
- "@backstage/cli": "^0.27.1-next.2"
62
+ "@backstage/backend-test-utils": "^1.0.1-next.0",
63
+ "@backstage/cli": "^0.28.0-next.0"
63
64
  },
64
65
  "configSchema": "config.d.ts"
65
66
  }