summaryrefslogtreecommitdiff
path: root/django
AgeCommit message (Collapse)Author
2016-10-12Fixed #19705 -- Set proper headers on conditional Not Modified responses.Kevin Christopher Henry
2016-10-12Removed unused SubqueryConstraint.relabel_aliases() and clone() methods.Tim Graham
Unused since b68212f539f206679580afbfd008e7d329c9cd31.
2016-10-11Replaced '__' with LOOKUP_SEP constant.Nick Pope
2016-10-11Added missing roles/options to parse_color_setting()'s docstring.Nick Pope
2016-10-10Removed unused contrib.admin.utils.remove_trailing_data_field().Tim Graham
Unused since 8f30556329b64005d63b66859a74752a0b261315.
2016-10-10Fixed #26447 -- Deprecated settings.USE_ETAGS in favor of ↵Denis Cornehl
ConditionalGetMiddleware.
2016-10-10Fixed gis_tests.geoapp when run in isolation.Tim Graham
"from django.db.models import *" in contrib/gis/db/models/__init__.py could obscure gis's functions.py resulting in exceptions like: "module 'django.db.models.functions' has no attribute 'Union'".
2016-10-07Fixed #24941 -- Added ModelAdmin.get_exclude().Zach Borboa
Thanks Ola Sitarska for the initial patch.
2016-10-07Fixed #26327 -- Added JsonAgg to contrib.postgres.Mads Jensen
Thanks Tim Graham for review.
2016-10-06Fixed #27301 -- Prevented exceptions that fail unpickling from crashing the ↵Adam Wróbel
parallel test runner.
2016-10-06Fixed #27244 -- Changed Greek's thousand separator from space to dot.kappataumu
2016-10-06Fixed #27300 -- Made makemigrations --dry-run output a string (no bytes)Claude Paroz
Thanks Markus Holtermann for the report and the review.
2016-10-05Fixed #27262 -- Moved URL checks to resolver and pattern classes.Lucas Lois
Thanks Sjoerd Job Postmus for the report and review.
2016-10-05Removed unused variable in django/core/mail/backends/smtp.py.Tim Graham
2016-10-05Fixed #27273 -- Added a construct_change_message() admin utility function.Tim Graham
2016-10-04Refs #18974 -- Deprecated @models.permalink() decorator.Tim Graham
2016-10-04Fixed #27218 -- Returned LogEntry instances from ModelAdmin.log_*() methods.François Freitag
2016-10-04Fixed #27193 -- Preserved ordering in select_for_update subqueries.François Freitag
2016-10-04Refs #27118 -- Reallowed using pk in QuerySet.get/update_or_create().François Freitag
2016-10-04Fixed #27279 -- Fixed a migration performance regression related to ↵Simon Charette
RenameModel operations. Thanks Trac alias mtomiyoshi for the report, Marten Kenbeek for the initial patch and Tim for the review.
2016-10-04Fixed #27309 -- Added CallableBool.__hash__().Reto Aebersold
2016-10-02Fixed #27305 -- Removed BaseCommand.can_import_settings unused attributeClaude Paroz
Thanks Tim Graham for the review.
2016-10-01Fixed #27302 -- Fixed ModelAdmin.construct_change_message() changed field ↵Claude Paroz
detection Thanks Ramiro Morales for the report and Tim Graham for the review.
2016-10-01Fixed #26541 -- Allowed MySQL transaction detection to work without table ↵Mariusz Felisiak
creation.
2016-10-01Refs #26940 -- Re-allowed makemessages without settingsClaude Paroz
Thanks Tim Graham for the review.
2016-09-30Updated translations from TransifexClaude Paroz
Forward port of bfc9c727256ded75dd9438167d6549b195361a0d from stable/1.10.x.
2016-09-30Refs #27186 -- Fixed model form default fallback for CheckboxSelectMultiple.Tim Graham
2016-09-30Removed unneeded no_settings_commands hardcoded listClaude Paroz
Thanks Tim Graham for the review.
2016-09-30Updated links to the current version of MySQL docs.Tim Graham
2016-09-28Fixed #27217 -- Fixed crash in CreateModel optimization with models that use ↵Tim Graham
mixins. Thanks Simon Charette for review.
2016-09-28Fixed #27226 -- Removed patch_response_headers()'s setting of the ↵Rinat Khabibiev
Last-Modified header.
2016-09-27Split admin_docs tests into separate files.Tim Graham
2016-09-27Fixed #27282 -- Allowed using an integer DATABASES['PORT'] for Oracle.Zapelini
2016-09-27Fixed #27268 -- Restored an invalid related field lookup error message in ↵Mariusz Felisiak
QuerySet filtering.
2016-09-27Fixed #27210 -- Allowed SMTPBackend to fail silently on a socket connection ↵Vesteinn Snaebjarnarson
error.
2016-09-27Fixed #20705 -- Allowed using PasswordResetForm with user models with an ↵levental
email field not named 'email'.
2016-09-27Removed unused branch in SQLCompiler.as_subquery_condition().Tim Graham
Unused since dcdc579d162b750ee3449e34efd772703592faca.
2016-09-27Fixed #27266 -- Allowed using assertFormError()/assertFormsetError() in ↵Tim Graham
admin forms and formsets. Thanks Diego Andrés Sanabria Martín for the report and review.
2016-09-27Fixed #27271 -- Fixed a crash in runserver logging.Sergey Fursov
Allowed ServerFormatter to handle simple string messages or messages with formatting arguments. The formatter will set the server_time variable on the log record if it's required by the format string but wasn't passed in extra parameters.
2016-09-26Removed missing name in django.db __all__.Adam Chainz
'backend' hasn't existed since 051c666acac770dea1af2fc223cc695f985f02f7.
2016-09-26Removed obsolete lines in DeferredAttribute.__get__().Tim Graham
Obsolete as of c21e86ab9e3e5ebd6d245d038cb0cb352cd84c3a.
2016-09-26Removed DatabaseError and IntegrityError declarations from database backends.Adam Chainz
Unused since 11ee9746a0530ec38f523fb4de44950d9b783877.
2016-09-24Fixed #27118 -- Made QuerySet.get_or_create()/update_or_create() error for a ↵François Freitag
non-field in their arguments.
2016-09-24Removed unused FieldGetDbPrepValueMixin.get_prep_lookup_value().Tim Graham
Unused since its introduction in 4f138fe5a496a81115c4fba6615a517fc62c3b17.
2016-09-23Removed unused Prefetch.get_current_prefetch_through().Tim Graham
Unused since its introduction in f51c1f590085556abca44fd2a49618162203b2ec.
2016-09-23Removed unused regexes from django.utils.html.Jon Dufresne
Last uses removed in commit 8b81dee60c1533e714a310fa5c3907356042a64c.
2016-09-23Fixed #27261 -- Added missing python-brace-format markerClaude Paroz
Thanks Maxime Vdb for the report.
2016-09-22Fixed #27257 -- Fixed builtin text lookups on JSONField keys.Simon Charette
Thanks Nick Stefan for the report and Tim for the review.
2016-09-22Removed unnecessary casting when using builtin lookups on PostgreSQL.Simon Charette
2016-09-22Fixed #27159 -- Prevented pickling a query with an __in=inner_qs lookup from ↵Jani Tiainen
evaluating inner_qs.