From a77a43913a74f9331f637bb12867eb8e274814e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Till=20Kru=CC=88ss?= Date: Thu, 2 Mar 2023 10:32:04 -0800 Subject: [PATCH] tag v2.1.2 --- CHANGELOG.md | 27 ++++++++++++++++++++++++++- VERSION | 2 +- src/Client.php | 2 +- 3 files changed, 28 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f826f0bd..3c0cf9bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,31 @@ ## Changelog +## v2.1.2 (2023-03-02) + +## Added +- Added stream commands to `KeyPrefixProcessor` (#1051) +- Added `ReplicationStrategy::$loadBalancing` option to disable replica reads (#1168) +- Added support for `FCALL` and `FUNCTIONS` commands (#1049) +- Added support for `PEXPIRETIME` command (#1031) +- Added support for `EXPIRETIME` command (#1029) +- Added support for `EVAL_RO` command (#1032) +- Added support for `LCS` command (#1035) +- Added support for `SORT_RO` command (#1044) +- Added support for `SINTERCARD` command (#1027) +- Added support for `EVALSHA_RO` command (#1034) +- Added support for new arguments for `BITPOS` and `BITCOUNT` commands (#1045) +- Added support for new arguments for `EXPIRE` and `EXPIREAT` commands (#1046) + +## Bug Fixes +- Fixed deprecated function call syntax + +## Deprecated +- Further deprecated phpiredis and webdis integration (#1179) + +## Maintenance +- Applied coding standards +- Pass PHPStan level 2 + ## v2.1.1 (2023-01-17) ## Bug Fixes @@ -12,7 +38,6 @@ ## v2.1.0 (2023-01-16) ## New Features - - Implemented `GETEX` command (#872) - Implemented `GETDEL` command (#869) - Implemented `COPY` command (#866) diff --git a/VERSION b/VERSION index 3e3c2f1e..eca07e4c 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.1.1 +2.1.2 diff --git a/src/Client.php b/src/Client.php index 35488415..91c126f4 100644 --- a/src/Client.php +++ b/src/Client.php @@ -47,7 +47,7 @@ use Traversable; */ class Client implements ClientInterface, IteratorAggregate { - public const VERSION = '2.1.1'; + public const VERSION = '2.1.2'; /** @var OptionsInterface */ private $options;