Skip to content

Commit

Permalink
Updated CHANGELOG.md (#1363)
Browse files Browse the repository at this point in the history
* Updated CHANGELOG.md

* Added quotes to CHANGELOG.md

* Codestyle fix
  • Loading branch information
vladvildanov committed Aug 15, 2023
1 parent 311cd2b commit f6cf2af
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
## Changelog

## v2.2.1 (2023-08-15)

### Added
- Added support for new optional arguments: `PEXPIRE`, `PEXPIREAT`, `INFO`, `COMMAND` (Redis 6.2, 7) (#1330)
- Client set client name and version as a part of connection establishing process. (Redis 7.2) (#1347)
- Added support for `WAITAOF` command (#1357)
- Added missing redis-stack commands to `KeyPrefix processor` (#1358)
- Added support Redis 7.0 arguments for `SHUTDOWN command` (#1359)

### Changed
- Changed interface of `CLIENT` command to more descriptive for each subcommand. (#1337)

## v2.2.0 (2023-06-14)

Predis v2.2.0 introduces official support for [Redis Stack](https://redis.io/docs/stack/) as well as a [Relay](https://github.com/cachewerk/relay) integration for substantially [faster read performance](https://github.com/predis/predis/wiki/Using-Relay).
Expand Down
1 change: 1 addition & 0 deletions src/Connection/Replication/SentinelReplication.php
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,7 @@ public function add(NodeConnectionInterface $connection)
$this->master = $connection;
} elseif ('sentinel' === $role) {
$this->sentinels[] = $connection;

// sentinels are not considered part of the pool.
return;
} else {
Expand Down

0 comments on commit f6cf2af

Please sign in to comment.