From f2bdc84329993988911ce2d8d73519028793417f Mon Sep 17 00:00:00 2001 From: vaan_oxo <44669920+oxo1996@users.noreply.github.com> Date: Tue, 19 Nov 2024 16:22:15 +0900 Subject: [PATCH 1/3] Fix incorrect reference to SETNX in ReactiveValueOperations.setIfAbsent --- .../data/redis/core/ReactiveValueOperations.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/springframework/data/redis/core/ReactiveValueOperations.java b/src/main/java/org/springframework/data/redis/core/ReactiveValueOperations.java index d1ded81eae..6ddc60641e 100644 --- a/src/main/java/org/springframework/data/redis/core/ReactiveValueOperations.java +++ b/src/main/java/org/springframework/data/redis/core/ReactiveValueOperations.java @@ -63,7 +63,7 @@ public interface ReactiveValueOperations { * * @param key must not be {@literal null}. * @param value - * @see Redis Documentation: SETNX + * @see Redis Documentation: SET */ Mono setIfAbsent(K key, V value); From 5a012f481cf5389d87f8153e133b07d818f893ea Mon Sep 17 00:00:00 2001 From: vaan_oxo <44669920+oxo1996@users.noreply.github.com> Date: Tue, 19 Nov 2024 17:25:55 +0900 Subject: [PATCH 2/3] Fix incorrect reference to SETNX in ReactiveValueOperations.setIfAbsent --- .../data/redis/core/ReactiveValueOperations.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/springframework/data/redis/core/ReactiveValueOperations.java b/src/main/java/org/springframework/data/redis/core/ReactiveValueOperations.java index 6ddc60641e..92a8c65406 100644 --- a/src/main/java/org/springframework/data/redis/core/ReactiveValueOperations.java +++ b/src/main/java/org/springframework/data/redis/core/ReactiveValueOperations.java @@ -63,7 +63,7 @@ public interface ReactiveValueOperations { * * @param key must not be {@literal null}. * @param value - * @see Redis Documentation: SET + * @see Redis Documentation: SET */ Mono setIfAbsent(K key, V value); From 34365ab9ae096133c38f44d9e2f684beb69647bc Mon Sep 17 00:00:00 2001 From: Marcin Grzejszczak Date: Mon, 25 Nov 2024 17:01:34 +0100 Subject: [PATCH 3/3] Preparing branch version --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 50848f2fb4..a9ca22cffb 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ org.springframework.data spring-data-redis - 3.5.0-SNAPSHOT + 3.5.0-GH-3055-SNAPSHOT Spring Data Redis Spring Data module for Redis