diff --git a/Cargo.lock b/Cargo.lock index bfc03b1965..d3ebf6fb63 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4904,7 +4904,7 @@ checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7" [[package]] name = "sn-node-manager" -version = "0.3.10" +version = "0.3.11" dependencies = [ "assert_cmd", "assert_fs", @@ -4966,7 +4966,7 @@ dependencies = [ [[package]] name = "sn_cli" -version = "0.89.79" +version = "0.89.80" dependencies = [ "blsttc", "bytes", @@ -5005,7 +5005,7 @@ dependencies = [ [[package]] name = "sn_client" -version = "0.104.26" +version = "0.104.27" dependencies = [ "async-trait", "backoff", @@ -5048,7 +5048,7 @@ dependencies = [ [[package]] name = "sn_faucet" -version = "0.3.79" +version = "0.3.80" dependencies = [ "assert_fs", "bitcoin", @@ -5114,7 +5114,7 @@ dependencies = [ [[package]] name = "sn_networking" -version = "0.13.28" +version = "0.13.29" dependencies = [ "aes-gcm-siv", "async-trait", @@ -5152,7 +5152,7 @@ dependencies = [ [[package]] name = "sn_node" -version = "0.104.34" +version = "0.104.35" dependencies = [ "assert_fs", "async-trait", @@ -5204,7 +5204,7 @@ dependencies = [ [[package]] name = "sn_node_rpc_client" -version = "0.4.65" +version = "0.4.66" dependencies = [ "assert_fs", "async-trait", @@ -5244,7 +5244,7 @@ dependencies = [ [[package]] name = "sn_protocol" -version = "0.14.7" +version = "0.14.8" dependencies = [ "blsttc", "bytes", @@ -5288,7 +5288,7 @@ dependencies = [ [[package]] name = "sn_transfers" -version = "0.15.9" +version = "0.16.0" dependencies = [ "assert_fs", "blsttc", @@ -5692,7 +5692,7 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "token_supplies" -version = "0.1.42" +version = "0.1.43" dependencies = [ "dirs-next", "reqwest", diff --git a/sn_cli/CHANGELOG.md b/sn_cli/CHANGELOG.md index b46036dd2c..7741665977 100644 --- a/sn_cli/CHANGELOG.md +++ b/sn_cli/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.89.80](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.89.79...sn_cli-v0.89.80) - 2024-02-23 + +### Added +- file to upload +- estimate refactor + ## [0.89.79](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.89.78...sn_cli-v0.89.79) - 2024-02-21 ### Other diff --git a/sn_cli/Cargo.toml b/sn_cli/Cargo.toml index 2c37674e58..376edad376 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.79" +version = "0.89.80" [[bin]] path="src/main.rs" @@ -44,12 +44,12 @@ 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.5" } -sn_client = { path = "../sn_client", version = "0.104.26" } -sn_transfers = { path = "../sn_transfers", version = "0.15.8" } +sn_client = { path = "../sn_client", version = "0.104.27" } +sn_transfers = { path = "../sn_transfers", version = "0.16.0" } sn_registers = { path = "../sn_registers", version = "0.3.10" } sn_logging = { path = "../sn_logging", version = "0.2.21" } sn_peers_acquisition= { path="../sn_peers_acquisition", version = "0.2.6" } -sn_protocol = { path = "../sn_protocol", version = "0.14.7" } +sn_protocol = { path = "../sn_protocol", version = "0.14.8" } tempfile = "3.6.0" tokio = { version = "1.32.0", features = ["io-util", "macros", "parking_lot", "rt", "sync", "time", "fs"] } tracing = { version = "~0.1.26" } @@ -63,7 +63,7 @@ eyre = "0.6.8" criterion = "0.5.1" tempfile = "3.6.0" rand = { version = "~0.8.5", features = ["small_rng"] } -sn_protocol = { path = "../sn_protocol", version = "0.14.7", features = ["test-utils"]} +sn_protocol = { path = "../sn_protocol", version = "0.14.8", features = ["test-utils"]} [lints] workspace = true diff --git a/sn_client/CHANGELOG.md b/sn_client/CHANGELOG.md index 1d5b047d32..e07d14cd86 100644 --- a/sn_client/CHANGELOG.md +++ b/sn_client/CHANGELOG.md @@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.104.27](https://github.com/maidsafe/safe_network/compare/sn_client-v0.104.26...sn_client-v0.104.27) - 2024-02-23 + +### Other +- test docs test +- write online documentation +- push documentation +- sync documentation +- write atop write merg branches +- red and write register docs +- create register docs +- register docs + ## [0.104.26](https://github.com/maidsafe/safe_network/compare/sn_client-v0.104.25...sn_client-v0.104.26) - 2024-02-21 ### Other diff --git a/sn_client/Cargo.toml b/sn_client/Cargo.toml index c7a3706707..7ad7547dac 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.104.26" +version = "0.104.27" [features] default=[] @@ -35,10 +35,10 @@ 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.13.28" } -sn_protocol = { path = "../sn_protocol", version = "0.14.7" } +sn_networking = { path = "../sn_networking", version = "0.13.29" } +sn_protocol = { path = "../sn_protocol", version = "0.14.8" } sn_registers = { path = "../sn_registers", version = "0.3.10" } -sn_transfers = { path = "../sn_transfers", version = "0.15.8" } +sn_transfers = { path = "../sn_transfers", version = "0.16.0" } tempfile = "3.6.0" thiserror = "1.0.23" tiny-keccak = "~2.0.2" diff --git a/sn_faucet/CHANGELOG.md b/sn_faucet/CHANGELOG.md index ae75ffcf77..9f95495cab 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.80](https://github.com/maidsafe/safe_network/compare/sn_faucet-v0.3.79...sn_faucet-v0.3.80) - 2024-02-23 + +### Other +- update Cargo.lock dependencies + ## [0.3.79](https://github.com/maidsafe/safe_network/compare/sn_faucet-v0.3.78...sn_faucet-v0.3.79) - 2024-02-21 ### Other diff --git a/sn_faucet/Cargo.toml b/sn_faucet/Cargo.toml index ba911f1440..a5997ecf7d 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.79" +version = "0.3.80" [features] default = [] @@ -33,10 +33,10 @@ rmp-serde = "1.1.2" serde = { version = "1.0.193", features = ["derive"] } serde_bytes = { version = "0.11.12", optional = true } serde_json = "1.0.108" -sn_client = { path = "../sn_client", version = "0.104.26" } +sn_client = { path = "../sn_client", version = "0.104.27" } sn_logging = { path = "../sn_logging", version = "0.2.21" } sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.2.6" } -sn_transfers = { path = "../sn_transfers", version = "0.15.8" } +sn_transfers = { path = "../sn_transfers", version = "0.16.0" } tiny_http = { version="0.12", features = ["ssl-rustls"] } tokio = { version = "1.32.0", features = ["parking_lot", "rt"] } tracing = { version = "~0.1.26" } diff --git a/sn_networking/CHANGELOG.md b/sn_networking/CHANGELOG.md index 8ba5a1a950..68c2e0b94d 100644 --- a/sn_networking/CHANGELOG.md +++ b/sn_networking/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.13.29](https://github.com/maidsafe/safe_network/compare/sn_networking-v0.13.28...sn_networking-v0.13.29) - 2024-02-23 + +### Added +- *(node)* error out bad_nodes to node via event channel +- *(node)* refactor replication_fetcher to black list bad nodes + ## [0.13.28](https://github.com/maidsafe/safe_network/compare/sn_networking-v0.13.27...sn_networking-v0.13.28) - 2024-02-21 ### Other diff --git a/sn_networking/Cargo.toml b/sn_networking/Cargo.toml index 27aaac4d6f..493fbf3fef 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.13.28" +version = "0.13.29" [features] default = ["libp2p/quic"] @@ -50,8 +50,8 @@ rand = { version = "~0.8.5", features = ["small_rng"] } rayon = "1.8.0" rmp-serde = "1.1.1" serde = { version = "1.0.133", features = [ "derive", "rc" ]} -sn_protocol = { path = "../sn_protocol", version = "0.14.7" } -sn_transfers = { path = "../sn_transfers", version = "0.15.8" } +sn_protocol = { path = "../sn_protocol", version = "0.14.8" } +sn_transfers = { path = "../sn_transfers", version = "0.16.0" } sn_registers = { path = "../sn_registers", version = "0.3.9" } 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 7813415669..7b0c039074 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.104.35](https://github.com/maidsafe/safe_network/compare/sn_node-v0.104.34...sn_node-v0.104.35) - 2024-02-23 + +### Added +- *(node)* error out bad_nodes to node via event channel + ## [0.104.34](https://github.com/maidsafe/safe_network/compare/sn_node-v0.104.33...sn_node-v0.104.34) - 2024-02-21 ### Other diff --git a/sn_node/Cargo.toml b/sn_node/Cargo.toml index a33b404b8e..15631b810f 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.104.34" +version = "0.104.35" edition = "2021" license = "GPL-3.0" homepage = "https://maidsafe.net" @@ -52,12 +52,12 @@ self_encryption = "~0.29.0" serde = { version = "1.0.133", features = [ "derive", "rc" ]} sn_build_info = { path="../sn_build_info", version = "0.1.5" } sn_peers_acquisition= { path="../sn_peers_acquisition", version = "0.2.6" } -sn_client = { path = "../sn_client", version = "0.104.26" } +sn_client = { path = "../sn_client", version = "0.104.27" } sn_logging = { path = "../sn_logging", version = "0.2.21" } -sn_networking = { path = "../sn_networking", version = "0.13.28" } -sn_protocol = { path = "../sn_protocol", version = "0.14.7", features = ["rpc"]} +sn_networking = { path = "../sn_networking", version = "0.13.29" } +sn_protocol = { path = "../sn_protocol", version = "0.14.8", features = ["rpc"]} sn_registers = { path = "../sn_registers", version = "0.3.10" } -sn_transfers = { path = "../sn_transfers", version = "0.15.8" } +sn_transfers = { path = "../sn_transfers", version = "0.16.0" } thiserror = "1.0.23" tokio = { version = "1.32.0", features = ["io-util", "macros", "parking_lot", "rt", "sync", "time", "signal"] } tokio-stream = { version = "~0.1.12" } @@ -74,7 +74,7 @@ color-eyre = "0.6.2" [dev-dependencies] tempfile = "3.6.0" reqwest = { version="0.11.18", default-features=false, features = ["rustls"] } -sn_protocol = { path = "../sn_protocol", version = "0.14.7", features = ["test-utils", "rpc"]} +sn_protocol = { path = "../sn_protocol", version = "0.14.8", features = ["test-utils", "rpc"]} [lints] workspace = true diff --git a/sn_node_manager/CHANGELOG.md b/sn_node_manager/CHANGELOG.md index fdc9c71e1f..322f3ed7ec 100644 --- a/sn_node_manager/CHANGELOG.md +++ b/sn_node_manager/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.11](https://github.com/maidsafe/safe_network/compare/sn-node-manager-v0.3.10...sn-node-manager-v0.3.11) - 2024-02-23 + +### Added +- bump alpha versions via releas-plz bump_version script + +### Other +- cleanup version in node_manager after experimentation + ## [0.3.10](https://github.com/maidsafe/safe_network/compare/sn-node-manager-v0.3.9...sn-node-manager-v0.3.10) - 2024-02-21 ### Other diff --git a/sn_node_manager/Cargo.toml b/sn_node_manager/Cargo.toml index 472021985c..42e38767e7 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.3.10" +version = "0.3.11" [[bin]] name = "safenode-manager" @@ -41,9 +41,9 @@ semver = "1.0.20" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" service-manager = "0.6.0" -sn_node_rpc_client = { path = "../sn_node_rpc_client", version = "0.4.65" } +sn_node_rpc_client = { path = "../sn_node_rpc_client", version = "0.4.66" } sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.2.6" } -sn_protocol = { path = "../sn_protocol", version = "0.14.7", features = [ +sn_protocol = { path = "../sn_protocol", version = "0.14.8", features = [ "rpc", ] } sn-releases = "0.1.7" diff --git a/sn_node_rpc_client/CHANGELOG.md b/sn_node_rpc_client/CHANGELOG.md index d9377e8bca..45ccc46a45 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.66](https://github.com/maidsafe/safe_network/compare/sn_node_rpc_client-v0.4.65...sn_node_rpc_client-v0.4.66) - 2024-02-23 + +### Other +- update Cargo.lock dependencies + ## [0.4.65](https://github.com/maidsafe/safe_network/compare/sn_node_rpc_client-v0.4.64...sn_node_rpc_client-v0.4.65) - 2024-02-21 ### Other diff --git a/sn_node_rpc_client/Cargo.toml b/sn_node_rpc_client/Cargo.toml index 1d0e18a0b8..6c24e1ecab 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.65" +version = "0.4.66" [[bin]] path="src/main.rs" @@ -23,12 +23,12 @@ color-eyre = "0.6.2" hex = "~0.4.3" libp2p = { version="0.53", features = ["kad"]} libp2p-identity = { version="0.2.7", features = ["rand"] } -sn_client = { path = "../sn_client", version = "0.104.26" } +sn_client = { path = "../sn_client", version = "0.104.27" } sn_logging = { path = "../sn_logging", version = "0.2.21" } -sn_node = { path = "../sn_node", version = "0.104.34" } +sn_node = { path = "../sn_node", version = "0.104.35" } sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.2.6" } -sn_protocol = { path = "../sn_protocol", version = "0.14.7", features=["rpc"] } -sn_transfers = { path = "../sn_transfers", version = "0.15.8" } +sn_protocol = { path = "../sn_protocol", version = "0.14.8", features=["rpc"] } +sn_transfers = { path = "../sn_transfers", version = "0.16.0" } thiserror = "1.0.23" # # watch out updating this, protoc compiler needs to be installed on all build systems # # arm builds + musl are very problematic diff --git a/sn_protocol/CHANGELOG.md b/sn_protocol/CHANGELOG.md index 15c2696b40..ac60d24aed 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.14.8](https://github.com/maidsafe/safe_network/compare/sn_protocol-v0.14.7...sn_protocol-v0.14.8) - 2024-02-23 + +### Other +- updated the following local packages: sn_transfers + ## [0.14.7](https://github.com/maidsafe/safe_network/compare/sn_protocol-v0.14.6...sn_protocol-v0.14.7) - 2024-02-21 ### Other diff --git a/sn_protocol/Cargo.toml b/sn_protocol/Cargo.toml index c7625948d2..ad9aceafa9 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.14.7" +version = "0.14.8" [features] default = [] @@ -28,7 +28,7 @@ rmp-serde = "1.1.1" serde = { version = "1.0.133", features = [ "derive", "rc" ]} serde_json = "1.0" sha2 = "0.10.7" -sn_transfers = { path = "../sn_transfers", version = "0.15.9" } +sn_transfers = { path = "../sn_transfers", version = "0.16.0" } sn_registers = { path = "../sn_registers", version = "0.3.11" } thiserror = "1.0.23" tiny-keccak = { version = "~2.0.2", features = [ "sha3" ] } diff --git a/sn_transfers/CHANGELOG.md b/sn_transfers/CHANGELOG.md index 8676fb44a5..cf20a46123 100644 --- a/sn_transfers/CHANGELOG.md +++ b/sn_transfers/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.16.0](https://github.com/maidsafe/safe_network/compare/sn_transfers-v0.15.9...sn_transfers-v0.16.0) - 2024-02-23 + +### Added +- use the old serialisation as default, add some docs +- warn about old format when detected +- implement backwards compatible deserialisation +- [**breaking**] custom serde for unique keys + ## [0.15.8](https://github.com/maidsafe/safe_network/compare/sn_transfers-v0.15.7...sn_transfers-v0.15.8) - 2024-02-20 ### Added diff --git a/sn_transfers/Cargo.toml b/sn_transfers/Cargo.toml index 411582db76..4e010d159b 100644 --- a/sn_transfers/Cargo.toml +++ b/sn_transfers/Cargo.toml @@ -8,7 +8,7 @@ license = "GPL-3.0" name = "sn_transfers" readme = "README.md" repository = "https://github.com/maidsafe/safe_network" -version = "0.15.9" +version = "0.16.0" [dependencies] bls = { package = "blsttc", version = "8.0.1" } diff --git a/token_supplies/CHANGELOG.md b/token_supplies/CHANGELOG.md index c897c51913..2e5ae89ba0 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.43](https://github.com/maidsafe/safe_network/compare/token_supplies-v0.1.42...token_supplies-v0.1.43) - 2024-02-23 + +### Other +- update Cargo.lock dependencies + ## [0.1.41](https://github.com/maidsafe/safe_network/compare/token_supplies-v0.1.40...token_supplies-v0.1.41) - 2024-02-08 ### Other diff --git a/token_supplies/Cargo.toml b/token_supplies/Cargo.toml index 8300d859b8..635597006e 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.42" +version = "0.1.43" [dependencies]