forked from quinn-rs/quinn
-
Notifications
You must be signed in to change notification settings - Fork 4
chore: merge upstream #194
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
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Previously `quinn*` would provide the `log` feature to log events via `log` if no `tracing` subscriber exists. Later quinn-rs#1923 allowed `quinn-udp` to log via `log` directly, making `tracing` an optional dependency. For that, it introduced the `direct-log` feature, a workaround name in order to not introduce a breaking change. This commit cleans up the above, renaming the `log` feature to `tracing-log` and the `direct-log` to `log`. This is a breaking change and thus `quinn-udp` is bumped to `v0.6.0`. See quinn-rs#1921 for the full history.
…pSocket` in connections
…recv` take `&mut self`
Breaking.
Boxes AcceptError to avoid clippy::result_large_err, rather than suppressing it. Breaking change.
Mark `RecvMeta` as non exhaustive such that subsequent field additions are not breaking changes. Fixes quinn-rs#2378.
We have reports that on some MacOS 10.15 systems, recvmsg can return a non IPv4 or IPv4 `RecvMeta`, potentially due to uninitialized memory. Instead of panicking on an unknown address family, simply return an IO error. Fixes quinn-rs#2383.
Bumps [rcgen](https://github.com/rustls/rcgen) from 0.14.3 to 0.14.4. - [Release notes](https://github.com/rustls/rcgen/releases) - [Commits](rustls/rcgen@v0.14.3...v0.14.4) --- updated-dependencies: - dependency-name: rcgen dependency-version: 0.14.4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [serde](https://github.com/serde-rs/serde) from 1.0.219 to 1.0.223. - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](serde-rs/serde@v1.0.219...v1.0.223) --- updated-dependencies: - dependency-name: serde dependency-version: 1.0.223 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [async-io](https://github.com/smol-rs/async-io) from 2.5.0 to 2.6.0. - [Release notes](https://github.com/smol-rs/async-io/releases) - [Changelog](https://github.com/smol-rs/async-io/blob/master/CHANGELOG.md) - [Commits](smol-rs/async-io@v2.5.0...v2.6.0) --- updated-dependencies: - dependency-name: async-io dependency-version: 2.6.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [bytes](https://github.com/tokio-rs/bytes) from 1.10.1 to 1.11.0. - [Release notes](https://github.com/tokio-rs/bytes/releases) - [Changelog](https://github.com/tokio-rs/bytes/blob/master/CHANGELOG.md) - [Commits](tokio-rs/bytes@v1.10.1...v1.11.0) --- updated-dependencies: - dependency-name: bytes dependency-version: 1.11.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: Mateusz Szczygieł <mateusz.szczygiel@nordsec.com>
- There is no libc::IP_RECVTOST defined for DragonFly. We do support it in the kernel, but it's not yet defined in libc. - There is no recvmmsg(2) support in DragonFly kernel.
33ae3e6 to
e8b9fb3
Compare
matheus23
approved these changes
Dec 2, 2025
flub
approved these changes
Dec 2, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Updates up to quinn-rs@8bf6825