Skip to content

Releases: vladopajic/go-actor

v1.1.0

14 Sep 10:52
8d41e42

Choose a tag to compare

What's Changed

This is the first release of go-actor following the v1.y.z versioning scheme. The library has matured through previous iterations, demonstrating stability and validated concepts.

With this release, we’re confident that go-actor is ready for reliable use in production.

v0.9.6

19 Mar 09:39
b23b73b

Choose a tag to compare

What's Changed

Full Changelog: v0.9.5...v0.9.6

v0.9.5

17 Feb 14:53
45d8d5c

Choose a tag to compare

What's Changed

  • fix(mailbox): potential data not received when stopped while concurrently sending by @vladopajic in #108

Full Changelog: v0.9.4...v0.9.5

v0.9.4

17 Feb 08:51
8dc89d6

Choose a tag to compare

What's Changed

Full Changelog: v0.9.3...v0.9.4

v0.9.3

31 Jan 14:46

Choose a tag to compare

What's Changed

  • combine: only call Stop() once on underlying actors by @vladopajic in #94

Full Changelog: v0.9.2...v0.9.3

v0.9.2

23 Jan 15:45

Choose a tag to compare

What's Changed

  • dep: deque lib update by @vladopajic in #89
  • fix: OptOnStopCombined not called when there was 1 actor combined by @vladopajic in #92
  • combine: when 0 actors are provided Idle actor will be created by @vladopajic in #93

Full Changelog: v0.9.1...v0.9.2

v0.9.1

18 Nov 15:39
2f5cc93

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.9.0...v0.9.1

v0.9.0

09 Feb 12:58
b18ff4a

Choose a tag to compare

Changes:

  • go version bump to v1.22
  • simplify mailbox capacity options (#72)

Braking changes:

  • simplify mailbox capacity options (#72) - was a breaking change.
    OptMinCapacity and OptMailbox where removed in favor of single option for setting capacity OptCapacity.

Full Changelog: v0.8.4...v0.9.0

v0.8.4

20 Jan 10:14
8c04049

Choose a tag to compare

Changes:

  • Add new option OptOnStartCombined(func (Context)) that can be used as option for combined actor

Full Changelog: v0.8.3...v0.8.4

v0.8.3

15 Nov 10:29
58821e9

Choose a tag to compare

Changes:

  • Mailbox receiveC and sendC are created with small buffer to allow better asynchronicity
  • Mailbox worker writes directly to receiveC if there is space in buffer
  • Panic will be raised when Mailbox.Send(...) is called for non-running mailbox