Skip to content

Commit

Permalink
prepare 0.21.0.alpha.4
Browse files Browse the repository at this point in the history
  • Loading branch information
bluejekyll committed Oct 13, 2021
1 parent f9afed8 commit 63fdb84
Show file tree
Hide file tree
Showing 15 changed files with 51 additions and 50 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ All notes should be prepended with the location of the change, e.g. `(proto)` or

### Changed

- (resolver) TCP for truncated message responses, but not for other failures on responses (switch for old behavior `try_tcp_on_error`) ( @peterthejohnston) #1562
- (server) Multiple queries in a message will always result in a FormError now #1554
- (server) `ServerFuture` and other `Catalog` related API changes #1554
- (server) By default, the server will now only log a single log line based for a given request (debug will be needed for more details) #1554
Expand Down
26 changes: 13 additions & 13 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions bin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trust-dns"
version = "0.21.0-alpha.3"
version = "0.21.0-alpha.4"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
edition = "2018"

Expand Down Expand Up @@ -77,14 +77,14 @@ futures = { version = "0.3.5", default-features = false, features = ["std"] }
log = "0.4"
rustls = { version = "0.19", optional = true }
tokio = { version = "1.0", features = ["time"] }
trust-dns-client = { version = "0.21.0-alpha.3", path = "../crates/client" }
trust-dns-proto = { version = "0.21.0-alpha.3", path = "../crates/proto" }
trust-dns-server = { version = "0.21.0-alpha.3", path = "../crates/server" }
trust-dns-client = { version = "0.21.0-alpha.4", path = "../crates/client" }
trust-dns-proto = { version = "0.21.0-alpha.4", path = "../crates/proto" }
trust-dns-server = { version = "0.21.0-alpha.4", path = "../crates/server" }

[dev-dependencies]
env_logger = "0.9"
native-tls = "0.2"
regex = "1.3.4"
trust-dns-proto = { version = "0.21.0-alpha.3", path = "../crates/proto", features = ["testing", "dns-over-native-tls"] }
trust-dns-resolver = { version = "0.21.0-alpha.3", path = "../crates/resolver" }
trust-dns-proto = { version = "0.21.0-alpha.4", path = "../crates/proto", features = ["testing", "dns-over-native-tls"] }
trust-dns-resolver = { version = "0.21.0-alpha.4", path = "../crates/resolver" }
webpki-roots = "0.21"
6 changes: 3 additions & 3 deletions crates/async-std-resolver/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "async-std-resolver"
version = "0.21.0-alpha.3"
version = "0.21.0-alpha.4"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
edition = "2018"

Expand Down Expand Up @@ -69,8 +69,8 @@ async-trait = "0.1.42"
futures-io = { version = "0.3.5", default-features = false, features = ["std"] }
futures-util = { version = "0.3.5", default-features = false, features = ["std"] }
pin-utils = "0.1.0"
trust-dns-resolver = { version = "0.21.0-alpha.3", path = "../resolver", default-features = false }
trust-dns-resolver = { version = "0.21.0-alpha.4", path = "../resolver", default-features = false }

[dev-dependencies]
async-std = { version = "1.6", features = ["attributes"] }
trust-dns-resolver = { version = "0.21.0-alpha.3", path = "../resolver", default-features = false, features = ["testing"] }
trust-dns-resolver = { version = "0.21.0-alpha.4", path = "../resolver", default-features = false, features = ["testing"] }
4 changes: 2 additions & 2 deletions crates/client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trust-dns-client"
version = "0.21.0-alpha.3"
version = "0.21.0-alpha.4"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
edition = "2018"

Expand Down Expand Up @@ -82,7 +82,7 @@ rustls = { version = "0.19", optional = true }
serde = { version = "1.0", features = ["derive"], optional = true }
thiserror = "1.0.20"
tokio = { version = "1.0", features = ["rt"] }
trust-dns-proto = { version = "0.21.0-alpha.3", path = "../proto"}
trust-dns-proto = { version = "0.21.0-alpha.4", path = "../proto"}
webpki = { version = "0.21", optional = true }

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions crates/https/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trust-dns-https"
version = "0.21.0-alpha.3"
version = "0.21.0-alpha.4"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
edition = "2018"

Expand Down Expand Up @@ -47,4 +47,4 @@ name = "trust_dns_https"
path = "src/lib.rs"

[dependencies]
trust-dns-proto = { version = "0.21.0-alpha.3", path = "../proto", features = ["tokio-runtime", "dns-over-https-rustls"], default-features = false }
trust-dns-proto = { version = "0.21.0-alpha.4", path = "../proto", features = ["tokio-runtime", "dns-over-https-rustls"], default-features = false }
4 changes: 2 additions & 2 deletions crates/native-tls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trust-dns-native-tls"
version = "0.21.0-alpha.3"
version = "0.21.0-alpha.4"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
edition = "2018"

Expand Down Expand Up @@ -47,4 +47,4 @@ name = "trust_dns_native_tls"
path = "src/lib.rs"

[dependencies]
trust-dns-proto = { version = "0.21.0-alpha.3", path = "../proto", features = ["tokio-runtime", "dns-over-native-tls"], default-features = false }
trust-dns-proto = { version = "0.21.0-alpha.4", path = "../proto", features = ["tokio-runtime", "dns-over-native-tls"], default-features = false }
4 changes: 2 additions & 2 deletions crates/openssl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trust-dns-openssl"
version = "0.21.0-alpha.3"
version = "0.21.0-alpha.4"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
edition = "2018"

Expand Down Expand Up @@ -47,4 +47,4 @@ name = "trust_dns_openssl"
path = "src/lib.rs"

[dependencies]
trust-dns-proto = { version = "0.21.0-alpha.3", path = "../proto", features = ["dns-over-openssl"] }
trust-dns-proto = { version = "0.21.0-alpha.4", path = "../proto", features = ["dns-over-openssl"] }
2 changes: 1 addition & 1 deletion crates/proto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trust-dns-proto"
version = "0.21.0-alpha.3"
version = "0.21.0-alpha.4"
edition = "2018"
authors = ["Benjamin Fry <benjaminfry@me.com>"]

Expand Down
4 changes: 2 additions & 2 deletions crates/resolver/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trust-dns-resolver"
version = "0.21.0-alpha.3"
version = "0.21.0-alpha.4"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
edition = "2018"

Expand Down Expand Up @@ -82,7 +82,7 @@ tokio = { version = "1.0", optional = true }
tokio-native-tls = { version = "0.3", optional = true }
tokio-openssl = { version = "0.6.0", optional = true }
tokio-rustls = { version = "0.22", optional = true }
trust-dns-proto = { version = "0.21.0-alpha.3", path = "../proto", default-features = false }
trust-dns-proto = { version = "0.21.0-alpha.4", path = "../proto", default-features = false }
webpki-roots = { version = "0.21", optional = true }

[target.'cfg(windows)'.dependencies]
Expand Down
4 changes: 2 additions & 2 deletions crates/rustls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trust-dns-rustls"
version = "0.21.0-alpha.3"
version = "0.21.0-alpha.4"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
edition = "2018"

Expand Down Expand Up @@ -47,4 +47,4 @@ name = "trust_dns_rustls"
path = "src/lib.rs"

[dependencies]
trust-dns-proto = { version = "0.21.0-alpha.3", path = "../proto", features = ["tokio-runtime", "dns-over-rustls"], default-features = false }
trust-dns-proto = { version = "0.21.0-alpha.4", path = "../proto", features = ["tokio-runtime", "dns-over-rustls"], default-features = false }
8 changes: 4 additions & 4 deletions crates/server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trust-dns-server"
version = "0.21.0-alpha.3"
version = "0.21.0-alpha.4"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
edition = "2018"

Expand Down Expand Up @@ -93,9 +93,9 @@ tokio = { version = "1.0", features = ["net"] }
tokio-openssl = { version = "0.6.0", optional = true }
tokio-rustls = { version = "0.22", optional = true }
toml = "0.5"
trust-dns-client= { version = "0.21.0-alpha.3", path = "../client" }
trust-dns-proto = { version = "0.21.0-alpha.3", path = "../proto" }
trust-dns-resolver = { version = "0.21.0-alpha.3", path = "../resolver", features = ["serde-config"], optional = true }
trust-dns-client= { version = "0.21.0-alpha.4", path = "../client" }
trust-dns-proto = { version = "0.21.0-alpha.4", path = "../proto" }
trust-dns-resolver = { version = "0.21.0-alpha.4", path = "../resolver", features = ["serde-config"], optional = true }

[dev-dependencies]
tokio = { version="1.0", features = ["macros", "rt"] }
Expand Down
4 changes: 2 additions & 2 deletions tests/compatibility-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trust-dns-compatibility"
version = "0.21.0-alpha.3"
version = "0.21.0-alpha.4"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
edition = "2018"

Expand Down Expand Up @@ -52,4 +52,4 @@ env_logger = "0.9"
futures = "0.3.5"
openssl = { version = "0.10", features = ["v102", "v110"] }
rand = "0.8"
trust-dns-client= { version = "0.21.0-alpha.3", path="../../crates/client", features = ["dnssec-openssl"] }
trust-dns-client= { version = "0.21.0-alpha.4", path="../../crates/client", features = ["dnssec-openssl"] }
10 changes: 5 additions & 5 deletions tests/integration-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trust-dns-integration"
version = "0.21.0-alpha.3"
version = "0.21.0-alpha.4"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
edition = "2018"

Expand Down Expand Up @@ -80,11 +80,11 @@ rand = "0.8"
rusqlite = { version = "0.26.0", features = ["bundled"] }
rustls = "0.19"
tokio = { version = "1.0", features = ["time", "rt"] }
trust-dns-client= { version = "0.21.0-alpha.3", path = "../../crates/client" }
trust-dns-proto = { version = "0.21.0-alpha.3", path = "../../crates/proto", features = ["testing"] }
trust-dns-resolver = { version = "0.21.0-alpha.3", path = "../../crates/resolver" }
trust-dns-client= { version = "0.21.0-alpha.4", path = "../../crates/client" }
trust-dns-proto = { version = "0.21.0-alpha.4", path = "../../crates/proto", features = ["testing"] }
trust-dns-resolver = { version = "0.21.0-alpha.4", path = "../../crates/resolver" }
# TODO: fixup tests to not require openssl
trust-dns-server = { version = "0.21.0-alpha.3", path = "../../crates/server", features = ["testing"] }
trust-dns-server = { version = "0.21.0-alpha.4", path = "../../crates/server", features = ["testing"] }
webpki-roots = { version = "0.21", optional = true }

[dev-dependencies]
Expand Down
8 changes: 4 additions & 4 deletions util/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trust-dns-util"
version = "0.21.0-alpha.3"
version = "0.21.0-alpha.4"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
edition = "2018"

Expand Down Expand Up @@ -59,9 +59,9 @@ clap = "2.33.1"
console = "0.14.0"
data-encoding = "2.2.0"
env_logger = { version = "0.9.0", features = ["termcolor", "humantime", "atty"] }
trust-dns-client= { version = "0.21.0-alpha.3", features = ["dnssec-openssl"], path = "../crates/client" }
trust-dns-proto = { version = "0.21.0-alpha.3", features = ["dnssec-openssl"], path = "../crates/proto" }
trust-dns-resolver = { version = "0.21.0-alpha.3", features = ["dnssec-openssl"], path = "../crates/resolver" }
trust-dns-client= { version = "0.21.0-alpha.4", features = ["dnssec-openssl"], path = "../crates/client" }
trust-dns-proto = { version = "0.21.0-alpha.4", features = ["dnssec-openssl"], path = "../crates/proto" }
trust-dns-resolver = { version = "0.21.0-alpha.4", features = ["dnssec-openssl"], path = "../crates/resolver" }
log = "0.4"
openssl = { version = "0.10", features = ["v102", "v110"] }
structopt = "0.3"
Expand Down

0 comments on commit 63fdb84

Please sign in to comment.