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

Upgrade to ES 7.2.0 #89

Merged
merged 2 commits into from
Jul 24, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ buildscript {
apply from: 'build-tools/repositories.gradle'

ext {
es_version = '7.1.1'
es_version = '7.2.0'
kotlin_version = '1.3.21'
}

Expand All @@ -41,7 +41,7 @@ apply plugin: 'jacoco'
apply from: 'build-tools/merged-coverage.gradle'

ext {
opendistroVersion = '1.1.0'
opendistroVersion = '1.2.0'
isSnapshot = "true" == System.getProperty("build.snapshot", "true")
}

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.2.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-5.5.1-all.zip
2 changes: 1 addition & 1 deletion notification/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ apply plugin: 'jacoco'
dependencies {
compileOnly "org.elasticsearch:elasticsearch:${es_version}"
compile "org.apache.httpcomponents:httpcore:4.4.5"
compile "org.apache.httpcomponents:httpclient:4.5.7"
compile "org.apache.httpcomponents:httpclient:4.5.8"
seraphjiang marked this conversation as resolved.
Show resolved Hide resolved

testImplementation "org.elasticsearch.test:framework:${es_version}"
testImplementation "org.easymock:easymock:4.0.1"
Expand Down
10 changes: 9 additions & 1 deletion opendistro-elasticsearch-alerting.release-notes.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
## Version 1.1.0 (Current)
## Version 1.2.0 (Current)

### New Features
* Adds support for Elasticsearch 7.2.0 - [PR #89](https://github.com/opendistro-for-elasticsearch/alerting/pull/89)

### Bug fixes
* Fixes integTestRunner build task - [PR #83](https://github.com/opendistro-for-elasticsearch/alerting/pull/83)

## 2019-07-25, Version 1.1.0

### New Features
* Adds support for Elasticsearch 7.1.1 - [PR #74](https://github.com/opendistro-for-elasticsearch/alerting/pull/74)
Expand Down