Skip to content

Commit cc932ec

Browse files
committed
Prepare v2.0.0 release
1 parent 1badb1f commit cc932ec

File tree

2 files changed

+35
-1
lines changed

2 files changed

+35
-1
lines changed

CHANGELOG.md

+29
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,34 @@
11
# Changelog
22

3+
## 2.0.0 (2017-09-20)
4+
5+
A major compatibility release to update this package to support all latest
6+
ReactPHP components!
7+
8+
This update involves a minor BC break due to dropped support for legacy
9+
versions. We've tried hard to avoid BC breaks where possible and minimize impact
10+
otherwise. We expect that most consumers of this package will actually not be
11+
affected by any BC breaks, see below for more details.
12+
13+
* BC break: Remove all deprecated APIs, default to `redis://` URI scheme
14+
and drop legacy SocketClient in favor of new Socket component.
15+
(#61 by @clue)
16+
17+
> All of this affects the `Factory` only, which is mostly considered
18+
"advanced usage". If you're affected by this BC break, then it's
19+
recomme ded to first update to the intermediary v1.2.0 release, which
20+
allows you to use the `redis://` URI scheme and a standard
21+
`ConnectorInterface` and then update to this version without causing a
22+
BC break.
23+
24+
* BC break: Remove uneeded `data` event and support for advanced `MONITOR`
25+
command for performance and consistency reasons and
26+
remove underdocumented `isBusy()` method.
27+
(#62, #63 and #64 by @clue)
28+
29+
* Feature: Forward compatibility with upcoming Socket v1.0 and v0.8 and EventLoop v1.0 and Evenement v3
30+
(#65 by @clue)
31+
332
## 1.2.0 (2017-09-19)
433

534
* Feature: Support `redis[s]://` URI scheme and deprecate legacy URIs

README.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -254,11 +254,16 @@ The recommended way to install this library is [through Composer](https://getcom
254254
This will install the latest supported version:
255255

256256
```bash
257-
$ composer require clue/redis-react:^1.2
257+
$ composer require clue/redis-react:^2.0
258258
```
259259

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

262+
This project aims to run on any platform and thus does not require any PHP
263+
extensions and supports running on legacy PHP 5.3 through current PHP 7+ and
264+
HHVM.
265+
It's *highly recommended to use PHP 7+* for this project.
266+
262267
## Tests
263268

264269
To run the test suite, you first need to clone this repo and then install all

0 commit comments

Comments
 (0)