github-actions
released this
25 Jun 14:17
·
3123 commits
to main
since this release
Minor Changes
-
849ec56c
#2286 Thanks @davidkpiano! - TheuseService(...)
hook will be deprecated, since services are also actors. In future versions, theuseActor(...)
hook should be used instead:-const [state, send] = useService(service); +const [state, send] = useActor(service);
Patch Changes
ea3aaffb
#2326 Thanks @davidkpiano! - Thesend
type returned in the tuple fromuseActor(someService)
was an incorrectnever
type; this has been fixed.