Skip to content
This repository was archived by the owner on Aug 2, 2022. It is now read-only.

Commit dd52db4

Browse files
authored
Adds support for Elasticsearch 7.9 (#283)
* Adds support for Elasticsearch 7.9 * Updates notification and job scheduler spi dependencies * Updates release notes naming
1 parent a8ac5a3 commit dd52db4

12 files changed

+39
-5
lines changed

β€Žbuild.gradle

+13-4
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
buildscript {
1717
ext {
18-
es_version = System.getProperty("es.version", "7.8.0")
18+
es_version = System.getProperty("es.version", "7.9.0")
1919
kotlin_version = System.getProperty("kotlin.version", "1.3.72")
2020
}
2121

@@ -81,18 +81,27 @@ configurations.testCompile {
8181
exclude module: "securemock"
8282
}
8383

84+
configurations.all {
85+
if (it.state != Configuration.State.UNRESOLVED) return
86+
resolutionStrategy {
87+
force "org.jetbrains.kotlin:kotlin-stdlib:${kotlin_version}"
88+
force "org.jetbrains.kotlin:kotlin-stdlib-common:${kotlin_version}"
89+
}
90+
}
91+
8492
dependencies {
8593
compileOnly "org.elasticsearch:elasticsearch:${es_version}"
86-
compileOnly "com.amazon.opendistroforelasticsearch:opendistro-job-scheduler-spi:1.9.0.0"
94+
compileOnly "com.amazon.opendistroforelasticsearch:opendistro-job-scheduler-spi:1.10.0.0"
8795
compile "org.jetbrains.kotlin:kotlin-stdlib:${kotlin_version}"
8896
compile "org.jetbrains.kotlin:kotlin-stdlib-common:${kotlin_version}"
89-
compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.2.1'
97+
compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.7'
9098
compile "org.jetbrains:annotations:13.0"
91-
compile "com.amazon.opendistroforelasticsearch:notification:1.9.0.0"
99+
compile "com.amazon.opendistroforelasticsearch:notification:1.10.0.0"
92100

93101
testCompile "org.elasticsearch.test:framework:${es_version}"
94102
testCompile "org.jetbrains.kotlin:kotlin-test:${kotlin_version}"
95103
testImplementation "com.nhaarman.mockitokotlin2:mockito-kotlin:2.2.0"
104+
testCompile "org.mockito:mockito-core:2.23.0"
96105

97106
ktlint "com.pinterest:ktlint:0.33.0"
98107
}

β€Žgradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# permissions and limitations under the License.
1414
#
1515

16-
version = 1.9.0
16+
version = 1.10.0
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
## Version 1.10.0.0 (2020-8-18)
2+
3+
Compatible with Elasticsearch 7.9.
4+
5+
### Features
6+
* Implemented allocation action which can be used in index state management [#106](https://github.com/opendistro-for-elasticsearch/index-management/pull/106)
7+
8+
### Enhancements
9+
* Changes implementation of ChangePolicy REST API to use MultiGet inste… [#253](https://github.com/opendistro-for-elasticsearch/index-management/pull/253)
10+
11+
### Bug Fixes
12+
* Fixes snapshot issues, adds history mapping update workflow, adds tests [#255](https://github.com/opendistro-for-elasticsearch/index-management/pull/255)
13+
* Fixes force merge failing on long executions, changes some action mes… [#267](https://github.com/opendistro-for-elasticsearch/index-management/pull/267)
14+
15+
### Infrastructure
16+
* Adds codecov yml file to reduce flakiness in coverage check [#251](https://github.com/opendistro-for-elasticsearch/index-management/pull/251)
17+
* Adds support for multi-node run/testing and updates tests [#254](https://github.com/opendistro-for-elasticsearch/index-management/pull/254)
18+
* Adds multi node test workflow [#256](https://github.com/opendistro-for-elasticsearch/index-management/pull/256)
19+
* release notes automation [#258](https://github.com/opendistro-for-elasticsearch/index-management/pull/258)
20+
21+
### Documentation
22+
* Adds rollup-rfc to docs [#248](https://github.com/opendistro-for-elasticsearch/index-management/pull/248)
23+
24+
### Maintenance
25+
* Adds support for Elasticsearch 7.9 [#283](https://github.com/opendistro-for-elasticsearch/index-management/pull/283)
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
Β (0)