From 0e3c298b57d9a989eb0ba635ddfe34c22463f2d8 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 5 Dec 2023 13:49:27 +0000 Subject: [PATCH] chore(release): sn_cli-v0.86.40/sn_transfers-v0.14.25/sn_faucet-v0.1.62/sn_client-v0.99.4/sn_networking-v0.11.3/sn_protocol-v0.8.36 --- Cargo.lock | 12 ++++++------ sn_cli/CHANGELOG.md | 5 +++++ sn_cli/Cargo.toml | 10 +++++----- sn_client/CHANGELOG.md | 5 +++++ sn_client/Cargo.toml | 8 ++++---- sn_faucet/CHANGELOG.md | 5 +++++ sn_faucet/Cargo.toml | 6 +++--- sn_networking/CHANGELOG.md | 5 +++++ sn_networking/Cargo.toml | 6 +++--- sn_node/Cargo.toml | 10 +++++----- sn_node_rpc_client/Cargo.toml | 6 +++--- sn_protocol/CHANGELOG.md | 5 +++++ sn_protocol/Cargo.toml | 4 ++-- sn_transfers/CHANGELOG.md | 5 +++++ sn_transfers/Cargo.toml | 2 +- 15 files changed, 62 insertions(+), 32 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0964ced66b..99fc37484a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4489,7 +4489,7 @@ dependencies = [ [[package]] name = "sn_cli" -version = "0.86.39" +version = "0.86.40" dependencies = [ "blsttc", "bytes", @@ -4524,7 +4524,7 @@ dependencies = [ [[package]] name = "sn_client" -version = "0.99.3" +version = "0.99.4" dependencies = [ "async-trait", "blsttc", @@ -4557,7 +4557,7 @@ dependencies = [ [[package]] name = "sn_faucet" -version = "0.1.61" +version = "0.1.62" dependencies = [ "blsttc", "clap 4.4.10", @@ -4598,7 +4598,7 @@ dependencies = [ [[package]] name = "sn_networking" -version = "0.11.2" +version = "0.11.3" dependencies = [ "async-trait", "blsttc", @@ -4720,7 +4720,7 @@ dependencies = [ [[package]] name = "sn_protocol" -version = "0.8.35" +version = "0.8.36" dependencies = [ "blsttc", "bytes", @@ -4788,7 +4788,7 @@ dependencies = [ [[package]] name = "sn_transfers" -version = "0.14.24" +version = "0.14.25" dependencies = [ "assert_fs", "blsttc", diff --git a/sn_cli/CHANGELOG.md b/sn_cli/CHANGELOG.md index 40e36498a0..a16b3cea5b 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.86.40](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.86.39...sn_cli-v0.86.40) - 2023-12-05 + +### Other +- update dependencies + ## [0.86.39](https://github.com/maidsafe/safe_network/compare/sn_cli-v0.86.38...sn_cli-v0.86.39) - 2023-12-05 ### Other diff --git a/sn_cli/Cargo.toml b/sn_cli/Cargo.toml index 8ad41084ae..a313fa8841 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.86.39" +version = "0.86.40" [[bin]] path="src/main.rs" @@ -40,11 +40,11 @@ rayon = "1.8.0" reqwest = { version="0.11.18", default-features=false, features = ["rustls"] } rmp-serde = "1.1.1" sn_build_info = { path="../sn_build_info", version = "0.1.2" } -sn_client = { path = "../sn_client", version = "0.99.3" } -sn_transfers = { path = "../sn_transfers", version = "0.14.24" } +sn_client = { path = "../sn_client", version = "0.99.4" } +sn_transfers = { path = "../sn_transfers", version = "0.14.25" } sn_logging = { path = "../sn_logging", version = "0.2.15" } sn_peers_acquisition= { path="../sn_peers_acquisition", version = "0.1.11" } -sn_protocol = { path = "../sn_protocol", version = "0.8.35" } +sn_protocol = { path = "../sn_protocol", version = "0.8.36" } tempfile = "3.6.0" tokio = { version = "1.32.0", features = ["io-util", "macros", "parking_lot", "rt", "sync", "time", "fs"] } tracing = { version = "~0.1.26" } @@ -58,4 +58,4 @@ 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.8.35", features = ["test-utils"]} +sn_protocol = { path = "../sn_protocol", version = "0.8.36", features = ["test-utils"]} diff --git a/sn_client/CHANGELOG.md b/sn_client/CHANGELOG.md index 8ef50eaec2..65c8db5264 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.99.4](https://github.com/maidsafe/safe_network/compare/sn_client-v0.99.3...sn_client-v0.99.4) - 2023-12-05 + +### Other +- updated the following local packages: sn_transfers + ## [0.99.3](https://github.com/maidsafe/safe_network/compare/sn_client-v0.99.2...sn_client-v0.99.3) - 2023-12-05 ### Other diff --git a/sn_client/Cargo.toml b/sn_client/Cargo.toml index 7eaa9eab3b..89fe9e71fc 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.99.3" +version = "0.99.4" [features] default=[] @@ -33,10 +33,10 @@ rayon = "1.8.0" rmp-serde = "1.1.1" self_encryption = "~0.28.5" serde = { version = "1.0.133", features = [ "derive", "rc" ]} -sn_networking = { path = "../sn_networking", version = "0.11.2" } -sn_protocol = { path = "../sn_protocol", version = "0.8.35" } +sn_networking = { path = "../sn_networking", version = "0.11.3" } +sn_protocol = { path = "../sn_protocol", version = "0.8.36" } sn_registers = { path = "../sn_registers", version = "0.3.4" } -sn_transfers = { path = "../sn_transfers", version = "0.14.24" } +sn_transfers = { path = "../sn_transfers", version = "0.14.25" } 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 e25800da0f..b9cbd93a7a 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.1.62](https://github.com/maidsafe/safe_network/compare/sn_faucet-v0.1.61...sn_faucet-v0.1.62) - 2023-12-05 + +### Other +- update dependencies + ## [0.1.61](https://github.com/maidsafe/safe_network/compare/sn_faucet-v0.1.60...sn_faucet-v0.1.61) - 2023-12-05 ### Other diff --git a/sn_faucet/Cargo.toml b/sn_faucet/Cargo.toml index 5b5cbcb6da..fd6a7024b1 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.1.61" +version = "0.1.62" [features] # required to pass on flag to node builds @@ -23,10 +23,10 @@ bls = { package = "blsttc", version = "8.0.1" } clap = { version = "4.2.1", features = ["derive"] } color-eyre = "0.6.2" dirs-next = "~2.0.0" -sn_client = { path = "../sn_client", version = "0.99.3" } +sn_client = { path = "../sn_client", version = "0.99.4" } sn_logging = { path = "../sn_logging", version = "0.2.15" } sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.1.11" } -sn_transfers = { path = "../sn_transfers", version = "0.14.24" } +sn_transfers = { path = "../sn_transfers", version = "0.14.25" } 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 136d3d27f7..39237bc31d 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.11.3](https://github.com/maidsafe/safe_network/compare/sn_networking-v0.11.2...sn_networking-v0.11.3) - 2023-12-05 + +### Other +- updated the following local packages: sn_transfers + ## [0.11.2](https://github.com/maidsafe/safe_network/compare/sn_networking-v0.11.1...sn_networking-v0.11.2) - 2023-12-05 ### Added diff --git a/sn_networking/Cargo.toml b/sn_networking/Cargo.toml index 2ec124d4ff..0c0bf9150d 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.11.2" +version = "0.11.3" [features] default=[] @@ -29,8 +29,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.8.35" } -sn_transfers = { path = "../sn_transfers", version = "0.14.24" } +sn_protocol = { path = "../sn_protocol", version = "0.8.36" } +sn_transfers = { path = "../sn_transfers", version = "0.14.25" } sysinfo = { version = "0.29.0", default-features = false, optional = true } thiserror = "1.0.23" tiny-keccak = { version = "~2.0.2", features = [ "sha3" ] } diff --git a/sn_node/Cargo.toml b/sn_node/Cargo.toml index 2a55325a6b..b10ae06a4d 100644 --- a/sn_node/Cargo.toml +++ b/sn_node/Cargo.toml @@ -51,12 +51,12 @@ 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.11" } -sn_client = { path = "../sn_client", version = "0.99.3" } +sn_client = { path = "../sn_client", version = "0.99.4" } sn_logging = { path = "../sn_logging", version = "0.2.15" } -sn_networking = { path = "../sn_networking", version = "0.11.2" } -sn_protocol = { path = "../sn_protocol", version = "0.8.35" } +sn_networking = { path = "../sn_networking", version = "0.11.3" } +sn_protocol = { path = "../sn_protocol", version = "0.8.36" } sn_registers = { path = "../sn_registers", version = "0.3.4" } -sn_transfers = { path = "../sn_transfers", version = "0.14.24" } +sn_transfers = { path = "../sn_transfers", version = "0.14.25" } thiserror = "1.0.23" tokio = { version = "1.32.0", features = ["io-util", "macros", "parking_lot", "rt", "sync", "time"] } tokio-stream = { version = "~0.1.12" } @@ -73,4 +73,4 @@ 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.8.35", features = ["test-utils"]} +sn_protocol = { path = "../sn_protocol", version = "0.8.36", features = ["test-utils"]} diff --git a/sn_node_rpc_client/Cargo.toml b/sn_node_rpc_client/Cargo.toml index 7876338053..863e035ce4 100644 --- a/sn_node_rpc_client/Cargo.toml +++ b/sn_node_rpc_client/Cargo.toml @@ -23,12 +23,12 @@ 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.99.3" } +sn_client = { path = "../sn_client", version = "0.99.4" } sn_logging = { path = "../sn_logging", version = "0.2.15" } sn_node = { path = "../sn_node", version = "0.99.5" } sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.1.11" } -sn_protocol = { path = "../sn_protocol", version = "0.8.35" } -sn_transfers = { path = "../sn_transfers", version = "0.14.24" } +sn_protocol = { path = "../sn_protocol", version = "0.8.36" } +sn_transfers = { path = "../sn_transfers", version = "0.14.25" } 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 a4d4cc1d90..2ee719a10f 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.36](https://github.com/maidsafe/safe_network/compare/sn_protocol-v0.8.35...sn_protocol-v0.8.36) - 2023-12-05 + +### Other +- updated the following local packages: sn_transfers + ## [0.8.35](https://github.com/maidsafe/safe_network/compare/sn_protocol-v0.8.34...sn_protocol-v0.8.35) - 2023-12-05 ### Other diff --git a/sn_protocol/Cargo.toml b/sn_protocol/Cargo.toml index 0508336cf6..686ecc31f5 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.35" +version = "0.8.36" [features] test-utils=["dirs-next", "serde_json"] @@ -25,7 +25,7 @@ rmp-serde = "1.1.1" serde = { version = "1.0.133", features = [ "derive", "rc" ]} serde_json = {version = "1.0", optional = true } sha2 = "0.10.7" -sn_transfers = { path = "../sn_transfers", version = "0.14.24" } +sn_transfers = { path = "../sn_transfers", version = "0.14.25" } sn_registers = { path = "../sn_registers", version = "0.3.4" } thiserror = "1.0.23" tracing = { version = "~0.1.26" } diff --git a/sn_transfers/CHANGELOG.md b/sn_transfers/CHANGELOG.md index cc343c276f..57544f6fec 100644 --- a/sn_transfers/CHANGELOG.md +++ b/sn_transfers/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.14.25](https://github.com/maidsafe/safe_network/compare/sn_transfers-v0.14.24...sn_transfers-v0.14.25) - 2023-12-05 + +### Fixed +- protect against amounts tampering and incomplete spends attack + ## [0.14.24](https://github.com/maidsafe/safe_network/compare/sn_transfers-v0.14.23...sn_transfers-v0.14.24) - 2023-12-05 ### Other diff --git a/sn_transfers/Cargo.toml b/sn_transfers/Cargo.toml index e05657477b..a8e87cfc14 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.14.24" +version = "0.14.25" [dependencies] bls = { package = "blsttc", version = "8.0.1" }