Skip to content

effect@3.2.2

Choose a tag to compare

@github-actions github-actions released this 21 May 23:59
· 2245 commits to main since this release
dfc87e2

Patch Changes

  • #2787 5d9266e Thanks @mikearnaldi! - Prohibit name clashes in Effect.Tag

    The following now correctly flags a type error given that the property context exists already in Tag:

    import { Effect } from "effect";
    
    class LoaderArgs extends Effect.Tag("@services/LoaderContext")<
      LoaderArgs,
      { context: number }
    >() {}
  • #2797 9f8122e Thanks @mikearnaldi! - Improve internalization of functions to clean stack traces

  • #2798 6a6f670 Thanks @mikearnaldi! - Avoid eager read of the stack when captured by a span