summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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 #27076 -- Documented contrib.admin.sites.AdminSite.register().Austin Simmons
2016-09-27Fixed #20705 -- Allowed using PasswordResetForm with user models with an ↵levental
email field not named 'email'.
2016-09-27Fixed #27053 -- Documented contrib.auth.get_user().Berker Peksag
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-26Added CVE-2016-7401 to the security release archive.Tim Graham
2016-09-26Added a CVE role for Sphinx.Tim Graham
2016-09-26Fixed #27278 -- Fixed an anchor in docs/topics/forms/formsets.txt.Tim Graham
2016-09-26Added release notes for 1.9.10 and 1.8.15 releases.Tim Graham
2016-09-26Fixed #27276 -- Doc'd how to reverse admin's login view.Jonatas CD
2016-09-26Fixed #27270 -- Clarified a paragraph in docs/topics/forms/formsets.txt.Tim Graham
Thanks Kifsif for the suggestion.
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-24Fixed typo in tests/aggregation_regress/tests.py.Tim Graham
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-23Simplified has_perm() example in topics/auth/customizing.txt.Berker Peksag
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.
2016-09-22Used HTTPS link to djangoproject.com in setup.py.Adam Chainz
2016-09-22Fixed #27158 -- Fixed positioning of admin's many-to-many widgets in rtl.css.Mehdi Pourfar
2016-09-22Fixed #27186 -- Fixed model form default fallback for MultiWidget, ↵Tim Graham
FileInput, SplitDateTimeWidget, SelectDateWidget, and SplitArrayWidget. Thanks Matt Westcott for the review.
2016-09-22Fixed #27056 -- Allowed migrating geometry field dimension on PostGISClaude Paroz
Thanks Tim Graham for the review.
2016-09-22Refs #27056 -- Rearranged gis_migrations test case classesClaude Paroz
2016-09-21Fixed #27256 -- Changed Select widget's selected attribute to use HTML5 ↵Jon Dufresne
boolean syntax.
2016-09-21Fixed #26210 -- Prevented SMTP backend from trying to send mail after a ↵levental
connection failure.
2016-09-21Tested model signals "sender" parameter when defer() is used.Mathieu Pillard
This was fixed when dynamic classes for deferred instance loading was removed in 7f51876f99851fdc3fef63aecdfbcffa199c26b9.
2016-09-21Refs #16682 -- Tested transaction.atomic() with KeyboardInterrupt.Claude Paroz
2016-09-21Doc'd how to use GitHub's "Squash and merge" button.Tim Graham
2016-09-21Alphabetized classes in contrib.postgres.operations.Tim Graham
2016-09-21Fixed #26610 -- Added CITextField to contrib.postgres.Mads Jensen
2016-09-21Added myself to ops team (#7273)Markus Holtermann
2016-09-20Refs #27025 -- Fixed ArrayField querying on Python 3.6.Tim Graham
Python 3.6 parses strings like '0_1' as numeric literals. http://bugs.python.org/issue26331
2016-09-20Added tests for ArrayField lookup errors.Tim Graham
2016-09-19Fixed #27238 -- Disabled check_pattern_startswith_slash if ↵Alasdair Nicol
settings.APPEND_SLASH=False. Thanks strycore for the report and timgraham for suggesting the solution.
2016-09-19Fixed #27219 -- Changed cx_Oracle client encoding to AL32UTF8 to allow ↵Dmitry Medvinsky
4-byte characters.
2016-09-19Fixed #27165 -- Removed unnecessary CreateModel(... 'indexes': []) in ↵akki
migrations.
2016-09-19Removed invalid year character from datetime format in Azerbaijani locale.Emin Mastizada
Azerbaijani switched to Latin letters after Soviets and doesn't add il when writing date time formats.
2016-09-17Fixed a typo in docs/topics/auth/default.txt.aruseni
2016-09-17Refs #27025 -- Fixed a timezone test for Python 3.6.Tim Graham
Reflects behavior changes in PEP 495 (Local Time Disambiguation).
2016-09-17Refs #27025 -- Fixed "invalid escape sequence" warnings in Python 3.6.Tim Graham
http://bugs.python.org/issue27364