Skip to content

chore: release#306

Merged
davidsteiner merged 1 commit intomainfrom
release-plz-2026-02-06T15-31-20Z
Feb 6, 2026
Merged

chore: release#306
davidsteiner merged 1 commit intomainfrom
release-plz-2026-02-06T15-31-20Z

Conversation

@github-actions
Copy link
Contributor

@github-actions github-actions bot commented Feb 6, 2026

🤖 New release

  • hotfix-message: 0.3.0 -> 0.3.1 (✓ API compatible changes)
  • hotfix: 0.8.0 -> 0.9.0 (⚠ API breaking changes)
  • hotfix-web: 0.1.12 -> 0.1.13 (✓ API compatible changes)
  • hotfix-web-ui: 0.1.13 -> 0.1.14

hotfix breaking changes

--- failure enum_discriminants_undefined_non_unit_variant: enum's variants no longer have defined discriminants due to non-unit variant ---

Description:
An enum's variants no longer have well-defined discriminant values due to a tuple or struct variant in the enum. This breaks downstream code that accesses discriminants via a numeric cast like `as isize`.
        ref: https://doc.rust-lang.org/reference/items/enumerations.html#assigning-discriminant-values
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.46.0/src/lints/enum_discriminants_undefined_non_unit_variant.ron

Failed in:
  enum InboundDecision in /tmp/.tmpXS5coV/hotfix/crates/hotfix/src/application.rs:37

--- failure enum_no_repr_variant_discriminant_changed: enum variant had its discriminant change value ---

Description:
The enum's variant had its discriminant value change. This breaks downstream code that used its value via a numeric cast like `as isize`.
        ref: https://doc.rust-lang.org/reference/items/enumerations.html#assigning-discriminant-values
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.46.0/src/lints/enum_no_repr_variant_discriminant_changed.ron

Failed in:
  variant InboundDecision::TerminateSession 1 -> 2 in /tmp/.tmpXS5coV/hotfix/crates/hotfix/src/application.rs:43

--- failure enum_variant_added: enum variant added on exhaustive enum ---

Description:
A publicly-visible enum without #[non_exhaustive] has a new variant.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#enum-variant-new
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.46.0/src/lints/enum_variant_added.ron

Failed in:
  variant InboundDecision:Reject in /tmp/.tmpXS5coV/hotfix/crates/hotfix/src/application.rs:39
  variant SendError:SessionGone in /tmp/.tmpXS5coV/hotfix/crates/hotfix/src/session/error.rs:52
  variant SendError:SessionGone in /tmp/.tmpXS5coV/hotfix/crates/hotfix/src/session/error.rs:52

--- 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.46.0/src/lints/enum_variant_missing.ron

Failed in:
  variant SendError::ConfirmationLost, previously in file /tmp/.tmpTCfHFu/hotfix/src/session/error.rs:40
  variant SendError::ConfirmationLost, previously in file /tmp/.tmpTCfHFu/hotfix/src/session/error.rs:40
  variant SessionError::InvalidSchedule, previously in file /tmp/.tmpTCfHFu/hotfix/src/session/error.rs:7

--- failure method_requires_different_generic_type_params: method now requires a different number of generic type parameters ---

Description:
A method now requires a different number of generic type parameters than it used to. Uses of this method that supplied the previous number of generic types will be broken.
        ref: https://doc.rust-lang.org/reference/items/generics.html
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.46.0/src/lints/method_requires_different_generic_type_params.ron

Failed in:
  hotfix::initiator::Initiator::start takes 0 generic types instead of 1, in /tmp/.tmpXS5coV/hotfix/crates/hotfix/src/initiator.rs:30
  hotfix::session::session_ref::InternalSessionRef::new takes 0 generic types instead of 1, in /tmp/.tmpXS5coV/hotfix/crates/hotfix/src/session/session_ref.rs:29
  hotfix::session::InternalSessionRef::new takes 0 generic types instead of 1, in /tmp/.tmpXS5coV/hotfix/crates/hotfix/src/session/session_ref.rs:29

--- failure trait_allows_fewer_generic_type_params: trait now allows fewer generic type parameters ---

Description:
A trait now allows fewer generic type parameters than it used to. Uses of this trait that supplied all previously-supported generic types will be broken.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#trait-new-parameter-no-default
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.46.0/src/lints/trait_allows_fewer_generic_type_params.ron

Failed in:
  trait Application allows 2 -> 0 generic types in /tmp/.tmpXS5coV/hotfix/crates/hotfix/src/application.rs:6
  trait Application allows 2 -> 0 generic types in /tmp/.tmpXS5coV/hotfix/crates/hotfix/src/application.rs:6

--- failure trait_associated_type_added: non-sealed public trait added associated type without default value ---

Description:
A non-sealed trait has gained an associated type without a default value, which breaks downstream implementations of the trait
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#trait-new-item-no-default
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.46.0/src/lints/trait_associated_type_added.ron

Failed in:
  trait associated type hotfix::application::Application::Outbound in file /tmp/.tmpXS5coV/hotfix/crates/hotfix/src/application.rs:7
  trait associated type hotfix::Application::Outbound in file /tmp/.tmpXS5coV/hotfix/crates/hotfix/src/application.rs:7

--- 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.46.0/src/lints/trait_missing.ron

Failed in:
  trait hotfix::message::InboundMessage, previously in file /tmp/.tmpTCfHFu/hotfix/src/message.rs:28
Changelog

hotfix-message

0.3.1 - 2026-02-06

Added

  • allow errors in message parsing and support business reject outcomes (#304)

hotfix

0.9.0 - 2026-02-06

Added

  • allow errors in message parsing and support business reject outcomes (#304)
  • replace anyhow errors in session layer with proper error variants (#302)

hotfix-web

0.1.13 - 2026-02-06

Added

  • replace anyhow errors in session layer with proper error variants (#302)

hotfix-web-ui

0.1.14 - 2026-02-06

Other

  • updated the following local packages: hotfix


This PR was generated with release-plz.

@davidsteiner davidsteiner reopened this Feb 6, 2026
@codecov
Copy link

codecov bot commented Feb 6, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 90.73%. Comparing base (c7eecd0) to head (686dee2).
⚠️ Report is 1 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #306   +/-   ##
=======================================
  Coverage   90.73%   90.73%           
=======================================
  Files          86       86           
  Lines        8732     8732           
=======================================
  Hits         7923     7923           
  Misses        809      809           
Flag Coverage Δ
core 90.60% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@davidsteiner davidsteiner merged commit 72a3616 into main Feb 6, 2026
7 checks passed
@davidsteiner davidsteiner deleted the release-plz-2026-02-06T15-31-20Z branch February 6, 2026 15:47
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.

1 participant