Skip to content

Latest commit

 

History

History
44 lines (28 loc) · 1.1 KB

File metadata and controls

44 lines (28 loc) · 1.1 KB

CHANGES

2.3.0 (2026-03-18)

  • Added cache_contains() for read-only key lookup.
  • Changed cross-loop cache access to auto-reset and rebind to the current event loop.
  • Added AlruCacheLoopResetWarning when an auto-reset happens due to event loop change.
  • Forwarded cache_close(wait=...) for bound methods.

2.2.0 (2026-02-20)

  • Added a jitter parameter to randomise TTL.
  • Raise RuntimeError when cache is used by different loop.

2.1.0 (2026-01-17)

  • Fixed cancelling of task when all tasks waiting on it have been cancelled.
  • Fixed DeprecationWarning from asyncio.iscoroutinefunction.

2.0.5 (2025-03-16)

  • Fixed a memory leak on exceptions and minor performance improvement.

2.0.4 (2023-07-27)

  • Fixed an error when there are pending tasks while calling .cache_clear().

2.0.3 (2023-07-07)

  • Fixed a KeyError that could occur when using ttl with maxsize.
  • Dropped typing-extensions dependency in Python 3.11+.