티스토리 수익 글 보기

티스토리 수익 글 보기

Added stub release notes for 6.0. · django/django@9b5ad40 · GitHub
Skip to content

Commit 9b5ad40

Browse files
committed
Added stub release notes for 6.0.
1 parent 96700c7 commit 9b5ad40

File tree

3 files changed

+271
0
lines changed

3 files changed

+271
0
lines changed

docs/faq/install.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ Django version Python versions
5454
5.0 3.10, 3.11, 3.12
5555
5.1 3.10, 3.11, 3.12, 3.13 (added in 5.1.3)
5656
5.2 3.10, 3.11, 3.12, 3.13
57+
6.0 3.12, 3.13
5758
============== ===============
5859

5960
For each version of Python, only the latest micro release (A.B.C) is officially

docs/releases/6.0.txt

Lines changed: 263 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,263 @@
1+
============================================
2+
Django 6.0 release notes - UNDER DEVELOPMENT
3+
============================================
4+
5+
*Expected December 2025*
6+
7+
Welcome to Django 6.0!
8+
9+
These release notes cover the :ref:`new features <whats-new-6.0>`, as well as
10+
some :ref:`backwards incompatible changes <backwards-incompatible-6.0>` you'll
11+
want to be aware of when upgrading from Django 5.2 or earlier. We've
12+
:ref:`begun the deprecation process for some features
13+
<deprecated-features-6.0>`.
14+
15+
See the :doc:`/howto/upgrade-version` guide if you're updating an existing
16+
project.
17+
18+
Python compatibility
19+
====================
20+
21+
Django 6.0 supports Python 3.12 and 3.13. We **highly recommend** and only
22+
officially support the latest release of each series.
23+
24+
Third-party library support for older version of Django
25+
=======================================================
26+
27+
Following the release of Django 6.0, we suggest that third-party app authors
28+
drop support for all versions of Django prior to 5.2. At that time, you should
29+
be able to run your package's tests using ``python -Wd`` so that deprecation
30+
warnings appear. After making the deprecation warning fixes, your app should be
31+
compatible with Django 6.0.
32+
33+
.. _whats-new-6.0:
34+
35+
What's new in Django 6.0
36+
========================
37+
38+
Minor features
39+
--------------
40+
41+
:mod:`django.contrib.admin`
42+
~~~~~~~~~~~~~~~~~~~~~~~~~~~
43+
44+
* ...
45+
46+
:mod:`django.contrib.admindocs`
47+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
48+
49+
* ...
50+
51+
:mod:`django.contrib.auth`
52+
~~~~~~~~~~~~~~~~~~~~~~~~~~
53+
54+
* ...
55+
56+
:mod:`django.contrib.contenttypes`
57+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
58+
59+
* ...
60+
61+
:mod:`django.contrib.gis`
62+
~~~~~~~~~~~~~~~~~~~~~~~~~
63+
64+
* ...
65+
66+
:mod:`django.contrib.messages`
67+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
68+
69+
* ...
70+
71+
:mod:`django.contrib.postgres`
72+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
73+
74+
* ...
75+
76+
:mod:`django.contrib.redirects`
77+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
78+
79+
* ...
80+
81+
:mod:`django.contrib.sessions`
82+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
83+
84+
* ...
85+
86+
:mod:`django.contrib.sitemaps`
87+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
88+
89+
* ...
90+
91+
:mod:`django.contrib.sites`
92+
~~~~~~~~~~~~~~~~~~~~~~~~~~~
93+
94+
* ...
95+
96+
:mod:`django.contrib.staticfiles`
97+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
98+
99+
* ...
100+
101+
:mod:`django.contrib.syndication`
102+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
103+
104+
* ...
105+
106+
Cache
107+
~~~~~
108+
109+
* ...
110+
111+
CSRF
112+
~~~~
113+
114+
* ...
115+
116+
Decorators
117+
~~~~~~~~~~
118+
119+
* ...
120+
121+
Email
122+
~~~~~
123+
124+
* ...
125+
126+
Error Reporting
127+
~~~~~~~~~~~~~~~
128+
129+
* ...
130+
131+
File Storage
132+
~~~~~~~~~~~~
133+
134+
* ...
135+
136+
File Uploads
137+
~~~~~~~~~~~~
138+
139+
* ...
140+
141+
Forms
142+
~~~~~
143+
144+
* ...
145+
146+
Generic Views
147+
~~~~~~~~~~~~~
148+
149+
* ...
150+
151+
Internationalization
152+
~~~~~~~~~~~~~~~~~~~~
153+
154+
* ...
155+
156+
Logging
157+
~~~~~~~
158+
159+
* ...
160+
161+
Management Commands
162+
~~~~~~~~~~~~~~~~~~~
163+
164+
* ...
165+
166+
Migrations
167+
~~~~~~~~~~
168+
169+
* ...
170+
171+
Models
172+
~~~~~~
173+
174+
* ...
175+
176+
Requests and Responses
177+
~~~~~~~~~~~~~~~~~~~~~~
178+
179+
* ...
180+
181+
Security
182+
~~~~~~~~
183+
184+
* ...
185+
186+
Serialization
187+
~~~~~~~~~~~~~
188+
189+
* ...
190+
191+
Signals
192+
~~~~~~~
193+
194+
* ...
195+
196+
Templates
197+
~~~~~~~~~
198+
199+
* ...
200+
201+
Tests
202+
~~~~~
203+
204+
* ...
205+
206+
URLs
207+
~~~~
208+
209+
* ...
210+
211+
Utilities
212+
~~~~~~~~~
213+
214+
* ...
215+
216+
Validators
217+
~~~~~~~~~~
218+
219+
* ...
220+
221+
.. _backwards-incompatible-6.0:
222+
223+
Backwards incompatible changes in 6.0
224+
=====================================
225+
226+
Database backend API
227+
--------------------
228+
229+
This section describes changes that may be needed in third-party database
230+
backends.
231+
232+
* ...
233+
234+
Miscellaneous
235+
-------------
236+
237+
* ...
238+
239+
.. _deprecated-features-6.0:
240+
241+
Features deprecated in 6.0
242+
==========================
243+
244+
Miscellaneous
245+
-------------
246+
247+
* ...
248+
249+
Features removed in 6.0
250+
=======================
251+
252+
These features have reached the end of their deprecation cycle and are removed
253+
in Django 6.0.
254+
255+
See :ref:`deprecated-features-5.0` for details on these changes, including how
256+
to remove usage of these features.
257+
258+
* ...
259+
260+
See :ref:`deprecated-features-5.1` for details on these changes, including how
261+
to remove usage of these features.
262+
263+
* ...

docs/releases/index.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,13 @@ versions of the documentation contain the release notes for any later releases.
2020

2121
.. _development_release_notes:
2222

23+
6.0 release
24+
-----------
25+
.. toctree::
26+
:maxdepth: 1
27+
28+
6.0
29+
2330
5.2 release
2431
-----------
2532
.. toctree::

0 commit comments

Comments
 (0)