From b4c622d4ac1852b9e6622cafde7a97bf5b51694d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 10 Feb 2026 16:11:05 +0000 Subject: [PATCH] chore: release --- Cargo.toml | 2 +- web-transport-proto/CHANGELOG.md | 6 ++++++ web-transport-proto/Cargo.toml | 2 +- web-transport-quiche/CHANGELOG.md | 8 ++++++++ web-transport-quiche/Cargo.toml | 2 +- web-transport-quinn/CHANGELOG.md | 6 ++++++ web-transport-quinn/Cargo.toml | 2 +- web-transport-ws/CHANGELOG.md | 6 ++++++ web-transport-ws/Cargo.toml | 2 +- web-transport/CHANGELOG.md | 18 ++++++++++++++++++ web-transport/Cargo.toml | 2 +- 11 files changed, 50 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index eb269a4..8b78803 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,5 +11,5 @@ members = [ resolver = "2" [workspace.dependencies] -web-transport-proto = { path = "web-transport-proto", version = "0.4" } +web-transport-proto = { path = "web-transport-proto", version = "0.5" } web-transport-trait = { path = "web-transport-trait", version = "0.3" } diff --git a/web-transport-proto/CHANGELOG.md b/web-transport-proto/CHANGELOG.md index 52a9075..01872ad 100644 --- a/web-transport-proto/CHANGELOG.md +++ b/web-transport-proto/CHANGELOG.md @@ -22,6 +22,12 @@ 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-proto-v0.4.0...web-transport-proto-v0.5.0) - 2026-02-10 + +### Other + +- Fix capsule protocol handling ([#152](https://github.com/moq-dev/web-transport/pull/152)) + ## [0.4.0](https://github.com/moq-dev/web-transport/compare/web-transport-proto-v0.3.1...web-transport-proto-v0.4.0) - 2026-01-23 ### Other diff --git a/web-transport-proto/Cargo.toml b/web-transport-proto/Cargo.toml index 5f1beef..cca0e6c 100644 --- a/web-transport-proto/Cargo.toml +++ b/web-transport-proto/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.5.0" edition = "2021" keywords = ["quic", "http3", "webtransport"] diff --git a/web-transport-quiche/CHANGELOG.md b/web-transport-quiche/CHANGELOG.md index 9a75916..3d95832 100644 --- a/web-transport-quiche/CHANGELOG.md +++ b/web-transport-quiche/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.6](https://github.com/moq-dev/web-transport/compare/web-transport-quiche-v0.0.5...web-transport-quiche-v0.0.6) - 2026-02-10 + +### Other + +- Add Incoming struct to inspect connections before accepting ([#155](https://github.com/moq-dev/web-transport/pull/155)) +- Fix capsule protocol handling ([#152](https://github.com/moq-dev/web-transport/pull/152)) +- Fix stream capacity tracking panic ([#153](https://github.com/moq-dev/web-transport/pull/153)) + ## [0.0.5](https://github.com/moq-dev/web-transport/compare/web-transport-quiche-v0.0.4...web-transport-quiche-v0.0.5) - 2026-02-07 ### Other diff --git a/web-transport-quiche/Cargo.toml b/web-transport-quiche/Cargo.toml index 053b4e0..0c1de61 100644 --- a/web-transport-quiche/Cargo.toml +++ b/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.0.5" +version = "0.0.6" edition = "2021" keywords = ["quic", "http3", "webtransport"] diff --git a/web-transport-quinn/CHANGELOG.md b/web-transport-quinn/CHANGELOG.md index 052f4e0..e5174c9 100644 --- a/web-transport-quinn/CHANGELOG.md +++ b/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.2](https://github.com/moq-dev/web-transport/compare/web-transport-quinn-v0.11.1...web-transport-quinn-v0.11.2) - 2026-02-10 + +### Other + +- Fix capsule protocol handling ([#152](https://github.com/moq-dev/web-transport/pull/152)) + ## [0.11.1](https://github.com/moq-dev/web-transport/compare/web-transport-quinn-v0.11.0...web-transport-quinn-v0.11.1) - 2026-02-07 ### Other diff --git a/web-transport-quinn/Cargo.toml b/web-transport-quinn/Cargo.toml index 5b371c6..e6a0d9b 100644 --- a/web-transport-quinn/Cargo.toml +++ b/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.1" +version = "0.11.2" edition = "2021" keywords = ["quic", "http3", "webtransport"] diff --git a/web-transport-ws/CHANGELOG.md b/web-transport-ws/CHANGELOG.md index 86324a6..aaafb2c 100644 --- a/web-transport-ws/CHANGELOG.md +++ b/web-transport-ws/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.5](https://github.com/moq-dev/web-transport/compare/web-transport-ws-v0.2.4...web-transport-ws-v0.2.5) - 2026-02-10 + +### Other + +- updated the following local packages: web-transport-proto + ## [0.2.4](https://github.com/moq-dev/web-transport/compare/web-transport-ws-v0.2.3...web-transport-ws-v0.2.4) - 2026-02-07 ### Other diff --git a/web-transport-ws/Cargo.toml b/web-transport-ws/Cargo.toml index 67f0b8b..0c663dd 100644 --- a/web-transport-ws/Cargo.toml +++ b/web-transport-ws/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.2.4" +version = "0.2.5" edition = "2021" keywords = ["quic", "http3", "webtransport", "websocket", "polyfill"] diff --git a/web-transport/CHANGELOG.md b/web-transport/CHANGELOG.md index 954dee6..d3e07ee 100644 --- a/web-transport/CHANGELOG.md +++ b/web-transport/CHANGELOG.md @@ -27,6 +27,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.10.0](https://github.com/moq-dev/web-transport/compare/web-transport-v0.9.7...web-transport-v0.10.0) - 2026-02-10 + +### Other + +- release ([#148](https://github.com/moq-dev/web-transport/pull/148)) +- release ([#146](https://github.com/moq-dev/web-transport/pull/146)) +- Manually run release-plz because CI is broken? ([#145](https://github.com/moq-dev/web-transport/pull/145)) +- Sub-protocol negotiation + breaking API changes ([#143](https://github.com/moq-dev/web-transport/pull/143)) +- release ([#122](https://github.com/moq-dev/web-transport/pull/122)) +- Double check that read_buf is properly implemented. ([#137](https://github.com/moq-dev/web-transport/pull/137)) +- Remove with_unreliable. ([#136](https://github.com/moq-dev/web-transport/pull/136)) +- Don't require &mut for web-transport ([#134](https://github.com/moq-dev/web-transport/pull/134)) +- Rename the repo into a new org. ([#132](https://github.com/moq-dev/web-transport/pull/132)) +- We should bump the web-transport-trait crates. ([#123](https://github.com/moq-dev/web-transport/pull/123)) +- release ([#119](https://github.com/moq-dev/web-transport/pull/119)) +- Avoid some spurious semver changes and bump the rest ([#121](https://github.com/moq-dev/web-transport/pull/121)) +- Initial web-transport-quiche support ([#118](https://github.com/moq-dev/web-transport/pull/118)) + ## [0.10.0](https://github.com/moq-dev/web-transport/compare/web-transport-v0.9.7...web-transport-v0.10.0) - 2026-02-07 ### Other diff --git a/web-transport/Cargo.toml b/web-transport/Cargo.toml index 3e9715c..f93ab3d 100644 --- a/web-transport/Cargo.toml +++ b/web-transport/Cargo.toml @@ -18,7 +18,7 @@ thiserror = "2" url = "2" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -web-transport-quinn = { version = "0.11.1", path = "../web-transport-quinn" } +web-transport-quinn = { version = "0.11.2", path = "../web-transport-quinn" } [target.'cfg(target_arch = "wasm32")'.dependencies] web-transport-wasm = { version = "0.5.5", path = "../web-transport-wasm" }