diff --git a/docs/releases/1.7.txt b/docs/releases/1.7.txt
index 0901498..97fbf49 100644
a
|
b
|
For apps with migrations, ``allow_migrate`` will now get passed
|
454 | 454 | without custom attributes, methods or managers. Make sure your ``allow_migrate`` |
455 | 455 | methods are only referring to fields or other items in ``model._meta``. |
456 | 456 | |
| 457 | Behavior of ``LocMemCache`` regarding pickle errors |
| 458 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 459 | |
| 460 | An inconsistency existed in previous versions of Django regarding how pickle |
| 461 | errors are handled by different cache backends. |
| 462 | ``django.core.cache.backends.locmem.LocMemCache`` used to fail silently when |
| 463 | such an error occurs, which is inconsistent with other backends and leads to |
| 464 | cache-specific errors. This has been fixed in Django 1.7, see |
| 465 | `Ticket #21200`_ for more details. |
| 466 | |
| 467 | .. _Ticket #21200: https://code.djangoproject.com/ticket/21200 |
| 468 | |
457 | 469 | Passing ``None`` to ``Manager.db_manager()`` |
458 | 470 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
459 | 471 | |