1
0
mirror of synced 2026-05-23 04:33:17 +00:00

Compare commits

...

7 Commits

Author SHA1 Message Date
Mark Paluch c92480b97d Release version 4.3.5 (2021.1.5).
See #2141
2022-06-20 10:59:11 +02:00
Mark Paluch 6e8357caa7 Prepare 4.3.5 (2021.1.5).
See #2141
2022-06-20 10:58:45 +02:00
Mark Paluch 541faff07f Upgrade to Maven Wrapper 3.8.5.
See #2179
2022-06-03 09:42:29 +02:00
Mark Paluch 9aeac006d1 Update CI properties.
See #2141
2022-06-03 09:35:44 +02:00
panzhenchao 6e52b97b76 Fix incorrect argument check asserts.
Original Pull Request #2169
Closes #2170

(cherry picked from commit c826adb152)
(cherry picked from commit 7efd4b3be7)
2022-05-27 20:42:28 +02:00
Christoph Strobl c7550e8d82 After release cleanups.
See #2119
2022-04-19 12:13:25 +02:00
Christoph Strobl c17159ce1c Prepare next development iteration.
See #2119
2022-04-19 12:13:22 +02:00
5 changed files with 11 additions and 11 deletions
+2 -2
View File
@@ -1,3 +1,3 @@
#Tue Feb 22 13:56:16 CET 2022
#Fri Jun 03 09:42:29 CEST 2022
wrapperUrl=https\://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar
distributionUrl=https\://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.4/apache-maven-3.8.4-bin.zip
distributionUrl=https\://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.5/apache-maven-3.8.5-bin.zip
+3 -3
View File
@@ -1,7 +1,7 @@
# Java versions
java.main.tag=8u322-b06-jdk
java.next.tag=11.0.14.1_1-jdk
java.lts.tag=17.0.2_8-jdk
java.main.tag=8u332-b09-jdk
java.next.tag=11.0.15_10-jdk
java.lts.tag=17.0.3_7-jdk
# Docker container images - standard
docker.java.main.image=harbor-repo.vmware.com/dockerhub-proxy-cache/library/eclipse-temurin:${java.main.tag}
+3 -3
View File
@@ -5,12 +5,12 @@
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-elasticsearch</artifactId>
<version>4.3.4</version>
<version>4.3.5</version>
<parent>
<groupId>org.springframework.data.build</groupId>
<artifactId>spring-data-parent</artifactId>
<version>2.6.4</version>
<version>2.6.5</version>
</parent>
<name>Spring Data Elasticsearch</name>
@@ -21,7 +21,7 @@
<elasticsearch>7.15.2</elasticsearch>
<log4j>2.17.0</log4j>
<netty>4.1.65.Final</netty>
<springdata.commons>2.6.4</springdata.commons>
<springdata.commons>2.6.5</springdata.commons>
<testcontainers>1.15.3</testcontainers>
<blockhound-junit>1.0.6.RELEASE</blockhound-junit>
<java-module-name>spring.data.elasticsearch</java-module-name>
@@ -66,7 +66,6 @@ final public class ElasticsearchDateConverter {
*/
public static ElasticsearchDateConverter of(String pattern) {
Assert.notNull(pattern, "pattern must not be null");
Assert.hasText(pattern, "pattern must not be empty");
String[] subPatterns = pattern.split("\\|\\|");
@@ -86,7 +85,7 @@ final public class ElasticsearchDateConverter {
*/
public String format(TemporalAccessor accessor) {
Assert.notNull("accessor", "accessor must not be null");
Assert.notNull(accessor, "accessor must not be null");
if (accessor instanceof Instant) {
Instant instant = (Instant) accessor;
+2 -1
View File
@@ -1,4 +1,4 @@
Spring Data Elasticsearch 4.3.4 (2021.1.4)
Spring Data Elasticsearch 4.3.5 (2021.1.5)
Copyright (c) [2013-2021] Pivotal Software, Inc.
This product is licensed to you under the Apache License, Version 2.0 (the "License").
@@ -34,5 +34,6 @@ conditions of the subcomponent's license, as noted in the LICENSE file.