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
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions crates/hotfix-message/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.6](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-message-v0.2.5...hotfix-message-v0.2.6) - 2025-11-24

### Other

- add test case for processing correct duplicate message ([#235](https://github.com/Validus-Risk-Management/hotfix/pull/235))

## [0.2.5](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-message-v0.2.4...hotfix-message-v0.2.5) - 2025-11-12

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/hotfix-message/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "hotfix-message"
description = "FIX messages for HotFIX."
version = "0.2.5"
version = "0.2.6"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/hotfix-status/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.1.14](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-status-v0.1.13...hotfix-status-v0.1.14) - 2025-11-24

### Other

- updated the following local packages: hotfix

## [0.1.13](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-status-v0.1.12...hotfix-status-v0.1.13) - 2025-11-19

### Other
Expand Down
4 changes: 2 additions & 2 deletions crates/hotfix-status/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "hotfix-status"
description = "Status endpoints and an optional web-based dashboard for the HotFIX engine"
version = "0.1.13"
version = "0.1.14"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand All @@ -18,7 +18,7 @@ workspace = true
ui = ["askama", "mime_guess", "rust-embed"]

[dependencies]
hotfix = { version = "0.2.8", path = "../hotfix" }
hotfix = { version = "0.2.9", path = "../hotfix" }

askama = { workspace = true, features = ["serde_json"], optional = true }
async-trait = { workspace = true }
Expand Down
11 changes: 11 additions & 0 deletions crates/hotfix/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.9](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-v0.2.8...hotfix-v0.2.9) - 2025-11-24

### Added

- better handling of resend requests ([#237](https://github.com/Validus-Risk-Management/hotfix/pull/237))

### Other

- add session-level test case for OrigSendingTime missing in dup message ([#238](https://github.com/Validus-Risk-Management/hotfix/pull/238))
- add test case for processing correct duplicate message ([#235](https://github.com/Validus-Risk-Management/hotfix/pull/235))

## [0.2.8](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-v0.2.7...hotfix-v0.2.8) - 2025-11-19

### Added
Expand Down
6 changes: 3 additions & 3 deletions crates/hotfix/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "hotfix"
description = "Buy-side FIX engine written in pure Rust"
version = "0.2.8"
version = "0.2.9"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand All @@ -19,7 +19,7 @@ mongodb = ["dep:mongodb"]
workspace = true

[dependencies]
hotfix-message = { version = "0.2.5", path = "../hotfix-message", features = ["utils-chrono"] }
hotfix-message = { version = "0.2.6", path = "../hotfix-message", features = ["utils-chrono"] }

anyhow = { workspace = true }
async-trait = { workspace = true }
Expand All @@ -40,7 +40,7 @@ tracing = { workspace = true }
uuid = { workspace = true, features = ["v4"] }

[dev-dependencies]
hotfix-message = { version = "0.2.5", path = "../hotfix-message", features = ["utils-chrono"] }
hotfix-message = { version = "0.2.6", path = "../hotfix-message", features = ["utils-chrono"] }

testcontainers = { workspace = true }
tokio = { workspace = true, features = ["test-util"] }