From b35c5045c93261897ff63d278de8a2e3f5c165de Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 1 Feb 2024 13:49:33 +0000 Subject: [PATCH] chore(release): sn_cli-v0.89.36/sn_client-v0.102.21/sn_networking-v0.12.45/sn_faucet-v0.3.35/sn_node-v0.103.32/sn_node_rpc_client-v0.4.20/sn-node-manager-v0.1.36/token_supplies-v0.1.23 --- Cargo.lock | 16 ++++++++-------- sn_cli/CHANGELOG.md | 9 +++++++++ sn_cli/Cargo.toml | 4 ++-- sn_client/CHANGELOG.md | 5 +++++ sn_client/Cargo.toml | 4 ++-- sn_faucet/CHANGELOG.md | 5 +++++ sn_faucet/Cargo.toml | 4 ++-- sn_networking/CHANGELOG.md | 5 +++++ sn_networking/Cargo.toml | 2 +- sn_node/CHANGELOG.md | 5 +++++ sn_node/Cargo.toml | 6 +++--- sn_node_manager/CHANGELOG.md | 5 +++++ sn_node_manager/Cargo.toml | 4 ++-- sn_node_rpc_client/CHANGELOG.md | 5 +++++ sn_node_rpc_client/Cargo.toml | 6 +++--- token_supplies/CHANGELOG.md | 5 +++++ token_supplies/Cargo.toml | 2 +- 17 files changed, 68 insertions(+), 24 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7841323d6d..ba9e4880d5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4999,7 +4999,7 @@ checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7" [[package]] name = "sn-node-manager" -version = "0.1.35" +version = "0.1.36" dependencies = [ "assert_cmd", "assert_fs", @@ -5057,7 +5057,7 @@ dependencies = [ [[package]] name = "sn_cli" -version = "0.89.35" +version = "0.89.36" dependencies = [ "blsttc", "bytes", @@ -5096,7 +5096,7 @@ dependencies = [ [[package]] name = "sn_client" -version = "0.102.20" +version = "0.102.21" dependencies = [ "async-trait", "backoff", @@ -5138,7 +5138,7 @@ dependencies = [ [[package]] name = "sn_faucet" -version = "0.3.34" +version = "0.3.35" dependencies = [ "bitcoin", "blsttc", @@ -5184,7 +5184,7 @@ dependencies = [ [[package]] name = "sn_networking" -version = "0.12.44" +version = "0.12.45" dependencies = [ "aes-gcm-siv", "async-trait", @@ -5219,7 +5219,7 @@ dependencies = [ [[package]] name = "sn_node" -version = "0.103.31" +version = "0.103.32" dependencies = [ "assert_fs", "async-trait", @@ -5271,7 +5271,7 @@ dependencies = [ [[package]] name = "sn_node_rpc_client" -version = "0.4.19" +version = "0.4.20" dependencies = [ "assert_fs", "async-trait", @@ -5757,7 +5757,7 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "token_supplies" -version = "0.1.22" +version = "0.1.23" dependencies = [ "dirs-next", "reqwest", diff --git a/sn_cli/CHANGELOG.md b/sn_cli/CHANGELOG.md index 4a9a56420d..c49a7f8e40 100644 --- a/sn_cli/CHANGELOG.md +++ b/sn_cli/CHANGELOG.md @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.89.36](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.89.35...sn_cli-v0.89.36) - 2024-02-01 + +### Fixed +- *(cli)* move UploadedFiles creation logic from ChunkManager +- *(cli)* chunk manager to return error if fs operation fails + +### Other +- *(cli)* use 'completed' files everywhere + ## [0.89.35](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.89.34...sn_cli-v0.89.35) - 2024-02-01 ### Other diff --git a/sn_cli/Cargo.toml b/sn_cli/Cargo.toml index 6a988b50e5..0a9da4be2d 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.89.35" +version = "0.89.36" [[bin]] path="src/main.rs" @@ -44,7 +44,7 @@ reqwest = { version="0.11.18", default-features=false, features = ["rustls"] } rmp-serde = "1.1.1" serde = { version = "1.0.133", features = [ "derive"]} sn_build_info = { path="../sn_build_info", version = "0.1.4" } -sn_client = { path = "../sn_client", version = "0.102.20" } +sn_client = { path = "../sn_client", version = "0.102.21" } sn_transfers = { path = "../sn_transfers", version = "0.14.43" } sn_registers = { path = "../sn_registers", version = "0.3.8" } sn_logging = { path = "../sn_logging", version = "0.2.18" } diff --git a/sn_client/CHANGELOG.md b/sn_client/CHANGELOG.md index 5f3364ee52..a103509ee4 100644 --- a/sn_client/CHANGELOG.md +++ b/sn_client/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.102.21](https://github.com/maidsafe/safe_network/compare/sn_client-v0.102.20...sn_client-v0.102.21) - 2024-02-01 + +### Fixed +- *(client)* error out when fetching large data_map + ## [0.102.20](https://github.com/maidsafe/safe_network/compare/sn_client-v0.102.19...sn_client-v0.102.20) - 2024-02-01 ### Other diff --git a/sn_client/Cargo.toml b/sn_client/Cargo.toml index 8e82b8ffa9..b9cce73582 100644 --- a/sn_client/Cargo.toml +++ b/sn_client/Cargo.toml @@ -8,7 +8,7 @@ license = "GPL-3.0" name = "sn_client" readme = "README.md" repository = "https://github.com/maidsafe/safe_network" -version = "0.102.20" +version = "0.102.21" [features] default=[] @@ -34,7 +34,7 @@ rayon = "1.8.0" rmp-serde = "1.1.1" self_encryption = "~0.29.0" serde = { version = "1.0.133", features = [ "derive", "rc" ]} -sn_networking = { path = "../sn_networking", version = "0.12.44" } +sn_networking = { path = "../sn_networking", version = "0.12.45" } sn_protocol = { path = "../sn_protocol", version = "0.12.0" } sn_registers = { path = "../sn_registers", version = "0.3.8" } sn_transfers = { path = "../sn_transfers", version = "0.14.43" } diff --git a/sn_faucet/CHANGELOG.md b/sn_faucet/CHANGELOG.md index b7e0af4147..6145890bbe 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.3.35](https://github.com/maidsafe/safe_network/compare/sn_faucet-v0.3.34...sn_faucet-v0.3.35) - 2024-02-01 + +### Other +- update dependencies + ## [0.3.34](https://github.com/maidsafe/safe_network/compare/sn_faucet-v0.3.33...sn_faucet-v0.3.34) - 2024-02-01 ### Other diff --git a/sn_faucet/Cargo.toml b/sn_faucet/Cargo.toml index bd27b14575..33e4e240a6 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.3.34" +version = "0.3.35" [features] default = [] @@ -27,7 +27,7 @@ indicatif = { version = "0.17.5", features = ["tokio"] } minreq = { version = "2.11.0", features = ["https-rustls"] } serde = { version = "1.0.193", features = ["derive"] } serde_json = "1.0.108" -sn_client = { path = "../sn_client", version = "0.102.20" } +sn_client = { path = "../sn_client", version = "0.102.21" } sn_logging = { path = "../sn_logging", version = "0.2.18" } sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.2.5" } sn_transfers = { path = "../sn_transfers", version = "0.14.43" } diff --git a/sn_networking/CHANGELOG.md b/sn_networking/CHANGELOG.md index 8eba36705c..54fb80becf 100644 --- a/sn_networking/CHANGELOG.md +++ b/sn_networking/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.12.45](https://github.com/maidsafe/safe_network/compare/sn_networking-v0.12.44...sn_networking-v0.12.45) - 2024-02-01 + +### Fixed +- *(cli)* chunk manager to return error if fs operation fails + ## [0.12.44](https://github.com/maidsafe/safe_network/compare/sn_networking-v0.12.43...sn_networking-v0.12.44) - 2024-02-01 ### Fixed diff --git a/sn_networking/Cargo.toml b/sn_networking/Cargo.toml index 1dff9ac462..bf72c3279f 100644 --- a/sn_networking/Cargo.toml +++ b/sn_networking/Cargo.toml @@ -8,7 +8,7 @@ license = "GPL-3.0" name = "sn_networking" readme = "README.md" repository = "https://github.com/maidsafe/safe_network" -version = "0.12.44" +version = "0.12.45" [features] default=["libp2p/quic"] diff --git a/sn_node/CHANGELOG.md b/sn_node/CHANGELOG.md index 95e3b72001..0b8184244d 100644 --- a/sn_node/CHANGELOG.md +++ b/sn_node/CHANGELOG.md @@ -3062,6 +3062,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - *(network)* refactor cfg to allow get_record reattempts +## [0.103.32](https://github.com/maidsafe/safe_network/compare/sn_node-v0.103.31...sn_node-v0.103.32) - 2024-02-01 + +### Other +- update dependencies + ## v0.1.0 (2023-05-04) ### Chore diff --git a/sn_node/Cargo.toml b/sn_node/Cargo.toml index 09e14ff115..3ab6bba115 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.103.31" +version = "0.103.32" edition = "2021" license = "GPL-3.0" homepage = "https://maidsafe.net" @@ -50,9 +50,9 @@ self_encryption = "~0.29.0" serde = { version = "1.0.133", features = [ "derive", "rc" ]} sn_build_info = { path="../sn_build_info", version = "0.1.4" } sn_peers_acquisition= { path="../sn_peers_acquisition", version = "0.2.5" } -sn_client = { path = "../sn_client", version = "0.102.20" } +sn_client = { path = "../sn_client", version = "0.102.21" } sn_logging = { path = "../sn_logging", version = "0.2.18" } -sn_networking = { path = "../sn_networking", version = "0.12.44" } +sn_networking = { path = "../sn_networking", version = "0.12.45" } sn_protocol = { path = "../sn_protocol", version = "0.12.0", features = ["rpc"]} sn_registers = { path = "../sn_registers", version = "0.3.8" } sn_transfers = { path = "../sn_transfers", version = "0.14.43" } diff --git a/sn_node_manager/CHANGELOG.md b/sn_node_manager/CHANGELOG.md index 0d90bd9c2f..5f423ca6f0 100644 --- a/sn_node_manager/CHANGELOG.md +++ b/sn_node_manager/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.36](https://github.com/maidsafe/safe_network/compare/sn-node-manager-v0.1.35...sn-node-manager-v0.1.36) - 2024-02-01 + +### Other +- update dependencies + ## [0.1.35](https://github.com/maidsafe/safe_network/compare/sn-node-manager-v0.1.34...sn-node-manager-v0.1.35) - 2024-02-01 ### Other diff --git a/sn_node_manager/Cargo.toml b/sn_node_manager/Cargo.toml index c92408017f..4a25e27d94 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.1.35" +version = "0.1.36" [[bin]] path="src/main.rs" @@ -37,7 +37,7 @@ semver = "1.0.20" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" service-manager = "0.5.1" -sn_node_rpc_client = { path = "../sn_node_rpc_client", version = "0.4.19" } +sn_node_rpc_client = { path = "../sn_node_rpc_client", version = "0.4.20" } sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.2.4" } sn_protocol = { path = "../sn_protocol", version = "0.12.0" } sn-releases = "0.1.6" diff --git a/sn_node_rpc_client/CHANGELOG.md b/sn_node_rpc_client/CHANGELOG.md index 4baa3a0ea4..7be63db1b1 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.4.20](https://github.com/maidsafe/safe_network/compare/sn_node_rpc_client-v0.4.19...sn_node_rpc_client-v0.4.20) - 2024-02-01 + +### Other +- update dependencies + ## [0.4.19](https://github.com/maidsafe/safe_network/compare/sn_node_rpc_client-v0.4.18...sn_node_rpc_client-v0.4.19) - 2024-02-01 ### Other diff --git a/sn_node_rpc_client/Cargo.toml b/sn_node_rpc_client/Cargo.toml index 56c5946537..c3c0d15a7f 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.4.19" +version = "0.4.20" [[bin]] path="src/main.rs" @@ -23,9 +23,9 @@ color-eyre = "0.6.2" hex = "~0.4.3" libp2p = { version="0.52", features = ["kad"]} libp2p-identity = { version="0.2.7", features = ["rand"] } -sn_client = { path = "../sn_client", version = "0.102.20" } +sn_client = { path = "../sn_client", version = "0.102.21" } sn_logging = { path = "../sn_logging", version = "0.2.18" } -sn_node = { path = "../sn_node", version = "0.103.31" } +sn_node = { path = "../sn_node", version = "0.103.32" } sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.2.5" } sn_protocol = { path = "../sn_protocol", version = "0.12.0", features=["rpc"] } sn_transfers = { path = "../sn_transfers", version = "0.14.43" } diff --git a/token_supplies/CHANGELOG.md b/token_supplies/CHANGELOG.md index 072e2d0a32..a5e992abcc 100644 --- a/token_supplies/CHANGELOG.md +++ b/token_supplies/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.23](https://github.com/maidsafe/safe_network/compare/token_supplies-v0.1.22...token_supplies-v0.1.23) - 2024-02-01 + +### Other +- update dependencies + ## [0.1.22](https://github.com/maidsafe/safe_network/compare/token_supplies-v0.1.21...token_supplies-v0.1.22) - 2024-02-01 ### Other diff --git a/token_supplies/Cargo.toml b/token_supplies/Cargo.toml index ac8e7bf51a..f6db87e404 100644 --- a/token_supplies/Cargo.toml +++ b/token_supplies/Cargo.toml @@ -8,7 +8,7 @@ license = "GPL-3.0" name = "token_supplies" readme = "README.md" repository = "https://github.com/maidsafe/safe_network" -version = "0.1.22" +version = "0.1.23" [dependencies]