Obelisk 0.25.4 and handling of WASM traps
obeli.sk·3h·

2025-10-06 Obelisk is an open-source deterministic workflow engine that runs, stores, and replays WASM-based workflows using SQLite.

The headline change in v0.25: every function in workflows and activities is now required to be fallible. Obelisk maps execution-failed errors into the called function’s return type. This ensures traps and errors are handled explicitly instead of silently breaking execution.

Breaking API Changes

Each function invoked by Obelisk, whether a workflow or an activity, must be fallible. More precisely, it means that the return type must be one of following:

  • result or result<T> where T is any success type, e.g. string or list<u32> or even a none type (_) In Rust, the execution failure willbe represented as Err(())
  • `result<T, s…

Similar Posts

Loading similar posts...