diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt
a
|
b
|
|
1386 | 1386 | default. For more information, see the :ref:`messages documentation |
1387 | 1387 | <ref-contrib-messages>`. |
1388 | 1388 | |
| 1389 | .. versionchanged:: 1.2 |
| 1390 | The auth context processor was moved in this release from its old location |
| 1391 | ``django.core.context_processors.auth`` to |
| 1392 | ``django.contrib.auth.context_processors.auth``. |
| 1393 | |
1389 | 1394 | .. setting:: TEMPLATE_DEBUG |
1390 | 1395 | |
1391 | 1396 | TEMPLATE_DEBUG |
diff --git a/docs/ref/templates/api.txt b/docs/ref/templates/api.txt
a
|
b
|
|
325 | 325 | The ``'messages'`` context processor was added. For more information, see |
326 | 326 | the :ref:`messages documentation <ref-contrib-messages>`. |
327 | 327 | |
| 328 | .. versionchanged:: 1.2 |
| 329 | The auth context processor was moved in this release from its old location |
| 330 | ``django.core.context_processors.auth`` to |
| 331 | ``django.contrib.auth.context_processors.auth``. |
| 332 | |
328 | 333 | Each processor is applied in order. That means, if one processor adds a |
329 | 334 | variable to the context and a second processor adds a variable with the same |
330 | 335 | name, the second will override the first. The default processors are explained |
… |
… |
|
378 | 383 | permissions that the currently logged-in user has. |
379 | 384 | |
380 | 385 | .. versionchanged:: 1.2 |
| 386 | This context processor was moved in this release from |
| 387 | ``django.core.context_processors.auth`` to its current location. |
| 388 | |
| 389 | .. versionchanged:: 1.2 |
381 | 390 | Prior to version 1.2, the ``messages`` variable was a lazy accessor for |
382 | 391 | ``user.get_and_delete_messages()``. It has been changed to include any |
383 | 392 | messages added via the :ref:`messages framework <ref-contrib-messages>`. |