From 4e6694baf0c31680c7fc8620585603062329a121 Mon Sep 17 00:00:00 2001 From: benedettadavico Date: Tue, 28 Nov 2023 10:12:52 +0100 Subject: [PATCH 1/2] Update changelog and bump relevant versions --- CHANGELOG.md | 16 ++++++++++++++++ Cargo.lock | 4 ++-- gateway/Cargo.toml | 2 +- nym-api/Cargo.toml | 2 +- 4 files changed, 20 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 258b36964f..f5a720221c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,22 @@ Post 1.0.0 release, the changelog format is based on [Keep a Changelog](https:// ## [Unreleased] +## [2023.5-rolo] (2023-11-28) + +- Gateway won't open websocket listener until embedded Network Requester becomes available ([#4166]) +- Feature/gateway described nr ([#4147]) +- Bugfix/prerelease versionbump ([#4145]) +- returning 'nil' for non-existing origin as opposed to an empty string ([#4135]) +- using performance^20 when calculating active set selection weight ([#4126]) +- Change default http API timeout from 3s to 10s ([#4117]) + +[#4166]: https://github.com/nymtech/nym/issues/4166 +[#4147]: https://github.com/nymtech/nym/pull/4147 +[#4145]: https://github.com/nymtech/nym/pull/4145 +[#4135]: https://github.com/nymtech/nym/pull/4135 +[#4126]: https://github.com/nymtech/nym/pull/4126 +[#4117]: https://github.com/nymtech/nym/pull/4117 + ## [2023.nyxd-upgrade] (2023-11-22) - Chore/nyxd 043 upgrade ([#3968]) diff --git a/Cargo.lock b/Cargo.lock index c545037965..3b0cd33a50 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5905,7 +5905,7 @@ dependencies = [ [[package]] name = "nym-api" -version = "1.1.33" +version = "1.1.34" dependencies = [ "actix-web", "anyhow", @@ -6472,7 +6472,7 @@ dependencies = [ [[package]] name = "nym-gateway" -version = "1.1.31" +version = "1.1.32" dependencies = [ "anyhow", "async-trait", diff --git a/gateway/Cargo.toml b/gateway/Cargo.toml index ffaf439c7f..7346f7b5bf 100644 --- a/gateway/Cargo.toml +++ b/gateway/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "nym-gateway" license = "GPL-3" -version = "1.1.31" +version = "1.1.32" authors = [ "Dave Hrycyszyn ", "Jędrzej Stuczyński ", diff --git a/nym-api/Cargo.toml b/nym-api/Cargo.toml index ad781f28e2..514f664cb9 100644 --- a/nym-api/Cargo.toml +++ b/nym-api/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "nym-api" license = "GPL-3" -version = "1.1.33" +version = "1.1.34" authors = [ "Dave Hrycyszyn ", "Jędrzej Stuczyński ", From 00600ddeeba4ed453c27bd7ea3b144d3d8560141 Mon Sep 17 00:00:00 2001 From: benedettadavico Date: Tue, 28 Nov 2023 14:53:50 +0100 Subject: [PATCH 2/2] Bumping versions for remaining components --- Cargo.lock | 14 +++++++------- clients/native/Cargo.toml | 2 +- clients/socks5/Cargo.toml | 2 +- explorer-api/Cargo.toml | 2 +- mixnode/Cargo.toml | 2 +- service-providers/network-requester/Cargo.toml | 2 +- service-providers/network-statistics/Cargo.toml | 2 +- tools/nym-cli/Cargo.toml | 2 +- 8 files changed, 14 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3b0cd33a50..05c3ae6802 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2929,7 +2929,7 @@ checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" [[package]] name = "explorer-api" -version = "1.1.31" +version = "1.1.32" dependencies = [ "chrono", "clap 4.4.7", @@ -6055,7 +6055,7 @@ dependencies = [ [[package]] name = "nym-cli" -version = "1.1.32" +version = "1.1.33" dependencies = [ "anyhow", "base64 0.13.1", @@ -6128,7 +6128,7 @@ dependencies = [ [[package]] name = "nym-client" -version = "1.1.31" +version = "1.1.32" dependencies = [ "clap 4.4.7", "dirs 4.0.0", @@ -6677,7 +6677,7 @@ dependencies = [ [[package]] name = "nym-mixnode" -version = "1.1.33" +version = "1.1.34" dependencies = [ "anyhow", "axum", @@ -6797,7 +6797,7 @@ dependencies = [ [[package]] name = "nym-network-requester" -version = "1.1.31" +version = "1.1.32" dependencies = [ "anyhow", "async-file-watcher", @@ -6845,7 +6845,7 @@ dependencies = [ [[package]] name = "nym-network-statistics" -version = "1.1.31" +version = "1.1.32" dependencies = [ "dirs 4.0.0", "log", @@ -7090,7 +7090,7 @@ dependencies = [ [[package]] name = "nym-socks5-client" -version = "1.1.31" +version = "1.1.32" dependencies = [ "clap 4.4.7", "lazy_static", diff --git a/clients/native/Cargo.toml b/clients/native/Cargo.toml index eaec06aa21..03827720ba 100644 --- a/clients/native/Cargo.toml +++ b/clients/native/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-client" -version = "1.1.31" +version = "1.1.32" 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 3dc2b411ce..3bd0cde792 100644 --- a/clients/socks5/Cargo.toml +++ b/clients/socks5/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-socks5-client" -version = "1.1.31" +version = "1.1.32" 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 aadfc916d7..3778b480b9 100644 --- a/explorer-api/Cargo.toml +++ b/explorer-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "explorer-api" -version = "1.1.31" +version = "1.1.32" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/mixnode/Cargo.toml b/mixnode/Cargo.toml index 86973cb99d..bdcb0b3a9b 100644 --- a/mixnode/Cargo.toml +++ b/mixnode/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "nym-mixnode" license = "GPL-3" -version = "1.1.33" +version = "1.1.34" authors = [ "Dave Hrycyszyn ", "Jędrzej Stuczyński ", diff --git a/service-providers/network-requester/Cargo.toml b/service-providers/network-requester/Cargo.toml index a530110fee..d3a9f2f168 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" -version = "1.1.31" +version = "1.1.32" authors.workspace = true edition.workspace = true rust-version = "1.65" diff --git a/service-providers/network-statistics/Cargo.toml b/service-providers/network-statistics/Cargo.toml index e2f5d56ae1..63bda25a80 100644 --- a/service-providers/network-statistics/Cargo.toml +++ b/service-providers/network-statistics/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-network-statistics" -version = "1.1.31" +version = "1.1.32" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/tools/nym-cli/Cargo.toml b/tools/nym-cli/Cargo.toml index f8332a64c5..18c3bc6a3c 100644 --- a/tools/nym-cli/Cargo.toml +++ b/tools/nym-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-cli" -version = "1.1.32" +version = "1.1.33" authors.workspace = true edition = "2021"