File tree Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 1.8.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
+ (#42 by @clue )
9
+
10
+ ``` php
11
+ // old (still supported)
12
+ $factory = new React\Datagram\Factory($loop);
13
+
14
+ // new (using default loop)
15
+ $factory = new React\Datagram\Factory();
16
+ ```
17
+
3
18
## 1.7.0 (2021-06-25)
4
19
5
20
* Feature: Support falling back to multiple DNS servers from DNS config.
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ This project follows [SemVer](https://semver.org/).
37
37
This will install the latest supported version:
38
38
39
39
``` bash
40
- $ composer require react/datagram:^1.7
40
+ $ composer require react/datagram:^1.8
41
41
```
42
42
43
43
See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
You can’t perform that action at this time.
0 commit comments