Skip to content

chore: release#1338

Open
moq-bot[bot] wants to merge 1 commit intomainfrom
release-plz-2026-04-20T01-12-51Z
Open

chore: release#1338
moq-bot[bot] wants to merge 1 commit intomainfrom
release-plz-2026-04-20T01-12-51Z

Conversation

@moq-bot
Copy link
Copy Markdown
Contributor

@moq-bot moq-bot Bot commented Apr 20, 2026

🤖 New release

  • conducer: 0.3.5 -> 0.3.6 (✓ API compatible changes)
  • moq-lite: 0.15.15 -> 0.16.0 (⚠ API breaking changes)
  • hang: 0.15.8 -> 0.15.9 (✓ API compatible changes)
  • moq-native: 0.13.13 -> 0.14.0 (⚠ API breaking changes)
  • moq-mux: 0.3.9 -> 0.3.10 (✓ API compatible changes)
  • libmoq: 0.2.13 -> 0.2.14
  • moq-boy: 0.2.8 -> 0.2.9
  • moq-cli: 0.7.20 -> 0.7.21
  • moq-clock: 0.10.17 -> 0.10.18
  • moq-ffi: 0.2.7 -> 0.2.8
  • moq-token: 0.5.17 -> 0.6.0 (⚠ API breaking changes)
  • moq-relay: 0.10.25 -> 0.11.0 (⚠ API breaking changes)
  • moq-token-cli: 0.5.23 -> 0.5.24

moq-lite breaking changes

--- failure constructible_struct_adds_field: externally-constructible struct adds field ---

Description:
A pub struct constructible with a struct literal has a new pub field. Existing struct literals must be updated to include the new field.
        ref: https://doc.rust-lang.org/reference/expressions/struct-expr.html
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.47.0/src/lints/constructible_struct_adds_field.ron

Failed in:
  field Origin.id in /tmp/nix-shell.KwSBna/.tmpeICJnW/moq/rs/moq-lite/src/model/origin.rs:27
  field Broadcast.hops in /tmp/nix-shell.KwSBna/.tmpeICJnW/moq/rs/moq-lite/src/model/broadcast.rs:19

--- failure copy_impl_added: type now implements Copy ---

Description:
A public type now implements Copy, causing non-move closures to capture it by reference instead of moving it.
        ref: https://github.com/rust-lang/rust/issues/100905
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.47.0/src/lints/copy_impl_added.ron

Failed in:
  moq_lite::Origin in /tmp/nix-shell.KwSBna/.tmpeICJnW/moq/rs/moq-lite/src/model/origin.rs:25

--- failure enum_missing: pub enum removed or renamed ---

Description:
A publicly-visible enum cannot be imported by its prior path. A `pub use` may have been removed, or the enum itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.47.0/src/lints/enum_missing.ron

Failed in:
  enum moq_lite::coding::DecodeError, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-lite/src/coding/decode.rs:15
  enum moq_lite::coding::EncodeError, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-lite/src/coding/encode.rs:10

--- failure inherent_method_missing: pub method removed or renamed ---

Description:
A publicly-visible method or associated fn is no longer available under its prior name. It may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.47.0/src/lints/inherent_method_missing.ron

Failed in:
  FrameProducer::write_chunk, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-lite/src/model/frame.rs:164
  TrackConsumer::poll_next_group_ordered, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-lite/src/model/track.rs:512
  TrackConsumer::next_group_ordered, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-lite/src/model/track.rs:532
  TrackConsumer::produce, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-lite/src/model/track.rs:621
  OriginConsumer::consume_broadcast, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-lite/src/model/origin.rs:521
  OriginConsumer::consume_only, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-lite/src/model/origin.rs:532
  OriginProducer::publish_only, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-lite/src/model/origin.rs:399
  OriginProducer::consume_only, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-lite/src/model/origin.rs:416
  OriginProducer::consume_broadcast, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-lite/src/model/origin.rs:424
  TrackProducer::close, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-lite/src/model/track.rs:292

--- failure macro_no_longer_exported: macro is no longer exported ---

Description:
A `macro_rules!` declarative macro that was previously exported with `#[macro_export]` is no longer exported. This breaks downstream code that used the macro.
        ref: https://doc.rust-lang.org/reference/macros-by-example.html#path-based-scope
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.47.0/src/lints/macro_no_longer_exported.ron

Failed in:
  macro encode_params in /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-lite/src/ietf/parameters.rs:396
  macro decode_params in /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-lite/src/ietf/parameters.rs:460

--- failure method_parameter_count_changed: pub method parameter count changed ---

Description:
A publicly-visible method now takes a different number of parameters, not counting the receiver (self) parameter.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#fn-change-arity
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.47.0/src/lints/method_parameter_count_changed.ron

Failed in:
  moq_lite::BroadcastProducer::new takes 0 parameters in /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-lite/src/model/broadcast.rs:63, but now takes 1 parameters in /tmp/nix-shell.KwSBna/.tmpeICJnW/moq/rs/moq-lite/src/model/broadcast.rs:89
  moq_lite::OriginProducer::new takes 0 parameters in /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-lite/src/model/origin.rs:352, but now takes 1 parameters in /tmp/nix-shell.KwSBna/.tmpeICJnW/moq/rs/moq-lite/src/model/origin.rs:581

--- failure module_missing: pub module removed or renamed ---

Description:
A publicly-visible module cannot be imported by its prior path. A `pub use` may have been removed, or the module may have been renamed, removed, or made non-public.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.47.0/src/lints/module_missing.ron

Failed in:
  mod moq_lite::coding, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-lite/src/coding/mod.rs:1

--- failure pub_module_level_const_missing: pub module-level const is missing ---

Description:
A public const is missing or renamed
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.47.0/src/lints/pub_module_level_const_missing.ron

Failed in:
  ALPN_LITE_03 in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-lite/src/version.rs:30
  ALPN_15 in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-lite/src/version.rs:33
  ALPN_LITE_04 in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-lite/src/version.rs:31
  ALPN_16 in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-lite/src/version.rs:34
  ALPN_LITE in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-lite/src/version.rs:29
  ALPN_14 in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-lite/src/version.rs:32
  ALPN_17 in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-lite/src/version.rs:35

--- failure struct_missing: pub struct removed or renamed ---

Description:
A publicly-visible struct cannot be imported by its prior path. A `pub use` may have been removed, or the struct itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.47.0/src/lints/struct_missing.ron

Failed in:
  struct moq_lite::coding::BoundsExceeded, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-lite/src/coding/varint.rs:15
  struct moq_lite::coding::VarInt, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-lite/src/coding/varint.rs:24
  struct moq_lite::coding::Writer, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-lite/src/coding/writer.rs:6
  struct moq_lite::coding::Version, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-lite/src/coding/version.rs:7
  struct moq_lite::coding::Versions, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-lite/src/coding/version.rs:49
  struct moq_lite::coding::Stream, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-lite/src/coding/stream.rs:5
  struct moq_lite::coding::Sizer, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-lite/src/coding/size.rs:9
  struct moq_lite::coding::Reader, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-lite/src/coding/reader.rs:8

--- failure struct_pub_field_missing: pub struct's pub field removed or renamed ---

Description:
A publicly-visible struct has at least one public field that is no longer available under its prior name. It may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.47.0/src/lints/struct_pub_field_missing.ron

Failed in:
  field info of struct FrameProducer, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-lite/src/model/frame.rs:131
  field info of struct GroupConsumer, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-lite/src/model/group.rs:262
  field info of struct GroupProducer, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-lite/src/model/group.rs:140
  field info of struct FrameConsumer, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-lite/src/model/frame.rs:230
  field info of struct TrackConsumer, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-lite/src/model/track.rs:443
  field info of struct TrackProducer, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-lite/src/model/track.rs:203

--- failure struct_pub_field_now_doc_hidden: pub struct field is now #[doc(hidden)] ---

Description:
A pub field of a pub struct is now marked #[doc(hidden)] and is no longer part of the public API.
        ref: https://doc.rust-lang.org/rustdoc/write-documentation/the-doc-attribute.html#hidden
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.47.0/src/lints/struct_pub_field_now_doc_hidden.ron

Failed in:
  field FrameProducer.info in file /tmp/nix-shell.KwSBna/.tmpeICJnW/moq/rs/moq-lite/src/model/frame.rs:147
  field GroupConsumer.info in file /tmp/nix-shell.KwSBna/.tmpeICJnW/moq/rs/moq-lite/src/model/group.rs:263
  field GroupProducer.info in file /tmp/nix-shell.KwSBna/.tmpeICJnW/moq/rs/moq-lite/src/model/group.rs:138
  field FrameConsumer.info in file /tmp/nix-shell.KwSBna/.tmpeICJnW/moq/rs/moq-lite/src/model/frame.rs:302
  field TrackConsumer.info in file /tmp/nix-shell.KwSBna/.tmpeICJnW/moq/rs/moq-lite/src/model/track.rs:437
  field TrackProducer.info in file /tmp/nix-shell.KwSBna/.tmpeICJnW/moq/rs/moq-lite/src/model/track.rs:206

--- failure trait_missing: pub trait removed or renamed ---

Description:
A publicly-visible trait cannot be imported by its prior path. A `pub use` may have been removed, or the trait itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.47.0/src/lints/trait_missing.ron

Failed in:
  trait moq_lite::coding::Encode, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-lite/src/coding/encode.rs:40
  trait moq_lite::coding::Decode, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-lite/src/coding/decode.rs:7

moq-native breaking changes

--- failure inherent_method_missing: pub method removed or renamed ---

Description:
A publicly-visible method or associated fn is no longer available under its prior name. It may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.47.0/src/lints/inherent_method_missing.ron

Failed in:
  ClientTls::cert_dns_name, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-native/src/client.rs:178

--- failure struct_pub_field_missing: pub struct's pub field removed or renamed ---

Description:
A publicly-visible struct has at least one public field that is no longer available under its prior name. It may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.47.0/src/lints/struct_pub_field_missing.ron

Failed in:
  field dns_name of struct PeerIdentity, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-native/src/server.rs:511

moq-token breaking changes

--- failure struct_pub_field_missing: pub struct's pub field removed or renamed ---

Description:
A publicly-visible struct has at least one public field that is no longer available under its prior name. It may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.47.0/src/lints/struct_pub_field_missing.ron

Failed in:
  field cluster of struct Claims, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-token/src/claims.rs:30

moq-relay breaking changes

--- failure enum_variant_missing: pub enum variant removed or renamed ---

Description:
A publicly-visible enum has at least one variant that is no longer available under its prior name. It may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.47.0/src/lints/enum_variant_missing.ron

Failed in:
  variant AuthError::ExpectedCluster, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-relay/src/auth.rs:73

--- failure function_missing: pub fn removed or renamed ---

Description:
A publicly-visible function cannot be imported by its prior path. A `pub use` may have been removed, or the function itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.47.0/src/lints/function_missing.ron

Failed in:
  function moq_relay::is_san_with_port, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-relay/src/connection.rs:10
  function moq_relay::validate_peer, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-relay/src/connection.rs:25
  function moq_relay::jemalloc::run, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-relay/src/jemalloc.rs:7

--- failure inherent_method_missing: pub method removed or renamed ---

Description:
A publicly-visible method or associated fn is no longer available under its prior name. It may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.47.0/src/lints/inherent_method_missing.ron

Failed in:
  Cluster::register, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-relay/src/cluster.rs:123
  Cluster::get, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-relay/src/cluster.rs:134
  AuthParams::from_url, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-relay/src/auth.rs:36
  AuthToken::from_peer, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-relay/src/auth.rs:417

--- failure module_missing: pub module removed or renamed ---

Description:
A publicly-visible module cannot be imported by its prior path. A `pub use` may have been removed, or the module may have been renamed, removed, or made non-public.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.47.0/src/lints/module_missing.ron

Failed in:
  mod moq_relay::jemalloc, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-relay/src/jemalloc.rs:1

--- failure struct_missing: pub struct removed or renamed ---

Description:
A publicly-visible struct cannot be imported by its prior path. A `pub use` may have been removed, or the struct itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.47.0/src/lints/struct_missing.ron

Failed in:
  struct moq_relay::ClusterRegistration, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-relay/src/cluster.rs:326

--- failure struct_pub_field_missing: pub struct's pub field removed or renamed ---

Description:
A publicly-visible struct has at least one public field that is no longer available under its prior name. It may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.47.0/src/lints/struct_pub_field_missing.ron

Failed in:
  field primary of struct Cluster, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-relay/src/cluster.rs:71
  field secondary of struct Cluster, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-relay/src/cluster.rs:74
  field combined of struct Cluster, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-relay/src/cluster.rs:77
  field root of struct ClusterConfig, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-relay/src/cluster.rs:28
  field node of struct ClusterConfig, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-relay/src/cluster.rs:44
  field prefix of struct ClusterConfig, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-relay/src/cluster.rs:56
  field register of struct AuthParams, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-relay/src/auth.rs:23
  field cluster of struct AuthToken, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-relay/src/auth.rs:404
  field register of struct AuthToken, previously in file /tmp/nix-shell.KwSBna/.tmpHIiu8T/moq-relay/src/auth.rs:406
Changelog

conducer

0.3.6 - 2026-05-05

Other

  • switch insert_track to take TrackConsumer (#1356)

moq-lite

0.16.0 - 2026-05-05

Other

  • switch insert_track to take TrackConsumer (#1356)
  • tighten public API surface and remove deprecated methods (#1378)
  • Revert moq-lite FETCH/Subscription API changes (#1372)
  • add fetch_group API + TrackDynamic (#1357)
  • per-frame buffer + BufMut producer to cut relay memory (#1353)
  • backport Subscription model API for FETCH readiness (#1348)
  • add OriginConsumer::wait_for_broadcast; deprecate consume_broadcast (#1340)
  • hop-based clustering (#1322)

hang

0.15.9 - 2026-05-05

Other

  • Revert moq-lite FETCH/Subscription API changes (#1372)
  • add fetch_group API + TrackDynamic (#1357)
  • backport Subscription model API for FETCH readiness (#1348)
  • hop-based clustering (#1322)

moq-native

0.14.0 - 2026-05-05

Fixed

  • (config) accept single string or array for TOML list fields (#1377)

Other

  • Fix DNS resolution to prefer matching address family (#1379)
  • Revert moq-lite FETCH/Subscription API changes (#1372)
  • relocate jemalloc helper; wire it into moq-boy (#1360)
  • backport Subscription model API for FETCH readiness (#1348)
  • hop-based clustering (#1322)

moq-mux

0.3.10 - 2026-05-05

Other

  • tighten public API surface and remove deprecated methods (#1378)
  • Revert moq-lite FETCH/Subscription API changes (#1372)
  • backport Subscription model API for FETCH readiness (#1348)
  • hop-based clustering (#1322)

libmoq

0.2.14 - 2026-05-05

Other

  • tighten public API surface and remove deprecated methods (#1378)
  • Revert moq-lite FETCH/Subscription API changes (#1372)
  • backport Subscription model API for FETCH readiness (#1348)
  • add OriginConsumer::wait_for_broadcast; deprecate consume_broadcast (#1340)
  • hop-based clustering (#1322)

moq-boy

0.2.9 - 2026-05-05

Other

  • Revert moq-lite FETCH/Subscription API changes (#1372)
  • relocate jemalloc helper; wire it into moq-boy (#1360)
  • backport Subscription model API for FETCH readiness (#1348)
  • hop-based clustering (#1322)

moq-cli

0.7.21 - 2026-05-05

Other

  • hop-based clustering (#1322)

moq-clock

0.10.18 - 2026-05-05

Other

  • tighten public API surface and remove deprecated methods (#1378)
  • Revert moq-lite FETCH/Subscription API changes (#1372)
  • backport Subscription model API for FETCH readiness (#1348)
  • hop-based clustering (#1322)

moq-ffi

0.2.8 - 2026-05-05

Other

  • tighten public API surface and remove deprecated methods (#1378)
  • Revert moq-lite FETCH/Subscription API changes (#1372)
  • backport Subscription model API for FETCH readiness (#1348)
  • hop-based clustering (#1322)

moq-token

0.6.0 - 2026-05-05

Other

  • hop-based clustering (#1322)

moq-relay

0.11.0 - 2026-05-05

Fixed

  • (config) accept single string or array for TOML list fields (#1377)

Other

  • tighten public API surface and remove deprecated methods (#1378)
  • Revert moq-lite FETCH/Subscription API changes (#1372)
  • add fetch_group API + TrackDynamic (#1357)
  • authenticate HTTPS callers via the cluster mTLS CA (#1350)
  • relocate jemalloc helper; wire it into moq-boy (#1360)
  • backport Subscription model API for FETCH readiness (#1348)
  • add subdomain-based slug routing for customer isolation (#1343)
  • add OriginConsumer::wait_for_broadcast; deprecate consume_broadcast (#1340)
  • hop-based clustering (#1322)

moq-token-cli

0.5.24 - 2026-05-05

Other

  • hop-based clustering (#1322)


This PR was generated with release-plz.

@moq-bot moq-bot Bot force-pushed the release-plz-2026-04-20T01-12-51Z branch 6 times, most recently from 8de4787 to 9113804 Compare April 26, 2026 16:57
@moq-bot moq-bot Bot force-pushed the release-plz-2026-04-20T01-12-51Z branch 14 times, most recently from f3c3bcc to 8e125a8 Compare May 4, 2026 21:47
@moq-bot moq-bot Bot force-pushed the release-plz-2026-04-20T01-12-51Z branch 4 times, most recently from 946c68b to c8a2f1c Compare May 5, 2026 20:39
@moq-bot moq-bot Bot force-pushed the release-plz-2026-04-20T01-12-51Z branch from c8a2f1c to f1709c7 Compare May 5, 2026 22:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants