Tim Graham
3252e0654e
[1.6.x] Improved deprecation plan links in release notes.
...
Backport of 7ff326928a
from master
2014-05-29 18:59:22 -04:00
Tim Graham
ee075c4484
[1.6.x] Added stub release notes for 1.6.6.
...
Backport of 79e9da3d1e
from master
2014-05-16 18:19:49 -04:00
Tim Graham
d41a001011
[1.6.x] Minor edits to latest release notes.
...
Backport of 860d31ac7a
from master
2014-05-15 07:17:02 -04:00
Jacob Kaplan-Moss
b053eb929b
Added release notes for 1.4.13, 1.5.8, 1.6.5.
2014-05-14 18:36:44 +02:00
Tim Graham
e05a6222cd
[1.6.x] Removed an unnecessary anchor in the docs.
...
Backport of a06808d370
from master
2014-05-13 20:55:05 -04:00
Tim Graham
b718e292ac
[1.6.x] Added 1.6.5 release note for refs #22508 .
...
Backport of 13087020a9
from master
2014-05-12 12:44:48 -04:00
Ramiro Morales
8ebf38b7a4
[1.6.x] Fix typo in release notes.
2014-05-10 23:22:51 -03:00
Anssi Kääriäinen
0e37049636
[1.6.x] Fixed #22429 -- Incorrect SQL when using ~Q and F
...
Backpatch of 5e1f4656b9
from master.
Conflicts:
django/db/models/sql/query.py
tests/queries/models.py
tests/queries/tests.py
2014-05-05 13:27:54 +03:00
Claude Paroz
034866204b
[1.6.x] Fixed #22565 -- Prevented pgettext_lazy crash with bytestring input
...
Thanks ygbo for the report.
Backport of 142c27218
from master.
2014-05-02 19:38:46 +02:00
Claude Paroz
120a981207
[1.6.x] Fixed #22551 -- Made oracle backend method Python 3 compatible
...
Thanks fatal10110 at gmail.com for the report. The fix is 1.6-only
because that code has been refactored in 1.7 (6983201cfb
).
2014-05-01 18:15:00 +02:00
Tim Graham
2997a20072
[1.6.x] Added stub release notes for 1.6.5.
...
Backport of 650065f0ef
from master
2014-04-28 20:38:34 -04:00
Tim Graham
6574e6c183
[1.6.x] Added dates to release notes of today's release.
...
Backport of 68d264059a
from master
2014-04-28 19:07:07 -04:00
Tim Graham
d16948bd19
[1.6.x] Fixed #22515 -- Fixed the object_id of the LogEntry that's created after a user password change in the admin.
...
Thanks ross at servercode.co.uk for the report.
Backport of 9e7f86b890
from master
2014-04-25 08:36:28 -04:00
Tim Graham
6915220ff9
[1.6.x] Fixed #22486 -- Restored the ability to reverse views created using functools.partial.
...
Regression in 8b93b31487
.
Thanks rcoup for the report.
Backport of 3c06b2f2a3
from master
2014-04-23 08:56:13 -04:00
Marti Raudsepp
c5306d4af1
[1.6.x] Various documentation typo/spelling fixes
...
Errors detected by Topy (https://github.com/intgr/topy ), all changes
verified by hand.
Backport of 11d453bcad
from master
2014-04-22 20:13:43 -04:00
Tim Graham
362ce5e936
[1.6.x] Added 1.6.4 release note stub.
...
Backport of 9fb95dfc9f
from master
2014-04-22 11:49:29 -04:00
James Bennett
7bb9bebe47
[1.6.x] Add missing disclosure information to security archive.
2014-04-21 18:29:05 -05:00
James Bennett
3f1abbfc40
[1.6.x] Update for 1.6.3 security release.
2014-04-21 18:10:57 -05:00
Erik Romijn
d63bfb14dd
[1.6.x] Added information on resolved security issues to release notes.
...
Backport of c07f3e60c2
from master
2014-04-21 18:30:27 -04:00
Tim Graham
9e28bfb324
[1.6.x] Added some missing items to the 1.6.3 release notes.
...
Backport of c2b269df6e
from master
2014-04-18 10:32:53 -04:00
valtron
1252b77824
[1.6.x] Fixed #21760 -- prefetch_related used an inefficient query for reverse FK.
...
Regression introduced by commit 9777442
. Refs #21410 .
Conflicts:
tests/prefetch_related/tests.py
Backport of d3b71b976d
from master
2014-04-13 01:06:03 +07:00
John Paulett
129cb7e222
[1.6.x] Fixed #22364 -- Sanitized getpass input in changepassword.
...
Python 2 getpass on Windows does not accept unicode, even
when containing on ASCII characters. Related #190807 .
Backport of b5a9166f7e
from master
2014-04-10 13:16:08 -04:00
Shai Berger
d5cef2a19c
[1.6.x] Documentation fixes for the select_for_update change.
...
Refs #22343 ; thanks Tim Graham for the fixes.
2014-04-10 03:44:45 +03:00
Shai Berger
690a5984a3
[1.6.x] Fixed #22343 -- Disallowed select_for_update in autocommit mode
...
The ticket was originally about two failing tests, which are
fixed by putting their queries in transactions.
Thanks Tim Graham for the report, Aymeric Augustin for the fix,
and Simon Charette, Tim Graham & Loïc Bistuer for review.
Backport of b990df1d63 from master
2014-04-10 02:15:14 +03:00
Ramiro Morales
bd5965ce68
[1.6.x] Document removal of GeoDjangoTestSuiteRunner in 1.6 release notes.
...
e6ced2bb08
from master.
2014-04-02 17:18:56 -03:00
Patrick Michaud
73474df954
Fixed #22256 -- Replaced bad fallback for missing PATH
...
Thanks Baptiste Mispelon for the review.
Backport of acee46fc9
from master.
2014-04-01 20:45:12 +02:00
Loic Bistuer
a5297c1ef4
[1.6.x] Fixed #21795 -- Made add_preserved_filters account for url prefixes.
...
Thanks to trac username honyczek for the report. Refs #6903 .
Backport of 4339e9a92d
from master
2014-03-31 07:29:08 -04:00
Tim Graham
916f0de74b
[1.6.x] Added 1.6.3 release note for refs #22250 .
...
Backport of d57ba04d89
from master
2014-03-31 07:12:16 -04:00
Tim Graham
30ba506e97
[1.6.x] Fixed #21858 -- Clarified 1.6 release note regarding M2M help text changes.
...
Thanks lee at semel.net for the report.
Backport of f30e6590f4
from master
2014-03-29 10:23:28 -04:00
Tim Graham
f659c8e13a
[1.6.x] Added Python 3.4 support notes.
...
Backport of 306deab2c7
from master
2014-03-27 08:14:39 -04:00
Tim Graham
7af32bca38
[1.6.x] Fixed #21665 -- Documented that changes in assertRedirects may be required given new URL escaping behavior.
...
Thank pdc for the report.
Backport of 62e81bc00b from master
2014-03-24 09:09:23 -04:00
Tim Graham
779ef57c37
[1.6.x] Updated six to 1.6.1.
...
Backport of 2ec82c7387
from master
2014-03-24 07:34:22 -04:00
Claude Paroz
5f7b3e56ce
[1.6.x] Added release note about strip_tags improvement
...
Backport of 1c8dbb0cc
from master.
2014-03-22 12:37:06 +01:00
Claude Paroz
1a2939bc26
[1.6.x] Fixed #22245 -- Avoided widget overwrite in forms.IntegerField subclasses
...
Thanks Jeroen Pulles for the report and Simon Charette for the review.
Backport of 5a976b4bec
from master.
2014-03-13 16:59:23 +01:00
Alexey Voronov
5cda1d2702
[1.6.x] Fixed #21643 -- repeated execution of qs with F() + timedelta
...
Thanks Tim Graham for review and Tai Lee for the additional test to prove
this was a regression in 1.6.
Backport of 7f2485b4d1
and 8137215973
from master
2014-02-28 20:49:13 -05:00
Tim Graham
a6f05af016
[1.6.x] Added 1.6.3 release note for refs #21566 .
...
Backport of 865392c478
from master
2014-02-14 21:06:08 -05:00
Claude Paroz
76700c5437
[1.6.x] Fixed #21996 -- Used proper encoding for GeoIP content
...
Thanks Florent Messa for the report.
Backport of fb1e3435a4
from master.
2014-02-10 16:12:22 +01:00
Claude Paroz
e9ffe7e3c8
[1.6.x] Added 1.6.3 release notes stub
2014-02-10 16:10:18 +01:00
Jacob Kaplan-Moss
c58a98cc34
Updated 1.6.2 release notes for release (and linkified tickets).
2014-02-06 15:34:41 -06:00
Tim Graham
5f03b06919
[1.6.x] Added missing items to 1.6.2 release notes.
...
Backport of b17c75564f
from master
2014-02-05 19:30:30 -05:00
Baptiste Mispelon
a77ec25573
[1.6.x] Added previous commit to 1.6.2 release notes.
...
Backport of 2dd88f0687
from master.
2014-02-05 21:46:24 +01:00
Tim Graham
6f8e655ca0
[1.6.x] Added release note stubs for 1.5.6 and 1.4.11.
...
Backport of dfa28981ce
from master
2014-01-26 17:49:01 -05:00
Tim Graham
38635977b7
[1.6.x] Added missing items to 1.6.2 release notes.
...
Backport of 2cbe1e28fb
from master
2014-01-26 15:40:44 -05:00
Tim Graham
4cf556db48
[1.6.x] Added a link to the 1.6 release notes which also fixed a rendering issue.
...
Backport of 2171341162 from master
2014-01-22 11:04:31 -05:00
Loic Bistuer
3fd16e6261
[1.6.x] Fixed #21581 -- Fixed a number of issues with collectstatic.
...
When STATIC_ROOT wasn't set, collectstatic --clear would delete
every files within the current directory and its descendants.
This patch makes the following changes:
Prevent collectstatic from running if STATIC_ROOT isn't set.
Fixed an issue that prevented collectstatic from displaying the
destination directory.
Changed the warning header to notify when the command is run
in dry-run mode.
Backport of 4befb3015c
from master
2013-12-31 15:04:22 -05:00
Jon Lønne
0e8138349e
[1.6.x] Fixed #21627 -- Added unicode_literals to changepassword command.
...
Fixed a crash when executing changepassword command when the user object
representation contained non-ASCII characters.
Backport of 398642fd9b
from master
2013-12-26 07:46:12 -05:00
Claude Paroz
b536ad09ca
[1.6.x] Fixed #21662 -- Kept parent reference in prepared geometry
...
Thanks Robert Scott for the report.
Backport of 542198c1d0
from master.
2013-12-26 11:14:25 +01:00
Tim Graham
704f581081
[1.6.x] Added 1.6.2 release notes stub.
...
Backport of ccd80dc3b6
from master
2013-12-13 18:55:35 -05:00
Tim Graham
194c5ab056
[1.6.x] Added 1.6.1 release date.
2013-12-12 15:06:47 -05:00
Tim Graham
7a2910d790
[1.6.x] Additions and edits to the 1.6.1 release notes.
2013-12-11 12:34:50 -05:00