@backstage/plugin-search-backend-node 1.2.18-next.1 → 1.2.18
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 +29 -0
- package/alpha/package.json +1 -1
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# @backstage/plugin-search-backend-node
|
|
2
2
|
|
|
3
|
+
## 1.2.18
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 0fb419b: Updated dependency `uuid` to `^9.0.0`.
|
|
8
|
+
Updated dependency `@types/uuid` to `^9.0.0`.
|
|
9
|
+
- 744c0cb: Exports `QueryTranslator`, `QueryRequestOptions` and `SearchEngine` types. These new types were extracted from the `@backstage/plugin-search-common` package and the `token` property was deprecated in favor of the a new credentials one.
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
- @backstage/backend-common@0.21.4
|
|
12
|
+
- @backstage/config@1.2.0
|
|
13
|
+
- @backstage/errors@1.2.4
|
|
14
|
+
- @backstage/backend-plugin-api@0.6.14
|
|
15
|
+
- @backstage/plugin-permission-common@0.7.13
|
|
16
|
+
- @backstage/plugin-search-common@1.2.11
|
|
17
|
+
- @backstage/backend-tasks@0.5.19
|
|
18
|
+
|
|
19
|
+
## 1.2.18-next.2
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- Updated dependencies
|
|
24
|
+
- @backstage/backend-common@0.21.4-next.2
|
|
25
|
+
- @backstage/backend-plugin-api@0.6.14-next.2
|
|
26
|
+
- @backstage/backend-tasks@0.5.19-next.2
|
|
27
|
+
- @backstage/config@1.2.0-next.1
|
|
28
|
+
- @backstage/errors@1.2.4-next.0
|
|
29
|
+
- @backstage/plugin-permission-common@0.7.13-next.1
|
|
30
|
+
- @backstage/plugin-search-common@1.2.11-next.1
|
|
31
|
+
|
|
3
32
|
## 1.2.18-next.1
|
|
4
33
|
|
|
5
34
|
### 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.18
|
|
3
|
+
"version": "1.2.18",
|
|
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"
|
|
@@ -44,13 +44,13 @@
|
|
|
44
44
|
"test": "backstage-cli package test"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@backstage/backend-common": "^0.21.4
|
|
48
|
-
"@backstage/backend-plugin-api": "^0.6.14
|
|
49
|
-
"@backstage/backend-tasks": "^0.5.19
|
|
50
|
-
"@backstage/config": "^1.2.0
|
|
51
|
-
"@backstage/errors": "^1.2.4
|
|
52
|
-
"@backstage/plugin-permission-common": "^0.7.13
|
|
53
|
-
"@backstage/plugin-search-common": "^1.2.11
|
|
47
|
+
"@backstage/backend-common": "^0.21.4",
|
|
48
|
+
"@backstage/backend-plugin-api": "^0.6.14",
|
|
49
|
+
"@backstage/backend-tasks": "^0.5.19",
|
|
50
|
+
"@backstage/config": "^1.2.0",
|
|
51
|
+
"@backstage/errors": "^1.2.4",
|
|
52
|
+
"@backstage/plugin-permission-common": "^0.7.13",
|
|
53
|
+
"@backstage/plugin-search-common": "^1.2.11",
|
|
54
54
|
"@types/lunr": "^2.3.3",
|
|
55
55
|
"lodash": "^4.17.21",
|
|
56
56
|
"lunr": "^2.3.9",
|
|
@@ -59,8 +59,8 @@
|
|
|
59
59
|
"winston": "^3.2.1"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
|
-
"@backstage/backend-common": "^0.21.4
|
|
63
|
-
"@backstage/cli": "^0.
|
|
62
|
+
"@backstage/backend-common": "^0.21.4",
|
|
63
|
+
"@backstage/cli": "^0.26.0",
|
|
64
64
|
"@types/ndjson": "^2.0.1"
|
|
65
65
|
}
|
|
66
66
|
}
|