@backstage/plugin-search-backend-module-elasticsearch 0.0.7 → 0.0.10

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +33 -0
  2. package/package.json +17 -14
package/CHANGELOG.md CHANGED
@@ -1,5 +1,38 @@
1
1
  # @backstage/plugin-search-backend-module-elasticsearch
2
2
 
3
+ ## 0.0.10
4
+
5
+ ### Patch Changes
6
+
7
+ - Fix for the previous release with missing type declarations.
8
+ - Updated dependencies
9
+ - @backstage/config@0.1.15
10
+ - @backstage/search-common@0.2.4
11
+
12
+ ## 0.0.9
13
+
14
+ ### Patch Changes
15
+
16
+ - c77c5c7eb6: Added `backstage.role` to `package.json`
17
+ - 4c0332e55c: chore(deps-dev): bump `@elastic/elasticsearch-mock` from 0.3.0 to 1.0.0
18
+ - Updated dependencies
19
+ - @backstage/config@0.1.14
20
+ - @backstage/search-common@0.2.3
21
+
22
+ ## 0.0.8
23
+
24
+ ### Patch Changes
25
+
26
+ - Updated dependencies
27
+ - @backstage/config@0.1.13
28
+
29
+ ## 0.0.8-next.0
30
+
31
+ ### Patch Changes
32
+
33
+ - Updated dependencies
34
+ - @backstage/config@0.1.13-next.0
35
+
3
36
  ## 0.0.7
4
37
 
5
38
  ### Patch Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-search-backend-module-elasticsearch",
3
3
  "description": "A module for the search backend that implements search using ElasticSearch",
4
- "version": "0.0.7",
4
+ "version": "0.0.10",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -10,19 +10,22 @@
10
10
  "main": "dist/index.cjs.js",
11
11
  "types": "dist/index.d.ts"
12
12
  },
13
+ "backstage": {
14
+ "role": "backend-plugin-module"
15
+ },
13
16
  "scripts": {
14
- "start": "backstage-cli backend:dev",
15
- "build": "backstage-cli backend:build",
16
- "lint": "backstage-cli lint",
17
- "test": "backstage-cli test",
18
- "prepack": "backstage-cli prepack",
19
- "postpack": "backstage-cli postpack",
20
- "clean": "backstage-cli clean"
17
+ "start": "backstage-cli package start",
18
+ "build": "backstage-cli package build",
19
+ "lint": "backstage-cli package lint",
20
+ "test": "backstage-cli package test",
21
+ "prepack": "backstage-cli package prepack",
22
+ "postpack": "backstage-cli package postpack",
23
+ "clean": "backstage-cli package clean"
21
24
  },
22
25
  "dependencies": {
23
26
  "@acuris/aws-es-connection": "^2.2.0",
24
- "@backstage/config": "^0.1.8",
25
- "@backstage/search-common": "^0.2.0",
27
+ "@backstage/config": "^0.1.15",
28
+ "@backstage/search-common": "^0.2.4",
26
29
  "@elastic/elasticsearch": "7.13.0",
27
30
  "aws-sdk": "^2.948.0",
28
31
  "elastic-builder": "^2.16.0",
@@ -30,9 +33,9 @@
30
33
  "winston": "^3.2.1"
31
34
  },
32
35
  "devDependencies": {
33
- "@backstage/backend-common": "^0.9.14",
34
- "@backstage/cli": "^0.10.2",
35
- "@elastic/elasticsearch-mock": "^0.3.0"
36
+ "@backstage/backend-common": "^0.10.9",
37
+ "@backstage/cli": "^0.14.0",
38
+ "@elastic/elasticsearch-mock": "^1.0.0"
36
39
  },
37
40
  "files": [
38
41
  "dist",
@@ -42,5 +45,5 @@
42
45
  "testEnvironment": "node"
43
46
  },
44
47
  "configSchema": "config.d.ts",
45
- "gitHead": "9ff0f1e76d4510edda2f1b1b3e58cba168a76190"
48
+ "gitHead": "e244b348c473700e7d5e5fbcef38bd9f9fd1d0ba"
46
49
  }