| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2016-05-30 | Refs #26621 -- Added tests for admindocs.views.simplify_regex(). | Tim Graham | |
| 2016-05-30 | Fixed #13080 -- Corrected accepted values of sender parameter in ↵ | Berker Peksag | |
| Signal.connect() docstring. | |||
| 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 | Added RemovedInDjango21Warning | Tim Graham | |
| 2016-05-28 | Confirmed support for PostGIS 2.2. | Tim Graham | |
| 2016-05-28 | Refs #22634 -- Removed unneeded app_label in custom session engine example. | Tim Graham | |
| 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 #26645 -- Fixed potential makemessages failures on Windows. | Ramiro Morales | |
| This was reflected by 27 i18n test errors (not failures) on such platform caused by corrupt intermediate PO catalog files fed to `msgmerge(1)`. Made it handle in-memory PO/POT file contents with normalized line separators (`'\n'`). We need to perform manually this after using `subprocess.Popen` as we can't pass it `universal_newlines=True`. Also fixes #26670 in the process as this commit refactors the same code section. | |||
| 2016-05-27 | Fixed #26635 -- Clarified Argon2PasswordHasher's memory_cost differs from ↵ | Bas Westerbaan | |
| command line utility. | |||
| 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-27 | Fixed #26652 -- Documented removal of model instance _(default/base)_manager ↵ | Tim Graham | |
| attributes. | |||
| 2016-05-27 | Fixed typo in docs/topics/forms/modelforms.txt | Sergey Fedoseev | |
| 2016-05-27 | Fixed typo in docs/ref/models/querysets.txt | Nick Smith | |
| 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-25 | Added imports to docs/topics/db/aggregation.txt example. | MariKiev | |
| 2016-05-25 | Added missing quotes in openlayers.html template. | Aleksey | |
| 2016-05-24 | Refs #26134 -- Updated deprecated MySQL GIS function names. | Tim Graham | |
| 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-21 | Revert "Disable patch coverage checks" | Markus Holtermann | |
| Mistakenly pushed to django/django instead of another repo This reverts commit 6dde884c01156e36681aa51a5e0de4efa9575cfd. | |||
| 2016-05-21 | Disable patch coverage checks | Markus Holtermann | |
| 2016-05-20 | Removed versionadded/changed annotations for 1.9. | Tim Graham | |
| 2016-05-20 | Increased the default PBKDF2 iterations. | Tim Graham | |
| 2016-05-19 | Added stub 1.11 release notes. | Tim Graham | |
| 2016-05-19 | Bumped version; master is now 1.11 pre-alpha. | 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 | Removed unused sections in 1.10 release notes. | Tim Graham | |
| 2016-05-19 | Fixed some newlines in imports per isort. | Tim Graham | |
| 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 #26637 -- Removed obsolete note in ↵ | Tim Graham | |
| docs/internals/contributing/writing-documentation.txt | |||
| 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 | Fixed #26636 -- Fixed typo in docs/ref/request-response.txt | Tim Graham | |
| 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 | |
| 2016-05-18 | Fixed #26627 -- Fixed on_commit callbacks execution order when callbacks ↵ | Barthelemy Dagenais | |
| make transactions. | |||
| 2016-05-18 | Fixed running auth_tests in isolation after ↵ | Loïc Bistuer | |
| 3a47d42fa33012b2156bf04058d933df6b3082d2. | |||
| 2016-05-18 | Fixed #25774 -- Refactor datetime expressions into public API | Josh Smeaton | |
| 2016-05-18 | Refs #25774 -- Made Oracle truncate microseconds if USE_TZ=False. | Josh Smeaton | |
| The tests for this change are in the fix for #25774. | |||
| 2016-05-17 | Fixed #26613 -- Made sqlite3 optional in SchemaEditor.quote_value(). | Philip Liberato | |
| 2016-05-17 | Fixed #14415 -- Used the test database name in ↵ | boaz85@gmail.com | |
| BaseDatabaseCreation.test_db_signature(). | |||
| 2016-05-17 | Updated translation catalogs | Claude Paroz | |
| 2016-05-17 | Fixed #24067 -- Renamed content types upon model renaming. | Simon Charette | |
| Thanks to Tim for the extensive review. | |||
| 2016-05-17 | Refs #26601 -- Added a warning if both MIDDLEWARE AND MIDDLEWARE_CLASSES are ↵ | Tim Graham | |
| set. | |||
