Skip to content

Commit

Permalink
Prepare v2.5.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonFrings committed Aug 31, 2021
1 parent 98df799 commit 61a979f
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# Changelog

## 2.5.0 (2021-08-31)

* Feature: Simplify usage by supporting new [default loop](https://reactphp.org/event-loop/#loop) and new Socket API.
(#114 and #115 by @SimonFrings)

```php
// old (still supported)
$factory = new Clue\React\Redis\Factory($loop);

// new (using default loop)
$factory = new Clue\React\Redis\Factory();
```

* Feature: Improve error reporting, include Redis URI and socket error codes in all connection errors.
(#116 by @clue)

* Documentation improvements and updated examples.
(#117 by @clue, #112 by @Nyholm and #113 by @PaulRotmann)

* Improve test suite and use GitHub actions for continuous integration (CI).
(#111 by @SimonFrings)

## 2.4.0 (2020-09-25)

* Fix: Fix dangling timer when lazy connection closes with pending commands.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -610,15 +610,15 @@ This project follows [SemVer](https://semver.org/).
This will install the latest supported version:

```bash
$ composer require clue/redis-react:^2.4
$ composer require clue/redis-react:^2.5
```

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

This project aims to run on any platform and thus does not require any PHP
extensions and supports running on legacy PHP 5.3 through current PHP 8+ and
HHVM.
It's *highly recommended to use PHP 7+* for this project.
It's *highly recommended to use the latest supported PHP version* for this project.

## Tests

Expand Down

0 comments on commit 61a979f

Please sign in to comment.