| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2016-06-08 | Fixed #26717 -- Added Serializer.stream_class to customize the stream. | Berker Peksag | |
| 2016-06-07 | Fixed #10107 -- Allowed using mark_safe() as a decorator. | Scott Vitale | |
| Thanks ArcTanSusan for the initial patch. | |||
| 2016-06-07 | Fixed #26716 -- Made CurrentSiteMiddleware compatible with new-style middleware. | Brett Haydon | |
| 2016-06-06 | Fixed #26710 -- Made CreateModel.references_model() take app_label into account. | Sergey Fedoseev | |
| 2016-06-06 | Refs #26712 -- Removed workarounds for PostgreSQL queries on TIME_ZONE changes. | Simon Charette | |
| 2016-06-06 | Fixed #26707 -- Added QueryDict.fromkeys() | wim glenn | |
| 2016-06-04 | Fixed #24781 -- Fixed repr() for lazy objects. | Chesco Igual | |
| 2016-06-04 | Fixed #19963 -- Added support for date_hierarchy across relations. | Vytis Banaitis | |
| 2016-06-04 | Fixed #26628 -- Changed CSRF logger to django.security.csrf. | Holly Becker | |
| 2016-06-04 | Fixed #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-04 | Fixed #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-03 | Fixed #26698 -- Fixed PostgreSQL dbshell crash on an empty database name. | mieciu | |
| 2016-06-03 | Fixed #15250 -- Avoided extra query on some multi-table inheritance queries. | Paulo | |
| Thanks marekw2143 for the initial patch and carljm for support. | |||
| 2016-06-03 | Fixed #26638 -- Allowed callable arguments for ↵ | Will Koster | |
| QuerySet.get_or_create()/update_or_create() defaults. | |||
| 2016-06-02 | Fixed #26666 -- Added more useful error message to assertRedirects | Tobias McNulty | |
| 2016-06-02 | Fixed #26672 -- Fixed HStoreField to raise ValidationError instead of ↵ | Brad Melin | |
| crashing on non-dict JSON input. | |||
| 2016-06-02 | Fixed #26686 -- Fixed crash when registering model signals with abstract ↵ | Alex Hill | |
| senders. | |||
| 2016-06-02 | Fixed #26617 -- Added distinct argument to contrib.postgres's StringAgg. | Rustam Kashapov | |
| 2016-06-02 | Fixed #26616 -- Improved error message when AppConfig.name is invalid. | inondle | |
| 2016-06-01 | Fixed #26694 -- Made FileBasedCache.get() reraise non-ENOENT IOErrors. | Jon Dufresne | |
| 2016-06-01 | Fixed #26692 -- Relaxed an i18n compilemessages test. | Ramiro Morales | |
| The actual non-ASCII character differs on Windows. | |||
| 2016-06-01 | Fixed #26675 -- Dropped support for PostgreSQL 9.2/PostGIS 2.0. | Tim Graham | |
| 2016-05-31 | Avoided uncessary table creation in model_inheritance tests. | Simon Charette | |
| 2016-05-31 | Fixed #26676 -- Prevented prefetching to_attr from caching its result in ↵ | Simon Charette | |
| through attr. Thanks Ursidours for the report. | |||
| 2016-05-31 | Fixed #26691 -- Removed checking for a file's existence before deleting. | Jon Dufresne | |
| File operations always raise a ENOENT error when a file doesn't exist. Checking the file exists before the operation adds a race condition condition where the file could be removed between operations. As the operation already raises an error on a missing file, avoid this race and avoid checking the file exists twice. Instead only check a file exists by catching the ENOENT error. | |||
| 2016-05-31 | Fixed #26687 -- Made an i18n test not use a hardcoded path separator. | Ramiro Morales | |
| Fixed a failure on Windows. | |||
| 2016-05-31 | Fixed #25645 -- Dropped support for SpatiaLite < 4.0. | Tim Graham | |
| 2016-05-30 | Refs #26653 -- Fixed a feedgenerator test that requires a database query on ↵ | Tim Graham | |
| PostgreSQL. | |||
| 2016-05-30 | Fixed #26653 -- Made SyndicationFeed.latest_post_date() return time in UTC. | Ketan Bhatt | |
| 2016-05-30 | Fixed #25044 -- Fixed migrations for renaming ManyToManyField's through model. | Vytis Banaitis | |
| 2016-05-30 | Refs #26621 -- Added tests for admindocs.views.simplify_regex(). | Tim Graham | |
| 2016-05-29 | Fixed #26674 -- Corrected a i18n makemessages test. | Ramiro Morales | |
| Made it consistently read the PO file, decode its contents and then check for the non-breaking space Unicode code point. Previously we were erroneously skipping the interpretation of what we read as UTF-8 text. This was causing the test to fail on Windows with Python 3.5. | |||
| 2016-05-28 | Fixed #26673 -- Fixed a I18N test case error on Windows+Python 2.7. | Ramiro Morales | |
| `subprocess.Popen` doesn't accept enviroment vars with Unicode var name or value. | |||
| 2016-05-28 | Refs #24227 -- Fixed crash of ManyToManyField.value_from_object() on unsaved ↵ | Tim Graham | |
| model instances. This behavior was removed in 67d984413c9540074e4fe6aa033081a35cf192bc but is needed to prevent a crash in formtools. | |||
| 2016-05-27 | Fixed #26646 -- Added IOBase methods required by TextIOWrapper to File. | Simon Charette | |
| Thanks Tim for the review. | |||
| 2016-05-27 | Fixed #26573 -- Added descriptive error message for malformed if/else/elif ↵ | inondle | |
| template tags. | |||
| 2016-05-27 | Fixed #26642 -- Made ModelSignal.disconnect() work with lazy references. | Alex Hill | |
| 2016-05-27 | Refs #25588 -- Fixed GDAL dependency in spatial lookups. | Daniel Wiesmann | |
| 2016-05-26 | Fixed #26647 -- Included the state of all applied migrations when migrating ↵ | Simon Charette | |
| forward. Thanks Jasper Maes for the detailed report. | |||
| 2016-05-23 | Updated GeoIP test for latest database. | Tim Graham | |
| 2016-05-21 | Refs #24067 -- Fixed contenttypes rename tests failures on Oracle. | Simon Charette | |
| Broke the initial migration in two to work around #25530 and added 'django.contrib.auth' to the available_apps to make sure its tables are also flushed as Oracle doesn't implement cascade deletion in sql_flush(). Thanks Tim for the report. | |||
| 2016-05-21 | Removed an obsolete comment about a fixed ticket. | Simon Charette | |
| 2016-05-20 | Increased the default PBKDF2 iterations. | Tim Graham | |
| 2016-05-19 | Fixed #26421 -- Refactored ModelSignal to use Apps.lazy_model_operation() | Alex Hill | |
| 2016-05-19 | Refs #26421 -- Refactored Apps.lazy_model_operation() for better checks and ↵ | Alex Hill | |
| tests | |||
| 2016-05-19 | Refs #24100 -- Fixed a test failure on MySQL related to non-transactional DDL. | Simon Charette | |
| Thanks Tim for the report. | |||
| 2016-05-19 | Fixed #26515 -- Fixed Query.trim_joins() for nested ForeignObjects. | darius BERNARD | |
| 2016-05-19 | Fixed #20869 -- made CSRF tokens change every request by salt-encrypting them | Shai 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-18 | Moved the AUTH_USER_MODEL setting changed receiver. | Simon Charette | |
| Test suites besides Django's may need the same behavior. | |||
| 2016-05-18 | Fixed #26620 -- Made Model.refresh_from_db() fail when passed unknown kwargs. | Marti Raudsepp | |
