0.35.0
- Implement refactored
Transport. See PR 4568
0.34.2
Generate code for
libp2p-swarm'sFromSwarm::NewExternalAddrOfPeerenum variant. See PR 4371.Restore support for generic constraints on behaviours combined with
out_eventgenerated byNetworkBehaviourwhere no where clause is used. See PR 5003.
0.34.1
- Always forward all variants of
FromSwarm. See PR 4825.
0.34.0
- Adapt to interface changes in
libp2p-swarm. See PR 4706. - Remove supported for deprecated
#[behaviour(out_event = "...")]. To same functionality is available using#[behaviour(to_swarm = "...")]See PR 4737.
0.33.0
0.32.0
Fix
NetworkBehaviourDerive macro for generic types whenout_eventwas not provided. Previously the enum generated didn't have theNetworkBehaviourimpl constraints whilst using the generics for<Generic>::OutEvent. See PR 3393.Replace
NetworkBehaviourDerive macro deprecatedinject_*method implementations with the newon_swarm_eventandon_connection_handler_event. See PR 3011 and PR 3264.
0.31.0
Add
preludeconfiguration option. The derive-macro generates code that needs to refer to various symbols. See PR 3055.Update
rust-versionto reflect the actual MSRV: 1.60.0. See PR 3090.
0.30.1
- Fix an issue where the derive would generate bad code if the type parameters between the behaviour and a custom out event differed. See PR 2907.
- Fix an issue where the derive would generate incorrect code depending on available imports. See PR 2921.
0.30.0
Remove support for removed
NetworkBehaviourEventProcess. See PR 2840.Remove support for custom
pollmethod onNetworkBehaviourvia#[behaviour(poll_method = "poll")]. See PR 2841.
- Remove support for non-
NetworkBehaviourfields on mainstructvia#[behaviour(ignore)]. See PR 2842.
0.29.0
- Generate
NetworkBehaviour::OutEventif not provided through#[behaviour(out_event = "MyOutEvent")]and event processing is disabled (default).
0.28.0
- Import
ListenerIdfromlibp2p::core::transport. See PR 2652.
0.27.2
- Replace references of Protocol Handler with Connection Handler. See PR 2640.
0.27.1
- Allow mixing of ignored fields. See PR 2570.
0.27.0 [2022-02-22]
- Adjust to latest changes in
libp2p-swarm.
0.26.1 [2022-01-27]
Remove unnecessary clone of error in
inject_dial_failure(see PR 2349).Migrate to Rust edition 2021 (see PR 2339).
0.26.0 [2021-11-16]
- Adjust to advanced dialing requests API changes (see PR 2317).
0.25.0 [2021-11-01]
Update to latest
libp2p-swarmchanges (see PR 2191).Make
event_process = falsethe default.
0.24.0 [2021-07-12]
- Handle
NetworkBehaviourAction::CloseConnection. See PR 2110 for details.
0.23.0 [2021-04-14]
- Extend
NetworkBehaviourcallbacks, more concretely introducing newfn inject_new_listenerandfn inject_expired_external_addrand havefn inject_{new,expired}_listen_addrprovide aListenerIdPR 2011.
0.22.0 [2021-02-15]
- Rename the crate to
libp2p-swarm-derive.
0.21.0 [2020-11-25]
- Update for compatibility with
libp2p-swarm-0.25.
0.20.2 [2020-07-28]
- Generate fully-qualified method name for
pollto avoid ambiguity. PR 1681.
0.20.1 [2020-07-08]
- Allow users to opt out of the
NetworkBehaviourEventProcessmechanism through#[behaviour(event_process = false)]. This is useful if users want to process all events while polling the swarm throughSwarmEvent::Behaviour.