Skip to content

Latest commit

 

History

History
63 lines (37 loc) · 3.03 KB

CHANGELOG.md

File metadata and controls

63 lines (37 loc) · 3.03 KB

CRB v0.0.27 - upcoming...

Improved

  • InContext remaning - The InContext trait has been renamed to Duty to reflect its responsibility for maintaining an agent itself.

CRB v0.0.26 - 2025-01-11

Added

  • TUI example - Actor-driven TUI app that renders the UI in a separated synchronous state.
  • Intervals - Enables actors to receive notifications at regular intervals.
  • Tagging responses - Interaction responses can now be tagged, allowing actors to handle responses in various ways.
  • Supervisor example - Example of a supervisor that respawns a child actor or self-terminates after a child agent fails for the second time.

Improved

  • Fetcher and Responder - Introduced more intuitive names for interaction components.
  • Equip for tuples - The Equip trait is now implemented for tuples with an address, simplifying links for spawned agents.

CRB v0.0.25 - 2025-01-09

Added

  • Support equipments - With the equip() method call an Address could be wrapped with a struct.

Improved

  • InContext - InContext handle is more effective and doesn't wrap a command into an extra boxed event.

CRB v0.0.24 - 2025-01-07

Added

  • Actor and task morphing - Implemented morphing (molting) from one form (structure) to another; details in the example.

Improved

  • Projects list - Added a list of projects that are built using the framework.
  • Consumption - The actor structure can be completely consumed to produce Output.
  • Relaxed requirements - The return type no longer requires Default and Clone implementations for the type.
  • Efficient finalizers - Finalizers use references to Output.

CRB v0.0.23 - 2025-01-04

Added

  • Finalizers - Added actor finalizers, which enable running callbacks when an actor finishes. This simplifies the process for a supervisor to receive notifications upon actor termination.
  • Error tracking method - Added a failed() method to the Agent trait, which is called for each unhandled error in either the actor's handlers or the state machine's handlers.
  • Awaiting agents in-place - Added a separate Runnable trait that allows any hybrid task (Agent) to be executed as a Future and to obtain the result.
  • Repair handling - Added a repair() method to the DoAsync and DoSync states, enabling task recovery in case of an error.
  • Access to an address - Added capability for AgentSession context to access its own Address through the implementation of the Deref trait.

Improved

  • Hybryd actors - Stabilized task transitions between state-machine states and actor states and vice versa.
  • Hybryd runtimes - Debugged the ability of the state-machine to execute synchronous DoSync and asynchronous DoAsync blocks in any sequence, or switching to actor mode.