| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2017-09-25 | Merged startswith() calls. | Mariusz Felisiak | |
| 2017-09-25 | Reverted "Fixed #28248 -- Fixed password reset tokens being valid for 1 day ↵ | Tim Graham | |
| longer than PASSWORD_RESET_TIMEOUT_DAYS." This reverts commit 95993a89ce6ca5f5e26b1c22b65c57dcb8c005e9. | |||
| 2017-09-24 | Fixed JS linter error | Claude Paroz | |
| Regression introduced in 1f3dfd783d. | |||
| 2017-09-24 | Updated translation catalogs | Claude Paroz | |
| Forward port of 600104172a9d3cd7c496855110711785feab555a from stable/2.0.x. | |||
| 2017-09-24 | Refs #25006 -- Marked again admin time picker shortcuts for translation | Claude Paroz | |
| 2017-09-22 | Advanced deprecation warnings for Django 2.1. | Tim Graham | |
| 2017-09-22 | Refs #15667 -- Removed support for Widget.render() methods without the ↵ | Tim Graham | |
| renderer argument. Per deprecation timeline. | |||
| 2017-09-22 | Refs #27648 -- Removed support for (iLmsu) regex groups in url() patterns. | Tim Graham | |
| Per deprecation timeline. | |||
| 2017-09-22 | Refs #27532 -- Removed Model._meta.has_auto_field per deprecation timeline. | Tim Graham | |
| 2017-09-22 | Refs #26447 -- Removed the USE_ETAGS setting per deprecation timeline. | Tim Graham | |
| 2017-09-22 | Refs #18974 -- Removed @models.permalink() decorator per deprecation timeline. | Tim Graham | |
| 2017-09-22 | Refs #25187 -- Required the authenticate() method of authentication backends ↵ | Tim Graham | |
| to have request as the first positional argument. Per deprecation timeline. | |||
| 2017-09-22 | Refs #27098 -- Removed DatabaseIntrospection.get_indexes() per deprecation ↵ | Tim Graham | |
| timeline. | |||
| 2017-09-22 | Refs #27175 -- Removed exception silencing from the {% include %} template tag. | Tim Graham | |
| Per deprecation timeline. | |||
| 2017-09-22 | Refs #26956 -- Removed the host parameter of django.utils.http.is_safe_url(). | Tim Graham | |
| Per deprecation timeline. | |||
| 2017-09-22 | Refs #20892 -- Removed support for passing pylibmc behavior settings as ↵ | Tim Graham | |
| top-level attributes of CACHES['OPTIONS']. Per deprecation timeline. | |||
| 2017-09-22 | Refs #27067 -- Removed django.utils.translation.string_concat() per ↵ | Tim Graham | |
| deprecation timeline. | |||
| 2017-09-22 | Refs #26840 -- Removed django.test.runner.setup_databases() per deprecation ↵ | Tim Graham | |
| timeline. | |||
| 2017-09-22 | Refs #26929 -- Removed extra_context parameter of ↵ | Tim Graham | |
| contrib.auth.views.logout_then_login(). Per deprecation timeline. | |||
| 2017-09-22 | Refs #17209 -- Removed login/logout and password reset/change function-based ↵ | Tim Graham | |
| views. Per deprecation timeline. | |||
| 2017-09-22 | Bumped version; master is now 2.1 pre-alpha. | Tim Graham | |
| 2017-09-22 | Fixed #27332 -- Added FilteredRelation API for conditional join (ON clause) ↵ | Nicolas Delaby | |
| support. Thanks Anssi Kääriäinen for contributing to the patch. | |||
| 2017-09-22 | Removed unused eof argument to BoundaryIter._find_boundary(). | Mariusz Felisiak | |
| Unused since its introduction in d725cc9734272f867d41f7236235c28b3931a1b2. | |||
| 2017-09-22 | Refs #28593 -- Made URLResolver._populate() more resilient to signal interrupts. | Daniel Tao | |
| _populate() sets the populating attribute to prevent infinite recursion in case a urlconf includes itself. The flag is a threadlocal to avoid a race condition [1] where one thread sets the flag and another checks it, then proceeds to access data that's supposed to be populated (e.g. _reverse_dict) but isn't yet. The potential still exists for a thread to set the threadlocal, then be interrupted by a signal such as SIGALRM and raise before resetting the threadlocal flag. In this scenario, subsequent calls to _populate() in the same thread will short-circuit erroneously. The bulk of the method was already wrapped in a try/finally in df41b5a, but since a signal interrupt can occur at any line executed by the interpreter, this moves up the try to ensure threadlocal gets reset. [1]: https://groups.google.com/d/msg/django-developers/D_bIeinKHjE/4NmVQUJqAgAJ | |||
| 2017-09-21 | Refs #28595 -- Added a hook to add execute wrappers for database queries. | Shai Berger | |
| Thanks Adam Johnson, Carl Meyer, Anssi Kääriäinen, Mariusz Felisiak, Michael Manfre, and Tim Graham for discussion and review. | |||
| 2017-09-21 | Fixed #28508 -- Set the foreground color to black in CSRF and 404 error ↵ | Stefan Sinca | |
| templates. | |||
| 2017-09-21 | Fixed #28576 -- Added color interpretation method to GDALBand. | Niall Dalton | |
| 2017-09-20 | Fixed #28617 -- Made ogrinspect output pep8 compliant. | Thomas Schorr | |
| 2017-09-20 | Fixed #28593 -- Added a simplified URL routing syntax per DEP 0201. | Sjoerd Job Postmus | |
| Thanks Aymeric Augustin for shepherding the DEP and patch review. Thanks Marten Kenbeek and Tim Graham for contributing to the code. Thanks Tom Christie, Shai Berger, and Tim Graham for the docs. | |||
| 2017-09-20 | Fixed #28488 -- Reallowed error handlers to access CSRF tokens. | Florian Apolloner | |
| Regression in eef95ea96faef0b7dbbe0c8092202b74f68a899b. | |||
| 2017-09-20 | Removed unused list in Query.resolve_lookup_value(). | Nicolas Delaby | |
| Unneeded since its introduction in 4f138fe5a496a81115c4fba6615a517fc62c3b17. | |||
| 2017-09-19 | Refs #28334 -- Fixed crash in hstore/citext oid caching during test db creation. | Tim Graham | |
| 2017-09-18 | Fixed #28597 -- Fixed crash with the name of a model's autogenerated primary ↵ | Mariusz Felisiak | |
| key in an Index's fields. | |||
| 2017-09-18 | Fixed #14370 -- Allowed using a Select2 widget for ForeignKey and ↵ | Johannes Hoppe | |
| ManyToManyField in the admin. Thanks Florian Apolloner and Tim Graham for review and contributing to the patch. | |||
| 2017-09-18 | Refs #14370 -- Vendored Select2 4.0.3 for use by the admin. | Johannes Hoppe | |
| From https://github.com/select2/select2/releases/tag/4.0.3 | |||
| 2017-09-18 | Fixed #26608 -- Added support for window expressions (OVER clause). | Mads Jensen | |
| Thanks Josh Smeaton, Mariusz Felisiak, Sergey Fedoseev, Simon Charettes, Adam Chainz/Johnson and Tim Graham for comments and reviews and Jamie Cockburn for initial patch. | |||
| 2017-09-18 | Changed default value of DatabaseFeatures.has_bulk_insert to True. | Mads Jensen | |
| 2017-09-16 | Fixed #26818 -- Added responsive CSS for the admin. | elky | |
| 2017-09-16 | Removed unneeded StdDev.convert_value() and Variance.convert_value(). | Sergey Fedoseev | |
| Seems unneeded since its introduction in f59fd15c4928caf3dfcbd50f6ab47be409a43b01. | |||
| 2017-09-16 | Simplified Count.convert_value() and RegrCount.convert_value(). | Sergey Fedoseev | |
| 2017-09-15 | Fixed #28334 -- Added caching for hstore/citext OIDs. | Igor Gumenyuk | |
| 2017-09-15 | Removed unnecessary check in SQLCompiler.get_related_selections(). | Tim Graham | |
| 2017-09-13 | Removed unnecessary parens in various code. | Mariusz Felisiak | |
| 2017-09-13 | Refs #28593 -- Moved django.conf.urls.include() to django.urls(). | Tim Graham | |
| The old location remains for backwards compatibility. Documentation will be updated separately along with the rest of the URL routing changes. | |||
| 2017-09-13 | Merged isinstance() calls. | Mariusz Felisiak | |
| 2017-09-13 | Refs #27090 -- Added real database sequence introspection. | Mariusz Felisiak | |
| Thanks Mariusz Felisiak for the Oracle part and Tim Graham for the review. | |||
| 2017-09-12 | Refs #28569 -- Fixed gis_tests.inspectapp.tests.OGRInspectTest.test_time_field. | Sergey Fedoseev | |
| 2017-09-12 | Fixed #28440 -- Fixed WSGIServer hang on responses without a Content-Length. | Tom | |
| Disabled keep-alive to fix the regression in e6065c7b8363202c5eb13ba10c97a8c24d014b45. | |||
| 2017-09-12 | Moved contrib.gis.geometry.regex to contrib.gis.geometry. | Tim Graham | |
| 2017-09-12 | Removed django.contrib.gis.geometry.backend. | Tim Graham | |
| The layer of indirection is unchanged and undocumented since its introduction in ff60c5f9de3e8690d1e86f3e9e3f7248a15397c8. | |||
