diff --git a/CHANGELOG.md b/CHANGELOG.md index bd16457c60..452d8c4eb1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,40 @@ Post 1.0.0 release, the changelog format is based on [Keep a Changelog](https:// ## [Unreleased] +## [2025.8-tourist] (2025-04-29) + +- add reserved byte to reply surb serialisation ([#5731]) +- Remove inactive peers ([#5721]) +- Update Hickory DNS "0.24.4" to "0.25" ([#5709]) +- build(deps): bump the patch-updates group across 1 directory with 7 updates ([#5708]) +- Peer handle should die more gracefully ([#5704]) +- build(deps): bump crossbeam-channel from 0.5.14 to 0.5.15 ([#5702]) +- build(deps): bump actions/checkout from 3 to 4 ([#5700]) +- Feature/updated sphinx payload keys ([#5698]) +- Bump the nym-vpn deb metapackage to 1.0 ([#5697]) +- Make mix hops optional for Mixnet Client ([#5696]) +- build(deps): bump tokio from 1.44.1 to 1.44.2 ([#5693]) +- Feature/replay protection ([#5682]) +- Adding fresh nym-api tests and workflow ([#5659]) +- build(deps): bump next from 14.2.21 to 14.2.25 ([#5655]) +- build(deps): bump pnpm/action-setup from 4.0.0 to 4.1.0 ([#5436]) + +[#5731]: https://github.com/nymtech/nym/pull/5731 +[#5721]: https://github.com/nymtech/nym/pull/5721 +[#5709]: https://github.com/nymtech/nym/pull/5709 +[#5708]: https://github.com/nymtech/nym/pull/5708 +[#5704]: https://github.com/nymtech/nym/pull/5704 +[#5702]: https://github.com/nymtech/nym/pull/5702 +[#5700]: https://github.com/nymtech/nym/pull/5700 +[#5698]: https://github.com/nymtech/nym/pull/5698 +[#5697]: https://github.com/nymtech/nym/pull/5697 +[#5696]: https://github.com/nymtech/nym/pull/5696 +[#5693]: https://github.com/nymtech/nym/pull/5693 +[#5682]: https://github.com/nymtech/nym/pull/5682 +[#5659]: https://github.com/nymtech/nym/pull/5659 +[#5655]: https://github.com/nymtech/nym/pull/5655 +[#5436]: https://github.com/nymtech/nym/pull/5436 + ## [2025.7-tex] (2025-04-14) - Expand /v3/nym-nodes with geodata ([#5686]) diff --git a/Cargo.lock b/Cargo.lock index a00d8a51c4..2372073054 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4988,7 +4988,7 @@ dependencies = [ [[package]] name = "nym-cli" -version = "1.1.53" +version = "1.1.54" dependencies = [ "anyhow", "base64 0.22.1", @@ -5071,7 +5071,7 @@ dependencies = [ [[package]] name = "nym-client" -version = "1.1.53" +version = "1.1.54" dependencies = [ "bs58", "clap", @@ -6069,7 +6069,7 @@ dependencies = [ [[package]] name = "nym-network-requester" -version = "1.1.54" +version = "1.1.55" dependencies = [ "addr", "anyhow", @@ -6120,7 +6120,7 @@ dependencies = [ [[package]] name = "nym-node" -version = "1.9.0" +version = "1.10.0" dependencies = [ "anyhow", "arc-swap", @@ -6516,7 +6516,7 @@ dependencies = [ [[package]] name = "nym-socks5-client" -version = "1.1.53" +version = "1.1.54" dependencies = [ "bs58", "clap", @@ -7120,7 +7120,7 @@ dependencies = [ [[package]] name = "nymvisor" -version = "0.1.18" +version = "0.1.19" dependencies = [ "anyhow", "bytes", diff --git a/clients/native/Cargo.toml b/clients/native/Cargo.toml index a626cc874a..eb788f7aa8 100644 --- a/clients/native/Cargo.toml +++ b/clients/native/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-client" -version = "1.1.53" +version = "1.1.54" 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 94ed60ecf0..d6592b77ca 100644 --- a/clients/socks5/Cargo.toml +++ b/clients/socks5/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-socks5-client" -version = "1.1.53" +version = "1.1.54" 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/nym-api/Cargo.toml b/nym-api/Cargo.toml index 8426014596..a0f9c222c6 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.55" +version = "1.1.56" authors.workspace = true edition = "2021" rust-version.workspace = true diff --git a/nym-node/Cargo.toml b/nym-node/Cargo.toml index 96fc4667be..cad6aabe34 100644 --- a/nym-node/Cargo.toml +++ b/nym-node/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "nym-node" -version = "1.9.0" +version = "1.10.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 aece5f7091..ef44ea1197 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.54" +version = "1.1.55" 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 c255f53fcf..4df9ddd361 100644 --- a/tools/nym-cli/Cargo.toml +++ b/tools/nym-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-cli" -version = "1.1.53" +version = "1.1.54" authors.workspace = true edition = "2021" license.workspace = true diff --git a/tools/nymvisor/Cargo.toml b/tools/nymvisor/Cargo.toml index 54bf2ff786..6dce2d7112 100644 --- a/tools/nymvisor/Cargo.toml +++ b/tools/nymvisor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nymvisor" -version = "0.1.18" +version = "0.1.19" authors.workspace = true repository.workspace = true homepage.workspace = true