@backstage/plugin-search-backend-module-elasticsearch 1.7.8-next.0 → 1.7.8

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 +22 -0
  2. package/package.json +10 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # @backstage/plugin-search-backend-module-elasticsearch
2
2
 
3
+ ## 1.7.8
4
+
5
+ ### Patch Changes
6
+
7
+ - 71c22f3: Removed/moved unused dependencies
8
+ - 05f60e1: Refactored constructor parameter properties to explicit property declarations for compatibility with TypeScript's `erasableSyntaxOnly` setting. This internal refactoring maintains all existing functionality while ensuring TypeScript compilation compatibility.
9
+ - Updated dependencies
10
+ - @backstage/backend-plugin-api@1.5.0
11
+ - @backstage/plugin-search-backend-node@1.3.17
12
+ - @backstage/config@1.3.6
13
+ - @backstage/integration-aws-node@0.1.19
14
+ - @backstage/plugin-search-common@1.2.21
15
+
16
+ ## 1.7.8-next.1
17
+
18
+ ### Patch Changes
19
+
20
+ - 71c22f3: Removed/moved unused dependencies
21
+ - Updated dependencies
22
+ - @backstage/backend-plugin-api@1.5.0-next.1
23
+ - @backstage/plugin-search-backend-node@1.3.17-next.1
24
+
3
25
  ## 1.7.8-next.0
4
26
 
5
27
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-search-backend-module-elasticsearch",
3
- "version": "1.7.8-next.0",
3
+ "version": "1.7.8",
4
4
  "description": "A module for the search backend that implements search using ElasticSearch",
5
5
  "backstage": {
6
6
  "role": "backend-plugin-module",
@@ -62,11 +62,11 @@
62
62
  "test": "backstage-cli package test"
63
63
  },
64
64
  "dependencies": {
65
- "@backstage/backend-plugin-api": "1.4.5-next.0",
66
- "@backstage/config": "1.3.6-next.0",
67
- "@backstage/integration-aws-node": "0.1.19-next.0",
68
- "@backstage/plugin-search-backend-node": "1.3.17-next.0",
69
- "@backstage/plugin-search-common": "1.2.21-next.0",
65
+ "@backstage/backend-plugin-api": "^1.5.0",
66
+ "@backstage/config": "^1.3.6",
67
+ "@backstage/integration-aws-node": "^0.1.19",
68
+ "@backstage/plugin-search-backend-node": "^1.3.17",
69
+ "@backstage/plugin-search-common": "^1.2.21",
70
70
  "@elastic/elasticsearch": "^7.13.0",
71
71
  "@opensearch-project/opensearch": "^2.2.1",
72
72
  "aws4": "^1.12.0",
@@ -75,10 +75,11 @@
75
75
  "uuid": "^11.0.0"
76
76
  },
77
77
  "devDependencies": {
78
- "@backstage/backend-test-utils": "1.10.0-next.0",
79
- "@backstage/cli": "0.34.5-next.0",
78
+ "@backstage/backend-test-utils": "^1.10.0",
79
+ "@backstage/cli": "^0.34.5",
80
80
  "@elastic/elasticsearch-mock": "^1.0.0",
81
- "@short.io/opensearch-mock": "^0.4.0"
81
+ "@short.io/opensearch-mock": "^0.4.0",
82
+ "@types/aws4": "^1.5.1"
82
83
  },
83
84
  "configSchema": "config.d.ts"
84
85
  }