1.2.txt 46 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177
  1. ========================
  2. Django 1.2 release notes
  3. ========================
  4. *May 17, 2010.*
  5. Welcome to Django 1.2!
  6. Nearly a year in the making, Django 1.2 packs an impressive list of `new
  7. features`_ and lots of bug fixes. These release notes cover the new features,
  8. as well as important changes you'll want to be aware of when upgrading from
  9. Django 1.1 or older versions.
  10. .. _new features: `What's new in Django 1.2`_
  11. Overview
  12. ========
  13. Django 1.2 introduces several large, important new features, including:
  14. * Support for `multiple database connections`_ in a single Django instance.
  15. * `Model validation`_ inspired by Django's form validation.
  16. * Vastly `improved protection against Cross-Site Request Forgery`_ (CSRF).
  17. * A new `user "messages" framework`_ with support for cookie- and session-based
  18. message for both anonymous and authenticated users.
  19. * Hooks for `object-level permissions`_, `permissions for anonymous users`_,
  20. and `more flexible username requirements`_.
  21. * Customization of email sending via `email backends`_.
  22. * New :ref:`"smart" if template tag <new-in-1.2-smart-if>` which supports
  23. comparison operators.
  24. .. _multiple database connections: `support for multiple databases`_
  25. .. _improved protection against Cross-Site Request Forgery: `improved CSRF protection`_
  26. .. _user "messages" framework: `messages framework`_
  27. .. _more flexible username requirements: `relaxed requirements for usernames`_
  28. These are just the highlights; full details and a complete list of features `may
  29. be found below`_.
  30. .. _may be found below: `What's new in Django 1.2`_
  31. .. seealso::
  32. `Django Advent`_ covered the release of Django 1.2 with a series of
  33. articles and tutorials that cover some of the new features in depth.
  34. .. _django advent: https://github.com/djangoadvent/djangoadvent-articles
  35. Wherever possible these features have been introduced in a backwards-compatible
  36. manner per :doc:`our API stability policy </misc/api-stability>` policy.
  37. However, a handful of features *have* changed in ways that, for some users, will be
  38. backwards-incompatible. The big changes are:
  39. * Support for Python 2.3 has been dropped. See the full notes
  40. below.
  41. * The new CSRF protection framework is not backwards-compatible with
  42. the old system. Users of the old system will not be affected until
  43. the old system is removed in Django 1.4.
  44. However, upgrading to the new CSRF protection framework requires a few
  45. important backwards-incompatible changes, detailed in `CSRF Protection`_,
  46. below.
  47. * Authors of custom :class:`~django.db.models.Field` subclasses should be
  48. aware that a number of methods have had a change in prototype, detailed
  49. under `get_db_prep_*() methods on Field`_, below.
  50. * The internals of template tags have changed somewhat; authors of custom
  51. template tags that need to store state (e.g. custom control flow tags)
  52. should ensure that their code follows the new rules for `stateful template
  53. tags`_
  54. * The :func:`~django.contrib.auth.decorators.user_passes_test`,
  55. :func:`~django.contrib.auth.decorators.login_required`, and
  56. :func:`~django.contrib.auth.decorators.permission_required`, decorators
  57. from :mod:`django.contrib.auth` only apply to functions and no longer
  58. work on methods. There's a simple one-line fix `detailed below`_.
  59. .. _detailed below: `user_passes_test, login_required and permission_required`_
  60. Again, these are just the big features that will affect the most users. Users
  61. upgrading from previous versions of Django are heavily encouraged to consult
  62. the complete list of :ref:`backwards-incompatible changes
  63. <backwards-incompatible-changes-1.2>` and the list of :ref:`deprecated
  64. features <deprecated-features-1.2>`.
  65. Python compatibility
  66. ====================
  67. While not a new feature, it's important to note that Django 1.2
  68. introduces the first shift in our Python compatibility policy since
  69. Django's initial public debut. Previous Django releases were tested
  70. and supported on 2.x Python versions from 2.3 up; Django 1.2, however,
  71. drops official support for Python 2.3. As such, the minimum Python
  72. version required for Django is now 2.4, and Django is tested and
  73. supported on Python 2.4, 2.5 and 2.6, and will be supported on the
  74. as-yet-unreleased Python 2.7.
  75. This change should affect only a small number of Django users, as most
  76. operating-system vendors today are shipping Python 2.4 or newer as
  77. their default version. If you're still using Python 2.3, however,
  78. you'll need to stick to Django 1.1 until you can upgrade; per
  79. :doc:`our support policy </internals/release-process>`, Django 1.1 will
  80. continue to receive security support until the release of Django 1.3.
  81. A roadmap for Django's overall 2.x Python support, and eventual
  82. transition to Python 3.x, is currently being developed, and will be
  83. announced prior to the release of Django 1.3.
  84. What's new in Django 1.2
  85. ========================
  86. Support for multiple databases
  87. ------------------------------
  88. Django 1.2 adds the ability to use :doc:`more than one database
  89. </topics/db/multi-db>` in your Django project. Queries can be issued at a
  90. specific database with the ``using()`` method on ``QuerySet`` objects.
  91. Individual objects can be saved to a specific database by providing a ``using``
  92. argument when you call ``save()``.
  93. Model validation
  94. ----------------
  95. Model instances now have support for :ref:`validating their own data
  96. <validating-objects>`, and both model and form fields now accept configurable
  97. lists of :doc:`validators </ref/validators>` specifying reusable, encapsulated
  98. validation behavior. Note, however, that validation must still be performed
  99. explicitly. Simply invoking a model instance's ``save()`` method will not
  100. perform any validation of the instance's data.
  101. Improved CSRF protection
  102. ------------------------
  103. Django now has much improved protection against :doc:`Cross-Site Request Forgery
  104. (CSRF) attacks</ref/csrf>`. This type of attack occurs when a malicious
  105. Web site contains a link, a form button or some JavaScript that is intended to
  106. perform some action on your Web site, using the credentials of a logged-in user
  107. who visits the malicious site in their browser. A related type of attack, "login
  108. CSRF," where an attacking site tricks a user's browser into logging into a site
  109. with someone else's credentials, is also covered.
  110. Messages framework
  111. ------------------
  112. Django now includes a robust and configurable :doc:`messages framework
  113. </ref/contrib/messages>` with built-in support for cookie- and session-based
  114. messaging, for both anonymous and authenticated clients. The messages framework
  115. replaces the deprecated user message API and allows you to temporarily store
  116. messages in one request and retrieve them for display in a subsequent request
  117. (usually the next one).
  118. Object-level permissions
  119. ------------------------
  120. A foundation for specifying permissions at the per-object level has been added.
  121. Although there is no implementation of this in core, a custom authentication
  122. backend can provide this implementation and it will be used by
  123. :class:`django.contrib.auth.models.User`. See the :doc:`authentication docs
  124. </topics/auth/index>` for more information.
  125. Permissions for anonymous users
  126. -------------------------------
  127. If you provide a custom auth backend with ``supports_anonymous_user`` set to
  128. ``True``, AnonymousUser will check the backend for permissions, just like
  129. User already did. This is useful for centralizing permission handling - apps
  130. can always delegate the question of whether something is allowed or not to
  131. the authorization/authentication backend. See the :doc:`authentication
  132. docs </topics/auth/index>` for more details.
  133. Relaxed requirements for usernames
  134. ----------------------------------
  135. The built-in :class:`~django.contrib.auth.models.User` model's
  136. :attr:`~django.contrib.auth.models.User.username` field now allows a wider range
  137. of characters, including ``@``, ``+``, ``.`` and ``-`` characters.
  138. Email backends
  139. --------------
  140. You can now :ref:`configure the way that Django sends email
  141. <topic-email-backends>`. Instead of using SMTP to send all email, you
  142. can now choose a configurable email backend to send messages. If your
  143. hosting provider uses a sandbox or some other non-SMTP technique for
  144. sending mail, you can now construct an email backend that will allow
  145. Django's standard :doc:`mail sending methods</topics/email>` to use
  146. those facilities.
  147. This also makes it easier to debug mail sending. Django ships with
  148. backend implementations that allow you to send email to a
  149. :ref:`file<topic-email-file-backend>`, to the
  150. :ref:`console<topic-email-console-backend>`, or to
  151. :ref:`memory<topic-email-memory-backend>`. You can even configure all
  152. email to be :ref:`thrown away<topic-email-dummy-backend>`.
  153. .. _new-in-1.2-smart-if:
  154. "Smart" :ttag:`if` tag
  155. ----------------------
  156. The :ttag:`if` tag has been upgraded to be much more powerful. First, we've
  157. added support for comparison operators. No longer will you have to type:
  158. .. code-block:: html+django
  159. {% ifnotequal a b %}
  160. ...
  161. {% endifnotequal %}
  162. You can now do this:
  163. .. code-block:: html+django
  164. {% if a != b %}
  165. ...
  166. {% endif %}
  167. There's really no reason to use ``{% ifequal %}`` or ``{% ifnotequal %}``
  168. anymore, unless you're the nostalgic type.
  169. The operators supported are ``==``, ``!=``, ``<``, ``>``, ``<=``, ``>=``,
  170. ``in`` and ``not in``, all of which work like the Python operators, in addition
  171. to ``and``, ``or`` and ``not``, which were already supported.
  172. Also, filters may now be used in the ``if`` expression. For example:
  173. .. code-block:: html+django
  174. <div
  175. {% if user.email|lower == message.recipient|lower %}
  176. class="highlight"
  177. {% endif %}
  178. >{{ message }}</div>
  179. Template caching
  180. ----------------
  181. In previous versions of Django, every time you rendered a template, it
  182. would be reloaded from disk. In Django 1.2, you can use a :ref:`cached
  183. template loader <template-loaders>` to load templates once, then
  184. cache the result for every subsequent render. This can lead to a
  185. significant performance improvement if your templates are broken into
  186. lots of smaller subtemplates (using the ``{% extends %}`` or ``{%
  187. include %}`` tags).
  188. As a side effect, it is now much easier to support non-Django template
  189. languages. For more details, see the :ref:`notes on supporting
  190. non-Django template languages<topic-template-alternate-language>`.
  191. Class-based template loaders
  192. ----------------------------
  193. As part of the changes made to introduce `Template caching`_ and following
  194. a general trend in Django, the template loaders API has been modified
  195. to use template loading mechanisms that are encapsulated in Python classes as
  196. opposed to functions, the only method available until Django 1.1.
  197. All the template loaders :ref:`shipped with Django <template-loaders>` have
  198. been ported to the new API but they still implement the function-based API and
  199. the template core machinery still accepts function-based loaders (builtin or
  200. third party) so there is no immediate need to modify your
  201. :setting:`TEMPLATE_LOADERS` setting in existing projects, things will keep
  202. working if you leave it untouched up to and including the Django 1.3 release.
  203. If you have developed your own custom template loaders we suggest to consider
  204. porting them to a class-based implementation because the code for backwards
  205. compatibility with function-based loaders starts its deprecation process in
  206. Django 1.2 and will be removed in Django 1.4. There is a description of the
  207. API these loader classes must implement :ref:`here
  208. <topic-template-alternate-language>` and you can also examine the source code
  209. of the loaders shipped with Django.
  210. Natural keys in fixtures
  211. ------------------------
  212. Fixtures can now refer to remote objects using
  213. :ref:`topics-serialization-natural-keys`. This lookup scheme is an
  214. alternative to the normal primary-key based object references in a
  215. fixture, improving readability and resolving problems referring to
  216. objects whose primary key value may not be predictable or known.
  217. Fast failure for tests
  218. ----------------------
  219. Both the :djadmin:`test` subcommand of ``django-admin.py`` and the
  220. ``runtests.py`` script used to run Django's own test suite now support a
  221. ``--failfast`` option. When specified, this option causes the test runner to
  222. exit after encountering a failure instead of continuing with the test run. In
  223. addition, the handling of ``Ctrl-C`` during a test run has been improved to
  224. trigger a graceful exit from the test run that reports details of the tests that
  225. were run before the interruption.
  226. ``BigIntegerField``
  227. -------------------
  228. Models can now use a 64-bit :class:`~django.db.models.BigIntegerField` type.
  229. Improved localization
  230. ---------------------
  231. Django's :doc:`internationalization framework </topics/i18n/index>` has been expanded
  232. with locale-aware formatting and form processing. That means, if enabled, dates
  233. and numbers on templates will be displayed using the format specified for the
  234. current locale. Django will also use localized formats when parsing data in
  235. forms. See :ref:`Format localization <format-localization>` for more details.
  236. ``readonly_fields`` in ``ModelAdmin``
  237. -------------------------------------
  238. :attr:`django.contrib.admin.ModelAdmin.readonly_fields` has been added to
  239. enable non-editable fields in add/change pages for models and inlines. Field
  240. and calculated values can be displayed alongside editable fields.
  241. Customizable syntax highlighting
  242. --------------------------------
  243. You can now use a ``DJANGO_COLORS`` environment variable to modify or disable
  244. the colors used by ``django-admin.py`` to provide :ref:`syntax highlighting
  245. <syntax-coloring>`.
  246. Syndication feeds as views
  247. --------------------------
  248. :doc:`Syndication feeds </ref/contrib/syndication>` can now be used directly as
  249. views in your :doc:`URLconf </topics/http/urls>`. This means that you can
  250. maintain complete control over the URL structure of your feeds. Like any other
  251. view, feeds views are passed a ``request`` object, so you can do anything you
  252. would normally do with a view, like user based access control, or making a feed
  253. a named URL.
  254. GeoDjango
  255. ---------
  256. The most significant new feature for :doc:`GeoDjango </ref/contrib/gis/index>`
  257. in 1.2 is support for multiple spatial databases. As a result,
  258. the following :ref:`spatial database backends <spatial-backends>`
  259. are now included:
  260. * ``django.contrib.gis.db.backends.postgis``
  261. * ``django.contrib.gis.db.backends.mysql``
  262. * ``django.contrib.gis.db.backends.oracle``
  263. * ``django.contrib.gis.db.backends.spatialite``
  264. GeoDjango now supports the rich capabilities added
  265. in the `PostGIS 1.5 release <http://postgis.refractions.net/documentation/manual-1.5/>`_.
  266. New features include support for the :ref:`geography type <geography-type>`
  267. and enabling of :ref:`distance queries <distance-queries>`
  268. with non-point geometries on geographic coordinate systems.
  269. Support for 3D geometry fields was added, and may be enabled
  270. by setting the :attr:`~django.contrib.gis.db.models.GeometryField.dim`
  271. keyword to 3 in your :class:`~django.contrib.gis.db.models.GeometryField`.
  272. The :class:`~django.contrib.gis.db.models.Extent3D` aggregate
  273. and :meth:`~django.contrib.gis.db.models.GeoQuerySet.extent3d` ``GeoQuerySet``
  274. method were added as a part of this feature.
  275. The following :class:`~django.contrib.gis.db.models.GeoQuerySet`
  276. methods are new in 1.2:
  277. * :meth:`~django.contrib.gis.db.models.GeoQuerySet.force_rhr`
  278. * :meth:`~django.contrib.gis.db.models.GeoQuerySet.reverse_geom`
  279. * :meth:`~django.contrib.gis.db.models.GeoQuerySet.geohash`
  280. The :ref:`GEOS interface <ref-geos>` was updated to use
  281. thread-safe C library functions when available on the platform.
  282. The :ref:`GDAL interface <ref-gdal>` now allows the user to
  283. set a :attr:`~django.contrib.gis.gdal.Layer.spatial_filter` on
  284. the features returned when iterating over a
  285. :class:`~django.contrib.gis.gdal.Layer`.
  286. Finally, :doc:`GeoDjango's documentation </ref/contrib/gis/index>` is now
  287. included with Django's and is no longer
  288. hosted separately at `geodjango.org <http://geodjango.org/>`_.
  289. .. _1.2-js-assisted-inlines:
  290. JavaScript-assisted handling of inline related objects in the admin
  291. -------------------------------------------------------------------
  292. If a user has JavaScript enabled in their browser, the interface for
  293. inline objects in the admin now allows inline objects to be
  294. dynamically added and removed. Users without JavaScript-enabled
  295. browsers will see no change in the behavior of inline objects.
  296. New ``now`` template tag format specifier characters: ``c`` and ``u``
  297. ---------------------------------------------------------------------
  298. The argument to the :ttag:`now` has gained two new format characters:
  299. ``c`` to specify that a datetime value should be formatted in ISO 8601
  300. format, and ``u`` that allows output of the microseconds part of a
  301. datetime or time value.
  302. These are also available in others parts like the :tfilter:`date` and
  303. :tfilter:`time` template filters, the ``humanize`` template tag library
  304. and the new `format localization`_ framework.
  305. .. _format localization: `Improved localization`_
  306. .. _backwards-incompatible-changes-1.2:
  307. Backwards-incompatible changes in 1.2
  308. =====================================
  309. Wherever possible the new features above have been introduced in a
  310. backwards-compatible manner per :doc:`our API stability policy
  311. </misc/api-stability>` policy. This means that practically all existing
  312. code which worked with Django 1.1 will continue to work with Django
  313. 1.2; such code will, however, begin issuing warnings (see below for
  314. details).
  315. However, a handful of features *have* changed in ways that, for some
  316. users, will be immediately backwards-incompatible. Those changes are
  317. detailed below.
  318. CSRF Protection
  319. ---------------
  320. We've made large changes to the way CSRF protection works, detailed in
  321. :doc:`the CSRF documentation </ref/csrf>`. Here are the major changes you
  322. should be aware of:
  323. * ``CsrfResponseMiddleware`` and ``CsrfMiddleware`` have been deprecated and
  324. will be removed completely in Django 1.4, in favor of a template tag that
  325. should be inserted into forms.
  326. * All contrib apps use a ``csrf_protect`` decorator to protect the view. This
  327. requires the use of the ``csrf_token`` template tag in the template. If you
  328. have used custom templates for contrib views, you MUST READ THE UPGRADE
  329. INSTRUCTIONS to fix those templates.
  330. .. admonition:: Documentation removed
  331. The upgrade notes have been removed in current Django docs. Please refer
  332. to the docs for Django 1.3 or older to find these instructions.
  333. * ``CsrfViewMiddleware`` is included in :setting:`MIDDLEWARE_CLASSES` by
  334. default. This turns on CSRF protection by default, so views that accept
  335. POST requests need to be written to work with the middleware. Instructions
  336. on how to do this are found in the CSRF docs.
  337. * All of the CSRF has moved from contrib to core (with backwards
  338. compatible imports in the old locations, which are deprecated and
  339. will cease to be supported in Django 1.4).
  340. ``get_db_prep_*()`` methods on ``Field``
  341. ----------------------------------------
  342. Prior to Django 1.2, a custom ``Field`` had the option of defining
  343. several functions to support conversion of Python values into
  344. database-compatible values. A custom field might look something like::
  345. class CustomModelField(models.Field):
  346. # ...
  347. def db_type(self):
  348. # ...
  349. def get_db_prep_save(self, value):
  350. # ...
  351. def get_db_prep_value(self, value):
  352. # ...
  353. def get_db_prep_lookup(self, lookup_type, value):
  354. # ...
  355. In 1.2, these three methods have undergone a change in prototype, and
  356. two extra methods have been introduced::
  357. class CustomModelField(models.Field):
  358. # ...
  359. def db_type(self, connection):
  360. # ...
  361. def get_prep_value(self, value):
  362. # ...
  363. def get_prep_lookup(self, lookup_type, value):
  364. # ...
  365. def get_db_prep_save(self, value, connection):
  366. # ...
  367. def get_db_prep_value(self, value, connection, prepared=False):
  368. # ...
  369. def get_db_prep_lookup(self, lookup_type, value, connection, prepared=False):
  370. # ...
  371. These changes are required to support multiple databases --
  372. ``db_type`` and ``get_db_prep_*`` can no longer make any assumptions
  373. regarding the database for which it is preparing. The ``connection``
  374. argument now provides the preparation methods with the specific
  375. connection for which the value is being prepared.
  376. The two new methods exist to differentiate general data-preparation
  377. requirements from requirements that are database-specific. The
  378. ``prepared`` argument is used to indicate to the database-preparation
  379. methods whether generic value preparation has been performed. If
  380. an unprepared (i.e., ``prepared=False``) value is provided to the
  381. ``get_db_prep_*()`` calls, they should invoke the corresponding
  382. ``get_prep_*()`` calls to perform generic data preparation.
  383. We've provided conversion functions that will transparently
  384. convert functions adhering to the old prototype into functions
  385. compatible with the new prototype. However, these conversion functions
  386. will be removed in Django 1.4, so you should upgrade your ``Field``
  387. definitions to use the new prototype as soon as possible.
  388. If your ``get_db_prep_*()`` methods made no use of the database
  389. connection, you should be able to upgrade by renaming
  390. ``get_db_prep_value()`` to ``get_prep_value()`` and
  391. ``get_db_prep_lookup()`` to ``get_prep_lookup()``. If you require
  392. database specific conversions, then you will need to provide an
  393. implementation ``get_db_prep_*`` that uses the ``connection``
  394. argument to resolve database-specific values.
  395. Stateful template tags
  396. ----------------------
  397. Template tags that store rendering state on their ``Node`` subclass
  398. have always been vulnerable to thread-safety and other issues; as of
  399. Django 1.2, however, they may also cause problems when used with the
  400. new :ref:`cached template loader<template-loaders>`.
  401. All of the built-in Django template tags are safe to use with the cached
  402. loader, but if you're using custom template tags that come from third
  403. party packages, or from your own code, you should ensure that the
  404. ``Node`` implementation for each tag is thread-safe. For more
  405. information, see
  406. :ref:`template tag thread safety considerations<template_tag_thread_safety>`.
  407. You may also need to update your templates if you were relying on the
  408. implementation of Django's template tags *not* being thread safe. The
  409. :ttag:`cycle` tag is the most likely to be affected in this way,
  410. especially when used in conjunction with the :ttag:`include` tag.
  411. Consider the following template fragment::
  412. {% for object in object_list %}
  413. {% include "subtemplate.html" %}
  414. {% endfor %}
  415. with a ``subtemplate.html`` that reads::
  416. {% cycle 'even' 'odd' %}
  417. Using the non-thread-safe, pre-Django 1.2 renderer, this would output::
  418. even odd even odd ...
  419. Using the thread-safe Django 1.2 renderer, you will instead get::
  420. even even even even ...
  421. This is because each rendering of the :ttag:`include` tag is an
  422. independent rendering. When the :ttag:`cycle` tag was not thread safe,
  423. the state of the :ttag:`cycle` tag would leak between multiple
  424. renderings of the same :ttag:`include`. Now that the :ttag:`cycle` tag
  425. is thread safe, this leakage no longer occurs.
  426. ``user_passes_test``, ``login_required`` and ``permission_required``
  427. --------------------------------------------------------------------
  428. ``django.contrib.auth.decorators`` provides the decorators
  429. ``login_required``, ``permission_required`` and
  430. ``user_passes_test``. Previously it was possible to use these
  431. decorators both on functions (where the first argument is 'request')
  432. and on methods (where the first argument is 'self', and the second
  433. argument is 'request'). Unfortunately, flaws were discovered in the
  434. code supporting this: it only works in limited circumstances, and
  435. produces errors that are very difficult to debug when it does not
  436. work.
  437. For this reason, the 'auto adapt' behavior has been removed, and if
  438. you are using these decorators on methods, you will need to manually
  439. apply :func:`django.utils.decorators.method_decorator` to convert the
  440. decorator to one that works with methods. For example, you would
  441. change code from this::
  442. class MyClass(object):
  443. @login_required
  444. def my_view(self, request):
  445. pass
  446. to this::
  447. from django.utils.decorators import method_decorator
  448. class MyClass(object):
  449. @method_decorator(login_required)
  450. def my_view(self, request):
  451. pass
  452. or::
  453. from django.utils.decorators import method_decorator
  454. login_required_m = method_decorator(login_required)
  455. class MyClass(object):
  456. @login_required_m
  457. def my_view(self, request):
  458. pass
  459. For those of you who've been following the development trunk, this
  460. change also applies to other decorators introduced since 1.1,
  461. including ``csrf_protect``, ``cache_control`` and anything created
  462. using ``decorator_from_middleware``.
  463. :ttag:`if` tag changes
  464. ----------------------
  465. Due to new features in the :ttag:`if` template tag, it no longer
  466. accepts 'and', 'or' and 'not' as valid **variable** names. Previously,
  467. these strings could be used as variable names. Now, the keyword status
  468. is always enforced, and template code such as ``{% if not %}`` or ``{%
  469. if and %}`` will throw a ``TemplateSyntaxError``. Also, ``in`` is a
  470. new keyword and so is not a valid variable name in this tag.
  471. ``LazyObject``
  472. --------------
  473. ``LazyObject`` is an undocumented-but-often-used utility class used for lazily
  474. wrapping other objects of unknown type.
  475. In Django 1.1 and earlier, it handled introspection in a non-standard way,
  476. depending on wrapped objects implementing a public method named
  477. ``get_all_members()``. Since this could easily lead to name clashes, it has been
  478. changed to use the standard Python introspection method, involving
  479. ``__members__`` and ``__dir__()``.
  480. If you used ``LazyObject`` in your own code
  481. and implemented the ``get_all_members()`` method for wrapped objects, you'll need
  482. to make a couple of changes:
  483. First, if your class does not have special requirements for introspection (i.e.,
  484. you have not implemented ``__getattr__()`` or other methods that allow for
  485. attributes not discoverable by normal mechanisms), you can simply remove the
  486. ``get_all_members()`` method. The default implementation on ``LazyObject`` will
  487. do the right thing.
  488. If you have more complex requirements for introspection, first rename the
  489. ``get_all_members()`` method to ``__dir__()``. This is the standard
  490. introspection method for Python 2.6 and above. If you require support for Python
  491. versions earlier than 2.6, add the following code to the class::
  492. __members__ = property(lambda self: self.__dir__())
  493. ``__dict__`` on model instances
  494. -------------------------------
  495. Historically, the ``__dict__`` attribute of a model instance has only contained
  496. attributes corresponding to the fields on a model.
  497. In order to support multiple database configurations, Django 1.2 has
  498. added a ``_state`` attribute to object instances. This attribute will
  499. appear in ``__dict__`` for a model instance. If your code relies on
  500. iterating over ``__dict__`` to obtain a list of fields, you must now
  501. be prepared to handle or filter out the ``_state`` attribute.
  502. Test runner exit status code
  503. ----------------------------
  504. The exit status code of the test runners (``tests/runtests.py`` and ``python
  505. manage.py test``) no longer represents the number of failed tests, because a
  506. failure of 256 or more tests resulted in a wrong exit status code. The exit
  507. status code for the test runner is now 0 for success (no failing tests) and 1
  508. for any number of test failures. If needed, the number of test failures can be
  509. found at the end of the test runner's output.
  510. Cookie encoding
  511. ---------------
  512. To fix bugs with cookies in Internet Explorer, Safari, and possibly
  513. other browsers, our encoding of cookie values was changed so that the
  514. comma and semicolon are treated as non-safe characters, and are
  515. therefore encoded as ``\054`` and ``\073`` respectively. This could
  516. produce backwards incompatibilities, especially if you are storing
  517. comma or semi-colon in cookies and have javascript code that parses
  518. and manipulates cookie values client-side.
  519. ``ModelForm.is_valid()`` and ``ModelForm.errors``
  520. -------------------------------------------------
  521. Much of the validation work for ModelForms has been moved down to the model
  522. level. As a result, the first time you call ``ModelForm.is_valid()``, access
  523. ``ModelForm.errors`` or otherwise trigger form validation, your model will be
  524. cleaned in-place. This conversion used to happen when the model was saved. If
  525. you need an unmodified instance of your model, you should pass a copy to the
  526. ``ModelForm`` constructor.
  527. ``BooleanField`` on MySQL
  528. --------------------------
  529. In previous versions of Django, a model's ``BooleanField`` under MySQL
  530. would return its value as either ``1`` or ``0``, instead of ``True``
  531. or ``False``; for most people this wasn't a problem because ``bool``
  532. is a subclass of ``int`` in Python. In Django 1.2, however,
  533. ``BooleanField`` on MySQL correctly returns a real ``bool``. The only
  534. time this should ever be an issue is if you were expecting the
  535. ``repr`` of a ``BooleanField`` to print ``1`` or ``0``.
  536. Changes to the interpretation of ``max_num`` in FormSets
  537. --------------------------------------------------------
  538. As part of enhancements made to the handling of FormSets, the default
  539. value and interpretation of the ``max_num`` parameter to the
  540. :ref:`django.forms.formsets.formset_factory() <formsets-max-num>` and
  541. :ref:`django.forms.models.modelformset_factory()
  542. <model-formsets-max-num>` functions has changed slightly. This
  543. change also affects the way the
  544. :attr:`~django.contrib.admin.InlineModelAdmin.max_num` argument is used for
  545. inline admin objects.
  546. Previously, the default value for ``max_num`` was ``0`` (zero).
  547. FormSets then used the boolean value of ``max_num`` to determine if a
  548. limit was to be imposed on the number of generated forms. The default
  549. value of ``0`` meant that there was no default limit on the number of
  550. forms in a FormSet.
  551. Starting with 1.2, the default value for ``max_num`` has been changed
  552. to ``None``, and FormSets will differentiate between a value of
  553. ``None`` and a value of ``0``. A value of ``None`` indicates that no
  554. limit on the number of forms is to be imposed; a value of ``0``
  555. indicates that a maximum of 0 forms should be imposed. This doesn't
  556. necessarily mean that no forms will be displayed -- see the
  557. :ref:`ModelFormSet documentation <model-formsets-max-num>` for more
  558. details.
  559. If you were manually specifying a value of ``0`` for ``max_num``, you
  560. will need to update your FormSet and/or admin definitions.
  561. .. seealso::
  562. :ref:`1.2-js-assisted-inlines`
  563. ``email_re``
  564. ------------
  565. An undocumented regular expression for validating email addresses has been moved
  566. from ``django.form.fields`` to ``django.core.validators``. You will need to
  567. update your imports if you are using it.
  568. .. _deprecated-features-1.2:
  569. Features deprecated in 1.2
  570. ==========================
  571. Finally, Django 1.2 deprecates some features from earlier releases.
  572. These features are still supported, but will be gradually phased out
  573. over the next few release cycles.
  574. Code taking advantage of any of the features below will raise a
  575. ``PendingDeprecationWarning`` in Django 1.2. This warning will be
  576. silent by default, but may be turned on using Python's :mod:`warnings`
  577. module, or by running Python with a ``-Wd`` or ``-Wall`` flag.
  578. In Django 1.3, these warnings will become a ``DeprecationWarning``,
  579. which is *not* silent. In Django 1.4 support for these features will
  580. be removed entirely.
  581. .. seealso::
  582. For more details, see the documentation :doc:`Django's release process
  583. </internals/release-process>` and our :doc:`deprecation timeline
  584. </internals/deprecation>`.`
  585. .. _specifying-databases:
  586. Specifying databases
  587. --------------------
  588. Prior to Django 1.2, Django used a number of settings to control
  589. access to a single database. Django 1.2 introduces support for
  590. multiple databases, and as a result the way you define database
  591. settings has changed.
  592. Any existing Django settings file will continue to work as expected
  593. until Django 1.4. Until then, old-style database settings will be
  594. automatically translated to the new-style format.
  595. In the old-style (pre 1.2) format, you had a number of ``DATABASE_``
  596. settings in your settings file. For example::
  597. DATABASE_NAME = 'test_db'
  598. DATABASE_ENGINE = 'postgresql_psycopg2'
  599. DATABASE_USER = 'myusername'
  600. DATABASE_PASSWORD = 's3krit'
  601. These settings are now in a dictionary named
  602. :setting:`DATABASES`. Each item in the dictionary corresponds to a
  603. single database connection, with the name ``'default'`` describing the
  604. default database connection. The setting names have also been
  605. shortened. The previous sample settings would now look like this::
  606. DATABASES = {
  607. 'default': {
  608. 'NAME': 'test_db',
  609. 'ENGINE': 'django.db.backends.postgresql_psycopg2',
  610. 'USER': 'myusername',
  611. 'PASSWORD': 's3krit',
  612. }
  613. }
  614. This affects the following settings:
  615. ========================================= ==========================
  616. Old setting New Setting
  617. ========================================= ==========================
  618. `DATABASE_ENGINE` :setting:`ENGINE <DATABASE-ENGINE>`
  619. `DATABASE_HOST` :setting:`HOST`
  620. `DATABASE_NAME` :setting:`NAME`
  621. `DATABASE_OPTIONS` :setting:`OPTIONS`
  622. `DATABASE_PASSWORD` :setting:`PASSWORD`
  623. `DATABASE_PORT` :setting:`PORT`
  624. `DATABASE_USER` :setting:`USER`
  625. `TEST_DATABASE_CHARSET` :setting:`TEST_CHARSET`
  626. `TEST_DATABASE_COLLATION` :setting:`TEST_COLLATION`
  627. `TEST_DATABASE_NAME` :setting:`TEST_NAME`
  628. ========================================= ==========================
  629. These changes are also required if you have manually created a database
  630. connection using ``DatabaseWrapper()`` from your database backend of choice.
  631. In addition to the change in structure, Django 1.2 removes the special
  632. handling for the built-in database backends. All database backends
  633. must now be specified by a fully qualified module name (i.e.,
  634. ``django.db.backends.postgresql_psycopg2``, rather than just
  635. ``postgresql_psycopg2``).
  636. ``postgresql`` database backend
  637. -------------------------------
  638. The ``psycopg1`` library has not been updated since October 2005. As a
  639. result, the ``postgresql`` database backend, which uses this library,
  640. has been deprecated.
  641. If you are currently using the ``postgresql`` backend, you should
  642. migrate to using the ``postgresql_psycopg2`` backend. To update your
  643. code, install the ``psycopg2`` library and change the
  644. :setting:`ENGINE <DATABASE-ENGINE>` setting to use
  645. ``django.db.backends.postgresql_psycopg2``.
  646. CSRF response-rewriting middleware
  647. ----------------------------------
  648. ``CsrfResponseMiddleware``, the middleware that automatically inserted
  649. CSRF tokens into ``POST`` forms in outgoing pages, has been deprecated
  650. in favor of a template tag method (see above), and will be removed
  651. completely in Django 1.4. ``CsrfMiddleware``, which includes the
  652. functionality of ``CsrfResponseMiddleware`` and
  653. ``CsrfViewMiddleware``, has likewise been deprecated.
  654. Also, the CSRF module has moved from contrib to core, and the old
  655. imports are deprecated, as described in the upgrading notes.
  656. .. admonition:: Documentation removed
  657. The upgrade notes have been removed in current Django docs. Please refer
  658. to the docs for Django 1.3 or older to find these instructions.
  659. ``SMTPConnection``
  660. ------------------
  661. The ``SMTPConnection`` class has been deprecated in favor of a generic
  662. email backend API. Old code that explicitly instantiated an instance
  663. of an SMTPConnection::
  664. from django.core.mail import SMTPConnection
  665. connection = SMTPConnection()
  666. messages = get_notification_email()
  667. connection.send_messages(messages)
  668. ...should now call :meth:`~django.core.mail.get_connection()` to
  669. instantiate a generic email connection::
  670. from django.core.mail import get_connection
  671. connection = get_connection()
  672. messages = get_notification_email()
  673. connection.send_messages(messages)
  674. Depending on the value of the :setting:`EMAIL_BACKEND` setting, this
  675. may not return an SMTP connection. If you explicitly require an SMTP
  676. connection with which to send email, you can explicitly request an
  677. SMTP connection::
  678. from django.core.mail import get_connection
  679. connection = get_connection('django.core.mail.backends.smtp.EmailBackend')
  680. messages = get_notification_email()
  681. connection.send_messages(messages)
  682. If your call to construct an instance of ``SMTPConnection`` required
  683. additional arguments, those arguments can be passed to the
  684. :meth:`~django.core.mail.get_connection()` call::
  685. connection = get_connection('django.core.mail.backends.smtp.EmailBackend', hostname='localhost', port=1234)
  686. User Messages API
  687. -----------------
  688. The API for storing messages in the user ``Message`` model (via
  689. ``user.message_set.create``) is now deprecated and will be removed in Django
  690. 1.4 according to the standard :doc:`release process </internals/release-process>`.
  691. To upgrade your code, you need to replace any instances of this::
  692. user.message_set.create('a message')
  693. ...with the following::
  694. from django.contrib import messages
  695. messages.add_message(request, messages.INFO, 'a message')
  696. Additionally, if you make use of the method, you need to replace the
  697. following::
  698. for message in user.get_and_delete_messages():
  699. ...
  700. ...with::
  701. from django.contrib import messages
  702. for message in messages.get_messages(request):
  703. ...
  704. For more information, see the full
  705. :doc:`messages documentation </ref/contrib/messages>`. You should begin to
  706. update your code to use the new API immediately.
  707. Date format helper functions
  708. ----------------------------
  709. ``django.utils.translation.get_date_formats()`` and
  710. ``django.utils.translation.get_partial_date_formats()`` have been deprecated
  711. in favor of the appropriate calls to ``django.utils.formats.get_format()``,
  712. which is locale-aware when :setting:`USE_L10N` is set to ``True``, and falls
  713. back to default settings if set to ``False``.
  714. To get the different date formats, instead of writing this::
  715. from django.utils.translation import get_date_formats
  716. date_format, datetime_format, time_format = get_date_formats()
  717. ...use::
  718. from django.utils import formats
  719. date_format = formats.get_format('DATE_FORMAT')
  720. datetime_format = formats.get_format('DATETIME_FORMAT')
  721. time_format = formats.get_format('TIME_FORMAT')
  722. Or, when directly formatting a date value::
  723. from django.utils import formats
  724. value_formatted = formats.date_format(value, 'DATETIME_FORMAT')
  725. The same applies to the globals found in ``django.forms.fields``:
  726. * ``DEFAULT_DATE_INPUT_FORMATS``
  727. * ``DEFAULT_TIME_INPUT_FORMATS``
  728. * ``DEFAULT_DATETIME_INPUT_FORMATS``
  729. Use ``django.utils.formats.get_format()`` to get the appropriate formats.
  730. Function-based test runners
  731. ---------------------------
  732. Django 1.2 changes the test runner tools to use a class-based
  733. approach. Old style function-based test runners will still work, but
  734. should be updated to use the new :ref:`class-based runners
  735. <topics-testing-test_runner>`.
  736. .. _1.2-updating-feeds:
  737. ``Feed`` in ``django.contrib.syndication.feeds``
  738. ------------------------------------------------
  739. The ``django.contrib.syndication.feeds.Feed`` class has been
  740. replaced by the :class:`django.contrib.syndication.views.Feed` class.
  741. The old ``feeds.Feed`` class is deprecated, and will be removed in
  742. Django 1.4.
  743. The new class has an almost identical API, but allows instances to be
  744. used as views. For example, consider the use of the old framework in
  745. the following :doc:`URLconf </topics/http/urls>`::
  746. from django.conf.urls.defaults import *
  747. from myproject.feeds import LatestEntries, LatestEntriesByCategory
  748. feeds = {
  749. 'latest': LatestEntries,
  750. 'categories': LatestEntriesByCategory,
  751. }
  752. urlpatterns = patterns('',
  753. # ...
  754. (r'^feeds/(?P<url>.*)/$', 'django.contrib.syndication.views.feed',
  755. {'feed_dict': feeds}),
  756. # ...
  757. )
  758. Using the new Feed class, these feeds can be deployed directly as views::
  759. from django.conf.urls.defaults import *
  760. from myproject.feeds import LatestEntries, LatestEntriesByCategory
  761. urlpatterns = patterns('',
  762. # ...
  763. (r'^feeds/latest/$', LatestEntries()),
  764. (r'^feeds/categories/(?P<category_id>\d+)/$', LatestEntriesByCategory()),
  765. # ...
  766. )
  767. If you currently use the ``feed()`` view, the ``LatestEntries`` class would
  768. often not need to be modified apart from subclassing the new
  769. :class:`~django.contrib.syndication.views.Feed` class. The exception is if
  770. Django was automatically working out the name of the template to use to render
  771. the feed's description and title elements (if you were not specifying the
  772. ``title_template`` and ``description_template`` attributes). You should ensure
  773. that you always specify ``title_template`` and ``description_template``
  774. attributes, or provide ``item_title()`` and ``item_description()`` methods.
  775. However, ``LatestEntriesByCategory`` uses the ``get_object()`` method
  776. with the ``bits`` argument to specify a specific category to show. In
  777. the new :class:`~django.contrib.syndication.views.Feed` class,
  778. ``get_object()`` method takes a ``request`` and arguments from the
  779. URL, so it would look like this::
  780. from django.contrib.syndication.views import Feed
  781. from django.shortcuts import get_object_or_404
  782. from myproject.models import Category
  783. class LatestEntriesByCategory(Feed):
  784. def get_object(self, request, category_id):
  785. return get_object_or_404(Category, id=category_id)
  786. # ...
  787. Additionally, the ``get_feed()`` method on ``Feed`` classes now take
  788. different arguments, which may impact you if you use the ``Feed``
  789. classes directly. Instead of just taking an optional ``url`` argument,
  790. it now takes two arguments: the object returned by its own
  791. ``get_object()`` method, and the current ``request`` object.
  792. To take into account ``Feed`` classes not being initialized for each
  793. request, the ``__init__()`` method now takes no arguments by default.
  794. Previously it would have taken the ``slug`` from the URL and the
  795. ``request`` object.
  796. In accordance with `RSS best practices`_, RSS feeds will now include
  797. an ``atom:link`` element. You may need to update your tests to take
  798. this into account.
  799. For more information, see the full :doc:`syndication framework
  800. documentation </ref/contrib/syndication>`.
  801. .. _RSS best practices: http://www.rssboard.org/rss-profile
  802. Technical message IDs
  803. ---------------------
  804. Up to version 1.1 Django used technical message IDs
  805. to provide localizers the possibility to translate date and time formats. They
  806. were translatable :term:`translation strings <translation string>` that could
  807. be recognized because they were all upper case (for example
  808. :setting:`DATETIME_FORMAT`, :setting:`DATE_FORMAT`, :setting:`TIME_FORMAT`).
  809. They have been deprecated in favor of the new :ref:`Format localization
  810. <format-localization>` infrastructure that allows localizers to specify that
  811. information in a ``formats.py`` file in the corresponding
  812. ``django/conf/locale/<locale name>/`` directory.
  813. GeoDjango
  814. ---------
  815. To allow support for multiple databases, the GeoDjango database internals were
  816. changed substantially. The largest backwards-incompatible change is that
  817. the module ``django.contrib.gis.db.backend`` was renamed to
  818. :mod:`django.contrib.gis.db.backends`, where the full-fledged
  819. :ref:`spatial database backends <spatial-backends>` now exist. The
  820. following sections provide information on the most-popular APIs that
  821. were affected by these changes.
  822. ``SpatialBackend``
  823. ^^^^^^^^^^^^^^^^^^
  824. Prior to the creation of the separate spatial backends, the
  825. ``django.contrib.gis.db.backend.SpatialBackend`` object was
  826. provided as an abstraction to introspect on the capabilities of
  827. the spatial database. All of the attributes and routines provided by
  828. ``SpatialBackend`` are now a part of the ``ops`` attribute of the
  829. database backend.
  830. The old module ``django.contrib.gis.db.backend`` is still provided
  831. for backwards-compatibility access to a ``SpatialBackend`` object,
  832. which is just an alias to the ``ops`` module of the
  833. *default* spatial database connection.
  834. Users that were relying on undocumented modules and objects
  835. within ``django.contrib.gis.db.backend``, rather the abstractions
  836. provided by ``SpatialBackend``, are required to modify their code.
  837. For example, the following import which would work in 1.1 and
  838. below::
  839. from django.contrib.gis.db.backend.postgis import PostGISAdaptor
  840. Would need to be changed::
  841. from django.db import connection
  842. PostGISAdaptor = connection.ops.Adapter
  843. ``SpatialRefSys`` and ``GeometryColumns`` models
  844. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  845. In previous versions of GeoDjango, :mod:`django.contrib.gis.db.models`
  846. had ``SpatialRefSys`` and ``GeometryColumns`` models for querying
  847. the OGC spatial metadata tables ``spatial_ref_sys`` and ``geometry_columns``,
  848. respectively.
  849. While these aliases are still provided, they are only for the
  850. *default* database connection and exist only if the default connection
  851. is using a supported spatial database backend.
  852. .. note::
  853. Because the table structure of the OGC spatial metadata tables
  854. differs across spatial databases, the ``SpatialRefSys`` and
  855. ``GeometryColumns`` models can no longer be associated with
  856. the ``gis`` application name. Thus, no models will be returned
  857. when using the ``get_models`` method in the following example::
  858. >>> from django.db.models import get_app, get_models
  859. >>> get_models(get_app('gis'))
  860. []
  861. To get the correct ``SpatialRefSys`` and ``GeometryColumns``
  862. for your spatial database use the methods provided by the spatial backend::
  863. >>> from django.db import connections
  864. >>> SpatialRefSys = connections['my_spatialite'].ops.spatial_ref_sys()
  865. >>> GeometryColumns = connections['my_postgis'].ops.geometry_columns()
  866. .. note::
  867. When using the models returned from the ``spatial_ref_sys()`` and
  868. ``geometry_columns()`` method, you'll still need to use the
  869. correct database alias when querying on the non-default connection.
  870. In other words, to ensure that the models in the example above
  871. use the correct database::
  872. sr_qs = SpatialRefSys.objects.using('my_spatialite').filter(...)
  873. gc_qs = GeometryColumns.objects.using('my_postgis').filter(...)
  874. Language code ``no``
  875. --------------------
  876. The currently used language code for Norwegian Bokmål ``no`` is being
  877. replaced by the more common language code ``nb``.
  878. Function-based template loaders
  879. -------------------------------
  880. Django 1.2 changes the template loading mechanism to use a class-based
  881. approach. Old style function-based template loaders will still work, but should
  882. be updated to use the new :ref:`class-based template loaders
  883. <topic-template-alternate-language>`.