summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-06-13[1.7.x] Fixed #22477 -- Removed contrib middleware from the global settings ↵mlavin
defaults. Also added a compatibility check for changed middleware defaults.
2014-06-12[1.7.x] Fixed #22349 -- Added a note clarifying `RawQuerySet` has no `__len__`.Moayad Mardini
Thanks cdestigter for the report. Backport of 2d425116e2 from master
2014-06-12[1.7.x] Made the vendored NamedTemporaryFile work as a context manager. Refs ↵Loic Bistuer
#22680. This fixes a regression on Windows introduced by b7de5f5. Thanks Tim Graham for the report and review. Backport of 6e8d614acd from master
2014-06-12[1.7.x] Fix test breakage from previous state fixAndrew Godwin
2014-06-12[1.7.x] Fixed a staticfiles test on Windows.Tim Graham
Backport of 9980f67154 from master
2014-06-12[1.7.x] Fixed #22811 -- Allowed setting both the old and new TEST database ↵Tim Graham
settings. An ImproperlyConfigured exception will be raised they mismatch. Backport of 1c58cabad7 and a2cd0e12c9 from master
2014-06-12[1.7.x] Fixed #22823 (and partly #22563) - FKs from unmigrated apps breaking ↵Andrew Godwin
state. Thanks to bendavis78 for the test and diagnostic work.
2014-06-12[1.7.x] Fixed test failures due to refs #20420.Tim Graham
cfcca7ccce3dc527d16757ff6dc978e50c4a2e61 renamed connection.queries to queries_log and this wasn't backported to stable/1.7.x.
2014-06-12[1.7.x] Fixed #22818 -- Clarified you need to cd into the Django clone.Tim Graham
Thanks Josh Parris. Backport of bcc3d2b978 from master
2014-06-12[1.7.x] Fixed #22813 -- Updated Pillow URL in documentationClaude Paroz
Backport of dfa3505ff1 from master.
2014-06-11[1.7.x] Fixed typo in docs/ref/forms/validation.txt.Maxime Lorant
Backport of c307383ec9 from master
2014-06-11[1.7.x] Added link to data migrations in initial data deprecation noteGreg Chapple
Backport of 4123f55c33 from master
2014-06-11[1.7.x] Fixed #22487: Separated schema migration from data migration in testShai Berger
The data migration failed on Oracle, killing the entire test suite. Thanks timo for reporting the Oracle breakage, and andrewgodwin for suggesting the solution. Backport of 64d94cf from master
2014-06-11[1.7.x] Fixed #22653 -- Added some database feature flags to tests.Tim Graham
Thanks Rahul Priyadarshi. Backport of 99f5ea9cc8 from master
2014-06-11[1.7.x] Created a new tests folder (`model_options`).Moayad Mardini
And moved `tablespaces` option tests to it. The new folder can be used to test models/options, like the new option added in refs #22778. Backport of 5a3ae7e260 from master
2014-06-11[1.7.x] Fixed #22680 -- I/O operation on closed file.Florian Apolloner
This patch is two-fold; first it ensure that Django does close everything in request.FILES at the end of the request and secondly the storage system should no longer close any files during save, it's up to the caller to handle that -- or let Django close the files at the end of the request. Backport of e2efc8965edf684aaf48621680ef54b84e116576 from master.
2014-06-10[1.7.x] Fixed #22801 -- Added 'www.' to diveintopython.net linksMaxime Turcotte
Backport of f97c53c098 from master
2014-06-10[1.7.x] Fixed #22770 -- Removed create_superuser from post_migrate signals.Tim Graham
Moved logic to syncdb command for backwards compatibility. Backport of 93d05536fd from master
2014-06-10[1.7.x] Fixed #22792 -- Updated checks for list_display_links in model adminGreg Chapple
Backport of d8f19bb3b6 from master
2014-06-10[1.7.x] Corrected some indentation in docs/topics/auth/default.txt.Tim Graham
Backport of 34f4fd7024 from master
2014-06-09[1.7.x] Removed unused import.Tim Graham
Backport of fea8ccdcc4 from master
2014-06-09[1.7.x] Fixed #20420 -- Normalized query counts on Oracle.Aymeric Augustin
This is achieved by inserting a fake entry in connection.queries when not releasing a savepoint (since Oracle doesn't support that operation.) Also removed the can_release_savepoints feature that was recently added, but is superseded by this solution. Backport of 40bfd856 from master.
2014-06-09[1.7.x] Simplified handling of use_debug_cursor.Aymeric Augustin
Turned it from a tri-valued boolean into a regular boolean. Backport of 127218b9 from master.
2014-06-09[1.7.x] Added rollback emulation to spatialite backend; refs #22487.Tim Graham
Backport of 6b97ae3521 from master
2014-06-09[1.7.x] Remove overzealous migration flushes from migration test suiteAndrew Godwin
2014-06-09[1.7.x] Doc edits for refs #22487.Tim Graham
Backport of c17cd151d8 from master
2014-06-09[1.7.x] Fixed flake8 errors.Tim Graham
Backport of 4b25ebf112 from master
2014-06-09[1.7.x] Added missing deprecation note for fastcgi in 1.7 release notes; ↵Tim Graham
refs #20766. Backport of 67ce2e74e1 from master
2014-06-09[1.7.x] Fixed formtools tests with Python 2Claude Paroz
Fixes #19905 again. Backport of 1aaf4053f5 from master.
2014-06-08[1.7.x] Fix broken alias testing testAndrew Godwin
Conflicts: tests/test_runner/tests.py
2014-06-08[1.7.x] Fixed #22487: Optional rollback emulation for migrated appsAndrew Godwin
Conflicts: django/db/backends/creation.py django/test/runner.py docs/ref/settings.txt docs/topics/testing/advanced.txt
2014-06-08[1.7.x] Fix router_honored test to not close connectionAndrew Godwin
2014-06-08[1.7.x] Fixed #22777: Add dependency on through for autodetected M2M addsAndrew Godwin
2014-06-08[1.7.x] Gave unique names to SpatialRefSysModels.Aymeric Augustin
Prevented clashes in the app registry. Fixed #22790. Thanks timo for the report. Backport of 6e5651e from master
2014-06-07[1.7.x] Fixed #22750, #22248: Model renaming now also alters field FKsAndrew Godwin
2014-06-07[1.7.x] Removed usage of deprecated django.utils.importlib.Tim Graham
Backport of 1e84d261d6 from master
2014-06-07[1.7.x] Fixed #22749: Making SQL management commands migration aware.Víðir Valberg Guðmundsson
2014-06-07[1.7.x] Fixed #22436: More careful checking on method ref'ce serializationAndrew Godwin
2014-06-07[1.7.x] Fixed #22772 -- Defer wizard temporary files deletion.Simon Charette
Backport of e2112edd9a from master
2014-06-07[1.7.x] Fixed #20815 -- Don't enforce unbuffered I/O on Python 3.Aymeric Augustin
No test because this code is already deprecated (part of FastCGI support). Backport of 5836a577 from master
2014-06-07[1.7.x] Removed duplicate "Deprecated in Django A.B" text in docs.Tim Graham
sphinx 1.2+ adds this text itself. Backport of 7f4347b176 from master
2014-06-06[1.7.x] Added formatting and line wrapping to checks reference doc.Tim Graham
Backport of 5472bf4df0 from master
2014-06-06[1.7.x] Fixed flake8 errors.Tim Graham
Backport of b5a54168f9 from master
2014-06-06[1.7.x] Fixed #22773 -- Forced templatize() to return unicodeClaude Paroz
Backport of daaeb84158 from master.
2014-06-05[1.7.x] Prevent operation pollution by later operations of fieldsAndrew Godwin
2014-06-05[1.7.x] Implement Migration.run_beforeChris Beaven
This attribute (used for reverse dependencies) was previously declared and mentioned in the code, but never actually used.
2014-06-05[1.7.x] Rewrote migration autodetector to involve actual computer science.Andrew Godwin
Fixes #22605, #22735; also lays the ground for some other fixes. Conflicts: django/db/migrations/autodetector.py
2014-06-06Replaced an explicit vendor check by a feature flag.Aymeric Augustin
2014-06-06Checked can_introspect_null feature in a test.Aymeric Augustin
2014-06-05[1.7.x] Fix missing highlighting in some code examplesÉric Araujo
Backport of 84cafc2b35 from master