PageRenderTime 82ms CodeModel.GetById 25ms RepoModel.GetById 24ms app.codeStats 1ms

/docs/releases/1.0.1.txt

https://code.google.com/p/mango-py/
Plain Text | 65 lines | 49 code | 16 blank | 0 comment | 0 complexity | c52f6ee656e1bdf966a04e96455e67cc MD5 | raw file
Possible License(s): BSD-3-Clause
  1. ==========================
  2. Django 1.0.1 release notes
  3. ==========================
  4. Welcome to Django 1.0.1!
  5. This is the first "bugfix" release in the Django 1.0 series, improving
  6. the stability and performance of the Django 1.0 codebase. As such,
  7. Django 1.0.1 contains no new features (and, pursuant to `our
  8. compatibility policy`_, maintains backwards compatibility with Django
  9. 1.0), but does contain a number of fixes and other
  10. improvements. Django 1.0.1 is a recommended upgrade for any
  11. development or deployment currently using or targeting Django 1.0.
  12. Fixes and improvements in Django 1.0.1
  13. ======================================
  14. Django 1.0.1 contains over two hundred fixes to the original Django
  15. 1.0 codebase; full details of every fix are available in `the
  16. Subversion log of the 1.0.X branch`_, but here are some of the
  17. highlights:
  18. * Several fixes in ``django.contrib.comments``, pertaining to RSS
  19. feeds of comments, default ordering of comments and the XHTML and
  20. internationalization of the default templates for comments.
  21. * Multiple fixes for Django's support of Oracle databases, including
  22. pagination support for GIS QuerySets, more efficient slicing of
  23. results and improved introspection of existing databases.
  24. * Several fixes for query support in the Django object-relational
  25. mapper, including repeated setting and resetting of ordering and
  26. fixes for working with ``INSERT``-only queries.
  27. * Multiple fixes for inline forms in formsets.
  28. * Multiple fixes for ``unique`` and ``unique_together`` model
  29. constraints in automatically-generated forms.
  30. * Fixed support for custom callable ``upload_to`` declarations when
  31. handling file uploads through automatically-generated forms.
  32. * Fixed support for sorting an admin change list based on a callable
  33. attributes in ``list_display``.
  34. * A fix to the application of autoescaping for literal strings passed
  35. to the ``join`` template filter. Previously, literal strings passed
  36. to ``join`` were automatically escaped, contrary to `the documented
  37. behavior for autoescaping and literal strings`_. Literal strings
  38. passed to ``join`` are no longer automatically escaped, meaning you
  39. must now manually escape them; this is an incompatibility if you
  40. were relying on this bug, but not if you were relying on escaping
  41. behaving as documented.
  42. * Improved and expanded translation files for many of the languages
  43. Django supports by default.
  44. * And as always, a large number of improvements to Django's
  45. documentation, including both corrections to existing documents and
  46. expanded and new documentation.
  47. .. _our compatibility policy: http://docs.djangoproject.com/en/dev/misc/api-stability/
  48. .. _the Subversion log of the 1.0.X branch: http://code.djangoproject.com/log/django/branches/releases/1.0.X
  49. .. _the documented behavior for autoescaping and literal strings: http://docs.djangoproject.com/en/dev/topics/templates/#string-literals-and-automatic-escaping