Changes between Initial Version and Version 1 of Version1.9Roadmap


Ignore:
Timestamp:
Jan 16, 2015, 5:46:29 PM (9 years ago)
Author:
Collin Anderson
Comment:

Exact copy of the current Version1.8Roadmap

Legend:

Unmodified
Added
Removed
Modified
  • Version1.9Roadmap

    v1 v1  
     1{{{
     2#!text/x-rst
     3
     4==================
     5Django 1.8 Roadmap
     6==================
     7
     8This document details the schedule and roadmap towards Django 1.8.
     9
     10What features will be in Django 1.8?
     11====================================
     12
     13Whatever gets committed by the alpha feature freeze!
     14
     15Django 1.8 will be a fully 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
     17The Django core team has a couple of major features we'd like to merge:
     18
     19* `contrib.postgres - Marc Tamlyn <http://postgres.mjtamlyn.co.uk/>`_
     20* `multiple template engines - Aymeric Augustin <https://myks.org/en/multiple-template-engines-for-django/>`_
     21* `model _meta API - Daniel Pyrathon (GSoC project) <https://code.djangoproject.com/wiki/new_meta_api>`_
     22* `Use F() objects in aggregates(), annotates() and values() - Josh Smeaton <https://code.djangoproject.com/ticket/14030>`_
     23
     24Minor 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". Core developers try to regularly review and merge "Ready for checkin" tickets.
     25
     26Schedule
     27========
     28
     29Major milestones along the way to 1.8 are scheduled below. See `Process`_,
     30below, for more details. The dates are subject to change as necessary.
     31
     32==================  =============================================================
     33Jan. 12, 2015       Django 1.8 alpha; feature freeze.
     34
     35Feb. 16             Django 1.8 beta; non-release blocking bug fix freeze.
     36
     37March 16            Django 1.8 RC 1; translation string freeze.
     38
     392+ weeks after RC1  Django 1.8 final (or RC 2, if needed).
     40==================  =============================================================
     41
     42Process
     43=======
     44
     45Any features not completed by the feature freeze date won't make it into 1.8.
     46
     47Tim Graham, 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. Marc Tamlyn will serve as a backup release manager.
     48
     49Feature freeze / Alpha 1
     50------------------------
     51
     52All major and minor features must be committed by the Alpha 1 deadline. Any features not done by this point will be deferred or dropped. Note that in past release cycles minor features were allowed until beta.
     53
     54At this time, we will fork ``stable/1.8.x`` from ``master``. In previous release cycles we forked after beta, but now that we aren't going to accept minor features after alpha, we need to fork sooner.
     55
     56After the alpha, non-release blocking bug fixes may be backported at the committer's discretion.
     57
     58There are a couple of code refactorings that ideally should be done near the alpha deadline before we fork ``stable/1.8.x``. They are tagged in Trac with `1.8-alpha <https://code.djangoproject.com/query?status=!closed&keywords=~1.8-alpha>`_.
     59
     60Beta 1
     61------
     62
     63Beta 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.
     64
     65RC 1
     66----
     67
     68If 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.
     69
     70RC 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.
     71
     72Final
     73-----
     74
     75Ideally, Django 1.8 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 1.8 final. If not, we will decide how to proceed from there at that time (likely another release candidate would be issue at some point).
     76
     77How you can help
     78----------------
     79
     80The only way we'll meet these deadlines is with a great deal of community effort.
     81To that end, here's how you can help:
     82
     83* Read the `guide to contributing to Django <http://docs.djangoproject.com/en/dev/internals/contributing/>`_ and the `guide to Django's
     84  release process <http://docs.djangoproject.com/en/dev/internals/release-process/>`_.
     85
     86  These guides explains how our process works. where to ask questions,
     87  etc. It'll save everyone time if we're all on the same page when it
     88  comes to process.
     89
     90* Work on patches and `triage tickets <https://docs.djangoproject.com/en/dev/internals/contributing/triaging-tickets/>`_.
     91
     92* Attend a sprint (in person or in IRC).
     93
     94* Test the release snapshots (alphas, betas) against your code and report
     95  bugs.
     96
     97* We need *lots* of testers if we're to have a bug-free release. Download
     98  a snapshot or a git checkout and give it a try!
     99}}}
Back to Top