Skip to content

Release v1.1.0

Compare
Choose a tag to compare
@github-actions github-actions released this 30 May 06:30
· 304 commits to main since this release

Minor Changes

  • 56a8c29: Restructure utils and enhance caching system:

    • Move utils.ts to utils/index.ts for better organization
    • Replace cache-utils.ts with improved utils/cache.ts implementation
    • Add namespace support to cache entries for better management
    • Implement stale cache cleanup functionality
    • Enhance serialization with better handling of arrays and primitives
    • Update package.json exports to reflect new file structure
  • 839e2e7: feat: add persistent caching utilities with IndexedDB support

    Implement a centralized caching mechanism that:

    • Provides both in-memory and persistent IndexedDB caching
    • Includes deterministic cache key generation with xxhash
    • Supports automatic timestamp tracking for cache entries
    • Prevents duplicate parallel processing with runtime cache
    • Adds xxhash-wasm dependency for efficient hashing

    This utility will improve performance by avoiding redundant
    expensive operations across the application.

Full Changelog: 1.0.2...1.1.0