Skip to content

Fluxzero 1.227.0

Choose a tag to compare

@github-actions github-actions released this 19 Jul 15:24

1.227.0 (2026-07-19)

Features

  • tracking: serialize async batch handling by segment (d5c7d10)

    Queue handler invocations for messages that share a non-null serialized segment within the same consumer batch. Messages with different or missing segments remain parallel, while nested asynchronous handler results preserve per-segment ordering.

Performance Improvements

  • tracking: optimize outstanding async request tracking (76edd1b)

    Use a concurrent set instead of a copy-on-write list so completing each async handler no longer copies the entire outstanding-request collection. Preserve shutdown waiting behavior with focused regression coverage.