diff --git a/CHANGELOG.md b/CHANGELOG.md index c7c85b9918..293f70002b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,42 @@ Post 1.0.0 release, the changelog format is based on [Keep a Changelog](https:// ## [Unreleased] +## [2025.3-ruta] (2025-02-10) + +- Push down forget me to client configs ([#5431]) +- Fix statistics shutdown ([#5426]) +- Make wait_for_graceful_shutdown to be pub ([#5424]) +- Upgrade to thiserror 2.0 ([#5414]) +- build(deps): bump the patch-updates group across 1 directory with 9 updates ([#5406]) +- Relocate a validator api function ([#5401]) +- Send shutdown instead of panic when reaching max fail ([#5398]) +- Change Explorer URL to new smooshed nodes ([#5396]) +- reduce log severity for checking topology validity ([#5395]) +- MixnetClient can send ClientRequests ([#5381]) +- Fix missing path triggers for CI ([#5380]) +- Uncouple storage reference for bandwidth client ([#5372]) +- build(deps): bump tokio from 1.40.0 to 1.43.0 ([#5370]) +- DNS resolver configuration for internal HTTP client lookups ([#5355]) +- Update README.md ([#5328]) +- Update README.md ([#5327]) + +[#5431]: https://github.com/nymtech/nym/pull/5431 +[#5426]: https://github.com/nymtech/nym/pull/5426 +[#5424]: https://github.com/nymtech/nym/pull/5424 +[#5414]: https://github.com/nymtech/nym/pull/5414 +[#5406]: https://github.com/nymtech/nym/pull/5406 +[#5401]: https://github.com/nymtech/nym/pull/5401 +[#5398]: https://github.com/nymtech/nym/pull/5398 +[#5396]: https://github.com/nymtech/nym/pull/5396 +[#5395]: https://github.com/nymtech/nym/pull/5395 +[#5381]: https://github.com/nymtech/nym/pull/5381 +[#5380]: https://github.com/nymtech/nym/pull/5380 +[#5372]: https://github.com/nymtech/nym/pull/5372 +[#5370]: https://github.com/nymtech/nym/pull/5370 +[#5355]: https://github.com/nymtech/nym/pull/5355 +[#5328]: https://github.com/nymtech/nym/pull/5328 +[#5327]: https://github.com/nymtech/nym/pull/5327 + ## [2025.2-hu] (2025-02-04) - Feature/remove double spending bloomfilter ([#5417]) diff --git a/Cargo.lock b/Cargo.lock index d61020803f..7a7b032547 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2420,7 +2420,7 @@ dependencies = [ [[package]] name = "explorer-api" -version = "1.1.45" +version = "1.1.46" dependencies = [ "chrono", "clap", @@ -4747,7 +4747,7 @@ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" [[package]] name = "nym-api" -version = "1.1.49" +version = "1.1.50" dependencies = [ "anyhow", "async-trait", @@ -4995,7 +4995,7 @@ dependencies = [ [[package]] name = "nym-cli" -version = "1.1.47" +version = "1.1.48" dependencies = [ "anyhow", "base64 0.22.1", @@ -5078,7 +5078,7 @@ dependencies = [ [[package]] name = "nym-client" -version = "1.1.47" +version = "1.1.48" dependencies = [ "bs58", "clap", @@ -6138,7 +6138,7 @@ dependencies = [ [[package]] name = "nym-network-requester" -version = "1.1.48" +version = "1.1.49" dependencies = [ "addr", "anyhow", @@ -6189,7 +6189,7 @@ dependencies = [ [[package]] name = "nym-node" -version = "1.4.0" +version = "1.5.0" dependencies = [ "anyhow", "arc-swap", @@ -6564,7 +6564,7 @@ dependencies = [ [[package]] name = "nym-socks5-client" -version = "1.1.47" +version = "1.1.48" dependencies = [ "bs58", "clap", @@ -7169,7 +7169,7 @@ dependencies = [ [[package]] name = "nymvisor" -version = "0.1.12" +version = "0.1.13" dependencies = [ "anyhow", "bytes", diff --git a/clients/native/Cargo.toml b/clients/native/Cargo.toml index 1ccddfa33a..2b9b59bf4c 100644 --- a/clients/native/Cargo.toml +++ b/clients/native/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-client" -version = "1.1.47" +version = "1.1.48" authors = ["Dave Hrycyszyn ", "Jędrzej Stuczyński "] description = "Implementation of the Nym Client" edition = "2021" diff --git a/clients/socks5/Cargo.toml b/clients/socks5/Cargo.toml index 17a5e45bf0..bf40164e8d 100644 --- a/clients/socks5/Cargo.toml +++ b/clients/socks5/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-socks5-client" -version = "1.1.47" +version = "1.1.48" authors = ["Dave Hrycyszyn "] description = "A SOCKS5 localhost proxy that converts incoming messages to Sphinx and sends them to a Nym address" edition = "2021" diff --git a/explorer-api/Cargo.toml b/explorer-api/Cargo.toml index e42af8fcbf..42f4af8204 100644 --- a/explorer-api/Cargo.toml +++ b/explorer-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "explorer-api" -version = "1.1.45" +version = "1.1.46" edition = "2021" license.workspace = true diff --git a/nym-api/Cargo.toml b/nym-api/Cargo.toml index 4542c8329c..d3fb90b726 100644 --- a/nym-api/Cargo.toml +++ b/nym-api/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "nym-api" license = "GPL-3.0" -version = "1.1.49" +version = "1.1.50" authors.workspace = true edition = "2021" rust-version.workspace = true diff --git a/nym-node/Cargo.toml b/nym-node/Cargo.toml index d65523f9ff..35bf882631 100644 --- a/nym-node/Cargo.toml +++ b/nym-node/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "nym-node" -version = "1.4.0" +version = "1.5.0" authors.workspace = true repository.workspace = true homepage.workspace = true diff --git a/service-providers/network-requester/Cargo.toml b/service-providers/network-requester/Cargo.toml index a3a0dccd3f..8ef8ae9c61 100644 --- a/service-providers/network-requester/Cargo.toml +++ b/service-providers/network-requester/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "nym-network-requester" license = "GPL-3.0" -version = "1.1.48" +version = "1.1.49" authors.workspace = true edition.workspace = true rust-version = "1.70" diff --git a/tools/nym-cli/Cargo.toml b/tools/nym-cli/Cargo.toml index 0eb2adea0d..c8a946ea2e 100644 --- a/tools/nym-cli/Cargo.toml +++ b/tools/nym-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-cli" -version = "1.1.47" +version = "1.1.48" authors.workspace = true edition = "2021" license.workspace = true diff --git a/tools/nymvisor/Cargo.toml b/tools/nymvisor/Cargo.toml index 71ab3209d8..b73d85012f 100644 --- a/tools/nymvisor/Cargo.toml +++ b/tools/nymvisor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nymvisor" -version = "0.1.12" +version = "0.1.13" authors.workspace = true repository.workspace = true homepage.workspace = true