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 1
1
# Changelog
2
2
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
+
3
24
## 1.1.0 (2019-02-07)
4
25
5
26
* 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
154
154
155
155
A ` stream_select() ` based event loop.
156
156
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)
158
158
function and is the only implementation which works out of the box with PHP.
159
159
160
160
This 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/).
672
672
This will install the latest supported version:
673
673
674
674
``` bash
675
- $ composer require react/event-loop:^1.1
675
+ $ composer require react/event-loop:^1.1.1
676
676
```
677
677
678
678
See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
Original file line number Diff line number Diff line change 9
9
/**
10
10
* A `stream_select()` based event loop.
11
11
*
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)
13
13
* function and is the only implementation which works out of the box with PHP.
14
14
*
15
15
* This event loop works out of the box on PHP 5.4 through PHP 7+ and HHVM.
47
47
* then adjust your system time forward by 20s, the timer may trigger in 10s.
48
48
* See also [`addTimer()`](#addtimer) for more details.
49
49
*
50
- * @link http ://php.net/manual/en/function.stream-select.php
50
+ * @link https ://www. php.net/manual/en/function.stream-select.php
51
51
*/
52
52
final class StreamSelectLoop implements LoopInterface
53
53
{
You can’t perform that action at this time.
0 commit comments