Compare commits
12 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4ba9c861a2 | |||
| b5533b9d9d | |||
| 4817db4ac8 | |||
| 83bbc0d2e3 | |||
| 007114ffb7 | |||
| 3105e609d2 | |||
| a5e8fbd980 | |||
| f179bc79dd | |||
| 851df8a4f2 | |||
| 44c4c50577 | |||
| aadefcf76c | |||
| 8874e29f6b |
@@ -5,12 +5,12 @@
|
||||
|
||||
<groupId>org.springframework.data</groupId>
|
||||
<artifactId>spring-data-elasticsearch</artifactId>
|
||||
<version>3.2.12.RELEASE</version>
|
||||
<version>3.2.13.RELEASE</version>
|
||||
|
||||
<parent>
|
||||
<groupId>org.springframework.data.build</groupId>
|
||||
<artifactId>spring-data-parent</artifactId>
|
||||
<version>2.2.12.RELEASE</version>
|
||||
<version>2.2.13.RELEASE</version>
|
||||
</parent>
|
||||
|
||||
<name>Spring Data Elasticsearch</name>
|
||||
@@ -19,9 +19,9 @@
|
||||
|
||||
<properties>
|
||||
<commonslang>2.6</commonslang>
|
||||
<elasticsearch>6.8.13</elasticsearch>
|
||||
<elasticsearch>6.8.14</elasticsearch>
|
||||
<log4j>2.9.1</log4j>
|
||||
<springdata.commons>2.2.12.RELEASE</springdata.commons>
|
||||
<springdata.commons>2.2.13.RELEASE</springdata.commons>
|
||||
<netty>4.1.39.Final</netty>
|
||||
<java-module-name>spring.data.elasticsearch</java-module-name>
|
||||
</properties>
|
||||
|
||||
@@ -35,7 +35,7 @@ The following table shows the Elasticsearch versions that are used by Spring Dat
|
||||
[cols="^,^,^,^",options="header"]
|
||||
|===
|
||||
|Spring Data Release Train |Spring Data Elasticsearch |Elasticsearch | Spring Boot
|
||||
|Moore |3.2.x |6.8.13 |2.2.x
|
||||
|Moore |3.2.x |6.8.14 |2.2.x
|
||||
|Lovelace |3.1.x |6.2.2|2.1.x
|
||||
|Kayfootnote:oom[Out of maintenance]|3.0.xfootnote:oom[] |5.5.0 |2.0.xfootnote:oom[]
|
||||
|Ingallsfootnote:oom[]|2.1.xfootnote:oom[] |2.4.0 |1.5.xfootnote:oom[]
|
||||
|
||||
@@ -153,7 +153,7 @@ ClientConfiguration clientConfiguration = ClientConfiguration.builder()
|
||||
.connectedTo("localhost:9200", "localhost:9291") <2>
|
||||
.withConnectTimeout(Duration.ofSeconds(5)) <3>
|
||||
.withSocketTimeout(Duration.ofSeconds(3)) <4>
|
||||
.useSsl() <5>
|
||||
.usingSsl() <5>
|
||||
.withDefaultHeaders(defaultHeaders) <6>
|
||||
.withBasicAuth(username, password) <7>
|
||||
. // ... other options
|
||||
|
||||
@@ -1,6 +1,82 @@
|
||||
Spring Data Elasticsearch Changelog
|
||||
===================================
|
||||
|
||||
Changes in version 3.2.13.RELEASE (2021-02-17)
|
||||
----------------------------------------------
|
||||
* #1694 - Upgrade to Elasticsearch 6.8.14.
|
||||
* #1662 - Documentation fix.
|
||||
|
||||
|
||||
Changes in version 4.2.0-M2 (2021-01-13)
|
||||
----------------------------------------
|
||||
* DATAES-1003 - add timeout to search query.
|
||||
* DATAES-996 - Update CI jobs with Docker Login.
|
||||
* DATAES-982 - Improve refresh handling.
|
||||
* DATAES-946 - Support 'wildcard' field type.
|
||||
* #1640 - Add support for GetFieldMapping request in ReactiveElasticsearchClient.
|
||||
* #1638 - Upgrade to Elasticsearch 7.10.1.
|
||||
* #1634 - Update Testcontainers dependency.
|
||||
* #1632 - Update copyright notice to 2021.
|
||||
* #1629 - Update repository after GitHub issues migration.
|
||||
* #1576 - Add version of Spring dependency to docs [DATAES-1004].
|
||||
* #1056 - Repository initialization should throw an Exception when index cannot be created [DATAES-481].
|
||||
|
||||
|
||||
Changes in version 4.1.3 (2021-01-13)
|
||||
-------------------------------------
|
||||
* DATAES-996 - Update CI jobs with Docker Login.
|
||||
* #1634 - Update Testcontainers dependency.
|
||||
|
||||
|
||||
Changes in version 4.1.2 (2020-12-09)
|
||||
-------------------------------------
|
||||
* DATAES-991 - Wrong value for TermVector(with_positions_offets_payloads).
|
||||
* DATAES-990 - Index creation fails with Authentication object cannot be null on startup.
|
||||
* DATAES-987 - IndexOperations getMapping fail when using index alias.
|
||||
* DATAES-978 - Accept DateFormat.none for a date property to enable custom Converters.
|
||||
* DATAES-977 - Fix versions in reference documentation for 4.1.
|
||||
* DATAES-973 - Release 4.1.2 (2020.0.2).
|
||||
* DATAES-972 - BeforeConvertCallback should be called before index query is built.
|
||||
* DATAES-543 - Adjust configuration support classes so they do not require proxying.
|
||||
|
||||
|
||||
Changes in version 4.2.0-M1 (2020-12-09)
|
||||
----------------------------------------
|
||||
* DATAES-995 - Code Cleanup after DATACMNS-1838.
|
||||
* DATAES-994 - Add setup for mutation testing.
|
||||
* DATAES-991 - Wrong value for TermVector(with_positions_offets_payloads).
|
||||
* DATAES-990 - Index creation fails with Authentication object cannot be null on startup.
|
||||
* DATAES-989 - Improve deprecation warning for id properties without annotation.
|
||||
* DATAES-988 - Allow specifying max results in NativeSearchQueryBuilder.
|
||||
* DATAES-987 - IndexOperations getMapping fail when using index alias.
|
||||
* DATAES-986 - Fix Javadoc.
|
||||
* DATAES-985 - Add builder method for track_total_hits to NativeSearchQueryBuilder.
|
||||
* DATAES-983 - Test dependency hoverfly-java-junit5 leaks into compile scope.
|
||||
* DATAES-978 - Accept DateFormat.none for a date property to enable custom Converters.
|
||||
* DATAES-976 - Implement CrudRepository.delete(Iterable<ID> ids).
|
||||
* DATAES-975 - Upgrade to Elasticsearch 7.10.
|
||||
* DATAES-974 - remove usage of deprecated WebClient exchange() method.
|
||||
* DATAES-972 - BeforeConvertCallback should be called before index query is built.
|
||||
* DATAES-971 - Fix tests for using a proxy with reactive client.
|
||||
* DATAES-970 - Take Testcontainers version from the Spring Data Build pom.
|
||||
* DATAES-969 - Use ResultProcessor in ElasticsearchPartQuery to build PartTree.
|
||||
* DATAES-968 - Enable Maven caching for Jenkins jobs.
|
||||
* DATAES-966 - Release 4.2 M1 (2021.0.0).
|
||||
* DATAES-882 - HLRC Configuration - add ability to set max connections for the underlying HttpClient.
|
||||
* DATAES-588 - Add support for custom callbacks in High Level/Low Level REST Client builder.
|
||||
* DATAES-543 - Adjust configuration support classes so they do not require proxying.
|
||||
* DATAES-362 - Add support for composable meta annotations.
|
||||
* DATAES-247 - Support OpType in IndexQuery.
|
||||
|
||||
|
||||
Changes in version 4.0.6.RELEASE (2020-12-09)
|
||||
---------------------------------------------
|
||||
* DATAES-991 - Wrong value for TermVector(with_positions_offets_payloads).
|
||||
* DATAES-969 - Use ResultProcessor in ElasticsearchPartQuery to build PartTree.
|
||||
* DATAES-968 - Enable Maven caching for Jenkins jobs.
|
||||
* DATAES-964 - Release 4.0.6 (Neumann SR6).
|
||||
|
||||
|
||||
Changes in version 3.2.12.RELEASE (2020-12-09)
|
||||
----------------------------------------------
|
||||
* DATAES-969 - Use ResultProcessor in ElasticsearchPartQuery to build PartTree.
|
||||
@@ -1365,6 +1441,12 @@ Release Notes - Spring Data Elasticsearch - Version 1.0 M1 (2014-02-07)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
Spring Data Elasticsearch 3.2.12 (Moore SR12)
|
||||
Spring Data Elasticsearch 3.2.13 (Moore SR13)
|
||||
Copyright (c) [2013-2019] Pivotal Software, Inc.
|
||||
|
||||
This product is licensed to you under the Apache License, Version 2.0 (the "License").
|
||||
@@ -18,3 +18,4 @@ conditions of the subcomponent's license, as noted in the LICENSE file.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
BIN
Binary file not shown.
+3
-2
@@ -20,7 +20,7 @@
|
||||
description=Adds "built in" analyzers to Elasticsearch.
|
||||
#
|
||||
# 'version': plugin's version
|
||||
version=6.8.13
|
||||
version=6.8.14
|
||||
#
|
||||
# 'name': the plugin name
|
||||
name=analysis-common
|
||||
@@ -35,7 +35,7 @@ classname=org.elasticsearch.analysis.common.CommonAnalysisPlugin
|
||||
java.version=1.8
|
||||
#
|
||||
# 'elasticsearch.version': version of elasticsearch compiled against
|
||||
elasticsearch.version=6.8.13
|
||||
elasticsearch.version=6.8.14
|
||||
### optional elements for plugins:
|
||||
#
|
||||
# 'extended.plugins': other plugins this plugin extends through SPI
|
||||
@@ -43,3 +43,4 @@ extended.plugins=lang-painless
|
||||
#
|
||||
# 'has.native.controller': whether or not the plugin has a native controller
|
||||
has.native.controller=false
|
||||
|
||||
|
||||
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
@@ -20,7 +20,7 @@
|
||||
description=Module for ingest processors that do not require additional security permissions or have large dependencies and resources
|
||||
#
|
||||
# 'version': plugin's version
|
||||
version=6.8.13
|
||||
version=6.8.14
|
||||
#
|
||||
# 'name': the plugin name
|
||||
name=ingest-common
|
||||
@@ -35,7 +35,7 @@ classname=org.elasticsearch.ingest.common.IngestCommonPlugin
|
||||
java.version=1.8
|
||||
#
|
||||
# 'elasticsearch.version': version of elasticsearch compiled against
|
||||
elasticsearch.version=6.8.13
|
||||
elasticsearch.version=6.8.14
|
||||
### optional elements for plugins:
|
||||
#
|
||||
# 'extended.plugins': other plugins this plugin extends through SPI
|
||||
@@ -43,3 +43,4 @@ extended.plugins=lang-painless
|
||||
#
|
||||
# 'has.native.controller': whether or not the plugin has a native controller
|
||||
has.native.controller=false
|
||||
|
||||
|
||||
BIN
Binary file not shown.
+3
-2
@@ -20,7 +20,7 @@
|
||||
description=Lucene expressions integration for Elasticsearch
|
||||
#
|
||||
# 'version': plugin's version
|
||||
version=6.8.13
|
||||
version=6.8.14
|
||||
#
|
||||
# 'name': the plugin name
|
||||
name=lang-expression
|
||||
@@ -35,7 +35,7 @@ classname=org.elasticsearch.script.expression.ExpressionPlugin
|
||||
java.version=1.8
|
||||
#
|
||||
# 'elasticsearch.version': version of elasticsearch compiled against
|
||||
elasticsearch.version=6.8.13
|
||||
elasticsearch.version=6.8.14
|
||||
### optional elements for plugins:
|
||||
#
|
||||
# 'extended.plugins': other plugins this plugin extends through SPI
|
||||
@@ -43,3 +43,4 @@ extended.plugins=
|
||||
#
|
||||
# 'has.native.controller': whether or not the plugin has a native controller
|
||||
has.native.controller=false
|
||||
|
||||
|
||||
BIN
Binary file not shown.
BIN
Binary file not shown.
@@ -20,7 +20,7 @@
|
||||
description=An easy, safe and fast scripting language for Elasticsearch
|
||||
#
|
||||
# 'version': plugin's version
|
||||
version=6.8.13
|
||||
version=6.8.14
|
||||
#
|
||||
# 'name': the plugin name
|
||||
name=lang-painless
|
||||
@@ -35,7 +35,7 @@ classname=org.elasticsearch.painless.PainlessPlugin
|
||||
java.version=1.8
|
||||
#
|
||||
# 'elasticsearch.version': version of elasticsearch compiled against
|
||||
elasticsearch.version=6.8.13
|
||||
elasticsearch.version=6.8.14
|
||||
### optional elements for plugins:
|
||||
#
|
||||
# 'extended.plugins': other plugins this plugin extends through SPI
|
||||
@@ -43,3 +43,4 @@ extended.plugins=
|
||||
#
|
||||
# 'has.native.controller': whether or not the plugin has a native controller
|
||||
has.native.controller=false
|
||||
|
||||
|
||||
BIN
Binary file not shown.
@@ -20,7 +20,7 @@
|
||||
description=Adds advanced field mappers
|
||||
#
|
||||
# 'version': plugin's version
|
||||
version=6.8.13
|
||||
version=6.8.14
|
||||
#
|
||||
# 'name': the plugin name
|
||||
name=mapper-extras
|
||||
@@ -35,7 +35,7 @@ classname=org.elasticsearch.index.mapper.MapperExtrasPlugin
|
||||
java.version=1.8
|
||||
#
|
||||
# 'elasticsearch.version': version of elasticsearch compiled against
|
||||
elasticsearch.version=6.8.13
|
||||
elasticsearch.version=6.8.14
|
||||
### optional elements for plugins:
|
||||
#
|
||||
# 'extended.plugins': other plugins this plugin extends through SPI
|
||||
@@ -43,3 +43,4 @@ extended.plugins=
|
||||
#
|
||||
# 'has.native.controller': whether or not the plugin has a native controller
|
||||
has.native.controller=false
|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
description=The Reindex module adds APIs to reindex from one index to another or update documents in place.
|
||||
#
|
||||
# 'version': plugin's version
|
||||
version=6.8.13
|
||||
version=6.8.14
|
||||
#
|
||||
# 'name': the plugin name
|
||||
name=reindex
|
||||
@@ -35,7 +35,7 @@ classname=org.elasticsearch.index.reindex.ReindexPlugin
|
||||
java.version=1.8
|
||||
#
|
||||
# 'elasticsearch.version': version of elasticsearch compiled against
|
||||
elasticsearch.version=6.8.13
|
||||
elasticsearch.version=6.8.14
|
||||
### optional elements for plugins:
|
||||
#
|
||||
# 'extended.plugins': other plugins this plugin extends through SPI
|
||||
@@ -43,3 +43,4 @@ extended.plugins=
|
||||
#
|
||||
# 'has.native.controller': whether or not the plugin has a native controller
|
||||
has.native.controller=false
|
||||
|
||||
|
||||
+3
-2
@@ -20,7 +20,7 @@
|
||||
description=Module for URL repository
|
||||
#
|
||||
# 'version': plugin's version
|
||||
version=6.8.13
|
||||
version=6.8.14
|
||||
#
|
||||
# 'name': the plugin name
|
||||
name=repository-url
|
||||
@@ -35,7 +35,7 @@ classname=org.elasticsearch.plugin.repository.url.URLRepositoryPlugin
|
||||
java.version=1.8
|
||||
#
|
||||
# 'elasticsearch.version': version of elasticsearch compiled against
|
||||
elasticsearch.version=6.8.13
|
||||
elasticsearch.version=6.8.14
|
||||
### optional elements for plugins:
|
||||
#
|
||||
# 'extended.plugins': other plugins this plugin extends through SPI
|
||||
@@ -43,3 +43,4 @@ extended.plugins=
|
||||
#
|
||||
# 'has.native.controller': whether or not the plugin has a native controller
|
||||
has.native.controller=false
|
||||
|
||||
|
||||
Reference in New Issue
Block a user