Skip to content

Commit a77a439

Browse files
committed
tag v2.1.2
1 parent fea4027 commit a77a439

File tree

3 files changed

+28
-3
lines changed

3 files changed

+28
-3
lines changed

CHANGELOG.md

+26-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
## Changelog
22

3+
## v2.1.2 (2023-03-02)
4+
5+
## Added
6+
- Added stream commands to `KeyPrefixProcessor` (#1051)
7+
- Added `ReplicationStrategy::$loadBalancing` option to disable replica reads (#1168)
8+
- Added support for `FCALL` and `FUNCTIONS` commands (#1049)
9+
- Added support for `PEXPIRETIME` command (#1031)
10+
- Added support for `EXPIRETIME` command (#1029)
11+
- Added support for `EVAL_RO` command (#1032)
12+
- Added support for `LCS` command (#1035)
13+
- Added support for `SORT_RO` command (#1044)
14+
- Added support for `SINTERCARD` command (#1027)
15+
- Added support for `EVALSHA_RO` command (#1034)
16+
- Added support for new arguments for `BITPOS` and `BITCOUNT` commands (#1045)
17+
- Added support for new arguments for `EXPIRE` and `EXPIREAT` commands (#1046)
18+
19+
## Bug Fixes
20+
- Fixed deprecated function call syntax
21+
22+
## Deprecated
23+
- Further deprecated phpiredis and webdis integration (#1179)
24+
25+
## Maintenance
26+
- Applied coding standards
27+
- Pass PHPStan level 2
28+
329
## v2.1.1 (2023-01-17)
430

531
## Bug Fixes
@@ -12,7 +38,6 @@
1238
## v2.1.0 (2023-01-16)
1339

1440
## New Features
15-
1641
- Implemented `GETEX` command (#872)
1742
- Implemented `GETDEL` command (#869)
1843
- Implemented `COPY` command (#866)

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.1.1
1+
2.1.2

src/Client.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
*/
4848
class Client implements ClientInterface, IteratorAggregate
4949
{
50-
public const VERSION = '2.1.1';
50+
public const VERSION = '2.1.2';
5151

5252
/** @var OptionsInterface */
5353
private $options;

0 commit comments

Comments
 (0)