Skip to content

effect@2.4.11

Choose a tag to compare

@github-actions github-actions released this 22 Mar 03:02
· 2542 commits to main since this release
706b64d

Patch Changes

  • #2384 2f488c4 Thanks @tim-smart! - update dependencies

  • #2381 37ca592 Thanks @tim-smart! - add fiber ref for disabling the tracer

    You can use it with the Effect.withTracerEnabled api:

    import { Effect } from "effect";
    
    Effect.succeed(42).pipe(
      Effect.withSpan("my-span"),
      // the span will not be registered with the tracer
      Effect.withTracerEnabled(false),
    );
  • #2383 317b5b8 Thanks @tim-smart! - add Duration.isFinite api, to determine if a duration is not Infinity