File tree Expand file tree Collapse file tree 2 files changed +20
-4
lines changed
Expand file tree Collapse file tree 2 files changed +20
-4
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 0.7.5 (2017-11-20)
4+
5+ * Fix: Igore excessive ` fopen() ` mode flags for ` WritableResourceStream `
6+ (#119 by @clue )
7+
8+ * Fix: Fix forward compatibility with upcoming EventLoop releases
9+ (#121 by @clue )
10+
11+ * Restructure examples to ease getting started
12+ (#123 by @clue )
13+
14+ * Improve test suite by adding forward compatibility with PHPUnit 6 and
15+ ignore Mac OS X test failures for now until Travis tests work again
16+ (#122 by @gabriel-caruso and #120 by @clue )
17+
318## 0.7.4 (2017-10-11)
419
520* Fix: Remove event listeners from ` CompositeStream ` once closed and
Original file line number Diff line number Diff line change 55Event-driven readable and writable streams for non-blocking I/O in [ ReactPHP] ( https://reactphp.org/ ) .
66
77In order to make the [ EventLoop] ( https://github.com/reactphp/event-loop )
8- easier to use, this component introduces the concept of "streams".
8+ easier to use, this component introduces the powerful concept of "streams".
9+ Streams allow you to efficiently process huge amounts of data (such as a multi
10+ Gigabyte file download) in small chunks without having to store everything in
11+ memory at once.
912They are very similar to the streams found in PHP itself,
1013but have an interface more suited for async, non-blocking I/O.
11- Mainly it provides interfaces for readable and writable streams, plus a file
12- descriptor based implementation with an in-memory write buffer.
1314
1415** Table of contents**
1516
@@ -1177,7 +1178,7 @@ The recommended way to install this library is [through Composer](https://getcom
11771178This will install the latest supported version:
11781179
11791180``` bash
1180- $ composer require react/stream:^0.7.4
1181+ $ composer require react/stream:^0.7.5
11811182```
11821183
11831184More details about version upgrades can be found in the [ CHANGELOG] ( CHANGELOG.md ) .
You can’t perform that action at this time.
0 commit comments