Stream: announcements

Topic: basic-cli 0.14.0, basic-ws 0.8.0, Roc nightlies


view this post on Zulip Anton (Aug 23 2024 at 17:07):

New releases :tada:

Make sure to use these with the latest Roc nightly. TESTING releases are gone now.

view this post on Zulip Luke Boswell (Aug 24 2024 at 00:20):

For anyone who is upgrading a basic-webserver app, please note there is a bug that may give you a cryptic error message -- https://github.com/roc-lang/roc/issues/7022.

The API has changed to enable a Task to run before server starts listening.

old

main : Request -> Task Response []

new

server : {
    init : Task Model [Exit I32 Str]_,
    respond : Request, Model -> Task Response [ServerErr Str]_,
}

Last updated: Jul 26 2025 at 12:14 UTC