- Migrate from
prost
toquick-protobuf
. This removesprotoc
dependency. See PR 3312.
-
Rename types as per discussion 2174.
Relay
has been renamed toBehaviour
. TheRelay
, andClient
prefixes have been removed from various types likeClientTransport
. thev2
namespace has also been removed, users should prefer importing the relay protocol as a module (use libp2p::relay;
), and refer to its types viarelay::
. For example:relay::Behaviour
orrelay::client::Behaviour
. See PR 3238. -
Update to
libp2p-core
v0.39.0
. -
Update to
libp2p-swarm
v0.42.0
.
-
Update to
prost-codec
v0.3.0
. -
Update to
libp2p-core
v0.38.0
. -
Update to
libp2p-swarm
v0.41.0
. -
Replace
Client
andRelay
'sNetworkBehaviour
implementioninject_*
methods with the newon_*
methods. See PR 3011. -
Replace
client::Handler
andrelay::Handler
'sConnectionHandler
implementioninject_*
methods with the newon_*
methods. See PR 3085. -
Update
rust-version
to reflect the actual MSRV: 1.62.0. See PR 3090.
-
Update to
libp2p-core
v0.37.0
. -
Update to
libp2p-swarm
v0.40.0
. -
Fix WASM compilation. See PR 2991.
-
Update to
libp2p-swarm
v0.39.0
. -
Update to
libp2p-core
v0.36.0
.
-
Update prost requirement from 0.10 to 0.11 which no longer installs the protoc Protobuf compiler. Thus you will need protoc installed locally. See PR 2788.
-
Update to
libp2p-swarm
v0.38.0
. -
Expose
HOP_PROTOCOL_NAME
andSTOP_PROTOCOL_NAME
. See PR 2734. -
Update to
libp2p-core
v0.35.0
.
-
Update to
libp2p-core
v0.34.0
. -
Update to
libp2p-swarm
v0.37.0
. -
Do not duplicate the p2p/xxx component with the relay PeerId when a client requests a reservation. See PR 2701.
-
Drive the
RelayListener
s within theClientTransport
. AddTransport::poll
andTransport::remove_listener
forClientTransport
. See PR 2652.
-
Respond to at most one incoming reservation request. Deny <= 8 incoming circuit requests with one per peer. And deny new circuits before accepting new circuits. See PR 2698.
-
Expose explicits errors via
UpgradeError
instead of genericio::Error
. See PR 2698.
-
Update to
libp2p-core
v0.33.0
. -
Update to
libp2p-swarm
v0.36.0
.
-
Expose
{Inbound,Outbound}{Hop,Stop}UpgradeError
. See PR 2586. -
Update to
libp2p-swarm
v0.35.0
. -
Remove support for Circuit Relay v1 protocol. See PR 2549.
-
Update to
libp2p-core
v0.32.0
. -
Update to
libp2p-swarm
v0.34.0
. -
Merge NetworkBehaviour's inject_* paired methods (see PR 2445).
- Remove empty peer entries in
reservations
HashMap
. See PR 2464.
-
Update dependencies.
-
Migrate to Rust edition 2021 (see PR 2339).
-
Use
instant
instead ofwasm-timer
(see PR 2245). -
Update dependencies.
-
Make default features of
libp2p-core
optional. PR 2181 -
Update dependencies.
-
Implement
Debug
forRelayHandlerEvent
andRelayHandlerIn
. See PR 2183.
- Update dependencies.
- Update
libp2p-swarm
.
- First release supporting all major features of the circuit relay v1 specification. PR 1838.