@backstage/plugin-search-backend-module-explore 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,27 @@
1
1
  # @backstage/plugin-search-backend-module-explore
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/config@1.2.0
10
+ - @backstage/plugin-search-backend-node@1.3.3-next.1
11
+ - @backstage/plugin-search-common@1.2.14
12
+
13
+ ## 0.2.3-next.0
14
+
15
+ ### Patch Changes
16
+
17
+ - 094eaa3: Remove references to in-repo backend-common
18
+ - 2f88f88: Updated backend installation instructions.
19
+ - Updated dependencies
20
+ - @backstage/plugin-search-backend-node@1.3.3-next.0
21
+ - @backstage/backend-plugin-api@1.0.1-next.0
22
+ - @backstage/config@1.2.0
23
+ - @backstage/plugin-search-common@1.2.14
24
+
3
25
  ## 0.2.2
4
26
 
5
27
  ### Patch Changes
package/README.md CHANGED
@@ -20,8 +20,8 @@ import { searchPlugin } from '@backstage/plugin-search-backend/alpha';
20
20
  import { searchModuleExploreCollator } from '@backstage/plugin-search-backend-module-explore/alpha';
21
21
 
22
22
  const backend = createBackend();
23
- backend.add(searchPlugin());
24
- backend.add(searchModuleExploreCollator());
23
+ backend.add(searchPlugin);
24
+ backend.add(searchModuleExploreCollator);
25
25
  backend.start();
26
26
  ```
27
27
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-search-backend-module-explore__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-explore",
3
- "version": "0.2.2",
3
+ "version": "0.2.3-next.1",
4
4
  "description": "A module for the search backend that exports explore 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"
@@ -49,15 +50,15 @@
49
50
  "dependencies": {
50
51
  "@backstage-community/plugin-explore-common": "^0.0.5",
51
52
  "@backstage/backend-common": "^0.25.0",
52
- "@backstage/backend-plugin-api": "^1.0.0",
53
- "@backstage/config": "^1.2.0",
54
- "@backstage/plugin-search-backend-node": "^1.3.2",
55
- "@backstage/plugin-search-common": "^1.2.14",
53
+ "@backstage/backend-plugin-api": "1.0.1-next.0",
54
+ "@backstage/config": "1.2.0",
55
+ "@backstage/plugin-search-backend-node": "1.3.3-next.1",
56
+ "@backstage/plugin-search-common": "1.2.14",
56
57
  "node-fetch": "^2.7.0"
57
58
  },
58
59
  "devDependencies": {
59
- "@backstage/backend-test-utils": "^1.0.0",
60
- "@backstage/cli": "^0.27.1",
60
+ "@backstage/backend-test-utils": "1.0.1-next.1",
61
+ "@backstage/cli": "0.28.0-next.1",
61
62
  "msw": "^1.2.1"
62
63
  },
63
64
  "configSchema": "config.d.ts"