From c010d70a6278d9ec740422ac865614d3db3a7144 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 15 May 2024 01:50:59 +0000 Subject: [PATCH] chore(release): sn_auditor-v0.1.15/sn_cli-v0.91.3/sn_faucet-v0.4.17/sn_metrics-v0.1.6/sn_node-v0.106.3/sn_service_management-v0.2.7/node-launchpad-v0.1.2/sn_node_rpc_client-v0.6.16 --- Cargo.lock | 16 ++++++++-------- node-launchpad/CHANGELOG.md | 26 ++++++++++++++++++++++++++ node-launchpad/Cargo.toml | 4 ++-- 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/Cargo.toml | 2 +- sn_node_rpc_client/CHANGELOG.md | 5 +++++ sn_node_rpc_client/Cargo.toml | 6 +++--- sn_service_management/CHANGELOG.md | 8 ++++++++ sn_service_management/Cargo.toml | 2 +- 18 files changed, 85 insertions(+), 21 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7f5b7e1d35..9623857e22 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4633,7 +4633,7 @@ dependencies = [ [[package]] name = "node-launchpad" -version = "0.1.1" +version = "0.1.2" dependencies = [ "atty", "better-panic", @@ -6905,7 +6905,7 @@ dependencies = [ [[package]] name = "sn_auditor" -version = "0.1.14" +version = "0.1.15" dependencies = [ "blsttc", "clap", @@ -6943,7 +6943,7 @@ dependencies = [ [[package]] name = "sn_cli" -version = "0.91.2" +version = "0.91.3" dependencies = [ "aes 0.7.5", "base64 0.22.1", @@ -7069,7 +7069,7 @@ dependencies = [ [[package]] name = "sn_faucet" -version = "0.4.16" +version = "0.4.17" dependencies = [ "assert_fs", "base64 0.22.1", @@ -7122,7 +7122,7 @@ dependencies = [ [[package]] name = "sn_metrics" -version = "0.1.5" +version = "0.1.6" dependencies = [ "clap", "color-eyre", @@ -7176,7 +7176,7 @@ dependencies = [ [[package]] name = "sn_node" -version = "0.106.2" +version = "0.106.3" dependencies = [ "assert_fs", "assert_matches", @@ -7231,7 +7231,7 @@ dependencies = [ [[package]] name = "sn_node_rpc_client" -version = "0.6.15" +version = "0.6.16" dependencies = [ "assert_fs", "async-trait", @@ -7320,7 +7320,7 @@ dependencies = [ [[package]] name = "sn_service_management" -version = "0.2.6" +version = "0.2.7" dependencies = [ "async-trait", "dirs-next", diff --git a/node-launchpad/CHANGELOG.md b/node-launchpad/CHANGELOG.md index cdf0c4dfc7..f718cd0d9b 100644 --- a/node-launchpad/CHANGELOG.md +++ b/node-launchpad/CHANGELOG.md @@ -6,6 +6,32 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.2](https://github.com/maidsafe/safe_network/compare/node-launchpad-v0.1.1...node-launchpad-v0.1.2) - 2024-05-15 + +### Added +- *(launchpad)* initial automatic resource allocation logic +- *(launchpad)* allow users to input disk space to allocate +- *(launchpad)* store discord username to disk +- *(launchpad)* use escape to exit input screen and restore old value +- *(launchpad)* have customizable footer +- *(launchpad)* add discord username scene + +### Fixed +- *(launchpad)* check if component is active before handling events +- *(launchpad)* prevent mac opening with sudo +- *(launchpad)* prevent loops from terminal/sudo relaunching +- use fixed size popups + +### Other +- *(launchpad)* removing redudnat for loops +- move helper text inside popup +- change trigger resource allocation input box keybind +- *(launchpad)* highlight the table in green if we're currently running +- *(launchpad)* add more alternative keybinds +- change terminal launch behaviour +- use consistent border styles +- *(launchpad)* use safe data dir to store configs + ## [0.1.1](https://github.com/maidsafe/safe_network/compare/node-launchpad-v0.1.0...node-launchpad-v0.1.1) - 2024-05-08 ### Other diff --git a/node-launchpad/Cargo.toml b/node-launchpad/Cargo.toml index 7c8bae1c18..bdf6cd7d51 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.1" +version = "0.1.2" edition = "2021" license = "GPL-3.0" homepage = "https://maidsafe.net" @@ -47,7 +47,7 @@ signal-hook = "0.3.17" sn-node-manager = { version = "0.7.5", path = "../sn_node_manager" } sn_peers_acquisition = { version = "0.2.12", path = "../sn_peers_acquisition" } sn-releases = "0.2.1" -sn_service_management = { version = "0.2.6", path = "../sn_service_management" } +sn_service_management = { version = "0.2.7", 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 4c013b6352..a30f20fbc3 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.15](https://github.com/maidsafe/safe_network/compare/sn_auditor-v0.1.14...sn_auditor-v0.1.15) - 2024-05-15 + +### Other +- update Cargo.lock dependencies + ## [0.1.14](https://github.com/maidsafe/safe_network/compare/sn_auditor-v0.1.13...sn_auditor-v0.1.14) - 2024-05-09 ### Other diff --git a/sn_auditor/Cargo.toml b/sn_auditor/Cargo.toml index ccb88bafe3..e014b64533 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.14" +version = "0.1.15" 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 e1e2297049..0eb5b81337 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.3](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.91.2...sn_cli-v0.91.3) - 2024-05-15 + +### Other +- update Cargo.lock dependencies + ## [0.91.2](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.91.1...sn_cli-v0.91.2) - 2024-05-09 ### Fixed diff --git a/sn_cli/Cargo.toml b/sn_cli/Cargo.toml index 15ce4a6ccd..197585aa5c 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.2" +version = "0.91.3" [[bin]] path = "src/bin/main.rs" diff --git a/sn_faucet/CHANGELOG.md b/sn_faucet/CHANGELOG.md index 96fbfe609e..f621460b74 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.17](https://github.com/maidsafe/safe_network/compare/sn_faucet-v0.4.16...sn_faucet-v0.4.17) - 2024-05-15 + +### Other +- update Cargo.lock dependencies + ## [0.4.16](https://github.com/maidsafe/safe_network/compare/sn_faucet-v0.4.15...sn_faucet-v0.4.16) - 2024-05-09 ### Other diff --git a/sn_faucet/Cargo.toml b/sn_faucet/Cargo.toml index 41f2450312..c10fb6b71f 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.16" +version = "0.4.17" [features] default = [] diff --git a/sn_metrics/CHANGELOG.md b/sn_metrics/CHANGELOG.md index dcc005029f..3837d5e512 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.6](https://github.com/maidsafe/safe_network/compare/sn_metrics-v0.1.5...sn_metrics-v0.1.6) - 2024-05-15 + +### Other +- update Cargo.lock dependencies + ## [0.1.5-alpha.2](https://github.com/maidsafe/safe_network/compare/sn_metrics-v0.1.5-alpha.1...sn_metrics-v0.1.5-alpha.2) - 2024-05-07 ### Other diff --git a/sn_metrics/Cargo.toml b/sn_metrics/Cargo.toml index f4ad8e8ec3..28827343e7 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.5" +version = "0.1.6" [[bin]] path = "src/main.rs" diff --git a/sn_node/CHANGELOG.md b/sn_node/CHANGELOG.md index 6f93b12af9..b7f053cca6 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.3](https://github.com/maidsafe/safe_network/compare/sn_node-v0.106.2...sn_node-v0.106.3) - 2024-05-15 + +### Other +- update Cargo.lock dependencies + ## [0.106.2](https://github.com/maidsafe/safe_network/compare/sn_node-v0.106.1...sn_node-v0.106.2) - 2024-05-09 ### Fixed diff --git a/sn_node/Cargo.toml b/sn_node/Cargo.toml index d53c94d07b..e4c60ea139 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.2" +version = "0.106.3" 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.6" } +sn_service_management = { path = "../sn_service_management", version = "0.2.7" } thiserror = "1.0.23" tokio = { version = "1.32.0", features = [ "io-util", diff --git a/sn_node_manager/Cargo.toml b/sn_node_manager/Cargo.toml index 47800f8340..e67df5e8dd 100644 --- a/sn_node_manager/Cargo.toml +++ b/sn_node_manager/Cargo.toml @@ -43,7 +43,7 @@ serde_json = "1.0" service-manager = "0.6.1" 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.6" } +sn_service_management = { path = "../sn_service_management", version = "0.2.7" } sn-releases = "0.2.0" 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 8a275ab875..818d30f965 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.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 +- update Cargo.lock dependencies + ## [0.6.15](https://github.com/maidsafe/safe_network/compare/sn_node_rpc_client-v0.6.14...sn_node_rpc_client-v0.6.15) - 2024-05-09 ### Other diff --git a/sn_node_rpc_client/Cargo.toml b/sn_node_rpc_client/Cargo.toml index 81f58944ae..50b1bd2a66 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.15" +version = "0.6.16" [[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.2" } +sn_node = { path = "../sn_node", version = "0.106.3" } 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.6" } +sn_service_management = { path = "../sn_service_management", version = "0.2.7" } 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 7db6745aac..f00b31cdce 100644 --- a/sn_service_management/CHANGELOG.md +++ b/sn_service_management/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [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 +- run safenode services in user mode + +### Other +- upgrade service manager crate + ## [0.2.6](https://github.com/maidsafe/safe_network/compare/sn_service_management-v0.2.5...sn_service_management-v0.2.6) - 2024-05-08 ### Other diff --git a/sn_service_management/Cargo.toml b/sn_service_management/Cargo.toml index b96d487b38..7ea620b5da 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.6" +version = "0.2.7" [dependencies] async-trait = "0.1"