From 7456ae40dbd18ed19909ac2adbab682f7145575e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 16 Jul 2026 17:57:05 +0000 Subject: [PATCH] chore: release --- rs/qmux/CHANGELOG.md | 10 ++++++++++ rs/qmux/Cargo.toml | 2 +- rs/web-transport-node/CHANGELOG.md | 6 ++++++ rs/web-transport-node/Cargo.toml | 2 +- rs/web-transport-proto/CHANGELOG.md | 7 +++++++ rs/web-transport-quiche/CHANGELOG.md | 11 +++++++++++ rs/web-transport-quiche/Cargo.toml | 2 +- rs/web-transport-quinn/CHANGELOG.md | 6 ++++++ rs/web-transport-quinn/Cargo.toml | 2 +- rs/web-transport-trait/CHANGELOG.md | 6 ++++++ rs/web-transport-trait/Cargo.toml | 2 +- rs/web-transport/CHANGELOG.md | 6 ++++++ rs/web-transport/Cargo.toml | 4 ++-- 13 files changed, 59 insertions(+), 7 deletions(-) diff --git a/rs/qmux/CHANGELOG.md b/rs/qmux/CHANGELOG.md index 5ea3763f..6c3df2c2 100644 --- a/rs/qmux/CHANGELOG.md +++ b/rs/qmux/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.1](https://github.com/moq-dev/web-transport/compare/qmux-v0.4.0...qmux-v0.4.1) - 2026-07-16 + +### Added + +- *(qmux)* add server-side Session.accept() (JS) ([#324](https://github.com/moq-dev/web-transport/pull/324)) + +### Fixed + +- *(qmux)* make write_buf cancel safe so a dropped write can't lose bytes ([#323](https://github.com/moq-dev/web-transport/pull/323)) + ## [0.4.0](https://github.com/moq-dev/web-transport/compare/qmux-v0.3.1...qmux-v0.4.0) - 2026-07-15 ### Added diff --git a/rs/qmux/Cargo.toml b/rs/qmux/Cargo.toml index 0ce37f16..a1df3b3f 100644 --- a/rs/qmux/Cargo.toml +++ b/rs/qmux/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Luke Curley"] repository = "https://github.com/moq-dev/web-transport" license = "MIT OR Apache-2.0" -version = "0.4.0" +version = "0.4.1" edition = "2021" keywords = ["quic", "qmux", "webtransport", "multiplexing"] diff --git a/rs/web-transport-node/CHANGELOG.md b/rs/web-transport-node/CHANGELOG.md index 6b168abb..5f7a837d 100644 --- a/rs/web-transport-node/CHANGELOG.md +++ b/rs/web-transport-node/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.5](https://github.com/moq-dev/web-transport/compare/web-transport-node-v0.0.4...web-transport-node-v0.0.5) - 2026-07-16 + +### Fixed + +- *(node)* republish with napi-rs 3.10 ([#320](https://github.com/moq-dev/web-transport/pull/320)) + ### Fixed - Require napi-rs 3.10.0 or newer to prevent cross-isolate `Buffer` drops from crashing Node.js and Deno processes ([#319](https://github.com/moq-dev/web-transport/issues/319)) diff --git a/rs/web-transport-node/Cargo.toml b/rs/web-transport-node/Cargo.toml index 1453af7a..022a2219 100644 --- a/rs/web-transport-node/Cargo.toml +++ b/rs/web-transport-node/Cargo.toml @@ -4,7 +4,7 @@ description = "WebTransport NAPI-RS bindings for Node.js" authors = ["Luke Curley"] repository = "https://github.com/moq-dev/web-transport" license = "MIT OR Apache-2.0" -version = "0.0.4" +version = "0.0.5" edition = "2021" [lib] diff --git a/rs/web-transport-proto/CHANGELOG.md b/rs/web-transport-proto/CHANGELOG.md index 29396bda..78806431 100644 --- a/rs/web-transport-proto/CHANGELOG.md +++ b/rs/web-transport-proto/CHANGELOG.md @@ -22,6 +22,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.6.1](https://github.com/moq-dev/web-transport/compare/web-transport-proto-v0.6.0...web-transport-proto-v0.6.1) - 2026-07-16 + +### Other + +- release ([#276](https://github.com/moq-dev/web-transport/pull/276)) +- *(deps)* bump the cargo group with 3 updates ([#270](https://github.com/moq-dev/web-transport/pull/270)) + ## [0.6.1](https://github.com/moq-dev/web-transport/compare/web-transport-proto-v0.6.0...web-transport-proto-v0.6.1) - 2026-07-15 ### Other diff --git a/rs/web-transport-quiche/CHANGELOG.md b/rs/web-transport-quiche/CHANGELOG.md index d48836da..440e97d1 100644 --- a/rs/web-transport-quiche/CHANGELOG.md +++ b/rs/web-transport-quiche/CHANGELOG.md @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.0](https://github.com/moq-dev/web-transport/compare/web-transport-quiche-v0.4.3...web-transport-quiche-v0.5.0) - 2026-07-16 + +### Added + +- *(quiche)* add keep-alive, GSO opt-out, and dial/SNI split ([#321](https://github.com/moq-dev/web-transport/pull/321)) +- *(quiche)* [**breaking**] add mTLS client auth and TLS server name control ([#325](https://github.com/moq-dev/web-transport/pull/325)) + +### Fixed + +- *(quiche)* drop ClientBuilder::with_metrics, which silently ignored its argument ([#322](https://github.com/moq-dev/web-transport/pull/322)) + ## [0.4.3](https://github.com/moq-dev/web-transport/compare/web-transport-quiche-v0.4.2...web-transport-quiche-v0.4.3) - 2026-07-15 ### Fixed diff --git a/rs/web-transport-quiche/Cargo.toml b/rs/web-transport-quiche/Cargo.toml index fd4c072e..c8a00c7a 100644 --- a/rs/web-transport-quiche/Cargo.toml +++ b/rs/web-transport-quiche/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Luke Curley"] repository = "https://github.com/moq-dev/web-transport" license = "MIT OR Apache-2.0" -version = "0.4.3" +version = "0.5.0" edition = "2021" keywords = ["quic", "http3", "webtransport"] diff --git a/rs/web-transport-quinn/CHANGELOG.md b/rs/web-transport-quinn/CHANGELOG.md index de775ad6..10e0a1a9 100644 --- a/rs/web-transport-quinn/CHANGELOG.md +++ b/rs/web-transport-quinn/CHANGELOG.md @@ -31,6 +31,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.11.11](https://github.com/moq-dev/web-transport/compare/web-transport-quinn-v0.11.10...web-transport-quinn-v0.11.11) - 2026-07-16 + +### Fixed + +- *(qmux)* make write_buf cancel safe so a dropped write can't lose bytes ([#323](https://github.com/moq-dev/web-transport/pull/323)) + ## [0.11.10](https://github.com/moq-dev/web-transport/compare/web-transport-quinn-v0.11.9...web-transport-quinn-v0.11.10) - 2026-07-15 ### Added diff --git a/rs/web-transport-quinn/Cargo.toml b/rs/web-transport-quinn/Cargo.toml index 36968760..73347612 100644 --- a/rs/web-transport-quinn/Cargo.toml +++ b/rs/web-transport-quinn/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Luke Curley"] repository = "https://github.com/moq-dev/web-transport" license = "MIT OR Apache-2.0" -version = "0.11.10" +version = "0.11.11" edition = "2021" keywords = ["quic", "http3", "webtransport"] diff --git a/rs/web-transport-trait/CHANGELOG.md b/rs/web-transport-trait/CHANGELOG.md index 1fd3c5e8..e4052e66 100644 --- a/rs/web-transport-trait/CHANGELOG.md +++ b/rs/web-transport-trait/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.7](https://github.com/moq-dev/web-transport/compare/web-transport-trait-v0.3.6...web-transport-trait-v0.3.7) - 2026-07-16 + +### Fixed + +- *(qmux)* make write_buf cancel safe so a dropped write can't lose bytes ([#323](https://github.com/moq-dev/web-transport/pull/323)) + ## [0.3.6](https://github.com/moq-dev/web-transport/compare/web-transport-trait-v0.3.5...web-transport-trait-v0.3.6) - 2026-06-11 ### Added diff --git a/rs/web-transport-trait/Cargo.toml b/rs/web-transport-trait/Cargo.toml index 225f2b0c..6166e72c 100644 --- a/rs/web-transport-trait/Cargo.toml +++ b/rs/web-transport-trait/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Luke Curley"] repository = "https://github.com/moq-dev/web-transport" license = "MIT OR Apache-2.0" -version = "0.3.6" +version = "0.3.7" edition = "2021" keywords = ["quic", "http3", "webtransport"] diff --git a/rs/web-transport/CHANGELOG.md b/rs/web-transport/CHANGELOG.md index 46ad87fb..f77d50d3 100644 --- a/rs/web-transport/CHANGELOG.md +++ b/rs/web-transport/CHANGELOG.md @@ -27,6 +27,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.10.8](https://github.com/moq-dev/web-transport/compare/web-transport-v0.10.7...web-transport-v0.10.8) - 2026-07-16 + +### Other + +- updated the following local packages: web-transport-quinn + ## [0.10.7](https://github.com/moq-dev/web-transport/compare/web-transport-v0.10.6...web-transport-v0.10.7) - 2026-07-15 ### Other diff --git a/rs/web-transport/Cargo.toml b/rs/web-transport/Cargo.toml index 4b327296..96b5430e 100644 --- a/rs/web-transport/Cargo.toml +++ b/rs/web-transport/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Luke Curley"] repository = "https://github.com/moq-dev/web-transport" license = "MIT OR Apache-2.0" -version = "0.10.7" +version = "0.10.8" edition = "2021" keywords = ["quic", "http3", "webtransport"] @@ -18,7 +18,7 @@ thiserror = "2" url = "2" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -web-transport-quinn = { version = "0.11.10", path = "../web-transport-quinn" } +web-transport-quinn = { version = "0.11.11", path = "../web-transport-quinn" } [target.'cfg(target_arch = "wasm32")'.dependencies] web-transport-wasm = { version = "0.5.9", path = "../web-transport-wasm" }