Skip to content

Releases: JuliaActors/Actors.jl

v0.2.5

28 Jul 09:59
Compare
Choose a tag to compare

Actors v0.2.5

Diff since v0.2.4

  • mainly one bugfix in stop() function, see commit 94cdfbd
  • Juliacon21 slides, code, captions

Closed issues:

  • Detect and handle node failures (#24)

Merged pull requests:

v0.2.4

28 Apr 15:34
Compare
Choose a tag to compare

Actors v0.2.4

Diff since v0.2.3

  • supervisors can detect and handle node failures,
  • checkpointing (first draft),
  • enhanced error handling documentation,
  • reorganized documentation (diátaxis framework)

Closed issues:

  • Basic Error Handling (#16)
  • Specify Actors v0.3 - Error Handling (#18)
  • Improve Registry (#23)

v0.2.3

13 Feb 14:10
Compare
Choose a tag to compare

Actors v0.2.3

Diff since v0.2.2

**

  • improved diagnostics
  • basic error handling:
    • connect actors,
    • monitor actors and tasks,
    • supervise actors and tasks

Closed issues:

  • Wait for all Actors to complete before exiting Julia (#20)

v0.2.2

20 Dec 17:26
Compare
Choose a tag to compare

Actors v0.2.2

Diff since v0.2.1

  • introduced @msg macro for easy message definition,
  • updated examples

v0.2.1

19 Dec 10:36
Compare
Choose a tag to compare

Actors v0.2.1

Diff since v0.2.0

  • partial function application with Bhv much faster

Closed issues:

  • Develop v0.2, Usability (#10)

v0.2.0

17 Dec 18:11
Compare
Choose a tag to compare

Actors v0.2.0

Diff since v0.1.8

  • improved interface,
  • flexibility in expressing actor behavior with partial function application and functors,
  • actor protocol improved,
  • complete documentation with more examples.

v0.1.8

10 Dec 12:21
Compare
Choose a tag to compare

Actors v0.1.8

Diff since v0.1.7

  • object-oriented style: any callable object can be given as behavior
  • functional (as before) and object-oriented style are equivalent

Closed issues:

  • Actors Application Interface (#11)

v0.1.7

05 Dec 15:14
Compare
Choose a tag to compare

Actors v0.1.7

Diff since v0.1.6

  • bugfix release: fixed a bug in receive caused by a sporadic time delay between fetch(ch) and isready(ch)

v0.1.6

03 Dec 12:23
Compare
Choose a tag to compare

Actors v0.1.6

Diff since v0.1.5

  • change links given in Bhv arguments to remote when spawning distributed actors,
  • change local links to remote when sent to distributed actors

v0.1.5

30 Nov 08:17
Compare
Choose a tag to compare

Actors v0.1.5

Diff since v0.1.4

  • renamed Func to Bhv (more appropriate)