Releases: vitalets/global-cache
Releases · vitalets/global-cache
Release list
Release 0.5.1
- fix remaining race condition when a key is recomputed from persistent storage (stale signature or expired TTL) by concurrent callers.
Release 0.5.0
- fix race condition when computing values (#6).
- increase request body size limit from 100kb to 10mb to support larger cached values (#5).
- add
cleanupoption toglobalCache.wrap()for reliable post-run cleanup in VSCode and UI mode (#4). - add
globalCache.delete(key)to remove a cached entry and force re-computation on the nextget()call (#3).
Release 0.4.1
- Move documentation to packages readme.
- Setup trusted publishing.
Release 0.4.0
- minor: use live config values to better support VSCode extension.
- patch: make
debuginitialize lazily to pick up env vars in runtime. - patch: add root route to the global cache server.
- patch: improve logging.
Release 0.3.0
- rename
globalCache.clear()toglobalCache.clearTestRun().
Release 0.2.2
Release 0.2.1
- chore: better error message for missing setup
Release 0.2.0
- feat: store value metadata on the file system
- feat: check signature to invalidate cache after code changes