Skip to content

@flags-sdk/edge-config@0.2.0

Choose a tag to compare

@github-actions github-actions released this 02 Jul 10:52
f9c2bb3

Minor Changes

  • #403 4705ac6 Thanks @dferber90! - Simplify usage and improve evaluation of the Edge Config adapter

    When multiple flags share the same Edge Config adapter, the SDK now evaluates them in a single batched call instead of one by one.

    You can also now pass the adapter by reference instead of calling it:

    import { edgeConfigAdapter } from "@flags-sdk/edge-config";
    
    // before (still supported)
    flag({ key: "example", adapter: edgeConfigAdapter() });
    
    // now also works
    flag({ key: "example", adapter: edgeConfigAdapter });