@backstage/plugin-search-backend-module-techdocs 0.2.2-next.2 → 0.2.2
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 -0
- package/alpha/package.json +1 -1
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# @backstage/plugin-search-backend-module-techdocs
|
|
2
2
|
|
|
3
|
+
## 0.2.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 19ff127: Internal refactor to remove dependencies on the identity and token manager services, which have been removed. Public APIs no longer require the identity service or token manager to be provided.
|
|
8
|
+
- d425fc4: Modules, plugins, and services are now `BackendFeature`, not a function that returns a feature.
|
|
9
|
+
- 5726390: The following collator factories are deprecated, please [migrate](https://backstage.io/docs/backend-system/building-backends/migrating) to the new backend system and follow the instructions below to install collators via module:
|
|
10
|
+
|
|
11
|
+
- `DefaultCatalogCollatorFactory`: https://github.com/backstage/backstage/blob/nbs10/search-deprecate-create-router/plugins/search-backend-module-catalog/README.md#installation;
|
|
12
|
+
- `ToolDocumentCollatorFactory`: https://github.com/backstage/backstage/blob/nbs10/search-deprecate-create-router/plugins/search-backend-module-explore/README.md#installation;
|
|
13
|
+
- `DefaultTechDocsCollatorFactory`: https://github.com/backstage/backstage/blob/nbs10/search-deprecate-create-router/plugins/search-backend-module-techdocs/README.md#installation.
|
|
14
|
+
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
- @backstage/backend-common@0.25.0
|
|
17
|
+
- @backstage/plugin-techdocs-node@1.12.11
|
|
18
|
+
- @backstage/backend-plugin-api@1.0.0
|
|
19
|
+
- @backstage/catalog-model@1.7.0
|
|
20
|
+
- @backstage/catalog-client@1.7.0
|
|
21
|
+
- @backstage/plugin-catalog-common@1.1.0
|
|
22
|
+
- @backstage/plugin-catalog-node@1.13.0
|
|
23
|
+
- @backstage/config@1.2.0
|
|
24
|
+
- @backstage/plugin-permission-common@0.8.1
|
|
25
|
+
- @backstage/plugin-search-backend-node@1.3.2
|
|
26
|
+
- @backstage/plugin-search-common@1.2.14
|
|
27
|
+
|
|
3
28
|
## 0.2.2-next.2
|
|
4
29
|
|
|
5
30
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-search-backend-module-techdocs",
|
|
3
|
-
"version": "0.2.2
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "A module for the search backend that exports techdocs modules",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
@@ -47,24 +47,24 @@
|
|
|
47
47
|
"test": "backstage-cli package test"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@backstage/backend-common": "^0.25.0
|
|
51
|
-
"@backstage/backend-plugin-api": "^1.0.0
|
|
52
|
-
"@backstage/catalog-client": "^1.7.0
|
|
53
|
-
"@backstage/catalog-model": "^1.
|
|
50
|
+
"@backstage/backend-common": "^0.25.0",
|
|
51
|
+
"@backstage/backend-plugin-api": "^1.0.0",
|
|
52
|
+
"@backstage/catalog-client": "^1.7.0",
|
|
53
|
+
"@backstage/catalog-model": "^1.7.0",
|
|
54
54
|
"@backstage/config": "^1.2.0",
|
|
55
|
-
"@backstage/plugin-catalog-common": "^1.0
|
|
56
|
-
"@backstage/plugin-catalog-node": "^1.
|
|
55
|
+
"@backstage/plugin-catalog-common": "^1.1.0",
|
|
56
|
+
"@backstage/plugin-catalog-node": "^1.13.0",
|
|
57
57
|
"@backstage/plugin-permission-common": "^0.8.1",
|
|
58
|
-
"@backstage/plugin-search-backend-node": "^1.3.2
|
|
58
|
+
"@backstage/plugin-search-backend-node": "^1.3.2",
|
|
59
59
|
"@backstage/plugin-search-common": "^1.2.14",
|
|
60
|
-
"@backstage/plugin-techdocs-node": "^1.12.11
|
|
60
|
+
"@backstage/plugin-techdocs-node": "^1.12.11",
|
|
61
61
|
"lodash": "^4.17.21",
|
|
62
62
|
"node-fetch": "^2.7.0",
|
|
63
63
|
"p-limit": "^3.1.0"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
|
-
"@backstage/backend-test-utils": "^1.0.0
|
|
67
|
-
"@backstage/cli": "^0.27.1
|
|
66
|
+
"@backstage/backend-test-utils": "^1.0.0",
|
|
67
|
+
"@backstage/cli": "^0.27.1",
|
|
68
68
|
"msw": "^1.0.0"
|
|
69
69
|
},
|
|
70
70
|
"configSchema": "config.d.ts"
|