prepare v3.4.0

This commit is contained in:
Till Krüss
2026-02-11 09:28:17 -08:00
committed by GitHub
parent 5d85628a11
commit 83dbdbeb43
3 changed files with 9 additions and 17 deletions
+7 -15
View File
@@ -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)
+1 -1
View File
@@ -1 +1 @@
3.3.0
3.4.0
+1 -1
View File
@@ -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;