Compare commits

...

1 Commits

Author SHA1 Message Date
Till Krüss 35019cf292 bump dev version 2026-09-17 13:44:54 -07:00
3 changed files with 9 additions and 4 deletions
+7 -2
View File
@@ -1,13 +1,18 @@
## Changelog ## Changelog
## v3.6.1 (2026-09-17) ## Unreleased
### Added
### Changed ### Changed
- Deprecated `CommandInterface::deserializeCommand()` (CVE GHSA-w6f5-v2h6-g786) ### Fixed
## v3.6.1 (2026-09-17)
### Fixed ### Fixed
- Fixed RESP3 double parsing returning positive `INF` for `-inf` payloads (#1716) - Fixed RESP3 double parsing returning positive `INF` for `-inf` payloads (#1716)
- Fixed `client_info` connection parameter being ignored (#1722) - Fixed `client_info` connection parameter being ignored (#1722)
- Fixed `Stream::write()` and `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)
### Security
- Deprecated `CommandInterface::deserializeCommand()` (CVE GHSA-w6f5-v2h6-g786)
- Fixed CRLF command smuggling and node misrouting in `AbstractAggregateConnection::write()` and `CommandInterface::deserializeCommand()` (CVE GHSA-w6f5-v2h6-g786) - Fixed CRLF command smuggling and node misrouting in `AbstractAggregateConnection::write()` and `CommandInterface::deserializeCommand()` (CVE GHSA-w6f5-v2h6-g786)
## v3.6.0 (2026-08-14) ## v3.6.0 (2026-08-14)
+1 -1
View File
@@ -1 +1 @@
3.6.1 3.6.2-dev
+1 -1
View File
@@ -56,7 +56,7 @@ use Traversable;
*/ */
class Client implements ClientInterface, IteratorAggregate class Client implements ClientInterface, IteratorAggregate
{ {
public const VERSION = '3.6.1'; public const VERSION = '3.6.2-dev';
/** @var OptionsInterface */ /** @var OptionsInterface */
private $options; private $options;