Skip to content

Commit

Permalink
Merge branch 'hotfix-2024.09.1.4' into stable
Browse files Browse the repository at this point in the history
  • Loading branch information
jacderida committed Sep 12, 2024
2 parents 08b0a49 + 7d1ab72 commit fd345e6
Show file tree
Hide file tree
Showing 9 changed files with 54 additions and 49 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-09-12

### Network

#### Changed

- The circuit-bytes limit is increased. This enables `libp2p-relay` to forward large records, such
as `ChunkWithPayment`, enabling home nodes to be notified that they have been paid.

## 2024-09-09

### Network
Expand Down
76 changes: 35 additions & 41 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions nat-detection/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "GPL-3.0"
name = "nat-detection"
readme = "README.md"
repository = "https://github.com/maidsafe/safe_network"
version = "0.2.3"
version = "0.2.4"

[[bin]]
name = "nat-detection"
Expand All @@ -28,7 +28,7 @@ libp2p = { version = "0.53", features = [
"macros",
"upnp",
] }
sn_networking = { path = "../sn_networking", version = "0.18.0" }
sn_networking = { path = "../sn_networking", version = "0.18.1" }
tokio = { version = "1.32.0", features = ["full"] }
tracing = { version = "~0.1.26" }
tracing-log = "0.2.0"
Expand Down
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: 09
release-cycle: 1
release-cycle-counter: 3
release-cycle-counter: 4
2 changes: 1 addition & 1 deletion sn_client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,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.18.0" }
sn_networking = { path = "../sn_networking", version = "0.18.1" }
sn_protocol = { path = "../sn_protocol", version = "0.17.8" }
sn_registers = { path = "../sn_registers", version = "0.3.18" }
sn_transfers = { path = "../sn_transfers", version = "0.19.0" }
Expand Down
2 changes: 1 addition & 1 deletion sn_networking/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "GPL-3.0"
name = "sn_networking"
readme = "README.md"
repository = "https://github.com/maidsafe/safe_network"
version = "0.18.0"
version = "0.18.1"

[features]
default = []
Expand Down
2 changes: 2 additions & 0 deletions sn_networking/src/driver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -599,6 +599,8 @@ impl NetworkBuilder {
max_circuits: 1024, // The total amount of relayed connections at any given moment.
max_circuits_per_peer: 256, // Amount of relayed connections per peer (both dst and src)
circuit_src_rate_limiters: vec![], // No extra rate limiting for now
// We should at least be able to relay packets with chunks etc.
max_circuit_bytes: MAX_PACKET_SIZE as u64,
..Default::default()
};
libp2p::relay::Behaviour::new(peer_id, relay_server_cfg)
Expand Down
4 changes: 2 additions & 2 deletions sn_node/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 Node"
name = "sn_node"
version = "0.111.0"
version = "0.111.1"
edition = "2021"
license = "GPL-3.0"
homepage = "https://maidsafe.net"
Expand Down Expand Up @@ -53,7 +53,7 @@ serde = { version = "1.0.133", features = ["derive", "rc"] }
sn_build_info = { path = "../sn_build_info", version = "0.1.12" }
sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.5.0" }
sn_logging = { path = "../sn_logging", version = "0.2.33" }
sn_networking = { path = "../sn_networking", version = "0.18.0" }
sn_networking = { path = "../sn_networking", version = "0.18.1" }
sn_protocol = { path = "../sn_protocol", version = "0.17.8" }
sn_registers = { path = "../sn_registers", version = "0.3.18" }
sn_transfers = { path = "../sn_transfers", version = "0.19.0" }
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 @@ -25,7 +25,7 @@ libp2p = { version="0.53", features = ["kad"]}
libp2p-identity = { version="0.2.7", features = ["rand"] }
sn_client = { path = "../sn_client", version = "0.110.0" }
sn_logging = { path = "../sn_logging", version = "0.2.33" }
sn_node = { path = "../sn_node", version = "0.111.0" }
sn_node = { path = "../sn_node", version = "0.111.1" }
sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.5.0" }
sn_protocol = { path = "../sn_protocol", version = "0.17.8", features=["rpc"] }
sn_service_management = { path = "../sn_service_management", version = "0.3.11" }
Expand Down

0 comments on commit fd345e6

Please sign in to comment.