Tim Graham
1d85d057c3
[1.7.x] Fixed spelling mistakes in docs.
2015-02-08 14:23:01 -05:00
Markus Holtermann
208d5c42e7
[1.7.x] Revert "[1.7.x] Fixed #24075 -- Prevented running post_migrate signals when unapplying initial migrations of contenttypes and auth"
...
This reverts commit 478546fcef .
Backport of 2832a9b028 from master
2015-02-07 20:50:15 +01:00
Josh Schneier
d3404c1ca8
[1.7.x] Fixed typos of "select_related" in docs.
...
Backport of 7d363ed432 from master
2015-02-04 07:33:48 -05:00
Tim Graham
2401ef8682
[1.7.x] Demoted "Installing a distribution-specific package" in install notes.
...
Backport of 281fc03474 from master
2015-02-03 16:38:09 -05:00
minusf
dfa0716664
[1.7.x] Fixed typos in docs/ref/forms/validation.txt.
...
Backport of 66f5aa9fa5 from master
2015-02-03 12:27:20 -05:00
Tim Graham
346451164e
[1.7.x] Fixed broken links in class based views flattend index; refs #24250 .
...
Backport of 9a391fbd61 from master
2015-02-03 09:12:12 -05:00
Tim Graham
9c456ea8ff
[1.7.x] Fixed #24250 -- Corrected mistakes in FormMixin docs.
...
Backport of 5d193d042a from master
2015-02-03 08:42:53 -05:00
Tim Graham
e775200e05
[1.7.x] Simplified a versionchanged note for LiveServerTestCase.
...
Backport of 6d0538bd8c from stable/1.7.x
2015-02-01 21:07:38 -05:00
Andrei Kulakov
341a20ff6c
[1.7.x] Updated recommendation for testing keyword arg in custom fields.
...
Backport of dbabf43920 from master
2015-01-30 08:30:07 -05:00
Tim Graham
39a8640e30
[1.7.x] Added stub 1.7.5 release notes.
...
Backport of ac6033d883 from master
2015-01-28 06:39:22 -05:00
Tim Graham
c93fb26527
[1.7.x] Added 1.4.19 release notes.
...
Backport of 6f8418089c from master
2015-01-27 11:48:33 -05:00
Andriy Sokolovskiy
3d4a826174
[1.7.x] Fixed #24104 -- Fixed check to look on field.get_internal_type() instead of class instance
2015-01-27 14:40:39 +01:00
Collin Anderson
6dc6ec2188
[1.7.x] Fixed #24190 -- Clarified len(queryset)
...
Backport of ee23e03637 from master
2015-01-24 10:18:19 -05:00
Claude Paroz
b1bf8d64fb
[1.7.x] Fixed #24193 -- Prevented unclosed file warnings in static.serve()
...
This regression was caused by 818e59a3f0 . The patch is a partial
backport of the new FileResponse class available in later Django
versions.
Thanks Raphaël Hertzog for the report, and Tim Graham and Collin
Anderson for the reviews.
2015-01-23 08:58:34 +01:00
Simon Charette
7b677fe063
[1.7.x] Fixed #24186 -- Fixed a typo in the admin docs.
...
Thanks to Keryn Knight for the report.
Backport of dccf41cff0 from master
2015-01-20 11:57:00 -05:00
Tim Graham
3e803f9cbd
[1.7.x] Designated Django 1.8 as the next LTS.
...
Backport of c38db4d7e0 from master
2015-01-19 12:08:20 -05:00
Markus Holtermann
db2a97870d
[1.7.x] Fixed #24163 -- Removed unique constraint after index on MySQL
...
Thanks Łukasz Harasimowicz for the report.
Backport of 5792e6a88c from master
2015-01-19 17:25:05 +01:00
Tim Graham
bb2b4acc7a
[1.7.x] Added deprecation docs for legacy lookup support; refs #16187 .
...
Backport of 8e435a5640 from master
2015-01-19 10:45:55 -05:00
Tim Graham
07bd23d329
[1.7.x] Added missing items to deprecation timeline/1.7 release notes.
...
Backport of ecf109f215 from master.
2015-01-18 21:26:19 -05:00
Tim Graham
af523573fc
[1.7.x] Clarified deprecation of forms.forms.get_declared_fields(); refs #19617 .
...
Backport of 89e9f81601 from master
2015-01-18 16:07:48 -05:00
Tim Graham
e8191caca5
[1.7.x] Clarified a contrib.sites deprecation and added to 1.7 release notes.
...
Backport of ba27f89587 from master
2015-01-18 13:45:40 -05:00
Tim Graham
4df91d05e8
[1.7.x] Clarified contrib.contenttypes.generic deprecation; refs #19774 .
...
Backport of 737cd4ff3d from stable/1.7.x
2015-01-18 13:43:47 -05:00
Tim Graham
eea66a6e97
[1.7.x] Added removal of check management command to deprecation timeline.
...
Backport of 20e4e8fc79 from master
2015-01-17 19:16:41 -05:00
Tim Graham
ecbe20fe20
[1.7.x] Added versionadded to ModelAdmin.get_formsets_with_inlines(); refs #20702 .
...
Backport of 7cfcdd98dc from stable/1.8.x
2015-01-17 18:18:06 -05:00
Tim Graham
85c0eb1e3b
[1.7.x] Replaced deprecated requires_model_validation in docs.
...
Backport of 18192b9fa4 from master
2015-01-17 12:52:34 -05:00
Tim Graham
467fd7ea1a
[1.7.x] Updated tutorial 1 with actual migrate output.
2015-01-17 10:54:34 -05:00
Tim Graham
5f600db37a
[1.7.x] Documented django.utils.timezone.FixedOffset; thanks Aymeric.
...
Backport of 25264d4e2a from master
2015-01-17 09:31:59 -05:00
Rick Hutcheson
be0bc9a9e7
[1.7.x] Fixed a typo in the test responses docs.
...
Backport of 996292d649 from master
2015-01-16 18:24:48 -05:00
Keryn Knight
bd08cfca6f
[1.7.x] Fixed #24143 -- Encouraged use of Http404 messages for debugging.
...
Backport of 726a9550db from master
2015-01-16 09:42:03 -05:00
Tim Graham
065b2a82f6
[1.7.x] Fixed #24135 -- Made RenameModel rename many-to-many tables.
...
Thanks Simon and Markus for reviews.
Backport of 28db4af80a from master
2015-01-15 20:43:49 -05:00
Luke Plant
327703c067
[1.7.x] Direct readers to format_html() in mark_safe() docs.
...
Backport of 4832c004e8 from master
2015-01-15 08:29:00 +00:00
Markus Holtermann
478546fcef
[1.7.x] Fixed #24075 -- Prevented running post_migrate signals when unapplying initial migrations of contenttypes and auth
...
Thanks Florian Apolloner for the report and Claude Paroz and Tim Graham for the review and help on the patch.
Backport of 737d24923a from master.
2015-01-14 20:37:56 +01:00
Tim Graham
2e2617991a
[1.7.x] Added stub release notes for 1.7.4.
...
Backport of ec7ef5afbb from master
2015-01-14 09:48:06 -05:00
Tim Graham
9b403a108c
[1.7.x] Added dates to release notes.
2015-01-13 13:09:34 -05:00
Tim Graham
bcfb47780c
[1.7.x] Fixed DoS possibility in ModelMultipleChoiceField.
...
This is a security fix. Disclosure following shortly.
Thanks Keryn Knight for the report and initial patch.
2015-01-13 13:02:56 -05:00
Tim Graham
818e59a3f0
[1.7.x] Prevented views.static.serve() from using large memory on large files.
...
This is a security fix. Disclosure following shortly.
2015-01-13 13:02:56 -05:00
Tim Graham
de67dedc77
[1.7.x] Fixed is_safe_url() to handle leading whitespace.
...
This is a security fix. Disclosure following shortly.
2015-01-13 13:02:56 -05:00
Carl Meyer
41b4bc73ee
[1.7.x] Stripped headers containing underscores to prevent spoofing in WSGI environ.
...
This is a security fix. Disclosure following shortly.
Thanks to Jedediah Smith for the report.
2015-01-13 13:02:56 -05:00
Tim Graham
33f1ccf5b1
[1.7.x] Added stub release notes for security releases.
2015-01-13 13:02:55 -05:00
Collin Anderson
6a08020fcf
[1.7.x] Fixed bad model example in admin docs.
...
Backport of e7771ec380 from master
2015-01-13 11:53:59 -05:00
Markus Holtermann
ef5889409b
[1.7.x] Fixed #24110 -- Rewrote migration unapply to preserve intermediate states
...
Backport of fdc2cc9487 and be158e3625 from master
2015-01-11 00:35:49 +01:00
Serafeim Papastefanos
1a352fe175
[1.7.x] Fixed #23967 -- Added formats for Greek
...
Backport of 74f02557e0 from master
2015-01-10 11:11:57 -05:00
Claude Paroz
7e65876b7c
[1.7.x] Fixed #24097 -- Prevented AttributeError in redirect_to_login
...
Thanks Peter Schmidt for the report and the initial patch.
Thanks to Oktay Sancak for writing the original failing test and
Alvin Savoy for supporting contributing back to the community.
Backport of d7bc37d61 from master.
2015-01-10 10:13:50 +01:00
Claude Paroz
5e18f6f724
[1.7.x] Fixed #24083 -- Corrected is_bound nature in forms topic docs
...
Thanks ajenhl Trac user for the report.
Backport of e0080cf57 from master.
2015-01-06 09:00:27 +01:00
Claude Paroz
d8fb557a51
[1.7.x] Fixed #23815 -- Prevented UnicodeDecodeError in CSRF middleware
...
Thanks codeitloadit for the report, living180 for investigations
and Tim Graham for the review.
Backport of 27dd7e7271 from master.
2015-01-06 08:45:10 +01:00
Tim Graham
0e21fd4e40
[1.7.x] Added 1.4.18 release notes.
...
Backport of ce17b045bf from master
2015-01-05 14:25:36 -05:00
Tim Graham
4aed731154
[1.7.x] Increased the default PBKDF2 iterations.
2015-01-03 13:36:13 -05:00
Tim Graham
0a06ae9ef3
[1.7.x] Added 1.7.3 release notes stub.
...
Backport of 439f15beab from master
2015-01-03 13:27:46 -05:00
Alfred Perlstein
0148768412
[1.7.x] Fixed #23749 -- Documented how to use the database alias in RunPython.
...
Thanks Markus Holtermann for review and feedback.
Backport of db3f7c15cb from master
2015-01-03 12:07:28 -05:00
Bibhas
5f8761c639
[1.7.x] Fixed #24070 -- Added tutorial topics to doc index.
...
Backport of b738178825 from master
2015-01-03 08:48:59 -05:00