@backstage/plugin-search-backend-module-elasticsearch 1.3.8 → 1.3.9

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,22 +1,54 @@
1
1
  # @backstage/plugin-search-backend-module-elasticsearch
2
2
 
3
- ## 1.3.8
3
+ ## 1.3.9
4
4
 
5
5
  ### Patch Changes
6
6
 
7
+ - 3963d0b885: Ensure that all relevant config fields are properly marked as secret
7
8
  - Updated dependencies
8
- - @backstage/backend-plugin-api@0.6.5
9
- - @backstage/backend-common@0.19.7
10
- - @backstage/plugin-search-backend-node@1.2.9
9
+ - @backstage/backend-common@0.19.8
10
+ - @backstage/backend-plugin-api@0.6.6
11
+ - @backstage/plugin-search-backend-node@1.2.10
12
+ - @backstage/config@1.1.1
13
+ - @backstage/integration-aws-node@0.1.7
14
+ - @backstage/plugin-search-common@1.2.7
11
15
 
12
- ## 1.3.7
16
+ ## 1.3.9-next.2
13
17
 
14
18
  ### Patch Changes
15
19
 
16
20
  - Updated dependencies
17
- - @backstage/backend-plugin-api@0.6.4
18
- - @backstage/backend-common@0.19.6
19
- - @backstage/plugin-search-backend-node@1.2.8
21
+ - @backstage/backend-common@0.19.8-next.2
22
+ - @backstage/plugin-search-backend-node@1.2.10-next.2
23
+ - @backstage/backend-plugin-api@0.6.6-next.2
24
+ - @backstage/config@1.1.1-next.0
25
+ - @backstage/integration-aws-node@0.1.7-next.0
26
+ - @backstage/plugin-search-common@1.2.7-next.0
27
+
28
+ ## 1.3.8-next.1
29
+
30
+ ### Patch Changes
31
+
32
+ - Updated dependencies
33
+ - @backstage/backend-common@0.19.7-next.1
34
+ - @backstage/backend-plugin-api@0.6.5-next.1
35
+ - @backstage/plugin-search-backend-node@1.2.9-next.1
36
+ - @backstage/config@1.1.0
37
+ - @backstage/integration-aws-node@0.1.6
38
+ - @backstage/plugin-search-common@1.2.6
39
+
40
+ ## 1.3.8-next.0
41
+
42
+ ### Patch Changes
43
+
44
+ - 3963d0b885: Ensure that all relevant config fields are properly marked as secret
45
+ - Updated dependencies
46
+ - @backstage/backend-common@0.19.7-next.0
47
+ - @backstage/config@1.1.0
48
+ - @backstage/integration-aws-node@0.1.6
49
+ - @backstage/backend-plugin-api@0.6.5-next.0
50
+ - @backstage/plugin-search-backend-node@1.2.9-next.0
51
+ - @backstage/plugin-search-common@1.2.6
20
52
 
21
53
  ## 1.3.6
22
54
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-search-backend-module-elasticsearch",
3
- "version": "1.3.8",
3
+ "version": "1.3.9",
4
4
  "main": "../dist/alpha.cjs.js",
5
5
  "types": "../dist/alpha.d.ts"
6
6
  }
package/config.d.ts CHANGED
@@ -192,6 +192,9 @@ export interface Config {
192
192
  password: string;
193
193
  }
194
194
  | {
195
+ /**
196
+ * @visibility secret
197
+ */
195
198
  apiKey: string;
196
199
  };
197
200
  }
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": "1.3.8",
4
+ "version": "1.3.9",
5
5
  "main": "./dist/index.cjs.js",
6
6
  "types": "./dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -40,12 +40,12 @@
40
40
  "clean": "backstage-cli package clean"
41
41
  },
42
42
  "dependencies": {
43
- "@backstage/backend-common": "^0.19.7",
44
- "@backstage/backend-plugin-api": "^0.6.5",
45
- "@backstage/config": "^1.1.0",
46
- "@backstage/integration-aws-node": "^0.1.6",
47
- "@backstage/plugin-search-backend-node": "^1.2.9",
48
- "@backstage/plugin-search-common": "^1.2.6",
43
+ "@backstage/backend-common": "^0.19.8",
44
+ "@backstage/backend-plugin-api": "^0.6.6",
45
+ "@backstage/config": "^1.1.1",
46
+ "@backstage/integration-aws-node": "^0.1.7",
47
+ "@backstage/plugin-search-backend-node": "^1.2.10",
48
+ "@backstage/plugin-search-common": "^1.2.7",
49
49
  "@elastic/elasticsearch": "^7.13.0",
50
50
  "@opensearch-project/opensearch": "^2.2.1",
51
51
  "aws4": "^1.12.0",
@@ -55,8 +55,8 @@
55
55
  "winston": "^3.2.1"
56
56
  },
57
57
  "devDependencies": {
58
- "@backstage/backend-common": "^0.19.7",
59
- "@backstage/cli": "^0.22.13",
58
+ "@backstage/backend-common": "^0.19.8",
59
+ "@backstage/cli": "^0.23.0",
60
60
  "@elastic/elasticsearch-mock": "^1.0.0",
61
61
  "@short.io/opensearch-mock": "^0.3.1"
62
62
  },