howto-release-django.txt 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456
  1. =====================
  2. How is Django Formed?
  3. =====================
  4. .. highlight:: console
  5. This document explains how to release Django.
  6. **Please, keep these instructions up-to-date if you make changes!** The point
  7. here is to be descriptive, not prescriptive, so feel free to streamline or
  8. otherwise make changes, but **update this document accordingly!**
  9. Overview
  10. ========
  11. There are three types of releases that you might need to make:
  12. * Security releases: disclosing and fixing a vulnerability. This'll
  13. generally involve two or three simultaneous releases -- e.g.
  14. 1.5.x, 1.6.x, and, depending on timing, perhaps a 1.7 alpha/beta/rc.
  15. * Regular version releases: either a final release (e.g. 1.5) or a
  16. bugfix update (e.g. 1.5.1).
  17. * Pre-releases: e.g. 1.6 alpha, beta, or rc.
  18. The short version of the steps involved is:
  19. #. If this is a security release, pre-notify the security distribution list
  20. one week before the actual release.
  21. #. Proofread the release notes, looking for organization and writing errors.
  22. Draft a blog post and email announcement.
  23. #. Update version numbers and create the release package(s).
  24. #. Upload the package(s) to the ``djangoproject.com`` server.
  25. #. Upload the new version(s) to PyPI.
  26. #. Declare the new version in the admin on ``djangoproject.com``.
  27. #. Post the blog entry and send out the email announcements.
  28. #. Update version numbers post-release.
  29. There are a lot of details, so please read on.
  30. Prerequisites
  31. =============
  32. You'll need a few things before getting started:
  33. * A GPG key. If the key you want to use is not your default signing key, you'll
  34. need to add ``-u you@example.com`` to every GPG signing command below, where
  35. ``you@example.com`` is the email address associated with the key you want to
  36. use.
  37. * An install of some required Python packages::
  38. $ python -m pip install wheel twine
  39. * Access to Django's record on PyPI. Create a file with your credentials:
  40. .. code-block:: ini
  41. :caption: ~/.pypirc
  42. [pypi]
  43. username:YourUsername
  44. password:YourPassword
  45. * Access to the ``djangoproject.com`` server to upload files.
  46. * Access to the admin on ``djangoproject.com`` as a "Site maintainer".
  47. * Access to post to ``django-announce``.
  48. * If this is a security release, access to the pre-notification distribution
  49. list.
  50. If this is your first release, you'll need to coordinate with another releaser
  51. to get all these things lined up.
  52. Pre-release tasks
  53. =================
  54. A few items need to be taken care of before even beginning the release process.
  55. This stuff starts about a week before the release; most of it can be done
  56. any time leading up to the actual release:
  57. #. If this is a security release, send out pre-notification **one week** before
  58. the release. The template for that email and a list of the recipients are in
  59. the private ``django-security`` GitHub wiki. BCC the pre-notification
  60. recipients. Sign the email with the key you'll use for the release and
  61. include `CVE IDs <https://cveform.mitre.org/>`_ (requested with Vendor:
  62. djangoproject, Product: django) and patches for each issue being fixed.
  63. Also, :ref:`notify django-announce <security-disclosure>` of the upcoming
  64. security release.
  65. #. As the release approaches, watch Trac to make sure no release blockers
  66. are left for the upcoming release.
  67. #. Check with the other committers to make sure they don't have any
  68. uncommitted changes for the release.
  69. #. Proofread the release notes, including looking at the online
  70. version to catch any broken links or reST errors, and make sure the
  71. release notes contain the correct date.
  72. #. Double-check that the release notes mention deprecation timelines
  73. for any APIs noted as deprecated, and that they mention any changes
  74. in Python version support.
  75. #. Double-check that the release notes index has a link to the notes
  76. for the new release; this will be in ``docs/releases/index.txt``.
  77. #. If this is a feature release, ensure translations from Transifex have been
  78. integrated. This is typically done by a separate translation's manager
  79. rather than the releaser, but here are the steps. Provided you have an
  80. account on Transifex::
  81. $ python scripts/manage_translations.py fetch
  82. and then commit the changed/added files (both .po and .mo). Sometimes there
  83. are validation errors which need to be debugged, so avoid doing this task
  84. immediately before a release is needed.
  85. #. :ref:`Update the django-admin manual page <django-admin-manpage>`::
  86. $ cd docs
  87. $ make man
  88. $ man _build/man/django-admin.1 # do a quick sanity check
  89. $ cp _build/man/django-admin.1 man/django-admin.1
  90. and then commit the changed man page.
  91. #. If this is the "dot zero" release of a new series, create a new branch from
  92. the current stable branch in the `django-docs-translations
  93. <https://github.com/django/django-docs-translations>`_ repository. For
  94. example, when releasing Django 2.2::
  95. $ git checkout -b stable/2.2.x origin/stable/2.1.x
  96. $ git push origin stable/2.2.x:stable/2.2.x
  97. Preparing for release
  98. =====================
  99. Write the announcement blog post for the release. You can enter it into the
  100. admin at any time and mark it as inactive. Here are a few examples: `example
  101. security release announcement`__, `example regular release announcement`__,
  102. `example pre-release announcement`__.
  103. __ https://www.djangoproject.com/weblog/2013/feb/19/security/
  104. __ https://www.djangoproject.com/weblog/2012/mar/23/14/
  105. __ https://www.djangoproject.com/weblog/2012/nov/27/15-beta-1/
  106. Actually rolling the release
  107. ============================
  108. OK, this is the fun part, where we actually push out a release!
  109. #. Check `Jenkins`__ is green for the version(s) you're putting out. You
  110. probably shouldn't issue a release until it's green.
  111. __ https://djangoci.com
  112. #. A release always begins from a release branch, so you should make sure
  113. you're on a stable branch and up-to-date. For example::
  114. $ git checkout stable/1.5.x
  115. $ git pull
  116. #. If this is a security release, merge the appropriate patches from
  117. ``django-security``. Rebase these patches as necessary to make each one a
  118. plain commit on the release branch rather than a merge commit. To ensure
  119. this, merge them with the ``--ff-only`` flag; for example::
  120. $ git checkout stable/1.5.x
  121. $ git merge --ff-only security/1.5.x
  122. (This assumes ``security/1.5.x`` is a branch in the ``django-security`` repo
  123. containing the necessary security patches for the next release in the 1.5
  124. series.)
  125. If git refuses to merge with ``--ff-only``, switch to the security-patch
  126. branch and rebase it on the branch you are about to merge it into (``git
  127. checkout security/1.5.x; git rebase stable/1.5.x``) and then switch back and
  128. do the merge. Make sure the commit message for each security fix explains
  129. that the commit is a security fix and that an announcement will follow
  130. (:commit:`example security commit <bf39978a53f117ca02e9a0c78b76664a41a54745>`).
  131. #. For a feature release, remove the ``UNDER DEVELOPMENT`` header at the
  132. top of the release notes and add the release date on the next line. For a
  133. patch release, replace ``*Under Development*`` with the release date. Make
  134. this change on all branches where the release notes for a particular version
  135. are located.
  136. #. Update the version number in ``django/__init__.py`` for the release.
  137. Please see `notes on setting the VERSION tuple`_ below for details
  138. on ``VERSION``.
  139. #. If this is a pre-release package, update the "Development Status" trove
  140. classifier in ``setup.py`` to reflect this. Otherwise, make sure the
  141. classifier is set to ``Development Status :: 5 - Production/Stable``.
  142. #. Tag the release using ``git tag``. For example::
  143. $ git tag --sign --message="Tag 1.5.1" 1.5.1
  144. You can check your work by running ``git tag --verify <tag>``.
  145. #. Push your work, including the tag: ``git push --tags``.
  146. #. Make sure you have an absolutely clean tree by running ``git clean -dfx``.
  147. #. Run ``make -f extras/Makefile`` to generate the release packages. This will
  148. create the release packages in a ``dist/`` directory.
  149. #. Generate the hashes of the release packages::
  150. $ cd dist
  151. $ md5sum *
  152. $ sha1sum *
  153. $ sha256sum *
  154. #. Create a "checksums" file, ``Django-<<VERSION>>.checksum.txt`` containing
  155. the hashes and release information. Start with this template and insert the
  156. correct version, date, GPG key ID (from
  157. ``gpg --list-keys --keyid-format LONG``), release URL, and checksums:
  158. .. code-block:: text
  159. This file contains MD5, SHA1, and SHA256 checksums for the source-code
  160. tarball and wheel files of Django <<VERSION>>, released <<DATE>>.
  161. To use this file, you will need a working install of PGP or other
  162. compatible public-key encryption software. You will also need to have
  163. the Django release manager's public key in your keyring; this key has
  164. the ID ``XXXXXXXXXXXXXXXX`` and can be imported from the MIT
  165. keyserver. For example, if using the open-source GNU Privacy Guard
  166. implementation of PGP:
  167. gpg --keyserver pgp.mit.edu --recv-key XXXXXXXXXXXXXXXX
  168. Once the key is imported, verify this file::
  169. gpg --verify <<THIS FILENAME>>
  170. Once you have verified this file, you can use normal MD5, SHA1, or SHA256
  171. checksumming applications to generate the checksums of the Django
  172. package and compare them to the checksums listed below.
  173. Release packages:
  174. =================
  175. https://www.djangoproject.com/m/releases/<<RELEASE TAR.GZ FILENAME>>
  176. https://www.djangoproject.com/m/releases/<<RELEASE WHL FILENAME>>
  177. MD5 checksums:
  178. ==============
  179. <<MD5SUM>> <<RELEASE TAR.GZ FILENAME>>
  180. <<MD5SUM>> <<RELEASE WHL FILENAME>>
  181. SHA1 checksums:
  182. ===============
  183. <<SHA1SUM>> <<RELEASE TAR.GZ FILENAME>>
  184. <<SHA1SUM>> <<RELEASE WHL FILENAME>>
  185. SHA256 checksums:
  186. =================
  187. <<SHA256SUM>> <<RELEASE TAR.GZ FILENAME>>
  188. <<SHA256SUM>> <<RELEASE WHL FILENAME>>
  189. #. Sign the checksum file (``gpg --clearsign --digest-algo SHA256
  190. Django-<version>.checksum.txt``). This generates a signed document,
  191. ``Django-<version>.checksum.txt.asc`` which you can then verify using ``gpg
  192. --verify Django-<version>.checksum.txt.asc``.
  193. If you're issuing multiple releases, repeat these steps for each release.
  194. Making the release(s) available to the public
  195. =============================================
  196. Now you're ready to actually put the release out there. To do this:
  197. #. Upload the release package(s) to the djangoproject server, replacing
  198. A.B. with the appropriate version number, e.g. 1.5 for a 1.5.x release::
  199. $ scp Django-* djangoproject.com:/home/www/www/media/releases/A.B
  200. #. Upload the checksum file(s)::
  201. $ scp Django-A.B.C.checksum.txt.asc djangoproject.com:/home/www/www/media/pgp/Django-A.B.C.checksum.txt
  202. #. Test that the release packages install correctly using ``easy_install``
  203. and ``pip``. Here's one method (which requires `virtualenvwrapper`__)::
  204. $ RELEASE_VERSION='1.7.2'
  205. $ MAJOR_VERSION=`echo $RELEASE_VERSION| cut -c 1-3`
  206. $ mktmpenv
  207. $ easy_install https://www.djangoproject.com/m/releases/$MAJOR_VERSION/Django-$RELEASE_VERSION.tar.gz
  208. $ deactivate
  209. $ mktmpenv
  210. $ python -m pip install https://www.djangoproject.com/m/releases/$MAJOR_VERSION/Django-$RELEASE_VERSION.tar.gz
  211. $ deactivate
  212. $ mktmpenv
  213. $ python -m pip install https://www.djangoproject.com/m/releases/$MAJOR_VERSION/Django-$RELEASE_VERSION-py3-none-any.whl
  214. $ deactivate
  215. This just tests that the tarballs are available (i.e. redirects are up) and
  216. that they install correctly, but it'll catch silly mistakes.
  217. __ https://pypi.org/project/virtualenvwrapper/
  218. #. Ask a few people on IRC to verify the checksums by visiting the checksums
  219. file (e.g. https://www.djangoproject.com/m/pgp/Django-1.5b1.checksum.txt)
  220. and following the instructions in it. For bonus points, they can also unpack
  221. the downloaded release tarball and verify that its contents appear to be
  222. correct (proper version numbers, no stray ``.pyc`` or other undesirable
  223. files).
  224. #. Upload the release packages to PyPI (for pre-releases, only upload the wheel
  225. file)::
  226. $ twine upload -s dist/*
  227. #. Go to the `Add release page in the admin`__, enter the new release number
  228. exactly as it appears in the name of the tarball (Django-<version>.tar.gz).
  229. So for example enter "1.5.1" or "1.4c2", etc. If the release is part of
  230. an LTS branch, mark it so.
  231. __ https://www.djangoproject.com/admin/releases/release/add/
  232. #. Make the blog post announcing the release live.
  233. #. For a new version release (e.g. 1.5, 1.6), update the default stable version
  234. of the docs by flipping the ``is_default`` flag to ``True`` on the
  235. appropriate ``DocumentRelease`` object in the ``docs.djangoproject.com``
  236. database (this will automatically flip it to ``False`` for all
  237. others); you can do this using the site's admin.
  238. Create new ``DocumentRelease`` objects for each language that has an entry
  239. for the previous release. Update djangoproject.com's `robots.docs.txt`__
  240. file by copying entries from ``manage_translations.py robots_txt`` from the
  241. current stable branch in the ``django-docs-translations`` repository. For
  242. example, when releasing Django 2.2::
  243. $ git checkout stable/2.2.x
  244. $ git pull
  245. $ python manage_translations.py robots_txt
  246. __ https://github.com/django/djangoproject.com/blob/master/djangoproject/static/robots.docs.txt
  247. #. Post the release announcement to the |django-announce|, |django-developers|,
  248. and |django-users| mailing lists. This should include a link to the
  249. announcement blog post.
  250. #. If this is a security release, send a separate email to
  251. oss-security@lists.openwall.com. Provide a descriptive subject, for example,
  252. "Django" plus the issue title from the release notes (including CVE ID). The
  253. message body should include the vulnerability details, for example, the
  254. announcement blog post text. Include a link to the announcement blog post.
  255. #. Add a link to the blog post in the topic of the `#django` IRC channel:
  256. ``/msg chanserv TOPIC #django new topic goes here``.
  257. Post-release
  258. ============
  259. You're almost done! All that's left to do now is:
  260. #. Update the ``VERSION`` tuple in ``django/__init__.py`` again,
  261. incrementing to whatever the next expected release will be. For
  262. example, after releasing 1.5.1, update ``VERSION`` to
  263. ``VERSION = (1, 5, 2, 'alpha', 0)``.
  264. #. Add the release in `Trac's versions list`_ if necessary (and make it the
  265. default by changing the ``default_version`` setting in the
  266. code.djangoproject.com's `trac.ini`__, if it's a final release). The new X.Y
  267. version should be added after the alpha release and the default version
  268. should be updated after "dot zero" release.
  269. __ https://github.com/django/code.djangoproject.com/blob/master/trac-env/conf/trac.ini
  270. #. If this was a security release, update :doc:`/releases/security` with
  271. details of the issues addressed.
  272. .. _Trac's versions list: https://code.djangoproject.com/admin/ticket/versions
  273. New stable branch tasks
  274. =======================
  275. There are several items to do in the time following the creation of a new
  276. stable branch (often following an alpha release). Some of these tasks don't
  277. need to be done by the releaser.
  278. #. Create a new ``DocumentRelease`` object in the ``docs.djangoproject.com``
  279. database for the new version's docs, and update the
  280. ``docs/fixtures/doc_releases.json`` JSON fixture, so people without access
  281. to the production DB can still run an up-to-date copy of the docs site.
  282. #. Create a stub release note for the new feature version. Use the stub from
  283. the previous feature release version or copy the contents from the previous
  284. feature version and delete most of the contents leaving only the headings.
  285. #. Increase the default PBKDF2 iterations in
  286. ``django.contrib.auth.hashers.PBKDF2PasswordHasher`` by about 20%
  287. (pick a round number). Run the tests, and update the 3 failing
  288. hasher tests with the new values. Make sure this gets noted in the
  289. release notes (see the 1.8 release notes for an example).
  290. #. Remove features that have reached the end of their deprecation cycle. Each
  291. removal should be done in a separate commit for clarity. In the commit
  292. message, add a "refs #XXXX" to the original ticket where the deprecation
  293. began if possible.
  294. #. Remove ``.. versionadded::``, ``.. versionadded::``, and ``.. deprecated::``
  295. annotations in the documentation from two releases ago. For example, in
  296. Django 1.9, notes for 1.7 will be removed.
  297. #. Add the new branch to `Read the Docs
  298. <https://readthedocs.org/projects/django/>`_. Since the automatically
  299. generated version names ("stable-A.B.x") differ from the version names
  300. used in Read the Docs ("A.B.x"), `create a ticket
  301. <https://github.com/rtfd/readthedocs.org/issues/5537>`_ requesting the new
  302. version.
  303. Notes on setting the VERSION tuple
  304. ==================================
  305. Django's version reporting is controlled by the ``VERSION`` tuple in
  306. ``django/__init__.py``. This is a five-element tuple, whose elements
  307. are:
  308. #. Major version.
  309. #. Minor version.
  310. #. Micro version.
  311. #. Status -- can be one of "alpha", "beta", "rc" or "final".
  312. #. Series number, for alpha/beta/RC packages which run in sequence
  313. (allowing, for example, "beta 1", "beta 2", etc.).
  314. For a final release, the status is always "final" and the series
  315. number is always 0. A series number of 0 with an "alpha" status will
  316. be reported as "pre-alpha".
  317. Some examples:
  318. * ``(1, 2, 1, 'final', 0)`` → "1.2.1"
  319. * ``(1, 3, 0, 'alpha', 0)`` → "1.3 pre-alpha"
  320. * ``(1, 3, 0, 'beta', 2)`` → "1.3 beta 2"