From b22b0b20278e8535e633ab71a52472c5bf620aa1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20L=C3=BCck?= Date: Fri, 5 Mar 2021 13:16:50 +0100 Subject: [PATCH] Prepare v1.5.0 release --- CHANGELOG.md | 14 ++++++++++++++ README.md | 6 +++--- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2709e738..69ffff4c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 1.5.0 (2021-03-05) + +* Feature: Improve error reporting when query fails, include domain and query type and DNS server address where applicable. + (#174 by @clue) + +* Feature: Improve error handling when sending data to DNS server fails (macOS). + (#171 and #172 by @clue) + +* Fix: Improve DNS response parser to limit recursion for compressed labels. + (#169 by @clue) + +* Improve test suite, use GitHub actions for continuous integration (CI). + (#170 by @SimonFrings) + ## 1.4.0 (2020-09-18) * Feature: Support upcoming PHP 8. diff --git a/README.md b/README.md index e7d86bc6..dc371ecb 100644 --- a/README.md +++ b/README.md @@ -418,14 +418,14 @@ $executor->query( ## Install -The recommended way to install this library is [through Composer](https://getcomposer.org). +The recommended way to install this library is [through Composer](https://getcomposer.org/). [New to Composer?](https://getcomposer.org/doc/00-intro.md) This project follows [SemVer](https://semver.org/). This will install the latest supported version: ```bash -$ composer require react/dns:^1.4 +$ composer require react/dns:^1.5 ``` See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades. @@ -438,7 +438,7 @@ It's *highly recommended to use PHP 7+* for this project. ## Tests To run the test suite, you first need to clone this repo and then install all -dependencies [through Composer](https://getcomposer.org): +dependencies [through Composer](https://getcomposer.org/): ```bash $ composer install