Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 1, 2025

Bumps the libp2p group in /rust-peer with 2 updates: libp2p and libp2p-webrtc.

Updates libp2p from 0.55.0 to 0.56.0

Commits
  • 70082df chore(libp2p): don't re-export libp2p-peer-store
  • 7b9a558 fix: propagate swarm bump through all protocols
  • c9bd92b chore(webrtc): bump crate version, fix changelog
  • d92dabc fix(relay): expose Deny reason for circuits and reservations
  • f4e5a8d chore(kad): rename substreams_timeout
  • d996465 deps: bump Swatinem/rust-cache from 2.7.8 to 2.8.0
  • fb01fd4 chore: remove async-std leftovers
  • cf4f1a1 feat(swarm, libp2p): remove async-std
  • 1a3816a fix(identity): drop rand_core feature in ed25519-dalek
  • d578e08 chore(relay): use tokio on the tests instead of async-std
  • Additional commits viewable in compare view

Updates libp2p-webrtc from 0.9.0-alpha to 0.9.0-alpha.1

Release notes

Sourced from libp2p-webrtc's releases.

libp2p-v0.56.0

See individual changelogs for details.

Notably, we've removed support for async-std in all crates, as async-std has been discontinued. Users should switch to using tokio instead. For now, we've kept the abstractions for supporting alternative runtimes, although not all parts may be public. Please open an issue if you are planning to support a custom runtime and run into any issues with that..

Thanks to everyone who contributed to the release!

libp2p-v0.55.0

See individual changelogs for details.

Thanks everyone who contributed to it! ❤️

libp2p-v0.54.0

See individual changelogs for details.

Thanks everyone who contributed to it! ❤️

libp2p-v0.53.2

See individual changelogs for details.

libp2p-v0.53.1

See individual changelogs for details.

libp2p-v0.53.0

The most ergonomic version of rust-libp2p yet!

We've been busy again, with over 250 PRs being merged into master since v0.52.0 (excluding dependency updates).

Backwards-compatible features

Numerous improvements landed as patch releases since the v0.52.0 release, for example a new, type-safe SwarmBuilder that also encompasses the most common transport protocols:

let mut swarm = libp2p::SwarmBuilder::with_new_identity()
    .with_tokio()
    .with_tcp(
        tcp::Config::default().port_reuse(true).nodelay(true),
        noise::Config::new,
        yamux::Config::default,
    )?
    .with_quic()
    .with_dns()?
    .with_relay_client(noise::Config::new, yamux::Config::default)?
    .with_behaviour(|keypair, relay_client| Behaviour {
        relay_client,
        ping: ping::Behaviour::default(),
        dcutr: dcutr::Behaviour::new(keypair.public().to_peer_id()),
    })?
    .build();
</tr></table> 

... (truncated)

Commits
  • c9bd92b chore(webrtc): bump crate version, fix changelog
  • d92dabc fix(relay): expose Deny reason for circuits and reservations
  • f4e5a8d chore(kad): rename substreams_timeout
  • d996465 deps: bump Swatinem/rust-cache from 2.7.8 to 2.8.0
  • fb01fd4 chore: remove async-std leftovers
  • cf4f1a1 feat(swarm, libp2p): remove async-std
  • 1a3816a fix(identity): drop rand_core feature in ed25519-dalek
  • d578e08 chore(relay): use tokio on the tests instead of async-std
  • a53c85f feat(libp2p/tcp): remove async_std from uds
  • ef24b6f chore(kad): deprecate async-std for tokio on the tests
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Sep 1, 2025
@dependabot dependabot bot requested a review from a team as a code owner September 1, 2025 06:32
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Sep 1, 2025
@dependabot dependabot bot force-pushed the dependabot/cargo/rust-peer/libp2p-c99166b204 branch from 21253e8 to 6868b92 Compare September 15, 2025 03:19
Bumps the libp2p group in /rust-peer with 2 updates: [libp2p](https://github.com/libp2p/rust-libp2p) and [libp2p-webrtc](https://github.com/libp2p/rust-libp2p).


Updates `libp2p` from 0.55.0 to 0.56.0
- [Release notes](https://github.com/libp2p/rust-libp2p/releases)
- [Changelog](https://github.com/libp2p/rust-libp2p/blob/master/CHANGELOG.md)
- [Commits](libp2p/rust-libp2p@libp2p-v0.55.0...libp2p-v0.56.0)

Updates `libp2p-webrtc` from 0.9.0-alpha to 0.9.0-alpha.1
- [Release notes](https://github.com/libp2p/rust-libp2p/releases)
- [Changelog](https://github.com/libp2p/rust-libp2p/blob/master/CHANGELOG.md)
- [Commits](libp2p/rust-libp2p@libp2p-webrtc-v0.9.0-alpha...libp2p-webrtc-v0.9.0-alpha.1)

---
updated-dependencies:
- dependency-name: libp2p
  dependency-version: 0.56.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: libp2p
- dependency-name: libp2p-webrtc
  dependency-version: 0.9.0-alpha.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: libp2p
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/cargo/rust-peer/libp2p-c99166b204 branch from 6868b92 to 94339d0 Compare October 6, 2025 03:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants