diff --git a/CHANGELOG.md b/CHANGELOG.md index 9586c949fb..1a39429e55 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,20 @@ Post 1.0.0 release, the changelog format is based on [Keep a Changelog](https:// ## [Unreleased] +## [2024.9-topdeck] (2024-07-26) + +- chore: fix 1.80 lint issues ([#4731]) +- Handle clients with different versions in IPR ([#4723]) +- Add 1GB/day/user bandwidth cap ([#4717]) +- Feature/merge back ([#4710]) +- removed mixnode/gateway config migration code and disabled cli without explicit flag ([#4706]) + +[#4731]: https://github.com/nymtech/nym/pull/4731 +[#4723]: https://github.com/nymtech/nym/pull/4723 +[#4717]: https://github.com/nymtech/nym/pull/4717 +[#4710]: https://github.com/nymtech/nym/pull/4710 +[#4706]: https://github.com/nymtech/nym/pull/4706 + ## [2024.8-wispa] (2024-07-10) - add event parsing to support cosmos_sdk > 0.50 ([#4697]) diff --git a/Cargo.lock b/Cargo.lock index 1d78c6821b..68792a2ad6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2240,7 +2240,7 @@ checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" [[package]] name = "explorer-api" -version = "1.1.37" +version = "1.1.38" dependencies = [ "chrono", "clap 4.5.7", @@ -4204,7 +4204,7 @@ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" [[package]] name = "nym-api" -version = "1.1.41" +version = "1.1.42" dependencies = [ "anyhow", "async-trait", @@ -4425,7 +4425,7 @@ dependencies = [ [[package]] name = "nym-cli" -version = "1.1.39" +version = "1.1.40" dependencies = [ "anyhow", "base64 0.13.1", @@ -4504,7 +4504,7 @@ dependencies = [ [[package]] name = "nym-client" -version = "1.1.38" +version = "1.1.39" dependencies = [ "bs58 0.5.1", "clap 4.5.7", @@ -5412,7 +5412,7 @@ dependencies = [ [[package]] name = "nym-network-requester" -version = "1.1.39" +version = "1.1.40" dependencies = [ "addr", "anyhow", @@ -5463,7 +5463,7 @@ dependencies = [ [[package]] name = "nym-node" -version = "1.1.5" +version = "1.1.6" dependencies = [ "anyhow", "bip39", @@ -5737,7 +5737,7 @@ dependencies = [ [[package]] name = "nym-socks5-client" -version = "1.1.38" +version = "1.1.39" dependencies = [ "bs58 0.5.1", "clap 4.5.7", @@ -6259,7 +6259,7 @@ dependencies = [ [[package]] name = "nymvisor" -version = "0.1.4" +version = "0.1.5" dependencies = [ "anyhow", "bytes", diff --git a/clients/native/Cargo.toml b/clients/native/Cargo.toml index 76f81c2b08..f57505eb66 100644 --- a/clients/native/Cargo.toml +++ b/clients/native/Cargo.toml @@ -1,10 +1,7 @@ [package] name = "nym-client" -version = "1.1.38" -authors = [ - "Dave Hrycyszyn ", - "Jędrzej Stuczyński ", -] +version = "1.1.39" +authors = ["Dave Hrycyszyn ", "Jędrzej Stuczyński "] description = "Implementation of the Nym Client" edition = "2021" rust-version = "1.70" diff --git a/clients/socks5/Cargo.toml b/clients/socks5/Cargo.toml index 098bbacfbe..06754b0b76 100644 --- a/clients/socks5/Cargo.toml +++ b/clients/socks5/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-socks5-client" -version = "1.1.38" +version = "1.1.39" 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 fa799825b1..2a33ae5fc8 100644 --- a/explorer-api/Cargo.toml +++ b/explorer-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "explorer-api" -version = "1.1.37" +version = "1.1.38" edition = "2021" license.workspace = true diff --git a/nym-api/Cargo.toml b/nym-api/Cargo.toml index d36551edd4..551f682c13 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.41" +version = "1.1.42" authors = [ "Dave Hrycyszyn ", "Jędrzej Stuczyński ", diff --git a/nym-node/Cargo.toml b/nym-node/Cargo.toml index 8e1eda2c53..b897f2d008 100644 --- a/nym-node/Cargo.toml +++ b/nym-node/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "nym-node" -version = "1.1.5" +version = "1.1.6" authors.workspace = true repository.workspace = true homepage.workspace = true diff --git a/nym-node/src/config/old_configs/old_config_v1.rs b/nym-node/src/config/old_configs/old_config_v1.rs index e3a76cdc56..a09eee36e7 100644 --- a/nym-node/src/config/old_configs/old_config_v1.rs +++ b/nym-node/src/config/old_configs/old_config_v1.rs @@ -15,7 +15,9 @@ use serde::{Deserialize, Serialize}; #[derive(Debug, Clone, Deserialize, PartialEq, Eq, Serialize)] #[serde(deny_unknown_fields)] pub struct WireguardPathsV1 { + #[serde(skip)] pub private_diffie_hellman_key_file: PathBuf, + #[serde(skip)] pub public_diffie_hellman_key_file: PathBuf, } diff --git a/service-providers/network-requester/Cargo.toml b/service-providers/network-requester/Cargo.toml index 572be7615a..13b710e802 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.39" +version = "1.1.40" 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 eabfeb4b83..e590e45141 100644 --- a/tools/nym-cli/Cargo.toml +++ b/tools/nym-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-cli" -version = "1.1.39" +version = "1.1.40" authors.workspace = true edition = "2021" license.workspace = true diff --git a/tools/nymvisor/Cargo.toml b/tools/nymvisor/Cargo.toml index 2049fcf279..8f5658c8d3 100644 --- a/tools/nymvisor/Cargo.toml +++ b/tools/nymvisor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nymvisor" -version = "0.1.4" +version = "0.1.5" authors.workspace = true repository.workspace = true homepage.workspace = true