summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-08-22Refs #28502 -- Complemented stringformat tuple handling/test.Claude Paroz
An additional test and a code change were suggested in a late review.
2017-08-22Fixed #28496 -- Added ModelAdmin.get_changelist_instance().Simon Meers
2017-08-21Fixed #28375 -- Fixed KeyError crash on reverse prefetch of a model with ↵Paulo
OneToOneField primary key to a non-pk field.
2017-08-21Fixed typo in documented number of logging filters.Adrien Brunet
2017-08-21Removed need for hasattr(check, 'tags') in CheckRegistry.Sergey Fedoseev
It was needed to pass tests because registered checks weren't properly mocked.
2017-08-21Removed redundant backticks in docs/releases/1.8.txtBerker Peksag
2017-08-21Removed postgresql_psycopg2.versionMariusz Felisiak
Uneeded since 29ea9714ee23525000dd8bdb7a9aafb2147de8c7.
2017-08-21Fixed #28502 -- Made stringformat template filter accept tuplesSrinivas Reddy Thatiparthy
2017-08-21Django -> django when styled as a logo with font. This was pointed out at ↵Allen, Timothy
DjangoCon US.
2017-08-19Refs #28502 -- Completed stringformat filter testsSrinivas Reddy Thatiparthy
2017-08-16Fixed #28498 -- Fixed test database creation with cx_Oracle 6.Mariusz Felisiak
2017-08-16Removed unused reference in docs/ref/utils.txt.Sergey Fedoseev
Unused since f6acd1d271122d66de8061e75ae26137ddf02658.
2017-08-15Fixed #28495 -- Converted GDAL Feature.fields to stringsClaude Paroz
2017-08-15Simplified generation of result in Query.get_aggregation().Sergey Fedoseev
2017-08-15Simplified RelatedPopulator.populate().Sergey Fedoseev
2017-08-15Removed redundant condition in QuerySet.resolve_expression().Sergey Fedoseev
2017-08-15Avoided creation of temporary set in Query.append_annotation_mask().Sergey Fedoseev
2017-08-15Fixed typo in docs/releases/2.0.txt.Bae KwonHan
2017-08-14Clarified Concat example in docs.Mathieu Hinderyckx
2017-08-12Fixed #28485 -- Made ExceptionReporter.get_traceback_frames() include frames ↵Martin von Gagern
without source code.
2017-08-12Fixed #28201 -- Added ProhibitNullCharactersValidator and used it on ↵Alejandro Zamora
CharField form field.
2017-08-12Fixed #27849 -- Added filtering support to aggregates.Tom
2017-08-12Fixed #23546 -- Added kwargs support for CursorWrapper.callproc() on Oracle.Mariusz Felisiak
Thanks Shai Berger, Tim Graham and Aymeric Augustin for reviews and Renbi Yu for the initial patch.
2017-08-11Refs #28459 -- Improved performance of BaseExpression.convert_value().Sergey Fedoseev
2017-08-11Fixed #28421 -- Split some long FormSet tests and made other cosmetic cleanups.Tim Graham
Thanks Windson for the initial patch.
2017-08-11Refs #28459 -- Optimized ModelState instantiation.Sergey Fedoseev
2017-08-11Fixed #28456 -- Allowed customizing Model pickling by overriding __getstate__().Nerl~
2017-08-11Fixed #28252 -- Corrected docs for default file extensions of makemessages.Jonatas CD
2017-08-11Fixed #27855 -- Updated docs for Python 3.4 support in Django 2.0.Tim Graham
2017-08-11Simplified calculation of used joins in Query.build_filter().Sergey Fedoseev
2017-08-11Made the @cached_property example more consistent.Bryan Helmig
2017-08-11Removed obsolete DecimalComparisonLookup.Sergey Fedoseev
Unneeded since c3c6c92d769d44a98299c462c48a9599c0172e91.
2017-08-11Replaced typecast_decimal() with decimal.Decimal().Sergey Fedoseev
2017-08-11Removed outdated comment in Query.build_filter().Sergey Fedoseev
2017-08-10Fixed #28386 -- Made operations within non-atomic migrations honor the ↵Evan Grim
operation's atomic flag when migrating backwards.
2017-08-10Added missing test for RunPython behavior when unapplying.Evan Grim
2017-08-10Refs #18247 -- Fixed filtering on ↵Sergey Fedoseev
CombinedExpression(output_field=DecimalField()) annotation on SQLite.
2017-08-10Fixed #23766 -- Doc'd CursorWrapper.callproc().Mariusz Felisiak
Thanks Tim Graham for the review.
2017-08-10Refs #28459 -- Improved performance of loading DecimalField on SQLite.Sergey Fedoseev
2017-08-10Refs #16043 -- Refactored internal fields value cache.Paulo
* Removed all hardcoded logic for _{fieldname}_cache. * Added an internal API for interacting with the field values cache. Thanks carljm and MarkusH for support.
2017-08-10Refs #28459 -- Made Oracle get_db_converters() return converter for empty ↵Sergey Fedoseev
strings only when it's needed.
2017-08-09Simplified Float/DecimalField.validate() with math.isfinite().Srinivas Reddy Thatiparthy
2017-08-09Simplified SQLite converter for bool type.Sergey Fedoseev
2017-08-09Fixed argument name in call_command() docstring.Raúl Pedro Fernandes Santos
Follow up to 8f6a1a15516629b30e2fa2c48d5e682f7955868c.
2017-08-09Refs #4518 -- Removed handling of empty strings in typecast_decimal().Sergey Fedoseev
It's unclear if the original change was needed, but it seems unneeded now. Reverted 6fc10f50b0c9b877fffcad4893056cb91fa66b4f.
2017-08-09Fixed typo in docs/releases/2.0.txt.Pavel Karateev
2017-08-08Refs #23766 -- Added tests for CursorWrapper.callproc().Mariusz Felisiak
Thanks Tim Graham for the review.
2017-08-08Refs #7070 -- Improved test for extra(), values(), distinct() and ordering() ↵Sergey Fedoseev
all together. Tested that the extra select that appears in the select clause only because of distinct() and order_by() doesn't appear in the result values.
2017-08-08Refs #28459 -- Improved performance of sql.compiler.cursor_iter().Sergey Fedoseev
2017-08-08Fixed #28465 -- Unified index SQL creation in DatabaseSchemaEditorClaude Paroz
Thanks Tim Graham for the review.