Skip to content

Commit bf8ef7d

Browse files
committed
Bump minor version.
1 parent 3778b69 commit bf8ef7d

File tree

3 files changed

+24
-2
lines changed

3 files changed

+24
-2
lines changed

lib/async/dns/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66

77
module Async
88
module DNS
9-
VERSION = "1.3.0"
9+
VERSION = "1.4.0"
1010
end
1111
end

readme.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,28 @@ Please see the [project documentation](https://socketry.github.io/async-dns/) fo
1212

1313
## Releases
1414

15+
Please see the [project releases](https://socketry.github.io/async-dns/releases/index) for all releases.
16+
17+
### v1.4.0
18+
19+
- Minimum Ruby version is now v3.1.
20+
- Drop dependency on `Async::IO` and refactor internal network code to use `IO::Endpoint` and `Socket` directly.
21+
- Introduce `Async::DNS::Endpoint` for getting the default endpoint for a given name server.
22+
- Remove old hacks for IPv6 on Ruby v2.3.
23+
- Introduce `Async::DNS::Cache` for caching DNS lookups.
24+
- Remove `logger` as an option and instance variable in favour of using `Console.logger` directly. This is a breaking change.
25+
- Update error logging to include more details.
26+
- Use keyword arguments `**options` where possible. This is a breaking change.
27+
- `Async::DNS::StreamHandler` and `Async::DNS::DatagramHandler` have been refactored to use `IO::Endpoint` and have minor breaking interface changes.
28+
- `Async::DNS::Resolver.default` should be used to get a default resolver instance.
29+
- The resolver now supports `ndots:` when resolving names.
30+
- `Async::DNS::Resolver#fully_qualified_name` is replaced by `Async::DNS::Resolver#fully_qualified_names` and can yield multiple names.
31+
- If the host system supports IPv6, the resolver will also try to resolve IPv6 addresses.
32+
- `Async::DNS::Server::DEFAULT_ENDPOINTS` is removed and replaced by `Async::DNS::Server.default_endpoint(port = 53)`.
33+
- `Async::DNS::Server#fire` is removed with no replacement.
34+
- The default `Async::DNS::Server#process` fails with `NXDomain` instead of `NotImplementedError`.
35+
- `Async::DNS::System` implementation is updated to support IPv6 and `resolv.conf` options.
36+
1537
## Contributing
1638

1739
We welcome contributions to this project.

releases.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Releases
22

3-
## Unreleased
3+
## v1.4.0
44

55
- Minimum Ruby version is now v3.1.
66
- Drop dependency on `Async::IO` and refactor internal network code to use `IO::Endpoint` and `Socket` directly.

0 commit comments

Comments
 (0)