Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update rust crate bevy_matchbox to 0.11.0 #107

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 22, 2024

This PR contains the following updates:

Package Type Update Change
bevy_matchbox dependencies minor 0.10.0 -> 0.11.0

Release Notes

johanhelsing/matchbox (bevy_matchbox)

v0.11.0

Compare Source

What's Changed

BREAKING CHANGES

We dropped the typestate pattern on WebRtcSocket. This means no more WebRtcSocket<SingleChannel> or WebRtcSocket<MultiChannel> There is simply WebRtcSocket. And the same goes for bevy_matchbox' MatchboxSocket.

A single channel socket is now just a socket with one channel.

Code that previously used WebRtcSocket<SingleChannel> now just needs to use the channel accessor to get to the channel:

v0.10

socket.send(message, peer);

v0.11

socket.channel_mut(0).send(message, peer);

We've also removed the ggrs convenience constructors. Users are now expected to know that they need an unreliable channel for GGRS to work optimally. The ggrs socket implementation is now removed from the socket itself and only implemented by the channels. See the example for how to use matchbox with GGRS.

Features
Other fixes

New Contributors

Full Changelog: johanhelsing/matchbox@v0.10.0...v0.11.0


Configuration

📅 Schedule: Branch creation - "* 0-3 * * 1" in timezone Asia/Tokyo, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot enabled auto-merge (squash) December 22, 2024 17:09
@renovate renovate bot force-pushed the renovate/bevy_matchbox-0.x branch 2 times, most recently from 26c4f92 to 4aaecaa Compare December 29, 2024 18:11
@renovate renovate bot force-pushed the renovate/bevy_matchbox-0.x branch from 4aaecaa to 66c7d08 Compare January 5, 2025 18:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants