File tree 2 files changed +24
-2
lines changed
2 files changed +24
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 2.5.0 (2021-08-31)
4
+
5
+ * Feature: Simplify usage by supporting new [ default loop] ( https://reactphp.org/event-loop/#loop ) and new Socket API.
6
+ (#114 and #115 by @SimonFrings )
7
+
8
+ ``` php
9
+ // old (still supported)
10
+ $factory = new Clue\React\Redis\Factory($loop);
11
+
12
+ // new (using default loop)
13
+ $factory = new Clue\React\Redis\Factory();
14
+ ```
15
+
16
+ * Feature: Improve error reporting, include Redis URI and socket error codes in all connection errors.
17
+ (#116 by @clue)
18
+
19
+ * Documentation improvements and updated examples.
20
+ (#117 by @clue, #112 by @Nyholm and #113 by @PaulRotmann)
21
+
22
+ * Improve test suite and use GitHub actions for continuous integration (CI).
23
+ (#111 by @SimonFrings)
24
+
3
25
## 2.4.0 (2020-09-25)
4
26
5
27
* Fix: Fix dangling timer when lazy connection closes with pending commands.
Original file line number Diff line number Diff line change @@ -610,15 +610,15 @@ This project follows [SemVer](https://semver.org/).
610
610
This will install the latest supported version:
611
611
612
612
``` bash
613
- $ composer require clue/redis-react:^2.4
613
+ $ composer require clue/redis-react:^2.5
614
614
```
615
615
616
616
See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
617
617
618
618
This project aims to run on any platform and thus does not require any PHP
619
619
extensions and supports running on legacy PHP 5.3 through current PHP 8+ and
620
620
HHVM.
621
- It's * highly recommended to use PHP 7+ * for this project.
621
+ It's * highly recommended to use the latest supported PHP version * for this project.
622
622
623
623
## Tests
624
624
You can’t perform that action at this time.
0 commit comments