Skip to content

v0.25.0

Compare
Choose a tag to compare
@MaidSafe-QA MaidSafe-QA released this 27 Oct 06:56
· 139 commits to main since this release

0.25.0 (2021-10-27)

⚠ BREAKING CHANGES

    • The ConnId trait has been removed.
  • 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 a priority argument. This can
    be set with SendStream::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.

Bug Fixes

  • drop an unused field from tests::quinn::Peer (7b0fa53)

  • fix incorrect log message (1a9261b)

  • remove connection pooling (fd19094)