From 710d562de0dd00231ca6c7360b595ef33d4decf4 Mon Sep 17 00:00:00 2001 From: Benjamin Fry Date: Fri, 2 Jun 2023 08:33:57 -0700 Subject: [PATCH] prepare 0.23.0-alpha.3 --- CHANGELOG.md | 11 +++++++++++ Cargo.lock | 20 ++++++++++---------- Cargo.toml | 12 ++++++------ 3 files changed, 27 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d6ba5958a5..f4ce388cf8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,9 @@ All notes should be prepended with the location of the change, e.g. `(proto)` or ### Fixed +- (server) Merge up deny response in requests to server #1954 +- (proto) remove duplicate is_soa function #1948 by mattsse +- (resolver) Fix minimal tokio version requirement #1931 by Gelbpunkt - (all) Fix bench errors in rust-analyzer #1777 by jeff-hiner - (all) Regenerate the test SSL certificates #1781 by ssinger - (all) Fix some spelling errors #1783 by nhurley3 @@ -39,6 +42,12 @@ All notes should be prepended with the location of the change, e.g. `(proto)` or ### Changed +- (all) Bump log to v0.4.18 #1949 by daxpedda +- (proto) Make RData::read() API public #1945 by djc +- (all) Replace lazy_static with once_cell #1944 by daxpedda +- (resolver) Return Self from AsyncResolver::new() #1942 by daxpedda +- (all) Use default-features = false for quinn #1941 by daxpedda +- (all) remove the direct dependency to quinn-udp #1935 by zh-jq - (resolver) Order name servers by SRTT #1784 by nhurley3 - (resolver) resolver: use errors' Display impl #1785 by hdhoang - (proto) NameIter use a u8 for start/end. #1787 by darnuria @@ -74,6 +83,8 @@ All notes should be prepended with the location of the change, e.g. `(proto)` or ### Added +- (resolver) add test for connecting DoH with pure IP Address #1936 by mokeyish +- (resolver) add NameServerConfigGroup::from_ips_quic #1929 by zh-jq - (resolve) Add --reverse, --file and --interval to util/resolve #1807 by cunha - (client) TSIG documenting client tsig code + update rfc link #1810 by darnuria - (client) Create dedicated Errors types for Tsig error case #1811 by darnuria diff --git a/Cargo.lock b/Cargo.lock index f22f03ff7a..4f1ea21654 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -181,7 +181,7 @@ dependencies = [ [[package]] name = "async-std-resolver" -version = "0.23.0-alpha.2" +version = "0.23.0-alpha.3" dependencies = [ "async-std", "async-trait", @@ -1816,7 +1816,7 @@ dependencies = [ [[package]] name = "trust-dns" -version = "0.23.0-alpha.2" +version = "0.23.0-alpha.3" dependencies = [ "clap", "futures", @@ -1836,7 +1836,7 @@ dependencies = [ [[package]] name = "trust-dns-client" -version = "0.23.0-alpha.2" +version = "0.23.0-alpha.3" dependencies = [ "cfg-if", "data-encoding", @@ -1860,7 +1860,7 @@ dependencies = [ [[package]] name = "trust-dns-compatibility" -version = "0.23.0-alpha.2" +version = "0.23.0-alpha.3" dependencies = [ "data-encoding", "futures", @@ -1872,7 +1872,7 @@ dependencies = [ [[package]] name = "trust-dns-integration" -version = "0.23.0-alpha.2" +version = "0.23.0-alpha.3" dependencies = [ "async-trait", "futures", @@ -1895,7 +1895,7 @@ dependencies = [ [[package]] name = "trust-dns-proto" -version = "0.23.0-alpha.2" +version = "0.23.0-alpha.3" dependencies = [ "async-trait", "backtrace", @@ -1947,7 +1947,7 @@ dependencies = [ [[package]] name = "trust-dns-recursor" -version = "0.23.0-alpha.2" +version = "0.23.0-alpha.3" dependencies = [ "async-recursion", "async-trait", @@ -1970,7 +1970,7 @@ dependencies = [ [[package]] name = "trust-dns-resolver" -version = "0.23.0-alpha.2" +version = "0.23.0-alpha.3" dependencies = [ "cfg-if", "futures-executor", @@ -1997,7 +1997,7 @@ dependencies = [ [[package]] name = "trust-dns-server" -version = "0.23.0-alpha.2" +version = "0.23.0-alpha.3" dependencies = [ "async-trait", "bytes", @@ -2026,7 +2026,7 @@ dependencies = [ [[package]] name = "trust-dns-util" -version = "0.23.0-alpha.2" +version = "0.23.0-alpha.3" dependencies = [ "clap", "console", diff --git a/Cargo.toml b/Cargo.toml index 0f73e637b3..bb80e4de95 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ members = [ exclude = ["fuzz"] [workspace.package] -version = "0.23.0-alpha.2" +version = "0.23.0-alpha.3" authors = ["The contributors to Trust-DNS"] edition = "2021" rust-version = "1.64.0" @@ -29,11 +29,11 @@ license = "MIT/Apache-2.0" [workspace.dependencies] # trustdns -trust-dns-client = { version = "0.23.0-alpha.2", path = "crates/client", default-features = false } -trust-dns-recursor = { version = "0.23.0-alpha.2", path = "crates/recursor", default-features = false } -trust-dns-resolver = { version = "0.23.0-alpha.2", path = "crates/resolver", default-features = false } -trust-dns-server = { version = "0.23.0-alpha.2", path = "crates/server", default-features = false } -trust-dns-proto = { version = "0.23.0-alpha.2", path = "crates/proto", default-features = false } +trust-dns-client = { version = "0.23.0-alpha.3", path = "crates/client", default-features = false } +trust-dns-recursor = { version = "0.23.0-alpha.3", path = "crates/recursor", default-features = false } +trust-dns-resolver = { version = "0.23.0-alpha.3", path = "crates/resolver", default-features = false } +trust-dns-server = { version = "0.23.0-alpha.3", path = "crates/server", default-features = false } +trust-dns-proto = { version = "0.23.0-alpha.3", path = "crates/proto", default-features = false } # logging