Skip to content

v0.34.1

Choose a tag to compare

@github-actions github-actions released this 18 Mar 18:46
· 61 commits to main since this release

Patch Changes

  • 41b025a: Fix trySync and tryAsync type inference for catch handlers returning union Err types

    When a catch handler returned multiple Err variants (e.g., Err<A> | Err<B>), TypeScript could not infer the union, requiring explicit return type annotations. Replaced three overloads per function with a single generic signature that infers the full catch return type.