Skip to content

Commit 6c6180f

Browse files
committed
Release v3.3.0
1 parent ab0d079 commit 6c6180f

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

Changelog

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
1+
09/27/2020
2+
- 3.3.0 released
3+
- Add support for SVCB and HTTPS records
4+
(PR#116, @adam-stoler)
5+
- Fix an issue with ndots in Lookup (#118)
6+
- Support IPv4 mapped IPv6 address in AAAA record
7+
(PR#120, @spwei)
8+
- Validate range in Type
9+
- Improve DOH Resolver (#123, #127)
10+
Note that this resolver is more a proof of concept and not
11+
production ready. See Javadoc and issue #123.
12+
113
07/11/2020
2-
- 3.2.1 released
14+
- 3.2.2 released
315
- Fix JNA access violation in WindowsResolverConfigProvider
416
on 32bit JVMs
517

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ dnsjava comes with several built-in resolvers:
157157
- `ExtendedResolver`: a resolver that uses multiple `SimpleResolver`s to send
158158
the queries. Can be configured to query the servers in a round-robin order.
159159
Blacklists a server if it times out.
160-
- `DohResolver`: a very basic DNS over HTTP resolver, e.g. to use
160+
- `DohResolver`: a proof-of-concept DNS over HTTP resolver, e.g. to use
161161
`https://dns.google/query`.
162162

163163
The project [dnssecjava](https://github.com/ibauersachs/dnssecjava) has a

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>dnsjava</groupId>
88
<artifactId>dnsjava</artifactId>
99
<packaging>bundle</packaging>
10-
<version>3.3.0-SNAPSHOT</version>
10+
<version>3.3.0</version>
1111
<name>dnsjava</name>
1212
<description>dnsjava is an implementation of DNS in Java. It supports all defined record types (including the DNSSEC
1313
types), and unknown types. It can be used for queries, zone transfers, and dynamic updates. It includes a cache
@@ -30,7 +30,7 @@
3030
<connection>scm:git:https://github.com/dnsjava/dnsjava</connection>
3131
<developerConnection>scm:git:https://github.com/dnsjava/dnsjava</developerConnection>
3232
<url>https://github.com/dnsjava/dnsjava</url>
33-
<tag>HEAD</tag>
33+
<tag>v3.3.0</tag>
3434
</scm>
3535
<developers>
3636
<developer>

0 commit comments

Comments
 (0)