Releases: maidsafe/qp2p
Releases · maidsafe/qp2p
v0.27.4
v0.27.3
v0.27.2
v0.27.1
v0.27.0
0.27.0 (2021-10-28)
⚠ BREAKING CHANGES
- The
qp2p::config::DEFAULT_KEEP_ALIVE_INTERVAL
constant has been removed, and the default value for
keep_alive_interval
set forConfig::default()
is nowNone
, meaning
keep-alives are disabled by default.
Features
- add
Connection::id
to get a stable ID for a connection (a86e558)
Bug Fixes
v0.26.1
v0.26.0
v0.25.0
0.25.0 (2021-10-27)
⚠ BREAKING CHANGES
-
- The
ConnId
trait has been removed.
- The
Endpoint
,IncomingConnections
,Connection
, and
ConnectionIncoming
no longer have a generic type parameter.Endpoint::disconnect_from
,Endpoint::get_connection_by_addr
, and
Endpoint::get_connection_by_id
have been removed.Connection::id
has been removed.Endpoint::new
,Endpoint::connect_to
, and
Endpoint::connect_to_any
now return
(Connection, ConnectionIncoming)
, rather than(Connection, Option<ConnectionIncoming>)
.Connection::open_bi
no longer takes apriority
argument. This can
be set withSendStream::set_priority
instead.- Semantically, all calls to
Endpoint::connect_to
and
Endpoint::connect_to_any
will establish and return new connections.
There is no connection reuse.