From 496f172070ce8c44ab6c6bf28bf9a4822e87aca8 Mon Sep 17 00:00:00 2001 From: benedettadavico Date: Wed, 22 May 2024 10:28:38 +0200 Subject: [PATCH] update changelog and bump versions --- CHANGELOG.md | 36 +++++++++++++++++++ Cargo.lock | 14 ++++---- clients/native/Cargo.toml | 2 +- clients/socks5/Cargo.toml | 2 +- nym-api/Cargo.toml | 2 +- nym-node/Cargo.toml | 2 +- .../network-requester/Cargo.toml | 2 +- tools/nym-cli/Cargo.toml | 2 +- tools/nymvisor/Cargo.toml | 2 +- 9 files changed, 50 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 32ffeff695..2493df725d 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] +## [2024.5-ragusa] (2024-05-22) + +- Feature/nym node api location ([#4605]) +- Add optional signature to IPR request/response ([#4604]) +- Feature/unstable tested nodes endpoint ([#4601]) +- nym-api: make report/avg_uptime endpoints ignore blacklist ([#4599]) +- removed blocking for coconut in the final epoch state ([#4598]) +- allow using explicit admin address for issuing freepasses ([#4595]) +- Use rfc3339 for last_polled in described nym-api endpoint ([#4591]) +- Explicitly handle constraint unique violation when importing credential ([#4588]) +- [bugfix] noop flag for nym-api for nymvisor compatibility ([#4586]) +- Chore/additional helpers ([#4585]) +- Feature/wasm coconut ([#4584]) +- upgraded axum and related deps to the most recent version ([#4573]) +- Feature/nyxd scraper pruning ([#4564]) +- Run cargo autoinherit on the main workspace ([#4553]) +- Add rustls-tls to reqwest in validator-client ([#4552]) +- Feature/rewarder voucher issuance ([#4548]) + +[#4605]: https://github.com/nymtech/nym/pull/4605 +[#4604]: https://github.com/nymtech/nym/pull/4604 +[#4601]: https://github.com/nymtech/nym/pull/4601 +[#4599]: https://github.com/nymtech/nym/pull/4599 +[#4598]: https://github.com/nymtech/nym/pull/4598 +[#4595]: https://github.com/nymtech/nym/pull/4595 +[#4591]: https://github.com/nymtech/nym/pull/4591 +[#4588]: https://github.com/nymtech/nym/pull/4588 +[#4586]: https://github.com/nymtech/nym/pull/4586 +[#4585]: https://github.com/nymtech/nym/pull/4585 +[#4584]: https://github.com/nymtech/nym/pull/4584 +[#4573]: https://github.com/nymtech/nym/pull/4573 +[#4564]: https://github.com/nymtech/nym/pull/4564 +[#4553]: https://github.com/nymtech/nym/pull/4553 +[#4552]: https://github.com/nymtech/nym/pull/4552 +[#4548]: https://github.com/nymtech/nym/pull/4548 + ## [2024.4-nutella] (2024-05-08) - [fix] apply disable_poisson_rate from internal NR/IPR cfgs ([#4579]) diff --git a/Cargo.lock b/Cargo.lock index 57bbd60ad5..37abdcfa3f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3929,7 +3929,7 @@ dependencies = [ [[package]] name = "nym-api" -version = "1.1.37" +version = "1.1.38" dependencies = [ "anyhow", "async-trait", @@ -4091,7 +4091,7 @@ dependencies = [ [[package]] name = "nym-cli" -version = "1.1.35" +version = "1.1.36" dependencies = [ "anyhow", "base64 0.13.1", @@ -4172,7 +4172,7 @@ dependencies = [ [[package]] name = "nym-client" -version = "1.1.34" +version = "1.1.35" dependencies = [ "bs58 0.5.1", "clap 4.5.4", @@ -5005,7 +5005,7 @@ dependencies = [ [[package]] name = "nym-network-requester" -version = "1.1.35" +version = "1.1.36" dependencies = [ "addr", "anyhow", @@ -5074,7 +5074,7 @@ dependencies = [ [[package]] name = "nym-node" -version = "1.1.1" +version = "1.1.2" dependencies = [ "anyhow", "bip39", @@ -5347,7 +5347,7 @@ dependencies = [ [[package]] name = "nym-socks5-client" -version = "1.1.34" +version = "1.1.35" dependencies = [ "bs58 0.5.1", "clap 4.5.4", @@ -5871,7 +5871,7 @@ dependencies = [ [[package]] name = "nymvisor" -version = "0.1.0" +version = "0.1.1" dependencies = [ "anyhow", "bytes", diff --git a/clients/native/Cargo.toml b/clients/native/Cargo.toml index 6a59094de6..0852b42dd4 100644 --- a/clients/native/Cargo.toml +++ b/clients/native/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-client" -version = "1.1.34" +version = "1.1.35" 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 6b6cc4b910..92ce134d53 100644 --- a/clients/socks5/Cargo.toml +++ b/clients/socks5/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-socks5-client" -version = "1.1.34" +version = "1.1.35" 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 bc7fb0ddc7..0146af7d70 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.37" +version = "1.1.38" authors = [ "Dave Hrycyszyn ", "Jędrzej Stuczyński ", diff --git a/nym-node/Cargo.toml b/nym-node/Cargo.toml index 39640ef54a..b042466bd2 100644 --- a/nym-node/Cargo.toml +++ b/nym-node/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "nym-node" -version = "1.1.1" +version = "1.1.2" 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 a551d2e5f1..2c236f6487 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.35" +version = "1.1.36" 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 a71797f847..06f61e5503 100644 --- a/tools/nym-cli/Cargo.toml +++ b/tools/nym-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-cli" -version = "1.1.35" +version = "1.1.36" authors.workspace = true edition = "2021" license.workspace = true diff --git a/tools/nymvisor/Cargo.toml b/tools/nymvisor/Cargo.toml index 6a90849052..f4e8b1382c 100644 --- a/tools/nymvisor/Cargo.toml +++ b/tools/nymvisor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nymvisor" -version = "0.1.0" +version = "0.1.1" authors.workspace = true repository.workspace = true homepage.workspace = true