Compare commits
40 Commits
6.1.x
...
3.0.6.RELEASE
| Author | SHA1 | Date | |
|---|---|---|---|
| be230f4003 | |||
| 8c1821e7a6 | |||
| 72a2f9f758 | |||
| d9d3521518 | |||
| d50ae96c5e | |||
| 734a28fb03 | |||
| ac403b9198 | |||
| 477c4d1dc3 | |||
| 2b543ff026 | |||
| 02a3e120c2 | |||
| 92286a725d | |||
| 462288be0e | |||
| b844f47795 | |||
| fe488eac32 | |||
| a77b81ecb3 | |||
| 81795f67cd | |||
| 485859ca3d | |||
| 8973d2d7eb | |||
| a525a38825 | |||
| b392090e61 | |||
| ca4a864f9e | |||
| 3a31030f89 | |||
| 34a7900e34 | |||
| 361bc2a333 | |||
| c2c21581d8 | |||
| ecf2efa6e5 | |||
| 418d259fbf | |||
| 737a023b5a | |||
| cc3f578312 | |||
| 81b21f4e6f | |||
| 552cbff6a4 | |||
| 000eb152dc | |||
| ad55402973 | |||
| ef68623d5b | |||
| c075f170c3 | |||
| 02b7dde196 | |||
| 51b7fa2a26 | |||
| 4e5051c57b | |||
| 31d499e6e0 | |||
| 311a06aa67 |
@@ -4,12 +4,12 @@
|
|||||||
|
|
||||||
<groupId>org.springframework.data</groupId>
|
<groupId>org.springframework.data</groupId>
|
||||||
<artifactId>spring-data-elasticsearch</artifactId>
|
<artifactId>spring-data-elasticsearch</artifactId>
|
||||||
<version>3.0.0.RELEASE</version>
|
<version>3.0.6.RELEASE</version>
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.springframework.data.build</groupId>
|
<groupId>org.springframework.data.build</groupId>
|
||||||
<artifactId>spring-data-parent</artifactId>
|
<artifactId>spring-data-parent</artifactId>
|
||||||
<version>2.0.0.RELEASE</version>
|
<version>2.0.6.RELEASE</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<name>Spring Data Elasticsearch</name>
|
<name>Spring Data Elasticsearch</name>
|
||||||
@@ -20,7 +20,8 @@
|
|||||||
<commonscollections>3.2.1</commonscollections>
|
<commonscollections>3.2.1</commonscollections>
|
||||||
<commonslang>2.6</commonslang>
|
<commonslang>2.6</commonslang>
|
||||||
<elasticsearch>5.5.0</elasticsearch>
|
<elasticsearch>5.5.0</elasticsearch>
|
||||||
<springdata.commons>2.0.0.RELEASE</springdata.commons>
|
<log4j>2.8.2</log4j>
|
||||||
|
<springdata.commons>2.0.6.RELEASE</springdata.commons>
|
||||||
<java-module-name>spring.data.elasticsearch</java-module-name>
|
<java-module-name>spring.data.elasticsearch</java-module-name>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
@@ -86,25 +87,25 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.slf4j</groupId>
|
<groupId>org.slf4j</groupId>
|
||||||
<artifactId>log4j-over-slf4j</artifactId>
|
<artifactId>log4j-over-slf4j</artifactId>
|
||||||
<version>1.7.22</version>
|
<version>${slf4j}</version>
|
||||||
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.logging.log4j</groupId>
|
<groupId>org.apache.logging.log4j</groupId>
|
||||||
<artifactId>log4j-core</artifactId>
|
<artifactId>log4j-core</artifactId>
|
||||||
<version>2.8.2</version>
|
<version>${log4j}</version>
|
||||||
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- Jackson JSON Mapper -->
|
<!-- Jackson JSON Mapper -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.fasterxml.jackson.core</groupId>
|
<groupId>com.fasterxml.jackson.core</groupId>
|
||||||
<artifactId>jackson-core</artifactId>
|
<artifactId>jackson-core</artifactId>
|
||||||
<version>${jackson}</version>
|
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.fasterxml.jackson.core</groupId>
|
<groupId>com.fasterxml.jackson.core</groupId>
|
||||||
<artifactId>jackson-databind</artifactId>
|
<artifactId>jackson-databind</artifactId>
|
||||||
<version>${jackson}</version>
|
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- CDI -->
|
<!-- CDI -->
|
||||||
@@ -176,8 +177,6 @@
|
|||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
|
|||||||
@@ -1,6 +1,73 @@
|
|||||||
Spring Data Elasticsearch Changelog
|
Spring Data Elasticsearch Changelog
|
||||||
===================================
|
===================================
|
||||||
|
|
||||||
|
Changes in version 3.0.6.RELEASE (2018-04-04)
|
||||||
|
---------------------------------------------
|
||||||
|
* DATAES-434 - Remove explicit declaration of Jackson library versions.
|
||||||
|
* DATAES-430 - Release 3.0.6 (Kay SR6).
|
||||||
|
|
||||||
|
|
||||||
|
Changes in version 2.1.11.RELEASE (2018-04-04)
|
||||||
|
----------------------------------------------
|
||||||
|
* DATAES-434 - Remove explicit declaration of Jackson library versions.
|
||||||
|
* DATAES-424 - Fix line endings.
|
||||||
|
* DATAES-423 - Release 2.1.11 (Ingalls SR11).
|
||||||
|
|
||||||
|
|
||||||
|
Changes in version 3.0.5.RELEASE (2018-02-28)
|
||||||
|
---------------------------------------------
|
||||||
|
* DATAES-429 - Release 3.0.5 (Kay SR5).
|
||||||
|
|
||||||
|
|
||||||
|
Changes in version 3.0.4.RELEASE (2018-02-19)
|
||||||
|
---------------------------------------------
|
||||||
|
* DATAES-425 - Release 3.0.4 (Kay SR4).
|
||||||
|
|
||||||
|
|
||||||
|
Changes in version 3.1.0.M1 (2018-02-06)
|
||||||
|
----------------------------------------
|
||||||
|
* DATAES-424 - Fix line endings.
|
||||||
|
* DATAES-414 - Reduce scope of Lo4j dependencies to test.
|
||||||
|
* DATAES-410 - Adapt API changes in Property in test cases.
|
||||||
|
* DATAES-401 - Release 3.1 M1 (Lovelace).
|
||||||
|
* DATAES-361 - log4j2.xml in classpath root of the library prevents Spring Boot's logging auto-configuration to work.
|
||||||
|
|
||||||
|
|
||||||
|
Changes in version 3.0.3.RELEASE (2018-01-24)
|
||||||
|
---------------------------------------------
|
||||||
|
* DATAES-424 - Fix line endings.
|
||||||
|
* DATAES-417 - Release 3.0.3 (Kay SR3).
|
||||||
|
|
||||||
|
|
||||||
|
Changes in version 2.1.10.RELEASE (2018-01-24)
|
||||||
|
----------------------------------------------
|
||||||
|
* DATAES-416 - Release 2.1.10 (Ingalls SR10).
|
||||||
|
|
||||||
|
|
||||||
|
Changes in version 3.0.2.RELEASE (2017-11-27)
|
||||||
|
---------------------------------------------
|
||||||
|
* DATAES-414 - Reduce scope of Lo4j dependencies to test.
|
||||||
|
* DATAES-411 - Release 3.0.2 (Kay SR2).
|
||||||
|
|
||||||
|
|
||||||
|
Changes in version 2.1.9.RELEASE (2017-11-27)
|
||||||
|
---------------------------------------------
|
||||||
|
* DATAES-408 - Ensure Spring 5 compatibility in Ingalls.
|
||||||
|
* DATAES-404 - Release 2.1.9 (Ingalls SR9).
|
||||||
|
|
||||||
|
|
||||||
|
Changes in version 3.0.1.RELEASE (2017-10-27)
|
||||||
|
---------------------------------------------
|
||||||
|
* DATAES-410 - Adapt API changes in Property in test cases.
|
||||||
|
* DATAES-400 - Release 3.0.1 (Kay SR1).
|
||||||
|
* DATAES-361 - log4j2.xml in classpath root of the library prevents Spring Boot's logging auto-configuration to work.
|
||||||
|
|
||||||
|
|
||||||
|
Changes in version 2.1.8.RELEASE (2017-10-11)
|
||||||
|
---------------------------------------------
|
||||||
|
* DATAES-391 - Release 2.1.8 (Ingalls SR8).
|
||||||
|
|
||||||
|
|
||||||
Changes in version 3.0.0.RELEASE (2017-10-02)
|
Changes in version 3.0.0.RELEASE (2017-10-02)
|
||||||
---------------------------------------------
|
---------------------------------------------
|
||||||
* DATAES-397 - Add explicit automatic module name for Java 9.
|
* DATAES-397 - Add explicit automatic module name for Java 9.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
Spring Data Elasticsearch 3.0 GA
|
Spring Data Elasticsearch 3.0.6
|
||||||
Copyright (c) [2013-2016] Pivotal Software, Inc.
|
Copyright (c) [2013-2016] Pivotal Software, Inc.
|
||||||
|
|
||||||
This product is licensed to you under the Apache License, Version 2.0 (the "License").
|
This product is licensed to you under the Apache License, Version 2.0 (the "License").
|
||||||
|
|||||||
+2
-1
@@ -66,7 +66,8 @@ public class SimpleElasticsearchPersistentEntityTests {
|
|||||||
private static SimpleElasticsearchPersistentProperty createProperty(SimpleElasticsearchPersistentEntity<?> entity,
|
private static SimpleElasticsearchPersistentProperty createProperty(SimpleElasticsearchPersistentEntity<?> entity,
|
||||||
String field) {
|
String field) {
|
||||||
|
|
||||||
Property property = Property.of(ReflectionUtils.findField(entity.getTypeInformation().getType(), field));
|
TypeInformation<?> type = entity.getTypeInformation();
|
||||||
|
Property property = Property.of(type, ReflectionUtils.findField(entity.getType(), field));
|
||||||
return new SimpleElasticsearchPersistentProperty(property, entity, SimpleTypeHolder.DEFAULT);
|
return new SimpleElasticsearchPersistentProperty(property, entity, SimpleTypeHolder.DEFAULT);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user