summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-08-10Fixed #26909 -- Allowed UserAttributeSimilarityValidator to validate against ↵Andrew Nester
model properties.
2016-08-10Fixed #26844 -- Made formset's validate_min validation ignore empty forms.Andrew Nester
2016-08-10Fixed #26973 -- Fixed views.static.serve() crash with show_indexes enabled.Tim Graham
2016-08-10Fixed #26960 -- Added PasswordResetConfirmView option to automatically log ↵jordij
in after a reset.
2016-08-10Fixed #26951 -- Allowed AuthenticationForm to work with a username of 0.Olexander Yermakov
2016-08-09Fixed #26905 -- Allowed using MultiValueDict-like objects as form data.Marcin Nowak
2016-08-09Fixed #26952 -- Added tips for installing test suite dependencies.an0o0nym
2016-08-09Refs #27025 -- Fixed a couple timezone tests for Python 3.6.Tim Graham
Reflects behavior changes in PEP 495 (Local Time Disambiguation).
2016-08-09Removed obsolete note about Sphinx version required for building docs.Tim Graham
2016-08-09Fixed #27035 -- Eased changing settings.DEBUG for DiscoverRunner.Chris Jerdonek
2016-08-09Fixed #13809 -- Made FieldFile.open() respect its mode argument.Chris Sinchok
2016-08-09Unified SpatiaLite spellingClaude Paroz
2016-08-09Corrected Django 1.8 EOL in 1.11 release notes.Tim Graham
2016-08-09Renamed a camel case variable in the cycle template tag.Sergei Maertens
2016-08-09Fixed #26830 -- Prevented the 'with' templatetag from resetting the cycle ↵Alexander Schrijver
variable to its initial state.
2016-08-09Refs #26830 -- Added a test for a named cycle template tag inside an ↵Alexander Schrijver
ifchanged block and a for loop.
2016-08-09Fixed #27041 -- Documented that built-in middleware are compatible with ↵Ville Skyttä
MIDDLEWARE and MIDDLEWARE_CLASSES.
2016-08-08Fixed docs to refer to HSTS includeSubdomains as a directive.Ed Morley
The spec refers to it as a 'directive' rather than a 'tag': https://tools.ietf.org/html/rfc6797#section-6.1.2
2016-08-08Fixed #27036 -- Made locmem email backend's send_messages() accept generators.Antoine Fontaine
2016-08-08Refs #27025 -- Fixed a servers test on Python 3.6.Tim Graham
After https://hg.python.org/cpython/rev/4ea79767ff75/, test_strips_underscore_headers fails with: 'Stub' object has no attribute 'sendall'.
2016-08-08Fixed #26940 -- Removed makemessages from no_settings_commands whitelistClaude Paroz
As makemessages uses several settings for proper run (FILE_CHARSET, LOCALE_PATHS, MEDIA_ROOT, and STATIC_ROOT), we should require settings configuration for this command.
2016-08-08Fixed #27002 -- Prevented double query when rendering ModelChoiceField.Alex Hill
2016-08-08Refs #22343 -- Corrected a test for missing select_for_update(nowait=True) ↵Simon Charette
support.
2016-08-08Fixed #26764 -- Fixed Session.cycle_key() crash on unaccessed session.Adam Zapletal
2016-08-08Fixed #26500 -- Added SKIP LOCKED support to select_for_update().Simon Charette
Thanks Tim for the review.
2016-08-08Moved EmpytResultSet to django.core.exceptions.Johannes Dollinger
This removes the need for some inner imports.
2016-08-08Fixed #26517 -- Fixed ExpressionWrapper with empty queryset.Johannes Dollinger
2016-08-08Fixed #26433 -- Fixed Case expressions with empty When.Johannes Dollinger
2016-08-08Fixed #27032 -- Prevented setup_test_environment() from being called twice.Chris Jerdonek
2016-08-08Fixed #27024 -- Prevented logging error with empty string as geometry widget ↵Claude Paroz
value Thanks Gavin Wahl for the report, and Tim Graham for the review.
2016-08-08Fixed #27028 -- Clarified failed parallel tests message.Adam Zapletal
2016-08-08Fixed typos in db-api GIS docsClaude Paroz
2016-08-07Refs #27007 -- Enhanced mail text attachment testMichael Schwarz
The test now also checks whether the sent message's attachment has the expected name, content and mime type.
2016-08-06Fixed #27026 -- Fixed state initialization of bulk_create() objects if ↵Sjoerd Job Postmus
can_return_ids_from_bulk_insert.
2016-08-06Fixed #27027 -- Restored Client.force_login() defaulting to the first auth ↵Ben Demboski
backend.
2016-08-06Fixed a few grammar issues in working-with-git doc.Adam Zapletal
2016-08-06Fixed #27015 -- Prevented HTML-invalid minlength/maxlength on hidden inputsClaude Paroz
2016-08-05Fixed #26808 -- Added Meta.indexes for class-based indexes.Akshesh
* Added the index name to its deconstruction. * Added indexes to sqlite3.schema._remake_table() so that indexes aren't dropped when _remake_table() is called. Thanks timgraham & MarkusH for review and advice.
2016-08-05Fixed #27004 -- Made migrations consistency check ignore unapplied squashed ↵Jarek Glowacki
migrations.
2016-08-05Edited docs of test.utils.setup/teardown_test_environment().Chris Jerdonek
2016-08-05Used CaptureQueriesContext in select_for_update tests.Simon Charette
2016-08-05Fixed #26706 -- Made RelatedManager modification methods clear ↵Yoong Kang Lim
prefetch_related() cache.
2016-08-05Edited multi-db topic guide for grammar and clarity.Liz Lemon
2016-08-05Fixed #27023 -- Prevented possibility of shell loading ~/.pythonrc.py twice.Peter Inglesby
2016-08-05Fixed #26986 -- Documented force_login() delegation to auth backends.Tim Graham
2016-08-04Fixed #27020 -- Used a context manager to close files.Ville Skyttä
2016-08-04Fixed #26928 -- Changed forms' checked attribute to HTML5 boolean style.Jon Dufresne
2016-08-04Fixed #26981 -- Added DiscoverRunner.get_test_runner_kwargs().Chris Jerdonek
2016-08-04Fixed #27010 -- Made Argon2PasswordHasher decode with ASCII.Tim Graham
The underlying hasher only generates strings containing ASCII characters so this is merely a cosmetic change.
2016-08-04Fixed #26983 -- Fixed isnull filtering on ForeignKey with to_fieldClaude Paroz
Thanks weidwonder for the report.