Skip to content

Releases: caching-tools/next-shared-cache

@neshca/cache-handler@1.9.0

26 Nov 11:04
91ad155
Compare
Choose a tag to compare

Minor Changes

  • 6bae69a: Updated the documentation and peer dependencies to explicitly state that only Next.js versions 13.5.x and 14.x.x are supported. Modified the default estimateExpireAge function to perform the calculation as (staleAge) => staleAge * 1.5.

@neshca/cache-handler@1.8.1

18 Oct 08:03
9ef96c5
Compare
Choose a tag to compare

Patch Changes

  • 3a91160: Refactor monorepo setup and release workflow. No functional changes.

@neshca/cache-handler@1.8.0

17 Oct 07:32
a5fb12e
Compare
Choose a tag to compare

Minor Changes

  • b91f759: Add the new neshClassicCache function to the @neshca/cache-handler/functions module allowing to cache the result of expensive operations in the getServerSideProps and a Next.js Pages API routes.

@neshca/cache-handler@1.7.4

09 Oct 07:40
dbdc4c8
Compare
Choose a tag to compare

Patch Changes

  • 3cd218c: Fix neshCache JSDocs time interval description. It was incorrectly stated in milliseconds. Now it is stated in seconds.

@neshca/cache-handler@1.7.3

18 Sep 12:54
6eee622
Compare
Choose a tag to compare

Patch Changes

  • 972ed99: Add .npmignore file to exclude unnecessary files from the package.

@neshca/cache-handler@1.7.2

17 Sep 11:12
3ab95a3
Compare
Choose a tag to compare

Patch Changes

  • be27549: Add error handling for keyExpirationStrategy and prerenderManifest parsing.

@neshca/cache-handler@1.7.1

11 Sep 11:47
5f830e2
Compare
Choose a tag to compare

Patch Changes

  • 432a918: Fix an error when working with the fetch-cache in the registerInitialCache.

@neshca/server@1.1.2

27 Aug 15:19
fc56ac6
Compare
Choose a tag to compare

Patch Changes

  • 435a4fe: Implement delete functionality.

@neshca/cache-handler@1.6.1

27 Aug 15:19
fc56ac6
Compare
Choose a tag to compare

Patch Changes

  • 435a4fe: Fix delete functionality for all built-in Handlers and enhance debug logging.

@neshca/cache-handler@1.6.0

23 Aug 17:49
f060e65
Compare
Choose a tag to compare

Minor Changes

  • 7b2abf9: Refactor search index creation in the redis-stack Handler

    Minor Changes

    @neshca/cache-handler/redis-stack
    • Move search index creation to revalidateTag method:
      • Ensure index existence before searching by creating it inside revalidateTag with a randomized name to avoid collisions
      • Allow synchronous Handler creation without waiting for the client to connect