File tree Expand file tree Collapse file tree 2 files changed +19
-4
lines changed
Expand file tree Collapse file tree 2 files changed +19
-4
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 1.9.0 (2021-12-20)
4+
5+ * Feature: Full support for PHP 8.1 release and prepare PHP 8.2 compatibility
6+ by refactoring ` Parser ` to avoid assigning dynamic properties.
7+ (#188 and #186 by @clue and #184 by @SimonFrings )
8+
9+ * Feature: Avoid dependency on ` ext-filter ` .
10+ (#185 by @clue )
11+
12+ * Feature / Fix: Skip invalid nameserver entries from ` resolv.conf ` and ignore IPv6 zone IDs.
13+ (#187 by @clue )
14+
15+ * Feature / Fix: Reduce socket read chunk size for queries over TCP/IP.
16+ (#189 by @clue )
17+
318## 1.8.0 (2021-07-11)
419
520A major new feature release, see [ ** release announcement** ] ( https://clue.engineering/2021/announcing-reactphp-default-loop ) .
Original file line number Diff line number Diff line change @@ -409,15 +409,15 @@ This project follows [SemVer](https://semver.org/).
409409This will install the latest supported version:
410410
411411``` bash
412- $ composer require react/dns:^1.8
412+ $ composer require react/dns:^1.9
413413```
414414
415415See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
416416
417417This project aims to run on any platform and thus does not require any PHP
418418extensions and supports running on legacy PHP 5.3 through current PHP 8+ and
419419HHVM.
420- It's * highly recommended to use PHP 7+ * for this project.
420+ It's * highly recommended to use the latest supported PHP version * for this project.
421421
422422## Tests
423423
@@ -431,15 +431,15 @@ $ composer install
431431To run the test suite, go to the project root and run:
432432
433433``` bash
434- $ php vendor/bin/phpunit
434+ $ vendor/bin/phpunit
435435```
436436
437437The test suite also contains a number of functional integration tests that rely
438438on a stable internet connection.
439439If you do not want to run these, they can simply be skipped like this:
440440
441441``` bash
442- $ php vendor/bin/phpunit --exclude-group internet
442+ $ vendor/bin/phpunit --exclude-group internet
443443```
444444
445445## License
You can’t perform that action at this time.
0 commit comments