summaryrefslogtreecommitdiff
path: root/docs/releases
AgeCommit message (Collapse)Author
2016-07-08Refs #25774, #26348 -- Allowed Trunc functions to operate with time fields.Simon Charette
Thanks Josh for the amazing testing setup and Tim for the review.
2016-07-06Fixed capitalization of "URL pattern".Tim Graham
2016-07-03Fixed #18682 -- Expanded explanation in stale content type deletion. (#6869)Erik Romijn
2016-06-30Fixed #21548 -- Added FileExtensionValidator and validate_image_file_extension.Berker Peksag
2016-06-28Fixed #24694 -- Added support for context_processors to Jinja2 backend.Berker Peksag
2016-06-28Fixed #15091 -- Allowed passing custom encoder to JSON serializer.Berker Peksag
2016-06-27Fixed #5897 -- Added the Content-Length response header in CommonMiddlewareClaude Paroz
Thanks Tim Graham for the review.
2016-06-24Fixed #26719 -- Normalized email in AbstractUser.clean().Bang Dao + Tam Huynh
2016-06-24Refs #17209 -- Added LoginView and LogoutView class-based viewsClaude Paroz
Thanks Tim Graham for the review.
2016-06-23Fixed #26791 -- Replaced LiveServerTestCase port ranges with binding to port 0.Tim Graham
2016-06-22Fixed #25920 -- Added support for non-uniform NUMBER_GROUPING.jasisz
2016-06-22Fixed typo in 1.11 release notes.Zbigniew Siciarz
2016-06-22Fixed a heading typo in docs/releases/1.11.txtTim Graham
2016-06-21Refs #21379, #26719 -- Moved username normalization to AbstractBaseUser.Tim Graham
Thanks Huynh Thanh Tam for the initial patch and Claude Paroz for review.
2016-06-21Fixed #25940 -- Added OGRGeometry.from_gml() and GEOSGeometry.from_gml().Sergey Fedoseev
2016-06-21Fixed #26787 -- Documented deleting and reloading of model instance fields.Tim Graham
Thanks Julien Hartmann for the report.
2016-06-20Refs #26666 -- Added ALLOWED_HOSTS validation when running tests.Tobias McNulty
Also used ALLOWED_HOSTS to check for external hosts in assertRedirects().
2016-06-18Fixed #26753 -- Made GDAL a required dependency for contrib.gisClaude Paroz
Thanks Tim Graham for the review.
2016-06-13Fixed #4136 -- Made ModelForm save empty values for nullable CharFields as NULL.Jon Dufresne
Previously, empty values were saved as strings.
2016-06-09Refs #26524 -- Fixed an error in 1.11 release notes.Vytis Banaitis
2016-06-09Fixed #20468 -- Added loaddata --exclude option.Berker Peksag
Thanks Alex Morozov for the initial patch.
2016-06-08Fixing #26524 -- Made a foreign key id reference in ModelAdmin.list_display ↵krishbharadwaj
display the id.
2016-06-08Fixed #26717 -- Added Serializer.stream_class to customize the stream.Berker Peksag
2016-06-07Fixed #10107 -- Allowed using mark_safe() as a decorator.Scott Vitale
Thanks ArcTanSusan for the initial patch.
2016-06-06Fixed #26707 -- Added QueryDict.fromkeys()wim glenn
2016-06-06Linked to upgrade guide from release notes.Tom Christie
2016-06-04Added stub release notes for 1.9.8.Tim Graham
2016-06-04Added release date for 1.9.7.Tim Graham
2016-06-04Fixed #19963 -- Added support for date_hierarchy across relations.Vytis Banaitis
2016-06-04Fixed #26628 -- Changed CSRF logger to django.security.csrf.Holly Becker
2016-06-04Fixed #12666 -- Added EMAIL_USE_LOCALTIME setting.Anton I. Sipos
When EMAIL_USE_LOCALTIME=True, send emails with a Date header in the local time zone.
2016-06-04Fixed #26667 -- Fixed a regression in queries on a OneToOneField that has ↵Tim Graham
to_field and primary_key=True. Thanks Simon Charette for review.
2016-06-03Fixed #26698 -- Fixed PostgreSQL dbshell crash on an empty database name.mieciu
2016-06-03Fixed #26638 -- Allowed callable arguments for ↵Will Koster
QuerySet.get_or_create()/update_or_create() defaults.
2016-06-02Fixes #26700 -- Added how to upgrade to TEMPLATES link in 1.10 release notes.jrabbit
2016-06-02Fixed #26672 -- Fixed HStoreField to raise ValidationError instead of ↵Brad Melin
crashing on non-dict JSON input.
2016-06-02Fixed #26617 -- Added distinct argument to contrib.postgres's StringAgg.Rustam Kashapov
2016-06-02Updated release notes links to prevent warnings with Sphinx 1.4.2.Tim Graham
2016-06-01Fixed #26084 -- Documented that deprecation warnings are no longer loud.Tim Graham
2016-06-01Fixed #26675 -- Dropped support for PostgreSQL 9.2/PostGIS 2.0.Tim Graham
2016-05-31Fixed #25645 -- Dropped support for SpatiaLite < 4.0.Tim Graham
2016-05-30Fixed #26653 -- Made SyndicationFeed.latest_post_date() return time in UTC.Ketan Bhatt
2016-05-27Fixed #26646 -- Added IOBase methods required by TextIOWrapper to File.Simon Charette
Thanks Tim for the review.
2016-05-27Fixed #26652 -- Documented removal of model instance _(default/base)_manager ↵Tim Graham
attributes.
2016-05-20Increased the default PBKDF2 iterations.Tim Graham
2016-05-19Added stub 1.11 release notes.Tim Graham
2016-05-19Removed unused sections in 1.10 release notes.Tim Graham
2016-05-19Fixed #20869 -- made CSRF tokens change every request by salt-encrypting themShai Berger
Note that the cookie is not changed every request, just the token retrieved by the `get_token()` method (used also by the `{% csrf_token %}` tag). While at it, made token validation strict: Where, before, any length was accepted and non-ASCII chars were ignored, we now treat anything other than `[A-Za-z0-9]{64}` as invalid (except for 32-char tokens, which, for backwards-compatibility, are accepted and replaced by 64-char ones). Thanks Trac user patrys for reporting, github user adambrenecki for initial patch, Tim Graham for help, and Curtis Maloney, Collin Anderson, Florian Apolloner, Markus Holtermann & Jon Dufresne for reviews.
2016-05-18Fixed #26627 -- Fixed on_commit callbacks execution order when callbacks ↵Barthelemy Dagenais
make transactions.
2016-05-18Fixed #25774 -- Refactor datetime expressions into public APIJosh Smeaton