Skip to content

Commit 7a7b26b

Browse files
authored
Merge pull request #75 from cloudflare/release-plz-2025-09-17T21-43-36Z
chore: release
2 parents 0a854f7 + 8117f5b commit 7a7b26b

File tree

15 files changed

+181
-23
lines changed

15 files changed

+181
-23
lines changed

Cargo.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

moq-api/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.2.5](https://github.com/cloudflare/moq-rs/compare/moq-api-v0.2.4...moq-api-v0.2.5) - 2025-12-18
10+
11+
### Other
12+
13+
- Bump redis to fix deprecation warning during build
14+
915
## [0.2.4](https://github.com/englishm/moq-rs/compare/moq-api-v0.2.3...moq-api-v0.2.4) - 2025-09-15
1016

1117
### Other

moq-api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["Luke Curley"]
55
repository = "https://github.com/englishm/moq-rs"
66
license = "MIT OR Apache-2.0"
77

8-
version = "0.2.4"
8+
version = "0.2.5"
99
edition = "2021"
1010

1111
keywords = ["quic", "http3", "webtransport", "media", "live"]

moq-clock-ietf/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.6.6](https://github.com/cloudflare/moq-rs/compare/moq-clock-ietf-v0.6.5...moq-clock-ietf-v0.6.6) - 2025-12-18
10+
11+
### Other
12+
13+
- Add extension header support to datagrams
14+
- Fix Datagram Support
15+
- Wire Up Track Status Handling
16+
- moq-clock-ietf variable renames and comments added
17+
- Print CID for clock sessions
18+
- Add --qlog-dir CLI argument to QUIC configuration
19+
- -clock demo - task out reception of new streams so we don't need to wait for previous stream to end
20+
921
## [0.6.5](https://github.com/englishm/moq-rs/compare/moq-clock-ietf-v0.6.4...moq-clock-ietf-v0.6.5) - 2025-09-15
1022

1123
### Other

moq-clock-ietf/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["Luke Curley"]
55
repository = "https://github.com/englishm/moq-rs"
66
license = "MIT OR Apache-2.0"
77

8-
version = "0.6.5"
8+
version = "0.6.6"
99
edition = "2021"
1010

1111
keywords = ["quic", "http3", "webtransport", "media", "live"]
@@ -14,8 +14,8 @@ categories = ["multimedia", "network-programming", "web-programming"]
1414
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1515

1616
[dependencies]
17-
moq-native-ietf = { path = "../moq-native-ietf", version = "0.5" }
18-
moq-transport = { path = "../moq-transport", version = "0.11" }
17+
moq-native-ietf = { path = "../moq-native-ietf", version = "0.6" }
18+
moq-transport = { path = "../moq-transport", version = "0.12" }
1919

2020
# QUIC
2121
url = "2"

moq-native-ietf/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.6.0](https://github.com/cloudflare/moq-rs/compare/moq-native-ietf-v0.5.5...moq-native-ietf-v0.6.0) - 2025-12-18
10+
11+
### Other
12+
13+
- Update moq-native-ietf/src/quic.rs
14+
- Print CID for clock sessions
15+
- cargo fmt
16+
- Refactor mlog feature for better layering
17+
- First pass of 'mlog' support
18+
- Implement per-connection qlog file generation
19+
- Thread qlog_dir and base_server_config to accept_session
20+
- Store qlog_dir and base_server_config in Server struct
21+
- Validate qlog directory exists at startup
22+
- Add --qlog-dir CLI argument to QUIC configuration
23+
- Enable qlog feature of quinn
24+
- Log QUIC CIDs for accepted connections
25+
- Use newer quinn
26+
927
## [0.5.5](https://github.com/englishm/moq-rs/compare/moq-native-ietf-v0.5.4...moq-native-ietf-v0.5.5) - 2025-09-15
1028

1129
### Other

moq-native-ietf/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ authors = ["Luke Curley"]
55
repository = "https://github.com/englishm/moq-rs"
66
license = "MIT OR Apache-2.0"
77

8-
version = "0.5.5"
8+
version = "0.6.0"
99
edition = "2021"
1010

1111
keywords = ["quic", "http3", "webtransport", "media", "live"]
1212
categories = ["multimedia", "network-programming", "web-programming"]
1313

1414
[dependencies]
15-
moq-transport = { path = "../moq-transport", version = "0.11" }
15+
moq-transport = { path = "../moq-transport", version = "0.12" }
1616
web-transport = { workspace = true }
1717
web-transport-quinn = "0.3"
1818

moq-pub/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.8.6](https://github.com/cloudflare/moq-rs/compare/moq-pub-v0.8.5...moq-pub-v0.8.6) - 2025-12-18
10+
11+
### Other
12+
13+
- moq-transport variable renames and comments added
14+
- Log CID
15+
- Print CID for clock sessions
16+
- Add --qlog-dir CLI argument to QUIC configuration
17+
918
## [0.8.5](https://github.com/englishm/moq-rs/compare/moq-pub-v0.8.4...moq-pub-v0.8.5) - 2025-09-15
1019

1120
### Other

moq-pub/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["Mike English", "Luke Curley"]
55
repository = "https://github.com/englishm/moq-rs"
66
license = "MIT OR Apache-2.0"
77

8-
version = "0.8.5"
8+
version = "0.8.6"
99
edition = "2021"
1010

1111
keywords = ["quic", "http3", "webtransport", "media", "live"]
@@ -14,8 +14,8 @@ categories = ["multimedia", "network-programming", "web-programming"]
1414
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1515

1616
[dependencies]
17-
moq-native-ietf = { path = "../moq-native-ietf", version = "0.5" }
18-
moq-transport = { path = "../moq-transport", version = "0.11" }
17+
moq-native-ietf = { path = "../moq-native-ietf", version = "0.6" }
18+
moq-transport = { path = "../moq-transport", version = "0.12" }
1919
moq-catalog = { path = "../moq-catalog", version = "0.2" }
2020

2121
url = "2"

moq-relay-ietf/CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.7.6](https://github.com/cloudflare/moq-rs/compare/moq-relay-ietf-v0.7.5...moq-relay-ietf-v0.7.6) - 2025-12-18
10+
11+
### Other
12+
13+
- Use correlation IDs in errors
14+
- cargo fmt
15+
- Add support for nested namespaces
16+
- Revert "Add support for namespace hierachies"
17+
- Address PR feedback
18+
- cargo fmt
19+
- Add support for namespace hierachies
20+
- Wire Up Track Status Handling
21+
- moq-relay-ietf variable renames and comments added
22+
- Update moq-relay-ietf/src/relay.rs
23+
- Print CID for clock sessions
24+
- Add --mlog-serve
25+
- Refactor mlog feature for better layering
26+
- First pass of 'mlog' support
27+
- Allow either CID or CID_server.qlog paths
28+
- Add --qlog-serve
29+
- Wire qlog_dir CLI argument through moq-relay-ietf
30+
- Add --qlog-dir CLI argument to QUIC configuration
31+
932
## [0.7.5](https://github.com/englishm/moq-rs/compare/moq-relay-ietf-v0.7.4...moq-relay-ietf-v0.7.5) - 2025-09-15
1033

1134
### Other

0 commit comments

Comments
 (0)