Changes between Version 1 and Version 2 of Version1.9Roadmap
- Timestamp:
- Jan 16, 2015, 5:48:17 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Version1.9Roadmap
v1 v2 3 3 4 4 ================== 5 Django 1. 8Roadmap5 Django 1.9 Roadmap 6 6 ================== 7 7 8 This document details the schedule and roadmap towards Django 1. 8.8 This document details the schedule and roadmap towards Django 1.9. 9 9 10 What features will be in Django 1. 8?10 What features will be in Django 1.9? 11 11 ==================================== 12 12 13 13 Whatever gets committed by the alpha feature freeze! 14 14 15 Django 1. 8will 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.15 Django 1.9 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 16 17 17 The Django core team has a couple of major features we'd like to merge: 18 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>`_ 19 * TBD 23 20 24 21 Minor 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. … … 27 24 ======== 28 25 29 Major milestones along the way to 1. 8are scheduled below. See `Process`_,26 Major milestones along the way to 1.9 are scheduled below. See `Process`_, 30 27 below, for more details. The dates are subject to change as necessary. 31 28 32 29 ================== ============================================================= 33 Jan. 12, 2015 Django 1.8alpha; feature freeze.30 <TBD> Django 1.9 alpha; feature freeze. 34 31 35 Feb. 16 Django 1.8beta; non-release blocking bug fix freeze.32 <TBD> Django 1.9 beta; non-release blocking bug fix freeze. 36 33 37 March 16 Django 1.8RC 1; translation string freeze.34 <TBD> Django 1.9 RC 1; translation string freeze. 38 35 39 2+ weeks after RC1 Django 1. 8final (or RC 2, if needed).36 2+ weeks after RC1 Django 1.9 final (or RC 2, if needed). 40 37 ================== ============================================================= 41 38 … … 43 40 ======= 44 41 45 Any features not completed by the feature freeze date won't make it into 1. 8.42 Any features not completed by the feature freeze date won't make it into 1.9. 46 43 47 Tim 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 Tamlynwill serve as a backup release manager.44 <TBD> 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. <TBD> will serve as a backup release manager. 48 45 49 46 Feature freeze / Alpha 1 50 47 ------------------------ 51 48 52 All 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 pastrelease cycles minor features were allowed until beta.49 All 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 the 1.6 and 1.7 release cycles minor features were allowed until beta. 53 50 54 At 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.51 At this time, we will fork ``stable/1.9.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 52 56 53 After the alpha, non-release blocking bug fixes may be backported at the committer's discretion. 57 58 There 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 54 60 55 Beta 1 … … 73 68 ----- 74 69 75 Ideally, 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.8final. If not, we will decide how to proceed from there at that time (likely another release candidate would be issue at some point).70 Ideally, Django 1.9 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.9 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 71 77 72 How you can help