diff options
author | Jacek <jacek.poreda@sonarsource.com> | 2021-04-29 13:35:50 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2021-04-29 20:03:30 +0000 |
commit | c0ac745ba575001a6b004f83326486cb0a7f4a97 (patch) | |
tree | 15630cdc0e015ff07e1b707c7c514ff2b6316b4e /sonar-application | |
parent | 791f5d4a607822d3536644ae77042badfc04273e (diff) | |
download | sonarqube-c0ac745ba575001a6b004f83326486cb0a7f4a97.tar.gz sonarqube-c0ac745ba575001a6b004f83326486cb0a7f4a97.zip |
SONAR-14690 Update Elasticsearch binaries to 7.12.1
Downloaded from https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.12.1-no-jdk-linux-x86_64.tar.gz
Diffstat (limited to 'sonar-application')
169 files changed, 216 insertions, 345 deletions
diff --git a/sonar-application/src/main/assembly/elasticsearch/NOTICE.txt b/sonar-application/src/main/assembly/elasticsearch/NOTICE.txt index de89da10ef4..cd835fd93dd 100644 --- a/sonar-application/src/main/assembly/elasticsearch/NOTICE.txt +++ b/sonar-application/src/main/assembly/elasticsearch/NOTICE.txt @@ -3002,27 +3002,27 @@ Apache License ================================================================================ -InetAddresses.java +DateUtilsRounding.java ================================================================================ - Copyright (C) 2008 The Guava Authors + Copyright 2001-2014 Stephen Colebourne - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 + http://www.apache.org/licenses/LICENSE-2.0 - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. ================================================================================ -package org.elasticsearch.common.inject; +InetAddresses.java ================================================================================ - Copyright (C) 2006 Google Inc. + Copyright (C) 2008 The Guava Authors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -3036,8 +3036,6 @@ package org.elasticsearch.common.inject; See the License for the specific language governing permissions and limitations under the License. - Modifications copyright (C) 2020 Elasticsearch B.V. - ================================================================================ XMoreLikeThis.java @@ -3080,21 +3078,23 @@ JsonThrowablePatternConverter.java ================================================================================ -DateUtilsRounding.java +package org.elasticsearch.common.inject; ================================================================================ - Copyright 2001-2014 Stephen Colebourne + Copyright (C) 2006 Google Inc. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 + http://www.apache.org/licenses/LICENSE-2.0 - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + Modifications copyright (C) 2020 Elasticsearch B.V. ================================================================================ diff --git a/sonar-application/src/main/assembly/elasticsearch/README.asciidoc b/sonar-application/src/main/assembly/elasticsearch/README.asciidoc index bbe94b3ca27..1391b1903f7 100644 --- a/sonar-application/src/main/assembly/elasticsearch/README.asciidoc +++ b/sonar-application/src/main/assembly/elasticsearch/README.asciidoc @@ -1,201 +1,51 @@ = Elasticsearch -== A Distributed RESTful Search Engine +Elasticsearch is the distributed, RESTful search and analytics engine at the +heart of the https://www.elastic.co/products[Elastic Stack]. You can use +Elasticsearch to store, search, and manage data for: -=== https://www.elastic.co/products/elasticsearch[https://www.elastic.co/products/elasticsearch] +* Logs +* Metrics +* A search backend +* Application monitoring +* Endpoint security -Elasticsearch is a distributed RESTful search engine built for the cloud. Features include: +\... and more! -* Distributed and Highly Available Search Engine. -** Each index is fully sharded with a configurable number of shards. -** Each shard can have one or more replicas. -** Read / Search operations performed on any of the replica shards. -* Multi-tenant. -** Support for more than one index. -** Index level configuration (number of shards, index storage, etc.). -* Various set of APIs -** HTTP RESTful API -** All APIs perform automatic node operation rerouting. -* Document oriented -** No need for upfront schema definition. -** Schema can be defined for customization of the indexing process. -* Reliable, Asynchronous Write Behind for long term persistency. -* Near real-time search. -* Built on top of Apache Lucene -** Each shard is a fully functional Lucene index -** All the power of Lucene easily exposed through simple configuration and plugins. -* Per operation consistency -** Single document-level operations are atomic, consistent, isolated, and durable. +To learn more about Elasticsearch's features and capabilities, see our +https://www.elastic.co/products/elasticsearch[product page]. -== Getting Started +[[get-started]] +== Get started -First of all, DON'T PANIC. It will take 5 minutes to get the gist of what Elasticsearch is all about. +The simplest way to set up Elasticsearch is to create a managed deployment with +https://www.elastic.co/cloud/as-a-service[Elasticsearch Service on Elastic +Cloud]. -=== Installation +If you prefer to install and manage Elasticsearch yourself, you can download +the latest version from +https://www.elastic.co/downloads/elasticsearch[elastic.co/downloads/elasticsearch]. -* https://www.elastic.co/downloads/elasticsearch[Download] and unpack the Elasticsearch official distribution. -* Run `bin/elasticsearch` on Linux or macOS. Run `bin\elasticsearch.bat` on Windows. -* Run `curl -X GET http://localhost:9200/` to verify Elasticsearch is running. +For more installation options, see the +https://www.elastic.co/guide/en/elasticsearch/reference/current/install-elasticsearch.html[Elasticsearch installation +documentation]. -=== Indexing +[[upgrade]] +== Upgrade -First, index some sample JSON documents. The first request automatically creates -the `my-index-000001` index. +To upgrade from an earlier version of Elasticsearch, see the +https://www.elastic.co/guide/en/elasticsearch/reference/current/setup-upgrade.html[Elasticsearch upgrade +documentation]. ----- -curl -X POST 'http://localhost:9200/my-index-000001/_doc?pretty' -H 'Content-Type: application/json' -d ' -{ - "@timestamp": "2099-11-15T13:12:00", - "message": "GET /search HTTP/1.1 200 1070000", - "user": { - "id": "kimchy" - } -}' - -curl -X POST 'http://localhost:9200/my-index-000001/_doc?pretty' -H 'Content-Type: application/json' -d ' -{ - "@timestamp": "2099-11-15T14:12:12", - "message": "GET /search HTTP/1.1 200 1070000", - "user": { - "id": "elkbee" - } -}' - -curl -X POST 'http://localhost:9200/my-index-000001/_doc?pretty' -H 'Content-Type: application/json' -d ' -{ - "@timestamp": "2099-11-15T01:46:38", - "message": "GET /search HTTP/1.1 200 1070000", - "user": { - "id": "elkbee" - } -}' ----- - -=== Search - -Next, use a search request to find any documents with a `user.id` of `kimchy`. - ----- -curl -X GET 'http://localhost:9200/my-index-000001/_search?q=user.id:kimchy&pretty=true' ----- - -Instead of a query string, you can use Elasticsearch's -https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl.html[Query -DSL] in the request body. - ----- -curl -X GET 'http://localhost:9200/my-index-000001/_search?pretty=true' -H 'Content-Type: application/json' -d ' -{ - "query" : { - "match" : { "user.id": "kimchy" } - } -}' ----- - -You can also retrieve all documents in `my-index-000001`. - ----- -curl -X GET 'http://localhost:9200/my-index-000001/_search?pretty=true' -H 'Content-Type: application/json' -d ' -{ - "query" : { - "match_all" : {} - } -}' ----- - -During indexing, Elasticsearch automatically mapped the `@timestamp` field as a -date. This lets you run a range search. - ----- -curl -X GET 'http://localhost:9200/my-index-000001/_search?pretty=true' -H 'Content-Type: application/json' -d ' -{ - "query" : { - "range" : { - "@timestamp": { - "from": "2099-11-15T13:00:00", - "to": "2099-11-15T14:00:00" - } - } - } -}' ----- - -=== Multiple indices - -Elasticsearch supports multiple indices. The previous examples used an index -called `my-index-000001`. You can create another index, `my-index-000002`, to -store additional data when `my-index-000001` reaches a certain age or size. You -can also use separate indices to store different types of data. - -You can configure each index differently. The following request -creates `my-index-000002` with two primary shards rather than the default of -one. This may be helpful for larger indices. - ----- -curl -X PUT 'http://localhost:9200/my-index-000002?pretty' -H 'Content-Type: application/json' -d ' -{ - "settings" : { - "index.number_of_shards" : 2 - } -}' ----- - -You can then add a document to `my-index-000002`. - ----- -curl -X POST 'http://localhost:9200/my-index-000002/_doc?pretty' -H 'Content-Type: application/json' -d ' -{ - "@timestamp": "2099-11-16T13:12:00", - "message": "GET /search HTTP/1.1 200 1070000", - "user": { - "id": "kimchy" - } -}' ----- - -You can search and perform other operations on multiple indices with a single -request. The following request searches `my-index-000001` and `my-index-000002`. - ----- -curl -X GET 'http://localhost:9200/my-index-000001,my-index-000002/_search?pretty=true' -H 'Content-Type: application/json' -d ' -{ - "query" : { - "match_all" : {} - } -}' ----- - -You can omit the index from the request path to search all indices. - ----- -curl -X GET 'http://localhost:9200/_search?pretty=true' -H 'Content-Type: application/json' -d ' -{ - "query" : { - "match_all" : {} - } -}' ----- - -=== Distributed, highly available - -Let's face it; things will fail... - -Elasticsearch is a highly available and distributed search engine. Each index is broken down into shards, and each shard can have one or more replicas. By default, an index is created with 1 shard and 1 replica per shard (1/1). Many topologies can be used, including 1/10 (improve search performance) or 20/1 (improve indexing performance, with search executed in a MapReduce fashion across shards). - -To play with the distributed nature of Elasticsearch, bring more nodes up and shut down nodes. The system will continue to serve requests (ensure you use the correct HTTP port) with the latest data indexed. - -=== Where to go from here? - -We have just covered a tiny portion of what Elasticsearch is all about. For more information, please refer to the https://www.elastic.co/products/elasticsearch[elastic.co] website. General questions can be asked on the https://discuss.elastic.co[Elastic Forum] or https://ela.st/slack[on Slack]. The Elasticsearch GitHub repository is reserved for bug reports and feature requests only. - -=== Building from source +[[build-source]] +== Build from source Elasticsearch uses https://gradle.org[Gradle] for its build system. -To build a distribution for your local OS and print its output location upon +To build a distribution for your local OS and print its output location upon completion, run: ---- -./gradlew localDistro +./gradlew localDistro ---- To build a distribution for another platform, run the related command: @@ -210,10 +60,31 @@ To build distributions for all supported platforms, run: ./gradlew assemble ---- -Finished distributions are output to `distributions/archives`. +Distributions are output to `distributions/archives`. + +To run the test suite, see xref:TESTING.asciidoc[TESTING]. + +[[docs]] +== Documentation + +For the complete Elasticsearch documentation visit +https://www.elastic.co/guide/en/elasticsearch/reference/current/index.html[elastic.co]. + +For information about our documentation processes, see the +xref:docs/README.asciidoc[docs README]. + +[[contribute]] +== Contribute + +For contribution guidelines, see xref:CONTRIBUTING.md[CONTRIBUTING]. -See the xref:TESTING.asciidoc[TESTING] for more information about running the Elasticsearch test suite. +[[questions]] +== Questions? Problems? Suggestions? -=== Upgrading from older Elasticsearch versions +* To report a bug or request a feature, create a +https://github.com/elastic/elasticsearch/issues/new/choose[GitHub Issue]. Please +ensure someone else hasn't created an issue for the same topic. -To ensure a smooth upgrade process from earlier versions of Elasticsearch, please see our https://www.elastic.co/guide/en/elasticsearch/reference/current/setup-upgrade.html[upgrade documentation] for more details on the upgrade process. +* Need help using Elasticsearch? Reach out on the +https://discuss.elastic.co[Elastic Forum] or https://ela.st/slack[Slack]. A +fellow community member or Elastic engineer will be happy to help you out. diff --git a/sonar-application/src/main/assembly/elasticsearch/bin/elasticsearch-sql-cli-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/bin/elasticsearch-sql-cli-7.12.1.jar Binary files differindex 7ddb1c3fb50..e005462d5fc 100755 --- a/sonar-application/src/main/assembly/elasticsearch/bin/elasticsearch-sql-cli-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/bin/elasticsearch-sql-cli-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/lib/elasticsearch-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/lib/elasticsearch-7.12.1.jar Binary files differindex c36156000b6..6cb4ed12ecf 100644 --- a/sonar-application/src/main/assembly/elasticsearch/lib/elasticsearch-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/lib/elasticsearch-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/lib/elasticsearch-cli-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/lib/elasticsearch-cli-7.12.1.jar Binary files differindex 4d15c533c16..922e57bbe81 100644 --- a/sonar-application/src/main/assembly/elasticsearch/lib/elasticsearch-cli-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/lib/elasticsearch-cli-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/lib/elasticsearch-core-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/lib/elasticsearch-core-7.12.1.jar Binary files differindex 27652ed1f95..bafa2c35192 100644 --- a/sonar-application/src/main/assembly/elasticsearch/lib/elasticsearch-core-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/lib/elasticsearch-core-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/lib/elasticsearch-geo-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/lib/elasticsearch-geo-7.12.1.jar Binary files differindex 35e261e447e..00f069f582b 100644 --- a/sonar-application/src/main/assembly/elasticsearch/lib/elasticsearch-geo-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/lib/elasticsearch-geo-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/lib/elasticsearch-launchers-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/lib/elasticsearch-launchers-7.12.1.jar Binary files differindex 60805eda149..21131b8328b 100644 --- a/sonar-application/src/main/assembly/elasticsearch/lib/elasticsearch-launchers-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/lib/elasticsearch-launchers-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/lib/elasticsearch-plugin-classloader-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/lib/elasticsearch-plugin-classloader-7.12.1.jar Binary files differindex cdf48b8e172..8d6c8d23457 100644 --- a/sonar-application/src/main/assembly/elasticsearch/lib/elasticsearch-plugin-classloader-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/lib/elasticsearch-plugin-classloader-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/lib/elasticsearch-secure-sm-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/lib/elasticsearch-secure-sm-7.12.1.jar Binary files differindex aac94e0a278..129db2cdd19 100644 --- a/sonar-application/src/main/assembly/elasticsearch/lib/elasticsearch-secure-sm-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/lib/elasticsearch-secure-sm-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/lib/elasticsearch-x-content-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/lib/elasticsearch-x-content-7.12.1.jar Binary files differindex 86dbef07c45..7bbd1cc23f8 100644 --- a/sonar-application/src/main/assembly/elasticsearch/lib/elasticsearch-x-content-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/lib/elasticsearch-x-content-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/lib/java-version-checker-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/lib/java-version-checker-7.12.1.jar Binary files differindex fd52bba80ed..200d1d832bc 100644 --- a/sonar-application/src/main/assembly/elasticsearch/lib/java-version-checker-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/lib/java-version-checker-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/lib/tools/keystore-cli/keystore-cli-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/lib/tools/keystore-cli/keystore-cli-7.12.1.jar Binary files differindex f9cda2f947f..e40f6e97e55 100644 --- a/sonar-application/src/main/assembly/elasticsearch/lib/tools/keystore-cli/keystore-cli-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/lib/tools/keystore-cli/keystore-cli-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/lib/tools/plugin-cli/elasticsearch-plugin-cli-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/lib/tools/plugin-cli/elasticsearch-plugin-cli-7.12.1.jar Binary files differindex 808427ff838..3c51784e5cb 100644 --- a/sonar-application/src/main/assembly/elasticsearch/lib/tools/plugin-cli/elasticsearch-plugin-cli-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/lib/tools/plugin-cli/elasticsearch-plugin-cli-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/lib/tools/security-cli/elasticsearch-security-cli-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/lib/tools/security-cli/elasticsearch-security-cli-7.12.1.jar Binary files differindex 437fb4c49b2..080a08227da 100644 --- a/sonar-application/src/main/assembly/elasticsearch/lib/tools/security-cli/elasticsearch-security-cli-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/lib/tools/security-cli/elasticsearch-security-cli-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-sql/aggs-matrix-stats-client-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/aggs-matrix-stats/aggs-matrix-stats-client-7.12.1.jar Binary files differindex 7bc8a5b57f4..3f484695c8a 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-sql/aggs-matrix-stats-client-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/aggs-matrix-stats/aggs-matrix-stats-client-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/aggs-matrix-stats/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/aggs-matrix-stats/plugin-descriptor.properties index 41254c080fe..5b98679ab7b 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/aggs-matrix-stats/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/aggs-matrix-stats/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=Adds aggregations whose input are a list of numeric fields and output includes a matrix. # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=aggs-matrix-stats @@ -43,7 +43,7 @@ classname=org.elasticsearch.search.aggregations.matrix.MatrixAggregationPlugin java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/analysis-common/analysis-common-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/analysis-common/analysis-common-7.12.1.jar Binary files differindex f1da19cc3d7..95dace95fad 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/analysis-common/analysis-common-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/analysis-common/analysis-common-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/analysis-common/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/analysis-common/plugin-descriptor.properties index 4a6ad47342f..9e0d66e48a0 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/analysis-common/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/analysis-common/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=Adds "built in" analyzers to Elasticsearch. # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=analysis-common @@ -43,7 +43,7 @@ classname=org.elasticsearch.analysis.common.CommonAnalysisPlugin java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/constant-keyword/constant-keyword-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/constant-keyword/constant-keyword-7.12.1.jar Binary files differindex 875702b5098..cc710d6cd0e 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/constant-keyword/constant-keyword-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/constant-keyword/constant-keyword-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/constant-keyword/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/constant-keyword/plugin-descriptor.properties index c288c2b3a81..9ecd1aadc04 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/constant-keyword/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/constant-keyword/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=Module for the constant-keyword field type, which is a specialization of keyword for the case when all documents have the same value. # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=constant-keyword @@ -43,7 +43,7 @@ classname=org.elasticsearch.xpack.constantkeyword.ConstantKeywordMapperPlugin java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/flattened/flattened-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/flattened/flattened-7.12.1.jar Binary files differindex 5c68d6e98b1..6df52c3c66a 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/flattened/flattened-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/flattened/flattened-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/flattened/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/flattened/plugin-descriptor.properties index 439c26e8998..c6faf1f497e 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/flattened/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/flattened/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=Module for the flattened field type, which allows JSON objects to be flattened into a single field. # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=flattened @@ -43,7 +43,7 @@ classname=org.elasticsearch.xpack.flattened.FlattenedMapperPlugin java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/frozen-indices/frozen-indices-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/frozen-indices/frozen-indices-7.12.0.jar Binary files differdeleted file mode 100644 index b693166f530..00000000000 --- a/sonar-application/src/main/assembly/elasticsearch/modules/frozen-indices/frozen-indices-7.12.0.jar +++ /dev/null diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/frozen-indices/frozen-indices-7.12.1.jar b/sonar-application/src/main/assembly/elasticsearch/modules/frozen-indices/frozen-indices-7.12.1.jar Binary files differnew file mode 100644 index 00000000000..ee222d65a9a --- /dev/null +++ b/sonar-application/src/main/assembly/elasticsearch/modules/frozen-indices/frozen-indices-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/frozen-indices/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/frozen-indices/plugin-descriptor.properties index 8036ef67b08..4bde0a40e46 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/frozen-indices/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/frozen-indices/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=A plugin for the frozen indices functionality # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=frozen-indices @@ -43,7 +43,7 @@ classname=org.elasticsearch.xpack.frozen.FrozenIndices java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/ingest-common/elasticsearch-dissect-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/ingest-common/elasticsearch-dissect-7.12.1.jar Binary files differindex 8ad481bd7df..74a58ee9d3a 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/ingest-common/elasticsearch-dissect-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/ingest-common/elasticsearch-dissect-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ml/elasticsearch-grok-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/ingest-common/elasticsearch-grok-7.12.1.jar Binary files differindex c6a216346c1..db303266f59 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ml/elasticsearch-grok-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/ingest-common/elasticsearch-grok-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/ingest-common/ingest-common-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/ingest-common/ingest-common-7.12.1.jar Binary files differindex 940a6588b78..f3d28a1d867 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/ingest-common/ingest-common-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/ingest-common/ingest-common-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/ingest-common/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/ingest-common/plugin-descriptor.properties index a3dfd0d6630..0db9bbdc211 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/ingest-common/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/ingest-common/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=Module for ingest processors that do not require additional security permissions or have large dependencies and resources # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=ingest-common @@ -43,7 +43,7 @@ classname=org.elasticsearch.ingest.common.IngestCommonPlugin java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/ingest-geoip/ingest-geoip-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/ingest-geoip/ingest-geoip-7.12.1.jar Binary files differindex 2adc550e951..486c9c553bc 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/ingest-geoip/ingest-geoip-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/ingest-geoip/ingest-geoip-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/ingest-geoip/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/ingest-geoip/plugin-descriptor.properties index 309c9f1d67b..8ac65187c2e 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/ingest-geoip/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/ingest-geoip/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=Ingest processor that uses looksup geo data based on ip adresses using the Maxmind geo database # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=ingest-geoip @@ -43,7 +43,7 @@ classname=org.elasticsearch.ingest.geoip.IngestGeoIpPlugin java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/ingest-user-agent/ingest-user-agent-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/ingest-user-agent/ingest-user-agent-7.12.1.jar Binary files differindex a18a59cae59..9cee63247e5 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/ingest-user-agent/ingest-user-agent-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/ingest-user-agent/ingest-user-agent-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/ingest-user-agent/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/ingest-user-agent/plugin-descriptor.properties index 98ff4f244a8..249862e1d1e 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/ingest-user-agent/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/ingest-user-agent/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=Ingest processor that extracts information from a user agent # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=ingest-user-agent @@ -43,7 +43,7 @@ classname=org.elasticsearch.ingest.useragent.IngestUserAgentPlugin java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/kibana/elasticsearch-rest-client-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/kibana/elasticsearch-rest-client-7.12.1.jar Binary files differindex 30f3ea28a06..c90e6ff30d7 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/kibana/elasticsearch-rest-client-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/kibana/elasticsearch-rest-client-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/reindex/elasticsearch-ssl-config-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/kibana/elasticsearch-ssl-config-7.12.1.jar Binary files differindex 6f4a1077a23..85dbb807b48 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/reindex/elasticsearch-ssl-config-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/kibana/elasticsearch-ssl-config-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/kibana/kibana-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/kibana/kibana-7.12.1.jar Binary files differindex 8ee24d8d4a0..7397f1aa784 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/kibana/kibana-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/kibana/kibana-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/kibana/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/kibana/plugin-descriptor.properties index f1b533ad13a..7b514be0d60 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/kibana/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/kibana/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=Plugin exposing APIs for Kibana system indices # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=kibana @@ -43,7 +43,7 @@ classname=org.elasticsearch.kibana.KibanaPlugin java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/reindex/reindex-client-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/kibana/reindex-client-7.12.1.jar Binary files differindex 2c6c3c7ddfc..3034385c4b6 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/reindex/reindex-client-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/kibana/reindex-client-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/lang-expression/lang-expression-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/lang-expression/lang-expression-7.12.1.jar Binary files differindex 996d415c967..f61177859e9 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/lang-expression/lang-expression-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/lang-expression/lang-expression-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/lang-expression/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/lang-expression/plugin-descriptor.properties index 11b5877fd71..1dd9c272a7e 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/lang-expression/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/lang-expression/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=Lucene expressions integration for Elasticsearch # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=lang-expression @@ -43,7 +43,7 @@ classname=org.elasticsearch.script.expression.ExpressionPlugin java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/lang-mustache/lang-mustache-client-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/lang-mustache/lang-mustache-client-7.12.1.jar Binary files differindex 96a27e48c3a..2339fa2a859 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/lang-mustache/lang-mustache-client-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/lang-mustache/lang-mustache-client-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/lang-mustache/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/lang-mustache/plugin-descriptor.properties index 1e3c664b209..d89796aad68 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/lang-mustache/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/lang-mustache/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=Mustache scripting integration for Elasticsearch # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=lang-mustache @@ -43,7 +43,7 @@ classname=org.elasticsearch.script.mustache.MustachePlugin java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/lang-painless/elasticsearch-scripting-painless-spi-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/lang-painless/elasticsearch-scripting-painless-spi-7.12.1.jar Binary files differindex efb52c1e35d..279ee4d3019 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/lang-painless/elasticsearch-scripting-painless-spi-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/lang-painless/elasticsearch-scripting-painless-spi-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/lang-painless/lang-painless-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/lang-painless/lang-painless-7.12.1.jar Binary files differindex 03a38b2b030..feb18d12262 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/lang-painless/lang-painless-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/lang-painless/lang-painless-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/lang-painless/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/lang-painless/plugin-descriptor.properties index c197eac7910..577ae00fcdb 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/lang-painless/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/lang-painless/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=An easy, safe and fast scripting language for Elasticsearch # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=lang-painless @@ -43,7 +43,7 @@ classname=org.elasticsearch.painless.PainlessPlugin java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/mapper-extras/mapper-extras-client-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/mapper-extras/mapper-extras-client-7.12.1.jar Binary files differindex c39ec8606ea..19c70309d74 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/mapper-extras/mapper-extras-client-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/mapper-extras/mapper-extras-client-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/mapper-extras/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/mapper-extras/plugin-descriptor.properties index 76d9db89019..2d2048d625e 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/mapper-extras/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/mapper-extras/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=Adds advanced field mappers # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=mapper-extras @@ -43,7 +43,7 @@ classname=org.elasticsearch.index.mapper.MapperExtrasPlugin java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/mapper-version/mapper-version-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/mapper-version/mapper-version-7.12.1.jar Binary files differindex de6e9be6d39..98056f755db 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/mapper-version/mapper-version-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/mapper-version/mapper-version-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/mapper-version/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/mapper-version/plugin-descriptor.properties index cdfc7db37c5..4c6b3da2bea 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/mapper-version/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/mapper-version/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=A plugin for a field type to store sofware versions # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=mapper-version @@ -43,7 +43,7 @@ classname=org.elasticsearch.xpack.versionfield.VersionFieldPlugin java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/parent-join/parent-join-client-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/parent-join/parent-join-client-7.12.1.jar Binary files differindex 14d813fa77b..67dd4dc1b17 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/parent-join/parent-join-client-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/parent-join/parent-join-client-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/parent-join/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/parent-join/plugin-descriptor.properties index 98552a04473..38f7f715d82 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/parent-join/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/parent-join/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=This module adds the support parent-child queries and aggregations # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=parent-join @@ -43,7 +43,7 @@ classname=org.elasticsearch.join.ParentJoinPlugin java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/percolator/percolator-client-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/percolator/percolator-client-7.12.1.jar Binary files differindex d26ce17d480..5fa1129ce8c 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/percolator/percolator-client-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/percolator/percolator-client-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/percolator/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/percolator/plugin-descriptor.properties index 2ca0afdb955..4afa206beb4 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/percolator/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/percolator/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=Percolator module adds capability to index queries and query these queries by specifying documents # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=percolator @@ -43,7 +43,7 @@ classname=org.elasticsearch.percolator.PercolatorPlugin java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/rank-eval/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/rank-eval/plugin-descriptor.properties index 36ba5cec199..f7336a4ca87 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/rank-eval/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/rank-eval/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=The Rank Eval module adds APIs to evaluate ranking quality. # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=rank-eval @@ -43,7 +43,7 @@ classname=org.elasticsearch.index.rankeval.RankEvalPlugin java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/rank-eval/rank-eval-client-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/rank-eval/rank-eval-client-7.12.1.jar Binary files differindex 0aee1fdd0be..ab7fadd4a72 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/rank-eval/rank-eval-client-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/rank-eval/rank-eval-client-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-enrich/elasticsearch-rest-client-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/reindex/elasticsearch-rest-client-7.12.1.jar Binary files differindex 30f3ea28a06..c90e6ff30d7 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-enrich/elasticsearch-rest-client-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/reindex/elasticsearch-rest-client-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/kibana/elasticsearch-ssl-config-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/reindex/elasticsearch-ssl-config-7.12.1.jar Binary files differindex 6f4a1077a23..85dbb807b48 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/kibana/elasticsearch-ssl-config-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/reindex/elasticsearch-ssl-config-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/reindex/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/reindex/plugin-descriptor.properties index dd1ad8b3472..fda21dcb2a8 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/reindex/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/reindex/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=The Reindex module adds APIs to reindex from one index to another or update documents in place. # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=reindex @@ -43,7 +43,7 @@ classname=org.elasticsearch.index.reindex.ReindexPlugin java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-fleet/reindex-client-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/reindex/reindex-client-7.12.1.jar Binary files differindex 2c6c3c7ddfc..3034385c4b6 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-fleet/reindex-client-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/reindex/reindex-client-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/repositories-metering-api/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/repositories-metering-api/plugin-descriptor.properties index 7a3d6722242..5a3acb6d92e 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/repositories-metering-api/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/repositories-metering-api/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=Repositories metering API # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=repositories-metering-api @@ -43,7 +43,7 @@ classname=org.elasticsearch.xpack.repositories.metering.RepositoriesMeteringPlug java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/repositories-metering-api/repositories-metering-api-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/repositories-metering-api/repositories-metering-api-7.12.1.jar Binary files differindex 12a9c6261f2..03fd5b101c3 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/repositories-metering-api/repositories-metering-api-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/repositories-metering-api/repositories-metering-api-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/repository-encrypted/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/repository-encrypted/plugin-descriptor.properties index 4bdd9f7b52f..7fe38e35d18 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/repository-encrypted/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/repository-encrypted/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=Elasticsearch Expanded Pack Plugin - client-side encrypted repositories. # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=repository-encrypted @@ -43,7 +43,7 @@ classname=org.elasticsearch.repositories.encrypted.EncryptedRepositoryPlugin java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/repository-encrypted/repository-encrypted-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/repository-encrypted/repository-encrypted-7.12.1.jar Binary files differindex 3d63dd1fc43..e00a56ec50e 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/repository-encrypted/repository-encrypted-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/repository-encrypted/repository-encrypted-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/repository-url/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/repository-url/plugin-descriptor.properties index 7d901f8c117..f29cbf47be9 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/repository-url/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/repository-url/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=Module for URL repository # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=repository-url @@ -43,7 +43,7 @@ classname=org.elasticsearch.plugin.repository.url.URLRepositoryPlugin java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/repository-url/repository-url-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/repository-url/repository-url-7.12.1.jar Binary files differindex 52652112189..1f83178215a 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/repository-url/repository-url-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/repository-url/repository-url-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/search-business-rules/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/search-business-rules/plugin-descriptor.properties index fe55bf4b98d..ac44fcf916c 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/search-business-rules/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/search-business-rules/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=A plugin for applying business rules to search result rankings # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=search-business-rules @@ -43,7 +43,7 @@ classname=org.elasticsearch.xpack.searchbusinessrules.SearchBusinessRules java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/search-business-rules/search-business-rules-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/search-business-rules/search-business-rules-7.12.1.jar Binary files differindex 61ab567ca7b..2803d4cb51d 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/search-business-rules/search-business-rules-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/search-business-rules/search-business-rules-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/searchable-snapshots/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/searchable-snapshots/plugin-descriptor.properties index cf4047c8b40..b08430be05e 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/searchable-snapshots/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/searchable-snapshots/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=A plugin for the searchable snapshots functionality # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=searchable-snapshots @@ -43,7 +43,7 @@ classname=org.elasticsearch.xpack.searchablesnapshots.SearchableSnapshots java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/searchable-snapshots/preallocate-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/searchable-snapshots/preallocate-7.12.1.jar Binary files differindex 0f601489221..842adc3d26f 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/searchable-snapshots/preallocate-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/searchable-snapshots/preallocate-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/searchable-snapshots/searchable-snapshots-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/searchable-snapshots/searchable-snapshots-7.12.0.jar Binary files differdeleted file mode 100644 index 26d882960a6..00000000000 --- a/sonar-application/src/main/assembly/elasticsearch/modules/searchable-snapshots/searchable-snapshots-7.12.0.jar +++ /dev/null diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/searchable-snapshots/searchable-snapshots-7.12.1.jar b/sonar-application/src/main/assembly/elasticsearch/modules/searchable-snapshots/searchable-snapshots-7.12.1.jar Binary files differnew file mode 100644 index 00000000000..f3347878c06 --- /dev/null +++ b/sonar-application/src/main/assembly/elasticsearch/modules/searchable-snapshots/searchable-snapshots-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/snapshot-repo-test-kit/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/snapshot-repo-test-kit/plugin-descriptor.properties index 2e6b1fea53b..5ed915a1d9c 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/snapshot-repo-test-kit/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/snapshot-repo-test-kit/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=A plugin for a test kit for snapshot repositories # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=snapshot-repo-test-kit @@ -43,7 +43,7 @@ classname=org.elasticsearch.repositories.blobstore.testkit.SnapshotRepositoryTes java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/snapshot-repo-test-kit/snapshot-repo-test-kit-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/snapshot-repo-test-kit/snapshot-repo-test-kit-7.12.1.jar Binary files differindex 73058974b6c..cf3d0584898 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/snapshot-repo-test-kit/snapshot-repo-test-kit-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/snapshot-repo-test-kit/snapshot-repo-test-kit-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/spatial/geo-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/spatial/geo-7.12.1.jar Binary files differindex 9c72c3a383a..9ce11dc23b0 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/spatial/geo-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/spatial/geo-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/spatial/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/spatial/plugin-descriptor.properties index e9ca467f024..a6fae62685c 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/spatial/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/spatial/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=A plugin for Basic Spatial features # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=spatial @@ -43,7 +43,7 @@ classname=org.elasticsearch.xpack.spatial.SpatialPlugin java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/spatial/spatial-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/spatial/spatial-7.12.1.jar Binary files differindex 743a0705c9a..395e3a17742 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/spatial/spatial-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/spatial/spatial-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/transform/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/transform/plugin-descriptor.properties index 7470453121e..dedddfba690 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/transform/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/transform/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=A plugin to transform data # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=transform @@ -43,7 +43,7 @@ classname=org.elasticsearch.xpack.transform.Transform java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/transform/transform-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/transform/transform-7.12.1.jar Binary files differindex 3abc8e9e124..9376b828c56 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/transform/transform-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/transform/transform-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/transport-netty4/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/transport-netty4/plugin-descriptor.properties index f39ac626403..d89ab0dbbfe 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/transport-netty4/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/transport-netty4/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=Netty 4 based transport implementation # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=transport-netty4 @@ -43,7 +43,7 @@ classname=org.elasticsearch.transport.Netty4Plugin java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-core/transport-netty4-client-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/transport-netty4/transport-netty4-client-7.12.1.jar Binary files differindex 79ca57cfe26..eea5a6b452e 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-core/transport-netty4-client-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/transport-netty4/transport-netty4-client-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/unsigned-long/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/unsigned-long/plugin-descriptor.properties index 665f2c84391..50f8ca3d090 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/unsigned-long/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/unsigned-long/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=Module for the unsigned long field type # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=unsigned-long @@ -43,7 +43,7 @@ classname=org.elasticsearch.xpack.unsignedlong.UnsignedLongMapperPlugin java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/unsigned-long/unsigned-long-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/unsigned-long/unsigned-long-7.12.1.jar Binary files differindex f4e1a3c6539..aec487a5ff7 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/unsigned-long/unsigned-long-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/unsigned-long/unsigned-long-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/vectors/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/vectors/plugin-descriptor.properties index e30e5eadb6f..bfa3c6c3cd7 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/vectors/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/vectors/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=A plugin for working with vectors # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=vectors @@ -43,7 +43,7 @@ classname=org.elasticsearch.xpack.vectors.Vectors java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/vectors/vectors-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/vectors/vectors-7.12.1.jar Binary files differindex 6e838e07557..1d10e0c6c36 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/vectors/vectors-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/vectors/vectors-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/wildcard/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/wildcard/plugin-descriptor.properties index 6ddec3acac7..7f21b172c50 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/wildcard/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/wildcard/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=A plugin for a keyword field type with efficient wildcard search # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=wildcard @@ -43,7 +43,7 @@ classname=org.elasticsearch.xpack.wildcard.Wildcard java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/wildcard/wildcard-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/wildcard/wildcard-7.12.1.jar Binary files differindex 7a14213b8a1..9033a48517c 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/wildcard/wildcard-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/wildcard/wildcard-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-aggregate-metric/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-aggregate-metric/plugin-descriptor.properties index cf35ee7295a..2c707504f64 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-aggregate-metric/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-aggregate-metric/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=Module for the aggregate_metric field type, which allows pre-aggregated fields to be stored a single field. # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=x-pack-aggregate-metric @@ -43,7 +43,7 @@ classname=org.elasticsearch.xpack.aggregatemetric.AggregateMetricMapperPlugin java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-aggregate-metric/x-pack-aggregate-metric-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-aggregate-metric/x-pack-aggregate-metric-7.12.1.jar Binary files differindex 51b0ed65317..6fa24adcc55 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-aggregate-metric/x-pack-aggregate-metric-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-aggregate-metric/x-pack-aggregate-metric-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-analytics/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-analytics/plugin-descriptor.properties index 87857b1399f..02afa762b9a 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-analytics/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-analytics/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=Elasticsearch Expanded Pack Plugin - Analytics # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=x-pack-analytics @@ -43,7 +43,7 @@ classname=org.elasticsearch.xpack.analytics.AnalyticsPlugin java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-analytics/x-pack-analytics-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-analytics/x-pack-analytics-7.12.1.jar Binary files differindex 99335126f9e..6379927ea6f 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-analytics/x-pack-analytics-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-analytics/x-pack-analytics-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-async-search/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-async-search/plugin-descriptor.properties index 370bbbf515b..6e8aa82917a 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-async-search/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-async-search/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=A module which allows to track the progress of a search asynchronously. # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=x-pack-async-search @@ -43,7 +43,7 @@ classname=org.elasticsearch.xpack.search.AsyncSearch java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-async-search/x-pack-async-search-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-async-search/x-pack-async-search-7.12.1.jar Binary files differindex 617c158d7b3..6151142347b 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-async-search/x-pack-async-search-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-async-search/x-pack-async-search-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-async/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-async/plugin-descriptor.properties index 479d42484b5..6b7e93b231f 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-async/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-async/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=A module which handles common async operations # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=x-pack-async @@ -43,7 +43,7 @@ classname=org.elasticsearch.xpack.async.AsyncResultsIndexPlugin java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-async/x-pack-async-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-async/x-pack-async-7.12.1.jar Binary files differindex 758b76058d1..c673a0328b3 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-async/x-pack-async-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-async/x-pack-async-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-autoscaling/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-autoscaling/plugin-descriptor.properties index 3b7a056a5e4..6d7f12758b5 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-autoscaling/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-autoscaling/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=Elasticsearch Expanded Pack Plugin - Autoscaling # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=x-pack-autoscaling @@ -43,7 +43,7 @@ classname=org.elasticsearch.xpack.autoscaling.Autoscaling java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-autoscaling/x-pack-autoscaling-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-autoscaling/x-pack-autoscaling-7.12.1.jar Binary files differindex 51f35d03b89..b3a005c591f 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-autoscaling/x-pack-autoscaling-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-autoscaling/x-pack-autoscaling-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ccr/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ccr/plugin-descriptor.properties index 5c5822c0d8a..d21ab5cc158 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ccr/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ccr/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=Elasticsearch Expanded Pack Plugin - CCR # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=x-pack-ccr @@ -43,7 +43,7 @@ classname=org.elasticsearch.xpack.ccr.Ccr java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ccr/x-pack-ccr-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ccr/x-pack-ccr-7.12.1.jar Binary files differindex 31fb39ae291..c30d3f2771a 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ccr/x-pack-ccr-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ccr/x-pack-ccr-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-core/NOTICE.txt b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-core/NOTICE.txt index 0aa3aa1ff6f..cb2ccb984c5 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-core/NOTICE.txt +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-core/NOTICE.txt @@ -1531,24 +1531,6 @@ That's all there is to it! ================================================================================ -BCrypt.java -================================================================================ - Copyright (c) 2006 Damien Miller <djm@mindrot.org> - - Permission to use, copy, modify, and distribute this software for any - purpose with or without fee is hereby granted, provided that the above - copyright notice and this permission notice appear in all copies. - - THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES - WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR - ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN - ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF - OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - -================================================================================ DerParser.java ================================================================================ Copyright (c) 1998-2010 AOL Inc. @@ -1567,3 +1549,21 @@ DerParser.java +================================================================================ +BCrypt.java +================================================================================ + Copyright (c) 2006 Damien Miller <djm@mindrot.org> + + Permission to use, copy, modify, and distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-core/elasticsearch-nio-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-core/elasticsearch-nio-7.12.1.jar Binary files differindex 892b2fd0670..06591ee6310 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-core/elasticsearch-nio-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-core/elasticsearch-nio-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-fleet/elasticsearch-ssl-config-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-core/elasticsearch-ssl-config-7.12.1.jar Binary files differindex 6f4a1077a23..85dbb807b48 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-fleet/elasticsearch-ssl-config-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-core/elasticsearch-ssl-config-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-core/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-core/plugin-descriptor.properties index 290811af913..fc6062c721e 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-core/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-core/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=Elasticsearch Expanded Pack Plugin - Core # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=x-pack-core @@ -43,7 +43,7 @@ classname=org.elasticsearch.xpack.core.XPackPlugin java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/transport-netty4/transport-netty4-client-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-core/transport-netty4-client-7.12.1.jar Binary files differindex 79ca57cfe26..eea5a6b452e 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/transport-netty4/transport-netty4-client-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-core/transport-netty4-client-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-core/transport-nio-client-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-core/transport-nio-client-7.12.1.jar Binary files differindex c8fbe8fb4c1..083bb39f4ec 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-core/transport-nio-client-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-core/transport-nio-client-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-core/x-pack-core-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-core/x-pack-core-7.12.1.jar Binary files differindex 3fd3e05b0ca..03296c84142 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-core/x-pack-core-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-core/x-pack-core-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-data-streams/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-data-streams/plugin-descriptor.properties index 933581b8f22..6dc2219469b 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-data-streams/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-data-streams/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=Elasticsearch Expanded Pack Plugin - Data Streams # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=x-pack-data-streams @@ -43,7 +43,7 @@ classname=org.elasticsearch.xpack.datastreams.DataStreamsPlugin java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-data-streams/x-pack-data-streams-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-data-streams/x-pack-data-streams-7.12.1.jar Binary files differindex 2af11858277..7c705d34899 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-data-streams/x-pack-data-streams-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-data-streams/x-pack-data-streams-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-deprecation/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-deprecation/plugin-descriptor.properties index 2179f84fa4b..e6b46fa1e65 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-deprecation/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-deprecation/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=Elasticsearch Expanded Pack Plugin - Deprecation # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=x-pack-deprecation @@ -43,7 +43,7 @@ classname=org.elasticsearch.xpack.deprecation.Deprecation java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-deprecation/x-pack-deprecation-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-deprecation/x-pack-deprecation-7.12.1.jar Binary files differindex 481ed988204..76579e862db 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-deprecation/x-pack-deprecation-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-deprecation/x-pack-deprecation-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/reindex/elasticsearch-rest-client-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-enrich/elasticsearch-rest-client-7.12.1.jar Binary files differindex 30f3ea28a06..c90e6ff30d7 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/reindex/elasticsearch-rest-client-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-enrich/elasticsearch-rest-client-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-enrich/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-enrich/plugin-descriptor.properties index d7aaac69141..dddc8562646 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-enrich/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-enrich/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=Elasticsearch Expanded Pack Plugin - Enrich # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=x-pack-enrich @@ -43,7 +43,7 @@ classname=org.elasticsearch.xpack.enrich.EnrichPlugin java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/kibana/reindex-client-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-enrich/reindex-client-7.12.1.jar Binary files differindex 2c6c3c7ddfc..3034385c4b6 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/kibana/reindex-client-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-enrich/reindex-client-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-enrich/x-pack-enrich-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-enrich/x-pack-enrich-7.12.1.jar Binary files differindex 3c1ed82e705..33eb8d7c4f6 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-enrich/x-pack-enrich-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-enrich/x-pack-enrich-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-eql/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-eql/plugin-descriptor.properties index 614e8a107a0..7c9a52f9901 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-eql/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-eql/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=The Elasticsearch plugin that powers EQL for Elasticsearch # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=x-pack-eql @@ -43,7 +43,7 @@ classname=org.elasticsearch.xpack.eql.plugin.EqlPlugin java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-eql/x-pack-eql-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-eql/x-pack-eql-7.12.1.jar Binary files differindex a34976882f4..893f1192530 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-eql/x-pack-eql-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-eql/x-pack-eql-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-fleet/elasticsearch-rest-client-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-fleet/elasticsearch-rest-client-7.12.1.jar Binary files differindex 30f3ea28a06..c90e6ff30d7 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-fleet/elasticsearch-rest-client-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-fleet/elasticsearch-rest-client-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-core/elasticsearch-ssl-config-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-fleet/elasticsearch-ssl-config-7.12.1.jar Binary files differindex 6f4a1077a23..85dbb807b48 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-core/elasticsearch-ssl-config-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-fleet/elasticsearch-ssl-config-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-fleet/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-fleet/plugin-descriptor.properties index f3f027dc21f..b51ef9353a3 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-fleet/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-fleet/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=Elasticsearch Expanded Pack Plugin - Plugin exposing APIs for Fleet system indices # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=x-pack-fleet @@ -43,7 +43,7 @@ classname=org.elasticsearch.xpack.fleet.Fleet java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-enrich/reindex-client-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-fleet/reindex-client-7.12.1.jar Binary files differindex 2c6c3c7ddfc..3034385c4b6 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-enrich/reindex-client-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-fleet/reindex-client-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-fleet/x-pack-fleet-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-fleet/x-pack-fleet-7.12.1.jar Binary files differindex 924bebb66e5..4be7f9ac9cf 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-fleet/x-pack-fleet-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-fleet/x-pack-fleet-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-graph/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-graph/plugin-descriptor.properties index d18846fb707..36944bb08a5 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-graph/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-graph/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=Elasticsearch Expanded Pack Plugin - Graph # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=x-pack-graph @@ -43,7 +43,7 @@ classname=org.elasticsearch.xpack.graph.Graph java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-graph/x-pack-graph-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-graph/x-pack-graph-7.12.1.jar Binary files differindex f10502d3d90..bedbee72451 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-graph/x-pack-graph-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-graph/x-pack-graph-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-identity-provider/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-identity-provider/plugin-descriptor.properties index 3d9e1d79eca..08590fa96fb 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-identity-provider/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-identity-provider/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=Elasticsearch Expanded Pack Plugin - Identity Provider # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=x-pack-identity-provider @@ -43,7 +43,7 @@ classname=org.elasticsearch.xpack.idp.IdentityProviderPlugin java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-identity-provider/x-pack-identity-provider-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-identity-provider/x-pack-identity-provider-7.12.1.jar Binary files differindex d5c047fa174..f07ddfaddb6 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-identity-provider/x-pack-identity-provider-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-identity-provider/x-pack-identity-provider-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ilm/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ilm/plugin-descriptor.properties index 78ff0fb86f7..e42bcedbaef 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ilm/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ilm/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=Elasticsearch Expanded Pack Plugin - Index Lifecycle Management # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=x-pack-ilm @@ -43,7 +43,7 @@ classname=org.elasticsearch.xpack.ilm.IndexLifecycle java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ilm/x-pack-ilm-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ilm/x-pack-ilm-7.12.1.jar Binary files differindex 0997d95aba9..4b4539f2d14 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ilm/x-pack-ilm-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ilm/x-pack-ilm-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ingest/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ingest/plugin-descriptor.properties index 986e7eddc9d..e83df93b2e8 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ingest/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ingest/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=Elasticsearch Expanded Pack Plugin - Ingest # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=x-pack-ingest @@ -43,7 +43,7 @@ classname=org.elasticsearch.xpack.ingest.IngestPlugin java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ingest/x-pack-ingest-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ingest/x-pack-ingest-7.12.1.jar Binary files differindex f5f44d8e780..2bc41cef79d 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ingest/x-pack-ingest-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ingest/x-pack-ingest-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-logstash/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-logstash/plugin-descriptor.properties index cf5912c812a..ead85b2b762 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-logstash/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-logstash/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=Elasticsearch Expanded Pack Plugin - Logstash # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=x-pack-logstash @@ -43,7 +43,7 @@ classname=org.elasticsearch.xpack.logstash.Logstash java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-logstash/x-pack-logstash-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-logstash/x-pack-logstash-7.12.1.jar Binary files differindex 7925f8d4531..3c9aeb7e29b 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-logstash/x-pack-logstash-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-logstash/x-pack-logstash-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-text-structure/elasticsearch-grok-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ml/elasticsearch-grok-7.12.1.jar Binary files differindex c6a216346c1..db303266f59 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-text-structure/elasticsearch-grok-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ml/elasticsearch-grok-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ml/platform/linux-x86_64/bin/autodetect b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ml/platform/linux-x86_64/bin/autodetect Binary files differindex c2d470fc96e..82acd05d6ff 100755 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ml/platform/linux-x86_64/bin/autodetect +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ml/platform/linux-x86_64/bin/autodetect diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ml/platform/linux-x86_64/bin/categorize b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ml/platform/linux-x86_64/bin/categorize Binary files differindex 915216a7c1e..9c89b5f2c78 100755 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ml/platform/linux-x86_64/bin/categorize +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ml/platform/linux-x86_64/bin/categorize diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ml/platform/linux-x86_64/bin/controller b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ml/platform/linux-x86_64/bin/controller Binary files differindex e7c87bd3fe9..55ff8ee1b9d 100755 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ml/platform/linux-x86_64/bin/controller +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ml/platform/linux-x86_64/bin/controller diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ml/platform/linux-x86_64/bin/data_frame_analyzer b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ml/platform/linux-x86_64/bin/data_frame_analyzer Binary files differindex 0b705b89369..d6c3eeed4d9 100755 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ml/platform/linux-x86_64/bin/data_frame_analyzer +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ml/platform/linux-x86_64/bin/data_frame_analyzer diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ml/platform/linux-x86_64/bin/normalize b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ml/platform/linux-x86_64/bin/normalize Binary files differindex c0f729251d2..82867082eb4 100755 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ml/platform/linux-x86_64/bin/normalize +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ml/platform/linux-x86_64/bin/normalize diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ml/platform/linux-x86_64/lib/libMlCore.so b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ml/platform/linux-x86_64/lib/libMlCore.so Binary files differindex 3246e7deff9..07cc22bf579 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ml/platform/linux-x86_64/lib/libMlCore.so +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ml/platform/linux-x86_64/lib/libMlCore.so diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ml/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ml/plugin-descriptor.properties index 42b6e587923..71646c72547 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ml/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ml/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=Elasticsearch Expanded Pack Plugin - Machine Learning # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=x-pack-ml @@ -43,7 +43,7 @@ classname=org.elasticsearch.xpack.ml.MachineLearning java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ml/x-pack-ml-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ml/x-pack-ml-7.12.1.jar Binary files differindex 81363ced65a..deaddc975bb 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ml/x-pack-ml-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ml/x-pack-ml-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-monitoring/elasticsearch-rest-client-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-monitoring/elasticsearch-rest-client-7.12.0.jar Binary files differdeleted file mode 100644 index 30f3ea28a06..00000000000 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-monitoring/elasticsearch-rest-client-7.12.0.jar +++ /dev/null diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-monitoring/elasticsearch-rest-client-7.12.1.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-monitoring/elasticsearch-rest-client-7.12.1.jar Binary files differnew file mode 100644 index 00000000000..c90e6ff30d7 --- /dev/null +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-monitoring/elasticsearch-rest-client-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-monitoring/elasticsearch-rest-client-sniffer-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-monitoring/elasticsearch-rest-client-sniffer-7.12.1.jar Binary files differindex 475b6ce6bd4..194a5afb028 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-monitoring/elasticsearch-rest-client-sniffer-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-monitoring/elasticsearch-rest-client-sniffer-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-monitoring/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-monitoring/plugin-descriptor.properties index 63d38b54d34..39b754f6839 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-monitoring/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-monitoring/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=Elasticsearch Expanded Pack Plugin - Monitoring # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=x-pack-monitoring @@ -43,7 +43,7 @@ classname=org.elasticsearch.xpack.monitoring.Monitoring java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-monitoring/x-pack-monitoring-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-monitoring/x-pack-monitoring-7.12.1.jar Binary files differindex 9028eb63895..e07e1d2a2f8 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-monitoring/x-pack-monitoring-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-monitoring/x-pack-monitoring-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ql/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ql/plugin-descriptor.properties index 1bd8f8c218a..fab6081aef3 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ql/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ql/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=Elasticsearch infrastructure plugin for EQL and SQL for Elasticsearch # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=x-pack-ql @@ -43,7 +43,7 @@ classname=org.elasticsearch.xpack.ql.plugin.QlPlugin java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ql/x-pack-ql-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ql/x-pack-ql-7.12.1.jar Binary files differindex 27ac5c40d6c..1d32223d58b 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ql/x-pack-ql-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-ql/x-pack-ql-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-rollup/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-rollup/plugin-descriptor.properties index 8e71711611c..85cbfa9a0d2 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-rollup/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-rollup/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=Elasticsearch Expanded Pack Plugin - Rollup # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=x-pack-rollup @@ -43,7 +43,7 @@ classname=org.elasticsearch.xpack.rollup.Rollup java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-rollup/x-pack-rollup-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-rollup/x-pack-rollup-7.12.1.jar Binary files differindex 7b40fb70f33..7b618d2317e 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-rollup/x-pack-rollup-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-rollup/x-pack-rollup-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-runtime-fields/elasticsearch-dissect-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-runtime-fields/elasticsearch-dissect-7.12.1.jar Binary files differindex 8ad481bd7df..74a58ee9d3a 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-runtime-fields/elasticsearch-dissect-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-runtime-fields/elasticsearch-dissect-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-runtime-fields/elasticsearch-grok-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-runtime-fields/elasticsearch-grok-7.12.1.jar Binary files differindex c6a216346c1..db303266f59 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-runtime-fields/elasticsearch-grok-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-runtime-fields/elasticsearch-grok-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-runtime-fields/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-runtime-fields/plugin-descriptor.properties index fa7095fc62d..560b8fb907b 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-runtime-fields/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-runtime-fields/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=A module which adds support for runtime fields # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=x-pack-runtime-fields @@ -43,7 +43,7 @@ classname=org.elasticsearch.xpack.runtimefields.RuntimeFields java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-runtime-fields/x-pack-runtime-fields-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-runtime-fields/x-pack-runtime-fields-7.12.1.jar Binary files differindex 2f2c0429f00..205d093d465 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-runtime-fields/x-pack-runtime-fields-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-runtime-fields/x-pack-runtime-fields-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-security/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-security/plugin-descriptor.properties index c0680c78302..eb21863d4e0 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-security/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-security/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=Elasticsearch Expanded Pack Plugin - Security # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=x-pack-security @@ -43,7 +43,7 @@ classname=org.elasticsearch.xpack.security.Security java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-security/x-pack-security-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-security/x-pack-security-7.12.1.jar Binary files differindex 4ba123458bb..d612a9afcf1 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-security/x-pack-security-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-security/x-pack-security-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/aggs-matrix-stats/aggs-matrix-stats-client-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-sql/aggs-matrix-stats-client-7.12.1.jar Binary files differindex 7bc8a5b57f4..3f484695c8a 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/aggs-matrix-stats/aggs-matrix-stats-client-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-sql/aggs-matrix-stats-client-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-sql/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-sql/plugin-descriptor.properties index 8a48da324ff..7c22da52ecf 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-sql/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-sql/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=The Elasticsearch plugin that powers SQL for Elasticsearch # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=x-pack-sql @@ -43,7 +43,7 @@ classname=org.elasticsearch.xpack.sql.plugin.SqlPlugin java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-sql/sql-action-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-sql/sql-action-7.12.1.jar Binary files differindex 8269dfa8306..baf23331064 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-sql/sql-action-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-sql/sql-action-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-sql/sql-proto-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-sql/sql-proto-7.12.1.jar Binary files differindex 127c6815068..8564ee58dbb 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-sql/sql-proto-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-sql/sql-proto-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-sql/x-pack-sql-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-sql/x-pack-sql-7.12.1.jar Binary files differindex 0911afba3e9..66b52f99ab6 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-sql/x-pack-sql-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-sql/x-pack-sql-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-stack/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-stack/plugin-descriptor.properties index b8b99d645e4..0fef9bbf73f 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-stack/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-stack/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=Elasticsearch Expanded Pack Plugin - Stack # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=x-pack-stack @@ -43,7 +43,7 @@ classname=org.elasticsearch.xpack.stack.StackPlugin java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-stack/x-pack-stack-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-stack/x-pack-stack-7.12.1.jar Binary files differindex 31ffe20639a..5e6a85158f6 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-stack/x-pack-stack-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-stack/x-pack-stack-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/ingest-common/elasticsearch-grok-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-text-structure/elasticsearch-grok-7.12.1.jar Binary files differindex c6a216346c1..db303266f59 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/ingest-common/elasticsearch-grok-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-text-structure/elasticsearch-grok-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-text-structure/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-text-structure/plugin-descriptor.properties index 8bf266ef6ce..38a4c96ae84 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-text-structure/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-text-structure/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=Elasticsearch Expanded Pack Plugin - Text Structure # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=x-pack-text-structure @@ -43,7 +43,7 @@ classname=org.elasticsearch.xpack.textstructure.TextStructurePlugin java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-text-structure/x-pack-text-structure-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-text-structure/x-pack-text-structure-7.12.1.jar Binary files differindex 1b5a4224803..91d3b5b376a 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-text-structure/x-pack-text-structure-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-text-structure/x-pack-text-structure-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-voting-only-node/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-voting-only-node/plugin-descriptor.properties index 62edeae0f8a..7860a32a0e8 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-voting-only-node/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-voting-only-node/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=Elasticsearch Expanded Pack Plugin - Voting-only node # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=x-pack-voting-only-node @@ -43,7 +43,7 @@ classname=org.elasticsearch.cluster.coordination.VotingOnlyNodePlugin java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-voting-only-node/x-pack-voting-only-node-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-voting-only-node/x-pack-voting-only-node-7.12.1.jar Binary files differindex e7f4080cc62..ff11efac051 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-voting-only-node/x-pack-voting-only-node-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-voting-only-node/x-pack-voting-only-node-7.12.1.jar diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-watcher/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-watcher/plugin-descriptor.properties index 3ca1fc28669..9543b17ac1f 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-watcher/plugin-descriptor.properties +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-watcher/plugin-descriptor.properties @@ -25,7 +25,7 @@ type=isolated description=Elasticsearch Expanded Pack Plugin - Watcher # # 'version': plugin's version -version=7.12.0 +version=7.12.1 # # 'name': the plugin name name=x-pack-watcher @@ -43,7 +43,7 @@ classname=org.elasticsearch.xpack.watcher.Watcher java.version=1.8 # # 'elasticsearch.version': version of elasticsearch compiled against -elasticsearch.version=7.12.0 +elasticsearch.version=7.12.1 ### optional elements for plugins: # # 'extended.plugins': other plugins this plugin extends through SPI diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-watcher/x-pack-watcher-7.12.0.jar b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-watcher/x-pack-watcher-7.12.1.jar Binary files differindex 5ce1c670dc3..8e2b543cfa9 100644 --- a/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-watcher/x-pack-watcher-7.12.0.jar +++ b/sonar-application/src/main/assembly/elasticsearch/modules/x-pack-watcher/x-pack-watcher-7.12.1.jar |