From 25393dfd100acb07e19a628121b1473afa374d70 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 26 Oct 2023 14:18:42 +0000 Subject: [PATCH] chore(release): sn_cli-v0.84.25/sn_client-v0.95.9/sn_networking-v0.9.8/sn_protocol-v0.8.6/sn_peers_acquisition-v0.1.8/sn_node-v0.96.11/sn_testnet-v0.2.239 --- Cargo.lock | 14 +++++++------- sn_cli/CHANGELOG.md | 5 +++++ sn_cli/Cargo.toml | 8 ++++---- sn_client/CHANGELOG.md | 5 +++++ sn_client/Cargo.toml | 6 +++--- sn_networking/CHANGELOG.md | 12 ++++++++++++ sn_networking/Cargo.toml | 4 ++-- sn_node/CHANGELOG.md | 9 +++++++++ sn_node/Cargo.toml | 10 +++++----- sn_peers_acquisition/CHANGELOG.md | 5 +++++ sn_peers_acquisition/Cargo.toml | 2 +- sn_protocol/CHANGELOG.md | 5 +++++ sn_protocol/Cargo.toml | 2 +- sn_testnet/CHANGELOG.md | 5 +++++ sn_testnet/Cargo.toml | 2 +- 15 files changed, 70 insertions(+), 24 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 539b72abc2..4a61e959f4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4304,7 +4304,7 @@ dependencies = [ [[package]] name = "sn_cli" -version = "0.84.24" +version = "0.84.25" dependencies = [ "bincode", "blsttc", @@ -4337,7 +4337,7 @@ dependencies = [ [[package]] name = "sn_client" -version = "0.95.8" +version = "0.95.9" dependencies = [ "async-trait", "bincode", @@ -4393,7 +4393,7 @@ dependencies = [ [[package]] name = "sn_networking" -version = "0.9.7" +version = "0.9.8" dependencies = [ "async-trait", "blsttc", @@ -4423,7 +4423,7 @@ dependencies = [ [[package]] name = "sn_node" -version = "0.96.10" +version = "0.96.11" dependencies = [ "assert_fs", "async-trait", @@ -4478,7 +4478,7 @@ dependencies = [ [[package]] name = "sn_peers_acquisition" -version = "0.1.7" +version = "0.1.8" dependencies = [ "clap 4.4.7", "color-eyre", @@ -4491,7 +4491,7 @@ dependencies = [ [[package]] name = "sn_protocol" -version = "0.8.5" +version = "0.8.6" dependencies = [ "blsttc", "bytes", @@ -4529,7 +4529,7 @@ dependencies = [ [[package]] name = "sn_testnet" -version = "0.2.238" +version = "0.2.239" dependencies = [ "assert_fs", "clap 3.2.25", diff --git a/sn_cli/CHANGELOG.md b/sn_cli/CHANGELOG.md index 7ae4cc51ce..5d550c60f0 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.84.25](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.84.24...sn_cli-v0.84.25) - 2023-10-26 + +### Other +- update dependencies + ## [0.84.24](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.84.23...sn_cli-v0.84.24) - 2023-10-26 ### Other diff --git a/sn_cli/Cargo.toml b/sn_cli/Cargo.toml index 3562ff8a05..61a07ef23c 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.84.24" +version = "0.84.25" [[bin]] path="src/main.rs" @@ -40,11 +40,11 @@ libp2p = { version="0.52", features = ["identify", "kad"] } rayon = "1.8.0" reqwest = { version="0.11.18", default-features=false, features = ["rustls"] } sn_build_info = { path="../sn_build_info", version = "0.1.2" } -sn_client = { path = "../sn_client", version = "0.95.8" } +sn_client = { path = "../sn_client", version = "0.95.9" } sn_transfers = { path = "../sn_transfers", version = "0.14.7" } sn_logging = { path = "../sn_logging", version = "0.2.14" } -sn_peers_acquisition= { path="../sn_peers_acquisition", version = "0.1.7" } -sn_protocol = { path = "../sn_protocol", version = "0.8.5" } +sn_peers_acquisition= { path="../sn_peers_acquisition", version = "0.1.8" } +sn_protocol = { path = "../sn_protocol", version = "0.8.6" } tempfile = "3.6.0" tokio = { version = "1.32.0", features = ["io-util", "macros", "parking_lot", "rt", "sync", "time"] } tracing = { version = "~0.1.26" } diff --git a/sn_client/CHANGELOG.md b/sn_client/CHANGELOG.md index e77eeda330..31cedfca4f 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.95.9](https://github.com/maidsafe/safe_network/compare/sn_client-v0.95.8...sn_client-v0.95.9) - 2023-10-26 + +### Fixed +- client carry out merge when verify register storage + ## [0.95.8](https://github.com/maidsafe/safe_network/compare/sn_client-v0.95.7...sn_client-v0.95.8) - 2023-10-26 ### Fixed diff --git a/sn_client/Cargo.toml b/sn_client/Cargo.toml index 756c0ad347..20a1e8924b 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.95.8" +version = "0.95.9" [features] default=[] @@ -31,8 +31,8 @@ rand = { version = "~0.8.5", features = ["small_rng"] } rayon = "1.8.0" self_encryption = "~0.28.5" serde = { version = "1.0.133", features = [ "derive", "rc" ]} -sn_networking = { path = "../sn_networking", version = "0.9.7" } -sn_protocol = { path = "../sn_protocol", version = "0.8.5" } +sn_networking = { path = "../sn_networking", version = "0.9.8" } +sn_protocol = { path = "../sn_protocol", version = "0.8.6" } sn_registers = { path = "../sn_registers", version = "0.3.3" } sn_transfers = { path = "../sn_transfers", version = "0.14.7" } tempfile = "3.6.0" diff --git a/sn_networking/CHANGELOG.md b/sn_networking/CHANGELOG.md index 65e93e4cba..70c3803890 100644 --- a/sn_networking/CHANGELOG.md +++ b/sn_networking/CHANGELOG.md @@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.9.8](https://github.com/maidsafe/safe_network/compare/sn_networking-v0.9.7...sn_networking-v0.9.8) - 2023-10-26 + +### Added +- replicate Spend/Register with same key but different content + +### Fixed +- throw out SplitRecord error for the later on merge +- client carry out merge when verify register storage + +### Other +- expand replication range + ## [0.9.7](https://github.com/maidsafe/safe_network/compare/sn_networking-v0.9.6...sn_networking-v0.9.7) - 2023-10-26 ### Fixed diff --git a/sn_networking/Cargo.toml b/sn_networking/Cargo.toml index 55ca56486c..caafe4c69d 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.9.7" +version = "0.9.8" [features] default=[] @@ -30,7 +30,7 @@ prometheus-client = { version = "0.21.2", optional = true } rand = { version = "~0.8.5", features = ["small_rng"] } rmp-serde = "1.1.1" serde = { version = "1.0.133", features = [ "derive", "rc" ]} -sn_protocol = { path = "../sn_protocol", version = "0.8.5" } +sn_protocol = { path = "../sn_protocol", version = "0.8.6" } sn_transfers = { path = "../sn_transfers", version = "0.14.7" } sysinfo = { version = "0.29.0", default-features = false, optional = true } thiserror = "1.0.23" diff --git a/sn_node/CHANGELOG.md b/sn_node/CHANGELOG.md index 633f8ccc45..76fa8c8648 100644 --- a/sn_node/CHANGELOG.md +++ b/sn_node/CHANGELOG.md @@ -1885,6 +1885,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Other - update dependencies +## [0.96.11](https://github.com/maidsafe/safe_network/compare/sn_node-v0.96.10...sn_node-v0.96.11) - 2023-10-26 + +### Added +- replicate Spend/Register with same key but different content + +### Other +- Revert "ci: Register test negation" +- expand replication range + ## v0.1.0 (2023-05-04) ### Chore diff --git a/sn_node/Cargo.toml b/sn_node/Cargo.toml index 4604ff3986..fd73425cdf 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.96.10" +version = "0.96.11" edition = "2021" license = "GPL-3.0" homepage = "https://maidsafe.net" @@ -58,11 +58,11 @@ rayon = "1.8.0" self_encryption = "~0.28.5" serde = { version = "1.0.133", features = [ "derive", "rc" ]} sn_build_info = { path="../sn_build_info", version = "0.1.2" } -sn_peers_acquisition= { path="../sn_peers_acquisition", version = "0.1.7" } -sn_client = { path = "../sn_client", version = "0.95.8" } +sn_peers_acquisition= { path="../sn_peers_acquisition", version = "0.1.8" } +sn_client = { path = "../sn_client", version = "0.95.9" } sn_logging = { path = "../sn_logging", version = "0.2.14" } -sn_networking = { path = "../sn_networking", version = "0.9.7" } -sn_protocol = { path = "../sn_protocol", version = "0.8.5" } +sn_networking = { path = "../sn_networking", version = "0.9.8" } +sn_protocol = { path = "../sn_protocol", version = "0.8.6" } sn_registers = { path = "../sn_registers", version = "0.3.3" } sn_transfers = { path = "../sn_transfers", version = "0.14.7" } thiserror = "1.0.23" diff --git a/sn_peers_acquisition/CHANGELOG.md b/sn_peers_acquisition/CHANGELOG.md index 1f923ac66d..99206cb4da 100644 --- a/sn_peers_acquisition/CHANGELOG.md +++ b/sn_peers_acquisition/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.8](https://github.com/maidsafe/safe_network/compare/sn_peers_acquisition-v0.1.7...sn_peers_acquisition-v0.1.8) - 2023-10-26 + +### Fixed +- always put SAFE_PEERS as one of the bootstrap peer, if presents + ## [0.1.7](https://github.com/maidsafe/safe_network/compare/sn_peers_acquisition-v0.1.6...sn_peers_acquisition-v0.1.7) - 2023-09-25 ### Added diff --git a/sn_peers_acquisition/Cargo.toml b/sn_peers_acquisition/Cargo.toml index 880da349bc..8e68e551cc 100644 --- a/sn_peers_acquisition/Cargo.toml +++ b/sn_peers_acquisition/Cargo.toml @@ -8,7 +8,7 @@ license = "GPL-3.0" name = "sn_peers_acquisition" readme = "README.md" repository = "https://github.com/maidsafe/safe_network" -version = "0.1.7" +version = "0.1.8" [features] default = [] diff --git a/sn_protocol/CHANGELOG.md b/sn_protocol/CHANGELOG.md index a8c88d8cc1..de488357d8 100644 --- a/sn_protocol/CHANGELOG.md +++ b/sn_protocol/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.8.6](https://github.com/maidsafe/safe_network/compare/sn_protocol-v0.8.5...sn_protocol-v0.8.6) - 2023-10-26 + +### Added +- replicate Spend/Register with same key but different content + ## [0.8.5](https://github.com/maidsafe/safe_network/compare/sn_protocol-v0.8.4...sn_protocol-v0.8.5) - 2023-10-26 ### Other diff --git a/sn_protocol/Cargo.toml b/sn_protocol/Cargo.toml index ab9369e4e6..790971172c 100644 --- a/sn_protocol/Cargo.toml +++ b/sn_protocol/Cargo.toml @@ -7,7 +7,7 @@ license = "GPL-3.0" name = "sn_protocol" readme = "README.md" repository = "https://github.com/maidsafe/safe_network" -version = "0.8.5" +version = "0.8.6" [dependencies] bls = { package = "blsttc", version = "8.0.1" } diff --git a/sn_testnet/CHANGELOG.md b/sn_testnet/CHANGELOG.md index fdcbd96759..9879d29ff0 100644 --- a/sn_testnet/CHANGELOG.md +++ b/sn_testnet/CHANGELOG.md @@ -1715,6 +1715,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - add libp2p identity with rand dep for tests +## [0.2.239](https://github.com/maidsafe/safe_network/compare/sn_testnet-v0.2.238...sn_testnet-v0.2.239) - 2023-10-26 + +### Other +- update dependencies + ## v0.1.0 (2023-03-16) diff --git a/sn_testnet/Cargo.toml b/sn_testnet/Cargo.toml index d47b58c54b..957687068d 100644 --- a/sn_testnet/Cargo.toml +++ b/sn_testnet/Cargo.toml @@ -8,7 +8,7 @@ license = "GPL-3.0" name = "sn_testnet" readme = "README.md" repository = "https://github.com/maidsafe/safe_network" -version = "0.2.238" +version = "0.2.239" [features] # required to pass on flag to node builds