@backstage/plugin-search-backend-node 1.2.28-next.1 → 1.2.28-next.3

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-node
2
2
 
3
+ ## 1.2.28-next.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/backend-plugin-api@0.8.0-next.3
9
+ - @backstage/backend-common@0.23.4-next.3
10
+ - @backstage/backend-tasks@0.5.28-next.3
11
+ - @backstage/config@1.2.0
12
+ - @backstage/errors@1.2.4
13
+ - @backstage/plugin-permission-common@0.8.1-next.1
14
+ - @backstage/plugin-search-common@1.2.14-next.1
15
+
16
+ ## 1.2.28-next.2
17
+
18
+ ### Patch Changes
19
+
20
+ - 3123c16: Fix package metadata
21
+ - 7c5f3b0: Explicit declare if the service ref accepts `single` or `multiple` implementations.
22
+ - Updated dependencies
23
+ - @backstage/backend-plugin-api@0.8.0-next.2
24
+ - @backstage/plugin-permission-common@0.8.1-next.1
25
+ - @backstage/backend-common@0.23.4-next.2
26
+ - @backstage/plugin-search-common@1.2.14-next.1
27
+ - @backstage/backend-tasks@0.5.28-next.2
28
+ - @backstage/config@1.2.0
29
+ - @backstage/errors@1.2.4
30
+
3
31
  ## 1.2.28-next.1
4
32
 
5
33
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-search-backend-node__alpha",
3
- "version": "1.2.28-next.1",
3
+ "version": "1.2.28-next.3",
4
4
  "main": "../dist/alpha.cjs.js",
5
5
  "types": "../dist/alpha.d.ts"
6
6
  }
package/dist/alpha.d.ts CHANGED
@@ -52,7 +52,7 @@ interface SearchEngineRegistryExtensionPoint {
52
52
  * @alpha
53
53
  * Service that builds a search index.
54
54
  */
55
- declare const searchIndexServiceRef: _backstage_backend_plugin_api.ServiceRef<SearchIndexService, "plugin">;
55
+ declare const searchIndexServiceRef: _backstage_backend_plugin_api.ServiceRef<SearchIndexService, "plugin", "singleton">;
56
56
  /**
57
57
  * @alpha
58
58
  * Extension point for register a search engine.
package/package.json CHANGED
@@ -1,12 +1,16 @@
1
1
  {
2
2
  "name": "@backstage/plugin-search-backend-node",
3
- "version": "1.2.28-next.1",
3
+ "version": "1.2.28-next.3",
4
4
  "description": "A library for Backstage backend plugins that want to interact with the search backend plugin",
5
5
  "backstage": {
6
6
  "role": "node-library",
7
- "pluginId": "search-backend",
7
+ "pluginId": "search",
8
8
  "pluginPackages": [
9
- "@backstage/plugin-search-backend-node"
9
+ "@backstage/plugin-search",
10
+ "@backstage/plugin-search-backend",
11
+ "@backstage/plugin-search-backend-node",
12
+ "@backstage/plugin-search-common",
13
+ "@backstage/plugin-search-react"
10
14
  ]
11
15
  },
12
16
  "publishConfig": {
@@ -48,13 +52,13 @@
48
52
  "test": "backstage-cli package test"
49
53
  },
50
54
  "dependencies": {
51
- "@backstage/backend-common": "^0.23.4-next.1",
52
- "@backstage/backend-plugin-api": "^0.7.1-next.1",
53
- "@backstage/backend-tasks": "^0.5.28-next.1",
55
+ "@backstage/backend-common": "^0.23.4-next.3",
56
+ "@backstage/backend-plugin-api": "^0.8.0-next.3",
57
+ "@backstage/backend-tasks": "^0.5.28-next.3",
54
58
  "@backstage/config": "^1.2.0",
55
59
  "@backstage/errors": "^1.2.4",
56
- "@backstage/plugin-permission-common": "^0.8.1-next.0",
57
- "@backstage/plugin-search-common": "^1.2.14-next.0",
60
+ "@backstage/plugin-permission-common": "^0.8.1-next.1",
61
+ "@backstage/plugin-search-common": "^1.2.14-next.1",
58
62
  "@types/lunr": "^2.3.3",
59
63
  "lodash": "^4.17.21",
60
64
  "lunr": "^2.3.9",
@@ -62,9 +66,9 @@
62
66
  "uuid": "^9.0.0"
63
67
  },
64
68
  "devDependencies": {
65
- "@backstage/backend-common": "^0.23.4-next.1",
66
- "@backstage/backend-test-utils": "^0.4.5-next.1",
67
- "@backstage/cli": "^0.27.0-next.1",
69
+ "@backstage/backend-common": "^0.23.4-next.3",
70
+ "@backstage/backend-test-utils": "^0.4.5-next.3",
71
+ "@backstage/cli": "^0.27.0-next.4",
68
72
  "@types/ndjson": "^2.0.1"
69
73
  }
70
74
  }