Skip to content

Latest commit

 

History

History
72 lines (50 loc) · 1.74 KB

CHANGELOG.rst

File metadata and controls

72 lines (50 loc) · 1.74 KB

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

0.1.8

  • New get_cache_key method for findout out what a decorated function's cache key would be. pull#44 Thanks @benweatherman

0.1.7

  • Use a functions's __qualname__ instead to avoid clases with functions of the same name. pull#41

0.1.6

  • Fetch cache backend later to provide thread-safety pull#21
  • Fix cache invalidation with custom key generator pull#20

0.1.5

  • Fix when using _refresh=False and the .invalidate(). pull#19

0.1.4

  • Ability to have the memoized function return None as an actual result. pull#9

0.1.3

  • Ability to pass in your own custom cache-key callable function. Thanks @jaumebecks pull#10

0.1.2

  • Ability to specify a different-than-default cache alias Thanks @benspaulding pull#6

0.1.1

  • Package sit-ups. Main file not a package so it wasn't distributed.

0.1.0

  • Basic version released.