@backstage/plugin-search-backend 1.5.10-next.2 → 1.5.10

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,45 @@
1
1
  # @backstage/plugin-search-backend
2
2
 
3
+ ## 1.5.10
4
+
5
+ ### Patch Changes
6
+
7
+ - 8869b8e: Updated local development setup.
8
+ - 78a0b08: Internal refactor to handle `BackendFeature` contract change.
9
+ - d44a20a: Added additional plugin metadata to `package.json`.
10
+ - 5b6f979: Split backend search plugin startup into "init" and "start" stages to ensure necessary initialization has happened before startup
11
+ - 34dc47d: Move @backstage/repo-tools to devDependencies
12
+ - Updated dependencies
13
+ - @backstage/backend-common@0.23.0
14
+ - @backstage/backend-plugin-api@0.6.19
15
+ - @backstage/backend-defaults@0.3.0
16
+ - @backstage/plugin-search-backend-node@1.2.24
17
+ - @backstage/plugin-permission-node@0.7.30
18
+ - @backstage/plugin-permission-common@0.7.14
19
+ - @backstage/plugin-search-common@1.2.12
20
+ - @backstage/backend-openapi-utils@0.1.12
21
+ - @backstage/config@1.2.0
22
+ - @backstage/errors@1.2.4
23
+ - @backstage/types@1.1.1
24
+
25
+ ## 1.5.10-next.3
26
+
27
+ ### Patch Changes
28
+
29
+ - d44a20a: Added additional plugin metadata to `package.json`.
30
+ - Updated dependencies
31
+ - @backstage/backend-plugin-api@0.6.19-next.3
32
+ - @backstage/backend-defaults@0.3.0-next.3
33
+ - @backstage/plugin-search-backend-node@1.2.24-next.3
34
+ - @backstage/plugin-permission-common@0.7.14-next.0
35
+ - @backstage/plugin-permission-node@0.7.30-next.3
36
+ - @backstage/plugin-search-common@1.2.12-next.0
37
+ - @backstage/backend-common@0.23.0-next.3
38
+ - @backstage/backend-openapi-utils@0.1.12-next.2
39
+ - @backstage/config@1.2.0
40
+ - @backstage/errors@1.2.4
41
+ - @backstage/types@1.1.1
42
+
3
43
  ## 1.5.10-next.2
4
44
 
5
45
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-search-backend",
3
- "version": "1.5.10-next.2",
3
+ "version": "1.5.10",
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
  * The Search plugin is responsible for starting search indexing processes and return search results.
5
5
  * @alpha
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,16 @@
1
1
  {
2
2
  "name": "@backstage/plugin-search-backend",
3
- "version": "1.5.10-next.2",
3
+ "version": "1.5.10",
4
4
  "description": "The Backstage backend plugin that provides your backstage app with search",
5
5
  "backstage": {
6
- "role": "backend-plugin"
6
+ "role": "backend-plugin",
7
+ "pluginId": "search",
8
+ "pluginPackages": [
9
+ "@backstage/plugin-search",
10
+ "@backstage/plugin-search-backend",
11
+ "@backstage/plugin-search-common",
12
+ "@backstage/plugin-search-react"
13
+ ]
7
14
  },
8
15
  "publishConfig": {
9
16
  "access": "public"
@@ -47,16 +54,16 @@
47
54
  "test": "backstage-cli package test"
48
55
  },
49
56
  "dependencies": {
50
- "@backstage/backend-common": "^0.23.0-next.2",
51
- "@backstage/backend-defaults": "^0.3.0-next.2",
52
- "@backstage/backend-openapi-utils": "^0.1.12-next.1",
53
- "@backstage/backend-plugin-api": "^0.6.19-next.2",
57
+ "@backstage/backend-common": "^0.23.0",
58
+ "@backstage/backend-defaults": "^0.3.0",
59
+ "@backstage/backend-openapi-utils": "^0.1.12",
60
+ "@backstage/backend-plugin-api": "^0.6.19",
54
61
  "@backstage/config": "^1.2.0",
55
62
  "@backstage/errors": "^1.2.4",
56
- "@backstage/plugin-permission-common": "^0.7.13",
57
- "@backstage/plugin-permission-node": "^0.7.30-next.2",
58
- "@backstage/plugin-search-backend-node": "^1.2.24-next.2",
59
- "@backstage/plugin-search-common": "^1.2.11",
63
+ "@backstage/plugin-permission-common": "^0.7.14",
64
+ "@backstage/plugin-permission-node": "^0.7.30",
65
+ "@backstage/plugin-search-backend-node": "^1.2.24",
66
+ "@backstage/plugin-search-common": "^1.2.12",
60
67
  "@backstage/types": "^1.1.1",
61
68
  "@types/express": "^4.17.6",
62
69
  "dataloader": "^2.0.0",
@@ -68,9 +75,9 @@
68
75
  "zod": "^3.22.4"
69
76
  },
70
77
  "devDependencies": {
71
- "@backstage/backend-test-utils": "^0.4.0-next.2",
72
- "@backstage/cli": "^0.26.7-next.2",
73
- "@backstage/repo-tools": "^0.9.1-next.2",
78
+ "@backstage/backend-test-utils": "^0.4.0",
79
+ "@backstage/cli": "^0.26.7",
80
+ "@backstage/repo-tools": "^0.9.1",
74
81
  "@types/supertest": "^2.0.8",
75
82
  "supertest": "^6.1.3"
76
83
  },