Skip to content

Commit 9e4912f

Browse files
authored
Update elasticsearch-java client dependency (#155)
1 parent aa1cb45 commit 9e4912f

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 0.1.12
2+
- Updates Elasticsearch Java client used[#155](https://github.com/elastic/logstash-filter-elastic_integration/pull/155)
3+
14
## 0.1.11
25
- [DOC] Documents that integrations are designed to work best with data streams and ECS enabled [#153](https://github.com/elastic/logstash-filter-elastic_integration/pull/153)
36

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.11
1+
0.1.12

build.gradle

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,12 @@ shadowJar {
6767
}
6868

6969
dependencies {
70-
elasticsearchClient 'co.elastic.clients:elasticsearch-java:8.11.1'
70+
elasticsearchClient('co.elastic.clients:elasticsearch-java') {
71+
// brings latest version available for 8.x branch
72+
version {
73+
strictly('[8.0, 9.0[')
74+
}
75+
}
7176
elasticsearchMinimalCore fileTree(dir: { importMinimalElasticsearch.jars }, include: ["*.jar"])
7277

7378
// Logstash core and its known-provided and required dependencies

0 commit comments

Comments
 (0)