Skip to content

chore(deps): bump noq-udp from 1.0.1 to 1.1.0#188

Merged
flub merged 1 commit into
mainfrom
dependabot/cargo/noq-udp-1.1.0
Jul 24, 2026
Merged

chore(deps): bump noq-udp from 1.0.1 to 1.1.0#188
flub merged 1 commit into
mainfrom
dependabot/cargo/noq-udp-1.1.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 23, 2026

Copy link
Copy Markdown
Contributor

Bumps noq-udp from 1.0.1 to 1.1.0.

Release notes

Sourced from noq-udp's releases.

v1.1.0

1.1.0 - 2026-07-20

⛰️ Features

  • (noq) Introduce noq::Connection::authenticated - (3e926fa)
  • (proto) Allow ProtectedHeader::decode to use a generic reference - (8f80192)
  • (proto) Use path idle timeout for validation when opening a new path (#721) - (b570682)
  • (proto) Make Connection::poll_timeout immutable - (a17cb24)
  • (udp) Implement kernel receive timestamps on Linux/Android - (b454d17)

🐛 Bug Fixes

  • (noq) Handle overdue timers without polling the async timer - (f165c03)
  • (proto) Congestion: avoid double-reducing CUBIC fast convergence - (4cfbafa)
  • (proto) Congestion: preserve excess CUBIC cwnd increment - (6039c93)
  • (proto) Set loss detection timer on path validation failure - (f847bb0)
  • (proto) Avoid double-emitting Draining event, causing an active_connections underflow (#748) - (883ca63)
  • (proto) Fix coalescing loop to avoid coalescing in Initial space (#747) - (0a445dd)
  • (proto) Reject DATAGRAMs larger than the send buffer - (1e8a5a9)
  • (proto) Use binary search in ArrayRangeSet - (ba90d78)
  • (proto) Drop Initials silently when saturated - (f2968cf)
  • (readme) Use correct crates.io badge link in README.md (#756) - (ab91554)
  • (udp) Log sendmsg errors on debug (#759) - (603c5e6)
  • (proto) Deprecate UdpStats::ios as io-operations can't be measured from this crate (#725) - (d6e525d41)
  • Patches for Redox targets - (5c05d21)

🚜 Refactor

  • (noq) Use let-else in drive_timer - (ef3fce8)
  • (proto) Make state.rs handle emitting events instead of callers (#753) - (22fbed2)
  • (udp) Extract linux module - (0fcc14b)
  • (udp) Extract apple_fast module - (2cc4e3f)

📚 Documentation

  • (noq) Expand RecvStream::is_0rtt docs - (497973c)
  • (noq) Document SendStream::stopped for detecting 0-RTT rejection - (7e2de91)
  • (proto) Tweak Window docstrings - (4586890)
  • (udp) Clean up docstrings - (1411814)

🧪 Testing

  • (noq) Improve 0-RTT integration test - (190ef12)
  • (proto) Implement bandwidth-limited routing (#720) - (41cbdbe)

⚙️ Miscellaneous Tasks

  • (ci) Fix docs cleanup job (#751) - (d0456ce)
  • (proto) Apply suggestions from clippy 1.96 - (ccfad4d)

... (truncated)

Changelog

Sourced from noq-udp's changelog.

1.1.0 - 2026-07-20

⛰️ Features

  • (noq) Introduce noq::Connection::authenticated - (3e926fa)
  • (proto) Allow ProtectedHeader::decode to use a generic reference - (8f80192)
  • (proto) Use path idle timeout for validation when opening a new path (#721) - (b570682)
  • (proto) Make Connection::poll_timeout immutable - (a17cb24)
  • (udp) Implement kernel receive timestamps on Linux/Android - (b454d17)

🐛 Bug Fixes

  • (noq) Handle overdue timers without polling the async timer - (f165c03)
  • (proto) Congestion: avoid double-reducing CUBIC fast convergence - (4cfbafa)
  • (proto) Congestion: preserve excess CUBIC cwnd increment - (6039c93)
  • (proto) Set loss detection timer on path validation failure - (f847bb0)
  • (proto) Avoid double-emitting Draining event, causing an active_connections underflow (#748) - (883ca63)
  • (proto) Fix coalescing loop to avoid coalescing in Initial space (#747) - (0a445dd)
  • (proto) Reject DATAGRAMs larger than the send buffer - (1e8a5a9)
  • (proto) Use binary search in ArrayRangeSet - (ba90d78)
  • (proto) Drop Initials silently when saturated - (f2968cf)
  • (readme) Use correct crates.io badge link in README.md (#756) - (ab91554)
  • (udp) Log sendmsg errors on debug (#759) - (603c5e6)
  • (proto) Deprecate UdpStats::ios as io-operations can't be measured from this crate (#725) - (d6e525d41)
  • Patches for Redox targets - (5c05d21)

🚜 Refactor

  • (noq) Use let-else in drive_timer - (ef3fce8)
  • (proto) Make state.rs handle emitting events instead of callers (#753) - (22fbed2)
  • (udp) Extract linux module - (0fcc14b)
  • (udp) Extract apple_fast module - (2cc4e3f)

📚 Documentation

  • (noq) Expand RecvStream::is_0rtt docs - (497973c)
  • (noq) Document SendStream::stopped for detecting 0-RTT rejection - (7e2de91)
  • (proto) Tweak Window docstrings - (4586890)
  • (udp) Clean up docstrings - (1411814)

🧪 Testing

  • (noq) Improve 0-RTT integration test - (190ef12)
  • (proto) Implement bandwidth-limited routing (#720) - (41cbdbe)

⚙️ Miscellaneous Tasks

  • (ci) Fix docs cleanup job (#751) - (d0456ce)
  • (proto) Apply suggestions from clippy 1.96 - (ccfad4d)
  • (proto) Demote error! log to debug! log (#741) - (bbfd024)

... (truncated)

Commits
  • 92a164e chore: Release
  • 474d034 chore: update proto and udp dependency versions in noq.
  • 14853b4 chore: remove version number from noq dependency in the docs/book
  • 193b807 chore: improve CONTRIBUTING.md (#761)
  • 603c5e6 fix(udp): log sendmsg errors on debug (#759)
  • 2e71727 Merge commit '92cd707c9' into quinn-integration-july
  • f165c03 fix(noq): handle overdue timers without polling the async timer
  • ef3fce8 refactor(noq): use let-else in drive_timer
  • f2968cf fix(proto): drop Initials silently when saturated
  • 2e010a7 deps: bump libfuzzer-sys to 0.4.13
  • Additional commits viewable in compare view

Dependabot compatibility score

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [noq-udp](https://github.com/n0-computer/noq) from 1.0.1 to 1.1.0.
- [Release notes](https://github.com/n0-computer/noq/releases)
- [Changelog](https://github.com/n0-computer/noq/blob/main/CHANGELOG.md)
- [Commits](n0-computer/noq@noq-udp-v1.0.1...noq-udp-v1.1.0)

---
updated-dependencies:
- dependency-name: noq-udp
  dependency-version: 1.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Jul 23, 2026
@n0bot n0bot Bot added this to iroh Jul 23, 2026
@github-project-automation github-project-automation Bot moved this to 🚑 Needs Triage in iroh Jul 23, 2026
@flub
flub added this pull request to the merge queue Jul 24, 2026
Merged via the queue into main with commit 6c6e28e Jul 24, 2026
31 of 56 checks passed
@github-project-automation github-project-automation Bot moved this from 🚑 Needs Triage to ✅ Done in iroh Jul 24, 2026
@dependabot
dependabot Bot deleted the dependabot/cargo/noq-udp-1.1.0 branch July 24, 2026 11:38
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

Status: ✅ Done

Development

Successfully merging this pull request may close these issues.

1 participant