Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
6 changes: 6 additions & 0 deletions web-transport-proto/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion web-transport-proto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
8 changes: 8 additions & 0 deletions web-transport-quiche/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion web-transport-quiche/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
6 changes: 6 additions & 0 deletions web-transport-quinn/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion web-transport-quinn/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
6 changes: 6 additions & 0 deletions web-transport-ws/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion web-transport-ws/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
18 changes: 18 additions & 0 deletions web-transport/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion web-transport/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }