Compare commits
8 Commits
6.0.6
...
3.0.1.RELEASE
| Author | SHA1 | Date | |
|---|---|---|---|
| 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.1.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.1.RELEASE</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<name>Spring Data Elasticsearch</name>
|
<name>Spring Data Elasticsearch</name>
|
||||||
@@ -20,7 +20,7 @@
|
|||||||
<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>
|
<springdata.commons>2.0.1.RELEASE</springdata.commons>
|
||||||
<java-module-name>spring.data.elasticsearch</java-module-name>
|
<java-module-name>spring.data.elasticsearch</java-module-name>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,18 @@
|
|||||||
Spring Data Elasticsearch Changelog
|
Spring Data Elasticsearch Changelog
|
||||||
===================================
|
===================================
|
||||||
|
|
||||||
|
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.1
|
||||||
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