@backstage/plugin-search-backend-module-techdocs 0.2.2 → 0.2.3-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 CHANGED
@@ -1,5 +1,39 @@
1
1
  # @backstage/plugin-search-backend-module-techdocs
2
2
 
3
+ ## 0.2.3-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/backend-plugin-api@1.0.1-next.0
9
+ - @backstage/catalog-client@1.7.0
10
+ - @backstage/catalog-model@1.7.0
11
+ - @backstage/config@1.2.0
12
+ - @backstage/plugin-catalog-common@1.1.0
13
+ - @backstage/plugin-catalog-node@1.13.1-next.0
14
+ - @backstage/plugin-permission-common@0.8.1
15
+ - @backstage/plugin-search-backend-node@1.3.3-next.1
16
+ - @backstage/plugin-search-common@1.2.14
17
+ - @backstage/plugin-techdocs-node@1.12.12-next.1
18
+
19
+ ## 0.2.3-next.0
20
+
21
+ ### Patch Changes
22
+
23
+ - 094eaa3: Remove references to in-repo backend-common
24
+ - 2f88f88: Updated backend installation instructions.
25
+ - Updated dependencies
26
+ - @backstage/plugin-search-backend-node@1.3.3-next.0
27
+ - @backstage/backend-plugin-api@1.0.1-next.0
28
+ - @backstage/catalog-client@1.7.0
29
+ - @backstage/catalog-model@1.7.0
30
+ - @backstage/config@1.2.0
31
+ - @backstage/plugin-catalog-common@1.1.0
32
+ - @backstage/plugin-catalog-node@1.13.1-next.0
33
+ - @backstage/plugin-permission-common@0.8.1
34
+ - @backstage/plugin-search-common@1.2.14
35
+ - @backstage/plugin-techdocs-node@1.12.12-next.0
36
+
3
37
  ## 0.2.2
4
38
 
5
39
  ### Patch Changes
package/README.md CHANGED
@@ -20,8 +20,8 @@ import { searchPlugin } from '@backstage/plugin-search-backend/alpha';
20
20
  import { searchModuleTechDocsCollator } from '@backstage/plugin-search-backend-module-techdocs/alpha';
21
21
 
22
22
  const backend = createBackend();
23
- backend.add(searchPlugin());
24
- backend.add(searchModuleTechDocsCollator());
23
+ backend.add(searchPlugin);
24
+ backend.add(searchModuleTechDocsCollator);
25
25
  backend.start();
26
26
  ```
27
27
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-search-backend-module-techdocs__alpha",
3
- "version": "0.2.2",
3
+ "version": "0.2.3-next.1",
4
4
  "main": "../dist/alpha.cjs.js",
5
5
  "types": "../dist/alpha.d.ts"
6
6
  }
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.3-next.1",
4
4
  "description": "A module for the search backend that exports techdocs modules",
5
5
  "backstage": {
6
6
  "role": "backend-plugin-module",
@@ -24,6 +24,7 @@
24
24
  "default": "./dist/index.cjs.js"
25
25
  },
26
26
  "./alpha": {
27
+ "backstage": "@backstage/BackendFeature",
27
28
  "require": "./dist/alpha.cjs.js",
28
29
  "types": "./dist/alpha.d.ts",
29
30
  "default": "./dist/alpha.cjs.js"
@@ -48,23 +49,23 @@
48
49
  },
49
50
  "dependencies": {
50
51
  "@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
- "@backstage/config": "^1.2.0",
55
- "@backstage/plugin-catalog-common": "^1.1.0",
56
- "@backstage/plugin-catalog-node": "^1.13.0",
57
- "@backstage/plugin-permission-common": "^0.8.1",
58
- "@backstage/plugin-search-backend-node": "^1.3.2",
59
- "@backstage/plugin-search-common": "^1.2.14",
60
- "@backstage/plugin-techdocs-node": "^1.12.11",
52
+ "@backstage/backend-plugin-api": "1.0.1-next.0",
53
+ "@backstage/catalog-client": "1.7.0",
54
+ "@backstage/catalog-model": "1.7.0",
55
+ "@backstage/config": "1.2.0",
56
+ "@backstage/plugin-catalog-common": "1.1.0",
57
+ "@backstage/plugin-catalog-node": "1.13.1-next.0",
58
+ "@backstage/plugin-permission-common": "0.8.1",
59
+ "@backstage/plugin-search-backend-node": "1.3.3-next.1",
60
+ "@backstage/plugin-search-common": "1.2.14",
61
+ "@backstage/plugin-techdocs-node": "1.12.12-next.1",
61
62
  "lodash": "^4.17.21",
62
63
  "node-fetch": "^2.7.0",
63
64
  "p-limit": "^3.1.0"
64
65
  },
65
66
  "devDependencies": {
66
- "@backstage/backend-test-utils": "^1.0.0",
67
- "@backstage/cli": "^0.27.1",
67
+ "@backstage/backend-test-utils": "1.0.1-next.1",
68
+ "@backstage/cli": "0.28.0-next.1",
68
69
  "msw": "^1.0.0"
69
70
  },
70
71
  "configSchema": "config.d.ts"