diff options
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/releases/1.8.txt | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/docs/releases/1.8.txt b/docs/releases/1.8.txt index 6a164821b6..a4bc14332c 100644 --- a/docs/releases/1.8.txt +++ b/docs/releases/1.8.txt @@ -832,6 +832,14 @@ Django previously closed database connections between each test within a ``TestCase`` within a transaction. If some of your tests relied on the old behavior, you should have them inherit from ``TransactionTestCase`` instead. +Cleanup of the ``django.template`` namespace +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +If you've been relying on private APIs exposed in the ``django.template`` +module, you may have to import them from ``django.template.base`` instead. + +Also ``django.template.base.compile_string()`` was removed. + Miscellaneous ~~~~~~~~~~~~~ @@ -906,8 +914,6 @@ Miscellaneous delete a key if ``set()`` fails. This is necessary to ensure the ``cache_db`` session store always fetches the most current session data. -* Private API ``django.template.compile_string`` was removed. - * Private APIs ``override_template_loaders`` and ``override_with_test_loader`` in ``django.test.utils`` were removed. Override ``TEMPLATE_LOADERS`` with ``override_settings`` instead. |
