summaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Collapse)Author
2016-10-06Fixed #27301 -- Prevented exceptions that fail unpickling from crashing the ↵Adam Wróbel
parallel test runner.
2016-10-06Fixed #27300 -- Made makemigrations --dry-run output a string (no bytes)Claude Paroz
Thanks Markus Holtermann for the report and the review.
2016-10-05Refs #27218 -- Fixed LogEntry tests on MySQL 5.5.Tim Graham
2016-10-04Refs #18974 -- Deprecated @models.permalink() decorator.Tim Graham
2016-10-04Fixed #27218 -- Returned LogEntry instances from ModelAdmin.log_*() methods.François Freitag
2016-10-04Fixed #27193 -- Preserved ordering in select_for_update subqueries.François Freitag
2016-10-04Refs #27118 -- Reallowed using pk in QuerySet.get/update_or_create().François Freitag
2016-10-04Fixed #27279 -- Fixed a migration performance regression related to ↵Simon Charette
RenameModel operations. Thanks Trac alias mtomiyoshi for the report, Marten Kenbeek for the initial patch and Tim for the review.
2016-10-04Fixed #27309 -- Added CallableBool.__hash__().Reto Aebersold
2016-10-02Fixed #27305 -- Removed BaseCommand.can_import_settings unused attributeClaude Paroz
Thanks Tim Graham for the review.
2016-10-01Fixed #27302 -- Fixed ModelAdmin.construct_change_message() changed field ↵Claude Paroz
detection Thanks Ramiro Morales for the report and Tim Graham for the review.
2016-10-01Fixed #26541 -- Allowed MySQL transaction detection to work without table ↵Mariusz Felisiak
creation.
2016-10-01Refs #26940 -- Re-allowed makemessages without settingsClaude Paroz
Thanks Tim Graham for the review.
2016-09-30Refs #27186 -- Fixed model form default fallback for CheckboxSelectMultiple.Tim Graham
2016-09-30Refs #27210 -- Fixed isolation of test_fail_silently_on_connection_error.Tim Graham
The test wouldn't pass if a mail server is running on the system.
2016-09-30Confirmed support for PostGIS 2.3.Tim Graham
2016-09-28Fixed #27217 -- Fixed crash in CreateModel optimization with models that use ↵Tim Graham
mixins. Thanks Simon Charette for review.
2016-09-27Split admin_docs tests into separate files.Tim Graham
2016-09-27Fixed #27268 -- Restored an invalid related field lookup error message in ↵Mariusz Felisiak
QuerySet filtering.
2016-09-27Fixed #27210 -- Allowed SMTPBackend to fail silently on a socket connection ↵Vesteinn Snaebjarnarson
error.
2016-09-27Fixed #20705 -- Allowed using PasswordResetForm with user models with an ↵levental
email field not named 'email'.
2016-09-27Fixed #27053 -- Documented contrib.auth.get_user().Berker Peksag
2016-09-27Fixed #27266 -- Allowed using assertFormError()/assertFormsetError() in ↵Tim Graham
admin forms and formsets. Thanks Diego Andrés Sanabria Martín for the report and review.
2016-09-27Fixed #27271 -- Fixed a crash in runserver logging.Sergey Fursov
Allowed ServerFormatter to handle simple string messages or messages with formatting arguments. The formatter will set the server_time variable on the log record if it's required by the format string but wasn't passed in extra parameters.
2016-09-24Fixed #27118 -- Made QuerySet.get_or_create()/update_or_create() error for a ↵François Freitag
non-field in their arguments.
2016-09-24Fixed typo in tests/aggregation_regress/tests.py.Tim Graham
2016-09-22Fixed #27257 -- Fixed builtin text lookups on JSONField keys.Simon Charette
Thanks Nick Stefan for the report and Tim for the review.
2016-09-22Fixed #27159 -- Prevented pickling a query with an __in=inner_qs lookup from ↵Jani Tiainen
evaluating inner_qs.
2016-09-22Fixed #27186 -- Fixed model form default fallback for MultiWidget, ↵Tim Graham
FileInput, SplitDateTimeWidget, SelectDateWidget, and SplitArrayWidget. Thanks Matt Westcott for the review.
2016-09-22Fixed #27056 -- Allowed migrating geometry field dimension on PostGISClaude Paroz
Thanks Tim Graham for the review.
2016-09-22Refs #27056 -- Rearranged gis_migrations test case classesClaude Paroz
2016-09-21Fixed #27256 -- Changed Select widget's selected attribute to use HTML5 ↵Jon Dufresne
boolean syntax.
2016-09-21Fixed #26210 -- Prevented SMTP backend from trying to send mail after a ↵levental
connection failure.
2016-09-21Tested model signals "sender" parameter when defer() is used.Mathieu Pillard
This was fixed when dynamic classes for deferred instance loading was removed in 7f51876f99851fdc3fef63aecdfbcffa199c26b9.
2016-09-21Refs #16682 -- Tested transaction.atomic() with KeyboardInterrupt.Claude Paroz
2016-09-21Fixed #26610 -- Added CITextField to contrib.postgres.Mads Jensen
2016-09-20Added tests for ArrayField lookup errors.Tim Graham
2016-09-19Fixed #27238 -- Disabled check_pattern_startswith_slash if ↵Alasdair Nicol
settings.APPEND_SLASH=False. Thanks strycore for the report and timgraham for suggesting the solution.
2016-09-19Fixed #27219 -- Changed cx_Oracle client encoding to AL32UTF8 to allow ↵Dmitry Medvinsky
4-byte characters.
2016-09-19Fixed #27165 -- Removed unnecessary CreateModel(... 'indexes': []) in ↵akki
migrations.
2016-09-17Refs #27025 -- Fixed a timezone test for Python 3.6.Tim Graham
Reflects behavior changes in PEP 495 (Local Time Disambiguation).
2016-09-17Refs #27025 -- Fixed "invalid escape sequence" warnings in Python 3.6.Tim Graham
http://bugs.python.org/issue27364
2016-09-17Made FieldError/FieldDoesNotExist messages uniform across Python versions.François Freitag
Removed possible u'' prefixes on Python 2.
2016-09-16Refs #27083 -- Updated conditional header comparison to match RFC 7232.Kevin Christopher Henry
2016-09-16Fixed #26697 -- Removed contrib.gis.maps.Tim Graham
2016-09-16Fixed #27198 -- Made MultiValueDict.getlist() return a new list to prevent ↵Jani Tiainen
mutation.
2016-09-16Fixed typo in tests/migrations/test_loader.py.Tim Graham
2016-09-16Refs #27025 -- Fixed a test for the new re.RegexFlag in Python 3.6.Tim Graham
http://bugs.python.org/issue28082
2016-09-16Refs #27025 -- Fixed tests for the new ModuleNotFoundError in Python 3.6.Tim Graham
http://bugs.python.org/issue15767
2016-09-15Refs #5133 -- Isolated test_close() cache test.Tim Graham