Skip to content

Commit

Permalink
tag v2.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tillkruss committed Mar 2, 2023
1 parent fea4027 commit a77a439
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 3 deletions.
27 changes: 26 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -12,7 +38,6 @@
## v2.1.0 (2023-01-16)

## New Features

- Implemented `GETEX` command (#872)
- Implemented `GETDEL` command (#869)
- Implemented `COPY` command (#866)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.1.1
2.1.2
2 changes: 1 addition & 1 deletion src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
*/
class Client implements ClientInterface, IteratorAggregate
{
public const VERSION = '2.1.1';
public const VERSION = '2.1.2';

/** @var OptionsInterface */
private $options;
Expand Down

0 comments on commit a77a439

Please sign in to comment.