Skip to content

Commit

Permalink
Merge branch 'pick_PR2088_stable'
Browse files Browse the repository at this point in the history
  • Loading branch information
jacderida committed Oct 9, 2024
2 parents c1a3b22 + 89760a2 commit d666619
Show file tree
Hide file tree
Showing 9 changed files with 40 additions and 20 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

*When editing this file, please respect a line length of 100.*

## 2024-10-08

### Network

#### Changed

- Optimize auditor tracking by not to re-attempt fetched spend.
- Optimize auditor tracking function by using DashMap and stream.

## 2024-10-07

### Network
Expand Down
33 changes: 22 additions & 11 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion release-cycle-info
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
release-year: 2024
release-month: 10
release-cycle: 2
release-cycle-counter: 2
release-cycle-counter: 3
4 changes: 2 additions & 2 deletions sn_auditor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["MaidSafe Developers <[email protected]>"]
description = "Safe Network Auditor"
name = "sn_auditor"
version = "0.3.4"
version = "0.3.5"
edition = "2021"
homepage = "https://maidsafe.net"
repository = "https://github.com/maidsafe/safe_network"
Expand Down Expand Up @@ -33,7 +33,7 @@ lazy_static = "1.4.0"
serde = { version = "1.0.133", features = ["derive", "rc"] }
serde_json = "1.0.108"
sn_build_info = { path = "../sn_build_info", version = "0.1.15" }
sn_client = { path = "../sn_client", version = "0.110.3" }
sn_client = { path = "../sn_client", version = "0.110.4" }
sn_logging = { path = "../sn_logging", version = "0.2.36" }
sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.5.3" }
sn_protocol = { path = "../sn_protocol", version = "0.17.11" }
Expand Down
4 changes: 2 additions & 2 deletions sn_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ rmp-serde = "1.1.1"
rpassword = "7.3.1"
serde = { version = "1.0.133", features = ["derive"] }
sn_build_info = { path = "../sn_build_info", version = "0.1.15" }
sn_client = { path = "../sn_client", version = "0.110.3" }
sn_client = { path = "../sn_client", version = "0.110.4" }
sn_logging = { path = "../sn_logging", version = "0.2.36" }
sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.5.3" }
sn_protocol = { path = "../sn_protocol", version = "0.17.11" }
Expand All @@ -81,7 +81,7 @@ eyre = "0.6.8"
criterion = "0.5.1"
tempfile = "3.6.0"
rand = { version = "~0.8.5", features = ["small_rng"] }
sn_client = { path = "../sn_client", version = "0.110.3", features = [
sn_client = { path = "../sn_client", version = "0.110.4", features = [
"test-utils",
] }

Expand Down
2 changes: 1 addition & 1 deletion sn_client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "GPL-3.0"
name = "sn_client"
readme = "README.md"
repository = "https://github.com/maidsafe/safe_network"
version = "0.110.3"
version = "0.110.4"

[features]
default = []
Expand Down
2 changes: 1 addition & 1 deletion sn_faucet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
sn_build_info = { path = "../sn_build_info", version = "0.1.15" }
sn_cli = { path = "../sn_cli", version = "0.95.3" }
sn_client = { path = "../sn_client", version = "0.110.3" }
sn_client = { path = "../sn_client", version = "0.110.4" }
sn_logging = { path = "../sn_logging", version = "0.2.36" }
sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.5.3" }
sn_protocol = { path = "../sn_protocol", version = "0.17.11" }
Expand Down
2 changes: 1 addition & 1 deletion sn_node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ reqwest = { version = "0.12.2", default-features = false, features = [
"rustls-tls-manual-roots",
] }
serde_json = "1.0"
sn_client = { path = "../sn_client", version = "0.110.3" }
sn_client = { path = "../sn_client", version = "0.110.4" }
sn_protocol = { path = "../sn_protocol", version = "0.17.11", features = [
"rpc",
] }
Expand Down
2 changes: 1 addition & 1 deletion sn_node_rpc_client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ hex = "~0.4.3"
libp2p = { version = "0.54.1", features = ["kad"]}
libp2p-identity = { version="0.2.7", features = ["rand"] }
sn_build_info = { path = "../sn_build_info", version = "0.1.15" }
sn_client = { path = "../sn_client", version = "0.110.3" }
sn_client = { path = "../sn_client", version = "0.110.4" }
sn_logging = { path = "../sn_logging", version = "0.2.36" }
sn_node = { path = "../sn_node", version = "0.111.4" }
sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.5.3" }
Expand Down

0 comments on commit d666619

Please sign in to comment.