@backstage/plugin-search-backend-module-elasticsearch 1.1.1-next.2 → 1.1.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # @backstage/plugin-search-backend-module-elasticsearch
2
2
 
3
+ ## 1.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/plugin-search-backend-node@1.1.2
9
+
10
+ ## 1.1.1
11
+
12
+ ### Patch Changes
13
+
14
+ - 011bd518b7: Fixed spelling mistakes in documentation.
15
+ - 1e1a9fe979: Fixed a bug that could cause an indexing process to silently fail, timeout, and accumulate stale indices.
16
+ - 2a49ffbcb3: Improved documentation on the `ElasticSearchSearchEngine.newClient()` method.
17
+ - 56633804dd: Fixed a bug that could cause the backstage backend to unexpectedly terminate when client errors were encountered during the indexing process.
18
+ - aa33a06894: Improved index throughput by optimizing when and how many documents were made available to the bulk client.
19
+ - Updated dependencies
20
+ - @backstage/plugin-search-backend-node@1.1.1
21
+ - @backstage/config@1.0.6
22
+ - @backstage/plugin-search-common@1.2.1
23
+
3
24
  ## 1.1.1-next.2
4
25
 
5
26
  ### 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": "1.1.1-next.2",
4
+ "version": "1.1.2",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -23,9 +23,9 @@
23
23
  "clean": "backstage-cli package clean"
24
24
  },
25
25
  "dependencies": {
26
- "@backstage/config": "^1.0.6-next.0",
27
- "@backstage/plugin-search-backend-node": "^1.1.1-next.2",
28
- "@backstage/plugin-search-common": "^1.2.1-next.0",
26
+ "@backstage/config": "^1.0.6",
27
+ "@backstage/plugin-search-backend-node": "^1.1.2",
28
+ "@backstage/plugin-search-common": "^1.2.1",
29
29
  "@elastic/elasticsearch": "^7.13.0",
30
30
  "@opensearch-project/opensearch": "^2.0.0",
31
31
  "aws-os-connection": "^0.2.0",
@@ -36,8 +36,8 @@
36
36
  "winston": "^3.2.1"
37
37
  },
38
38
  "devDependencies": {
39
- "@backstage/backend-common": "^0.18.0-next.1",
40
- "@backstage/cli": "^0.22.1-next.2",
39
+ "@backstage/backend-common": "^0.18.1",
40
+ "@backstage/cli": "^0.22.1",
41
41
  "@elastic/elasticsearch-mock": "^1.0.0",
42
42
  "@short.io/opensearch-mock": "^0.3.1"
43
43
  },