summaryrefslogtreecommitdiff
path: root/docs/releases
AgeCommit message (Collapse)Author
2016-08-12Fixed #27008 -- Added --debug-mode option to DiscoverRunner.Chris Jerdonek
2016-08-12Fixed #27007 -- Handled non-UTF-8 bytes objects for text/* attachments.Michael Schwarz
The fallback logic which allows non-UTF-8 encoded files to be passed to attach_file() even when a `text/*` mime type has been specified is moved to attach(). Both functions now fall back to a content type of `application/octet-stream`. A side effect is that a file's content is decoded in memory instead of opening it in text mode and reading it into a string. Some mimetype-related logic in _create_attachment() has become obsolete as the code moved from attach_file() to attach() already handles this.
2016-08-12Fixed #27037 -- Prevented required attribute on ClearableFileInput when ↵Jon Dufresne
initial data exists.
2016-08-12Refs #20888 -- Added index order introspection.Akshesh
2016-08-12Fixed typo in docs/releases/1.9.txtTim Graham
2016-08-11Refs #23960 -- Documented how to restore absolute redirect URLs.Moritz Sichert
2016-08-10Refs #18682 -- Edited explanation in stale content type deletion.Tim Graham
Follow up to 8db889eaf7dce0cb715b075be32047c1b1b316da.
2016-08-10Fixed #26947 -- Added an option to enable the HSTS header preload directive.Ed Morley
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-09Fixed #27035 -- Eased changing settings.DEBUG for DiscoverRunner.Chris Jerdonek
2016-08-09Unified SpatiaLite spellingClaude Paroz
2016-08-09Corrected Django 1.8 EOL in 1.11 release notes.Tim Graham
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 #26500 -- Added SKIP LOCKED support to select_for_update().Simon Charette
Thanks Tim for the review.
2016-08-08Fixed #27032 -- Prevented setup_test_environment() from being called twice.Chris Jerdonek
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-05Fixed #27004 -- Made migrations consistency check ignore unapplied squashed ↵Jarek Glowacki
migrations.
2016-08-05Fixed #26706 -- Made RelatedManager modification methods clear ↵Yoong Kang Lim
prefetch_related() cache.
2016-08-05Fixed #26986 -- Documented force_login() delegation to auth backends.Tim Graham
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 #26983 -- Fixed isnull filtering on ForeignKey with to_fieldClaude Paroz
Thanks weidwonder for the report.
2016-08-03Fixed #27005 -- Fixed crash if request.META[''CONTENT_LENGTH']=''.Tim Graham
2016-08-03Fixed #27001 -- Fixed a query count regression in ModelChoiceField with ↵Alex Hill
RadioSelect.
2016-08-03Fixed #26997 -- Fixed checks crash with empty Meta.default_permissions.Sergey Yurchenko
2016-08-03Fixed #26999 -- Documented model_to_dict() ManyToManyField change in 1.10.Tim Graham
2016-08-02Fixed #27000 -- Removed BaseCommand.usage() per deprecation timeline (refs ↵Tim Graham
#19973).
2016-08-02Fixed #26988 -- Improved/clarified User.is_authenticated/anonymous ↵Tim Graham
compatibility. Thanks marktranchant for the report and review.
2016-08-02Fixed #26991 -- Fixed a crash in MySQL where SQL_AUTO_IS_NULL doesn't return ↵Tim Graham
a result.
2016-08-01Added stub release notes for 1.10.1.Tim Graham
2016-08-01Added release dates for 1.10 and 1.9.9Tim Graham
2016-07-28Fixed #26657 -- Made GeomValue omit SRID for MySQL.Sergey Fedoseev
This fixes some test failures on MySQL 5.7+.
2016-07-28Fixed #26929 -- Deprecated extra_context parameter of ↵Andrew Nester
contrib.auth.views.logout_then_login().
2016-07-25Fixed #26946 -- Clarified instructions for customizing collectstatic's ↵Tim Graham
ignore_patterns.
2016-07-25Refs #25232 -- Documented AllowAll*Backend in "new features" section of 1.10 ↵Markus Holtermann
release notes.
2016-07-24Fixed #26938 -- Fixed invalid HTML in template postmortem on the debug page.Jon Dufresne
2016-07-24Added stub release notes for 1.9.9.Jon Dufresne
2016-07-18Added CVE-2016-6186 to the security release archive.Tim Graham
2016-07-18Fixed XSS in admin's add/change related popup.Tim Graham
This is a security fix.
2016-07-16Fixed #17209 -- Added password reset/change class-based viewsClaude Paroz
Thanks Tim Graham for the review.
2016-07-14Fixed #26897 -- Fixed makemessages crash on Python 2 with non-ASCII file namesClaude Paroz
Thanks Tim Graham for the review.
2016-07-14Fixed #26656 -- Added duration (timedelta) support to DjangoJSONEncoder.Will Hardy
2016-07-14Fixed #26821 -- Fixed forms.Email/URLField crash on None value.Priy
2016-07-14Reverted "Fixed #25388 -- Added an option to allow disabling of migrations ↵Tim Graham
during test database creation" This reverts commit 157d7f1f1de4705daddebb77f21bd7097a74513d since it disables migrations all the time, not just during tests.
2016-07-13Fixed #26889 -- Fixed missing PostgreSQL index in SchemaEditor.add_field().Jon Dufresne
2016-07-11Linked "Features removed" release notes to corresponding deprecation notes.Tim Graham
2016-07-11Fixed #26749 -- Preserved behavior of use_for_related_field during deprecation.Julien Hartmann
2016-07-08Fixed #26348 -- Added TruncTime and exposed it through the __time lookup.Simon Charette
Thanks Tim for the review.