@backstage/plugin-search-backend-node 1.2.24-next.3 → 1.2.24
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 +16 -0
- package/alpha/package.json +1 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @backstage/plugin-search-backend-node
|
|
2
2
|
|
|
3
|
+
## 1.2.24
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 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.
|
|
8
|
+
- d44a20a: Added additional plugin metadata to `package.json`.
|
|
9
|
+
- 5b6f979: Split backend search plugin startup into "init" and "start" stages to ensure necessary initialization has happened before startup
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
- @backstage/backend-common@0.23.0
|
|
12
|
+
- @backstage/backend-plugin-api@0.6.19
|
|
13
|
+
- @backstage/backend-tasks@0.5.24
|
|
14
|
+
- @backstage/plugin-permission-common@0.7.14
|
|
15
|
+
- @backstage/plugin-search-common@1.2.12
|
|
16
|
+
- @backstage/config@1.2.0
|
|
17
|
+
- @backstage/errors@1.2.4
|
|
18
|
+
|
|
3
19
|
## 1.2.24-next.3
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-search-backend-node",
|
|
3
|
-
"version": "1.2.24
|
|
3
|
+
"version": "1.2.24",
|
|
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",
|
|
@@ -48,13 +48,13 @@
|
|
|
48
48
|
"test": "backstage-cli package test"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@backstage/backend-common": "^0.23.0
|
|
52
|
-
"@backstage/backend-plugin-api": "^0.6.19
|
|
53
|
-
"@backstage/backend-tasks": "^0.5.24
|
|
51
|
+
"@backstage/backend-common": "^0.23.0",
|
|
52
|
+
"@backstage/backend-plugin-api": "^0.6.19",
|
|
53
|
+
"@backstage/backend-tasks": "^0.5.24",
|
|
54
54
|
"@backstage/config": "^1.2.0",
|
|
55
55
|
"@backstage/errors": "^1.2.4",
|
|
56
|
-
"@backstage/plugin-permission-common": "^0.7.14
|
|
57
|
-
"@backstage/plugin-search-common": "^1.2.12
|
|
56
|
+
"@backstage/plugin-permission-common": "^0.7.14",
|
|
57
|
+
"@backstage/plugin-search-common": "^1.2.12",
|
|
58
58
|
"@types/lunr": "^2.3.3",
|
|
59
59
|
"lodash": "^4.17.21",
|
|
60
60
|
"lunr": "^2.3.9",
|
|
@@ -62,9 +62,9 @@
|
|
|
62
62
|
"uuid": "^9.0.0"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
|
-
"@backstage/backend-common": "^0.23.0
|
|
66
|
-
"@backstage/backend-test-utils": "^0.4.0
|
|
67
|
-
"@backstage/cli": "^0.26.7
|
|
65
|
+
"@backstage/backend-common": "^0.23.0",
|
|
66
|
+
"@backstage/backend-test-utils": "^0.4.0",
|
|
67
|
+
"@backstage/cli": "^0.26.7",
|
|
68
68
|
"@types/ndjson": "^2.0.1"
|
|
69
69
|
}
|
|
70
70
|
}
|