diff --git a/CHANGELOG.md b/CHANGELOG.md index 7bac3e624c..39bf7a2d79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,30 @@ Post 1.0.0 release, the changelog format is based on [Keep a Changelog](https:// ## [Unreleased] +## [2024.8-wispa] (2024-07-10) + +- add event parsing to support cosmos_sdk > 0.50 ([#4697]) +- Fix NR config compatibility ([#4690]) +- Remove UserAgent constructor since it's weakly typed ([#4689]) +- [bugfix]: Node_api_check CLI looked over roles on blacklisted nodes ([#4687]) +- Add mixnodes to self describing api cache ([#4684]) +- Move and whole bump of crates to workspace and upgrade some ([#4680]) +- Remove code that refers to removed nym-network-statistics ([#4679]) +- Remove nym-network-statistics ([#4678]) +- Create UserAgent that can be passed from the binary to the nym api client ([#4677]) +- Add authenticator ([#4667]) + +[#4697]: https://github.com/nymtech/nym/pull/4697 +[#4690]: https://github.com/nymtech/nym/pull/4690 +[#4689]: https://github.com/nymtech/nym/pull/4689 +[#4687]: https://github.com/nymtech/nym/pull/4687 +[#4684]: https://github.com/nymtech/nym/pull/4684 +[#4680]: https://github.com/nymtech/nym/pull/4680 +[#4679]: https://github.com/nymtech/nym/pull/4679 +[#4678]: https://github.com/nymtech/nym/pull/4678 +[#4677]: https://github.com/nymtech/nym/pull/4677 +[#4667]: https://github.com/nymtech/nym/pull/4667 + ## [2024.6-chomp] (2024-06-25) - Remove additional code as part of Ephemera Purge and SP and contracts ([#4650]) diff --git a/Cargo.lock b/Cargo.lock index 5d4ef5590c..0822026fe5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2093,7 +2093,7 @@ checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" [[package]] name = "explorer-api" -version = "1.1.35" +version = "1.1.36" dependencies = [ "chrono", "clap 4.5.4", @@ -3849,7 +3849,7 @@ dependencies = [ [[package]] name = "nym-api" -version = "1.1.39" +version = "1.1.40" dependencies = [ "anyhow", "async-trait", @@ -4057,7 +4057,7 @@ dependencies = [ [[package]] name = "nym-cli" -version = "1.1.37" +version = "1.1.38" dependencies = [ "anyhow", "base64 0.13.1", @@ -4136,7 +4136,7 @@ dependencies = [ [[package]] name = "nym-client" -version = "1.1.36" +version = "1.1.37" dependencies = [ "bs58 0.5.1", "clap 4.5.4", @@ -4950,7 +4950,7 @@ dependencies = [ [[package]] name = "nym-network-requester" -version = "1.1.37" +version = "1.1.38" dependencies = [ "addr", "anyhow", @@ -5001,7 +5001,7 @@ dependencies = [ [[package]] name = "nym-node" -version = "1.1.3" +version = "1.1.4" dependencies = [ "anyhow", "bip39", @@ -5264,7 +5264,7 @@ dependencies = [ [[package]] name = "nym-socks5-client" -version = "1.1.36" +version = "1.1.37" dependencies = [ "bs58 0.5.1", "clap 4.5.4", @@ -5777,7 +5777,7 @@ dependencies = [ [[package]] name = "nymvisor" -version = "0.1.2" +version = "0.1.3" dependencies = [ "anyhow", "bytes", diff --git a/clients/native/Cargo.toml b/clients/native/Cargo.toml index d287fa5e86..ed503d024e 100644 --- a/clients/native/Cargo.toml +++ b/clients/native/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-client" -version = "1.1.36" +version = "1.1.37" 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 ffa16c76b9..2d8d491e6d 100644 --- a/clients/socks5/Cargo.toml +++ b/clients/socks5/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-socks5-client" -version = "1.1.36" +version = "1.1.37" 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 2a018b19bd..0b90239d6e 100644 --- a/explorer-api/Cargo.toml +++ b/explorer-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "explorer-api" -version = "1.1.35" +version = "1.1.36" edition = "2021" license.workspace = true diff --git a/nym-api/Cargo.toml b/nym-api/Cargo.toml index b7375986d9..d75715be1a 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.39" +version = "1.1.40" authors = [ "Dave Hrycyszyn ", "Jędrzej Stuczyński ", diff --git a/nym-node/Cargo.toml b/nym-node/Cargo.toml index 35d263ab79..73fd32176f 100644 --- a/nym-node/Cargo.toml +++ b/nym-node/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "nym-node" -version = "1.1.3" +version = "1.1.4" 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 c67fc71068..6d5ecbeb24 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.37" +version = "1.1.38" 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 d0e85bc282..b16072c50a 100644 --- a/tools/nym-cli/Cargo.toml +++ b/tools/nym-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-cli" -version = "1.1.37" +version = "1.1.38" authors.workspace = true edition = "2021" license.workspace = true diff --git a/tools/nymvisor/Cargo.toml b/tools/nymvisor/Cargo.toml index 20ad6021ba..ea5f785483 100644 --- a/tools/nymvisor/Cargo.toml +++ b/tools/nymvisor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nymvisor" -version = "0.1.2" +version = "0.1.3" authors.workspace = true repository.workspace = true homepage.workspace = true