@backstage/plugin-search-backend-module-stack-overflow-collator 0.2.1 → 0.3.0-next.1
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 +25 -4
- package/dist/index.d.ts +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,13 +1,34 @@
|
|
|
1
1
|
# @backstage/plugin-search-backend-module-stack-overflow-collator
|
|
2
2
|
|
|
3
|
-
## 0.
|
|
3
|
+
## 0.3.0-next.1
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
7
|
- Updated dependencies
|
|
8
|
-
- @backstage/backend-common@0.
|
|
9
|
-
- @backstage/plugin-
|
|
10
|
-
- @backstage/
|
|
8
|
+
- @backstage/backend-common@0.25.0-next.1
|
|
9
|
+
- @backstage/backend-plugin-api@0.9.0-next.1
|
|
10
|
+
- @backstage/config@1.2.0
|
|
11
|
+
- @backstage/plugin-search-backend-node@1.3.2-next.1
|
|
12
|
+
- @backstage/plugin-search-common@1.2.14
|
|
13
|
+
|
|
14
|
+
## 0.3.0-next.0
|
|
15
|
+
|
|
16
|
+
### Minor Changes
|
|
17
|
+
|
|
18
|
+
- d425fc4: **BREAKING**: The return values from `createBackendPlugin`, `createBackendModule`, and `createServiceFactory` are now simply `BackendFeature` and `ServiceFactory`, instead of the previously deprecated form of a function that returns them. For this reason, `createServiceFactory` also no longer accepts the callback form where you provide direct options to the service. This also affects all `coreServices.*` service refs.
|
|
19
|
+
|
|
20
|
+
This may in particular affect tests; if you were effectively doing `createBackendModule({...})()` (note the parentheses), you can now remove those extra parentheses at the end. You may encounter cases of this in your `packages/backend/src/index.ts` too, where you add plugins, modules, and services. If you were using `createServiceFactory` with a function as its argument for the purpose of passing in options, this pattern has been deprecated for a while and is no longer supported. You may want to explore the new multiton patterns to achieve your goals, or moving settings to app-config.
|
|
21
|
+
|
|
22
|
+
As part of this change, the `IdentityFactoryOptions` type was removed, and can no longer be used to tweak that service. The identity service was also deprecated some time ago, and you will want to [migrate to the new auth system](https://backstage.io/docs/tutorials/auth-service-migration) if you still rely on it.
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- Updated dependencies
|
|
27
|
+
- @backstage/backend-plugin-api@0.9.0-next.0
|
|
28
|
+
- @backstage/backend-common@0.25.0-next.0
|
|
29
|
+
- @backstage/plugin-search-backend-node@1.3.2-next.0
|
|
30
|
+
- @backstage/config@1.2.0
|
|
31
|
+
- @backstage/plugin-search-common@1.2.14
|
|
11
32
|
|
|
12
33
|
## 0.2.0
|
|
13
34
|
|
package/dist/index.d.ts
CHANGED
|
@@ -60,6 +60,6 @@ declare class StackOverflowQuestionsCollatorFactory implements DocumentCollatorF
|
|
|
60
60
|
* @public
|
|
61
61
|
* Search backend module for the Stack Overflow index.
|
|
62
62
|
*/
|
|
63
|
-
declare const searchStackOverflowCollatorModule: _backstage_backend_plugin_api.
|
|
63
|
+
declare const searchStackOverflowCollatorModule: _backstage_backend_plugin_api.BackendFeature;
|
|
64
64
|
|
|
65
65
|
export { type StackOverflowDocument, StackOverflowQuestionsCollatorFactory, type StackOverflowQuestionsCollatorFactoryOptions, type StackOverflowQuestionsRequestParams, searchStackOverflowCollatorModule as default };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-search-backend-module-stack-overflow-collator",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0-next.1",
|
|
4
4
|
"description": "A module for the search backend that exports stack overflow modules",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
@@ -35,17 +35,17 @@
|
|
|
35
35
|
"test": "backstage-cli package test"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@backstage/backend-common": "^0.
|
|
39
|
-
"@backstage/backend-plugin-api": "^0.
|
|
38
|
+
"@backstage/backend-common": "^0.25.0-next.1",
|
|
39
|
+
"@backstage/backend-plugin-api": "^0.9.0-next.1",
|
|
40
40
|
"@backstage/config": "^1.2.0",
|
|
41
|
-
"@backstage/plugin-search-backend-node": "^1.3.1",
|
|
41
|
+
"@backstage/plugin-search-backend-node": "^1.3.2-next.1",
|
|
42
42
|
"@backstage/plugin-search-common": "^1.2.14",
|
|
43
43
|
"node-fetch": "^2.7.0",
|
|
44
44
|
"qs": "^6.9.4"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@backstage/backend-test-utils": "^0.
|
|
48
|
-
"@backstage/cli": "^0.27.
|
|
47
|
+
"@backstage/backend-test-utils": "^0.6.0-next.1",
|
|
48
|
+
"@backstage/cli": "^0.27.1-next.1",
|
|
49
49
|
"msw": "^1.2.1"
|
|
50
50
|
},
|
|
51
51
|
"configSchema": "config.d.ts"
|