Ticket #23082: 23082-release-note.diff

File 23082-release-note.diff, 1.0 KB (added by Tim Graham, 10 years ago)
  • docs/releases/1.7.txt

    diff --git a/docs/releases/1.7.txt b/docs/releases/1.7.txt
    index 1cac7ed..a3af3f4 100644
    a b Miscellaneous  
    14051405  method that is registered with the check framework. If you have an existing
    14061406  method called ``check()`` on one of these objects, you will need to rename it.
    14071407
     1408* As noted above in the "Cache" section of "Minor Features", defining the
     1409  :setting:`TIMEOUT <CACHES-TIMEOUT>` argument of the
     1410  :setting:`CACHES` setting as ``None`` will set the cache keys as
     1411  "non-expiring". Previously, with the memcache backend, a
     1412  :setting:`TIMEOUT <CACHES-TIMEOUT>` of ``0`` would set non-expiring keys,
     1413  but this was inconsistent with the set-and-expire (i.e. no caching) behavior
     1414  of ``set("key", "value", timeout=None)``. If you want non-expiring keys,
     1415  please update your settings to use ``None`` instead of ``0`` as the latter
     1416  now designates set-and-expire in the settings as well.
     1417
    14081418.. _deprecated-features-1.7:
    14091419
    14101420Features deprecated in 1.7
Back to Top