tag v2.1.2

This commit is contained in:
Till Krüss
2023-03-02 10:32:04 -08:00
parent fea402743f
commit a77a43913a
3 changed files with 28 additions and 3 deletions
+26 -1
View File
@@ -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)
+1 -1
View File
@@ -1 +1 @@
2.1.1
2.1.2
+1 -1
View File
@@ -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;