Skip to content

Releases: natemoo-re/ultrafetch

v0.4.0

16 Nov 23:36
402409b
Compare
Choose a tag to compare

Minor Changes

  • d5eb3b5: Implement support for the Vary header

v0.3.2

16 Nov 22:38
0aafaf7
Compare
Choose a tag to compare

Patch Changes

  • 288a14e: ensure revalidated responses are properly stored

v0.3.1

07 Nov 01:58
d5885bb
Compare
Choose a tag to compare

Patch Changes

  • 6c90ef1: Use request headers when calculating cache key. Ensure cache: 'no-store' is repsected.

v0.3.0

02 Aug 14:33
14ca9d4
Compare
Choose a tag to compare

Minor Changes

  • 64d9947: Improve request caching technique

v0.2.1

01 Aug 12:17
ed95a40
Compare
Choose a tag to compare

Patch Changes

  • 48b691a: Cleaner build output, bundled declaration file

v0.2.0

01 Aug 03:04
fc1a893
Compare
Choose a tag to compare

Minor Changes

  • 7c3e04b: New, modular structure allows extension of existing fetch implementations with a custom cache.

    import { withCache } from "ultrafetch";
    
    const enhancedFetch = withCache(fetch, { cache: new Map() });