howto-release-django.txt 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575
  1. =====================
  2. How is Django Formed?
  3. =====================
  4. This document explains how to release Django.
  5. **Please, keep these instructions up-to-date if you make changes!** The point
  6. here is to be descriptive, not prescriptive, so feel free to streamline or
  7. otherwise make changes, but **update this document accordingly!**
  8. Overview
  9. ========
  10. There are three types of releases that you might need to make:
  11. * Security releases: disclosing and fixing a vulnerability. This'll
  12. generally involve two or three simultaneous releases -- e.g.
  13. 3.2.x, 4.0.x, and, depending on timing, perhaps a 4.1.x.
  14. * Regular version releases: either a final release (e.g. 4.1) or a
  15. bugfix update (e.g. 4.1.1).
  16. * Pre-releases: e.g. 4.2 alpha, beta, or rc.
  17. The short version of the steps involved is:
  18. #. If this is a security release, pre-notify the security distribution list
  19. one week before the actual release.
  20. #. Proofread the release notes, looking for organization and writing errors.
  21. Draft a blog post and email announcement.
  22. #. Update version numbers and create the release package(s).
  23. #. Upload the package(s) to the ``djangoproject.com`` server.
  24. #. Verify package(s) signatures, check if they can be installed, and ensure
  25. minimal functionality.
  26. #. Upload the new version(s) to PyPI.
  27. #. Declare the new version in the admin on ``djangoproject.com``.
  28. #. Post the blog entry and send out the email announcements.
  29. #. Update version numbers post-release.
  30. There are a lot of details, so please read on.
  31. Prerequisites
  32. =============
  33. You'll need a few things before getting started:
  34. * A GPG key. If the key you want to use is not your default signing key, you'll
  35. need to add ``-u you@example.com`` to every GPG signing command below, where
  36. ``you@example.com`` is the email address associated with the key you want to
  37. use. You will also need to add ``-i you@example.com`` to the ``twine`` call.
  38. * An install of some required Python packages:
  39. .. code-block:: shell
  40. $ python -m pip install wheel twine
  41. * Access to Django's project on PyPI. Create a project-scoped token following
  42. the `official documentation <https://pypi.org/help/#apitoken>`_ and set up
  43. your ``$HOME/.pypirc`` file like this:
  44. .. code-block:: ini
  45. :caption: ``~/.pypirc``
  46. [distutils]
  47. index-servers =
  48. pypi
  49. django
  50. [pypi]
  51. username = __token__
  52. password = # User-scoped or project-scoped token, to set as the default.
  53. [django]
  54. repository = https://upload.pypi.org/legacy/
  55. username = __token__
  56. password = # A project token.
  57. * Access to Django's project on `Transifex
  58. <https://app.transifex.com/django/django/>`_, with a Manager role. Generate
  59. an API Token in the `user setting section
  60. <https://app.transifex.com/user/settings/api/>`_ and set up your
  61. ``$HOME/.transifexrc`` file like this:
  62. .. code-block:: ini
  63. :caption: ``~/.transifexrc``
  64. [https://www.transifex.com]
  65. rest_hostname = https://rest.api.transifex.com
  66. token = # API token
  67. * Access to the ``djangoproject.com`` server to upload files.
  68. * Access to the admin on ``djangoproject.com`` as a "Site maintainer".
  69. * Access to post to ``django-announce``.
  70. * If this is a security release, access to the pre-notification distribution
  71. list.
  72. If this is your first release, you'll need to coordinate with another releaser
  73. to get all these things lined up.
  74. Pre-release tasks
  75. =================
  76. A few items need to be taken care of before even beginning the release process.
  77. This stuff starts about a week before the release; most of it can be done
  78. any time leading up to the actual release:
  79. #. If this is a security release, send out pre-notification **one week** before
  80. the release. The template for that email and a list of the recipients are in
  81. the private ``django-security`` GitHub wiki. BCC the pre-notification
  82. recipients. Sign the email with the key you'll use for the release and
  83. include `CVE IDs <https://cveform.mitre.org/>`_ (requested with Vendor:
  84. djangoproject, Product: django) and patches for each issue being fixed.
  85. Also, :ref:`notify django-announce <security-disclosure>` of the upcoming
  86. security release.
  87. #. As the release approaches, watch Trac to make sure no release blockers
  88. are left for the upcoming release.
  89. #. Check with the other mergers to make sure they don't have any uncommitted
  90. changes for the release.
  91. #. Proofread the release notes, including looking at the online version to
  92. :ref:`catch any broken links <documentation-link-check>` or reST errors, and
  93. make sure the release notes contain the correct date.
  94. #. Double-check that the release notes mention deprecation timelines
  95. for any APIs noted as deprecated, and that they mention any changes
  96. in Python version support.
  97. #. Double-check that the release notes index has a link to the notes
  98. for the new release; this will be in ``docs/releases/index.txt``.
  99. #. If this is a :term:`feature release`, ensure translations from Transifex
  100. have been integrated. This is typically done by a separate translation's
  101. manager rather than the releaser, but here are the steps. This process is a
  102. bit lengthy so be sure to set aside 4-10 hours to do this, and ideally plan
  103. for this task one or two days ahead of the release day.
  104. In addition to having a configured Transifex account, the
  105. `tx CLI <https://developers.transifex.com/docs/cli>`_ should be available in
  106. your ``PATH``. Then, you can fetch all the translations by running:
  107. .. code-block:: shell
  108. $ python scripts/manage_translations.py fetch
  109. This command takes some time to run. When done, carefully inspect the output
  110. for potential errors and/or warnings. If there are some, you will need to
  111. debug and resolve them on a case by case basis.
  112. The recently fetched translations need some manual adjusting. First of all,
  113. the ``PO-Revision-Date`` values must be manually bumped to be later than
  114. ``POT-Creation-Date``. You can use a command similar to this to bulk update
  115. all the ``.po`` files (compare the diff against the relevant stable branch):
  116. .. code-block:: shell
  117. $ git diff --name-only stable/5.0.x | grep "\.po" | xargs sed -ri "s/PO-Revision-Date: [0-9\-]+ /PO-Revision-Date: $(date -I) /g"
  118. All the new ``.po`` files should be manually and carefully inspected to
  119. avoid committing a change in a file without any new translations. Also,
  120. there shouldn't be any changes in the "plural forms": if there are any
  121. (usually Spanish and French report changes for this) those will need
  122. reverting.
  123. Lastly, commit the changed/added files (both ``.po`` and ``.mo``) and create
  124. a new PR targeting the stable branch of the corresponding release (example
  125. `PR updating translations for 4.2
  126. <https://github.com/django/django/pull/16715>`_).
  127. #. :ref:`Update the django-admin manual page <django-admin-manpage>`:
  128. .. code-block:: shell
  129. $ cd docs
  130. $ make man
  131. $ man _build/man/django-admin.1 # do a quick sanity check
  132. $ cp _build/man/django-admin.1 man/django-admin.1
  133. and then commit the changed man page.
  134. #. If this is the alpha release of a new series, create a new stable branch
  135. from main. For example, when releasing Django 4.2:
  136. .. code-block:: shell
  137. $ git checkout -b stable/4.2.x origin/main
  138. $ git push origin -u stable/4.2.x:stable/4.2.x
  139. At the same time, update the ``django_next_version`` variable in
  140. ``docs/conf.py`` on the stable release branch to point to the new
  141. development version. For example, when creating ``stable/4.2.x``, set
  142. ``django_next_version`` to ``'5.0'`` on the new branch.
  143. #. If this is the "dot zero" release of a new series, create a new branch from
  144. the current stable branch in the `django-docs-translations
  145. <https://github.com/django/django-docs-translations>`_ repository. For
  146. example, when releasing Django 4.2:
  147. .. code-block:: shell
  148. $ git checkout -b stable/4.2.x origin/stable/4.1.x
  149. $ git push origin stable/4.2.x:stable/4.2.x
  150. Preparing for release
  151. =====================
  152. Write the announcement blog post for the release. You can enter it into the
  153. admin at any time and mark it as inactive. Here are a few examples: `example
  154. security release announcement`__, `example regular release announcement`__,
  155. `example pre-release announcement`__.
  156. __ https://www.djangoproject.com/weblog/2013/feb/19/security/
  157. __ https://www.djangoproject.com/weblog/2012/mar/23/14/
  158. __ https://www.djangoproject.com/weblog/2012/nov/27/15-beta-1/
  159. Actually rolling the release
  160. ============================
  161. OK, this is the fun part, where we actually push out a release!
  162. #. Check `Jenkins`__ is green for the version(s) you're putting out. You
  163. probably shouldn't issue a release until it's green.
  164. __ https://djangoci.com
  165. #. A release always begins from a release branch, so you should make sure
  166. you're on a stable branch and up-to-date. For example:
  167. .. code-block:: shell
  168. $ git checkout stable/4.1.x
  169. $ git pull
  170. #. If this is a security release, merge the appropriate patches from
  171. ``django-security``. Rebase these patches as necessary to make each one a
  172. plain commit on the release branch rather than a merge commit. To ensure
  173. this, merge them with the ``--ff-only`` flag; for example:
  174. .. code-block:: shell
  175. $ git checkout stable/4.1.x
  176. $ git merge --ff-only security/4.1.x
  177. (This assumes ``security/4.1.x`` is a branch in the ``django-security`` repo
  178. containing the necessary security patches for the next release in the 4.1
  179. series.)
  180. If git refuses to merge with ``--ff-only``, switch to the security-patch
  181. branch and rebase it on the branch you are about to merge it into (``git
  182. checkout security/4.1.x; git rebase stable/4.1.x``) and then switch back and
  183. do the merge. Make sure the commit message for each security fix explains
  184. that the commit is a security fix and that an announcement will follow
  185. (:commit:`example security commit <bf39978a53f117ca02e9a0c78b76664a41a54745>`).
  186. #. For a feature release, remove the ``UNDER DEVELOPMENT`` header at the
  187. top of the release notes and add the release date on the next line. For a
  188. patch release, remove the ``Expected`` prefix and update the release date,
  189. if necessary. Make this change on all branches where the release notes for a
  190. particular version are located.
  191. #. Update the version number in ``django/__init__.py`` for the release.
  192. Please see `notes on setting the VERSION tuple`_ below for details
  193. on ``VERSION``.
  194. #. If this is a pre-release package, update the "Development Status" trove
  195. classifier in ``setup.cfg`` to reflect this. Otherwise, make sure the
  196. classifier is set to ``Development Status :: 5 - Production/Stable``.
  197. #. Tag the release using ``git tag``. For example:
  198. .. code-block:: shell
  199. $ git tag --sign --message="Tag 4.1.1" 4.1.1
  200. You can check your work by running ``git tag --verify <tag>``.
  201. #. Push your work, including the tag: ``git push --tags``.
  202. #. Make sure you have an absolutely clean tree by running ``git clean -dfx``.
  203. #. Run ``make -f extras/Makefile`` to generate the release packages. This will
  204. create the release packages in a ``dist/`` directory.
  205. #. Generate the hashes of the release packages:
  206. .. code-block:: shell
  207. $ cd dist
  208. $ md5sum *
  209. $ sha1sum *
  210. $ sha256sum *
  211. #. Create a "checksums" file, ``Django-<<VERSION>>.checksum.txt`` containing
  212. the hashes and release information. Start with this template and insert the
  213. correct version, date, GPG key ID (from
  214. ``gpg --list-keys --keyid-format LONG``), release manager's GitHub username,
  215. release URL, and checksums:
  216. .. code-block:: text
  217. This file contains MD5, SHA1, and SHA256 checksums for the source-code
  218. tarball and wheel files of Django <<VERSION>>, released <<DATE>>.
  219. To use this file, you will need a working install of PGP or other
  220. compatible public-key encryption software. You will also need to have
  221. the Django release manager's public key in your keyring. This key has
  222. the ID ``XXXXXXXXXXXXXXXX`` and can be imported from the MIT
  223. keyserver, for example, if using the open-source GNU Privacy Guard
  224. implementation of PGP:
  225. gpg --keyserver pgp.mit.edu --recv-key XXXXXXXXXXXXXXXX
  226. or via the GitHub API:
  227. curl https://github.com/<<RELEASE MANAGER GITHUB USERNAME>>.gpg | gpg --import -
  228. Once the key is imported, verify this file:
  229. gpg --verify <<THIS FILENAME>>
  230. Once you have verified this file, you can use normal MD5, SHA1, or SHA256
  231. checksumming applications to generate the checksums of the Django
  232. package and compare them to the checksums listed below.
  233. Release packages
  234. ================
  235. https://www.djangoproject.com/m/releases/<<MAJOR VERSION>>/<<RELEASE TAR.GZ FILENAME>>
  236. https://www.djangoproject.com/m/releases/<<MAJOR VERSION>>/<<RELEASE WHL FILENAME>>
  237. MD5 checksums
  238. =============
  239. <<MD5SUM>> <<RELEASE TAR.GZ FILENAME>>
  240. <<MD5SUM>> <<RELEASE WHL FILENAME>>
  241. SHA1 checksums
  242. ==============
  243. <<SHA1SUM>> <<RELEASE TAR.GZ FILENAME>>
  244. <<SHA1SUM>> <<RELEASE WHL FILENAME>>
  245. SHA256 checksums
  246. ================
  247. <<SHA256SUM>> <<RELEASE TAR.GZ FILENAME>>
  248. <<SHA256SUM>> <<RELEASE WHL FILENAME>>
  249. #. Sign the checksum file (``gpg --clearsign --digest-algo SHA256
  250. Django-<version>.checksum.txt``). This generates a signed document,
  251. ``Django-<version>.checksum.txt.asc`` which you can then verify using ``gpg
  252. --verify Django-<version>.checksum.txt.asc``.
  253. If you're issuing multiple releases, repeat these steps for each release.
  254. Making the release(s) available to the public
  255. =============================================
  256. Now you're ready to actually put the release out there. To do this:
  257. #. Upload the release package(s) to the djangoproject server, replacing
  258. A.B. with the appropriate version number, e.g. 4.1 for a 4.1.x release:
  259. .. code-block:: shell
  260. $ scp Django-* djangoproject.com:/home/www/www/media/releases/A.B
  261. If this is the alpha release of a new series, you will need to create the
  262. directory A.B.
  263. #. Upload the checksum file(s):
  264. .. code-block:: shell
  265. $ scp Django-A.B.C.checksum.txt.asc djangoproject.com:/home/www/www/media/pgp/Django-A.B.C.checksum.txt
  266. #. Test that the release packages install correctly using ``pip``. Here's one
  267. method:
  268. .. code-block:: shell
  269. $ RELEASE_VERSION='4.1.1'
  270. $ MAJOR_VERSION=`echo $RELEASE_VERSION| cut -c 1-3`
  271. $ python -m venv django-pip
  272. $ . django-pip/bin/activate
  273. $ python -m pip install https://www.djangoproject.com/m/releases/$MAJOR_VERSION/Django-$RELEASE_VERSION.tar.gz
  274. $ deactivate
  275. $ python -m venv django-pip-wheel
  276. $ . django-pip-wheel/bin/activate
  277. $ python -m pip install https://www.djangoproject.com/m/releases/$MAJOR_VERSION/Django-$RELEASE_VERSION-py3-none-any.whl
  278. $ deactivate
  279. This just tests that the tarballs are available (i.e. redirects are up) and
  280. that they install correctly, but it'll catch silly mistakes.
  281. #. Run the `confirm-release`__ build on Jenkins to verify the checksum file(s)
  282. (e.g. use ``4.2rc1`` for
  283. https://media.djangoproject.com/pgp/Django-4.2rc1.checksum.txt).
  284. __ https://djangoci.com/job/confirm-release/
  285. #. Upload the release packages to PyPI (for pre-releases, only upload the wheel
  286. file):
  287. .. code-block:: shell
  288. $ twine upload -s dist/*
  289. #. Go to the `Add release page in the admin`__, enter the new release number
  290. exactly as it appears in the name of the tarball
  291. (``Django-<version>.tar.gz``). So for example enter "4.1.1" or "4.2rc1",
  292. etc. If the release is part of an LTS branch, mark it so.
  293. __ https://www.djangoproject.com/admin/releases/release/add/
  294. If this is the alpha release of a new series, also create a Release object
  295. for the *final* release, ensuring that the *Release date* field is blank,
  296. thus marking it as *unreleased*. For example, when creating the Release
  297. object for ``4.2a1``, also create ``4.2`` with the Release date field blank.
  298. #. Make the blog post announcing the release live.
  299. #. For a new version release (e.g. 4.1, 4.2), update the default stable version
  300. of the docs by flipping the ``is_default`` flag to ``True`` on the
  301. appropriate ``DocumentRelease`` object in the ``docs.djangoproject.com``
  302. database (this will automatically flip it to ``False`` for all
  303. others); you can do this using the site's admin.
  304. Create new ``DocumentRelease`` objects for each language that has an entry
  305. for the previous release. Update djangoproject.com's `robots.docs.txt`__
  306. file by copying the result generated from running the command
  307. ``manage_translations.py robots_txt`` in the current stable branch from the
  308. `django-docs-translations repository`__. For example, when releasing Django
  309. 4.2:
  310. .. code-block:: shell
  311. $ git checkout stable/4.2.x
  312. $ git pull
  313. $ python manage_translations.py robots_txt
  314. __ https://github.com/django/djangoproject.com/blob/main/djangoproject/static/robots.docs.txt
  315. __ https://github.com/django/django-docs-translations
  316. #. Post the release announcement to the |django-announce|, |django-developers|,
  317. |django-users| mailing lists, and the Django Forum. This should include a
  318. link to the announcement blog post.
  319. #. If this is a security release, send a separate email to
  320. oss-security@lists.openwall.com. Provide a descriptive subject, for example,
  321. "Django" plus the issue title from the release notes (including CVE ID). The
  322. message body should include the vulnerability details, for example, the
  323. announcement blog post text. Include a link to the announcement blog post.
  324. #. Add a link to the blog post in the topic of the ``#django`` IRC channel:
  325. ``/msg chanserv TOPIC #django new topic goes here``.
  326. Post-release
  327. ============
  328. You're almost done! All that's left to do now is:
  329. #. Update the ``VERSION`` tuple in ``django/__init__.py`` again,
  330. incrementing to whatever the next expected release will be. For
  331. example, after releasing 4.1.1, update ``VERSION`` to
  332. ``VERSION = (4, 1, 2, 'alpha', 0)``.
  333. #. Add the release in `Trac's versions list`_ if necessary (and make it the
  334. default by changing the ``default_version`` setting in the
  335. code.djangoproject.com's `trac.ini`__, if it's a final release). The new X.Y
  336. version should be added after the alpha release and the default version
  337. should be updated after "dot zero" release.
  338. __ https://github.com/django/code.djangoproject.com/blob/main/trac-env/conf/trac.ini
  339. #. If this was a final release:
  340. #. Update the current stable branch and remove the pre-release branch in the
  341. `Django release process
  342. <https://code.djangoproject.com/#Djangoreleaseprocess>`_ on Trac.
  343. #. Update djangoproject.com's download page (`example PR
  344. <https://github.com/django/djangoproject.com/pull/1444>`__).
  345. #. If this was a security release, update :doc:`/releases/security` with
  346. details of the issues addressed.
  347. .. _Trac's versions list: https://code.djangoproject.com/admin/ticket/versions
  348. New stable branch tasks
  349. =======================
  350. There are several items to do in the time following the creation of a new
  351. stable branch (often following an alpha release). Some of these tasks don't
  352. need to be done by the releaser.
  353. #. Create a new ``DocumentRelease`` object in the ``docs.djangoproject.com``
  354. database for the new version's docs, and update the
  355. ``docs/fixtures/doc_releases.json`` JSON fixture, so people without access
  356. to the production DB can still run an up-to-date copy of the docs site
  357. (`example PR <https://github.com/django/djangoproject.com/pull/1446>`__).
  358. #. Create a stub release note for the new feature version. Use the stub from
  359. the previous feature release version or copy the contents from the previous
  360. feature version and delete most of the contents leaving only the headings.
  361. #. Increase the default PBKDF2 iterations in
  362. ``django.contrib.auth.hashers.PBKDF2PasswordHasher`` by about 20%
  363. (pick a round number). Run the tests, and update the 3 failing
  364. hasher tests with the new values. Make sure this gets noted in the
  365. release notes (see the 4.1 release notes for an example).
  366. #. Remove features that have reached the end of their deprecation cycle. Each
  367. removal should be done in a separate commit for clarity. In the commit
  368. message, add a "refs #XXXX" to the original ticket where the deprecation
  369. began if possible.
  370. #. Remove ``.. versionadded::``, ``.. versionadded::``, and ``.. deprecated::``
  371. annotations in the documentation from two releases ago. For example, in
  372. Django 4.2, notes for 4.0 will be removed.
  373. #. Add the new branch to `Read the Docs
  374. <https://readthedocs.org/projects/django/>`_. Since the automatically
  375. generated version names ("stable-A.B.x") differ from the version names
  376. used in Read the Docs ("A.B.x"), `create a ticket
  377. <https://github.com/readthedocs/readthedocs.org/issues/5537>`_ requesting
  378. the new version.
  379. #. `Request the new classifier on PyPI
  380. <https://github.com/pypa/trove-classifiers/issues/29>`_. For example
  381. ``Framework :: Django :: 3.1``.
  382. #. Update the current branch under active development and add pre-release
  383. branch in the `Django release process
  384. <https://code.djangoproject.com/#Djangoreleaseprocess>`_ on Trac.
  385. Notes on setting the VERSION tuple
  386. ==================================
  387. Django's version reporting is controlled by the ``VERSION`` tuple in
  388. ``django/__init__.py``. This is a five-element tuple, whose elements
  389. are:
  390. #. Major version.
  391. #. Minor version.
  392. #. Micro version.
  393. #. Status -- can be one of "alpha", "beta", "rc" or "final".
  394. #. Series number, for alpha/beta/RC packages which run in sequence
  395. (allowing, for example, "beta 1", "beta 2", etc.).
  396. For a final release, the status is always "final" and the series
  397. number is always 0. A series number of 0 with an "alpha" status will
  398. be reported as "pre-alpha".
  399. Some examples:
  400. * ``(4, 1, 1, "final", 0)`` → "4.1.1"
  401. * ``(4, 2, 0, "alpha", 0)`` → "4.2 pre-alpha"
  402. * ``(4, 2, 0, "beta", 1)`` → "4.2 beta 1"