File tree Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 1.2.0 (2021-07-11)
4
+
5
+ A major new feature release, see [ ** release announcement** ] ( https://clue.engineering/2021/announcing-reactphp-default-loop ) .
6
+
7
+ * Feature: Simplify usage by supporting new [ default loop] ( https://reactphp.org/event-loop/#loop ) .
8
+ (#159 by @clue )
9
+
10
+ ``` php
11
+ // old (still supported)
12
+ $stream = new ReadableResourceStream($resource, $loop);
13
+ $stream = new WritabeResourceStream($resource, $loop);
14
+ $stream = new DuplexResourceStream($resource, $loop);
15
+
16
+ // new (using default loop)
17
+ $stream = new ReadableResourceStream($resource);
18
+ $stream = new WritabeResourceStream($resource);
19
+ $stream = new DuplexResourceStream($resource);
20
+ ```
21
+
22
+ * Improve test suite, use GitHub actions for continuous integration (CI),
23
+ update PHPUnit config, run tests on PHP 8 and add full core team to the license.
24
+ (#153, #156 and #157 by @SimonFrings and #154 by @WyriHaximus)
25
+
3
26
## 1.1.1 (2020-05-04)
4
27
5
28
* Fix: Fix faulty write buffer behavior when sending large data chunks over TLS (Mac OS X only).
Original file line number Diff line number Diff line change @@ -1202,7 +1202,7 @@ This project follows [SemVer](https://semver.org/).
1202
1202
This will install the latest supported version:
1203
1203
1204
1204
``` bash
1205
- $ composer require react/stream:^1.1.1
1205
+ $ composer require react/stream:^1.2
1206
1206
```
1207
1207
1208
1208
See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
You can’t perform that action at this time.
0 commit comments