From c92d34427c2e7a50691fbd3b0917b66c121232a0 Mon Sep 17 00:00:00 2001 From: "moq-bot[bot]" <186640430+moq-bot[bot]@users.noreply.github.com> Date: Tue, 22 Jul 2025 18:00:41 +0000 Subject: [PATCH] chore: release --- rs/Cargo.lock | 18 +++++++++--------- rs/Cargo.toml | 2 +- rs/hang-cli/CHANGELOG.md | 8 ++++++++ rs/hang-cli/Cargo.toml | 2 +- rs/hang-gst/CHANGELOG.md | 7 +++++++ rs/hang-gst/Cargo.toml | 2 +- rs/hang/CHANGELOG.md | 6 ++++++ rs/hang/Cargo.toml | 2 +- rs/moq-clock/CHANGELOG.md | 6 ++++++ rs/moq-clock/Cargo.toml | 2 +- rs/moq-native/CHANGELOG.md | 7 +++++++ rs/moq-native/Cargo.toml | 2 +- rs/moq-relay/CHANGELOG.md | 10 ++++++++++ rs/moq-relay/Cargo.toml | 2 +- rs/moq-token-cli/CHANGELOG.md | 6 ++++++ rs/moq-token-cli/Cargo.toml | 2 +- rs/moq-token/CHANGELOG.md | 6 ++++++ rs/moq-token/Cargo.toml | 2 +- rs/moq/CHANGELOG.md | 9 +++++++++ rs/moq/Cargo.toml | 2 +- 20 files changed, 84 insertions(+), 19 deletions(-) diff --git a/rs/Cargo.lock b/rs/Cargo.lock index 4279d64a3..49249193a 100644 --- a/rs/Cargo.lock +++ b/rs/Cargo.lock @@ -917,7 +917,7 @@ dependencies = [ [[package]] name = "hang" -version = "0.5.0" +version = "0.5.1" dependencies = [ "bytes", "derive_more", @@ -938,7 +938,7 @@ dependencies = [ [[package]] name = "hang-cli" -version = "0.2.0" +version = "0.2.1" dependencies = [ "anyhow", "axum", @@ -954,7 +954,7 @@ dependencies = [ [[package]] name = "hang-gst" -version = "0.2.0" +version = "0.2.1" dependencies = [ "anyhow", "gst-plugin-version-helper", @@ -1529,7 +1529,7 @@ dependencies = [ [[package]] name = "moq-clock" -version = "0.7.0" +version = "0.7.1" dependencies = [ "anyhow", "chrono", @@ -1543,7 +1543,7 @@ dependencies = [ [[package]] name = "moq-lite" -version = "0.4.0" +version = "0.5.0" dependencies = [ "async-channel", "bytes", @@ -1559,7 +1559,7 @@ dependencies = [ [[package]] name = "moq-native" -version = "0.7.4" +version = "0.7.5" dependencies = [ "anyhow", "clap", @@ -1586,7 +1586,7 @@ dependencies = [ [[package]] name = "moq-relay" -version = "0.8.2" +version = "0.8.3" dependencies = [ "anyhow", "axum", @@ -1612,7 +1612,7 @@ dependencies = [ [[package]] name = "moq-token" -version = "0.5.0" +version = "0.5.1" dependencies = [ "anyhow", "aws-lc-rs", @@ -1626,7 +1626,7 @@ dependencies = [ [[package]] name = "moq-token-cli" -version = "0.2.0" +version = "0.2.1" dependencies = [ "anyhow", "clap", diff --git a/rs/Cargo.toml b/rs/Cargo.toml index f4679f72c..5f4dadb2e 100644 --- a/rs/Cargo.toml +++ b/rs/Cargo.toml @@ -27,7 +27,7 @@ resolver = "2" [workspace.dependencies] hang = { version = "0.5", path = "hang" } -moq-lite = { version = "0.4", path = "moq" } +moq-lite = { version = "0.5", path = "moq" } moq-native = { version = "0.7", path = "moq-native" } moq-token = { version = "0.5", path = "moq-token" } diff --git a/rs/hang-cli/CHANGELOG.md b/rs/hang-cli/CHANGELOG.md index e4392665e..022992716 100644 --- a/rs/hang-cli/CHANGELOG.md +++ b/rs/hang-cli/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.1](https://github.com/kixelated/moq/compare/hang-cli-v0.2.0...hang-cli-v0.2.1) - 2025-07-22 + +### Other + +- Add an ANNOUNCE_INIT message. ([#483](https://github.com/kixelated/moq/pull/483)) +- Reject WebTransport connections early ([#479](https://github.com/kixelated/moq/pull/479)) +- The root shouldn't announce itself. ([#473](https://github.com/kixelated/moq/pull/473)) + ## [0.1.10](https://github.com/kixelated/moq/compare/hang-cli-v0.1.9...hang-cli-v0.1.10) - 2025-07-19 ### Other diff --git a/rs/hang-cli/Cargo.toml b/rs/hang-cli/Cargo.toml index 92c8f19ed..5a74b200a 100644 --- a/rs/hang-cli/Cargo.toml +++ b/rs/hang-cli/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Luke Curley "] repository = "https://github.com/kixelated/moq" license = "MIT OR Apache-2.0" -version = "0.2.0" +version = "0.2.1" edition = "2021" keywords = ["quic", "http3", "webtransport", "media", "live"] diff --git a/rs/hang-gst/CHANGELOG.md b/rs/hang-gst/CHANGELOG.md index 15ac52c88..b86594d78 100644 --- a/rs/hang-gst/CHANGELOG.md +++ b/rs/hang-gst/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.1](https://github.com/kixelated/moq/compare/hang-gst-v0.2.0...hang-gst-v0.2.1) - 2025-07-22 + +### Other + +- Create a type-safe Path wrapper for Javascript ([#487](https://github.com/kixelated/moq/pull/487)) +- Add an ANNOUNCE_INIT message. ([#483](https://github.com/kixelated/moq/pull/483)) + ## [0.1.2](https://github.com/kixelated/moq/compare/hang-gst-v0.1.1...hang-gst-v0.1.2) - 2025-06-20 ### Other diff --git a/rs/hang-gst/Cargo.toml b/rs/hang-gst/Cargo.toml index 0ca9b057c..69498de2f 100644 --- a/rs/hang-gst/Cargo.toml +++ b/rs/hang-gst/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Luke Curley"] repository = "https://github.com/kixelated/moq" license = "MIT OR Apache-2.0" -version = "0.2.0" +version = "0.2.1" edition = "2021" keywords = ["quic", "http3", "webtransport", "media", "live"] diff --git a/rs/hang/CHANGELOG.md b/rs/hang/CHANGELOG.md index 911be7dbf..d2527fcf5 100644 --- a/rs/hang/CHANGELOG.md +++ b/rs/hang/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.1](https://github.com/kixelated/moq/compare/hang-v0.5.0...hang-v0.5.1) - 2025-07-22 + +### Other + +- Use a size prefix for messages. ([#489](https://github.com/kixelated/moq/pull/489)) + ## [0.5.0](https://github.com/kixelated/moq/compare/hang-v0.4.1...hang-v0.5.0) - 2025-07-19 ### Other diff --git a/rs/hang/Cargo.toml b/rs/hang/Cargo.toml index 37b1d573c..1084c5aaa 100644 --- a/rs/hang/Cargo.toml +++ b/rs/hang/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Luke Curley "] repository = "https://github.com/kixelated/moq" license = "MIT OR Apache-2.0" -version = "0.5.0" +version = "0.5.1" edition = "2021" keywords = ["quic", "http3", "webtransport", "media", "live"] diff --git a/rs/moq-clock/CHANGELOG.md b/rs/moq-clock/CHANGELOG.md index 9d5c40415..cfc842f65 100644 --- a/rs/moq-clock/CHANGELOG.md +++ b/rs/moq-clock/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.1](https://github.com/kixelated/moq/compare/moq-clock-v0.7.0...moq-clock-v0.7.1) - 2025-07-22 + +### Other + +- Add an ANNOUNCE_INIT message. ([#483](https://github.com/kixelated/moq/pull/483)) + ## [0.6.7](https://github.com/kixelated/moq/compare/moq-clock-v0.6.6...moq-clock-v0.6.7) - 2025-07-19 ### Other diff --git a/rs/moq-clock/Cargo.toml b/rs/moq-clock/Cargo.toml index e72f2386a..c5f4e559f 100644 --- a/rs/moq-clock/Cargo.toml +++ b/rs/moq-clock/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Luke Curley"] repository = "https://github.com/kixelated/moq" license = "MIT OR Apache-2.0" -version = "0.7.0" +version = "0.7.1" edition = "2021" keywords = ["quic", "http3", "webtransport", "media", "live"] diff --git a/rs/moq-native/CHANGELOG.md b/rs/moq-native/CHANGELOG.md index 0f51778ee..0df781430 100644 --- a/rs/moq-native/CHANGELOG.md +++ b/rs/moq-native/CHANGELOG.md @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.5](https://github.com/kixelated/moq/compare/moq-native-v0.7.4...moq-native-v0.7.5) - 2025-07-22 + +### Other + +- Use Nix to build Docker images, supporting environment variables instead of TOML ([#486](https://github.com/kixelated/moq/pull/486)) +- Reject WebTransport connections early ([#479](https://github.com/kixelated/moq/pull/479)) + ## [0.7.4](https://github.com/kixelated/moq/compare/moq-native-v0.7.3...moq-native-v0.7.4) - 2025-07-19 ### Other diff --git a/rs/moq-native/Cargo.toml b/rs/moq-native/Cargo.toml index 8d909d860..005b313ef 100644 --- a/rs/moq-native/Cargo.toml +++ b/rs/moq-native/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Luke Curley"] repository = "https://github.com/kixelated/moq" license = "MIT OR Apache-2.0" -version = "0.7.4" +version = "0.7.5" edition = "2021" keywords = ["quic", "http3", "webtransport", "media", "live"] diff --git a/rs/moq-relay/CHANGELOG.md b/rs/moq-relay/CHANGELOG.md index e219c4e6a..f9e3c2c4f 100644 --- a/rs/moq-relay/CHANGELOG.md +++ b/rs/moq-relay/CHANGELOG.md @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.8.3](https://github.com/kixelated/moq/compare/moq-relay-v0.8.2...moq-relay-v0.8.3) - 2025-07-22 + +### Other + +- Create a type-safe Path wrapper for Javascript ([#487](https://github.com/kixelated/moq/pull/487)) +- Use Nix to build Docker images, supporting environment variables instead of TOML ([#486](https://github.com/kixelated/moq/pull/486)) +- Reject WebTransport connections early ([#479](https://github.com/kixelated/moq/pull/479)) +- Improve authentication, adding tests and documentation ([#476](https://github.com/kixelated/moq/pull/476)) +- Use JWT tokens for local development. ([#477](https://github.com/kixelated/moq/pull/477)) + ## [0.7.8](https://github.com/kixelated/moq/compare/moq-relay-v0.7.7...moq-relay-v0.7.8) - 2025-07-19 ### Other diff --git a/rs/moq-relay/Cargo.toml b/rs/moq-relay/Cargo.toml index 0b1f65269..38137805c 100644 --- a/rs/moq-relay/Cargo.toml +++ b/rs/moq-relay/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Luke Curley"] repository = "https://github.com/kixelated/moq" license = "MIT OR Apache-2.0" -version = "0.8.2" +version = "0.8.3" edition = "2021" keywords = ["quic", "http3", "webtransport", "media", "live"] diff --git a/rs/moq-token-cli/CHANGELOG.md b/rs/moq-token-cli/CHANGELOG.md index dad8cae5a..63c7792a1 100644 --- a/rs/moq-token-cli/CHANGELOG.md +++ b/rs/moq-token-cli/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.1](https://github.com/kixelated/moq/compare/moq-token-cli-v0.2.0...moq-token-cli-v0.2.1) - 2025-07-22 + +### Other + +- update Cargo.lock dependencies + ## [0.1.6](https://github.com/kixelated/moq/compare/moq-token-cli-v0.1.5...moq-token-cli-v0.1.6) - 2025-07-19 ### Other diff --git a/rs/moq-token-cli/Cargo.toml b/rs/moq-token-cli/Cargo.toml index 56930b718..44a33cd56 100644 --- a/rs/moq-token-cli/Cargo.toml +++ b/rs/moq-token-cli/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Luke Curley"] repository = "https://github.com/kixelated/moq" license = "MIT OR Apache-2.0" -version = "0.2.0" +version = "0.2.1" edition = "2021" [[bin]] diff --git a/rs/moq-token/CHANGELOG.md b/rs/moq-token/CHANGELOG.md index 9ff1c06ab..9c5d0c0e3 100644 --- a/rs/moq-token/CHANGELOG.md +++ b/rs/moq-token/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.1](https://github.com/kixelated/moq/compare/moq-token-v0.5.0...moq-token-v0.5.1) - 2025-07-22 + +### Other + +- Improve authentication, adding tests and documentation ([#476](https://github.com/kixelated/moq/pull/476)) + ## [0.5.0](https://github.com/kixelated/moq/compare/moq-token-v0.4.0...moq-token-v0.5.0) - 2025-07-19 ### Other diff --git a/rs/moq-token/Cargo.toml b/rs/moq-token/Cargo.toml index 20795566d..01e3d8941 100644 --- a/rs/moq-token/Cargo.toml +++ b/rs/moq-token/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Luke Curley"] repository = "https://github.com/kixelated/moq" license = "MIT OR Apache-2.0" -version = "0.5.0" +version = "0.5.1" edition = "2021" [dependencies] diff --git a/rs/moq/CHANGELOG.md b/rs/moq/CHANGELOG.md index a94e69ac7..e7e691d84 100644 --- a/rs/moq/CHANGELOG.md +++ b/rs/moq/CHANGELOG.md @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.0](https://github.com/kixelated/moq/compare/moq-lite-v0.4.0...moq-lite-v0.5.0) - 2025-07-22 + +### Other + +- Use a size prefix for messages. ([#489](https://github.com/kixelated/moq/pull/489)) +- Create a type-safe Path wrapper for Javascript ([#487](https://github.com/kixelated/moq/pull/487)) +- Add an ANNOUNCE_INIT message. ([#483](https://github.com/kixelated/moq/pull/483)) +- Use JWT tokens for local development. ([#477](https://github.com/kixelated/moq/pull/477)) + ## [0.4.0](https://github.com/kixelated/moq/compare/moq-lite-v0.3.5...moq-lite-v0.4.0) - 2025-07-19 ### Other diff --git a/rs/moq/Cargo.toml b/rs/moq/Cargo.toml index 3168a490d..40fcf3aca 100644 --- a/rs/moq/Cargo.toml +++ b/rs/moq/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Luke Curley"] repository = "https://github.com/kixelated/moq" license = "MIT OR Apache-2.0" -version = "0.4.0" +version = "0.5.0" edition = "2021" keywords = ["quic", "http3", "webtransport", "media", "live"]