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 ES 7.10.2 and prepares release for ODFE 1.13.0.0 (#398)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbbaughe committed Feb 5, 2021
1 parent d82b753 commit 6ad01ed
Show file tree
Hide file tree
Showing 5 changed files with 46 additions and 4 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import java.util.function.Predicate

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

Expand Down Expand Up @@ -121,7 +121,7 @@ ext {
}

group = "com.amazon.opendistroforelasticsearch"
version = "${opendistroVersion}.1"
version = "${opendistroVersion}.0"

dependencies {
compileOnly "org.elasticsearch:elasticsearch:${es_version}"
Expand All @@ -131,7 +131,7 @@ dependencies {
compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.7'
compile "org.jetbrains:annotations:13.0"
compile "com.amazon.opendistroforelasticsearch:notification:${opendistroVersion}.0"
compile "com.amazon.opendistroforelasticsearch:common-utils:${opendistroVersion}.2"
compile "com.amazon.opendistroforelasticsearch:common-utils:${opendistroVersion}.0"

testCompile "org.elasticsearch.test:framework:${es_version}"
testCompile "org.jetbrains.kotlin:kotlin-test:${kotlin_version}"
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.12.0
version = 1.13.0
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
## Version 1.13.0.0 2021-02-05

Compatible with Elasticsearch 7.10.2

### Breaking Changes

* Removes support of "index.opendistro.index_state_management.policy_id" setting ([#357](https://github.com/opendistro-for-elasticsearch/index-management/pull/357))

### Features

* Adds a new ISM Action called RollupAction which allows user to automate one-time rollups on indices ([#371](https://github.com/opendistro-for-elasticsearch/index-management/pull/371))
* Adds support for ISM templates ([#383](https://github.com/opendistro-for-elasticsearch/index-management/pull/383))

### Enhancements

* Adds a snapshot deny list cluster setting to block ISM snapshot writes to configured repositories ([#366](https://github.com/opendistro-for-elasticsearch/index-management/pull/366))
* Adds support to Explain and Get Policy APIs for getting all policies/managed indices ([#352](https://github.com/opendistro-for-elasticsearch/index-management/pull/352))

### Bug fixes

* Fixes bug for continuous rollups getting exceptions for Instant types ([#373](https://github.com/opendistro-for-elasticsearch/index-management/pull/373))
* Fixes handling various date formats for DateHistogram source field in continuous rollups ([#385](https://github.com/opendistro-for-elasticsearch/index-management/pull/385))
* Removes the metric requirement for ISM Rollup action ([#389](https://github.com/opendistro-for-elasticsearch/index-management/pull/389))
* Fixes transition step using incorrect step start time if state has no actions ([#381](https://github.com/opendistro-for-elasticsearch/index-management/pull/381))
* Fixes tests relying on exact seqNo match ([#397](https://github.com/opendistro-for-elasticsearch/index-management/pull/397))

### Infrastructure

* Adds support for https remote integration tests ([#379](https://github.com/opendistro-for-elasticsearch/index-management/pull/379))
* Renames plugin name to standardized name ([#390](https://github.com/opendistro-for-elasticsearch/index-management/pull/390))
* Fixes deb arch and renames deb/rpm artifacts to standardized names ([#391](https://github.com/opendistro-for-elasticsearch/index-management/pull/391))
* Fixes numNodes gradle property ([#393](https://github.com/opendistro-for-elasticsearch/index-management/pull/393))
* Changes release workflow to use new staging bucket for artifacts ([#378](https://github.com/opendistro-for-elasticsearch/index-management/pull/378))

### Documentation

* Adds RFC for Transforms ([#359](https://github.com/opendistro-for-elasticsearch/index-management/pull/359))

### Maintenance

* Adds support for Elasticsearch 7.10.2 ([#398](https://github.com/opendistro-for-elasticsearch/index-management/pull/398))
* Fixes reported CVEs ([#395](https://github.com/opendistro-for-elasticsearch/index-management/pull/395))
Binary file not shown.
Binary file not shown.

0 comments on commit 6ad01ed

Please sign in to comment.