summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-07-27[1.7.x] Bump version number for 1.7 RC 2.1.7c2James Bennett
2014-07-27[1.7.x] Update from key ID in security.txt to authorized release keys list.James Bennett
Backport of fe87f8d6707e13fb9416d8e4c1ebc01817d53755 from master.
2014-07-27[1.7.x] Fixed #23098 -- Checked that lazy choices are not evaluated too soonFlorian Apolloner
Thanks Matthieu Agopian for the report. Backport of 2f73b527dda6683868fac2791f7f07ccb01ea0d9 from master.
2014-07-27[1.7.x] Only warn about initial data if fixtures have been found.Florian Apolloner
Backport of 2ab0ed7b2842fbb8bf36ee7df9949d10546d953d from master.
2014-07-26[1.7.x] Fixed #22979 -- Moved bug* testsTushar Bhatia
Backport of 11181a64f from master.
2014-07-26[1.7.x] Fixed #23106 -- Updated class-based view reference title.David Hoffman
Backport of f14898a453 from master
2014-07-26Merge pull request #2977 from abrahammartin/stable/1.7.xAndrew Godwin
Fixed #23101 db_table wasn't copied in deconstruct
2014-07-26Fixed #23101 db_table wasn't copied in deconstructAbraham Martin
2014-07-26[1.7.x] Fixed #22944: Bad dependency on FK alteration in autodetectorAndrew Godwin
2014-07-26[1.7.x] Fixed #23060 -- Prevented UnicodeDecodeError in debug templatetagqingfeng
Backport of 08451f17d0 from master.
2014-07-26[1.7.x] Fixed #22553 -- Added refreshing queryset info to docs.David Hoffman
Backport of 6d5daa30cf from master
2014-07-26[1.7.x] Fixed #22305 -- Added note to docs about UTF8 database requirement.Niclas Olofsson
Backport of 08b85de9b7 from master
2014-07-26[1.7.x] Fixed code to solve #23070 problemHiroki KIYOHARA
Added a class to wrap callable in settings: * Not to call in the debug page (#21345). * Not to break the debug page if the callable forbidding to set attributes (#23070). Thanks @bmispelon for giving me some advice. Backport of d0889863de50d65659f56f0b9ea0672a8b6482a1 from master.
2014-07-26[1.7.x] Added test for the #23070 problemHiroki KIYOHARA
Backport of e569144910e336d2f76a3a31998ec672377d31cc from master.
2014-07-26[1.7.x] Fixed #22887 -- Added comment for translators on unique_for_date ↵Federico Frenguelli
error message Backport of 6eed751162 from master.
2014-07-26[1.7.x] Fixed #23097 -- Switched to new octal format in docsDavid Hoffman
Backport of e1c85167a3 from master.
2014-07-25[1.7.x] Fixed bad usage of rstrip() that caused test failure.Tim Graham
If the temporary file name contained a p or y as its last characters, it would be stripped. refs #23083. Backport of 57d2b3f2a7 from master
2014-07-25[1.7.x] Fixed #23083 -- Fixed runserver reloading when deleting a file.Tim Graham
Thanks Collin Anderson for the report and hirokiky for the fix. Backport of b8cb5ba708 from master
2014-07-25[1.7.x] Fixed #23085: Better error message for PostGIS 1.5/bad custom fieldsAndrew Godwin
2014-07-25[1.7.x] Restore support for reading __latest__ for compatabilityAndrew Godwin
2014-07-25[1.7.x] Fixed #23093: soft application detection for swapped modelsAndrew Godwin
2014-07-25[1.7.x] Mark initial_data as deprecated separately from syncdb. Refs #23077.Andrew Godwin
Conflicts: docs/internals/deprecation.txt
2014-07-25[1.7.x] Fixed #23071 -- Use last migration's name in dependency to other appJeroen Dekkers
Changed the autodetector to lookup the name of the other app's last migration in the graph and use that as dependency instead of using __latest__.
2014-07-25[1.7.x] Fixed #22827 -- clarified what each cache middleware does.Moayad Mardini
Thanks Keryn Knight for the report. Backport of f9b7a0383c from master
2014-07-25[1.7.x] Improved docs for GEOSGeometry.simplify()Tom Dyson
Backport of aa8bc7fa7d from master
2014-07-25[1.7.x] Fixed #23088 -- Used `six` `range` type in `Paginator.page_range`.Moayad Mardini
Backport of 6508db2ff9 from master
2014-07-24[1.7.x] Avoided transactional truncates on amateur databases.Aymeric Augustin
Fixed a test failure that appeared after 753a22a6, although the bug existed before that commit. Refs #22308. Backport of 6877a9d4 from master
2014-07-24[1.7.x] Avoided transactional DDL on castrated databases.Aymeric Augustin
Fixed a test failure that appeared after 753a22a6, although the bug existed before that commit. Refs #22308 and #23089. Backport of 0757e0f30d from master
2014-07-24[1.7.x] Fixed #23089 -- Fixed transaction handling in two management commands.Aymeric Augustin
Previously, when createcachetable and flush operated on non-default databases, they weren't atomic. Backport of 753a22a635 from master
2014-07-24[1.7.x] Fixed #23014 -- Infinite migration regression with ↵Tim Graham
unique/index_together. Backport of 64e75c47ef from master
2014-07-24[1.7.x] Fixed #23094 -- Removed redundant argument in select_related() example.Tim Graham
Thanks thegeekofalltrades at gmail.com for the report. Backport of 5f919b9c81 from master
2014-07-24[1.7.x] Silenced test warning for deprecated IPAddressField.Tim Graham
Backport of 99cd80dc74 from master
2014-07-24[1.7.x] Corrected headings in migration docs.Daniel Roseman
Backport of e01fa71142 from master
2014-07-24[1.7.x] Silenced a Python 2 ImportWarning in a migrations test.Tim Graham
Backport of 66211b4b75 from master
2014-07-24[1.7.x] Improved patching of sys.stdout in refs #23078.Tim Graham
Backport of 936fba5878 from master
2014-07-23[1.7.x] Added backwards incompatibility note for refs #22845; refs #23082.Tim Graham
Thanks Kyle Owens for the report. Backport of 8568e7cfa4 from master
2014-07-23[1.7.x] Fixed #23078 -- Regression in update_contenttypes() interactivity.Nick Sandford
Thanks raymond at adaptiv.nl for the report. Backport of fa3cf006b2 from master
2014-07-23[1.7.x] Fixed #23030 -- Properly handled geometry columns metadata during ↵Claude Paroz
migrations Thanks kunitoki for the report and initial patches. Backport of 8c30df15f1 from master.
2014-07-23[1.7.x] Adapted SpatialiteGeometryColumns model to spatialite >= 4Claude Paroz
See also: https://www.gaia-gis.it/fossil/libspatialite/wiki?name=switching-to-4.0 Backport of 19d8f2ebf4 from master.
2014-07-22[1.7.x] Added warning in tutorial 4 that the regex capture group name has ↵Rikki
changed. Backport of 731f313d60 from master
2014-07-22[1.7.x] Fixed typo in docs/ref/contrib/admin/index.txt.africa itcase
Backport of 06ba4b9eee from master
2014-07-22[1.7.x] Fixed #23072 -- Added missing formtools test templates in tarballRaphaël Hertzog
The lack of this file breaks the test suite. Backport of a2d0831e42 from master.
2014-07-21[1.7.x] Replaced instances of 'his/her' with 'their'.Iain Dawson
Backport of 8fbf13a6c8 from master
2014-07-21[1.7.x] Fixed #23064 -- Added lib detection support for GDAL 1.10/1.11Claude Paroz
Note that GDAL 1.11 is not yet officially supported, until someone has tested it and can confirm it has no issues with Django. Backport of 3f1412ff7b from master.
2014-07-21[1.7.x] Fixed #23014: Renaming not atomic with unique togetherAndrew Godwin
2014-07-21[1.7.x] Fixed #23009: Shorten FK identifiers in add_field and make consistentAndrew Godwin
2014-07-21[1.7.x] Fixed #22975: Don't call rename SQL if not neededAndrew Godwin
2014-07-21[1.7.x] Fixed #23039: Don't try to serialize unmanaged models in testsAndrew Godwin
2014-07-21[1.7.x] Fixed #23043: alter_field drops defaults tooAndrew Godwin
2014-07-16[1.7.x] Edited setup.py in reuseable apps tutorial to use a context manager ↵Dean Silfen
for open(). Backport of b8d255071e from master