summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-08-26Fixed #28532 -- Fixed typo in PostgreSQL field docsClaude Paroz
Thanks Andreas Poisel for the report.
2017-08-25Simplified migrations.state.ProjectState.__eq__().Sergey Fedoseev
2017-08-24Fixed #28518 -- Improved performance of loading geometries from DB.Sergey Fedoseev
2017-08-24Used sets for CheckRegistry.registered_checks and deployment_checks.Sergey Fedoseev
2017-08-24Fixed #28513 -- Added POST request support to LogoutView.hui shang
2017-08-24Fixed #28380 -- Excluded null geometries in SpatiaLite geometry lookups.Fabian Schindler
2017-08-23Simplified migrations.graph.Node.iterative_dfs(), ancestors(), and ↵Sergey Fedoseev
descendants().
2017-08-23Fixed #27796 -- Prevented middleware being loaded twice with runserverClaude Paroz
Thanks Tim Graham for the review.
2017-08-23Removed unneeded iter() calls.Sergey Fedoseev
A few of these were unnecessarily added in 2b281cc35ed9d997614ca3c416928d7fabfef1ad.
2017-08-23Refs #28459 -- Improved performance of SQLCompiler.apply_converters().Sergey Fedoseev
2017-08-23Used frozenset instead of dict for GeoIP2.cache_options for simplicity.Sergey Fedoseev
2017-08-23Used OrderedDict.fromkeys() to initialize OrderedDict with None values.Sergey Fedoseev
2017-08-23Refs #28498 -- Forwardported 1.11.5 release note.Mariusz Felisiak
2017-08-23Fixed typo in docs/releases/1.11.5.txt.Mariusz Felisiak
2017-08-22Fixed #27931 -- Clarified the meaning of "django catch-all logger."Kim DoHyeon
2017-08-22Simplified usage of sets in MigrationAutodetector.Sergey Fedoseev
2017-08-22Fixed #28451 -- Restored pre-Django 1.11 Oracle sequence/trigger naming.Kevin Grinberg
Regression in 69b7d4b116e3b70b250c77829e11038d5d55c2a8.
2017-08-22Refs #28459 -- Improved performance of FlatValuesListIterable.Sergey Fedoseev
2017-08-22Added "test --keepdb" to testing speedup docs.Harry Moreno
2017-08-22Fixed incorrect indentation in remove_stale_contenttypes.Nick Pope
It's unnecessary for content_type_display to be constructed from ct_info in every loop iteration.
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