File tree Expand file tree Collapse file tree 2 files changed +24
-2
lines changed Expand file tree Collapse file tree 2 files changed +24
-2
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
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+
325## 2.4.0 (2020-09-25)
426
527* 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/).
610610This will install the latest supported version:
611611
612612``` bash
613- $ composer require clue/redis-react:^2.4
613+ $ composer require clue/redis-react:^2.5
614614```
615615
616616See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
617617
618618This project aims to run on any platform and thus does not require any PHP
619619extensions and supports running on legacy PHP 5.3 through current PHP 8+ and
620620HHVM.
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.
622622
623623## Tests
624624
You can’t perform that action at this time.
0 commit comments