1.7.txt 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698
  1. ============================================
  2. Django 1.7 release notes - UNDER DEVELOPMENT
  3. ============================================
  4. Welcome to Django 1.7!
  5. These release notes cover the `new features`_, as well as some `backwards
  6. incompatible changes`_ you'll want to be aware of when upgrading from Django
  7. 1.6 or older versions. We've also dropped some features, which are detailed in
  8. :ref:`our deprecation plan <deprecation-removed-in-1.7>`, and we've `begun the
  9. deprecation process for some features`_.
  10. .. _`new features`: `What's new in Django 1.7`_
  11. .. _`backwards incompatible changes`: `Backwards incompatible changes in 1.7`_
  12. .. _`begun the deprecation process for some features`: `Features deprecated in 1.7`_
  13. Python compatibility
  14. ====================
  15. Django 1.7 requires Python 2.7 or above, though we **highly recommend**
  16. the latest minor release. Support for Python 2.6 has been dropped and support
  17. for Python 3.4 has been added.
  18. This change should affect only a small number of Django users, as most
  19. operating-system vendors today are shipping Python 2.7 or newer as their default
  20. version. If you're still using Python 2.6, however, you'll need to stick to
  21. Django 1.6 until you can upgrade your Python version. Per :doc:`our support
  22. policy </internals/release-process>`, Django 1.6 will continue to receive
  23. security support until the release of Django 1.8.
  24. What's new in Django 1.7
  25. ========================
  26. Schema migrations
  27. ~~~~~~~~~~~~~~~~~
  28. Django now has built-in support for schema migrations. It allows models
  29. to be updated, changed, and deleted by creating migration files that represent
  30. the model changes and which can be run on any development, staging or production
  31. database.
  32. Migrations are covered in :doc:`their own documentation</topics/migrations>`,
  33. but a few of the key features are:
  34. * ``syncdb`` has been deprecated and replaced by ``migrate``. Don't worry -
  35. calls to ``syncdb`` will still work as before.
  36. * A new ``makemigrations`` command provides an easy way to autodetect changes
  37. to your models and make migrations for them.
  38. :data:`~django.db.models.signals.pre_syncdb` and
  39. :data:`~django.db.models.signals.post_syncdb` have been replaced by
  40. :data:`~django.db.models.signals.pre_migrate` and
  41. :data:`~django.db.models.signals.post_migrate` respectively. These new
  42. signals have slightly different arguments. Check the documentation for
  43. details.
  44. * The ``allow_syncdb`` method on database routers is now called ``allow_migrate``,
  45. but still performs the same function. Routers with ``allow_syncdb`` methods
  46. will still work, but that method name is deprecated and you should change
  47. it as soon as possible (nothing more than renaming is required).
  48. * ``initial_data`` fixtures are no longer loaded for apps with migrations; if
  49. you want to load initial data for an app, we suggest you do it in a migration.
  50. * Test rollback behavior is different for apps with migrations; in particular,
  51. Django will no longer emulate rollbacks on non-transactional databases or
  52. inside ``TransactionTestCase`` :ref:`unless specifically requested
  53. <test-case-serialized-rollback>`.
  54. * It is not advised to have apps without migrations depend on (have a
  55. :ref:`ForeignKey <ref-foreignkey>` or :ref:`ManyToManyField <ref-manytomany>` to) apps with migrations. Read the
  56. :ref:`dependencies documentation <unmigrated-dependencies>` for more.
  57. .. _app-loading-refactor-17-release-note:
  58. App-loading refactor
  59. ~~~~~~~~~~~~~~~~~~~~
  60. Historically, Django applications were tightly linked to models. A singleton
  61. known as the "app cache" dealt with both installed applications and models.
  62. The models module was used as an identifier for applications in many APIs.
  63. As the concept of :doc:`Django applications </ref/applications>` matured, this
  64. code showed some shortcomings. It has been refactored into an "app registry"
  65. where models modules no longer have a central role and where it's possible to
  66. attach configuration data to applications.
  67. Improvements thus far include:
  68. * Applications can run code at startup, before Django does anything else, with
  69. the :meth:`~django.apps.AppConfig.ready` method of their configuration.
  70. * Application labels are assigned correctly to models even when they're
  71. defined outside of ``models.py``. You don't have to set
  72. :attr:`~django.db.models.Options.app_label` explicitly any more.
  73. * It is possible to omit ``models.py`` entirely if an application doesn't
  74. have any models.
  75. * Applications can be relabeled with the :attr:`~django.apps.AppConfig.label`
  76. attribute of application configurations, to work around label conflicts.
  77. * The name of applications can be customized in the admin with the
  78. :attr:`~django.apps.AppConfig.verbose_name` of application configurations.
  79. * The admin automatically calls :func:`~django.contrib.admin.autodiscover()`
  80. when Django starts. You can consequently remove this line from your
  81. URLconf.
  82. * Django imports all application configurations and models as soon as it
  83. starts, through a deterministic and straightforward process. This should
  84. make it easier to diagnose import issues such as import loops.
  85. New method on Field subclasses
  86. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  87. To help power both schema migrations and composite keys, the :class:`~django.db.models.Field` API now
  88. has a new required method: ``deconstruct()``.
  89. This method takes no arguments, and returns a tuple of four items:
  90. * ``name``: The field's attribute name on its parent model, or None if it is not part of a model
  91. * ``path``: A dotted, Python path to the class of this field, including the class name.
  92. * ``args``: Positional arguments, as a list
  93. * ``kwargs``: Keyword arguments, as a dict
  94. These four values allow any field to be serialized into a file, as well as
  95. allowing the field to be copied safely, both essential parts of these new features.
  96. This change should not affect you unless you write custom Field subclasses;
  97. if you do, you may need to reimplement the ``deconstruct()`` method if your
  98. subclass changes the method signature of ``__init__`` in any way. If your
  99. field just inherits from a built-in Django field and doesn't override ``__init__``,
  100. no changes are necessary.
  101. If you do need to override ``deconstruct()``, a good place to start is the
  102. built-in Django fields (``django/db/models/fields/__init__.py``) as several
  103. fields, including ``DecimalField`` and ``DateField``, override it and show how
  104. to call the method on the superclass and simply add or remove extra arguments.
  105. This also means that all arguments to fields must themselves be serializable;
  106. to see what we consider serializable, and to find out how to make your own
  107. classes serializable, read the
  108. :ref:`migration serialization documentation <migration-serializing>`.
  109. Calling custom ``QuerySet`` methods from the ``Manager``
  110. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  111. Historically, the recommended way to make reusable model queries was to create
  112. methods on a custom ``Manager`` class. The problem with this approach was that
  113. after the first method call, you'd get back a ``QuerySet`` instance and
  114. couldn't call additional custom manager methods.
  115. Though not documented, it was common to work around this issue by creating a
  116. custom ``QuerySet`` so that custom methods could be chained; but the solution
  117. had a number of drawbacks:
  118. * The custom ``QuerySet`` and its custom methods were lost after the first
  119. call to ``values()`` or ``values_list()``.
  120. * Writing a custom ``Manager`` was still necessary to return the custom
  121. ``QuerySet`` class and all methods that were desired on the ``Manager``
  122. had to be proxied to the ``QuerySet``. The whole process went against
  123. the DRY principle.
  124. The :meth:`QuerySet.as_manager() <django.db.models.query.QuerySet.as_manager>`
  125. class method can now directly :ref:`create Manager with QuerySet methods
  126. <create-manager-with-queryset-methods>`::
  127. class FoodQuerySet(models.QuerySet):
  128. def pizzas(self):
  129. return self.filter(kind='pizza')
  130. def vegetarian(self):
  131. return self.filter(vegetarian=True)
  132. class Food(models.Model):
  133. kind = models.CharField(max_length=50)
  134. vegetarian = models.BooleanField()
  135. objects = FoodQuerySet.as_manager()
  136. Food.objects.pizzas().vegetarian()
  137. Using a custom manager when traversing reverse relations
  138. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  139. It is now possible to :ref:`specify a custom manager
  140. <using-custom-reverse-manager>` when traversing a reverse relationship::
  141. class Blog(models.Model):
  142. pass
  143. class Entry(models.Model):
  144. blog = models.ForeignKey(Blog)
  145. objects = models.Manager() # Default Manager
  146. entries = EntryManager() # Custom Manager
  147. b = Blog.objects.get(id=1)
  148. b.entry_set(manager='entries').all()
  149. New system check framework
  150. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  151. We've added a new :doc:`System check framework </ref/checks>` for
  152. detecting common problems (like invalid models) and providing hints for
  153. resolving those problems. The framework is extensible so you can add your
  154. own checks for your own apps and libraries.
  155. To perform system checks, you use the :djadmin:`check` management command.
  156. This command replaces the older :djadmin:`validate` management command.
  157. New ``Prefetch`` object for advanced ``prefetch_related`` operations.
  158. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  159. The new :class:`~django.db.models.Prefetch` object allows customizing
  160. prefetch operations.
  161. You can specify the ``QuerySet`` used to traverse a given relation
  162. or customize the storage location of prefetch results.
  163. This enables things like filtering prefetched relations, calling
  164. :meth:`~django.db.models.query.QuerySet.select_related()` from a prefetched
  165. relation, or prefetching the same relation multiple times with different
  166. querysets. See :meth:`~django.db.models.query.QuerySet.prefetch_related()`
  167. for more details.
  168. Admin shortcuts support time zones
  169. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  170. The "today" and "now" shortcuts next to date and time input widgets in the
  171. admin are now operating in the :ref:`current time zone
  172. <default-current-time-zone>`. Previously, they used the browser time zone,
  173. which could result in saving the wrong value when it didn't match the current
  174. time zone on the server.
  175. In addition, the widgets now display a help message when the browser and
  176. server time zone are different, to clarify how the value inserted in the field
  177. will be interpreted.
  178. Using database cursors as context managers
  179. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  180. Prior to Python 2.7, database cursors could be used as a context manager. The
  181. specific backend's cursor defined the behavior of the context manager. The
  182. behavior of magic method lookups was changed with Python 2.7 and cursors were
  183. no longer usable as context managers.
  184. Django 1.7 allows a cursor to be used as a context manager that is a shortcut
  185. for the following, instead of backend specific behavior.
  186. .. code-block:: python
  187. c = connection.cursor()
  188. try:
  189. c.execute(...)
  190. finally:
  191. c.close()
  192. Custom lookups
  193. ~~~~~~~~~~~~~~
  194. It is now possible to write custom lookups and transforms for the ORM.
  195. Custom lookups work just like Django's inbuilt lookups (e.g. ``lte``,
  196. ``icontains``) while transforms are a new concept.
  197. The :class:`django.db.models.Lookup` class provides a way to add lookup
  198. operators for model fields. As an example it is possible to add ``day_lte``
  199. operator for ``DateFields``.
  200. The :class:`django.db.models.Transform` class allows transformations of
  201. database values prior to the final lookup. For example it is possible to
  202. write a ``year`` transform that extracts year from the field's value.
  203. Transforms allow for chaining. After the ``year`` transform has been added
  204. to ``DateField`` it is possible to filter on the transformed value, for
  205. example ``qs.filter(author__birthdate__year__lte=1981)``.
  206. For more information about both custom lookups and transforms refer to
  207. :doc:`custom lookups </howto/custom-lookups>` documentation.
  208. Improvements to ``Form`` error handling
  209. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  210. ``Form.add_error()``
  211. ^^^^^^^^^^^^^^^^^^^^
  212. Previously there were two main patterns for handling errors in forms:
  213. * Raising a :exc:`~django.core.exceptions.ValidationError` from within certain
  214. functions (e.g. ``Field.clean()``, ``Form.clean_<fieldname>()``, or
  215. ``Form.clean()`` for non-field errors.)
  216. * Fiddling with ``Form._errors`` when targeting a specific field in
  217. ``Form.clean()`` or adding errors from outside of a "clean" method
  218. (e.g. directly from a view).
  219. Using the former pattern was straightforward since the form can guess from the
  220. context (i.e. which method raised the exception) where the errors belong and
  221. automatically process them. This remains the canonical way of adding errors
  222. when possible. However the latter was fiddly and error-prone, since the burden
  223. of handling edge cases fell on the user.
  224. The new :meth:`~django.forms.Form.add_error()` method allows adding errors
  225. to specific form fields from anywhere without having to worry about the details
  226. such as creating instances of ``django.forms.utils.ErrorList`` or dealing with
  227. ``Form.cleaned_data``. This new API replaces manipulating ``Form._errors``
  228. which now becomes a private API.
  229. See :ref:`validating-fields-with-clean` for an example using
  230. ``Form.add_error()``.
  231. Error metadata
  232. ^^^^^^^^^^^^^^
  233. The :exc:`~django.core.exceptions.ValidationError` constructor accepts metadata
  234. such as error ``code`` or ``params`` which are then available for interpolating
  235. into the error message (see :ref:`raising-validation-error` for more details);
  236. however, before Django 1.7 those metadata were discarded as soon as the errors
  237. were added to :attr:`Form.errors <django.forms.Form.errors>`.
  238. :attr:`Form.errors <django.forms.Form.errors>` and
  239. ``django.forms.utils.ErrorList`` now store the ``ValidationError`` instances
  240. so these metadata can be retrieved at any time through the new
  241. :meth:`Form.errors.as_data <django.forms.Form.errors.as_data()>` method.
  242. The retrieved ``ValidationError`` instances can then be identified thanks to
  243. their error ``code`` which enables things like rewriting the error's message
  244. or writing custom logic in a view when a given error is present. It can also
  245. be used to serialize the errors in a custom format such as XML.
  246. The new :meth:`Form.errors.as_json() <django.forms.Form.errors.as_json()>`
  247. method is a convenience method which returns error messages along with error
  248. codes serialized as JSON. ``as_json()`` uses ``as_data()`` and gives an idea
  249. of how the new system could be extended.
  250. Error containers and backward compatibility
  251. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  252. Heavy changes to the various error containers were necessary in order
  253. to support the features above, specifically
  254. :attr:`Form.errors <django.forms.Form.errors>`,
  255. ``django.forms.utils.ErrorList``, and the internal storages of
  256. :exc:`~django.core.exceptions.ValidationError`. These containers which used
  257. to store error strings now store ``ValidationError`` instances and public APIs
  258. have been adapted to make this as transparent as possible, but if you've been
  259. using private APIs, some of the changes are backwards incompatible; see
  260. :ref:`validation-error-constructor-and-internal-storage` for more details.
  261. Minor features
  262. ~~~~~~~~~~~~~~
  263. :mod:`django.contrib.admin`
  264. ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  265. * You can now implement :attr:`~django.contrib.admin.AdminSite.site_header`,
  266. :attr:`~django.contrib.admin.AdminSite.site_title`, and
  267. :attr:`~django.contrib.admin.AdminSite.index_title` attributes on a custom
  268. :class:`~django.contrib.admin.AdminSite` in order to easily change the admin
  269. site's page title and header text. No more needing to override templates!
  270. * Buttons in :mod:`django.contrib.admin` now use the ``border-radius`` CSS
  271. property for rounded corners rather than GIF background images.
  272. * Some admin templates now have ``app-<app_name>`` and ``model-<model_name>``
  273. classes in their ``<body>`` tag to allow customizing the CSS per app or per
  274. model.
  275. * The admin changelist cells now have a ``field-<field_name>`` class in the
  276. HTML to enable style customizations.
  277. * The admin's search fields can now be customized per-request thanks to the new
  278. :meth:`django.contrib.admin.ModelAdmin.get_search_fields` method.
  279. * The :meth:`ModelAdmin.get_fields()
  280. <django.contrib.admin.ModelAdmin.get_fields>` method may be overridden to
  281. customize the value of :attr:`ModelAdmin.fields
  282. <django.contrib.admin.ModelAdmin.fields>`.
  283. * In addition to the existing ``admin.site.register`` syntax, you can use the
  284. new :func:`~django.contrib.admin.register` decorator to register a
  285. :class:`~django.contrib.admin.ModelAdmin`.
  286. * You may specify :meth:`ModelAdmin.list_display_links
  287. <django.contrib.admin.ModelAdmin.list_display_links>` ``= None`` to disable
  288. links on the change list page grid.
  289. * You may now specify :attr:`ModelAdmin.view_on_site
  290. <django.contrib.admin.ModelAdmin.view_on_site>` to control whether or not to
  291. display the "View on site" link.
  292. * You can specify a descending ordering for a :attr:`ModelAdmin.list_display
  293. <django.contrib.admin.ModelAdmin.list_display>` value by prefixing the
  294. ``admin_order_field`` value with a hyphen.
  295. * The :meth:`ModelAdmin.get_changeform_initial_data()
  296. <django.contrib.admin.ModelAdmin.get_changeform_initial_data>` method may be
  297. overridden to define custom behavior for setting initial change form data.
  298. :mod:`django.contrib.auth`
  299. ^^^^^^^^^^^^^^^^^^^^^^^^^^
  300. * Any ``**kwargs`` passed to
  301. :meth:`~django.contrib.auth.models.User.email_user()` are passed to the
  302. underlying :meth:`~django.core.mail.send_mail()` call.
  303. * The :func:`~django.contrib.auth.decorators.permission_required` decorator can
  304. take a list of permissions as well as a single permission.
  305. * You can override the new :meth:`AuthenticationForm.confirm_login_allowed()
  306. <django.contrib.auth.forms.AuthenticationForm.confirm_login_allowed>` method
  307. to more easily customize the login policy.
  308. * :func:`django.contrib.auth.views.password_reset` takes an optional
  309. ``html_email_template_name`` parameter used to send a multipart HTML email
  310. for password resets.
  311. * The :meth:`AbstractBaseUser.get_session_auth_hash()
  312. <django.contrib.auth.models.AbstractBaseUser.get_session_auth_hash>`
  313. method was added and if your :setting:`AUTH_USER_MODEL` inherits from
  314. :class:`~django.contrib.auth.models.AbstractBaseUser`, changing a user's
  315. password now invalidates old sessions if the
  316. :class:`~django.contrib.auth.middleware.SessionAuthenticationMiddleware` is
  317. enabled. See :ref:`session-invalidation-on-password-change` for more details
  318. including upgrade considerations when enabling this new middleware.
  319. :mod:`django.contrib.formtools`
  320. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  321. * Calls to :meth:`WizardView.done()
  322. <django.contrib.formtools.wizard.views.WizardView.done>` now include a
  323. ``form_dict`` to allow easier access to forms by their step name.
  324. :mod:`django.contrib.gis`
  325. ^^^^^^^^^^^^^^^^^^^^^^^^^^
  326. * The default OpenLayers library version included in widgets has been updated
  327. from 2.11 to 2.13.
  328. * Prepared geometries now also support the ``crosses``, ``disjoint``,
  329. ``overlaps``, ``touches`` and ``within`` predicates, if GEOS 3.3 or later is
  330. installed.
  331. :mod:`django.contrib.messages`
  332. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  333. * The backends for :mod:`django.contrib.messages` that use cookies, will now
  334. follow the :setting:`SESSION_COOKIE_SECURE` and
  335. :setting:`SESSION_COOKIE_HTTPONLY` settings.
  336. * The :ref:`messages context processor <message-displaying>` now adds a
  337. dictionary of default levels under the name ``DEFAULT_MESSAGE_LEVELS``.
  338. * :class:`~django.contrib.messages.storage.base.Message` objects now have a
  339. ``level_tag`` attribute that contains the string representation of the
  340. message level.
  341. :mod:`django.contrib.redirects`
  342. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  343. * :class:`~django.contrib.redirects.middleware.RedirectFallbackMiddleware`
  344. has two new attributes
  345. (:attr:`~django.contrib.redirects.middleware.RedirectFallbackMiddleware.response_gone_class`
  346. and
  347. :attr:`~django.contrib.redirects.middleware.RedirectFallbackMiddleware.response_redirect_class`)
  348. that specify the types of :class:`~django.http.HttpResponse` instances the
  349. middleware returns.
  350. :mod:`django.contrib.sessions`
  351. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  352. * The ``"django.contrib.sessions.backends.cached_db"`` session backend now
  353. respects :setting:`SESSION_CACHE_ALIAS`. In previous versions, it always used
  354. the `default` cache.
  355. :mod:`django.contrib.sitemaps`
  356. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  357. * The :mod:`sitemap framework<django.contrib.sitemaps>` now makes use of
  358. :attr:`~django.contrib.sitemaps.Sitemap.lastmod` to set a ``Last-Modified``
  359. header in the response. This makes it possible for the
  360. :class:`~django.middleware.http.ConditionalGetMiddleware` to handle
  361. conditional ``GET`` requests for sitemaps which set ``lastmod``.
  362. :mod:`django.contrib.sites`
  363. ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  364. * The new :class:`django.contrib.sites.middleware.CurrentSiteMiddleware` allows
  365. setting the current site on each request.
  366. :mod:`django.contrib.staticfiles`
  367. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  368. * The :ref:`static files storage classes <staticfiles-storages>` may be
  369. subclassed to override the permissions that collected static files and
  370. directories receive by setting the
  371. :attr:`~django.core.files.storage.FileSystemStorage.file_permissions_mode`
  372. and :attr:`~django.core.files.storage.FileSystemStorage.directory_permissions_mode`
  373. parameters. See :djadmin:`collectstatic` for example usage.
  374. * The :class:`~django.contrib.staticfiles.storage.CachedStaticFilesStorage`
  375. backend gets a sibling class called
  376. :class:`~django.contrib.staticfiles.storage.ManifestStaticFilesStorage`
  377. that doesn't use the cache system at all but instead a JSON file called
  378. ``staticfiles.json`` for storing the mapping between the original file name
  379. (e.g. ``css/styles.css``) and the hashed file name (e.g.
  380. ``css/styles.55e7cbb9ba48.css``. The ``staticfiles.json`` file is created
  381. when running the :djadmin:`collectstatic` management command and should
  382. be a less expensive alternative for remote storages such as Amazon S3.
  383. See the :class:`~django.contrib.staticfiles.storage.ManifestStaticFilesStorage`
  384. docs for more information.
  385. * :djadmin:`findstatic` now accepts verbosity flag level 2, meaning it will
  386. show the relative paths of the directories it searched. See
  387. :djadmin:`findstatic` for example output.
  388. :mod:`django.contrib.syndication`
  389. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  390. * The :class:`~django.utils.feedgenerator.Atom1Feed` syndication feed's
  391. ``updated`` element now utilizes ``updateddate`` instead of ``pubdate``,
  392. allowing the ``published`` element to be included in the feed (which
  393. relies on ``pubdate``).
  394. Cache
  395. ^^^^^
  396. * Access to caches configured in :setting:`CACHES` is now available via
  397. :data:`django.core.cache.caches`. This dict-like object provides a different
  398. instance per thread. It supersedes :func:`django.core.cache.get_cache` which
  399. is now deprecated.
  400. * If you instantiate cache backends directly, be aware that they aren't
  401. thread-safe any more, as :data:`django.core.cache.caches` now yields
  402. different instances per thread.
  403. * Defining the :setting:`TIMEOUT <CACHES-TIMEOUT>` argument of the
  404. :setting:`CACHES` setting as ``None`` will set the cache keys as
  405. "non-expiring" by default. Previously, it was only possible to pass
  406. ``timeout=None`` to the cache backend's ``set()`` method.
  407. Cross Site Request Forgery
  408. ^^^^^^^^^^^^^^^^^^^^^^^^^^
  409. * The :setting:`CSRF_COOKIE_AGE` setting facilitates the use of session-based
  410. CSRF cookies.
  411. Email
  412. ^^^^^
  413. * :func:`~django.core.mail.send_mail` now accepts an ``html_message``
  414. parameter for sending a multipart ``text/plain`` and ``text/html`` email.
  415. * The SMTP :class:`~django.core.mail.backends.smtp.EmailBackend` now accepts a
  416. :attr:`~django.core.mail.backends.smtp.EmailBackend.timeout` parameter.
  417. File Storage
  418. ^^^^^^^^^^^^
  419. * File locking on Windows previously depended on the PyWin32 package; if it
  420. wasn't installed, file locking failed silently. That dependency has been
  421. removed, and file locking is now implemented natively on both Windows
  422. and Unix.
  423. File Uploads
  424. ^^^^^^^^^^^^
  425. * The new :attr:`UploadedFile.content_type_extra
  426. <django.core.files.uploadedfile.UploadedFile.content_type_extra>` attribute
  427. contains extra parameters passed to the ``content-type`` header on a file
  428. upload.
  429. * The new :setting:`FILE_UPLOAD_DIRECTORY_PERMISSIONS` setting controls
  430. the file system permissions of directories created during file upload, like
  431. :setting:`FILE_UPLOAD_PERMISSIONS` does for the files themselves.
  432. * The :attr:`FileField.upload_to <django.db.models.FileField.upload_to>`
  433. attribute is now optional. If it is omitted or given ``None`` or an empty
  434. string, a subdirectory won't be used for storing the uploaded files.
  435. * Uploaded files are now explicitly closed before the response is delivered to
  436. the client. Partially uploaded files are also closed as long as they are
  437. named ``file`` in the upload handler.
  438. Forms
  439. ^^^^^
  440. * The ``<label>`` and ``<input>`` tags rendered by
  441. :class:`~django.forms.RadioSelect` and
  442. :class:`~django.forms.CheckboxSelectMultiple` when looping over the radio
  443. buttons or checkboxes now include ``for`` and ``id`` attributes, respectively.
  444. Each radio button or checkbox includes an ``id_for_label`` attribute to
  445. output the element's ID.
  446. * The ``<textarea>`` tags rendered by :class:`~django.forms.Textarea` now
  447. include a ``maxlength`` attribute if the :class:`~django.db.models.TextField`
  448. model field has a ``max_length``.
  449. * :attr:`Field.choices<django.db.models.Field.choices>` now allows you to
  450. customize the "empty choice" label by including a tuple with an empty string
  451. or ``None`` for the key and the custom label as the value. The default blank
  452. option ``"----------"`` will be omitted in this case.
  453. * :class:`~django.forms.MultiValueField` allows optional subfields by setting
  454. the ``require_all_fields`` argument to ``False``. The ``required`` attribute
  455. for each individual field will be respected, and a new ``incomplete``
  456. validation error will be raised when any required fields are empty.
  457. * The :meth:`~django.forms.Form.clean` method on a form no longer needs to
  458. return ``self.cleaned_data``. If it does return a changed dictionary then
  459. that will still be used.
  460. * After a temporary regression in Django 1.6, it's now possible again to make
  461. :class:`~django.forms.TypedChoiceField` ``coerce`` method return an arbitrary
  462. value.
  463. * :attr:`SelectDateWidget.months
  464. <django.forms.extras.widgets.SelectDateWidget.months>` can be used to
  465. customize the wording of the months displayed in the select widget.
  466. * The ``min_num`` and ``validate_min`` parameters were added to
  467. :func:`~django.forms.formsets.formset_factory` to allow validating
  468. a minimum number of submitted forms.
  469. * The metaclasses used by ``Form`` and ``ModelForm`` have been reworked to
  470. support more inheritance scenarios. The previous limitation that prevented
  471. inheriting from both ``Form`` and ``ModelForm`` simultaneously have been
  472. removed as long as ``ModelForm`` appears first in the MRO.
  473. * It's now possible to remove a field from a ``Form`` when subclassing by
  474. setting the name to ``None``.
  475. * It's now possible to customize the error messages for ``ModelForm``’s
  476. ``unique``, ``unique_for_date``, and ``unique_together`` constraints.
  477. In order to support ``unique_together`` or any other ``NON_FIELD_ERROR``,
  478. ``ModelForm`` now looks for the ``NON_FIELD_ERROR`` key in the
  479. ``error_messages`` dictionary of the ``ModelForm``’s inner ``Meta`` class.
  480. See :ref:`considerations regarding model's error_messages
  481. <considerations-regarding-model-errormessages>` for more details.
  482. Internationalization
  483. ^^^^^^^^^^^^^^^^^^^^
  484. * The :attr:`django.middleware.locale.LocaleMiddleware.response_redirect_class`
  485. attribute allows you to customize the redirects issued by the middleware.
  486. * The :class:`~django.middleware.locale.LocaleMiddleware` now stores the user's
  487. selected language with the session key ``_language``. This should only be
  488. accessed using the :data:`~django.utils.translation.LANGUAGE_SESSION_KEY`
  489. constant. Previously it was stored with the key ``django_language`` and the
  490. ``LANGUAGE_SESSION_KEY`` constant did not exist, but keys reserved for Django
  491. should start with an underscore. For backwards compatibility ``django_language``
  492. is still read from in 1.7. Sessions will be migrated to the new key
  493. as they are written.
  494. * The :ttag:`blocktrans` tag now supports a ``trimmed`` option. This
  495. option will remove newline characters from the beginning and the end of the
  496. content of the ``{% blocktrans %}`` tag, replace any whitespace at the
  497. beginning and end of a line and merge all lines into one using a space
  498. character to separate them. This is quite useful for indenting the content of
  499. a ``{% blocktrans %}`` tag without having the indentation characters end up
  500. in the corresponding entry in the PO file, which makes the translation
  501. process easier.
  502. * When you run :djadmin:`makemessages` from the root directory of your project,
  503. any extracted strings will now be automatically distributed to the proper
  504. app or project message file. See :ref:`how-to-create-language-files` for
  505. details.
  506. * The :djadmin:`makemessages` command now always adds the ``--previous``
  507. command line flag to the ``msgmerge`` command, keeping previously translated
  508. strings in po files for fuzzy strings.
  509. * The following settings to adjust the language cookie options were introduced:
  510. :setting:`LANGUAGE_COOKIE_AGE`, :setting:`LANGUAGE_COOKIE_DOMAIN`
  511. and :setting:`LANGUAGE_COOKIE_PATH`.
  512. * Added :ref:`format definitions <format-localization>` for Esperanto.
  513. Management Commands
  514. ^^^^^^^^^^^^^^^^^^^
  515. * The :djadminopt:`--no-color` option for ``django-admin.py`` allows you to
  516. disable the colorization of management command output.
  517. * The new :djadminopt:`--natural-foreign` and :djadminopt:`--natural-primary`
  518. options for :djadmin:`dumpdata`, and the new ``use_natural_foreign_keys`` and
  519. ``use_natural_primary_keys`` arguments for ``serializers.serialize()``, allow
  520. the use of natural primary keys when serializing.
  521. * It is no longer necessary to provide the cache table name or the
  522. :djadminopt:`--database` option for the :djadmin:`createcachetable` command.
  523. Django takes this information from your settings file. If you have configured
  524. multiple caches or multiple databases, all cache tables are created.
  525. * The :djadmin:`runserver` command received several improvements:
  526. * On Linux systems, if pyinotify_ is installed, the development server will
  527. reload immediately when a file is changed. Previously, it polled the
  528. filesystem for changes every second. That caused a small delay before
  529. reloads and reduced battery life on laptops.
  530. .. _pyinotify: https://pypi.python.org/pypi/pyinotify
  531. * In addition, the development server automatically reloads when a
  532. translation file is updated, i.e. after running
  533. :djadmin:`compilemessages`.
  534. * All HTTP requests are logged to the console, including requests for static
  535. files or ``favicon.ico`` that used to be filtered out.
  536. * Management commands can now produce syntax colored output under Windows if
  537. the ANSICON third-party tool is installed and active.
  538. * :djadmin:`collectstatic` command with symlink option is now supported on
  539. Windows NT 6 (Windows Vista and newer).
  540. * :ref:`initial-sql` now works better if the sqlparse_ Python library is
  541. installed.
  542. Note that it's deprecated in favor of the
  543. :class:`~django.db.migrations.operations.RunSQL` operation of migrations,
  544. which benefits from the improved behavior.
  545. .. _sqlparse: https://pypi.python.org/pypi/sqlparse
  546. Models
  547. ^^^^^^
  548. * The :meth:`QuerySet.update_or_create()
  549. <django.db.models.query.QuerySet.update_or_create>` method was added.
  550. * The new :attr:`~django.db.models.Options.default_permissions` model
  551. ``Meta`` option allows you to customize (or disable) creation of the default
  552. add, change, and delete permissions.
  553. * Explicit :class:`~django.db.models.OneToOneField` for
  554. :ref:`multi-table-inheritance` are now discovered in abstract classes.
  555. * Is it now possible to avoid creating a backward relation for
  556. :class:`~django.db.models.OneToOneField` by setting its
  557. :attr:`~django.db.models.ForeignKey.related_name` to
  558. ``'+'`` or ending it with ``'+'``.
  559. * :class:`F expressions <django.db.models.F>` support the power operator
  560. (``**``).
  561. * The ``remove()`` and ``clear()`` methods of the related managers created by
  562. ``ForeignKey`` and ``GenericForeignKey`` now accept the ``bulk`` keyword
  563. argument to control whether or not to perform operations in bulk
  564. (i.e. using ``QuerySet.update()``). Defaults to ``True``.
  565. * It is now possible to use ``None`` as a query value for the :lookup:`iexact`
  566. lookup.
  567. * It is now possible to pass a callable as value for the attribute
  568. :attr:`~django.db.models.ForeignKey.limit_choices_to` when defining a
  569. ``ForeignKey`` or ``ManyToManyField``.
  570. * Calling :meth:`only() <django.db.models.query.QuerySet.only>` and
  571. :meth:`defer() <django.db.models.query.QuerySet.defer>` on the result of
  572. :meth:`QuerySet.values() <django.db.models.query.QuerySet.values>` now raises
  573. an error (before that, it would either result in a database error or
  574. incorrect data).
  575. * You can use a single list for :attr:`~django.db.models.Options.index_together`
  576. (rather than a list of lists) when specifying a single set of fields.
  577. * Custom intermediate models having more than one foreign key to any of the
  578. models participating in a many-to-many relationship are now permitted,
  579. provided you explicitly specify which foreign keys should be used by setting
  580. the new :attr:`ManyToManyField.through_fields <django.db.models.ManyToManyField.through_fields>`
  581. argument.
  582. * Assigning a model instance to a non-relation field will now throw an error.
  583. Previously this used to work if the field accepted integers as input as it
  584. took the primary key.
  585. * Integer fields are now validated against database backend specific min and
  586. max values based on their :meth:`internal_type <django.db.models.Field.get_internal_type>`.
  587. Previously model field validation didn't prevent values out of their associated
  588. column data type range from being saved resulting in an integrity error.
  589. * It is now possible to explicitly :meth:`~django.db.models.query.QuerySet.order_by`
  590. a relation ``_id`` field by using its attribute name.
  591. Signals
  592. ^^^^^^^
  593. * The ``enter`` argument was added to the
  594. :data:`~django.test.signals.setting_changed` signal.
  595. * The model signals can be now be connected to using a ``str`` of the
  596. ``'app_label.ModelName'`` form – just like related fields – to lazily
  597. reference their senders.
  598. Templates
  599. ^^^^^^^^^
  600. * The :meth:`Context.push() <django.template.Context.push>` method now returns
  601. a context manager which automatically calls :meth:`pop()
  602. <django.template.Context.pop>` upon exiting the ``with`` statement.
  603. Additionally, :meth:`push() <django.template.Context.push>` now accepts
  604. parameters that are passed to the ``dict`` constructor used to build the new
  605. context level.
  606. * The new :meth:`Context.flatten() <django.template.Context.flatten>` method
  607. returns a ``Context``'s stack as one flat dictionary.
  608. * ``Context`` objects can now be compared for equality (internally, this
  609. uses :meth:`Context.flatten() <django.template.Context.flatten>` so the
  610. internal structure of each ``Context``'s stack doesn't matter as long as their
  611. flattened version is identical).
  612. * The :ttag:`widthratio` template tag now accepts an ``"as"`` parameter to
  613. capture the result in a variable.
  614. * The :ttag:`include` template tag will now also accept anything with a
  615. ``render()`` method (such as a ``Template``) as an argument. String
  616. arguments will be looked up using
  617. :func:`~django.template.loader.get_template` as always.
  618. * It is now possible to :ttag:`include` templates recursively.
  619. * Template objects now have an origin attribute set when
  620. :setting:`TEMPLATE_DEBUG` is ``True``. This allows template origins to be
  621. inspected and logged outside of the ``django.template`` infrastructure.
  622. * ``TypeError`` exceptions are no longer silenced when raised during the
  623. rendering of a template.
  624. * The following functions now accept a ``dirs`` parameter which is a list or
  625. tuple to override :setting:`TEMPLATE_DIRS`:
  626. * :func:`django.template.loader.get_template()`
  627. * :func:`django.template.loader.select_template()`
  628. * :func:`django.shortcuts.render()`
  629. * :func:`django.shortcuts.render_to_response()`
  630. * The :tfilter:`time` filter now accepts timezone-related :ref:`format
  631. specifiers <date-and-time-formatting-specifiers>` ``'e'``, ``'O'`` , ``'T'``
  632. and ``'Z'`` and is able to digest :ref:`time-zone-aware
  633. <naive_vs_aware_datetimes>` ``datetime`` instances performing the expected
  634. rendering.
  635. * The :ttag:`cache` tag will now try to use the cache called
  636. "template_fragments" if it exists and fall back to using the default cache
  637. otherwise. It also now accepts an optional ``using`` keyword argument to
  638. control which cache it uses.
  639. * The new :tfilter:`truncatechars_html` filter truncates a string to be no
  640. longer than the specified number of characters, taking HTML into account.
  641. Requests and Responses
  642. ^^^^^^^^^^^^^^^^^^^^^^
  643. * The new :attr:`HttpRequest.scheme <django.http.HttpRequest.scheme>` attribute
  644. specifies the scheme of the request (``http`` or ``https`` normally).
  645. * The shortcut :func:`redirect() <django.shortcuts.redirect>` now supports
  646. relative URLs.
  647. * The new :class:`~django.http.JsonResponse` subclass of
  648. :class:`~django.http.HttpResponse` helps easily create JSON-encoded responses.
  649. Tests
  650. ^^^^^
  651. * :class:`~django.test.runner.DiscoverRunner` has two new attributes,
  652. :attr:`~django.test.runner.DiscoverRunner.test_suite` and
  653. :attr:`~django.test.runner.DiscoverRunner.test_runner`, which facilitate
  654. overriding the way tests are collected and run.
  655. * The ``fetch_redirect_response`` argument was added to
  656. :meth:`~django.test.SimpleTestCase.assertRedirects`. Since the test
  657. client can't fetch externals URLs, this allows you to use ``assertRedirects``
  658. with redirects that aren't part of your Django app.
  659. * Correct handling of scheme when making comparisons in
  660. :meth:`~django.test.SimpleTestCase.assertRedirects`.
  661. * The ``secure`` argument was added to all the request methods of
  662. :class:`~django.test.Client`. If ``True``, the request will be made
  663. through HTTPS.
  664. * :meth:`~django.test.TransactionTestCase.assertNumQueries` now prints
  665. out the list of executed queries if the assertion fails.
  666. * The ``WSGIRequest`` instance generated by the test handler is now attached to
  667. the :attr:`django.test.Response.wsgi_request` attribute.
  668. * The database settings for testing have been collected into a dictionary
  669. named :setting:`TEST <DATABASE-TEST>`.
  670. Utilities
  671. ^^^^^^^^^
  672. * Improved :func:`~django.utils.html.strip_tags` accuracy (but it still cannot
  673. guarantee an HTML-safe result, as stated in the documentation).
  674. Validators
  675. ^^^^^^^^^^
  676. * :class:`~django.core.validators.RegexValidator` now accepts the optional
  677. :attr:`~django.core.validators.RegexValidator.flags` and
  678. Boolean :attr:`~django.core.validators.RegexValidator.inverse_match` arguments.
  679. The :attr:`~django.core.validators.RegexValidator.inverse_match` attribute
  680. determines if the :exc:`~django.core.exceptions.ValidationError` should
  681. be raised when the regular expression pattern matches (``True``) or does not
  682. match (``False``, by default) the provided ``value``. The
  683. :attr:`~django.core.validators.RegexValidator.flags` attribute sets the flags
  684. used when compiling a regular expression string.
  685. * :class:`~django.core.validators.URLValidator` now accepts an optional
  686. ``schemes`` argument which allows customization of the accepted URI schemes
  687. (instead of the defaults ``http(s)`` and ``ftp(s)``).
  688. * :func:`~django.core.validators.validate_email` now accepts addresses with
  689. IPv6 literals, like ``example@[2001:db8::1]``, as specified in RFC 5321.
  690. Backwards incompatible changes in 1.7
  691. =====================================
  692. .. warning::
  693. In addition to the changes outlined in this section, be sure to review the
  694. :ref:`deprecation plan <deprecation-removed-in-1.7>` for any features that
  695. have been removed. If you haven't updated your code within the
  696. deprecation timeline for a given feature, its removal may appear as a
  697. backwards incompatible change.
  698. allow_syncdb/allow_migrate
  699. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  700. While Django will still look at ``allow_syncdb`` methods even though they
  701. should be renamed to ``allow_migrate``, there is a subtle difference in which
  702. models get passed to these methods.
  703. For apps with migrations, ``allow_migrate`` will now get passed
  704. :ref:`historical models <historical-models>`, which are special versioned models
  705. without custom attributes, methods or managers. Make sure your ``allow_migrate``
  706. methods are only referring to fields or other items in ``model._meta``.
  707. initial_data
  708. ~~~~~~~~~~~~
  709. Apps with migrations will not load ``initial_data`` fixtures when they have
  710. finished migrating. Apps without migrations will continue to load these fixtures
  711. during the phase of ``migrate`` which emulates the old ``syncdb`` behavior,
  712. but any new apps will not have this support.
  713. Instead, you are encouraged to load initial data in migrations if you need it
  714. (using the ``RunPython`` operation and your model classes);
  715. this has the added advantage that your initial data will not need updating
  716. every time you change the schema.
  717. deconstruct() and serializability
  718. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  719. Django now requires all Field classes and all of their constructor arguments
  720. to be serializable. If you modify the constructor signature in your custom
  721. Field in any way, you'll need to implement a deconstruct() method;
  722. we've expanded the custom field documentation with :ref:`instructions
  723. on implementing this method <custom-field-deconstruct-method>`.
  724. The requirement for all field arguments to be
  725. :ref:`serializable <migration-serializing>` means that any custom class
  726. instances being passed into Field constructors - things like custom Storage
  727. subclasses, for instance - need to have a :ref:`deconstruct method defined on
  728. them as well <custom-deconstruct-method>`, though Django provides a handy
  729. class decorator that will work for most applications.
  730. App-loading changes
  731. ~~~~~~~~~~~~~~~~~~~
  732. Start-up sequence
  733. ^^^^^^^^^^^^^^^^^
  734. Django 1.7 loads application configurations and models as soon as it starts.
  735. While this behavior is more straightforward and is believed to be more robust,
  736. regressions cannot be ruled out. See :ref:`applications-troubleshooting` for
  737. solutions to some problems you may encounter.
  738. Standalone scripts
  739. ^^^^^^^^^^^^^^^^^^
  740. If you're using Django in a plain Python script — rather than a management
  741. command — and you rely on the :envvar:`DJANGO_SETTINGS_MODULE` environment
  742. variable, you must now explicitly initialize Django at the beginning of your
  743. script with::
  744. >>> import django
  745. >>> django.setup()
  746. Otherwise, you will hit an ``AppRegistryNotReady`` exception.
  747. App registry consistency
  748. ^^^^^^^^^^^^^^^^^^^^^^^^
  749. It is no longer possible to have multiple installed applications with the same
  750. label. In previous versions of Django, this didn't always work correctly, but
  751. didn't crash outright either.
  752. If you have two apps with the same label, you should create an
  753. :class:`~django.apps.AppConfig` for one of them and override its
  754. :class:`~django.apps.AppConfig.label` there. You should then adjust your code
  755. wherever it references this application or its models with the old label.
  756. It isn't possible to import the same model twice through different paths any
  757. more. As of Django 1.6, this may happen only if you're manually putting a
  758. directory and a subdirectory on :envvar:`PYTHONPATH`. Refer to the section on
  759. the new project layout in the :doc:`1.4 release notes </releases/1.4>` for
  760. migration instructions.
  761. You should make sure that:
  762. * All models are defined in applications that are listed in
  763. :setting:`INSTALLED_APPS` or have an explicit
  764. :attr:`~django.db.models.Options.app_label`.
  765. * Models aren't imported as a side-effect of loading their application.
  766. Specifically, you shouldn't import models in the root module of an
  767. application nor in the module that define its configuration class.
  768. Django will enforce these requirements as of version 1.9, after a deprecation
  769. period.
  770. Subclassing AppCommand
  771. ^^^^^^^^^^^^^^^^^^^^^^
  772. Subclasses of :class:`~django.core.management.AppCommand` must now implement a
  773. :meth:`~django.core.management.AppCommand.handle_app_config` method instead of
  774. ``handle_app()``. This method receives an :class:`~django.apps.AppConfig`
  775. instance instead of a models module.
  776. Introspecting applications
  777. ^^^^^^^^^^^^^^^^^^^^^^^^^^
  778. Since :setting:`INSTALLED_APPS` now supports application configuration classes
  779. in addition to application modules, you should review code that accesses this
  780. setting directly and use the app registry (:attr:`django.apps.apps`) instead.
  781. The app registry has preserved some features of the old app cache. Even though
  782. the app cache was a private API, obsolete methods and arguments will be
  783. removed through a standard deprecation path, with the exception of the
  784. following changes that take effect immediately:
  785. * ``get_model`` raises :exc:`LookupError` instead of returning ``None`` when no
  786. model is found.
  787. * The ``only_installed`` argument of ``get_model`` and ``get_models`` no
  788. longer exists, nor does the ``seed_cache`` argument of ``get_model``.
  789. Management commands and order of :setting:`INSTALLED_APPS`
  790. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  791. When several applications provide management commands with the same name,
  792. Django loads the command from the application that comes first in
  793. :setting:`INSTALLED_APPS`. Previous versions loaded the command from the
  794. application that came last.
  795. This brings discovery of management commands in line with other parts of
  796. Django that rely on the order of :setting:`INSTALLED_APPS`, such as static
  797. files, templates, and translations.
  798. .. _validation-error-constructor-and-internal-storage:
  799. ``ValidationError`` constructor and internal storage
  800. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  801. The behavior of the ``ValidationError`` constructor has changed when it
  802. receives a container of errors as an argument (e.g. a ``list`` or an
  803. ``ErrorList``):
  804. * It converts any strings it finds to instances of ``ValidationError``
  805. before adding them to its internal storage.
  806. * It doesn't store the given container but rather copies its content to its
  807. own internal storage; previously the container itself was added to the
  808. ``ValidationError`` instance and used as internal storage.
  809. This means that if you access the ``ValidationError`` internal storages, such
  810. as ``error_list``; ``error_dict``; or the return value of
  811. ``update_error_dict()`` you may find instances of ``ValidationError`` where you
  812. would have previously found strings.
  813. Also if you directly assigned the return value of ``update_error_dict()``
  814. to ``Form._errors`` you may inadvertently add `list` instances where
  815. ``ErrorList`` instances are expected. This is a problem because unlike a
  816. simple `list`, an ``ErrorList`` knows how to handle instances of
  817. ``ValidationError``.
  818. Most use-cases that warranted using these private APIs are now covered by
  819. the newly introduced :meth:`Form.add_error() <django.forms.Form.add_error()>`
  820. method::
  821. # Old pattern:
  822. try:
  823. # ...
  824. except ValidationError as e:
  825. self._errors = e.update_error_dict(self._errors)
  826. # New pattern:
  827. try:
  828. # ...
  829. except ValidationError as e:
  830. self.add_error(None, e)
  831. If you need both Django <= 1.6 and 1.7 compatibility you can't use
  832. :meth:`Form.add_error() <django.forms.Form.add_error()>` since it
  833. wasn't available before Django 1.7, but you can use the following
  834. workaround to convert any ``list`` into ``ErrorList``::
  835. try:
  836. # ...
  837. except ValidationError as e:
  838. self._errors = e.update_error_dict(self._errors)
  839. # Additional code to ensure ``ErrorDict`` is exclusively
  840. # composed of ``ErrorList`` instances.
  841. for field, error_list in self._errors.items():
  842. if not isinstance(error_list, self.error_class):
  843. self._errors[field] = self.error_class(error_list)
  844. Behavior of ``LocMemCache`` regarding pickle errors
  845. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  846. An inconsistency existed in previous versions of Django regarding how pickle
  847. errors are handled by different cache backends.
  848. ``django.core.cache.backends.locmem.LocMemCache`` used to fail silently when
  849. such an error occurs, which is inconsistent with other backends and leads to
  850. cache-specific errors. This has been fixed in Django 1.7, see
  851. `Ticket #21200`_ for more details.
  852. .. _Ticket #21200: https://code.djangoproject.com/ticket/21200
  853. Cache keys are now generated from the request's absolute URL
  854. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  855. Previous versions of Django generated cache keys using a request's path and
  856. query string but not the scheme or host. If a Django application was serving
  857. multiple subdomains or domains, cache keys could collide. In Django 1.7, cache
  858. keys vary by the absolute URL of the request including scheme, host, path, and
  859. query string. For example, the URL portion of a cache key is now generated from
  860. ``http://www.example.com/path/to/?key=val`` rather than ``/path/to/?key=val``.
  861. The cache keys generated by Django 1.7 will be different from the keys
  862. generated by older versions of Django. After upgrading to Django 1.7, the first
  863. request to any previously cached URL will be a cache miss .
  864. Passing ``None`` to ``Manager.db_manager()``
  865. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  866. In previous versions of Django, it was possible to use
  867. ``db_manager(using=None)`` on a model manager instance to obtain a manager
  868. instance using default routing behavior, overriding any manually specified
  869. database routing. In Django 1.7, a value of ``None`` passed to db_manager will
  870. produce a router that *retains* any manually assigned database routing -- the
  871. manager will *not* be reset. This was necessary to resolve an inconsistency in
  872. the way routing information cascaded over joins. See `Ticket #13724`_ for more
  873. details.
  874. .. _Ticket #13724: https://code.djangoproject.com/ticket/13724
  875. pytz may be required
  876. ~~~~~~~~~~~~~~~~~~~~
  877. If your project handles datetimes before 1970 or after 2037 and Django raises
  878. a :exc:`ValueError` when encountering them, you will have to install pytz_. You
  879. may be affected by this problem if you use Django's time zone-related date
  880. formats or :mod:`django.contrib.syndication`.
  881. .. _pytz: https://pypi.python.org/pypi/pytz/
  882. ``remove()`` and ``clear()`` methods of related managers
  883. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  884. The ``remove()`` and ``clear()`` methods of the related managers created by
  885. ``ForeignKey``, ``GenericForeignKey``, and ``ManyToManyField`` suffered from a
  886. number of issues. Some operations ran multiple data modifying queries without
  887. wrapping them in a transaction, and some operations didn't respect default
  888. filtering when it was present (i.e. when the default manager on the related
  889. model implemented a custom ``get_queryset()``).
  890. Fixing the issues introduced some backward incompatible changes:
  891. - The default implementation of ``remove()`` for ``ForeignKey`` related managers
  892. changed from a series of ``Model.save()`` calls to a single
  893. ``QuerySet.update()`` call. The change means that ``pre_save`` and
  894. ``post_save`` signals aren't sent anymore. You can use the ``bulk=False``
  895. keyword argument to revert to the previous behavior.
  896. - The ``remove()`` and ``clear()`` methods for ``GenericForeignKey`` related
  897. managers now perform bulk delete. The ``Model.delete()`` method isn't called
  898. on each instance anymore. You can use the ``bulk=False`` keyword argument to
  899. revert to the previous behavior.
  900. - The ``remove()`` and ``clear()`` methods for ``ManyToManyField`` related
  901. managers perform nested queries when filtering is involved, which may or
  902. may not be an issue depending on your database and your data itself.
  903. See :ref:`this note <nested-queries-performance>` for more details.
  904. Admin login redirection strategy
  905. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  906. Historically, the Django admin site passed the request from an unauthorized or
  907. unauthenticated user directly to the login view, without HTTP redirection. In
  908. Django 1.7, this behavior changed to conform to a more traditional workflow
  909. where any unauthorized request to an admin page will be redirected (by HTTP
  910. status code 302) to the login page, with the ``next`` parameter set to the
  911. referring path. The user will be redirected there after a successful login.
  912. Note also that the admin login form has been updated to not contain the
  913. ``this_is_the_login_form`` field (now unused) and the ``ValidationError`` code
  914. has been set to the more regular ``invalid_login`` key.
  915. ``select_for_update()`` requires a transaction
  916. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  917. Historically, queries that use
  918. :meth:`~django.db.models.query.QuerySet.select_for_update()` could be
  919. executed in autocommit mode, outside of a transaction. Before Django
  920. 1.6, Django's automatic transactions mode allowed this to be used to
  921. lock records until the next write operation. Django 1.6 introduced
  922. database-level autocommit; since then, execution in such a context
  923. voids the effect of ``select_for_update()``. It is, therefore, assumed
  924. now to be an error and raises an exception.
  925. This change was made because such errors can be caused by including an
  926. app which expects global transactions (e.g. :setting:`ATOMIC_REQUESTS
  927. <DATABASE-ATOMIC_REQUESTS>` set to ``True``), or Django's old autocommit
  928. behavior, in a project which runs without them; and further, such
  929. errors may manifest as data-corruption bugs. It was also made in
  930. Django 1.6.3.
  931. This change may cause test failures if you use ``select_for_update()``
  932. in a test class which is a subclass of
  933. :class:`~django.test.TransactionTestCase` rather than
  934. :class:`~django.test.TestCase`.
  935. Contrib middleware removed from default :setting:`MIDDLEWARE_CLASSES`
  936. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  937. The :ref:`app-loading refactor <app-loading-refactor-17-release-note>`
  938. deprecated using models from apps which are not part of the
  939. :setting:`INSTALLED_APPS` setting. This exposed an incompatibility between
  940. the default :setting:`INSTALLED_APPS` and :setting:`MIDDLEWARE_CLASSES` in the
  941. global defaults (``django.conf.global_settings``). To bring these settings in
  942. sync and prevent deprecation warnings when doing things like testing reusable
  943. apps with minimal settings,
  944. :class:`~django.contrib.sessions.middleware.SessionMiddleware`,
  945. :class:`~django.contrib.auth.middleware.AuthenticationMiddleware`, and
  946. :class:`~django.contrib.messages.middleware.MessageMiddleware` were removed
  947. from the defaults. These classes will still be included in the default settings
  948. generated by :djadmin:`startproject`. Most projects will not be affected by
  949. this change but if you were not previously declaring the
  950. :setting:`MIDDLEWARE_CLASSES` in your project settings and relying on the
  951. global default you should ensure that the new defaults are in line with your
  952. project's needs. You should also check for any code that accesses
  953. ``django.conf.global_settings.MIDDLEWARE_CLASSES`` directly.
  954. Miscellaneous
  955. ~~~~~~~~~~~~~
  956. * The :meth:`django.core.files.uploadhandler.FileUploadHandler.new_file()`
  957. method is now passed an additional ``content_type_extra`` parameter. If you
  958. have a custom :class:`~django.core.files.uploadhandler.FileUploadHandler`
  959. that implements ``new_file()``, be sure it accepts this new parameter.
  960. * :class:`ModelFormSet<django.forms.models.BaseModelFormSet>`\s no longer
  961. delete instances when ``save(commit=False)`` is called. See
  962. :attr:`~django.forms.formsets.BaseFormSet.can_delete` for instructions on how
  963. to manually delete objects from deleted forms.
  964. * Loading empty fixtures emits a ``RuntimeWarning`` rather than raising
  965. :class:`~django.core.management.CommandError`.
  966. * :func:`django.contrib.staticfiles.views.serve` will now raise an
  967. :exc:`~django.http.Http404` exception instead of
  968. :exc:`~django.core.exceptions.ImproperlyConfigured` when :setting:`DEBUG`
  969. is ``False``. This change removes the need to conditionally add the view to
  970. your root URLconf, which in turn makes it safe to reverse by name. It also
  971. removes the ability for visitors to generate spurious HTTP 500 errors by
  972. requesting static files that don't exist or haven't been collected yet.
  973. * The :meth:`django.db.models.Model.__eq__` method is now defined in a
  974. way where instances of a proxy model and its base model are considered
  975. equal when primary keys match. Previously only instances of exact same
  976. class were considered equal on primary key match.
  977. * The :meth:`django.db.models.Model.__eq__` method has changed such that
  978. two ``Model`` instances without primary key values won't be considered
  979. equal (unless they are the same instance).
  980. * The :meth:`django.db.models.Model.__hash__` method will now raise ``TypeError``
  981. when called on an instance without a primary key value. This is done to
  982. avoid mutable ``__hash__`` values in containers.
  983. * :class:`~django.db.models.AutoField` columns in SQLite databases will now be
  984. created using the ``AUTOINCREMENT`` option, which guarantees monotonic
  985. increments. This will cause primary key numbering behavior to change on
  986. SQLite, becoming consistent with most other SQL databases. This will only
  987. apply to newly created tables. If you have a database created with an older
  988. version of Django, you will need to migrate it to take advantage of this
  989. feature. For example, you could do the following:
  990. #) Use :djadmin:`dumpdata` to save your data.
  991. #) Rename the existing database file (keep it as a backup).
  992. #) Run :djadmin:`migrate` to create the updated schema.
  993. #) Use :djadmin:`loaddata` to import the fixtures you exported in (1).
  994. * ``django.contrib.auth.models.AbstractUser`` no longer defines a
  995. :meth:`~django.db.models.Model.get_absolute_url()` method. The old definition
  996. returned ``"/users/%s/" % urlquote(self.username)`` which was arbitrary
  997. since applications may or may not define such a url in ``urlpatterns``.
  998. Define a ``get_absolute_url()`` method on your own custom user object or use
  999. :setting:`ABSOLUTE_URL_OVERRIDES` if you want a URL for your user.
  1000. * The static asset-serving functionality of the
  1001. :class:`django.test.LiveServerTestCase` class has been simplified: Now it's
  1002. only able to serve content already present in :setting:`STATIC_ROOT` when
  1003. tests are run. The ability to transparently serve all the static assets
  1004. (similarly to what one gets with :setting:`DEBUG = True <DEBUG>` at
  1005. development-time) has been moved to a new class that lives in the
  1006. ``staticfiles`` application (the one actually in charge of such feature):
  1007. :class:`django.contrib.staticfiles.testing.StaticLiveServerCase`. In other
  1008. words, ``LiveServerTestCase`` itself is less powerful but at the same time
  1009. has less magic.
  1010. Rationale behind this is removal of dependency of non-contrib code on
  1011. contrib applications.
  1012. * The old cache URI syntax (e.g. ``"locmem://"``) is no longer supported. It
  1013. still worked, even though it was not documented or officially supported. If
  1014. you're still using it, please update to the current :setting:`CACHES` syntax.
  1015. * The default ordering of ``Form`` fields in case of inheritance has changed to
  1016. follow normal Python MRO. Fields are now discovered by iterating through the
  1017. MRO in reverse with the topmost class coming last. This only affects you if
  1018. you relied on the default field ordering while having fields defined on both
  1019. the current class *and* on a parent ``Form``.
  1020. * The ``required`` argument of
  1021. :class:`~django.forms.extras.widgets.SelectDateWidget` has been removed.
  1022. This widget now respects the form field's ``is_required`` attribute like
  1023. other widgets.
  1024. * ``Widget.is_hidden`` is now a read-only property, getting its value by
  1025. introspecting the presence of ``input_type == 'hidden'``.
  1026. * :meth:`~django.db.models.query.QuerySet.select_related` now chains in the
  1027. same way as other similar calls like ``prefetch_related``. That is,
  1028. ``select_related('foo', 'bar')`` is equivalent to
  1029. ``select_related('foo').select_related('bar')``. Previously the latter would
  1030. have been equivalent to ``select_related('bar')``.
  1031. * GeoDjango dropped support for GEOS < 3.1.
  1032. * The ``init_connection_state`` method of database backends now executes in
  1033. autocommit mode (unless you set :setting:`AUTOCOMMIT <DATABASE-AUTOCOMMIT>`
  1034. to ``False``). If you maintain a custom database backend, you should check
  1035. that method.
  1036. * The ``django.db.backends.BaseDatabaseFeatures.allows_primary_key_0``
  1037. attribute has been renamed to ``allows_auto_pk_0`` to better describe it.
  1038. It's ``True`` for all database backends included with Django except MySQL
  1039. which does allow primary keys with value 0. It only forbids *autoincrement*
  1040. primary keys with value 0.
  1041. * Shadowing model fields defined in a parent model has been forbidden as this
  1042. creates ambiguity in the expected model behavior. In addition, any clashing
  1043. fields in the model inheritance hierarchy results in a system check error.
  1044. For example, if you use multi-inheritance, you need to define custom primary
  1045. key fields on parent models, otherwise the default ``id`` fields will clash.
  1046. See :ref:`model-multiple-inheritance-topic` for details.
  1047. * ``django.utils.translation.parse_accept_lang_header()`` now returns
  1048. lowercase locales, instead of the case as it was provided. As locales should
  1049. be treated case-insensitive this allows us to speed up locale detection.
  1050. * ``django.utils.translation.get_language_from_path()`` and
  1051. ``django.utils.translation.trans_real.get_supported_language_variant()``
  1052. now no longer have a ``supported`` argument.
  1053. * The ``shortcut`` view in ``django.contrib.contenttypes.views`` now supports
  1054. protocol-relative URLs (e.g. ``//example.com``).
  1055. * :class:`~django.contrib.contenttypes.fields.GenericRelation` now supports an
  1056. optional ``related_query_name`` argument. Setting ``related_query_name`` adds
  1057. a relation from the related object back to the content type for filtering,
  1058. ordering and other query operations.
  1059. * When running tests on PostgreSQL, the :setting:`USER` will need read access
  1060. to the built-in ``postgres`` database. This is in lieu of the previous
  1061. behavior of connecting to the actual non-test database.
  1062. * As part of the :doc:`System check framework </ref/checks>`, :ref:`fields,
  1063. models, and model managers <field-checking>` all implement a ``check()``
  1064. method that is registered with the check framework. If you have an existing
  1065. method called ``check()`` on one of these objects, you will need to rename it.
  1066. .. _deprecated-features-1.7:
  1067. Features deprecated in 1.7
  1068. ==========================
  1069. ``django.core.cache.get_cache``
  1070. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1071. :func:`django.core.cache.get_cache` has been supplanted by
  1072. :data:`django.core.cache.caches`.
  1073. ``django.utils.dictconfig``/``django.utils.importlib``
  1074. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1075. ``django.utils.dictconfig`` and ``django.utils.importlib`` were copies of
  1076. respectively :mod:`logging.config` and :mod:`importlib` provided for Python
  1077. versions prior to 2.7. They have been deprecated.
  1078. ``django.utils.module_loading.import_by_path``
  1079. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1080. The current :meth:`~django.utils.module_loading.import_by_path` function
  1081. catches ``AttributeError``, ``ImportError`` and ``ValueError`` exceptions,
  1082. and re-raises :exc:`~django.core.exceptions.ImproperlyConfigured`. Such
  1083. exception masking makes it needlessly hard to diagnose circular import
  1084. problems, because it makes it look like the problem comes from inside Django.
  1085. It has been deprecated in favor of
  1086. :meth:`~django.utils.module_loading.import_string`.
  1087. ``django.utils.tzinfo``
  1088. ~~~~~~~~~~~~~~~~~~~~~~~
  1089. ``django.utils.tzinfo`` provided two :class:`~datetime.tzinfo` subclasses,
  1090. ``LocalTimezone`` and ``FixedOffset``. They've been deprecated in favor of
  1091. more correct alternatives provided by :mod:`django.utils.timezone`,
  1092. :func:`django.utils.timezone.get_default_timezone` and
  1093. :func:`django.utils.timezone.get_fixed_timezone`.
  1094. ``django.utils.unittest``
  1095. ~~~~~~~~~~~~~~~~~~~~~~~~~
  1096. ``django.utils.unittest`` provided uniform access to the ``unittest2`` library
  1097. on all Python versions. Since ``unittest2`` became the standard library's
  1098. :mod:`unittest` module in Python 2.7, and Django 1.7 drops support for older
  1099. Python versions, this module isn't useful anymore. It has been deprecated. Use
  1100. :mod:`unittest` instead.
  1101. ``django.utils.datastructures.SortedDict``
  1102. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1103. As :class:`~collections.OrderedDict` was added to the standard library in
  1104. Python 2.7, :class:`~django.utils.datastructures.SortedDict` is no longer
  1105. needed and has been deprecated.
  1106. Custom SQL location for models package
  1107. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1108. Previously, if models were organized in a package (``myapp/models/``) rather
  1109. than simply ``myapp/models.py``, Django would look for :ref:`initial SQL data
  1110. <initial-sql>` in ``myapp/models/sql/``. This bug has been fixed so that Django
  1111. will search ``myapp/sql/`` as documented. The old location will continue to
  1112. work until Django 1.9. After this issue was fixed, migrations were added which
  1113. deprecates initial SQL data. Thus, while this change still exists, the
  1114. deprecation is somewhat irrelevant as the entire feature will be removed in
  1115. Django 2.0 when migrations become compulsory for all applications.
  1116. Reorganization of ``django.contrib.sites``
  1117. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1118. ``django.contrib.sites`` provides reduced functionality when it isn't in
  1119. :setting:`INSTALLED_APPS`. The app-loading refactor adds some constraints in
  1120. that situation. As a consequence, two objects were moved, and the old
  1121. locations are deprecated:
  1122. * :class:`~django.contrib.sites.requests.RequestSite` now lives in
  1123. ``django.contrib.sites.requests``.
  1124. * :func:`~django.contrib.sites.shortcuts.get_current_site` now lives in
  1125. ``django.contrib.sites.shortcuts``.
  1126. ``declared_fieldsets`` attribute on ``ModelAdmin``
  1127. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1128. ``ModelAdmin.declared_fieldsets`` has been deprecated. Despite being a private
  1129. API, it will go through a regular deprecation path. This attribute was mostly
  1130. used by methods that bypassed ``ModelAdmin.get_fieldsets()`` but this was
  1131. considered a bug and has been addressed.
  1132. Reorganization of ``django.contrib.contenttypes``
  1133. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1134. Since ``django.contrib.contenttypes.generic`` defined both admin and model
  1135. related objects an import of this module could trigger unexpected side effects.
  1136. As a consequence, its contents were split into :mod:`~django.contrib.contenttypes`
  1137. submodules and the ``django.contrib.contenttypes.generic`` module is deprecated:
  1138. * :class:`~django.contrib.contenttypes.fields.GenericForeignKey` and
  1139. :class:`~django.contrib.contenttypes.fields.GenericRelation` now live in
  1140. :mod:`~django.contrib.contenttypes.fields`.
  1141. * :class:`~django.contrib.contenttypes.forms.BaseGenericInlineFormSet` and
  1142. :func:`~django.contrib.contenttypes.forms.generic_inlineformset_factory` now
  1143. live in :mod:`~django.contrib.contenttypes.forms`.
  1144. * :class:`~django.contrib.contenttypes.admin.GenericInlineModelAdmin`,
  1145. :class:`~django.contrib.contenttypes.admin.GenericStackedInline` and
  1146. :class:`~django.contrib.contenttypes.admin.GenericTabularInline` now live in
  1147. :mod:`~django.contrib.contenttypes.admin`.
  1148. ``syncdb``
  1149. ~~~~~~~~~~
  1150. The :djadmin:`syncdb` command has been deprecated in favor of the new :djadmin:`migrate`
  1151. command. ``migrate`` takes the same arguments as ``syncdb`` used to plus a few
  1152. more, so it's safe to just change the name you're calling and nothing else.
  1153. ``util`` modules renamed to ``utils``
  1154. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1155. The following instances of ``util.py`` in the Django codebase have been renamed
  1156. to ``utils.py`` in an effort to unify all util and utils references:
  1157. * ``django.contrib.admin.util``
  1158. * ``django.contrib.gis.db.backends.util``
  1159. * ``django.db.backends.util``
  1160. * ``django.forms.util``
  1161. ``get_formsets`` method on ``ModelAdmin``
  1162. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1163. ``ModelAdmin.get_formsets`` has been deprecated in favor of the new
  1164. :meth:`~django.contrib.admin.ModelAdmin.get_formsets_with_inlines`, in order to
  1165. better handle the case of selectively showing inlines on a ``ModelAdmin``.
  1166. ``IPAddressField``
  1167. ~~~~~~~~~~~~~~~~~~
  1168. The :class:`django.db.models.IPAddressField` and
  1169. :class:`django.forms.IPAddressField` fields have been deprecated in favor of
  1170. :class:`django.db.models.GenericIPAddressField` and
  1171. :class:`django.forms.GenericIPAddressField`.
  1172. ``BaseMemcachedCache._get_memcache_timeout`` method
  1173. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1174. The ``BaseMemcachedCache._get_memcache_timeout()`` method has been renamed to
  1175. ``get_backend_timeout()``. Despite being a private API, it will go through the
  1176. normal deprecation.
  1177. Natural key serialization options
  1178. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1179. The ``--natural`` and ``-n`` options for :djadmin:`dumpdata` have been
  1180. deprecated. Use :djadminopt:`--natural-foreign` instead.
  1181. Similarly, the ``use_natural_keys`` argument for ``serializers.serialize()``
  1182. has been deprecated. Use ``use_natural_foreign_keys`` instead.
  1183. Merging of ``POST`` and ``GET`` arguments into ``WSGIRequest.REQUEST``
  1184. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1185. It was already strongly suggested that you use ``GET`` and ``POST`` instead of
  1186. ``REQUEST``, because the former are more explicit. The property ``REQUEST`` is
  1187. deprecated and will be removed in Django 1.9.
  1188. ``django.utils.datastructures.MergeDict`` class
  1189. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1190. ``MergeDict`` exists primarily to support merging ``POST`` and ``GET``
  1191. arguments into a ``REQUEST`` property on ``WSGIRequest``. To merge
  1192. dictionaries, use ``dict.update()`` instead. The class ``MergeDict`` is
  1193. deprecated and will be removed in Django 1.9.
  1194. Language codes ``zh-cn``, ``zh-tw`` and ``fy-nl``
  1195. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1196. The currently used language codes for Simplified Chinese ``zh-cn``,
  1197. Traditional Chinese ``zh-tw`` and (Western) Frysian ``fy-nl`` are deprecated
  1198. and should be replaced by the language codes ``zh-hans``, ``zh-hant`` and
  1199. ``fy`` respectively. If you use these language codes, you should rename the
  1200. locale directories and update your settings to reflect these changes. The
  1201. deprecated language codes will be removed in Django 1.9.
  1202. ``django.utils.functional.memoize`` function
  1203. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1204. The function ``memoize`` is deprecated and should be replaced by the
  1205. ``functools.lru_cache`` decorator (available from Python 3.2 onwards).
  1206. Django ships a backport of this decorator for older Python versions and it's
  1207. available at ``django.utils.lru_cache.lru_cache``. The deprecated function will
  1208. be removed in Django 1.9.
  1209. Geo Sitemaps
  1210. ~~~~~~~~~~~~
  1211. Google has retired support for the Geo Sitemaps format. Hence Django support
  1212. for Geo Sitemaps is deprecated and will be removed in Django 1.8.
  1213. Passing callable arguments to queryset methods
  1214. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1215. Callable arguments for querysets were an undocumented feature that was
  1216. unreliable. It's been deprecated and will be removed in Django 1.9.
  1217. Callable arguments were evaluated when a queryset was constructed rather than
  1218. when it was evaluated, thus this feature didn't offer any benefit compared to
  1219. evaluating arguments before passing them to queryset and created confusion that
  1220. the arguments may have been evaluated at query time.
  1221. ``ADMIN_FOR`` setting
  1222. ~~~~~~~~~~~~~~~~~~~~~
  1223. The ``ADMIN_FOR`` feature, part of the admindocs, has been removed. You can
  1224. remove the setting from your configuration at your convenience.
  1225. ``SplitDateTimeWidget`` with ``DateTimeField``
  1226. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1227. ``SplitDateTimeWidget`` support in :class:`~django.forms.DateTimeField` is
  1228. deprecated, use ``SplitDateTimeWidget`` with
  1229. :class:`~django.forms.SplitDateTimeField` instead.
  1230. ``validate``
  1231. ~~~~~~~~~~~~
  1232. :djadmin:`validate` command is deprecated in favor of :djadmin:`check` command.
  1233. ``django.core.management.BaseCommand``
  1234. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1235. ``requires_model_validation`` is deprecated in favor of a new
  1236. ``requires_system_checks`` flag. If the latter flag is missing, then the
  1237. value of the former flag is used. Defining both ``requires_system_checks`` and
  1238. ``requires_model_validation`` results in an error.
  1239. The ``check()`` method has replaced the old ``validate()`` method.
  1240. ``ModelAdmin.validator``
  1241. ~~~~~~~~~~~~~~~~~~~~~~~~
  1242. ``ModelAdmin.validator`` is deprecated in favor of new ``checks`` attribute.
  1243. ``django.db.backends.DatabaseValidation.validate_field``
  1244. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1245. This method is deprecated in favor of a new ``check_field`` method.
  1246. The functionality required by ``check_field()`` is the same as that provided
  1247. by ``validate_field()``, but the output format is different. Third-party database
  1248. backends needing this functionality should modify their backends to provide an
  1249. implementation of ``check_field()``.
  1250. Loading ``ssi`` and ``url`` template tags from ``future`` library
  1251. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1252. Django 1.3 introduced ``{% load ssi from future %}`` and
  1253. ``{% load url from future %}`` syntax for forward compatibility of the
  1254. :ttag:`ssi` and :ttag:`url` template tags. This syntax is now deprecated and
  1255. will be removed in Django 1.9. You can simply remove the
  1256. ``{% load ... from future %}`` tags.
  1257. ``django.utils.text.javascript_quote``
  1258. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1259. ``javascript_quote()`` was an undocumented function present in ``django.utils.text``.
  1260. It was used internally in the :ref:`javascript_catalog view <javascript_catalog-view>`
  1261. whose implementation was changed to make use of ``json.dumps()`` instead.
  1262. If you were relying on this function to provide safe output from untrusted
  1263. strings, you should use ``django.utils.html.escapejs`` or the
  1264. :tfilter:`escapejs` template filter.
  1265. If all you need is to generate valid javascript strings, you can simply use
  1266. ``json.dumps()``.
  1267. ``fix_ampersands`` utils method and template filter
  1268. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1269. The ``django.utils.html.fix_ampersands`` method and the ``fix_ampersands``
  1270. template filter are deprecated, as the escaping of ampersands is already taken care
  1271. of by Django's standard HTML escaping features. Combining this with ``fix_ampersands``
  1272. would either result in double escaping, or, if the output is assumed to be safe,
  1273. a risk of introducing XSS vulnerabilities. Along with ``fix_ampersands``,
  1274. ``django.utils.html.clean_html`` is deprecated, an undocumented function that calls
  1275. ``fix_ampersands``.
  1276. As this is an accelerated deprecation, ``fix_ampersands`` and ``clean_html``
  1277. will be removed in Django 1.8.
  1278. Reorganization of database test settings
  1279. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1280. All database settings with a ``TEST_`` prefix have been deprecated in favor of
  1281. entries in a :setting:`TEST <DATABASE-TEST>` dictionary in the database
  1282. settings. The old settings will be supported until Django 1.9. For backwards
  1283. compatibility with older versions of Django, you can define both versions of
  1284. the settings as long as they match.
  1285. FastCGI support
  1286. ~~~~~~~~~~~~~~~
  1287. FastCGI support via the ``runfcgi`` management command will be removed in
  1288. Django 1.9. Please deploy your project using WSGI.