5 Although Django has not reached a 1.0 release, the bulk of Django's public APIs are
6 stable as of the 0.95 release. This document explains which APIs will and will not
7 change before the 1.0 release.
12 In this context, stable means:
14 - All the public APIs -- everything documented in the linked documents, and
15 all methods that don't begin with an underscore -- will not be moved or
16 renamed without providing backwards-compatible aliases.
18 - If new features are added to these APIs -- which is quite possible --
19 they will not break or change the meaning of existing methods. In other
20 words, "stable" does not (necessarily) mean "complete."
22 - If, for some reason, an API declared stable must be removed or replaced, it
23 will be declared deprecated but will remain in the API until at least
24 version 1.1. Warnings will be issued when the deprecated method is
27 - We'll only break backwards compatibility of these APIs if a bug or
28 security hole makes it completely unavoidable.
33 These APIs are stable:
37 - `Custom template tags and libraries`_ (with the possible exception for a
38 small change in the way templates are registered and loaded).
40 - `Database lookup`_ (with the exception of validation; see below).
42 - `django-admin utility`_.
44 - `FastCGI integration`_.
50 - `Internationalization`_.
52 - `Legacy database integration`_.
54 - `Model definition`_ (with the exception of generic relations; see below).
56 - `mod_python integration`_.
60 - `Request/response objects`_.
70 - `Template language`_ (with the exception of some possible disambiguation
71 of how tag arguments are passed to tags and filters).
77 You'll notice that this list comprises the bulk of Django's APIs. That's right
78 -- most of the changes planned between now and Django 1.0 are either under the
79 hood, feature additions, or changes to a few select bits. A good estimate is
80 that 90% of Django can be considered forwards-compatible at this point.
82 That said, these APIs should *not* be considered stable, and are likely to
85 - `Serialization`_ is under heavy development; changes are likely.
87 - The `authentication`_ framework is changing to be far more flexible, and
88 API changes may be necessary.
90 - Generic relations will most likely be moved out of core and into the
91 content-types contrib package to avoid core dependencies on optional
94 - The comments framework, which is yet undocumented, will likely get a complete
95 rewrite before Django 1.0. Even if the change isn't quite that drastic,
96 there will at least be moderate changes.
98 .. _caching: ../cache/
99 .. _custom template tags and libraries: ../templates_python/
100 .. _database lookup: ../db-api/
101 .. _django-admin utility: ../django-admin/
102 .. _fastcgi integration: ../fastcgi/
103 .. _flatpages: ../flatpages/
104 .. _generic views: ../generic_views/
105 .. _internationalization: ../i18n/
106 .. _legacy database integration: ../legacy_databases/
107 .. _model definition: ../model-api/
108 .. _mod_python integration: ../modpython/
109 .. _redirects: ../redirects/
110 .. _request/response objects: ../request_response/
111 .. _sending email: ../email/
112 .. _sessions: ../sessions/
113 .. _settings: ../settings/
114 .. _syndication: ../syndication_feeds/
115 .. _template language: ../templates/
116 .. _transactions: ../transactions/
117 .. _url dispatch: ../url_dispatch/
118 .. _forms and validation: ../forms/
119 .. _serialization: ../serialization/
120 .. _authentication: ../authentication/