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

Commit 6ad01ed

Browse files
authored
Adds support for ES 7.10.2 and prepares release for ODFE 1.13.0.0 (#398)
1 parent d82b753 commit 6ad01ed

File tree

5 files changed

+46
-4
lines changed

5 files changed

+46
-4
lines changed

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import java.util.function.Predicate
2020

2121
buildscript {
2222
ext {
23-
es_version = System.getProperty("es.version", "7.10.0")
23+
es_version = System.getProperty("es.version", "7.10.2")
2424
kotlin_version = System.getProperty("kotlin.version", "1.3.72")
2525
}
2626

@@ -121,7 +121,7 @@ ext {
121121
}
122122

123123
group = "com.amazon.opendistroforelasticsearch"
124-
version = "${opendistroVersion}.1"
124+
version = "${opendistroVersion}.0"
125125

126126
dependencies {
127127
compileOnly "org.elasticsearch:elasticsearch:${es_version}"
@@ -131,7 +131,7 @@ dependencies {
131131
compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.7'
132132
compile "org.jetbrains:annotations:13.0"
133133
compile "com.amazon.opendistroforelasticsearch:notification:${opendistroVersion}.0"
134-
compile "com.amazon.opendistroforelasticsearch:common-utils:${opendistroVersion}.2"
134+
compile "com.amazon.opendistroforelasticsearch:common-utils:${opendistroVersion}.0"
135135

136136
testCompile "org.elasticsearch.test:framework:${es_version}"
137137
testCompile "org.jetbrains.kotlin:kotlin-test:${kotlin_version}"

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# permissions and limitations under the License.
1414
#
1515

16-
version = 1.12.0
16+
version = 1.13.0
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
## Version 1.13.0.0 2021-02-05
2+
3+
Compatible with Elasticsearch 7.10.2
4+
5+
### Breaking Changes
6+
7+
* Removes support of "index.opendistro.index_state_management.policy_id" setting ([#357](https://github.com/opendistro-for-elasticsearch/index-management/pull/357))
8+
9+
### Features
10+
11+
* 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))
12+
* Adds support for ISM templates ([#383](https://github.com/opendistro-for-elasticsearch/index-management/pull/383))
13+
14+
### Enhancements
15+
16+
* 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))
17+
* 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))
18+
19+
### Bug fixes
20+
21+
* Fixes bug for continuous rollups getting exceptions for Instant types ([#373](https://github.com/opendistro-for-elasticsearch/index-management/pull/373))
22+
* Fixes handling various date formats for DateHistogram source field in continuous rollups ([#385](https://github.com/opendistro-for-elasticsearch/index-management/pull/385))
23+
* Removes the metric requirement for ISM Rollup action ([#389](https://github.com/opendistro-for-elasticsearch/index-management/pull/389))
24+
* Fixes transition step using incorrect step start time if state has no actions ([#381](https://github.com/opendistro-for-elasticsearch/index-management/pull/381))
25+
* Fixes tests relying on exact seqNo match ([#397](https://github.com/opendistro-for-elasticsearch/index-management/pull/397))
26+
27+
### Infrastructure
28+
29+
* Adds support for https remote integration tests ([#379](https://github.com/opendistro-for-elasticsearch/index-management/pull/379))
30+
* Renames plugin name to standardized name ([#390](https://github.com/opendistro-for-elasticsearch/index-management/pull/390))
31+
* Fixes deb arch and renames deb/rpm artifacts to standardized names ([#391](https://github.com/opendistro-for-elasticsearch/index-management/pull/391))
32+
* Fixes numNodes gradle property ([#393](https://github.com/opendistro-for-elasticsearch/index-management/pull/393))
33+
* Changes release workflow to use new staging bucket for artifacts ([#378](https://github.com/opendistro-for-elasticsearch/index-management/pull/378))
34+
35+
### Documentation
36+
37+
* Adds RFC for Transforms ([#359](https://github.com/opendistro-for-elasticsearch/index-management/pull/359))
38+
39+
### Maintenance
40+
41+
* Adds support for Elasticsearch 7.10.2 ([#398](https://github.com/opendistro-for-elasticsearch/index-management/pull/398))
42+
* Fixes reported CVEs ([#395](https://github.com/opendistro-for-elasticsearch/index-management/pull/395))
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)