1.2.2.txt 1.1 KB

1234567891011121314151617181920212223242526272829
  1. ==========================
  2. Django 1.2.2 release notes
  3. ==========================
  4. Welcome to Django 1.2.2!
  5. This is the second "bugfix" release in the Django 1.2 series,
  6. improving the stability and performance of the Django 1.2 codebase.
  7. Django 1.2.2 maintains backwards compatibility with Django
  8. 1.2.1, but contain a number of fixes and other
  9. improvements. Django 1.2.2 is a recommended upgrade for any
  10. development or deployment currently using or targeting Django 1.2.
  11. For full details on the new features, backwards incompatibilities, and
  12. deprecated features in the 1.2 branch, see the :doc:`/releases/1.2`.
  13. One new feature
  14. ===============
  15. Ordinarily, a point release would not include new features, but in the
  16. case of Django 1.2.2, we have made an exception to this rule.
  17. In order to test a bug fix that forms part of the 1.2.2 release, it
  18. was necessary to add a feature -- the ``enforce_csrf_checks`` flag --
  19. to the :ref:`test client <test-client>`. This flag forces
  20. the test client to perform full CSRF checks on forms. The default
  21. behavior of the test client hasn't changed, but if you want to do
  22. CSRF checks with the test client, it is now possible to do so.