Skip to content

Releases: vitalets/global-cache

Release 0.5.1

Choose a tag to compare

@github-actions github-actions released this 18 Jun 17:20
  • fix remaining race condition when a key is recomputed from persistent storage (stale signature or expired TTL) by concurrent callers.

Release 0.5.0

Choose a tag to compare

@github-actions github-actions released this 05 Jun 15:52
  • fix race condition when computing values (#6).
  • increase request body size limit from 100kb to 10mb to support larger cached values (#5).
  • add cleanup option to globalCache.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 next get() call (#3).

Release 0.4.1

Choose a tag to compare

@github-actions github-actions released this 09 Mar 11:18
  • Move documentation to packages readme.
  • Setup trusted publishing.

Release 0.4.0

Choose a tag to compare

@vitalets vitalets released this 06 Dec 14:47
  • minor: use live config values to better support VSCode extension.
  • patch: make debug initialize lazily to pick up env vars in runtime.
  • patch: add root route to the global cache server.
  • patch: improve logging.

Release 0.3.0

Choose a tag to compare

@vitalets vitalets released this 15 Oct 09:09
  • rename globalCache.clear() to globalCache.clearTestRun().

Release 0.2.2

Choose a tag to compare

@vitalets vitalets released this 03 Sep 18:50
  • feat: better signature checks.

Release 0.2.1

Choose a tag to compare

@vitalets vitalets released this 26 Aug 11:01
  • chore: better error message for missing setup

Release 0.2.0

Choose a tag to compare

@vitalets vitalets released this 15 Aug 10:00
  • feat: store value metadata on the file system
  • feat: check signature to invalidate cache after code changes