From 83dbdbeb43d7fc773cc6c8d8402d394d2fbd821a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Till=20Kr=C3=BCss?= Date: Wed, 11 Feb 2026 09:28:17 -0800 Subject: [PATCH] prepare v3.4.0 --- CHANGELOG.md | 22 +++++++--------------- VERSION | 2 +- src/Client.php | 2 +- 3 files changed, 9 insertions(+), 17 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ee0df53..baac52a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,26 +1,18 @@ ## Changelog -## Unreleased +## v3.4.0 (2025-11-24) +### Added +- Added optional retry support (#1616) +- Added support for `VRANGE` command (#1623) +- Added support for idempotent stream API (#1632) +- Added support for `HOTKEYS` container command (#1630) ### Fixed - Fixed `[L|R]PUSHX` variadic arguments normalization (#1633) - Fixed wrong `@param` annotation in `Parameters` (#1614) -- Make `ZRANDMEMBER` prefixable (#1621) +- Made `ZRANDMEMBER` prefixable (#1621) - Improve connection handshake by pipelining commands (#1622) -### Added -- Added retry support (#1616) -- Added support for VRANGE command (#1623) -- Added support for idempotent stream API (#1632) -- Added support for HOTKEYS container command (#1630) - -### Maintenance -- Added testing with SSL connection (#1624) -- Added testing with SSL authentication using CN (#1627) -- Added testing with TimeSeries NaN values (#1628) -- Added support for Redis 8.6 (#1631) -- Added testing with Redis 8.6 GA (#1634) - ## v3.3.0 (2025-11-24) ### Added - Added cluster support for `XADD`, `XDEL` and `XRANGE` (#1587) diff --git a/VERSION b/VERSION index 0fa4ae48..fbcbf738 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.3.0 \ No newline at end of file +3.4.0 \ No newline at end of file diff --git a/src/Client.php b/src/Client.php index af28e99f..b56c6d30 100644 --- a/src/Client.php +++ b/src/Client.php @@ -56,7 +56,7 @@ use Traversable; */ class Client implements ClientInterface, IteratorAggregate { - public const VERSION = '3.3.0'; + public const VERSION = '3.4.0'; /** @var OptionsInterface */ private $options;