0.1.10
- Support for Django 3.2 pull#51 <#51> Thanks @UsamaSadiq
0.1.9
- Fix potential problem with default cache key generation (sort order,
possible identical key, quoting of paramters with
=
sign in string) pull#50 Thanks @kri-k
- New get_cache_key method for findout out what a decorated function's cache key would be. pull#44 Thanks @benweatherman
- Use a functions's
__qualname__
instead to avoid clases with functions of the same name. pull#41
- Fetch cache backend later to provide thread-safety pull#21
- Fix cache invalidation with custom key generator pull#20
- Fix when using
_refresh=False
and the.invalidate()
. pull#19
- Ability to have the memoized function return
None
as an actual result. pull#9
- Ability to pass in your own custom cache-key callable function. Thanks @jaumebecks pull#10
- Ability to specify a different-than-default cache alias Thanks @benspaulding pull#6
- Package sit-ups. Main file not a package so it wasn't distributed.
- Basic version released.