Releases: epicweb-dev/cachified
Releases · epicweb-dev/cachified
v5.5.0
5.5.0 (2025-02-07)
Features
v5.4.0
5.4.0 (2025-02-07)
Features
v5.3.0
5.3.0 (2025-02-07)
Features
v5.2.1
5.2.1 (2025-02-07)
Bug Fixes
- resolve batch with pending values as well (b038f3a)
v5.2.0
5.2.0 (2024-05-08)
Features
- waitUntil: support background tasks as Promise (#103) (3edb5dd)
v5.1.3
5.1.3 (2024-05-08)
Bug Fixes
- Reference global object using globalThis (#102) (0a66e49)
v5.1.2
5.1.2 (2024-02-12)
Bug Fixes
- ts: loosen default cache value (7869a34)
v5.1.1
5.1.1 (2024-02-09)
Bug Fixes
- ts: loosen return types for cache implementations (5111248)
v5.1.0
5.1.0 (2024-02-09)
Features
- ts: add generic to Cache type (07640f3)
v5.0.0
5.0.0 (2024-02-09)
Bug Fixes
- types: prefer type inference from options#getFreshValue over reporter (#93) (b4831fe)
Features
BREAKING CHANGES
- cachified now requires Node v18+
- this removes all built-in adapters in favor of separate packages. You'll need to use those packages for adapters going forward. Please see the updated docs for more info.
- types:
CachifiedOptions#reporter
has been removed in favor of passing a reporter as second argument to cachified
MIGRATION: Change cachified({ reporter: myReporter /* ... */ })
to cachified({ /* ... */ }, myReporter)