Releases: reactphp/dns
v1.3.0
-
Feature: Forward compatibility with react/promise v3.
(#153 by @WyriHaximus) -
Feature: Support parsing
OPT
records (EDNS0).
(#157 by @clue) -
Fix: Avoid PHP warnings due to lack of args in exception trace on PHP 7.4.
(#160 by @clue) -
Improve test suite and add
.gitattributes
to exclude dev files from exports.
Run tests on PHPUnit 9 and PHP 7.4 and clean up test suite.
(#154 by @reedy, #156 by @clue and #163 by @SimonFrings)
v1.2.0
-
Feature: Add
TcpTransportExecutor
to send DNS queries over TCP/IP connection,
addSelectiveTransportExecutor
to retry with TCP if UDP is truncated and
automatically select transport protocol when no explicitudp://
ortcp://
scheme is given inFactory
.
(#145, #146, #147 and #148 by @clue) -
Feature: Support escaping literal dots and special characters in domain names.
(#144 by @clue)
v1.1.0
v1.0.0
- First stable LTS release, now following SemVer.
We'd like to emphasize that this component is production ready and battle-tested.
We plan to support all long-term support (LTS) releases for at least 24 months,
so you have a rock-solid foundation to build on top of.
This update involves a number of BC breaks due to dropped support for
deprecated functionality and some internal API cleanup. We've tried hard to
avoid BC breaks where possible and minimize impact otherwise. We expect that
most consumers of this package will actually not be affected by any BC
breaks, see below for more details:
-
BC break: Delete all deprecated APIs, use
Query
objects forMessage
questions
instead of nested arrays and increase code coverage to 100%.
(#130 by @clue) -
BC break: Move
$nameserver
fromExecutorInterface
toUdpTransportExecutor
,
remove advanced/internalUdpTransportExecutor
args forParser
/BinaryDumper
and
add API documentation forExecutorInterface
.
(#135, #137 and #138 by @clue) -
BC break: Replace
HeaderBag
attributes with simpleMessage
properties.
(#132 by @clue) -
BC break: Mark all
Record
attributes as required, add documentation vsQuery
.
(#136 by @clue) -
BC break: Mark all classes as final to discourage inheritance
(#134 by @WyriHaximus)
v0.4.19
v0.4.18
-
Feature / Fix: Implement
CachingExecutor
using cache TTL, deprecate oldCachedExecutor
,
respect TTL from response records when caching and do not cache truncated responses.
(#129 by @clue) -
Feature: Limit cache size to 256 last responses by default.
(#127 by @clue) -
Feature: Cooperatively resolve hosts to avoid running same query concurrently.
(#125 by @clue)
v0.4.17
-
Feature: Support parsing
authority
andadditional
records from DNS response.
(#123 by @clue) -
Feature: Support dumping records as part of outgoing binary DNS message.
(#124 by @clue) -
Feature: Forward compatibility with upcoming Cache v0.6 and Cache v1.0
(#121 by @clue) -
Improve test suite to add forward compatibility with PHPUnit 7,
test against PHP 7.3 and use legacy PHPUnit 5 on legacy HHVM.
(#122 by @clue)
v0.4.16
-
Feature: Improve promise cancellation for DNS lookup retries and clean up any garbage references.
(#118 by @clue) -
Fix: Reject parsing malformed DNS response messages such as incomplete DNS response messages,
malformed record data or malformed compressed domain name labels.
(#115 and #117 by @clue) -
Fix: Fix interpretation of TTL as UINT32 with most significant bit unset.
(#116 by @clue) -
Fix: Fix caching advanced MX/SRV/TXT/SOA structures.
(#112 by @clue)
v0.4.15
-
Feature: Add
resolveAll()
method to support custom query types inResolver
.
(#110 by @clue and @WyriHaximus)$resolver->resolveAll('reactphp.org', Message::TYPE_AAAA)->then(function ($ips) { echo 'IPv6 addresses for reactphp.org ' . implode(', ', $ips) . PHP_EOL; });
-
Feature: Support parsing
NS
,TXT
,MX
,SOA
andSRV
records.
(#104, #105, #106, #107 and #108 by @clue) -
Feature: Add support for
Message::TYPE_ANY
and parse unknown types as binary data.
(#104 by @clue) -
Feature: Improve error messages for failed queries and improve documentation.
(#109 by @clue)
v0.4.14
-
Feature: Add
UdpTransportExecutor
, validate incoming DNS response messages
to avoid cache poisoning attacks and deprecate legacyExecutor
.
(#101 and #103 by @clue) -
Feature: Forward compatibility with Cache 0.5
(#102 by @clue) -
Deprecate legacy
Query::$currentTime
and binary parser data attributes to clean up and simplify API.
(#99 by @clue)