mirror of
https://github.com/spring-projects/spring-data-elasticsearch.git
synced 2025-07-05 10:12:33 +00:00
DATAES-564 - Updated changelog.
This commit is contained in:
parent
e9197b2c2e
commit
e66dac0cb1
@ -1,2 +1,2 @@
|
|||||||
http\://www.springframework.org/schema/data/elasticsearch/spring-elasticsearch-3.2.xsd=org/springframework/data/elasticsearch/config/spring-elasticsearch-3.2.xsd
|
http\://www.springframework.org/schema/data/elasticsearch/spring-elasticsearch-3.2.xsd=org/springframework/data/elasticsearch/config/spring-elasticsearch-3.2.xsd
|
||||||
http\://www.springframework.org/schema/data/elasticsearch/spring-elasticsearch.xsd=org/springframework/data/elasticsearch/config/spring-elasticsearch-3.2.xsd
|
http\://www.springframework.org/schema/data/elasticsearch/spring-elasticsearch.xsd=org/springframework/data/elasticsearch/config/spring-elasticsearch-3.2.xsd
|
||||||
|
@ -1,6 +1,25 @@
|
|||||||
Spring Data Elasticsearch Changelog
|
Spring Data Elasticsearch Changelog
|
||||||
===================================
|
===================================
|
||||||
|
|
||||||
|
Changes in version 3.2.0.M4 (2019-05-13)
|
||||||
|
----------------------------------------
|
||||||
|
* DATAES-576 - ElasticsearchTransportTemplateTests.shouldDeleteAcrossIndex(…) consistently fails.
|
||||||
|
* DATAES-575 - Upgrade to Elasticsearch 6.7.2.
|
||||||
|
* DATAES-572 - Indices created in ElasticsearchTemplateTests are retained after tests.
|
||||||
|
* DATAES-570 - Use Delete By Query API for delete by query operations.
|
||||||
|
* DATAES-569 - Add index operations to reactive Elasticsearch client.
|
||||||
|
* DATAES-568 - MappingBuilder must use the @Field annotation's name attribute.
|
||||||
|
* DATAES-566 - Double SearchHit source to string conversion in DefaultResultMapper.
|
||||||
|
* DATAES-565 - ElasticsearchTemplate.prepareScroll() doesn't respect SourceFilter from the Query.
|
||||||
|
* DATAES-564 - Release 3.2 M4 (Moore).
|
||||||
|
* DATAES-563 - Add "elasticsearchTemplate" bean alias for ElasticsearchTemplate.
|
||||||
|
* DATAES-562 - Custom name attribute for @Field mapping in ElasticsearchEntityMapper.
|
||||||
|
* DATAES-561 - Reuse ObjectMapper in ElasticsearchEntityMapper.
|
||||||
|
* DATAES-546 - Documentation code snippet for "using @Query Annotation" does not compile.
|
||||||
|
* DATAES-459 - ElasticsearchTemplate does not provide the scroll ID with startScroll.
|
||||||
|
* DATAES-457 - ElasticsearchTemplate.prepareScroll() does not add sorting.
|
||||||
|
|
||||||
|
|
||||||
Changes in version 2.1.21.RELEASE (2019-05-10)
|
Changes in version 2.1.21.RELEASE (2019-05-10)
|
||||||
----------------------------------------------
|
----------------------------------------------
|
||||||
* DATAES-555 - Release 2.1.21 (Ingalls SR21).
|
* DATAES-555 - Release 2.1.21 (Ingalls SR21).
|
||||||
|
@ -1,20 +1,20 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<beans xmlns="http://www.springframework.org/schema/beans"
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
xmlns:elasticsearch="http://www.springframework.org/schema/data/elasticsearch"
|
xmlns:elasticsearch="http://www.springframework.org/schema/data/elasticsearch"
|
||||||
xsi:schemaLocation="http://www.springframework.org/schema/data/elasticsearch https://www.springframework.org/schema/data/elasticsearch/spring-elasticsearch.xsd
|
xsi:schemaLocation="http://www.springframework.org/schema/data/elasticsearch https://www.springframework.org/schema/data/elasticsearch/spring-elasticsearch.xsd
|
||||||
http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-3.1.xsd">
|
http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-3.1.xsd">
|
||||||
|
|
||||||
<import resource="infrastructure.xml"/>
|
<import resource="infrastructure.xml"/>
|
||||||
|
|
||||||
<bean name="elasticsearchTemplate"
|
<bean name="elasticsearchTemplate"
|
||||||
class="org.springframework.data.elasticsearch.repositories.CustomMethodRepositoryRestTests$CleanupOnStartElasticsearchTemplate">
|
class="org.springframework.data.elasticsearch.repositories.CustomMethodRepositoryRestTests$CleanupOnStartElasticsearchTemplate">
|
||||||
<constructor-arg name="client" ref="restClient"/>
|
<constructor-arg name="client" ref="restClient"/>
|
||||||
</bean>
|
</bean>
|
||||||
|
|
||||||
<elasticsearch:rest-client id="restClient"/>
|
<elasticsearch:rest-client id="restClient"/>
|
||||||
|
|
||||||
<elasticsearch:repositories
|
<elasticsearch:repositories
|
||||||
base-package="org.springframework.data.elasticsearch.repositories.custom"/>
|
base-package="org.springframework.data.elasticsearch.repositories.custom"/>
|
||||||
|
|
||||||
</beans>
|
</beans>
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<beans xmlns="http://www.springframework.org/schema/beans"
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
xmlns:elasticsearch="http://www.springframework.org/schema/data/elasticsearch"
|
xmlns:elasticsearch="http://www.springframework.org/schema/data/elasticsearch"
|
||||||
xsi:schemaLocation="http://www.springframework.org/schema/data/elasticsearch https://www.springframework.org/schema/data/elasticsearch/spring-elasticsearch.xsd
|
xsi:schemaLocation="http://www.springframework.org/schema/data/elasticsearch https://www.springframework.org/schema/data/elasticsearch/spring-elasticsearch.xsd
|
||||||
http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd">
|
http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd">
|
||||||
|
|
||||||
<import resource="infrastructure.xml"/>
|
<import resource="infrastructure.xml"/>
|
||||||
|
|
||||||
<bean name="elasticsearchTemplate"
|
<bean name="elasticsearchTemplate"
|
||||||
class="org.springframework.data.elasticsearch.core.ElasticsearchRestTemplate">
|
class="org.springframework.data.elasticsearch.core.ElasticsearchRestTemplate">
|
||||||
<constructor-arg name="client" ref="restClient"/>
|
<constructor-arg name="client" ref="restClient"/>
|
||||||
</bean>
|
</bean>
|
||||||
|
|
||||||
<elasticsearch:rest-client id="restClient"/>
|
<elasticsearch:rest-client id="restClient"/>
|
||||||
|
|
||||||
</beans>
|
</beans>
|
Loading…
x
Reference in New Issue
Block a user