diff --git a/.github/workflows/ci-build-upload-binaries.yml b/.github/workflows/ci-build-upload-binaries.yml index 8ceb473118..02803c4327 100644 --- a/.github/workflows/ci-build-upload-binaries.yml +++ b/.github/workflows/ci-build-upload-binaries.yml @@ -104,8 +104,6 @@ jobs: name: nym-binaries-artifacts path: | target/release/nym-client - target/release/nym-gateway - target/release/nym-mixnode target/release/nym-socks5-client target/release/nym-api target/release/nym-network-requester @@ -123,8 +121,6 @@ jobs: OUTPUT_DIR: ci-builds/${{ github.ref_name }} run: | cp target/release/nym-client $OUTPUT_DIR - cp target/release/nym-gateway $OUTPUT_DIR - cp target/release/nym-mixnode $OUTPUT_DIR cp target/release/nym-socks5-client $OUTPUT_DIR cp target/release/nym-api $OUTPUT_DIR cp target/release/nym-network-requester $OUTPUT_DIR diff --git a/CHANGELOG.md b/CHANGELOG.md index 7bac3e624c..46d463aed3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,38 @@ Post 1.0.0 release, the changelog format is based on [Keep a Changelog](https:// ## [Unreleased] +## [2024.7-doubledecker] (2024-07-04) + +- Add an early return in `parse_raw_str_logs` for empty raw log strings. ([#4686]) +- Bump braces from 3.0.2 to 3.0.3 in /wasm/mix-fetch/internal-dev ([#4672]) +- add expiry returned on import ([#4670]) +- [bugfix] missing rustls feature ([#4666]) +- Bump ws from 8.13.0 to 8.17.1 in /wasm/client/internal-dev-node ([#4665]) +- Bump braces from 3.0.2 to 3.0.3 in /clients/native/examples/js-examples/websocket ([#4663]) +- Bump ws from 8.14.2 to 8.17.1 in /sdk/typescript/packages/nodejs-client ([#4662]) +- Update setup.md ([#4661]) +- New clippy lints ([#4660]) +- Bump braces from 3.0.2 to 3.0.3 in /nym-api/tests ([#4659]) +- Bump braces from 3.0.2 to 3.0.3 in /docker/typescript_client/upload_contract ([#4658]) +- Update vps-setup.md ([#4656]) +- Update configuration.md ([#4655]) +- Remove old PR template ([#4639]) + +[#4686]: https://github.com/nymtech/nym/pull/4686 +[#4672]: https://github.com/nymtech/nym/pull/4672 +[#4670]: https://github.com/nymtech/nym/pull/4670 +[#4666]: https://github.com/nymtech/nym/pull/4666 +[#4665]: https://github.com/nymtech/nym/pull/4665 +[#4663]: https://github.com/nymtech/nym/pull/4663 +[#4662]: https://github.com/nymtech/nym/pull/4662 +[#4661]: https://github.com/nymtech/nym/pull/4661 +[#4660]: https://github.com/nymtech/nym/pull/4660 +[#4659]: https://github.com/nymtech/nym/pull/4659 +[#4658]: https://github.com/nymtech/nym/pull/4658 +[#4656]: https://github.com/nymtech/nym/pull/4656 +[#4655]: https://github.com/nymtech/nym/pull/4655 +[#4639]: https://github.com/nymtech/nym/pull/4639 + ## [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..0bc53266de 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", @@ -4999,9 +4999,26 @@ dependencies = [ "zeroize", ] +[[package]] +name = "nym-network-statistics" +version = "1.1.34" +dependencies = [ + "dirs 4.0.0", + "log", + "nym-bin-common", + "nym-statistics-common", + "nym-task", + "pretty_env_logger", + "rocket", + "serde", + "sqlx", + "thiserror", + "tokio", +] + [[package]] name = "nym-node" -version = "1.1.3" +version = "1.1.4" dependencies = [ "anyhow", "bip39", @@ -5264,7 +5281,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 +5794,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