github Effect-TS/effect @effect/rpc-http@0.28.0

latest releases: @effect/opentelemetry@0.37.5, @effect/rpc-http@0.38.3, @effect/vitest@0.10.5...
5 months ago

Minor Changes

  • #2207 5a2314b Thanks @github-actions! - replace use of unit terminology with void

    For all the data types.

    Effect.unit; // => Effect.void
    Stream.unit; // => Stream.void
    
    // etc
  • #2207 6c6087a Thanks @github-actions! - move fetch options to a FiberRef

    This change makes adjusting options to fetch more composable. You can now do:

    import { pipe } from "effect";
    import * as Http from "@effect/platform/HttpClient";
    
    pipe(
      Http.request.get("https://example.com"),
      Http.client.fetchOk,
      Http.client.withFetchOptions({ credentials: "include" }),
      Http.response.text,
    );
  • #2207 2fb7d9c Thanks @github-actions! - Release Effect 3.0 🎉

Patch Changes

Don't miss a new effect release

NewReleases is sending notifications on new releases.