Skip to content

effect@2.4.15

Choose a tag to compare

@github-actions github-actions released this 27 Mar 12:16
· 2511 commits to main since this release
ed7624c

Patch Changes

  • #2407 d7688c0 Thanks @thewilkybarkid! - Add Config.duration

    This can be used to parse Duration's from environment variables:

    import { Config, Effect } from "effect"
    
    Config.duration("CACHE_TTL").pipe(
      Effect.andThen((duration) => ...)
    )
  • #2416 b3a4fac Thanks @mikearnaldi! - Collect exits on forEach interrupt of residual requests