Loic Bistuer
d9eef1f4f7
[1.7.x] Made the vendored NamedTemporaryFile work as a context manager. Refs #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 14:15:31 -04:00
Andrew Godwin
49d4ace2d2
[1.7.x] Fix test breakage from previous state fix
2014-06-12 11:12:33 -07:00
Tim Graham
83e96ee99b
[1.7.x] Fixed a staticfiles test on Windows.
...
Backport of 9980f67154
from master
2014-06-12 13:29:04 -04:00
Tim Graham
e51662e7bc
[1.7.x] Fixed #22811 -- Allowed setting both the old and new TEST database settings.
...
An ImproperlyConfigured exception will be raised they mismatch.
Backport of 1c58cabad7
and a2cd0e12c9
from master
2014-06-12 13:28:16 -04:00
Andrew Godwin
961c9d6c6b
[1.7.x] Fixed #22823 (and partly #22563 ) - FKs from unmigrated apps breaking state.
...
Thanks to bendavis78 for the test and diagnostic work.
2014-06-12 10:22:57 -07:00
Tim Graham
84714dfed7
[1.7.x] Fixed test failures due to refs #20420 .
...
cfcca7ccce
renamed connection.queries
to queries_log and this wasn't backported to stable/1.7.x.
2014-06-12 11:55:31 -04:00
Tim Graham
910b37e356
[1.7.x] Fixed #22818 -- Clarified you need to cd into the Django clone.
...
Thanks Josh Parris.
Backport of bcc3d2b978
from master
2014-06-12 10:53:29 -04:00
Claude Paroz
1c0e6e9d9f
[1.7.x] Fixed #22813 -- Updated Pillow URL in documentation
...
Backport of dfa3505ff1
from master.
2014-06-12 08:56:29 +02:00
Maxime Lorant
c6725d69a2
[1.7.x] Fixed typo in docs/ref/forms/validation.txt.
...
Backport of c307383ec9
from master
2014-06-11 17:18:03 -04:00
Greg Chapple
8c20f4af12
[1.7.x] Added link to data migrations in initial data deprecation note
...
Backport of 4123f55c33
from master
2014-06-11 15:43:53 -04:00
Shai Berger
fa42cf77b2
[1.7.x] Fixed #22487 : Separated schema migration from data migration in test
...
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 20:28:21 +03:00
Tim Graham
45e47f7b95
[1.7.x] Fixed #22653 -- Added some database feature flags to tests.
...
Thanks Rahul Priyadarshi.
Backport of 99f5ea9cc8
from master
2014-06-11 11:48:57 -04:00
Moayad Mardini
7bd2ad1dd9
[1.7.x] Created a new tests folder (`model_options`).
...
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 11:40:08 -04:00
Florian Apolloner
1ff11304dc
[1.7.x] Fixed #22680 -- I/O operation on closed file.
...
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 e2efc8965e
from master.
2014-06-11 09:03:11 +02:00
Maxime Turcotte
de0e285be8
[1.7.x] Fixed #22801 -- Added 'www.' to diveintopython.net links
...
Backport of f97c53c098
from master
2014-06-10 15:39:05 -04:00
Tim Graham
0767055dfc
[1.7.x] Fixed #22770 -- Removed create_superuser from post_migrate signals.
...
Moved logic to syncdb command for backwards compatibility.
Backport of 93d05536fd
from master
2014-06-10 15:00:12 -04:00
Greg Chapple
d232a5f93f
[1.7.x] Fixed #22792 -- Updated checks for list_display_links in model admin
...
Backport of d8f19bb3b6
from master
2014-06-10 09:43:24 -04:00
Tim Graham
e108da65fe
[1.7.x] Corrected some indentation in docs/topics/auth/default.txt.
...
Backport of 34f4fd7024
from master
2014-06-10 09:19:38 -04:00
Tim Graham
eeea583061
[1.7.x] Removed unused import.
...
Backport of fea8ccdcc4
from master
2014-06-09 18:42:32 -04:00
Aymeric Augustin
5cde9a7018
[1.7.x] Fixed #20420 -- Normalized query counts on Oracle.
...
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 22:08:20 +02:00
Aymeric Augustin
e5879811e6
[1.7.x] Simplified handling of use_debug_cursor.
...
Turned it from a tri-valued boolean into a regular boolean.
Backport of 127218b9
from master.
2014-06-09 22:07:28 +02:00
Tim Graham
11f0bdc007
[1.7.x] Added rollback emulation to spatialite backend; refs #22487 .
...
Backport of 6b97ae3521
from master
2014-06-09 14:43:13 -04:00
Andrew Godwin
7406feae33
[1.7.x] Remove overzealous migration flushes from migration test suite
2014-06-09 09:52:35 -07:00
Tim Graham
417da8a782
[1.7.x] Doc edits for refs #22487 .
...
Backport of c17cd151d8
from master
2014-06-09 12:16:04 -04:00
Tim Graham
0a515b02fc
[1.7.x] Fixed flake8 errors.
...
Backport of 4b25ebf112
from master
2014-06-09 12:02:20 -04:00
Tim Graham
a11ed8dcfd
[1.7.x] Added missing deprecation note for fastcgi in 1.7 release notes; refs #20766 .
...
Backport of 67ce2e74e1
from master
2014-06-09 10:32:09 -04:00
Claude Paroz
d4623d13b7
[1.7.x] Fixed formtools tests with Python 2
...
Fixes #19905 again.
Backport of 1aaf4053f5
from master.
2014-06-09 10:32:27 +02:00
Andrew Godwin
b78710ec02
[1.7.x] Fix broken alias testing test
...
Conflicts:
tests/test_runner/tests.py
2014-06-08 20:08:34 -07:00
Andrew Godwin
08218252d8
[1.7.x] Fixed #22487 : Optional rollback emulation for migrated apps
...
Conflicts:
django/db/backends/creation.py
django/test/runner.py
docs/ref/settings.txt
docs/topics/testing/advanced.txt
2014-06-08 19:33:52 -07:00
Andrew Godwin
bf019c9770
[1.7.x] Fix router_honored test to not close connection
2014-06-08 18:58:15 -07:00
Andrew Godwin
55fa4c2d34
[1.7.x] Fixed #22777 : Add dependency on through for autodetected M2M adds
2014-06-08 17:13:11 -07:00
Aymeric Augustin
25f4e71ed3
[1.7.x] Gave unique names to SpatialRefSysModels.
...
Prevented clashes in the app registry.
Fixed #22790 . Thanks timo for the report.
Backport of 6e5651e
from master
2014-06-08 21:17:59 +02:00
Andrew Godwin
b568bdf8da
[1.7.x] Fixed #22750 , #22248 : Model renaming now also alters field FKs
2014-06-07 18:18:18 -07:00
Tim Graham
83fe38ae30
[1.7.x] Removed usage of deprecated django.utils.importlib.
...
Backport of 1e84d261d6
from master
2014-06-07 21:11:17 -04:00
Víðir Valberg Guðmundsson
3fc4f03895
[1.7.x] Fixed #22749 : Making SQL management commands migration aware.
2014-06-07 17:18:43 -07:00
Andrew Godwin
98949e3b10
[1.7.x] Fixed #22436 : More careful checking on method ref'ce serialization
2014-06-07 17:06:06 -07:00
Simon Charette
2b13576c8f
[1.7.x] Fixed #22772 -- Defer wizard temporary files deletion.
...
Backport of e2112edd9a
from master
2014-06-07 19:57:58 -04:00
Aymeric Augustin
211ff288a0
[1.7.x] Fixed #20815 -- Don't enforce unbuffered I/O on Python 3.
...
No test because this code is already deprecated (part of FastCGI support).
Backport of 5836a577
from master
2014-06-07 22:35:29 +02:00
Tim Graham
a517e9ac85
[1.7.x] Removed duplicate "Deprecated in Django A.B" text in docs.
...
sphinx 1.2+ adds this text itself.
Backport of 7f4347b176
from master
2014-06-07 07:25:02 -04:00
Tim Graham
c8c1883962
[1.7.x] Added formatting and line wrapping to checks reference doc.
...
Backport of 5472bf4df0
from master
2014-06-06 15:25:58 -04:00
Tim Graham
c81847181c
[1.7.x] Fixed flake8 errors.
...
Backport of b5a54168f9
from master
2014-06-06 08:29:56 -04:00
Claude Paroz
b236a55818
[1.7.x] Fixed #22773 -- Forced templatize() to return unicode
...
Backport of daaeb84158
from master.
2014-06-06 08:43:24 +02:00
Andrew Godwin
7d388956ce
[1.7.x] Prevent operation pollution by later operations of fields
2014-06-05 23:34:44 -07:00
Chris Beaven
9f1c4e4d3f
[1.7.x] Implement Migration.run_before
...
This attribute (used for reverse dependencies) was previously declared
and mentioned in the code, but never actually used.
2014-06-05 23:28:17 -07:00
Andrew Godwin
31fc34e447
[1.7.x] Rewrote migration autodetector to involve actual computer science.
...
Fixes #22605 , #22735 ; also lays the ground for some other fixes.
Conflicts:
django/db/migrations/autodetector.py
2014-06-05 23:27:21 -07:00
Aymeric Augustin
c9aedce01a
Replaced an explicit vendor check by a feature flag.
2014-06-06 00:31:22 +02:00
Aymeric Augustin
1238f92c64
Checked can_introspect_null feature in a test.
2014-06-06 00:26:40 +02:00
Éric Araujo
4ad299f287
[1.7.x] Fix missing highlighting in some code examples
...
Backport of 84cafc2b35
from master
2014-06-05 15:14:14 -04:00
Aymeric Augustin
342b25449d
[1.7.x] Added a flag for the ability to introspect nullable fields.
...
Previously this was conflated with another Oracle-specific behavior.
Backport of a03d38d
from master.
2014-06-05 17:57:48 +02:00
Aymeric Augustin
2e4bcb9b02
Avoided using BinaryField unecessarily in tests.
...
Several database backends struggle with binary data. This change
minimizes the risk of unrelated tests failures when binary fields
trigger errors.
2014-06-05 17:10:42 +02:00