1.5.txt 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805
  1. ========================
  2. Django 1.5 release notes
  3. ========================
  4. Welcome to Django 1.5!
  5. These release notes cover the `new features`_, as well
  6. as some `backwards incompatible changes`_ you'll want to be aware of
  7. when upgrading from Django 1.4 or older versions. We've also dropped some
  8. features, which are detailed in :doc:`our deprecation plan
  9. </internals/deprecation>`, and we've `begun the deprecation process for some
  10. features`_.
  11. .. _`new features`: `What's new in Django 1.5`_
  12. .. _`backwards incompatible changes`: `Backwards incompatible changes in 1.5`_
  13. .. _`begun the deprecation process for some features`: `Features deprecated in 1.5`_
  14. Overview
  15. ========
  16. The biggest new feature in Django 1.5 is the `configurable User model`_. Before
  17. Django 1.5, applications that wanted to use Django's auth framework
  18. (:mod:`django.contrib.auth`) were forced to use Django's definition of a "user".
  19. In Django 1.5, you can now swap out the ``User`` model for one that you write
  20. yourself. This could be a simple extension to the existing ``User`` model -- for
  21. example, you could add a Twitter or Facebook ID field -- or you could completely
  22. replace the ``User`` with one totally customized for your site.
  23. Django 1.5 is also the first release with `Python 3 support`_! We're labeling
  24. this support "experimental" because we don't yet consider it production-ready,
  25. but everything's in place for you to start porting your apps to Python 3.
  26. Our next release, Django 1.6, will support Python 3 without reservations.
  27. Other notable new features in Django 1.5 include:
  28. * `Support for saving a subset of model's fields`_ -
  29. :meth:`Model.save() <django.db.models.Model.save()>` now accepts an
  30. ``update_fields`` argument, letting you specify which fields are
  31. written back to the database when you call ``save()``. This can help
  32. in high-concurrency operations, and can improve performance.
  33. * Better `support for streaming responses <#explicit-streaming-responses>`_ via
  34. the new :class:`~django.http.StreamingHttpResponse` response class.
  35. * `GeoDjango`_ now supports PostGIS 2.0.
  36. * ... and more; `see below <#what-s-new-in-django-1-5>`_.
  37. Wherever possible we try to introduce new features in a backwards-compatible
  38. manner per :doc:`our API stability policy </misc/api-stability>`.
  39. However, as with previous releases, Django 1.5 ships with some minor
  40. `backwards incompatible changes`_; people upgrading from previous versions
  41. of Django should read that list carefully.
  42. One deprecated feature worth noting is the shift to "new-style" :ttag:`url` tag.
  43. Prior to Django 1.3, syntax like ``{% url myview %}`` was interpreted
  44. incorrectly (Django considered ``"myview"`` to be a literal name of a view, not
  45. a template variable named ``myview``). Django 1.3 and above introduced the
  46. ``{% load url from future %}`` syntax to bring in the corrected behavior where
  47. ``myview`` was seen as a variable.
  48. The upshot of this is that if you are not using ``{% load url from future %}``
  49. in your templates, you'll need to change tags like ``{% url myview %}`` to
  50. ``{% url "myview" %}``. If you *were* using ``{% load url from future %}`` you
  51. can simply remove that line under Django 1.5
  52. Python compatibility
  53. ====================
  54. Django 1.5 requires Python 2.6.5 or above, though we **highly recommend**
  55. Python 2.7.3 or above. Support for Python 2.5 and below has been dropped.
  56. This change should affect only a small number of Django users, as most
  57. operating-system vendors today are shipping Python 2.6 or newer as their default
  58. version. If you're still using Python 2.5, however, you'll need to stick to
  59. Django 1.4 until you can upgrade your Python version. Per :doc:`our support
  60. policy </internals/release-process>`, Django 1.4 will continue to receive
  61. security support until the release of Django 1.6.
  62. Django 1.5 does not run on a Jython final release, because Jython's latest
  63. release doesn't currently support Python 2.6. However, Jython currently does
  64. offer an alpha release featuring 2.7 support, and Django 1.5 supports that alpha
  65. release.
  66. Python 3 support
  67. ~~~~~~~~~~~~~~~~
  68. Django 1.5 introduces support for Python 3 - specifically, Python
  69. 3.2 and above. This comes in the form of a **single** codebase; you don't
  70. need to install a different version of Django on Python 3. This means that
  71. you can write applications targeted for just Python 2, just Python 3, or single
  72. applications that support both platforms.
  73. However, we're labeling this support "experimental" for now: although it's
  74. received extensive testing via our automated test suite, it's received very
  75. little real-world testing. We've done our best to eliminate bugs, but we can't
  76. be sure we covered all possible uses of Django.
  77. Some features of Django aren't available because they depend on third-party
  78. software that hasn't been ported to Python 3 yet, including:
  79. - the MySQL database backend (depends on MySQLdb)
  80. - :class:`~django.db.models.ImageField` (depends on PIL)
  81. - :class:`~django.test.LiveServerTestCase` (depends on Selenium WebDriver)
  82. Further, Django's more than a web framework; it's an ecosystem of pluggable
  83. components. At this point, very few third-party applications have been ported
  84. to Python 3, so it's unlikely that a real-world application will have all its
  85. dependencies satisfied under Python 3.
  86. Thus, we're recommending that Django 1.5 not be used in production under Python
  87. 3. Instead, use this opportunity to begin :doc:`porting applications to Python 3
  88. </topics/python3>`. If you're an author of a pluggable component, we encourage you
  89. to start porting now.
  90. We plan to offer first-class, production-ready support for Python 3 in our next
  91. release, Django 1.6.
  92. What's new in Django 1.5
  93. ========================
  94. Configurable User model
  95. ~~~~~~~~~~~~~~~~~~~~~~~
  96. In Django 1.5, you can now use your own model as the store for user-related
  97. data. If your project needs a username with more than 30 characters, or if
  98. you want to store user's names in a format other than first name/last name,
  99. or you want to put custom profile information onto your User object, you can
  100. now do so.
  101. If you have a third-party reusable application that references the User model,
  102. you may need to make some changes to the way you reference User instances. You
  103. should also document any specific features of the User model that your
  104. application relies upon.
  105. See the :ref:`documentation on custom User models <auth-custom-user>` for
  106. more details.
  107. Support for saving a subset of model's fields
  108. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  109. The method :meth:`Model.save() <django.db.models.Model.save()>` has a new
  110. keyword argument ``update_fields``. By using this argument it is possible to
  111. save only a select list of model's fields. This can be useful for performance
  112. reasons or when trying to avoid overwriting concurrent changes.
  113. Deferred instances (those loaded by ``.only()`` or ``.defer()``) will
  114. automatically save just the loaded fields. If any field is set manually after
  115. load, that field will also get updated on save.
  116. See the :meth:`Model.save() <django.db.models.Model.save()>` documentation for
  117. more details.
  118. Caching of related model instances
  119. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  120. When traversing relations, the ORM will avoid re-fetching objects that were
  121. previously loaded. For example, with the tutorial's models::
  122. >>> first_poll = Poll.objects.all()[0]
  123. >>> first_choice = first_poll.choice_set.all()[0]
  124. >>> first_choice.poll is first_poll
  125. True
  126. In Django 1.5, the third line no longer triggers a new SQL query to fetch
  127. ``first_choice.poll``; it was set by the second line.
  128. For one-to-one relationships, both sides can be cached. For many-to-one
  129. relationships, only the single side of the relationship can be cached. This
  130. is particularly helpful in combination with ``prefetch_related``.
  131. .. _explicit-streaming-responses:
  132. Explicit support for streaming responses
  133. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  134. Before Django 1.5, it was possible to create a streaming response by passing
  135. an iterator to :class:`~django.http.HttpResponse`. But this was unreliable:
  136. any middleware that accessed the :attr:`~django.http.HttpResponse.content`
  137. attribute would consume the iterator prematurely.
  138. You can now explicitly generate a streaming response with the new
  139. :class:`~django.http.StreamingHttpResponse` class. This class exposes a
  140. :class:`~django.http.StreamingHttpResponse.streaming_content` attribute which
  141. is an iterator.
  142. Since :class:`~django.http.StreamingHttpResponse` does not have a ``content``
  143. attribute, middleware that needs access to the response content must test for
  144. streaming responses and behave accordingly. See :ref:`response-middleware` for
  145. more information.
  146. ``{% verbatim %}`` template tag
  147. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  148. To make it easier to deal with javascript templates which collide with Django's
  149. syntax, you can now use the :ttag:`verbatim` block tag to avoid parsing the
  150. tag's content.
  151. Retrieval of ``ContentType`` instances associated with proxy models
  152. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  153. The methods :meth:`ContentTypeManager.get_for_model() <django.contrib.contenttypes.models.ContentTypeManager.get_for_model()>`
  154. and :meth:`ContentTypeManager.get_for_models() <django.contrib.contenttypes.models.ContentTypeManager.get_for_models()>`
  155. have a new keyword argument – respectively ``for_concrete_model`` and ``for_concrete_models``.
  156. By passing ``False`` using this argument it is now possible to retrieve the
  157. :class:`ContentType <django.contrib.contenttypes.models.ContentType>`
  158. associated with proxy models.
  159. New ``view`` variable in class-based views context
  160. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  161. In all :doc:`generic class-based views </topics/class-based-views/index>`
  162. (or any class-based view inheriting from ``ContextMixin``), the context dictionary
  163. contains a ``view`` variable that points to the ``View`` instance.
  164. GeoDjango
  165. ~~~~~~~~~
  166. * :class:`~django.contrib.gis.geos.LineString` and
  167. :class:`~django.contrib.gis.geos.MultiLineString` GEOS objects now support the
  168. :meth:`~django.contrib.gis.geos.GEOSGeometry.interpolate()` and
  169. :meth:`~django.contrib.gis.geos.GEOSGeometry.project()` methods
  170. (so-called linear referencing).
  171. * The ``wkb`` and ``hex`` properties of
  172. :class:`~django.contrib.gis.geos.GEOSGeometry` objects preserve the Z
  173. dimension.
  174. * Support for PostGIS 2.0 has been added and support for GDAL < 1.5 has been
  175. dropped.
  176. New tutorials
  177. ~~~~~~~~~~~~~
  178. Additions to the docs include a revamped :doc:`Tutorial 3</intro/tutorial03>`
  179. and a new :doc:`tutorial on testing</intro/tutorial05>`. A new section,
  180. "Advanced Tutorials", offers :doc:`How to write reusable apps
  181. </intro/reusable-apps>` as well as a step-by-step guide for new contributors in
  182. :doc:`Writing your first patch for Django </intro/contributing>`.
  183. Minor features
  184. ~~~~~~~~~~~~~~
  185. Django 1.5 also includes several smaller improvements worth noting:
  186. * The template engine now interprets ``True``, ``False`` and ``None`` as the
  187. corresponding Python objects.
  188. * :mod:`django.utils.timezone` provides a helper for converting aware
  189. datetimes between time zones. See :func:`~django.utils.timezone.localtime`.
  190. * The generic views support OPTIONS requests.
  191. * Management commands do not raise ``SystemExit`` any more when called by code
  192. from :ref:`call_command <call-command>`. Any exception raised by the command
  193. (mostly :ref:`CommandError <ref-command-exceptions>`) is propagated.
  194. Moreover, when you output errors or messages in your custom commands, you
  195. should now use ``self.stdout.write('message')`` and
  196. ``self.stderr.write('error')`` (see the note on
  197. :ref:`management commands output <management-commands-output>`).
  198. * The dumpdata management command outputs one row at a time, preventing
  199. out-of-memory errors when dumping large datasets.
  200. * In the localflavor for Canada, "pq" was added to the acceptable codes for
  201. Quebec. It's an old abbreviation.
  202. * The :ref:`receiver <connecting-receiver-functions>` decorator is now able to
  203. connect to more than one signal by supplying a list of signals.
  204. * In the admin, you can now filter users by groups which they are members of.
  205. * :meth:`QuerySet.bulk_create()
  206. <django.db.models.query.QuerySet.bulk_create>` now has a batch_size
  207. argument. By default the batch_size is unlimited except for SQLite where
  208. single batch is limited so that 999 parameters per query isn't exceeded.
  209. * The :setting:`LOGIN_URL` and :setting:`LOGIN_REDIRECT_URL` settings now also
  210. accept view function names and
  211. :ref:`named URL patterns <naming-url-patterns>`. This allows you to reduce
  212. configuration duplication. More information can be found in the
  213. :func:`~django.contrib.auth.decorators.login_required` documentation.
  214. * Django now provides a mod_wsgi :doc:`auth handler
  215. </howto/deployment/wsgi/apache-auth>`.
  216. * The :meth:`QuerySet.delete() <django.db.models.query.QuerySet.delete>`
  217. and :meth:`Model.delete() <django.db.models.Model.delete()>` can now take
  218. fast-path in some cases. The fast-path allows for less queries and less
  219. objects fetched into memory. See :meth:`QuerySet.delete()
  220. <django.db.models.query.QuerySet.delete>` for details.
  221. * An instance of :class:`~django.core.urlresolvers.ResolverMatch` is stored on
  222. the request as ``resolver_match``.
  223. * By default, all logging messages reaching the ``django`` logger when
  224. :setting:`DEBUG` is ``True`` are sent to the console (unless you redefine the
  225. logger in your :setting:`LOGGING` setting).
  226. * When using :class:`~django.template.RequestContext`, it is now possible to
  227. look up permissions by using ``{% if 'someapp.someperm' in perms %}``
  228. in templates.
  229. * It's not required any more to have ``404.html`` and ``500.html`` templates in
  230. the root templates directory. Django will output some basic error messages for
  231. both situations when those templates are not found. Of course, it's still
  232. recommended as good practice to provide those templates in order to present
  233. pretty error pages to the user.
  234. * :mod:`django.contrib.auth` provides a new signal that is emitted
  235. whenever a user fails to login successfully. See
  236. :data:`~django.contrib.auth.signals.user_login_failed`
  237. * The loaddata management command now supports an
  238. :djadminopt:`--ignorenonexistent` option to ignore data for fields that no
  239. longer exist.
  240. * :meth:`~django.test.SimpleTestCase.assertXMLEqual` and
  241. :meth:`~django.test.SimpleTestCase.assertXMLNotEqual` new assertions allow
  242. you to test equality for XML content at a semantic level, without caring for
  243. syntax differences (spaces, attribute order, etc.).
  244. * RemoteUserMiddleware now forces logout when the REMOTE_USER header
  245. disappears during the same browser session.
  246. * The :ref:`cache-based session backend <cached-sessions-backend>` can store
  247. session data in a non-default cache.
  248. * Multi-column indexes can now be created on models. Read the
  249. :attr:`~django.db.models.Options.index_together` documentation for more
  250. information.
  251. * During Django's logging configuration verbose Deprecation warnings are
  252. enabled and warnings are captured into the logging system. Logged warnings
  253. are routed through the ``console`` logging handler, which by default requires
  254. :setting:`DEBUG` to be True for output to be generated. The result is that
  255. DeprecationWarnings should be printed to the console in development
  256. environments the way they have been in Python versions < 2.7.
  257. * The API for :meth:`django.contrib.admin.ModelAdmin.message_user` method has
  258. been modified to accept additional arguments adding capabilities similar to
  259. :func:`django.contrib.messages.add_message`. This is useful for generating
  260. error messages from admin actions.
  261. * The admin's list filters can now be customized per-request thanks to the new
  262. :meth:`django.contrib.admin.ModelAdmin.get_list_filter` method.
  263. Backwards incompatible changes in 1.5
  264. =====================================
  265. .. warning::
  266. In addition to the changes outlined in this section, be sure to review the
  267. :doc:`deprecation plan </internals/deprecation>` for any features that
  268. have been removed. If you haven't updated your code within the
  269. deprecation timeline for a given feature, its removal may appear as a
  270. backwards incompatible change.
  271. ``ALLOWED_HOSTS`` required in production
  272. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  273. The new :setting:`ALLOWED_HOSTS` setting validates the request's ``Host``
  274. header and protects against host-poisoning attacks. This setting is now
  275. required whenever :setting:`DEBUG` is ``False``, or else
  276. :meth:`django.http.HttpRequest.get_host()` will raise
  277. :exc:`~django.core.exceptions.SuspiciousOperation`. For more details see the
  278. :setting:`full documentation<ALLOWED_HOSTS>` for the new setting.
  279. Managers on abstract models
  280. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  281. Abstract models are able to define a custom manager, and that manager
  282. :ref:`will be inherited by any concrete models extending the abstract model
  283. <custom-managers-and-inheritance>`. However, if you try to use the abstract
  284. model to call a method on the manager, an exception will now be raised.
  285. Previously, the call would have been permitted, but would have failed as soon
  286. as any database operation was attempted (usually with a "table does not exist"
  287. error from the database).
  288. If you have functionality on a manager that you have been invoking using
  289. the abstract class, you should migrate that logic to a Python
  290. ``staticmethod`` or ``classmethod`` on the abstract class.
  291. Context in year archive class-based views
  292. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  293. For consistency with the other date-based generic views,
  294. :class:`~django.views.generic.dates.YearArchiveView` now passes ``year`` in
  295. the context as a :class:`datetime.date` rather than a string. If you are
  296. using ``{{ year }}`` in your templates, you must replace it with ``{{
  297. year|date:"Y" }}``.
  298. ``next_year`` and ``previous_year`` were also added in the context. They are
  299. calculated according to ``allow_empty`` and ``allow_future``.
  300. Context in year and month archive class-based views
  301. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  302. :class:`~django.views.generic.dates.YearArchiveView` and
  303. :class:`~django.views.generic.dates.MonthArchiveView` were documented to
  304. provide a ``date_list`` sorted in ascending order in the context, like their
  305. function-based predecessors, but it actually was in descending order. In 1.5,
  306. the documented order was restored. You may want to add (or remove) the
  307. ``reversed`` keyword when you're iterating on ``date_list`` in a template::
  308. {% for date in date_list reversed %}
  309. :class:`~django.views.generic.dates.ArchiveIndexView` still provides a
  310. ``date_list`` in descending order.
  311. Context in TemplateView
  312. ~~~~~~~~~~~~~~~~~~~~~~~
  313. For consistency with the design of the other generic views,
  314. :class:`~django.views.generic.base.TemplateView` no longer passes a ``params``
  315. dictionary into the context, instead passing the variables from the URLconf
  316. directly into the context.
  317. Non-form data in HTTP requests
  318. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  319. :attr:`request.POST <django.http.HttpRequest.POST>` will no longer include data
  320. posted via HTTP requests with non form-specific content-types in the header.
  321. In prior versions, data posted with content-types other than
  322. ``multipart/form-data`` or ``application/x-www-form-urlencoded`` would still
  323. end up represented in the :attr:`request.POST <django.http.HttpRequest.POST>`
  324. attribute. Developers wishing to access the raw POST data for these cases,
  325. should use the :attr:`request.body <django.http.HttpRequest.body>` attribute
  326. instead.
  327. :data:`~django.core.signals.request_finished` signal
  328. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  329. Django used to send the :data:`~django.core.signals.request_finished` signal
  330. as soon as the view function returned a response. This interacted badly with
  331. :ref:`streaming responses <httpresponse-streaming>` that delay content
  332. generation.
  333. This signal is now sent after the content is fully consumed by the WSGI
  334. gateway. This might be backwards incompatible if you rely on the signal being
  335. fired before sending the response content to the client. If you do, you should
  336. consider using :doc:`middleware </topics/http/middleware>` instead.
  337. .. note::
  338. Some WSGI servers and middleware do not always call ``close`` on the
  339. response object after handling a request, most notably uWSGI prior to 1.2.6
  340. and Sentry's error reporting middleware up to 2.0.7. In those cases the
  341. ``request_finished`` signal isn't sent at all. This can result in idle
  342. connections to database and memcache servers.
  343. OPTIONS, PUT and DELETE requests in the test client
  344. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  345. Unlike GET and POST, these HTTP methods aren't implemented by web browsers.
  346. Rather, they're used in APIs, which transfer data in various formats such as
  347. JSON or XML. Since such requests may contain arbitrary data, Django doesn't
  348. attempt to decode their body.
  349. However, the test client used to build a query string for OPTIONS and DELETE
  350. requests like for GET, and a request body for PUT requests like for POST. This
  351. encoding was arbitrary and inconsistent with Django's behavior when it
  352. receives the requests, so it was removed in Django 1.5.
  353. If you were using the ``data`` parameter in an OPTIONS or a DELETE request,
  354. you must convert it to a query string and append it to the ``path`` parameter.
  355. If you were using the ``data`` parameter in a PUT request without a
  356. ``content_type``, you must encode your data before passing it to the test
  357. client and set the ``content_type`` argument.
  358. .. _simplejson-incompatibilities:
  359. System version of :mod:`simplejson` no longer used
  360. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  361. :ref:`As explained below <simplejson-deprecation>`, Django 1.5 deprecates
  362. ``django.utils.simplejson`` in favor of Python 2.6's built-in :mod:`json`
  363. module. In theory, this change is harmless. Unfortunately, because of
  364. incompatibilities between versions of :mod:`simplejson`, it may trigger errors
  365. in some circumstances.
  366. JSON-related features in Django 1.4 always used ``django.utils.simplejson``.
  367. This module was actually:
  368. - A system version of :mod:`simplejson`, if one was available (ie. ``import
  369. simplejson`` works), if it was more recent than Django's built-in copy or it
  370. had the C speedups, or
  371. - The :mod:`json` module from the standard library, if it was available (ie.
  372. Python 2.6 or greater), or
  373. - A built-in copy of version 2.0.7 of :mod:`simplejson`.
  374. In Django 1.5, those features use Python's :mod:`json` module, which is based
  375. on version 2.0.9 of :mod:`simplejson`.
  376. There are no known incompatibilities between Django's copy of version 2.0.7 and
  377. Python's copy of version 2.0.9. However, there are some incompatibilities
  378. between other versions of :mod:`simplejson`:
  379. - While the :mod:`simplejson` API is documented as always returning unicode
  380. strings, the optional C implementation can return a byte string. This was
  381. fixed in Python 2.7.
  382. - :class:`simplejson.JSONEncoder` gained a ``namedtuple_as_object`` keyword
  383. argument in version 2.2.
  384. More information on these incompatibilities is available in `ticket #18023`_.
  385. The net result is that, if you have installed :mod:`simplejson` and your code
  386. uses Django's serialization internals directly -- for instance
  387. ``django.core.serializers.json.DjangoJSONEncoder``, the switch from
  388. :mod:`simplejson` to :mod:`json` could break your code. (In general, changes to
  389. internals aren't documented; we're making an exception here.)
  390. At this point, the maintainers of Django believe that using :mod:`json` from
  391. the standard library offers the strongest guarantee of backwards-compatibility.
  392. They recommend to use it from now on.
  393. .. _ticket #18023: https://code.djangoproject.com/ticket/18023#comment:10
  394. String types of hasher method parameters
  395. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  396. If you have written a :ref:`custom password hasher <auth_password_storage>`,
  397. your ``encode()``, ``verify()`` or ``safe_summary()`` methods should accept
  398. Unicode parameters (``password``, ``salt`` or ``encoded``). If any of the
  399. hashing methods need byte strings, you can use the
  400. :func:`~django.utils.encoding.force_bytes` utility to encode the strings.
  401. Validation of previous_page_number and next_page_number
  402. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  403. When using :doc:`object pagination </topics/pagination>`,
  404. the ``previous_page_number()`` and ``next_page_number()`` methods of the
  405. :class:`~django.core.paginator.Page` object did not check if the returned
  406. number was inside the existing page range.
  407. It does check it now and raises an :exc:`~django.core.paginator.InvalidPage`
  408. exception when the number is either too low or too high.
  409. Behavior of autocommit database option on PostgreSQL changed
  410. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  411. PostgreSQL's autocommit option didn't work as advertised previously. It did
  412. work for single transaction block, but after the first block was left the
  413. autocommit behavior was never restored. This bug is now fixed in 1.5. While
  414. this is only a bug fix, it is worth checking your applications behavior if
  415. you are using PostgreSQL together with the autocommit option.
  416. Session not saved on 500 responses
  417. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  418. Django's session middleware will skip saving the session data if the
  419. response's status code is 500.
  420. Email checks on failed admin login
  421. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  422. Prior to Django 1.5, if you attempted to log into the admin interface and
  423. mistakenly used your email address instead of your username, the admin
  424. interface would provide a warning advising that your email address was
  425. not your username. In Django 1.5, the introduction of
  426. :ref:`custom User models <auth-custom-user>` has required the removal of this
  427. warning. This doesn't change the login behavior of the admin site; it only
  428. affects the warning message that is displayed under one particular mode of
  429. login failure.
  430. Changes in tests execution
  431. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  432. Some changes have been introduced in the execution of tests that might be
  433. backward-incompatible for some testing setups:
  434. Database flushing in ``django.test.TransactionTestCase``
  435. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  436. Previously, the test database was truncated *before* each test run in a
  437. :class:`~django.test.TransactionTestCase`.
  438. In order to be able to run unit tests in any order and to make sure they are
  439. always isolated from each other, :class:`~django.test.TransactionTestCase` will
  440. now reset the database *after* each test run instead.
  441. No more implicit DB sequences reset
  442. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  443. :class:`~django.test.TransactionTestCase` tests used to reset primary key
  444. sequences automatically together with the database flushing actions described
  445. above.
  446. This has been changed so no sequences are implicitly reset. This can cause
  447. :class:`~django.test.TransactionTestCase` tests that depend on hard-coded
  448. primary key values to break.
  449. The new :attr:`~django.test.TransactionTestCase.reset_sequences` attribute can
  450. be used to force the old behavior for :class:`~django.test.TransactionTestCase`
  451. that might need it.
  452. Ordering of tests
  453. ^^^^^^^^^^^^^^^^^
  454. In order to make sure all ``TestCase`` code starts with a clean database,
  455. tests are now executed in the following order:
  456. * First, all unittests (including :class:`unittest.TestCase`,
  457. :class:`~django.test.SimpleTestCase`, :class:`~django.test.TestCase` and
  458. :class:`~django.test.TransactionTestCase`) are run with no particular ordering
  459. guaranteed nor enforced among them.
  460. * Then any other tests (e.g. doctests) that may alter the database without
  461. restoring it to its original state are run.
  462. This should not cause any problems unless you have existing doctests which
  463. assume a :class:`~django.test.TransactionTestCase` executed earlier left some
  464. database state behind or unit tests that rely on some form of state being
  465. preserved after the execution of other tests. Such tests are already very
  466. fragile, and must now be changed to be able to run independently.
  467. `cleaned_data` dictionary kept for invalid forms
  468. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  469. The :attr:`~django.forms.Form.cleaned_data` dictionary is now always present
  470. after form validation. When the form doesn't validate, it contains only the
  471. fields that passed validation. You should test the success of the validation
  472. with the :meth:`~django.forms.Form.is_valid()` method and not with the
  473. presence or absence of the :attr:`~django.forms.Form.cleaned_data` attribute
  474. on the form.
  475. Behavior of :djadmin:`syncdb` with multiple databases
  476. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  477. :djadmin:`syncdb` now queries the database routers to determine if content
  478. types (when :mod:`~django.contrib.contenttypes` is enabled) and permissions
  479. (when :mod:`~django.contrib.auth` is enabled) should be created in the target
  480. database. Previously, it created them in the default database, even when
  481. another database was specified with the :djadminopt:`--database` option.
  482. If you use :djadmin:`syncdb` on multiple databases, you should ensure that
  483. your routers allow synchronizing content types and permissions to only one of
  484. them. See the docs on the :ref:`behavior of contrib apps with multiple
  485. databases <contrib_app_multiple_databases>` for more information.
  486. XML deserializer will not parse documents with a DTD
  487. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  488. In order to prevent exposure to denial-of-service attacks related to external
  489. entity references and entity expansion, the XML model deserializer now refuses
  490. to parse XML documents containing a DTD (DOCTYPE definition). Since the XML
  491. serializer does not output a DTD, this will not impact typical usage, only
  492. cases where custom-created XML documents are passed to Django's model
  493. deserializer.
  494. Formsets default ``max_num``
  495. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  496. A (default) value of ``None`` for the ``max_num`` argument to a formset factory
  497. no longer defaults to allowing any number of forms in the formset. Instead, in
  498. order to prevent memory-exhaustion attacks, it now defaults to a limit of 1000
  499. forms. This limit can be raised by explicitly setting a higher value for
  500. ``max_num``.
  501. Miscellaneous
  502. ~~~~~~~~~~~~~
  503. * :class:`django.forms.ModelMultipleChoiceField` now returns an empty
  504. ``QuerySet`` as the empty value instead of an empty list.
  505. * :func:`~django.utils.http.int_to_base36` properly raises a
  506. :exc:`~exceptions.TypeError` instead of :exc:`~exceptions.ValueError` for
  507. non-integer inputs.
  508. * The ``slugify`` template filter is now available as a standard python
  509. function at :func:`django.utils.text.slugify`. Similarly, ``remove_tags`` is
  510. available at :func:`django.utils.html.remove_tags`.
  511. * Uploaded files are no longer created as executable by default. If you need
  512. them to be executable change :setting:`FILE_UPLOAD_PERMISSIONS` to your
  513. needs. The new default value is ``0666`` (octal) and the current umask value
  514. is first masked out.
  515. * The :ref:`F() expressions <query-expressions>` supported bitwise operators by
  516. ``&`` and ``|``. These operators are now available using ``.bitand()`` and
  517. ``.bitor()`` instead. The removal of ``&`` and ``|`` was done to be consistent with
  518. :ref:`Q() expressions <complex-lookups-with-q>` and ``QuerySet`` combining where
  519. the operators are used as boolean AND and OR operators.
  520. * In a ``filter()`` call, when :ref:`F() expressions <query-expressions>`
  521. contained lookups spanning multi-valued relations, they didn't always reuse
  522. the same relations as other lookups along the same chain. This was changed,
  523. and now F() expressions will always use the same relations as other lookups
  524. within the same ``filter()`` call.
  525. * The :ttag:`csrf_token` template tag is no longer enclosed in a div. If you need
  526. HTML validation against pre-HTML5 Strict DTDs, you should add a div around it
  527. in your pages.
  528. * The template tags library ``adminmedia``, which only contained the
  529. deprecated template tag ``{% admin_media_prefix %}``, was removed.
  530. Attempting to load it with ``{% load adminmedia %}`` will fail. If your
  531. templates still contain that line you must remove it.
  532. * Because of an implementation oversight, it was possible to use
  533. :doc:`django.contrib.redirects </ref/contrib/redirects>` without enabling
  534. :doc:`django.contrib.sites </ref/contrib/sites>`. This isn't allowed any
  535. longer. If you're using ``django.contrib.redirects``, make sure
  536. :setting:`INSTALLED_APPS` contains ``django.contrib.sites``.
  537. * :meth:`BoundField.label_tag <django.forms.BoundField.label_tag>` now
  538. escapes its ``contents`` argument. To avoid the HTML escaping, use
  539. :func:`django.utils.safestring.mark_safe` on the argument before passing it.
  540. Features deprecated in 1.5
  541. ==========================
  542. ``django.contrib.localflavor``
  543. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  544. The localflavor contrib app has been split into separate packages.
  545. ``django.contrib.localflavor`` itself will be removed in Django 1.6, after an
  546. :ref:`accelerated deprecation <localflavor-deprecation-policy>`. The docs
  547. provide :ref:`migration instructions <localflavor-how-to-migrate>`.
  548. The new packages are available :ref:`on Github <localflavor-packages>`. The
  549. core team cannot efficiently maintain these packages in the long term — it
  550. spans just a dozen countries at this time; similar to translations, maintenance
  551. will be handed over to interested members of the community.
  552. ``django.contrib.markup``
  553. ~~~~~~~~~~~~~~~~~~~~~~~~~
  554. The markup contrib module has been deprecated and will follow an accelerated
  555. deprecation schedule. Direct use of python markup libraries or 3rd party tag
  556. libraries is preferred to Django maintaining this functionality in the
  557. framework.
  558. :setting:`AUTH_PROFILE_MODULE`
  559. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  560. With the introduction of :ref:`custom User models <auth-custom-user>`, there is
  561. no longer any need for a built-in mechanism to store user profile data.
  562. You can still define user profiles models that have a one-to-one relation with
  563. the User model - in fact, for many applications needing to associate data with
  564. a User account, this will be an appropriate design pattern to follow. However,
  565. the :setting:`AUTH_PROFILE_MODULE` setting, and the
  566. :meth:`~django.contrib.auth.models.User.get_profile()` method for accessing
  567. the user profile model, should not be used any longer.
  568. Streaming behavior of :class:`~django.http.HttpResponse`
  569. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  570. Django 1.5 deprecates the ability to stream a response by passing an iterator
  571. to :class:`~django.http.HttpResponse`. If you rely on this behavior, switch to
  572. :class:`~django.http.StreamingHttpResponse`. See
  573. :ref:`explicit-streaming-responses` above.
  574. In Django 1.7 and above, the iterator will be consumed immediately by
  575. :class:`~django.http.HttpResponse`.
  576. .. _simplejson-deprecation:
  577. ``django.utils.simplejson``
  578. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  579. Since Django 1.5 drops support for Python 2.5, we can now rely on the
  580. :mod:`json` module being available in Python's standard library, so we've
  581. removed our own copy of :mod:`simplejson`. You should now import :mod:`json`
  582. instead of ``django.utils.simplejson``.
  583. Unfortunately, this change might have unwanted side-effects, because of
  584. incompatibilities between versions of :mod:`simplejson` -- see the
  585. :ref:`backwards-incompatible changes <simplejson-incompatibilities>` section.
  586. If you rely on features added to :mod:`simplejson` after it became Python's
  587. :mod:`json`, you should import :mod:`simplejson` explicitly.
  588. ``django.utils.encoding.StrAndUnicode``
  589. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  590. The :class:`~django.utils.encoding.StrAndUnicode` mix-in has been deprecated.
  591. Define a ``__str__`` method and apply the
  592. :func:`~django.utils.encoding.python_2_unicode_compatible` decorator instead.
  593. ``django.utils.itercompat.product``
  594. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  595. The ``django.utils.itercompat.product`` function has been deprecated. Use
  596. the built-in :func:`itertools.product` instead.
  597. ``cleanup`` management command
  598. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  599. The :djadmin:`cleanup` management command has been deprecated and replaced by
  600. :djadmin:`clearsessions`.
  601. ``daily_cleanup.py`` script
  602. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  603. The undocumented ``daily_cleanup.py`` script has been deprecated. Use the
  604. :djadmin:`clearsessions` management command instead.
  605. ``depth`` keyword argument in ``select_related``
  606. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  607. The ``depth`` keyword argument in
  608. :meth:`~django.db.models.query.QuerySet.select_related` has been deprecated.
  609. You should use field names instead.