From: Jacek Date: Tue, 13 Jul 2021 07:27:54 +0000 (+0200) Subject: SONAR-15163 Upgrade Elasticsearch to 7.13.3 X-Git-Tag: 9.1.0.47736~222 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=a9e4920672f6bc93398956af84a6d2de8a2a4eec;p=sonarqube.git SONAR-15163 Upgrade Elasticsearch to 7.13.3 --- diff --git a/build.gradle b/build.gradle index 24602b4d9b7..02d624c8618 100644 --- a/build.gradle +++ b/build.gradle @@ -387,10 +387,10 @@ subprojects { entry 'jetty-server' entry 'jetty-servlet' } - dependency('org.elasticsearch.client:elasticsearch-rest-high-level-client:7.12.1') { + dependency('org.elasticsearch.client:elasticsearch-rest-high-level-client:7.13.3') { exclude 'commons-logging:commons-logging' } - dependency 'org.elasticsearch.plugin:transport-netty4-client:7.12.1' + dependency 'org.elasticsearch.plugin:transport-netty4-client:7.13.3' dependency 'org.elasticsearch:mocksocket:1.0' //analysis-common need to stay at 7.10.2 as it hasn't been published to mvn central dependency 'org.codelibs.elasticsearch.module:analysis-common:7.10.2' diff --git a/gradle.properties b/gradle.properties index e029900b589..ffff9478d13 100644 --- a/gradle.properties +++ b/gradle.properties @@ -11,5 +11,5 @@ org.gradle.vfs.watch=true # https://www.elastic.co/downloads/elasticsearch-no-jdk elasticsearchDownloadUrlPath=https://artifacts.elastic.co/downloads/elasticsearch/ elasticsearchDownloadRepoxUrlPath=https://repox.jfrog.io/artifactory/sonarsource-bucket/sonarqube/elasticsearch/ -elasticsearchDownloadUrlFile=elasticsearch-7.12.1-no-jdk-linux-x86_64.tar.gz -elasticsearchDownloadSha512=c91fd66668977280d7339caf6b4fef9fce5640492f0e2a65bc537c6da8397c801a3727f1ff56b7a1591b11ea47195720c588a4eba473043f829a87cd3dcc0af4 +elasticsearchDownloadUrlFile=elasticsearch-7.13.3-no-jdk-linux-x86_64.tar.gz +elasticsearchDownloadSha512=b79c249b7fa181d56a62ae9997f14dac8a1bd64199573bc08a75dd344241d762f05405f391746492ad3843f097a79980a21ef99173c6c1eebe8d51541f20c01b diff --git a/sonar-application/build.gradle b/sonar-application/build.gradle index ef888bc95dd..85fad09ddbd 100644 --- a/sonar-application/build.gradle +++ b/sonar-application/build.gradle @@ -220,8 +220,8 @@ zip.doFirst { } // Check the size of the archive zip.doLast { - def minLength = 270000000 - def maxLength = 291000000 + def minLength = 273000000 + def maxLength = 294000000 def length = archiveFile.get().asFile.length() if (length < minLength)