Skip to content

Commit 61a979f

Browse files
committed
Prepare v2.5.0 release
1 parent 98df799 commit 61a979f

File tree

2 files changed

+24
-2
lines changed

2 files changed

+24
-2
lines changed

CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
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.

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -610,15 +610,15 @@ This project follows [SemVer](https://semver.org/).
610610
This 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

616616
See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.
617617

618618
This project aims to run on any platform and thus does not require any PHP
619619
extensions and supports running on legacy PHP 5.3 through current PHP 8+ and
620620
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.
622622

623623
## Tests
624624

0 commit comments

Comments
 (0)