From f247baa51b0d7d19ea357e0f36d21487a1d0a4d6 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 20 May 2024 12:24:04 +0000 Subject: [PATCH] chore(release): sn_auditor-v0.1.16/sn_cli-v0.91.4/sn_faucet-v0.4.18/sn_metrics-v0.1.7/sn_node-v0.106.4/sn_service_management-v0.2.8/node-launchpad-v0.1.5/sn-node-manager-v0.7.7/sn_node_rpc_client-v0.6.17 --- Cargo.lock | 18 +++++++++--------- node-launchpad/CHANGELOG.md | 14 ++++++++++++++ node-launchpad/Cargo.toml | 6 +++--- sn_auditor/CHANGELOG.md | 5 +++++ sn_auditor/Cargo.toml | 2 +- sn_cli/CHANGELOG.md | 5 +++++ sn_cli/Cargo.toml | 2 +- sn_faucet/CHANGELOG.md | 5 +++++ sn_faucet/Cargo.toml | 2 +- sn_metrics/CHANGELOG.md | 5 +++++ sn_metrics/Cargo.toml | 2 +- sn_node/CHANGELOG.md | 5 +++++ sn_node/Cargo.toml | 4 ++-- sn_node_manager/CHANGELOG.md | 14 ++++++++++++++ sn_node_manager/Cargo.toml | 4 ++-- sn_node_rpc_client/CHANGELOG.md | 5 +++++ sn_node_rpc_client/Cargo.toml | 6 +++--- sn_service_management/CHANGELOG.md | 9 +++++++++ sn_service_management/Cargo.toml | 2 +- 19 files changed, 91 insertions(+), 24 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bb821a12c8..455a65788b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4665,7 +4665,7 @@ dependencies = [ [[package]] name = "node-launchpad" -version = "0.1.4" +version = "0.1.5" dependencies = [ "atty", "better-panic", @@ -6879,7 +6879,7 @@ checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" [[package]] name = "sn-node-manager" -version = "0.7.6" +version = "0.7.7" dependencies = [ "assert_cmd", "assert_fs", @@ -6937,7 +6937,7 @@ dependencies = [ [[package]] name = "sn_auditor" -version = "0.1.15" +version = "0.1.16" dependencies = [ "blsttc", "clap", @@ -6975,7 +6975,7 @@ dependencies = [ [[package]] name = "sn_cli" -version = "0.91.3" +version = "0.91.4" dependencies = [ "aes 0.7.5", "base64 0.22.1", @@ -7101,7 +7101,7 @@ dependencies = [ [[package]] name = "sn_faucet" -version = "0.4.17" +version = "0.4.18" dependencies = [ "assert_fs", "base64 0.22.1", @@ -7154,7 +7154,7 @@ dependencies = [ [[package]] name = "sn_metrics" -version = "0.1.6" +version = "0.1.7" dependencies = [ "clap", "color-eyre", @@ -7224,7 +7224,7 @@ dependencies = [ [[package]] name = "sn_node" -version = "0.106.3" +version = "0.106.4" dependencies = [ "assert_fs", "assert_matches", @@ -7279,7 +7279,7 @@ dependencies = [ [[package]] name = "sn_node_rpc_client" -version = "0.6.16" +version = "0.6.17" dependencies = [ "assert_fs", "async-trait", @@ -7368,7 +7368,7 @@ dependencies = [ [[package]] name = "sn_service_management" -version = "0.2.7" +version = "0.2.8" dependencies = [ "async-trait", "dirs-next", diff --git a/node-launchpad/CHANGELOG.md b/node-launchpad/CHANGELOG.md index b1aced1f03..7df03a7a06 100644 --- a/node-launchpad/CHANGELOG.md +++ b/node-launchpad/CHANGELOG.md @@ -6,6 +6,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.5](https://github.com/maidsafe/safe_network/compare/node-launchpad-v0.1.4...node-launchpad-v0.1.5) - 2024-05-20 + +### Added +- *(node_manager)* add auditor support +- provide `--upnp` flag for `add` command + +### Fixed +- retain options on upgrade and prevent dup ports + +### Other +- use published versions of deps +- update Cargo.lock dependencies +- use helper function to print banners + ## [0.1.4](https://github.com/maidsafe/safe_network/compare/node-launchpad-v0.1.3...node-launchpad-v0.1.4) - 2024-05-17 ### Added diff --git a/node-launchpad/Cargo.toml b/node-launchpad/Cargo.toml index 2e1fb7110d..f9e538168e 100644 --- a/node-launchpad/Cargo.toml +++ b/node-launchpad/Cargo.toml @@ -2,7 +2,7 @@ authors = ["MaidSafe Developers "] description = "Node Launchpad" name = "node-launchpad" -version = "0.1.4" +version = "0.1.5" edition = "2021" license = "GPL-3.0" homepage = "https://maidsafe.net" @@ -44,10 +44,10 @@ ratatui = { version = "0.26.0", features = ["serde", "macros"] } serde = { version = "1.0.188", features = ["derive"] } serde_json = "1.0.107" signal-hook = "0.3.17" -sn-node-manager = { version = "0.7.6", path = "../sn_node_manager" } +sn-node-manager = { version = "0.7.7", path = "../sn_node_manager" } sn_peers_acquisition = { version = "0.2.12", path = "../sn_peers_acquisition" } sn-releases = "~0.2.2" -sn_service_management = { version = "0.2.7", path = "../sn_service_management" } +sn_service_management = { version = "0.2.8", path = "../sn_service_management" } strip-ansi-escapes = "0.2.0" strum = { version = "0.26.1", features = ["derive"] } sysinfo = "0.30.12" diff --git a/sn_auditor/CHANGELOG.md b/sn_auditor/CHANGELOG.md index a30f20fbc3..fad3f664f1 100644 --- a/sn_auditor/CHANGELOG.md +++ b/sn_auditor/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.16](https://github.com/maidsafe/safe_network/compare/sn_auditor-v0.1.15...sn_auditor-v0.1.16) - 2024-05-20 + +### Other +- update Cargo.lock dependencies + ## [0.1.15](https://github.com/maidsafe/safe_network/compare/sn_auditor-v0.1.14...sn_auditor-v0.1.15) - 2024-05-15 ### Other diff --git a/sn_auditor/Cargo.toml b/sn_auditor/Cargo.toml index 92c0e3bc3b..d81ec6242e 100644 --- a/sn_auditor/Cargo.toml +++ b/sn_auditor/Cargo.toml @@ -2,7 +2,7 @@ authors = ["MaidSafe Developers "] description = "Safe Network Auditor" name = "sn_auditor" -version = "0.1.15" +version = "0.1.16" edition = "2021" homepage = "https://maidsafe.net" repository = "https://github.com/maidsafe/safe_network" diff --git a/sn_cli/CHANGELOG.md b/sn_cli/CHANGELOG.md index 0eb5b81337..22fb84f31f 100644 --- a/sn_cli/CHANGELOG.md +++ b/sn_cli/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.91.4](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.91.3...sn_cli-v0.91.4) - 2024-05-20 + +### Other +- update Cargo.lock dependencies + ## [0.91.3](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.91.2...sn_cli-v0.91.3) - 2024-05-15 ### Other diff --git a/sn_cli/Cargo.toml b/sn_cli/Cargo.toml index 197585aa5c..dd197721ea 100644 --- a/sn_cli/Cargo.toml +++ b/sn_cli/Cargo.toml @@ -8,7 +8,7 @@ license = "GPL-3.0" name = "sn_cli" readme = "README.md" repository = "https://github.com/maidsafe/safe_network" -version = "0.91.3" +version = "0.91.4" [[bin]] path = "src/bin/main.rs" diff --git a/sn_faucet/CHANGELOG.md b/sn_faucet/CHANGELOG.md index f621460b74..090831361a 100644 --- a/sn_faucet/CHANGELOG.md +++ b/sn_faucet/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.18](https://github.com/maidsafe/safe_network/compare/sn_faucet-v0.4.17...sn_faucet-v0.4.18) - 2024-05-20 + +### Other +- update Cargo.lock dependencies + ## [0.4.17](https://github.com/maidsafe/safe_network/compare/sn_faucet-v0.4.16...sn_faucet-v0.4.17) - 2024-05-15 ### Other diff --git a/sn_faucet/Cargo.toml b/sn_faucet/Cargo.toml index ae5b76dfda..1a41e86311 100644 --- a/sn_faucet/Cargo.toml +++ b/sn_faucet/Cargo.toml @@ -8,7 +8,7 @@ license = "GPL-3.0" name = "sn_faucet" readme = "README.md" repository = "https://github.com/maidsafe/safe_network" -version = "0.4.17" +version = "0.4.18" [features] default = ["gifting"] diff --git a/sn_metrics/CHANGELOG.md b/sn_metrics/CHANGELOG.md index 3837d5e512..d8ec4a234c 100644 --- a/sn_metrics/CHANGELOG.md +++ b/sn_metrics/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.7](https://github.com/maidsafe/safe_network/compare/sn_metrics-v0.1.6...sn_metrics-v0.1.7) - 2024-05-20 + +### Other +- update Cargo.lock dependencies + ## [0.1.6](https://github.com/maidsafe/safe_network/compare/sn_metrics-v0.1.5...sn_metrics-v0.1.6) - 2024-05-15 ### Other diff --git a/sn_metrics/Cargo.toml b/sn_metrics/Cargo.toml index 28827343e7..6ff90f7097 100644 --- a/sn_metrics/Cargo.toml +++ b/sn_metrics/Cargo.toml @@ -8,7 +8,7 @@ license = "GPL-3.0" name = "sn_metrics" readme = "README.md" repository = "https://github.com/maidsafe/safe_network" -version = "0.1.6" +version = "0.1.7" [[bin]] path = "src/main.rs" diff --git a/sn_node/CHANGELOG.md b/sn_node/CHANGELOG.md index b7f053cca6..9f9bc11eb5 100644 --- a/sn_node/CHANGELOG.md +++ b/sn_node/CHANGELOG.md @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.106.4](https://github.com/maidsafe/safe_network/compare/sn_node-v0.106.3...sn_node-v0.106.4) - 2024-05-20 + +### Other +- update Cargo.lock dependencies + ## [0.106.3](https://github.com/maidsafe/safe_network/compare/sn_node-v0.106.2...sn_node-v0.106.3) - 2024-05-15 ### Other diff --git a/sn_node/Cargo.toml b/sn_node/Cargo.toml index e4c60ea139..04e6be6262 100644 --- a/sn_node/Cargo.toml +++ b/sn_node/Cargo.toml @@ -2,7 +2,7 @@ authors = ["MaidSafe Developers "] description = "Safe Node" name = "sn_node" -version = "0.106.3" +version = "0.106.4" edition = "2021" license = "GPL-3.0" homepage = "https://maidsafe.net" @@ -59,7 +59,7 @@ sn_networking = { path = "../sn_networking", version = "0.15.2" } sn_protocol = { path = "../sn_protocol", version = "0.16.6" } sn_registers = { path = "../sn_registers", version = "0.3.13" } sn_transfers = { path = "../sn_transfers", version = "0.18.0" } -sn_service_management = { path = "../sn_service_management", version = "0.2.7" } +sn_service_management = { path = "../sn_service_management", version = "0.2.8" } thiserror = "1.0.23" tokio = { version = "1.32.0", features = [ "io-util", diff --git a/sn_node_manager/CHANGELOG.md b/sn_node_manager/CHANGELOG.md index 417b304d4e..73e8adbd59 100644 --- a/sn_node_manager/CHANGELOG.md +++ b/sn_node_manager/CHANGELOG.md @@ -6,6 +6,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.7](https://github.com/maidsafe/safe_network/compare/sn-node-manager-v0.7.6...sn-node-manager-v0.7.7) - 2024-05-20 + +### Added +- *(node_manager)* add auditor support +- provide `--upnp` flag for `add` command + +### Fixed +- retain options on upgrade and prevent dup ports + +### Other +- use helper function to print banners +- use published versions of deps +- update Cargo.lock dependencies + ## [0.7.6](https://github.com/maidsafe/safe_network/compare/sn-node-manager-v0.7.5...sn-node-manager-v0.7.6) - 2024-05-15 ### Added diff --git a/sn_node_manager/Cargo.toml b/sn_node_manager/Cargo.toml index b32a623234..2338c0b4c8 100644 --- a/sn_node_manager/Cargo.toml +++ b/sn_node_manager/Cargo.toml @@ -7,7 +7,7 @@ license = "GPL-3.0" name = "sn-node-manager" readme = "README.md" repository = "https://github.com/maidsafe/safe_network" -version = "0.7.6" +version = "0.7.7" [[bin]] name = "safenode-manager" @@ -44,7 +44,7 @@ service-manager = "0.6.1" sn_logging = { path = "../sn_logging", version = "0.2.26" } sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.2.12" } sn_protocol = { path = "../sn_protocol", version = "0.16.5" } -sn_service_management = { path = "../sn_service_management", version = "0.2.7" } +sn_service_management = { path = "../sn_service_management", version = "0.2.8" } sn-releases = "~0.2.2" sn_transfers = { path = "../sn_transfers", version = "0.18.0" } sysinfo = "0.30.12" diff --git a/sn_node_rpc_client/CHANGELOG.md b/sn_node_rpc_client/CHANGELOG.md index 818d30f965..73f0481c09 100644 --- a/sn_node_rpc_client/CHANGELOG.md +++ b/sn_node_rpc_client/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.6.17](https://github.com/maidsafe/safe_network/compare/sn_node_rpc_client-v0.6.16...sn_node_rpc_client-v0.6.17) - 2024-05-20 + +### Other +- update Cargo.lock dependencies + ## [0.6.16](https://github.com/maidsafe/safe_network/compare/sn_node_rpc_client-v0.6.15...sn_node_rpc_client-v0.6.16) - 2024-05-15 ### Other diff --git a/sn_node_rpc_client/Cargo.toml b/sn_node_rpc_client/Cargo.toml index 50b1bd2a66..edb4245b53 100644 --- a/sn_node_rpc_client/Cargo.toml +++ b/sn_node_rpc_client/Cargo.toml @@ -8,7 +8,7 @@ license = "GPL-3.0" name = "sn_node_rpc_client" readme = "README.md" repository = "https://github.com/maidsafe/safe_network" -version = "0.6.16" +version = "0.6.17" [[bin]] name = "safenode_rpc_client" @@ -25,10 +25,10 @@ libp2p = { version="0.53", features = ["kad"]} libp2p-identity = { version="0.2.7", features = ["rand"] } sn_client = { path = "../sn_client", version = "0.106.2" } sn_logging = { path = "../sn_logging", version = "0.2.26" } -sn_node = { path = "../sn_node", version = "0.106.3" } +sn_node = { path = "../sn_node", version = "0.106.4" } sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.2.12" } sn_protocol = { path = "../sn_protocol", version = "0.16.6", features=["rpc"] } -sn_service_management = { path = "../sn_service_management", version = "0.2.7" } +sn_service_management = { path = "../sn_service_management", version = "0.2.8" } sn_transfers = { path = "../sn_transfers", version = "0.18.0" } thiserror = "1.0.23" # # watch out updating this, protoc compiler needs to be installed on all build systems diff --git a/sn_service_management/CHANGELOG.md b/sn_service_management/CHANGELOG.md index f00b31cdce..c0528ccd00 100644 --- a/sn_service_management/CHANGELOG.md +++ b/sn_service_management/CHANGELOG.md @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.8](https://github.com/maidsafe/safe_network/compare/sn_service_management-v0.2.7...sn_service_management-v0.2.8) - 2024-05-20 + +### Added +- *(node_manager)* add auditor support +- provide `--upnp` flag for `add` command + +### Fixed +- retain options on upgrade and prevent dup ports + ## [0.2.7](https://github.com/maidsafe/safe_network/compare/sn_service_management-v0.2.6...sn_service_management-v0.2.7) - 2024-05-15 ### Added diff --git a/sn_service_management/Cargo.toml b/sn_service_management/Cargo.toml index 5dba528679..41f1166324 100644 --- a/sn_service_management/Cargo.toml +++ b/sn_service_management/Cargo.toml @@ -7,7 +7,7 @@ license = "GPL-3.0" name = "sn_service_management" readme = "README.md" repository = "https://github.com/maidsafe/safe_network" -version = "0.2.7" +version = "0.2.8" [dependencies] async-trait = "0.1"