File tree Expand file tree Collapse file tree 3 files changed +25
-4
lines changed Expand file tree Collapse file tree 3 files changed +25
-4
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 1.1.1 (2020-01-01)
4+
5+ * Fix: Fix reporting connection refused errors with ` ExtUvLoop ` on Linux and ` StreamSelectLoop ` on Windows.
6+ (#207 and #208 by @clue )
7+
8+ * Fix: Fix unsupported EventConfig and ` SEGFAULT ` on shutdown with ` ExtEventLoop ` on Windows.
9+ (#205 by @clue )
10+
11+ * Fix: Check PCNTL functions for signal support instead of PCNTL extension with ` StreamSelectLoop ` .
12+ (#195 by @clue )
13+
14+ * Add ` .gitattributes ` to exclude dev files from exports.
15+ (#201 by @reedy )
16+
17+ * Improve test suite to fix testing ` ExtUvLoop ` on Travis,
18+ fix Travis CI builds, do not install ` libuv ` on legacy PHP setups,
19+ fix failing test cases due to inaccurate timers,
20+ run tests on Windows via Travis CI and
21+ run tests on PHP 7.4 and simplify test matrix and test setup.
22+ (#197 by @WyriHaximus and #202 , #203 , #204 and #209 by @clue )
23+
324## 1.1.0 (2019-02-07)
425
526* New UV based event loop (ext-uv).
Original file line number Diff line number Diff line change @@ -154,7 +154,7 @@ event loop implementation first or they will throw a `BadMethodCallException` on
154154
155155A ` stream_select() ` based event loop.
156156
157- This uses the [ ` stream_select() ` ] ( http ://php.net/manual/en/function.stream-select.php)
157+ This uses the [ ` stream_select() ` ] ( https ://www. php.net/manual/en/function.stream-select.php)
158158function and is the only implementation which works out of the box with PHP.
159159
160160This event loop works out of the box on PHP 5.3 through PHP 7+ and HHVM.
@@ -672,7 +672,7 @@ This project follows [SemVer](https://semver.org/).
672672This will install the latest supported version:
673673
674674``` bash
675- $ composer require react/event-loop:^1.1
675+ $ composer require react/event-loop:^1.1.1
676676```
677677
678678See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
Original file line number Diff line number Diff line change 99/**
1010 * A `stream_select()` based event loop.
1111 *
12- * This uses the [`stream_select()`](http ://php.net/manual/en/function.stream-select.php)
12+ * This uses the [`stream_select()`](https ://www. php.net/manual/en/function.stream-select.php)
1313 * function and is the only implementation which works out of the box with PHP.
1414 *
1515 * This event loop works out of the box on PHP 5.4 through PHP 7+ and HHVM.
4747 * then adjust your system time forward by 20s, the timer may trigger in 10s.
4848 * See also [`addTimer()`](#addtimer) for more details.
4949 *
50- * @link http ://php.net/manual/en/function.stream-select.php
50+ * @link https ://www. php.net/manual/en/function.stream-select.php
5151 */
5252final class StreamSelectLoop implements LoopInterface
5353{
You can’t perform that action at this time.
0 commit comments