release-process.txt 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. ========================
  2. Django's release process
  3. ========================
  4. .. _official-releases:
  5. Official releases
  6. =================
  7. Since version 1.0, Django's release numbering works as follows:
  8. * Versions are numbered in the form ``A.B`` or ``A.B.C``.
  9. * ``A`` is the *major version* number, which is only incremented for major
  10. changes to Django, and these changes are not necessarily
  11. backwards-compatible. That is, code you wrote for Django 1.2 may break
  12. when we release Django 2.0.
  13. * ``B`` is the *minor version* number, which is incremented for large yet
  14. backwards compatible changes. Code written for Django 1.2 will continue
  15. to work under Django 1.3. Exceptions to this rule will be listed in the
  16. release notes.
  17. * ``C`` is the *micro version* number, which is incremented for bug and
  18. security fixes. A new micro-release will be 100% backwards-compatible with
  19. the previous micro-release. The only exception is when a security issue
  20. can't be fixed without breaking backwards-compatibility. If this happens,
  21. the release notes will provide detailed upgrade instructions.
  22. * In some cases, we'll make alpha, beta, or release candidate releases.
  23. These are of the form ``A.B alpha/beta/rc N``, which means the ``Nth``
  24. alpha/beta/release candidate of version ``A.B``.
  25. In Subversion, each Django release will be tagged under ``tags/releases``. If
  26. it's necessary to release a bug fix release or a security release that doesn't
  27. come from the trunk, we'll copy that tag to ``branches/releases`` to make the
  28. bug fix release.
  29. Major releases
  30. --------------
  31. Major releases (1.0, 2.0, etc.) will happen very infrequently (think "years",
  32. not "months"), and will probably represent major, sweeping changes to Django.
  33. Minor releases
  34. --------------
  35. Minor release (1.1, 1.2, etc.) will happen roughly every nine months -- see
  36. `release process`_, below for details.
  37. .. _internal-release-deprecation-policy:
  38. These releases will contain new features, improvements to existing features, and
  39. such. A minor release may deprecate certain features from previous releases. If a
  40. feature in version ``A.B`` is deprecated, it will continue to work in version
  41. ``A.B+1``. In version ``A.B+2``, use of the feature will raise a
  42. ``DeprecationWarning`` but will continue to work. Version ``A.B+3`` will
  43. remove the feature entirely.
  44. So, for example, if we decided to remove a function that existed in Django 1.0:
  45. * Django 1.1 will contain a backwards-compatible replica of the function
  46. which will raise a ``PendingDeprecationWarning``. This warning is silent
  47. by default; you need to explicitly turn on display of these warnings.
  48. * Django 1.2 will contain the backwards-compatible replica, but the warning
  49. will be promoted to a full-fledged ``DeprecationWarning``. This warning is
  50. *loud* by default, and will likely be quite annoying.
  51. * Django 1.3 will remove the feature outright.
  52. Micro releases
  53. --------------
  54. Micro releases (1.0.1, 1.0.2, 1.1.1, etc.) will be issued at least once half-way
  55. between minor releases, and probably more often as needed.
  56. These releases will be 100% compatible with the associated minor release, unless
  57. this is impossible for security reasons. So the answer to "should I upgrade to
  58. the latest micro release?" will always be "yes."
  59. Each minor release of Django will have a "release maintainer" appointed. This
  60. person will be responsible for making sure that bug fixes are applied to both
  61. trunk and the maintained micro-release branch. This person will also work with
  62. the release manager to decide when to release the micro releases.
  63. .. _backwards-compatibility-policy:
  64. Supported versions
  65. ==================
  66. At any moment in time, Django's developer team will support a set of releases to
  67. varying levels:
  68. * The current development trunk will get new features and bug fixes
  69. requiring major refactoring.
  70. * Patches applied to the trunk will also be applied to the last minor
  71. release, to be released as the next micro release, when they fix critical
  72. problems:
  73. * Security issues.
  74. * Data-loss bugs.
  75. * Crashing bugs.
  76. * Major functionality bugs in newly-introduced features.
  77. The rule of thumb is that fixes will be backported to the last minor
  78. release for bugs that would have prevented a release in the first place.
  79. * Security fixes will be applied to the current trunk and the previous two
  80. minor releases.
  81. * Documentation fixes generally will be more freely backported to the last
  82. release branch, at the discretion of the committer, and they don't need to
  83. meet the "critical fixes only" bar. That's because it's highly advantageous
  84. to have the docs for the last release be up-to-date and correct, and the
  85. downside of backporting (risk of introducing regressions) is much less of a
  86. concern.
  87. As a concrete example, consider a moment in time halfway between the release of
  88. Django 1.3 and 1.4. At this point in time:
  89. * Features will be added to development trunk, to be released as Django 1.4.
  90. * Critical bug fixes will be applied to a ``1.3.X`` branch, and released as
  91. 1.3.1, 1.3.2, etc.
  92. * Security fixes will be applied to trunk, a ``1.3.X`` branch and a
  93. ``1.2.X`` branch. They will trigger the release of ``1.3.1``, ``1.2.1``,
  94. etc.
  95. * Documentation fixes will be applied to trunk, and, if easily backported, to
  96. the ``1.3.X`` branch.
  97. .. _release-process:
  98. Release process
  99. ===============
  100. Django uses a time-based release schedule, with minor (i.e. 1.1, 1.2, etc.)
  101. releases every nine months, or more, depending on features.
  102. After each release, and after a suitable cooling-off period of a few weeks, the
  103. core development team will examine the landscape and announce a timeline for the
  104. next release. Most releases will be scheduled in the 6-9 month range, but if we
  105. have bigger features to development we might schedule a longer period to allow
  106. for more ambitious work.
  107. Release cycle
  108. -------------
  109. Each release cycle will be split into three periods, each lasting roughly
  110. one-third of the cycle:
  111. Phase one: feature proposal
  112. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  113. The first phase of the release process will be devoted to figuring out what
  114. features to include in the next version. This should include a good deal of
  115. preliminary work on those features -- working code trumps grand design.
  116. At the end of part one, the core developers will propose a feature list for the
  117. upcoming release. This will be broken into:
  118. * "Must-have": critical features that will delay the release if not finished
  119. * "Maybe" features: that will be pushed to the next release if not finished
  120. * "Not going to happen": features explicitly deferred to a later release.
  121. Anything that hasn't got at least some work done by the end of the first third
  122. isn't eligible for the next release; a design alone isn't sufficient.
  123. Phase two: development
  124. ~~~~~~~~~~~~~~~~~~~~~~
  125. The second third of the release schedule is the "heads-down" working period.
  126. Using the roadmap produced at the end of phase one, we'll all work very hard to
  127. get everything on it done.
  128. Longer release schedules will likely spend more than a third of the time in this
  129. phase.
  130. At the end of phase two, any unfinished "maybe" features will be postponed until
  131. the next release. Though it shouldn't happen, any "must-have" features will
  132. extend phase two, and thus postpone the final release.
  133. Phase two will culminate with an alpha release.
  134. Phase three: bugfixes
  135. ~~~~~~~~~~~~~~~~~~~~~
  136. The last third of a release is spent fixing bugs -- no new features will be
  137. accepted during this time. We'll release a beta release about halfway through,
  138. and an rc complete with string freeze two weeks before the end of the schedule.
  139. Bug-fix releases
  140. ----------------
  141. After a minor release (e.g. 1.1), the previous release will go into bugfix
  142. mode.
  143. A branch will be created of the form ``branches/releases/1.0.X`` to track
  144. bugfixes to the previous release. Critical bugs fixed on trunk must
  145. *also* be fixed on the bugfix branch; this means that commits need to cleanly
  146. separate bug fixes from feature additions. The developer who commits a fix to
  147. trunk will be responsible for also applying the fix to the current bugfix
  148. branch. Each bugfix branch will have a maintainer who will work with the
  149. committers to keep them honest on backporting bug fixes.
  150. How this all fits together
  151. --------------------------
  152. Let's look at a hypothetical example for how this all first together. Imagine,
  153. if you will, a point about halfway between 1.1 and 1.2. At this point,
  154. development will be happening in a bunch of places:
  155. * On trunk, development towards 1.2 proceeds with small additions, bugs
  156. fixes, etc. being checked in daily.
  157. * On the branch "branches/releases/1.1.X", fixes for critical bugs found in
  158. the 1.1 release are checked in as needed. At some point, this branch will
  159. be released as "1.1.1", "1.1.2", etc.
  160. * On the branch "branches/releases/1.0.X", security fixes are made if
  161. needed and released as "1.0.2", "1.0.3", etc.
  162. * On feature branches, development of major features is done. These
  163. branches will be merged into trunk before the end of phase two.