Skip to content

Commit 1f59406

Browse files
committed
Release v3.5.3
1 parent 730ed17 commit 1f59406

File tree

4 files changed

+19
-4
lines changed

4 files changed

+19
-4
lines changed

Changelog

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
11/11/2023
2+
- 3.5.3 released
3+
- Fix CNAME in LookupSession (#279)
4+
- Fix Name constructor failing with max length, relative name
5+
and root origin (#289, @MMauro94)
6+
- Add config option for Resolver I/O timeout (#273, @vmarian2)
7+
- Extend I/O logging
8+
- Prevent exception during TCP I/O with missing or truncated
9+
length prefix
10+
- Use internal base64 codec for Android compatibility (#271)
11+
- Fix multi-message TSIG stream verification for pre-RFC8945
12+
servers (#295, @frankarinnet and @nguichon)
13+
- Add StreamGenerator for generating RFC8945 compliant
14+
multi-message streams (related to #295)
15+
116
11/16/2022
217
- 3.5.2 released
318
- Correctly render empty TXT records (#254)

README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Do NOT use it.
103103
|false
104104

105105
.2+|dnsjava.nio.selector_timeout
106-
3+|Set selector timeout. Default/Max 1000, Min 1.
106+
3+|Set selector timeout in milliseconds. Default/Max 1000, Min 1.
107107
|Integer
108108
|1000
109109
|700

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.5.3-SNAPSHOT</version>
10+
<version>3.5.3</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>release/3.5.x</tag>
33+
<tag>release/3.5.3</tag>
3434
</scm>
3535
<developers>
3636
<developer>

src/main/java/org/xbill/DNS/NioClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
*
2525
* <dl>
2626
* <dt>dnsjava.nio.selector_timeout
27-
* <dd>Set selector timeout. Default/Max 1000, Min 1.
27+
* <dd>Set selector timeout in milliseconds. Default/Max 1000, Min 1.
2828
* </dl>
2929
*
3030
* @since 3.4

0 commit comments

Comments
 (0)