Skip to content

v1.1.26-rc.1: Release of 1.1.26-rc.1

Compare
Choose a tag to compare
@YamStranger YamStranger released this 18 Feb 18:09
· 4120 commits to main since this release

Pull requests:

Commits:

  • 3e0d991 Actors can now perform tasks conditionally (@wakaleo)

    Use the Unless class static methods and a bolean expression, e.g.

    Unless.the(items.isEmpty(), AddTodoItems.called(items)) 
    

    or use a question of type Question<Boolean>:

    Unless.the(itemsListisEmpty(), AddTodoItems.called(items)) 
    
  • 862b790 Updated smoke tests (@wakaleo)

  • b98f19f chore: updated gitattributes (@YamStranger)

  • c6122c8 fix: fixed nullpointer if json config does not exists (@YamStranger)

  • c9572c8 Actors can now perform tasks conditionally (@wakaleo)

  • e71056d fix: updated gitattributes (@YamStranger)