Andrew Godwin
|
51673c146e
|
Don't treat .pyc/pyo files as migrations. Refs #23237 among others.
|
2014-08-08 09:57:31 +10:00 |
Jacob Haslehurst
|
f676305ece
|
Fixed #22982 -- Added GenericRelatedObjectManager.__str__. to prevent crash.
Thanks bendavis78 for the report.
Forwardport of 29585e9b6a from stable/1.7.x
|
2014-08-07 14:44:20 -04:00 |
Tim Graham
|
f9f9f3ad60
|
Fixed flake8 warning.
|
2014-08-07 10:11:15 -04:00 |
Andrew Godwin
|
157c42a976
|
Use smart_text rather than naive forcing-to-unicode for state reading
|
2014-08-07 22:34:07 +10:00 |
Tim Graham
|
57b60f9f93
|
Added a missing unicode_literals that caused a test failure after refs #23226.
|
2014-08-07 08:30:50 -04:00 |
Andrew Godwin
|
173d989c91
|
Fixed #23252: Call out removed features in release notes.
Also added StrAndUnicode mixin note to deprecation plan as it was
missing.
|
2014-08-07 14:14:12 +10:00 |
Mohammed Attia
|
61ed959235
|
Removed a doc reference to the deprecated `mimetype` kwarg.
|
2014-08-06 22:15:54 -04:00 |
Andrew Godwin
|
5257b85ab8
|
Fixed #23226: Model options appearing as bytes type in migrations
|
2014-08-07 12:13:37 +10:00 |
Andrew Godwin
|
8d93b21ec9
|
Moved index dropping after FK dropping to please MySQL and fix test
|
2014-08-07 11:59:11 +10:00 |
Andrew Godwin
|
dfe86449c9
|
Fixed #23244: Error altering FK to non-FK in migrations
|
2014-08-07 11:52:31 +10:00 |
Alex Hill
|
938da36cb1
|
Fixed #21603 -- Fixed complex RawQuerySets queries on some versions of SQLite.
|
2014-08-06 08:41:34 -04:00 |
Tim Graham
|
edcc75e5ac
|
Fixed #21792 -- Documented Form.has_changed()
Thanks bjb at credil.org for the suggestion and
Ivan Mesic for the draft patch.
|
2014-08-05 08:44:57 -04:00 |
Tim Graham
|
0efd72dc90
|
Fixed broken links in docs.
|
2014-08-05 08:23:34 -04:00 |
Tim Graham
|
fcd42a4819
|
Removed code that assumed BooleanField could be null.
Such a field will no longer pass model validation.
|
2014-08-05 07:49:53 -04:00 |
Tim Graham
|
21d0ceefb5
|
Updated links for continous integration server.
|
2014-08-05 07:28:04 -04:00 |
Andrew Godwin
|
5f6558f82f
|
Stop errors on older Spatialite versions that miss some tables
|
2014-08-05 21:09:37 +10:00 |
Shai Berger
|
746f2a4bed
|
Fixed #23061: Avoided setting a limit on a query for get with select_for_update on Oracle
Thanks Michael Miller for reporting the issue.
|
2014-08-05 03:12:08 +03:00 |
Florian Apolloner
|
6d256ae248
|
Fixed test failures from 98e8da3709 .
|
2014-08-04 16:54:43 +02:00 |
Sitesh Shrivastava
|
8193a46c6e
|
Fixed a typo in comment in django/utils/version.py
|
2014-08-04 10:23:37 -04:00 |
Tim Graham
|
b50ea73e1e
|
Fixed two tests in previous commit; refs #16311.
|
2014-08-04 10:21:13 -04:00 |
Stanislas Guerra
|
98e8da3709
|
Fixed #16311 -- Added a RelatedOnlyFieldListFilter class in admin.filters.
|
2014-08-04 09:39:02 -04:00 |
Mihail Milushev
|
bf5382c6e5
|
Fixed #22234 -- Replaced OS-specific code with subprocess.call() in dbshell.
This fixes escaping of special characters on Windows.
|
2014-08-04 09:21:03 -04:00 |
areski
|
e4dd8b5dde
|
Fixed #23169 - Misc docs fixes.
|
2014-08-04 08:29:00 -04:00 |
Vincent-Vega
|
5e06fa1469
|
Fixed #22745 -- Prevented reevaluation of ModelChoiceField's queryset when accesssing BoundField's attrs.
Thanks Christian Schmitt for review.
|
2014-08-04 07:47:37 -04:00 |
Tim Graham
|
399cf303cb
|
Corrected a comment in forms/forms.py; refs #16612.
|
2014-08-04 06:57:09 -04:00 |
Andrew Godwin
|
d4f62a7ae7
|
Fixed #23161: Drop PostGIS geography fields correctly
|
2014-08-04 14:06:33 +10:00 |
Andrew Godwin
|
059f5d17c5
|
Fixed #23163: Align user help text with migrations
|
2014-08-04 13:57:02 +10:00 |
Andrew Godwin
|
b508c1c317
|
Fixed #23153: Properly recreate spatialite triggers on alter table
|
2014-08-04 13:15:32 +10:00 |
Andrew Godwin
|
c06e124b5e
|
Fixed #23091: CreateModel and AddField were clashing with deferred SQL
|
2014-08-04 11:59:29 +10:00 |
Simon Charette
|
1b00738f73
|
Fixed a MySQL test failure introduced by cbb29af1aa .
Seems like unlike other backends MySQL get_constraints fails when dealing
with a non-existing table. refs #23160.
|
2014-08-03 16:32:36 -04:00 |
Simon Charette
|
cbb29af1aa
|
Fixed #23160 -- Correctly rename models with self referential fields.
Thanks to whitews AT gmail for the report.
|
2014-08-03 15:27:01 -04:00 |
Florian Apolloner
|
2d542bf60c
|
Ensured that Paginator.page_range works the same on Python 2 and 3.
This somewhat fixes #23088, refs 23140.
|
2014-08-03 21:10:00 +02:00 |
Florian Apolloner
|
40fb6a5601
|
Revert "Fixed #23088 -- Used `six` `range` type in `Paginator.page_range`."
This reverts commit 6508db2ff9 .
Refs #23088.
|
2014-08-03 21:08:24 +02:00 |
Tim Graham
|
6e77acc589
|
Fixed flake8 warning.
|
2014-08-03 14:21:45 -04:00 |
qingfeng
|
0d23450e81
|
Fixed #19802 -- Fixed HttpResponse.set_cookie() with unicode data on Python 2.
Thanks django at patrickbregman.eu for the report.
|
2014-08-03 12:50:25 -04:00 |
Tim Graham
|
0f2ceee025
|
Fixed #23151 -- Deprecated RegexField.error_message.
Thanks Baptiste Mispelon for the suggestion.
|
2014-08-03 11:21:01 -04:00 |
Baptiste Mispelon
|
44169a00c1
|
Removed unnecessary code in ManyToManyField.deconstruct()
|
2014-08-03 15:15:24 +02:00 |
Baptiste Mispelon
|
7432533932
|
Added missing logic to TimeField.deconstruct().
If auto_now or auto_now_add was used then the serialized
field in the migration contained unnecessary `editable` and
`blank` arguments.
|
2014-08-03 14:02:21 +02:00 |
Baptiste Mispelon
|
72f1eb48df
|
Fixed #23156 -- Added missing BinaryField.deconstruct() method.
|
2014-08-03 13:02:31 +02:00 |
Tim Graham
|
a9fa3d4667
|
Removed notes for versions of SQLite older than 5 years.
|
2014-08-02 20:02:06 -04:00 |
Tim Graham
|
75f2c65cb6
|
Fixed #23154 -- Removed reference to deprecated run_gunicorn command.
Thanks frewsxcv for the report.
|
2014-08-02 15:02:29 -04:00 |
Erik Romijn
|
e26366da44
|
Fixed #23149 -- Clarified note on HTTPOnly in cookie-based session docs
|
2014-08-02 18:55:20 +02:00 |
Tim Graham
|
d28396f526
|
Fixed #23144 -- Dropped support for MySQL 5.0, 5.1.
|
2014-08-02 10:28:40 -04:00 |
Tim Graham
|
fb4f3e04b1
|
Updated MySQL links to version 5.6.
|
2014-08-02 10:27:01 -04:00 |
Baptiste Mispelon
|
de0a22be35
|
Fixed two typos in docstrings.
|
2014-08-02 15:14:13 +02:00 |
Collin Anderson
|
e075d2e66b
|
Fixed #23148 -- Minor tweaks in tutorial code samples
|
2014-08-02 10:17:45 +02:00 |
Tim Graham
|
8f9d6e83a0
|
Fixed #23145 -- Dropped support for Oracle < 11.1
|
2014-08-01 19:32:00 -04:00 |
Tim Graham
|
a2479f46f3
|
Fixed #7220 -- Allowed AbstractBaseUser.last_login to be null.
Thanks veena for the suggestion and Simon Charette and Kévin Etienne for reviews.
|
2014-08-01 17:51:49 -04:00 |
Tim Graham
|
1a31d9ef91
|
Removed some PostGIS 1.4 notes in the docs (refs #23108).
|
2014-08-01 10:53:53 -04:00 |
Tim Graham
|
a9bdce7e55
|
Fixed #23108 -- Dropped support for PostgreSQL 8.4 & PostGIS 1.3, 1.4.
Thanks Claude Paroz for the review.
|
2014-08-01 10:26:00 -04:00 |