File tree 2 files changed +35
-1
lines changed
2 files changed +35
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
32
## 1.2.0 (2017-09-19)
4
33
5
34
* Feature: Support ` redis[s]:// ` URI scheme and deprecate legacy URIs
Original file line number Diff line number Diff line change @@ -254,11 +254,16 @@ The recommended way to install this library is [through Composer](https://getcom
254
254
This will install the latest supported version:
255
255
256
256
``` bash
257
- $ composer require clue/redis-react:^1.2
257
+ $ composer require clue/redis-react:^2.0
258
258
```
259
259
260
260
See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
261
261
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
+
262
267
## Tests
263
268
264
269
To run the test suite, you first need to clone this repo and then install all
You can’t perform that action at this time.
0 commit comments