1.7.txt 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308
  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.
  17. This change should affect only a small number of Django users, as most
  18. operating-system vendors today are shipping Python 2.7 or newer as their default
  19. version. If you're still using Python 2.6, however, you'll need to stick to
  20. Django 1.6 until you can upgrade your Python version. Per :doc:`our support
  21. policy </internals/release-process>`, Django 1.6 will continue to receive
  22. security support until the release of Django 1.8.
  23. What's new in Django 1.7
  24. ========================
  25. Schema migrations
  26. ~~~~~~~~~~~~~~~~~
  27. Django now has built-in support for schema migrations. It allows models
  28. to be updated, changed, and deleted by creating migration files that represent
  29. the model changes and which can be run on any development, staging or production
  30. database.
  31. Migrations are covered in :doc:`their own documentation</topics/migrations>`,
  32. but a few of the key features are:
  33. * ``syncdb`` has been deprecated and replaced by ``migrate``. Don't worry -
  34. calls to ``syncdb`` will still work as before.
  35. * A new ``makemigrations`` command provides an easy way to autodetect changes
  36. to your models and make migrations for them.
  37. :data:`~django.db.models.signals.pre_syncdb` and
  38. :data:`~django.db.models.signals.post_syncdb` have been replaced by
  39. :data:`~django.db.models.signals.pre_migrate` and
  40. :data:`~django.db.models.signals.post_migrate` respectively. These new
  41. signals have slightly different arguments. Check the documentation for
  42. details.
  43. * The ``allow_syncdb`` method on database routers is now called ``allow_migrate``,
  44. but still performs the same function. Routers with ``allow_syncdb`` methods
  45. will still work, but that method name is deprecated and you should change
  46. it as soon as possible (nothing more than renaming is required).
  47. * ``initial_data`` fixtures are no longer loaded for apps with migrations; if
  48. you want to load initial data for an app, we suggest you do it in a migration.
  49. App-loading refactor
  50. ~~~~~~~~~~~~~~~~~~~~
  51. Historically, Django applications were tightly linked to models. A singleton
  52. known as the "app cache" dealt with both installed applications and models.
  53. The models module was used as an identifier for applications in many APIs.
  54. As the concept of :doc:`Django applications </ref/applications>` matured, this
  55. code showed some shortcomings. It has been refactored into an "app registry"
  56. where models modules no longer have a central role and where it's possible to
  57. attach configuration data to applications.
  58. Improvements thus far include:
  59. * Applications can run code at startup, before Django does anything else, with
  60. the :meth:`~django.apps.AppConfig.ready` method of their configuration.
  61. * Application labels are assigned correctly to models even when they're
  62. defined outside of ``models.py``. You don't have to set
  63. :attr:`~django.db.models.Options.app_label` explicitly any more.
  64. * It is possible to omit ``models.py`` entirely if an application doesn't
  65. have any models.
  66. * Applications can be relabeled with the :attr:`~django.apps.AppConfig.label`
  67. attribute of application configurations, to work around label conflicts.
  68. * The name of applications can be customized in the admin with the
  69. :attr:`~django.apps.AppConfig.verbose_name` of application configurations.
  70. * The admin automatically calls :func:`~django.contrib.admin.autodiscover()`
  71. when Django starts. You can consequently remove this line from your
  72. URLconf.
  73. * Django imports all application configurations and models as soon as it
  74. starts, through a deterministic and straightforward process. This should
  75. make it easier to diagnose import issues such as import loops.
  76. New method on Field subclasses
  77. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  78. To help power both schema migrations and composite keys, the :class:`~django.db.models.Field` API now
  79. has a new required method: ``deconstruct()``.
  80. This method takes no arguments, and returns a tuple of four items:
  81. * ``name``: The field's attribute name on its parent model, or None if it is not part of a model
  82. * ``path``: A dotted, Python path to the class of this field, including the class name.
  83. * ``args``: Positional arguments, as a list
  84. * ``kwargs``: Keyword arguments, as a dict
  85. These four values allow any field to be serialized into a file, as well as
  86. allowing the field to be copied safely, both essential parts of these new features.
  87. This change should not affect you unless you write custom Field subclasses;
  88. if you do, you may need to reimplement the ``deconstruct()`` method if your
  89. subclass changes the method signature of ``__init__`` in any way. If your
  90. field just inherits from a built-in Django field and doesn't override ``__init__``,
  91. no changes are necessary.
  92. If you do need to override ``deconstruct()``, a good place to start is the
  93. built-in Django fields (``django/db/models/fields/__init__.py``) as several
  94. fields, including ``DecimalField`` and ``DateField``, override it and show how
  95. to call the method on the superclass and simply add or remove extra arguments.
  96. Calling custom ``QuerySet`` methods from the ``Manager``
  97. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  98. Historically, the recommended way to make reusable model queries was to create
  99. methods on a custom ``Manager`` class. The problem with this approach was that
  100. after the first method call, you'd get back a ``QuerySet`` instance and
  101. couldn't call additional custom manager methods.
  102. Though not documented, it was common to work around this issue by creating a
  103. custom ``QuerySet`` so that custom methods could be chained; but the solution
  104. had a number of drawbacks:
  105. * The custom ``QuerySet`` and its custom methods were lost after the first
  106. call to ``values()`` or ``values_list()``.
  107. * Writing a custom ``Manager`` was still necessary to return the custom
  108. ``QuerySet`` class and all methods that were desired on the ``Manager``
  109. had to be proxied to the ``QuerySet``. The whole process went against
  110. the DRY principle.
  111. The :meth:`QuerySet.as_manager() <django.db.models.query.QuerySet.as_manager>`
  112. class method can now directly :ref:`create Manager with QuerySet methods
  113. <create-manager-with-queryset-methods>`::
  114. class FoodQuerySet(models.QuerySet):
  115. def pizzas(self):
  116. return self.filter(kind='pizza')
  117. def vegetarian(self):
  118. return self.filter(vegetarian=True)
  119. class Food(models.Model):
  120. kind = models.CharField(max_length=50)
  121. vegetarian = models.BooleanField()
  122. objects = FoodQuerySet.as_manager()
  123. Food.objects.pizzas().vegetarian()
  124. Using a custom manager when traversing reverse relations
  125. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  126. It is now possible to :ref:`specify a custom manager
  127. <using-custom-reverse-manager>` when traversing a reverse relationship.
  128. New system check framework
  129. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  130. We've added a new :doc:`System check framework </ref/checks>` for
  131. detecting common problems (like invalid models) and providing hints for
  132. resolving those problems. The framework is extensible so you can add your
  133. own checks for your own apps and libraries.
  134. To perform system checks, you use the :djadmin:`check` management command.
  135. This command replaces the older :djadmin:`validate` management command.
  136. New ``Prefetch`` object for advanced ``prefetch_related`` operations.
  137. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  138. The new :class:`~django.db.models.Prefetch` object allows customizing
  139. prefetch operations.
  140. You can specify the ``QuerySet`` used to traverse a given relation
  141. or customize the storage location of prefetch results.
  142. This enables things like filtering prefetched relations, calling
  143. :meth:`~django.db.models.query.QuerySet.select_related()` from a prefetched
  144. relation, or prefetching the same relation multiple times with different
  145. querysets. See :meth:`~django.db.models.query.QuerySet.prefetch_related()`
  146. for more details.
  147. Admin shortcuts support time zones
  148. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  149. The "today" and "now" shortcuts next to date and time input widgets in the
  150. admin are now operating in the :ref:`current time zone
  151. <default-current-time-zone>`. Previously, they used the browser time zone,
  152. which could result in saving the wrong value when it didn't match the current
  153. time zone on the server.
  154. In addition, the widgets now display a help message when the browser and
  155. server time zone are different, to clarify how the value inserted in the field
  156. will be interpreted.
  157. Using database cursors as context managers
  158. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  159. Prior to Python 2.7, database cursors could be used as a context manager. The
  160. specific backend's cursor defined the behavior of the context manager. The
  161. behavior of magic method lookups was changed with Python 2.7 and cursors were
  162. no longer usable as context managers.
  163. Django 1.7 allows a cursor to be used as a context manager that is a shortcut
  164. for the following, instead of backend specific behavior.
  165. .. code-block:: python
  166. c = connection.cursor()
  167. try:
  168. c.execute(...)
  169. finally:
  170. c.close()
  171. Custom lookups
  172. ~~~~~~~~~~~~~~
  173. It is now possible to write custom lookups and transforms for the ORM.
  174. Custom lookups work just like Django's inbuilt lookups (e.g. ``lte``,
  175. ``icontains``) while transforms are a new concept.
  176. The :class:`django.db.models.Lookup` class provides a way to add lookup
  177. operators for model fields. As an example it is possible to add ``day_lte``
  178. operator for ``DateFields``.
  179. The :class:`django.db.models.Transform` class allows transformations of
  180. database values prior to the final lookup. For example it is possible to
  181. write a ``year`` transform that extracts year from the field's value.
  182. Transforms allow for chaining. After the ``year`` transform has been added
  183. to ``DateField`` it is possible to filter on the transformed value, for
  184. example ``qs.filter(author__birthdate__year__lte=1981)``.
  185. For more information about both custom lookups and transforms refer to
  186. :doc:`custom lookups </ref/models/custom-lookups>` documentation.
  187. Minor features
  188. ~~~~~~~~~~~~~~
  189. :mod:`django.contrib.admin`
  190. ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  191. * You can now implement :attr:`~django.contrib.admin.AdminSite.site_header`,
  192. :attr:`~django.contrib.admin.AdminSite.site_title`, and
  193. :attr:`~django.contrib.admin.AdminSite.index_title` attributes on a custom
  194. :class:`~django.contrib.admin.AdminSite` in order to easily change the admin
  195. site's page title and header text. No more needing to override templates!
  196. * Buttons in :mod:`django.contrib.admin` now use the ``border-radius`` CSS
  197. property for rounded corners rather than GIF background images.
  198. * Some admin templates now have ``app-<app_name>`` and ``model-<model_name>``
  199. classes in their ``<body>`` tag to allow customizing the CSS per app or per
  200. model.
  201. * The admin changelist cells now have a ``field-<field_name>`` class in the
  202. HTML to enable style customizations.
  203. * The admin's search fields can now be customized per-request thanks to the new
  204. :meth:`django.contrib.admin.ModelAdmin.get_search_fields` method.
  205. * The :meth:`ModelAdmin.get_fields()
  206. <django.contrib.admin.ModelAdmin.get_fields>` method may be overridden to
  207. customize the value of :attr:`ModelAdmin.fields
  208. <django.contrib.admin.ModelAdmin.fields>`.
  209. * In addition to the existing ``admin.site.register`` syntax, you can use the
  210. new :func:`~django.contrib.admin.register` decorator to register a
  211. :class:`~django.contrib.admin.ModelAdmin`.
  212. * You may specify :meth:`ModelAdmin.list_display_links
  213. <django.contrib.admin.ModelAdmin.list_display_links>` ``= None`` to disable
  214. links on the change list page grid.
  215. * You may now specify :attr:`ModelAdmin.view_on_site
  216. <django.contrib.admin.ModelAdmin.view_on_site>` to control whether or not to
  217. display the "View on site" link.
  218. :mod:`django.contrib.auth`
  219. ^^^^^^^^^^^^^^^^^^^^^^^^^^
  220. * Any ``**kwargs`` passed to
  221. :meth:`~django.contrib.auth.models.User.email_user()` are passed to the
  222. underlying :meth:`~django.core.mail.send_mail()` call.
  223. * The :func:`~django.contrib.auth.decorators.permission_required` decorator can
  224. take a list of permissions as well as a single permission.
  225. * You can override the new :meth:`AuthenticationForm.confirm_login_allowed()
  226. <django.contrib.auth.forms.AuthenticationForm.confirm_login_allowed>` method
  227. to more easily customize the login policy.
  228. * :func:`django.contrib.auth.views.password_reset` takes an optional
  229. ``html_email_template_name`` parameter used to send a multipart HTML email
  230. for password resets.
  231. :mod:`django.contrib.gis`
  232. ^^^^^^^^^^^^^^^^^^^^^^^^^^
  233. * The default OpenLayers library version included in widgets has been updated
  234. from 2.11 to 2.13.
  235. * Prepared geometries now also support the ``crosses``, ``disjoint``,
  236. ``overlaps``, ``touches`` and ``within`` predicates, if GEOS 3.3 or later is
  237. installed.
  238. :mod:`django.contrib.messages`
  239. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  240. * The backends for :mod:`django.contrib.messages` that use cookies, will now
  241. follow the :setting:`SESSION_COOKIE_SECURE` and
  242. :setting:`SESSION_COOKIE_HTTPONLY` settings.
  243. * The :ref:`messages context processor <message-displaying>` now adds a
  244. dictionary of default levels under the name ``DEFAULT_MESSAGE_LEVELS``.
  245. * :class:`~django.contrib.messages.storage.base.Message` objects now have a
  246. ``level_tag`` attribute that contains the string representation of the
  247. message level.
  248. :mod:`django.contrib.redirects`
  249. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  250. * :class:`~django.contrib.redirects.middleware.RedirectFallbackMiddleware`
  251. has two new attributes
  252. (:attr:`~django.contrib.redirects.middleware.RedirectFallbackMiddleware.response_gone_class`
  253. and
  254. :attr:`~django.contrib.redirects.middleware.RedirectFallbackMiddleware.response_redirect_class`)
  255. that specify the types of :class:`~django.http.HttpResponse` instances the
  256. middleware returns.
  257. :mod:`django.contrib.sessions`
  258. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  259. * The ``"django.contrib.sessions.backends.cached_db"`` session backend now
  260. respects :setting:`SESSION_CACHE_ALIAS`. In previous versions, it always used
  261. the `default` cache.
  262. :mod:`django.contrib.sitemaps`
  263. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  264. * The :mod:`sitemap framework<django.contrib.sitemaps>` now makes use of
  265. :attr:`~django.contrib.sitemaps.Sitemap.lastmod` to set a ``Last-Modified``
  266. header in the response. This makes it possible for the
  267. :class:`~django.middleware.http.ConditionalGetMiddleware` to handle
  268. conditional ``GET`` requests for sitemaps which set ``lastmod``.
  269. :mod:`django.contrib.sites`
  270. ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  271. * The new :class:`django.contrib.site.middleware.CurrentSiteMiddleware` allows
  272. setting the current site on each request.
  273. :mod:`django.contrib.staticfiles`
  274. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  275. * The :ref:`static files storage classes <staticfiles-storages>` may be
  276. subclassed to override the permissions that collected static files and
  277. directories receive by setting the
  278. :attr:`~django.core.files.storage.FileSystemStorage.file_permissions_mode`
  279. and :attr:`~django.core.files.storage.FileSystemStorage.directory_permissions_mode`
  280. parameters. See :djadmin:`collectstatic` for example usage.
  281. * The :class:`~django.contrib.staticfiles.storage.CachedStaticFilesStorage`
  282. backend gets a sibling class called
  283. :class:`~django.contrib.staticfiles.storage.ManifestStaticFilesStorage`
  284. that doesn't use the cache system at all but instead a JSON file called
  285. ``staticfiles.json`` for storing the mapping between the original file name
  286. (e.g. ``css/styles.css``) and the hashed file name (e.g.
  287. ``css/styles.55e7cbb9ba48.css``. The ``staticfiles.json`` file is created
  288. when running the :djadmin:`collectstatic` management command and should
  289. be a less expensive alternative for remote storages such as Amazon S3.
  290. See the :class:`~django.contrib.staticfiles.storage.ManifestStaticFilesStorage`
  291. docs for more information.
  292. * :djadmin:`findstatic` now accepts verbosity flag level 2, meaning it will
  293. show the relative paths of the directories it searched. See
  294. :djadmin:`findstatic` for example output.
  295. :mod:`django.contrib.syndication`
  296. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  297. * The :class:`~django.utils.feedgenerator.Atom1Feed` syndication feed's
  298. ``updated`` element now utilizes ``updateddate`` instead of ``pubdate``,
  299. allowing the ``published`` element to be included in the feed (which
  300. relies on ``pubdate``).
  301. Cache
  302. ^^^^^
  303. * Access to caches configured in :setting:`CACHES` is now available via
  304. :data:`django.core.cache.caches`. This dict-like object provides a different
  305. instance per thread. It supersedes :func:`django.core.cache.get_cache` which
  306. is now deprecated.
  307. * If you instanciate cache backends directly, be aware that they aren't
  308. thread-safe any more, as :data:`django.core.cache.caches` now yields
  309. different instances per thread.
  310. Email
  311. ^^^^^
  312. * :func:`~django.core.mail.send_mail` now accepts an ``html_message``
  313. parameter for sending a multipart ``text/plain`` and ``text/html`` email.
  314. * The SMTP :class:`~django.core.mail.backends.smtp.EmailBackend` now accepts a
  315. :attr:`~django.core.mail.backends.smtp.EmailBackend.timeout` parameter.
  316. File Storage
  317. ^^^^^^^^^^^^
  318. * File locking on Windows previously depended on the PyWin32 package; if it
  319. wasn't installed, file locking failed silently. That dependency has been
  320. removed, and file locking is now implemented natively on both Windows
  321. and Unix.
  322. File Uploads
  323. ^^^^^^^^^^^^
  324. * The new :attr:`UploadedFile.content_type_extra
  325. <django.core.files.uploadedfile.UploadedFile.content_type_extra>` attribute
  326. contains extra parameters passed to the ``content-type`` header on a file
  327. upload.
  328. * The new :setting:`FILE_UPLOAD_DIRECTORY_PERMISSIONS` setting controls
  329. the file system permissions of directories created during file upload, like
  330. :setting:`FILE_UPLOAD_PERMISSIONS` does for the files themselves.
  331. * The :attr:`FileField.upload_to <django.db.models.FileField.upload_to>`
  332. attribute is now optional. If it is omitted or given ``None`` or an empty
  333. string, a subdirectory won't be used for storing the uploaded files.
  334. Forms
  335. ^^^^^
  336. * The ``<label>`` and ``<input>`` tags rendered by
  337. :class:`~django.forms.RadioSelect` and
  338. :class:`~django.forms.CheckboxSelectMultiple` when looping over the radio
  339. buttons or checkboxes now include ``for`` and ``id`` attributes, respectively.
  340. Each radio button or checkbox includes an ``id_for_label`` attribute to
  341. output the element's ID.
  342. * :attr:`Field.choices<django.db.models.Field.choices>` now allows you to
  343. customize the "empty choice" label by including a tuple with an empty string
  344. or ``None`` for the key and the custom label as the value. The default blank
  345. option ``"----------"`` will be omitted in this case.
  346. * :class:`~django.forms.MultiValueField` allows optional subfields by setting
  347. the ``require_all_fields`` argument to ``False``. The ``required`` attribute
  348. for each individual field will be respected, and a new ``incomplete``
  349. validation error will be raised when any required fields are empty.
  350. * The :meth:`~django.forms.Form.clean` method on a form no longer needs to
  351. return ``self.cleaned_data``. If it does return a changed dictionary then
  352. that will still be used.
  353. * After a temporary regression in Django 1.6, it's now possible again to make
  354. :class:`~django.forms.TypedChoiceField` ``coerce`` method return an arbitrary
  355. value.
  356. * :attr:`SelectDateWidget.months
  357. <django.forms.extras.widgets.SelectDateWidget.months>` can be used to
  358. customize the wording of the months displayed in the select widget.
  359. * The ``min_num`` and ``validate_min`` parameters were added to
  360. :func:`~django.forms.formsets.formset_factory` to allow validating
  361. a minimum number of submitted forms.
  362. * The metaclasses used by ``Form`` and ``ModelForm`` have been reworked to
  363. support more inheritance scenarios. The previous limitation that prevented
  364. inheriting from both ``Form`` and ``ModelForm`` simultaneously have been
  365. removed as long as ``ModelForm`` appears first in the MRO.
  366. * It's now possible to opt-out from a ``Form`` field declared in a parent class
  367. by shadowing it with a non-``Field`` value.
  368. * The new :meth:`~django.forms.Form.add_error()` method allows adding errors
  369. to specific form fields.
  370. * The dict-like attribute :attr:`~django.forms.Form.errors` now has two new
  371. methods :meth:`~django.forms.Form.errors.as_data()` and
  372. :meth:`~django.forms.Form.errors.as_json()`. The former returns a ``dict``
  373. that maps fields to their original errors, complete with all metadata
  374. (error code and params), the latter returns the errors serialized as json.
  375. * It's now possible to customize the error messages for ``ModelForm``’s
  376. ``unique``, ``unique_for_date``, and ``unique_together`` constraints.
  377. In order to support ``unique_together`` or any other ``NON_FIELD_ERROR``,
  378. ``ModelForm`` now looks for the ``NON_FIELD_ERROR`` key in the
  379. ``error_messages`` dictionary of the ``ModelForm``’s inner ``Meta`` class.
  380. See :ref:`considerations regarding model's error_messages
  381. <considerations-regarding-model-errormessages>` for more details.
  382. Internationalization
  383. ^^^^^^^^^^^^^^^^^^^^
  384. * The :attr:`django.middleware.locale.LocaleMiddleware.response_redirect_class`
  385. attribute allows you to customize the redirects issued by the middleware.
  386. * The :class:`~django.middleware.locale.LocaleMiddleware` now stores the user's
  387. selected language with the session key ``_language``. Previously it was
  388. stored with the key ``django_language``, but keys reserved for Django should
  389. start with an underscore. For backwards compatibility ``django_language`` is
  390. still read from in 1.7. Sessions will be migrated to the new ``_language``
  391. key as they are written.
  392. * The :ttag:`blocktrans` now supports a ``trimmed`` option. This
  393. option will remove newline characters from the beginning and the end of the
  394. content of the ``{% blocktrans %}`` tag, replace any whitespace at the
  395. beginning and end of a line and merge all lines into one using a space
  396. character to separate them. This is quite useful for indenting the content of
  397. a ``{% blocktrans %}`` tag without having the indentation characters end up
  398. in the corresponding entry in the PO file, which makes the translation
  399. process easier.
  400. * When you run :djadmin:`makemessages` from the root directory of your project,
  401. any extracted strings will now be automatically distributed to the proper
  402. app or project message file. See :ref:`how-to-create-language-files` for
  403. details.
  404. Management Commands
  405. ^^^^^^^^^^^^^^^^^^^
  406. * The :djadminopt:`--no-color` option for ``django-admin.py`` allows you to
  407. disable the colorization of management command output.
  408. * The new :djadminopt:`--natural-foreign` and :djadminopt:`--natural-primary`
  409. options for :djadmin:`dumpdata`, and the new ``use_natural_foreign_keys`` and
  410. ``use_natural_primary_keys`` arguments for ``serializers.serialize()``, allow
  411. the use of natural primary keys when serializing.
  412. * It is no longer necessary to provide the cache table name or the
  413. :djadminopt:`--database` option for the :djadmin:`createcachetable` command.
  414. Django takes this information from your settings file. If you have configured
  415. multiple caches or multiple databases, all cache tables are created.
  416. * The :djadmin:`runserver` command received several improvements:
  417. * On Linux systems, if pyinotify_ is installed, the development server will
  418. reload immediately when a file is changed. Previously, it polled the
  419. filesystem for changes every second. That caused a small delay before
  420. reloads and reduced battery life on laptops.
  421. .. _pyinotify: https://pypi.python.org/pypi/pyinotify
  422. * In addition, the development server automatically reloads when a
  423. translation file is updated, i.e. after running
  424. :djadmin:`compilemessages`.
  425. * All HTTP requests are logged to the console, including requests for static
  426. files or ``favicon.ico`` that used to be filtered out.
  427. * Management commands can now produce syntax colored output under Windows if
  428. the ANSICON third-party tool is installed and active.
  429. * :djadmin:`collectstatic` command with symlink option is now supported on
  430. Windows NT 6 (Windows Vista and newer).
  431. Models
  432. ^^^^^^
  433. * The :meth:`QuerySet.update_or_create()
  434. <django.db.models.query.QuerySet.update_or_create>` method was added.
  435. * The new :attr:`~django.db.models.Options.default_permissions` model
  436. ``Meta`` option allows you to customize (or disable) creation of the default
  437. add, change, and delete permissions.
  438. * Explicit :class:`~django.db.models.OneToOneField` for
  439. :ref:`multi-table-inheritance` are now discovered in abstract classes.
  440. * Is it now possible to avoid creating a backward relation for
  441. :class:`~django.db.models.OneToOneField` by setting its
  442. :attr:`~django.db.models.ForeignKey.related_name` to
  443. ``'+'`` or ending it with ``'+'``.
  444. * :class:`F expressions <django.db.models.F>` support the power operator
  445. (``**``).
  446. * The ``remove()`` and ``clear()`` methods of the related managers created by
  447. ``ForeignKey`` and ``GenericForeignKey`` now accept the ``bulk`` keyword
  448. argument to control whether or not to perform operations in bulk
  449. (i.e. using ``QuerySet.update()``). Defaults to ``True``.
  450. * It is now possible to use ``None`` as a query value for the :lookup:`iexact`
  451. lookup.
  452. Signals
  453. ^^^^^^^
  454. * The ``enter`` argument was added to the
  455. :data:`~django.test.signals.setting_changed` signal.
  456. * The model signals can be now be connected to using a ``str`` of the
  457. ``'app_label.ModelName'`` form – just like related fields – to lazily
  458. reference their senders.
  459. Templates
  460. ^^^^^^^^^
  461. * The :meth:`Context.push() <django.template.Context.push>` method now returns
  462. a context manager which automatically calls :meth:`pop()
  463. <django.template.Context.pop>` upon exiting the ``with`` statement.
  464. Additionally, :meth:`push() <django.template.Context.push>` now accepts
  465. parameters that are passed to the ``dict`` constructor used to build the new
  466. context level.
  467. * The :ttag:`widthratio` template tag now accepts an "as" parameter to capture
  468. the result in a variable.
  469. * The :ttag:`include` template tag will now also accept anything with a
  470. ``render()`` method (such as a ``Template``) as an argument. String
  471. arguments will be looked up using
  472. :func:`~django.template.loader.get_template` as always.
  473. * It is now possible to :ttag:`include` templates recursively.
  474. * Template objects now have an origin attribute set when
  475. :setting:`TEMPLATE_DEBUG` is ``True``. This allows template origins to be
  476. inspected and logged outside of the ``django.template`` infrastructure.
  477. * ``TypeError`` exceptions are no longer silenced when raised during the
  478. rendering of a template.
  479. * The following functions now accept a ``dirs`` parameter which is a list or
  480. tuple to override :setting:`TEMPLATE_DIRS`:
  481. * :func:`django.template.loader.get_template()`
  482. * :func:`django.template.loader.select_template()`
  483. * :func:`django.shortcuts.render()`
  484. * :func:`django.shortcuts.render_to_response()`
  485. * The :tfilter:`time` filter now accepts timzone-related :ref:`format
  486. specifiers <date-and-time-formatting-specifiers>` ``'e'``, ``'O'`` , ``'T'``
  487. and ``'Z'`` and is able to digest :ref:`time-zone-aware
  488. <naive_vs_aware_datetimes>` ``datetime`` instances performing the expected
  489. rendering.
  490. * The :ttag:`cache` tag will now try to use the cache called
  491. "template_fragments" if it exists and fall back to using the default cache
  492. otherwise. It also now accepts an optional ``using`` keyword argument to
  493. control which cache it uses.
  494. Requests
  495. ^^^^^^^^
  496. * The new :attr:`HttpRequest.scheme <django.http.HttpRequest.scheme>` attribute
  497. specifies the scheme of the request (``http`` or ``https`` normally).
  498. Tests
  499. ^^^^^
  500. * :class:`~django.test.runner.DiscoverRunner` has two new attributes,
  501. :attr:`~django.test.runner.DiscoverRunner.test_suite` and
  502. :attr:`~django.test.runner.DiscoverRunner.test_runner`, which facilitate
  503. overriding the way tests are collected and run.
  504. * The ``fetch_redirect_response`` argument was added to
  505. :meth:`~django.test.SimpleTestCase.assertRedirects`. Since the test
  506. client can't fetch externals URLs, this allows you to use ``assertRedirects``
  507. with redirects that aren't part of your Django app.
  508. * Correct handling of scheme when making comparisons in
  509. :meth:`~django.test.SimpleTestCase.assertRedirects`.
  510. * The ``secure`` argument was added to all the request methods of
  511. :class:`~django.test.Client`. If ``True``, the request will be made
  512. through HTTPS.
  513. * Requests made with :meth:`Client.login() <django.test.Client.login>` and
  514. :meth:`Client.logout() <django.test.Client.logout>` respect defaults defined
  515. in :class:`~django.test.Client` instantiation and are processed through
  516. middleware.
  517. * :meth:`~django.test.TransactionTestCase.assertNumQueries` now prints
  518. out the list of executed queries if the assertion fails.
  519. * The ``WSGIRequest`` instance generated by the test handler is now attached to
  520. the :attr:`django.test.Response.wsgi_request` attribute.
  521. Validators
  522. ^^^^^^^^^^
  523. * :class:`~django.core.validators.RegexValidator` now accepts an optional
  524. Boolean :attr:`~django.core.validators.RegexValidator.inverse_match` argument
  525. which determines if the :exc:`~django.core.exceptions.ValidationError` should
  526. be raised when the regular expression pattern matches (``True``) or does not
  527. match (``False``, by default) the provided ``value``.
  528. * :class:`~django.core.validators.URLValidator` now accepts an optional
  529. ``schemes`` argument which allows customization of the accepted URI schemes
  530. (instead of the defaults ``http(s)`` and ``ftp(s)``).
  531. Backwards incompatible changes in 1.7
  532. =====================================
  533. .. warning::
  534. In addition to the changes outlined in this section, be sure to review the
  535. :doc:`deprecation plan </internals/deprecation>` for any features that
  536. have been removed. If you haven't updated your code within the
  537. deprecation timeline for a given feature, its removal may appear as a
  538. backwards incompatible change.
  539. allow_syncdb/allow_migrate
  540. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  541. While Django will still look at ``allow_syncdb`` methods even though they
  542. should be renamed to ``allow_migrate``, there is a subtle difference in which
  543. models get passed to these methods.
  544. For apps with migrations, ``allow_migrate`` will now get passed
  545. :ref:`historical models <historical-models>`, which are special versioned models
  546. without custom attributes, methods or managers. Make sure your ``allow_migrate``
  547. methods are only referring to fields or other items in ``model._meta``.
  548. initial_data
  549. ~~~~~~~~~~~~
  550. Apps with migrations will not load ``initial_data`` fixtures when they have
  551. finished migrating. Apps without migrations will continue to load these fixtures
  552. during the phase of ``migrate`` which emulates the old ``syncdb`` behaviour,
  553. but any new apps will not have this support.
  554. Instead, you are encouraged to load initial data in migrations if you need it
  555. (using the ``RunPython`` operation and your model classes);
  556. this has the added advantage that your initial data will not need updating
  557. every time you change the schema.
  558. App-loading changes
  559. ~~~~~~~~~~~~~~~~~~~
  560. Start-up sequence
  561. ^^^^^^^^^^^^^^^^^
  562. Django 1.7 loads application configurations and models as soon as it starts.
  563. While this behavior is more straightforward and is believed to be more robust,
  564. regressions cannot be ruled out. You may encounter the following exceptions:
  565. * ``RuntimeError: App registry isn't ready yet.`` This happens when importing
  566. an application configuration or a models module triggers code that depends
  567. on the app registry.
  568. For example, :func:`~django.utils.translation.ugettext()` uses the app
  569. registry to look up translation catalogs in applications. To translate at
  570. import time, you need :func:`~django.utils.translation.ugettext_lazy()`
  571. instead. (Using :func:`~django.utils.translation.ugettext()` would be a bug,
  572. because the translation would happen at import time, rather than at each
  573. request depending on the active language.)
  574. Executing database queries with the ORM at import time in models modules
  575. will also trigger this exception. The ORM cannot function properly until all
  576. models are available.
  577. * ``ImportError: cannot import name ...`` This happens if the import sequence
  578. ends up in a loop.
  579. To eliminate such problems, you should minimize dependencies between your
  580. models modules and do as little work as possible at import time. To avoid
  581. executing code at import time, you can move it into a function and cache its
  582. results. The code will be executed when you first need its results. This
  583. concept is known as "lazy evaluation".
  584. * ``django.contrib.admin`` will now automatically perform autodiscovery of
  585. ``admin`` modules in installed applications. To prevent it, change your
  586. :setting:`INSTALLED_APPS` to contain
  587. ``'django.contrib.admin.apps.SimpleAdminConfig'`` instead of
  588. ``'django.contrib.admin'``.
  589. Standalone scripts
  590. ^^^^^^^^^^^^^^^^^^
  591. If you're using Django in a plain Python script — rather than a management
  592. command — and you rely on the :envvar:`DJANGO_SETTINGS_MODULE` environment
  593. variable, you must now explicitly initialize Django at the beginning of your
  594. script with::
  595. >>> import django
  596. >>> django.setup()
  597. Otherwise, you will hit ``RuntimeError: App registry isn't ready yet.``
  598. App registry consistency
  599. ^^^^^^^^^^^^^^^^^^^^^^^^
  600. It is no longer possible to have multiple installed applications with the same
  601. label. In previous versions of Django, this didn't always work correctly, but
  602. didn't crash outright either.
  603. If you have two apps with the same label, you should create an
  604. :class:`~django.apps.AppConfig` for one of them and override its
  605. :class:`~django.apps.AppConfig.label` there. You should then adjust your code
  606. wherever it references this application or its models with the old label.
  607. It isn't possible to import the same model twice through different paths any
  608. more. As of Django 1.6, this may happen only if you're manually putting a
  609. directory and a subdirectory on :envvar:`PYTHONPATH`. Refer to the section on
  610. the new project layout in the :doc:`1.4 release notes </releases/1.4>` for
  611. migration instructions.
  612. You should make sure that:
  613. * All models are defined in applications that are listed in
  614. :setting:`INSTALLED_APPS` or have an explicit
  615. :attr:`~django.db.models.Options.app_label`.
  616. * Models aren't imported as a side-effect of loading their application.
  617. Specifically, you shouldn't import models in the root module of an
  618. application nor in the module that define its configuration class.
  619. Django will enforce these requirements as of version 1.9, after a deprecation
  620. period.
  621. Subclassing AppCommand
  622. ^^^^^^^^^^^^^^^^^^^^^^
  623. Subclasses of :class:`~django.core.management.AppCommand` must now implement a
  624. :meth:`~django.core.management.AppCommand.handle_app_config` method instead of
  625. ``handle_app()``. This method receives an :class:`~django.apps.AppConfig`
  626. instance instead of a models module.
  627. Introspecting applications
  628. ^^^^^^^^^^^^^^^^^^^^^^^^^^
  629. Since :setting:`INSTALLED_APPS` now supports application configuration classes
  630. in addition to application modules, you should review code that accesses this
  631. setting directly and use the app registry (:attr:`django.apps.apps`) instead.
  632. The app registry has preserved some features of the old app cache. Even though
  633. the app cache was a private API, obsolete methods and arguments will be
  634. removed through a standard deprecation path, with the exception of the
  635. following changes that take effect immediately:
  636. * ``get_model`` raises :exc:`~exceptions.LookupError` instead of returning
  637. ``None`` when no model is found.
  638. * The ``only_installed`` argument of ``get_model`` and ``get_models`` no
  639. longer exists, nor does the ``seed_cache`` argument of ``get_model``.
  640. Management commands and order of :setting:`INSTALLED_APPS`
  641. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  642. When several applications provide management commands with the same name,
  643. Django loads the command from the application that comes first in
  644. :setting:`INSTALLED_APPS`. Previous versions loaded the command from the
  645. application that came last.
  646. This brings discovery of management commands in line with other parts of
  647. Django that rely on the order of :setting:`INSTALLED_APPS`, such as static
  648. files, templates, and translations.
  649. Behavior of ``LocMemCache`` regarding pickle errors
  650. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  651. An inconsistency existed in previous versions of Django regarding how pickle
  652. errors are handled by different cache backends.
  653. ``django.core.cache.backends.locmem.LocMemCache`` used to fail silently when
  654. such an error occurs, which is inconsistent with other backends and leads to
  655. cache-specific errors. This has been fixed in Django 1.7, see
  656. `Ticket #21200`_ for more details.
  657. .. _Ticket #21200: https://code.djangoproject.com/ticket/21200
  658. Cache keys are now generated from the request's absolute URL
  659. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  660. Previous versions of Django generated cache keys using a request's path and
  661. query string but not the scheme or host. If a Django application was serving
  662. multiple subdomains or domains, cache keys could collide. In Django 1.7, cache
  663. keys vary by the absolute URL of the request including scheme, host, path, and
  664. query string. For example, the URL portion of a cache key is now generated from
  665. ``http://www.example.com/path/to/?key=val`` rather than ``/path/to/?key=val``.
  666. The cache keys generated by Django 1.7 will be different from the keys
  667. generated by older versions of Django. After upgrading to Django 1.7, the first
  668. request to any previously cached URL will be a cache miss .
  669. Passing ``None`` to ``Manager.db_manager()``
  670. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  671. In previous versions of Django, it was possible to use
  672. ``db_manager(using=None)`` on a model manager instance to obtain a manager
  673. instance using default routing behavior, overriding any manually specified
  674. database routing. In Django 1.7, a value of ``None`` passed to db_manager will
  675. produce a router that *retains* any manually assigned database routing -- the
  676. manager will *not* be reset. This was necessary to resolve an inconsistency in
  677. the way routing information cascaded over joins. See `Ticket #13724`_ for more
  678. details.
  679. .. _Ticket #13724: https://code.djangoproject.com/ticket/13724
  680. pytz may be required
  681. ~~~~~~~~~~~~~~~~~~~~
  682. If your project handles datetimes before 1970 or after 2037 and Django raises
  683. a :exc:`~exceptions.ValueError` when encountering them, you will have to
  684. install pytz_. You may be affected by this problem if you use Django's time
  685. zone-related date formats or :mod:`django.contrib.syndication`.
  686. .. _pytz: https://pypi.python.org/pypi/pytz/
  687. ``remove()`` and ``clear()`` methods of related managers
  688. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  689. The ``remove()`` and ``clear()`` methods of the related managers created by
  690. ``ForeignKey``, ``GenericForeignKey``, and ``ManyToManyField`` suffered from a
  691. number of issues. Some operations ran multiple data modifying queries without
  692. wrapping them in a transaction, and some operations didn't respect default
  693. filtering when it was present (i.e. when the default manager on the related
  694. model implemented a custom ``get_queryset()``).
  695. Fixing the issues introduced some backward incompatible changes:
  696. - The default implementation of ``remove()`` for ``ForeignKey`` related managers
  697. changed from a series of ``Model.save()`` calls to a single
  698. ``QuerySet.update()`` call. The change means that ``pre_save`` and
  699. ``post_save`` signals aren't sent anymore. You can use the ``bulk=False``
  700. keyword argument to revert to the previous behavior.
  701. - The ``remove()`` and ``clear()`` methods for ``GenericForeignKey`` related
  702. managers now perform bulk delete. The ``Model.delete()`` method isn't called
  703. on each instance anymore. You can use the ``bulk=False`` keyword argument to
  704. revert to the previous behavior.
  705. - The ``remove()`` and ``clear()`` methods for ``ManyToManyField`` related
  706. managers perform nested queries when filtering is involved, which may or
  707. may not be an issue depending on your database and your data itself.
  708. See :ref:`this note <nested-queries-performance>` for more details.
  709. Admin login redirection strategy
  710. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  711. Historically, the Django admin site passed the request from an unauthorized or
  712. unauthenticated user directly to the login view, without HTTP redirection. In
  713. Django 1.7, this behavior changed to conform to a more traditional workflow
  714. where any unauthorized request to an admin page will be redirected (by HTTP
  715. status code 302) to the login page, with the ``next`` parameter set to the
  716. referring path. The user will be redirected there after a successful login.
  717. Note also that the admin login form has been updated to not contain the
  718. ``this_is_the_login_form`` field (now unused) and the ``ValidationError`` code
  719. has been set to the more regular ``invalid_login`` key.
  720. Miscellaneous
  721. ~~~~~~~~~~~~~
  722. * The :meth:`django.core.files.uploadhandler.FileUploadHandler.new_file()`
  723. method is now passed an additional ``content_type_extra`` parameter. If you
  724. have a custom :class:`~django.core.files.uploadhandler.FileUploadHandler`
  725. that implements ``new_file()``, be sure it accepts this new parameter.
  726. * :class:`ModelFormSet<django.forms.models.BaseModelFormSet>`\s no longer
  727. delete instances when ``save(commit=False)`` is called. See
  728. :attr:`~django.forms.formsets.BaseFormSet.can_delete` for instructions on how
  729. to manually delete objects from deleted forms.
  730. * Loading empty fixtures emits a ``RuntimeWarning`` rather than raising
  731. :class:`~django.core.management.CommandError`.
  732. * :func:`django.contrib.staticfiles.views.serve` will now raise an
  733. :exc:`~django.http.Http404` exception instead of
  734. :exc:`~django.core.exceptions.ImproperlyConfigured` when :setting:`DEBUG`
  735. is ``False``. This change removes the need to conditionally add the view to
  736. your root URLconf, which in turn makes it safe to reverse by name. It also
  737. removes the ability for visitors to generate spurious HTTP 500 errors by
  738. requesting static files that don't exist or haven't been collected yet.
  739. * The :meth:`django.db.models.Model.__eq__` method is now defined in a
  740. way where instances of a proxy model and its base model are considered
  741. equal when primary keys match. Previously only instances of exact same
  742. class were considered equal on primary key match.
  743. * The :meth:`django.db.models.Model.__eq__` method has changed such that
  744. two ``Model`` instances without primary key values won't be considered
  745. equal (unless they are the same instance).
  746. * The :meth:`django.db.models.Model.__hash__` will now raise ``TypeError``
  747. when called on an instance without a primary key value. This is done to
  748. avoid mutable ``__hash__`` values in containers.
  749. * :class:`~django.db.models.AutoField` columns in SQLite databases will now be
  750. created using the ``AUTOINCREMENT`` option, which guarantees monotonic
  751. increments. This will cause primary key numbering behavior to change on
  752. SQLite, becoming consistent with most other SQL databases. This will only
  753. apply to newly created tables. If you have a database created with an older
  754. version of Django, you will need to migrate it to take advantage of this
  755. feature. For example, you could do the following:
  756. #) Use :djadmin:`dumpdata` to save your data.
  757. #) Rename the existing database file (keep it as a backup).
  758. #) Run :djadmin:`migrate` to create the updated schema.
  759. #) Use :djadmin:`loaddata` to import the fixtures you exported in (1).
  760. * ``django.contrib.auth.models.AbstractUser`` no longer defines a
  761. :meth:`~django.db.models.Model.get_absolute_url()` method. The old definition
  762. returned ``"/users/%s/" % urlquote(self.username)`` which was arbitrary
  763. since applications may or may not define such a url in ``urlpatterns``.
  764. Define a ``get_absolute_url()`` method on your own custom user object or use
  765. :setting:`ABSOLUTE_URL_OVERRIDES` if you want a URL for your user.
  766. * The static asset-serving functionality of the
  767. :class:`django.test.LiveServerTestCase` class has been simplified: Now it's
  768. only able to serve content already present in :setting:`STATIC_ROOT` when
  769. tests are run. The ability to transparently serve all the static assets
  770. (similarly to what one gets with :setting:`DEBUG = True <DEBUG>` at
  771. development-time) has been moved to a new class that lives in the
  772. ``staticfiles`` application (the one actually in charge of such feature):
  773. :class:`django.contrib.staticfiles.testing.StaticLiveServerCase`. In other
  774. words, ``LiveServerTestCase`` itself is less powerful but at the same time
  775. has less magic.
  776. Rationale behind this is removal of dependency of non-contrib code on
  777. contrib applications.
  778. * The old cache URI syntax (e.g. ``"locmem://"``) is no longer supported. It
  779. still worked, even though it was not documented or officially supported. If
  780. you're still using it, please update to the current :setting:`CACHES` syntax.
  781. * The default ordering of ``Form`` fields in case of inheritance has changed to
  782. follow normal Python MRO. Fields are now discovered by iterating through the
  783. MRO in reverse with the topmost class coming last. This only affects you if
  784. you relied on the default field ordering while having fields defined on both
  785. the current class *and* on a parent ``Form``.
  786. * The ``required`` argument of
  787. :class:`~django.forms.extras.widgets.SelectDateWidget` has been removed.
  788. This widget now respects the form field's ``is_required`` attribute like
  789. other widgets.
  790. * :meth:`~django.db.models.query.QuerySet.select_related` now chains in the
  791. same way as other similar calls like ``prefetch_related``. That is,
  792. ``select_related('foo', 'bar')`` is equivalent to
  793. ``select_related('foo').select_related('bar')``. Previously the latter would
  794. have been equivalent to ``select_related('bar')``.
  795. * GeoDjango dropped support for GEOS < 3.1.
  796. * The ``init_connection_state`` method of database backends now executes in
  797. autocommit mode (unless you set :setting:`AUTOCOMMIT <DATABASE-AUTOCOMMIT>`
  798. to ``False``). If you maintain a custom database backend, you should check
  799. that method.
  800. * The ``django.db.backends.BaseDatabaseFeatures.allows_primary_key_0``
  801. attribute has been renamed to ``allows_auto_pk_0`` to better describe it.
  802. It's ``True`` for all database backends included with Django except MySQL
  803. which does allow primary keys with value 0. It only forbids *autoincrement*
  804. primary keys with value 0.
  805. .. _deprecated-features-1.7:
  806. Features deprecated in 1.7
  807. ==========================
  808. ``django.core.cache.get_cache``
  809. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  810. :func:`django.core.cache.get_cache` has been supplanted by
  811. :data:`django.core.cache.caches`.
  812. ``django.utils.dictconfig``/``django.utils.importlib``
  813. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  814. ``django.utils.dictconfig`` and ``django.utils.importlib`` were copies of
  815. respectively :mod:`logging.config` and :mod:`importlib` provided for Python
  816. versions prior to 2.7. They have been deprecated.
  817. ``django.utils.module_loading.import_by_path``
  818. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  819. The current :meth:`~django.utils.module_loading.import_by_path` function
  820. catches ``AttributeError``, ``ImportError`` and ``ValueError`` exceptions,
  821. and re-raises :exc:`~django.core.exceptions.ImproperlyConfigured`. Such
  822. exception masking makes it needlessly hard to diagnose circular import
  823. problems, because it makes it look like the problem comes from inside Django.
  824. It has been deprecated in favor of
  825. :meth:`~django.utils.module_loading.import_string`.
  826. ``django.utils.tzinfo``
  827. ~~~~~~~~~~~~~~~~~~~~~~~
  828. ``django.utils.tzinfo`` provided two :class:`~datetime.tzinfo` subclasses,
  829. ``LocalTimezone`` and ``FixedOffset``. They've been deprecated in favor of
  830. more correct alternatives provided by :mod:`django.utils.timezone`,
  831. :func:`django.utils.timezone.get_default_timezone` and
  832. :func:`django.utils.timezone.get_fixed_timezone`.
  833. ``django.utils.unittest``
  834. ~~~~~~~~~~~~~~~~~~~~~~~~~
  835. ``django.utils.unittest`` provided uniform access to the ``unittest2`` library
  836. on all Python versions. Since ``unittest2`` became the standard library's
  837. :mod:`unittest` module in Python 2.7, and Django 1.7 drops support for older
  838. Python versions, this module isn't useful anymore. It has been deprecated. Use
  839. :mod:`unittest` instead.
  840. ``django.utils.datastructures.SortedDict``
  841. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  842. As :class:`~collections.OrderedDict` was added to the standard library in
  843. Python 2.7, :class:`~django.utils.datastructures.SortedDict` is no longer
  844. needed and has been deprecated.
  845. Custom SQL location for models package
  846. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  847. Previously, if models were organized in a package (``myapp/models/``) rather
  848. than simply ``myapp/models.py``, Django would look for :ref:`initial SQL data
  849. <initial-sql>` in ``myapp/models/sql/``. This bug has been fixed so that Django
  850. will search ``myapp/sql/`` as documented. The old location will continue to
  851. work until Django 1.9.
  852. Reorganization of ``django.contrib.sites``
  853. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  854. ``django.contrib.sites`` provides reduced functionality when it isn't in
  855. :setting:`INSTALLED_APPS`. The app-loading refactor adds some constraints in
  856. that situation. As a consequence, two objects were moved, and the old
  857. locations are deprecated:
  858. * :class:`~django.contrib.sites.requests.RequestSite` now lives in
  859. ``django.contrib.sites.requests``.
  860. * :func:`~django.contrib.sites.shortcuts.get_current_site` now lives in
  861. ``django.contrib.sites.shortcuts``.
  862. ``declared_fieldsets`` attribute on ``ModelAdmin``
  863. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  864. ``ModelAdmin.declared_fieldsets`` has been deprecated. Despite being a private
  865. API, it will go through a regular deprecation path. This attribute was mostly
  866. used by methods that bypassed ``ModelAdmin.get_fieldsets()`` but this was
  867. considered a bug and has been addressed.
  868. Reorganization of ``django.contrib.contenttypes``
  869. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  870. Since ``django.contrib.contenttypes.generic`` defined both admin and model
  871. related objects an import of this module could trigger unexpected side effects.
  872. As a consequence, its contents were split into :mod:`~django.contrib.contenttypes`
  873. submodules and the ``django.contrib.contenttypes.generic`` module is deprecated:
  874. * :class:`~django.contrib.contenttypes.fields.GenericForeignKey` and
  875. :class:`~django.contrib.contenttypes.fields.GenericRelation` now live in
  876. :mod:`~django.contrib.contenttypes.fields`.
  877. * :class:`~django.contrib.contenttypes.forms.BaseGenericInlineFormSet` and
  878. :func:`~django.contrib.contenttypes.forms.generic_inlineformset_factory` now
  879. live in :mod:`~django.contrib.contenttypes.forms`.
  880. * :class:`~django.contrib.contenttypes.admin.GenericInlineModelAdmin`,
  881. :class:`~django.contrib.contenttypes.admin.GenericStackedInline` and
  882. :class:`~django.contrib.contenttypes.admin.GenericTabularInline` now live in
  883. :mod:`~django.contrib.contenttypes.admin`.
  884. ``syncdb``
  885. ~~~~~~~~~~
  886. The :djadmin:`syncdb` command has been deprecated in favor of the new :djadmin:`migrate`
  887. command. ``migrate`` takes the same arguments as ``syncdb`` used to plus a few
  888. more, so it's safe to just change the name you're calling and nothing else.
  889. ``util`` modules renamed to ``utils``
  890. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  891. The following instances of ``util.py`` in the Django codebase have been renamed
  892. to ``utils.py`` in an effort to unify all util and utils references:
  893. * ``django.contrib.admin.util``
  894. * ``django.contrib.gis.db.backends.util``
  895. * ``django.db.backends.util``
  896. * ``django.forms.util``
  897. ``get_formsets`` method on ``ModelAdmin``
  898. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  899. ``ModelAdmin.get_formsets`` has been deprecated in favor of the new
  900. :meth:`~django.contrib.admin.ModelAdmin.get_formsets_with_inlines`, in order to
  901. better handle the case of selecting showing inlines on a ``ModelAdmin``.
  902. ``IPAddressField``
  903. ~~~~~~~~~~~~~~~~~~
  904. The :class:`django.db.models.IPAddressField` and
  905. :class:`django.forms.IPAddressField` fields have been deprecated in favor of
  906. :class:`django.db.models.GenericIPAddressField` and
  907. :class:`django.forms.GenericIPAddressField`.
  908. ``BaseMemcachedCache._get_memcache_timeout`` method
  909. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  910. The ``BaseMemcachedCache._get_memcache_timeout()`` method has been renamed to
  911. ``get_backend_timeout()``. Despite being a private API, it will go through the
  912. normal deprecation.
  913. Natural key serialization options
  914. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  915. The ``--natural`` and ``-n`` options for :djadmin:`dumpdata` have been
  916. deprecated. Use :djadminopt:`--natural-foreign` instead.
  917. Similarly, the ``use_natural_keys`` argument for ``serializers.serialize()``
  918. has been deprecated. Use ``use_natural_foreign_keys`` instead.
  919. Merging of ``POST`` and ``GET`` arguments into ``WSGIRequest.REQUEST``
  920. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  921. It was already strongly suggested that you use ``GET`` and ``POST`` instead of
  922. ``REQUEST``, because the former are more explicit. The property ``REQUEST`` is
  923. deprecated and will be removed in Django 1.9.
  924. ``django.utils.datastructures.MergeDict`` class
  925. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  926. ``MergeDict`` exists primarily to support merging ``POST`` and ``GET``
  927. arguments into a ``REQUEST`` property on ``WSGIRequest``. To merge
  928. dictionaries, use ``dict.update()`` instead. The class ``MergeDict`` is
  929. deprecated and will be removed in Django 1.9.
  930. Language codes ``zh-cn``, ``zh-tw`` and ``fy-nl``
  931. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  932. The currently used language codes for Simplified Chinese ``zh-cn``,
  933. Traditional Chinese ``zh-tw`` and (Western) Frysian ``fy-nl`` are deprecated
  934. and should be replaced by the language codes ``zh-hans``, ``zh-hant`` and
  935. ``fy`` respectively. If you use these language codes, you should rename the
  936. locale directories and update your settings to reflect these changes. The
  937. deprecated language codes will be removed in Django 1.9.
  938. ``django.utils.functional.memoize`` function
  939. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  940. The function ``memoize`` is deprecated and should be replaced by the
  941. ``functools.lru_cache`` decorator (available from Python 3.2 onwards).
  942. Django ships a backport of this decorator for older Python versions and it's
  943. available at ``django.utils.lru_cache.lru_cache``. The deprecated function will
  944. be removed in Django 1.9.
  945. Geo Sitemaps
  946. ~~~~~~~~~~~~
  947. Google has retired support for the Geo Sitemaps format. Hence Django support
  948. for Geo Sitemaps is deprecated and will be removed in Django 1.8.
  949. Passing callable arguments to queryset methods
  950. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  951. Callable arguments for querysets were an undocumented feature that was
  952. unreliable. It's been deprecated and will be removed in Django 1.9.
  953. Callable arguments were evaluated when a queryset was constructed rather than
  954. when it was evaluated, thus this feature didn't offer any benefit compared to
  955. evaluating arguments before passing them to queryset and created confusion that
  956. the arguments may have been evaluated at query time.
  957. ``ADMIN_FOR`` setting
  958. ~~~~~~~~~~~~~~~~~~~~~
  959. The ``ADMIN_FOR`` feature, part of the admindocs, has been removed. You can
  960. remove the setting from your configuration at your convenience.
  961. ``SplitDateTimeWidget`` with ``DateTimeField``
  962. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  963. ``SplitDateTimeWidget`` support in :class:`~django.forms.DateTimeField` is
  964. deprecated, use ``SplitDateTimeWidget`` with
  965. :class:`~django.forms.SplitDateTimeField` instead.
  966. ``validate``
  967. ~~~~~~~~~~~~
  968. :djadmin:`validate` command is deprecated in favor of :djadmin:`check` command.
  969. ``django.core.management.BaseCommand``
  970. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  971. ``requires_model_validation`` is deprecated in favor of a new
  972. ``requires_system_checks`` flag. If the latter flag is missing, then the
  973. value of the former flag is used. Defining both ``requires_system_checks`` and
  974. ``requires_model_validation`` results in an error.
  975. The ``check()`` method has replaced the old ``validate()`` method.
  976. ``ModelAdmin.validator``
  977. ~~~~~~~~~~~~~~~~~~~~~~~~
  978. ``ModelAdmin.validator`` is deprecated in favor of new ``checks`` attribute.
  979. ``django.db.backends.DatabaseValidation.validate_field``
  980. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  981. This method is deprecated in favor of a new ``check_field`` method.
  982. The functionality required by ``check_field()`` is the same as that provided
  983. by ``validate_field()``, but the output format is different. Third-party database
  984. backends needing this functionality should modify their backends to provide an
  985. implementation of ``check_field()``.