Changes between Initial Version and Version 1 of Version3.1Roadmap


Ignore:
Timestamp:
Sep 11, 2019, 8:14:05 AM (5 years ago)
Author:
Mariusz Felisiak
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Version3.1Roadmap

    v1 v1  
     1{{{
     2#!text/x-rst
     3
     4===================
     5Django 3.1 Roadmap
     6===================
     7
     8This document details the schedule and roadmap towards Django 3.1.
     9
     10What features will be in Django 3.1?
     11=====================================
     12
     13Whatever gets committed by the alpha feature freeze!
     14
     15Django 3.1 will be a time-based release. Any features completed and committed to master by the alpha feature freeze deadline noted below will be included. Any that miss the deadline won't.
     16
     17If you have a major feature you'd like to contribute, please introduce yourself on the `django-developers mailing list <https://groups.google.com/forum/#!forum/django-developers>`_ so you can find a shepherd for your feature.
     18
     19Minor features and bug fixes will be committed as they are completed. If you have submitted a patch, be sure the flags on the Trac ticket are correct such that it appears in the "Patches needing review" filter of the `Django Development Dashboard <https://dashboard.djangoproject.com/>`_. Better yet, find someone to review your patch and mark the ticket as "Ready for checkin". Tickets marked "Ready for checkin" are regularly reviewed by committers.
     20
     21Schedule
     22========
     23
     24Major milestones along the way to 3.1 are scheduled below. See `Process`_,
     25below, for more details. The dates are subject to change as necessary.
     26
     27==================  =============================================================
     28May 11, 2019   Django 3.1 alpha; feature freeze.
     29
     30June 15          Django 3.1 beta; non-release blocking bug fix freeze.
     31
     32July 20         Django 3.1 RC 1; translation string freeze.
     33
     34August 3          Django 3.1 final
     35==================  =============================================================
     36
     37Process
     38=======
     39
     40Any features not completed by the feature freeze date won't make it into 3.1.
     41
     42Mariusz Felisiak as the release manager, will be in charge of keeping the schedule. The release manager keeps track of who's working on what issues so that bug reports can be efficiently routed and also nag developers who are in danger of missing deadlines.
     43
     44Feature freeze / Alpha 1
     45------------------------
     46
     47All major and minor features must be committed by the Alpha 1 deadline. Any features not done by this point will be deferred or dropped. At this time, we will fork ``stable/3.1.x`` from ``master``.
     48
     49After the alpha, non-release blocking bug fixes may be backported at the committer's discretion.
     50
     51Beta 1
     52------
     53
     54Beta 1 marks the end of any changes that aren't considered release blocking bugs. A bug is a "Release blocker" if it's a regression from a previous version of Django or if it's an important bug in a new feature. Only release blocking bug fixes will be allowed to be backported after the beta.
     55
     56RC 1
     57----
     58
     59If there is still a consistent stream of release blockers coming in at the planned release candidate date; we'll release beta 2 to encourage further testing and push the release candidate date out ~1 month.
     60
     61RC 1 marks the freeze for translation strings; translators will have two weeks to submit updated translations for inclusion in the final release. Release blocking bug fixes may continue to be backported.
     62
     63Final
     64-----
     65
     66Ideally, Django 3.1 final will ship two weeks after the last RC. If there are no major bugs found by 2 weeks after the release candidate, we will issue 3.1 final. If not, we will decide how to proceed from there at that time (likely another release candidate would be issued at some point).
     67
     68How you can help
     69----------------
     70
     71The only way we'll meet these deadlines is with a great deal of community effort.
     72To that end, here's how you can help:
     73
     74* Read the `guide to contributing to Django <http://docs.djangoproject.com/en/dev/internals/contributing/>`_ and the `guide to Django's
     75  release process <http://docs.djangoproject.com/en/dev/internals/release-process/>`_.
     76
     77  These guides explain how our process works. where to ask questions,
     78  etc. It'll save everyone time if we're all on the same page when it comes to process.
     79
     80* Work on patches and `triage tickets <https://docs.djangoproject.com/en/dev/internals/contributing/triaging-tickets/>`_.
     81
     82* Attend a sprint (in person or in IRC).
     83
     84* Test the release snapshots (alphas, betas) against your code and report bugs.
     85
     86* We need *lots* of testers if we're to have a bug-free release. Download a snapshot or a git checkout and give it a try!
     87}}}
Back to Top