Skip to content

Commit 6d38296

Browse files
committed
Prepare v1.9.0 release
1 parent e5e152a commit 6d38296

File tree

2 files changed

+19
-4
lines changed

2 files changed

+19
-4
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
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

520
A major new feature release, see [**release announcement**](https://clue.engineering/2021/announcing-reactphp-default-loop).

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -409,15 +409,15 @@ This project follows [SemVer](https://semver.org/).
409409
This 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

415415
See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.
416416

417417
This project aims to run on any platform and thus does not require any PHP
418418
extensions and supports running on legacy PHP 5.3 through current PHP 8+ and
419419
HHVM.
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
431431
To 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

437437
The test suite also contains a number of functional integration tests that rely
438438
on a stable internet connection.
439439
If 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

0 commit comments

Comments
 (0)