tag v3.6.1

This commit is contained in:
Till Krüss
2026-09-17 13:41:00 -07:00
committed by GitHub
parent 3edc442e55
commit e2db96312e
3 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -1,13 +1,13 @@
## Changelog
## Unreleased
### Added
## v3.6.1 (2026-09-17)
### Changed
- Deprecated `CommandInterface::deserializeCommand()` (CVE GHSA-w6f5-v2h6-g786)
### Fixed
- Fixed RESP3 double parsing returning positive `INF` for `-inf` payloads (#1716)
- Fixed `client_info` connection parameter being ignored (#1722)
- Fixed `Stream::write()`/`read()` leaving a dead connection when a host error handler throws exception (#1725)
- Fixed `Stream::write()` and `read()` leaving a dead connection when a host error handler throws exception (#1725)
- Fixed CRLF command smuggling and node misrouting in `AbstractAggregateConnection::write()` and `CommandInterface::deserializeCommand()` (CVE GHSA-w6f5-v2h6-g786)
## v3.6.0 (2026-08-14)
+1 -1
View File
@@ -1 +1 @@
3.6.1-dev
3.6.1
+1 -1
View File
@@ -56,7 +56,7 @@ use Traversable;
*/
class Client implements ClientInterface, IteratorAggregate
{
public const VERSION = '3.6.1-dev';
public const VERSION = '3.6.1';
/** @var OptionsInterface */
private $options;