Skip to content

Commit ab70ac5

Browse files
committed
release preparation 0.11.7
1 parent 279c73b commit ab70ac5

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## Diamond Node Software 3.3.5-hbbft-0.11.7
2+
- [Handshake and Session Management improvements](https://github.com/DMDcoin/diamond-node/issues/262)
3+
- [Reliable Message Broadcast Protocol: message_cache of SyncProtocolHandler does not get cleaned up](https://github.com/DMDcoin/diamond-node/issues/261)
4+
- reduced log outputs for RMBP cached messages
5+
- Fix possible deadlock in deregister_session_stream in combination with session_readable
6+
- reduce timings for shutdown from 90 seconds to 5 seconds, so auto restart of nodes in deadlock cases is faster
7+
18
## Diamond Node Software 3.3.5-hbbft-0.11.6
29
- [session double kill problem.](https://github.com/DMDcoin/diamond-node/issues/252)
310
- [Network Host logic: peer_id to NodeID consistency](https://github.com/DMDcoin/diamond-node/issues/251)

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
description = "Diamond Node"
33
name = "diamond-node"
44
# NOTE Make sure to update util/version/Cargo.toml as well
5-
version = "3.3.5-hbbft-0.11.6"
5+
version = "3.3.5-hbbft-0.11.7"
66
license = "GPL-3.0"
77
authors = [
88
"bit.diamonds developers",

crates/net/network-devp2p/src/session_container.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ fn socket_address_to_string(socket: &TcpStream) -> String {
2020
/// It has high performance lookup capabilities for NodeIDs by using a hashmap, instead of linear locking iteration of sessions.
2121
pub struct SessionContainer {
2222
max_sessions: usize,
23-
max_handshakes: usize, // New field to limit concurrent handshakes
23+
max_handshakes: usize,
2424
first_handshake: usize,
2525
last_handshake: usize,
2626
// the handshake cursor is a improvement to find new available handshake slots. it defines the next starting search position.

crates/util/version/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "parity-version"
33
# NOTE: this value is used for OpenEthereum version string (via env CARGO_PKG_VERSION)
4-
version = "3.3.5-hbbft-0.11.6"
4+
version = "3.3.5-hbbft-0.11.7"
55
authors = [
66
"bit.diamonds developers",
77
"OpenEthereum developers",

0 commit comments

Comments
 (0)