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

Commit

Permalink
Adds support for Elasticsearch 7.9 (#283)
Browse files Browse the repository at this point in the history
* Adds support for Elasticsearch 7.9

* Updates notification and job scheduler spi dependencies

* Updates release notes naming
  • Loading branch information
dbbaughe authored Aug 21, 2020
1 parent a8ac5a3 commit dd52db4
Show file tree
Hide file tree
Showing 12 changed files with 39 additions and 5 deletions.
17 changes: 13 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

buildscript {
ext {
es_version = System.getProperty("es.version", "7.8.0")
es_version = System.getProperty("es.version", "7.9.0")
kotlin_version = System.getProperty("kotlin.version", "1.3.72")
}

Expand Down Expand Up @@ -81,18 +81,27 @@ configurations.testCompile {
exclude module: "securemock"
}

configurations.all {
if (it.state != Configuration.State.UNRESOLVED) return
resolutionStrategy {
force "org.jetbrains.kotlin:kotlin-stdlib:${kotlin_version}"
force "org.jetbrains.kotlin:kotlin-stdlib-common:${kotlin_version}"
}
}

dependencies {
compileOnly "org.elasticsearch:elasticsearch:${es_version}"
compileOnly "com.amazon.opendistroforelasticsearch:opendistro-job-scheduler-spi:1.9.0.0"
compileOnly "com.amazon.opendistroforelasticsearch:opendistro-job-scheduler-spi:1.10.0.0"
compile "org.jetbrains.kotlin:kotlin-stdlib:${kotlin_version}"
compile "org.jetbrains.kotlin:kotlin-stdlib-common:${kotlin_version}"
compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.2.1'
compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.7'
compile "org.jetbrains:annotations:13.0"
compile "com.amazon.opendistroforelasticsearch:notification:1.9.0.0"
compile "com.amazon.opendistroforelasticsearch:notification:1.10.0.0"

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

ktlint "com.pinterest:ktlint:0.33.0"
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# permissions and limitations under the License.
#

version = 1.9.0
version = 1.10.0
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
## Version 1.10.0.0 (2020-8-18)

Compatible with Elasticsearch 7.9.

### Features
* Implemented allocation action which can be used in index state management [#106](https://github.com/opendistro-for-elasticsearch/index-management/pull/106)

### Enhancements
* Changes implementation of ChangePolicy REST API to use MultiGet inste… [#253](https://github.com/opendistro-for-elasticsearch/index-management/pull/253)

### Bug Fixes
* Fixes snapshot issues, adds history mapping update workflow, adds tests [#255](https://github.com/opendistro-for-elasticsearch/index-management/pull/255)
* Fixes force merge failing on long executions, changes some action mes… [#267](https://github.com/opendistro-for-elasticsearch/index-management/pull/267)

### Infrastructure
* Adds codecov yml file to reduce flakiness in coverage check [#251](https://github.com/opendistro-for-elasticsearch/index-management/pull/251)
* Adds support for multi-node run/testing and updates tests [#254](https://github.com/opendistro-for-elasticsearch/index-management/pull/254)
* Adds multi node test workflow [#256](https://github.com/opendistro-for-elasticsearch/index-management/pull/256)
* release notes automation [#258](https://github.com/opendistro-for-elasticsearch/index-management/pull/258)

### Documentation
* Adds rollup-rfc to docs [#248](https://github.com/opendistro-for-elasticsearch/index-management/pull/248)

### Maintenance
* 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 comments on commit dd52db4

Please sign in to comment.