summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-08-08Fixed a non-deterministic test; refs #23099.Tim Graham
2014-08-08Fixed #23099 -- Removed usage of deprecated initial data in Django's test suite.Tim Graham
Thanks Claude Paroz for assistance with debugging the tests.
2014-08-08Removed some tabs in the docs.Tim Graham
2014-08-08Fixed #23257 -- Updated docs for new django-jython release.Andreas Stocker
2014-08-08Don't treat .pyc/pyo files as migrations. Refs #23237 among others.Andrew Godwin
2014-08-07Fixed #22982 -- Added GenericRelatedObjectManager.__str__. to prevent crash.Jacob Haslehurst
Thanks bendavis78 for the report. Forwardport of 29585e9b6a from stable/1.7.x
2014-08-07Fixed flake8 warning.Tim Graham
2014-08-07Use smart_text rather than naive forcing-to-unicode for state readingAndrew Godwin
2014-08-07Added a missing unicode_literals that caused a test failure after refs #23226.Tim Graham
2014-08-07Fixed #23252: Call out removed features in release notes.Andrew Godwin
Also added StrAndUnicode mixin note to deprecation plan as it was missing.
2014-08-06Removed a doc reference to the deprecated `mimetype` kwarg.Mohammed Attia
2014-08-07Fixed #23226: Model options appearing as bytes type in migrationsAndrew Godwin
2014-08-07Moved index dropping after FK dropping to please MySQL and fix testAndrew Godwin
2014-08-07Fixed #23244: Error altering FK to non-FK in migrationsAndrew Godwin
2014-08-06Fixed #21603 -- Fixed complex RawQuerySets queries on some versions of SQLite.Alex Hill
2014-08-05Fixed #21792 -- Documented Form.has_changed()Tim Graham
Thanks bjb at credil.org for the suggestion and Ivan Mesic for the draft patch.
2014-08-05Fixed broken links in docs.Tim Graham
2014-08-05Removed code that assumed BooleanField could be null.Tim Graham
Such a field will no longer pass model validation.
2014-08-05Updated links for continous integration server.Tim Graham
2014-08-05Stop errors on older Spatialite versions that miss some tablesAndrew Godwin
2014-08-05Fixed #23061: Avoided setting a limit on a query for get with ↵Shai Berger
select_for_update on Oracle Thanks Michael Miller for reporting the issue.
2014-08-04Fixed test failures from 98e8da3709e400d549e87c7ff1450a2685c0adcf.Florian Apolloner
2014-08-04Fixed a typo in comment in django/utils/version.pySitesh Shrivastava
2014-08-04Fixed two tests in previous commit; refs #16311.Tim Graham
2014-08-04Fixed #16311 -- Added a RelatedOnlyFieldListFilter class in admin.filters.Stanislas Guerra
2014-08-04Fixed #22234 -- Replaced OS-specific code with subprocess.call() in dbshell.Mihail Milushev
This fixes escaping of special characters on Windows.
2014-08-04Fixed #23169 - Misc docs fixes.areski
2014-08-04Fixed #22745 -- Prevented reevaluation of ModelChoiceField's queryset when ↵Vincent-Vega
accesssing BoundField's attrs. Thanks Christian Schmitt for review.
2014-08-04Corrected a comment in forms/forms.py; refs #16612.Tim Graham
2014-08-04Fixed #23161: Drop PostGIS geography fields correctlyAndrew Godwin
2014-08-04Fixed #23163: Align user help text with migrationsAndrew Godwin
2014-08-04Fixed #23153: Properly recreate spatialite triggers on alter tableAndrew Godwin
2014-08-04Fixed #23091: CreateModel and AddField were clashing with deferred SQLAndrew Godwin
2014-08-03Fixed a MySQL test failure introduced by cbb29af1aa.Simon Charette
Seems like unlike other backends MySQL get_constraints fails when dealing with a non-existing table. refs #23160.
2014-08-03Fixed #23160 -- Correctly rename models with self referential fields.Simon Charette
Thanks to whitews AT gmail for the report.
2014-08-03Ensured that Paginator.page_range works the same on Python 2 and 3.Florian Apolloner
This somewhat fixes #23088, refs 23140.
2014-08-03Revert "Fixed #23088 -- Used `six` `range` type in `Paginator.page_range`."Florian Apolloner
This reverts commit 6508db2ff9fc5be95fec903b3fa7ab8204fe316a. Refs #23088.
2014-08-03Fixed flake8 warning.Tim Graham
2014-08-03Fixed #19802 -- Fixed HttpResponse.set_cookie() with unicode data on Python 2.qingfeng
Thanks django at patrickbregman.eu for the report.
2014-08-03Fixed #23151 -- Deprecated RegexField.error_message.Tim Graham
Thanks Baptiste Mispelon for the suggestion.
2014-08-03Removed unnecessary code in ManyToManyField.deconstruct()Baptiste Mispelon
2014-08-03Added missing logic to TimeField.deconstruct().Baptiste Mispelon
If auto_now or auto_now_add was used then the serialized field in the migration contained unnecessary `editable` and `blank` arguments.
2014-08-03Fixed #23156 -- Added missing BinaryField.deconstruct() method.Baptiste Mispelon
2014-08-02Removed notes for versions of SQLite older than 5 years.Tim Graham
2014-08-02Fixed #23154 -- Removed reference to deprecated run_gunicorn command.Tim Graham
Thanks frewsxcv for the report.
2014-08-02Fixed #23149 -- Clarified note on HTTPOnly in cookie-based session docsErik Romijn
2014-08-02Fixed #23144 -- Dropped support for MySQL 5.0, 5.1.Tim Graham
2014-08-02Updated MySQL links to version 5.6.Tim Graham
2014-08-02Fixed two typos in docstrings.Baptiste Mispelon
2014-08-02Fixed #23148 -- Minor tweaks in tutorial code samplesCollin Anderson