|
1 | 1 | Spring Data Redis Changelog
|
2 | 2 | ===========================
|
3 | 3 |
|
| 4 | +Changes in version 2.6.0-M1 (2021-07-16) |
| 5 | +---------------------------------------- |
| 6 | +* #2122 - Upgrade to redis/jedis driver 3.6.2. |
| 7 | +* #2119 - Upgrade to Lettuce 6.1.4. |
| 8 | +* #2116 - Introduce factory methods to configure `LettuceConnectionFactory` from `RedisURI`. |
| 9 | +* #2113 - Add support for `GEOSEARCH` and `GEOSEARCHSTORE`. |
| 10 | +* #2109 - Add support for type using the SCAN command. |
| 11 | +* #2107 - Add support for `LMOVE` and `BLMOVE`. |
| 12 | +* #2103 - Cannot connect to Redis Sentinel using database greater 0 through Jedis. |
| 13 | +* #2097 - Add support for `DIFF`, `ZDIFFSTORE`, `ZINTER`, and `ZUNION`. |
| 14 | +* #2093 - Upgrade to Jedis 3.6.1. |
| 15 | +* #2091 - Upgrade to Lettuce 6.1.3. |
| 16 | +* #2089 - Support for TYPE parameter of SCAN command. |
| 17 | +* #2088 - Add support for ZMSCORE and ZPOPMIN/ZPOPMAX commands. |
| 18 | +* #2087 - Fix result sorting using Redis repository query methods. |
| 19 | +* #2086 - Add support for `GETEX` and `GETDEL` through `getAndExpire(…)`, `getAndPersist(…)` and `getAndDelete(…)` methods. |
| 20 | +* #2085 - Upgrade to Redis 6.2.4. |
| 21 | +* #2081 - ValueOperation setIFAbsent with ttl not working. |
| 22 | +* #2080 - Support findAll with sorting in derived query methods. |
| 23 | +* #2079 - RedisCache synchronises all get(key, valueLoader) calls. |
| 24 | +* #2078 - `LettuceStreamCommands.xRevRange` uses async dedicated connection. |
| 25 | +* #2069 - Bump xstream from 1.4.16 to 1.4.17. |
| 26 | +* #2064 - Upgrade to Lettuce 6.1.2. |
| 27 | +* #2057 - Guard non-initialized `RedisConnectionFactory.getConnection()` with `IllegalStateException`. |
| 28 | +* #2055 - Add support for BitFieldSubCommands that generate multiple bit operations using non-chaining methods. |
| 29 | +* #2052 - Add support for `SubscriptionListener` using Pub/Sub and introduce `ReactiveRedisMessageListenerContainer.receiveLater(…)`. |
| 30 | +* #2051 - Revise RedisCache and documentation. |
| 31 | +* #2050 - Add support for `GETEX` and `GETDEL` through imperative and reactive `…ValueOperations`. |
| 32 | +* #2049 - Add support for `ZRANDMEMBER` through `ZSetOperations` and `ReactiveZSetOperations`. |
| 33 | +* #2048 - Add support for `HRANDFIELD` through `HashOperations` and `ReactiveHashOperations`. |
| 34 | +* #2047 - Add `NOMKSTREAM` option to `XADD` command. |
| 35 | +* #2044 - Add exclusive range query to `XPENDING` and `X[REV]RANGE`. |
| 36 | +* #2043 - Add support for `GEOSEARCH[STORE]` through `GeoOperations` and `ReactiveGeoOperations`. |
| 37 | +* #2041 - Add support for `ZDIFF[STORE]` commands through `ZSetOperations` and `ReactiveZSetOperations`. |
| 38 | +* #2040 - Add support for `COPY` via `RedisOperations` and `ReactiveRedisOperations`. |
| 39 | +* #2039 - Add support for `LMOVE` and `BLMOVE` via `ListOperations` and `ReactiveListOperations`. |
| 40 | +* #2038 - Add support for `ZMSCORE` through variadic `ZSetOperations.score(K key, Object... o)` and `ReactiveZSetOperations`. |
| 41 | +* #2037 - Add support for `SMISMEMBER` through variadic `SetOperations.isMember(K key, Object... o)` and `ReactiveSetOperations`. |
| 42 | +* #2022 - Upgrade to Jedis 3.6.0. |
| 43 | +* #2008 - Update CI to Java 16. |
| 44 | +* #2007 - Add support for `ZPOPMIN` and `ZPOPMAX` commands including blocking variants. |
| 45 | +* #2006 - Cannot scan binary keys with Jedis. |
| 46 | +* #1987 - LPOP and RPOP with count option. |
| 47 | +* #1834 - Flakey bug: PubSubTests.testContainerSubscribe fails at random times [DATAREDIS-1264]. |
| 48 | +* #1801 - Mention RedisCache locking behavior details [DATAREDIS-1228]. |
| 49 | +* #1721 - DefaultRedisCacheWriter.clean() uses blocking KEYS command [DATAREDIS-1151]. |
| 50 | + |
| 51 | + |
4 | 52 | Changes in version 2.4.11 (2021-07-16)
|
5 | 53 | --------------------------------------
|
6 | 54 | * #2120 - Upgrade to Lettuce 6.0.7.
|
@@ -2452,5 +2500,6 @@ General
|
2452 | 2500 |
|
2453 | 2501 |
|
2454 | 2502 |
|
| 2503 | + |
2455 | 2504 |
|
2456 | 2505 |
|
0 commit comments