summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-01-17[1.11.x] Bumped version to 1.11a1.1.11a1Tim Graham
2017-01-17[1.11.x] Updated man page for Django 1.11 alpha.Tim Graham
2017-01-17[1.11.x] Bumped django_next_version in docs config.Tim Graham
2017-01-17Removed obsolete GIS install instructions.Tim Graham
2017-01-17Fixed #27739 -- Documented LabelCommand.label.Ed Morley
2017-01-17Refs #24109 -- Doc'd the elidable feature in squashing migrations docs.Ed Morley
2017-01-17Refs #27683 -- Allowed setting isolation level in DATABASES ['OPTIONS'] on ↵Tim Graham
MySQL.
2017-01-17Refs #27666 -- Added ProjectState.reload_models().Markus Holtermann
2017-01-17Fixed #27666 -- Delayed rendering of recursivly related models in migration ↵Markus Holtermann
operations.
2017-01-16Refs #27690 -- Removed sleep before drop test db on Oracle.Mariusz Felisiak
2017-01-16Refs #25809 -- Made a few late review comments for BrinIndex.Mads Jensen
2017-01-16Fixed #27735 -- Doc'd form widget l10n change (refs #15667).Tim Graham
2017-01-16Moved unneeded ImproperlyConfigured inner imports.Tim Graham
2017-01-16Fixed #25307 -- Fixed QuerySet.annotate() crash with conditional expressions.Josh Smeaton
Thanks Travis Newport for the tests and Josh Smeaton for contributing to the patch.
2017-01-16Removed empty sections from 1.11 release notes.Tim Graham
2017-01-16Fixed #27736 -- Used decorators for lookup registration.Mads Jensen
2017-01-16Refs #16614 -- Called _prepare_cursor() on every created cursor.François Freitag
2017-01-16Removed unneeded variable in contrib/postgres/fields/jsonb.py.Dmitry Dygalo
2017-01-15Refs #25809 -- Prefered imports from django.db.models.Mads Jensen
2017-01-15Fixed #25809 -- Added BrinIndex support in django.contrib.postgres.Mads Jensen
Thanks Tim Graham and Markus Holtermann for review.
2017-01-14Fixed #27149 -- Added Subquery and Exists database expressions.Matthew Schinckel
Thanks Josh Smeaton for Oracle fixes.
2017-01-14Fixed #27718 -- Added QuerySet.union(), intersection(), difference().Florian Apolloner
Thanks Mariusz Felisiak for review and Oracle assistance. Thanks Tim Graham for review and writing docs.
2017-01-14Fixed #27387 -- Doc'd required HTML attribute in Field.required docs.Claude Paroz
2017-01-14Refs #16614 -- Prevented database errors from being masked by cursor close.François Freitag
When an error occurred during the cursor.execute statement, the cursor is closed. This operation did not fail with client-side cursors. Now, with server-side cursors, the close operation might fail (example below). The original error should be raised, not the one raised by cursor.close(), this is only clean-up code. For example, one can attempt to create a named cursor for an invalid query. psycopg will raise an error about the invalid query and the server-side cursor will not be created on PostgreSQL. When the code attempts to cursor.close(), it asks psycopg to close a cursor that was not created. pyscopg raises a new error: psycopg2.OperationalError: cursor "_django_curs_140365867840512_20" does not exist.
2017-01-14Refs #25226 -- Cloned ArrayField.base_field on deconstruction.Simon Charette
This prevents the base_field from sharing attributes with the one used during migrations.
2017-01-14Fixed #27699 -- Added negative timedelta support to parse_duration()Jinank Jain
2017-01-14Fixed tests that rely on hardcoded id with keepdbJosh Smeaton
2017-01-14Changed a test to be consistent when run in parallel.Josh Smeaton
This particular test was sometimes failing when running the test suite in parallel. The `id` was different depending on the order the tests were run. The test was incorrectly comparing model primary keys rather than ensuring they didn't change.
2017-01-13Fixed #27709 -- Fixed get_for_models() for proxies with an empty cache.Simon Charette
Thanks Peter Inglesby for the report and tests.
2017-01-13Fixed #27518 -- Prevented possibie password reset token leak via HTTP ↵Romain Garrigues
Referer header. Thanks Florian Apolloner for contributing to this patch and Collin Anderson, Markus Holtermann, and Tim Graham for review.
2017-01-13Removed available_apps on TestCase subclasses.Simon Charette
TestCase subclasses are wrapped in a transaction that prevents any data from being persisted between test runs andi thus don't require limiting the tables to be flushed to a subset of available apps like TransactionTestCase subclasses do.
2017-01-13Made contenttypes and auth apps unavailable when not necessary in tests.Simon Charette
2017-01-13Refs #20483 -- Implemented cascaded flush on Oracle.Simon Charette
The initial implementation added support for PostgreSQL but it is also required on Oracle (13b7f299de79e3eb101c3f015386eba39a8f3928). Thanks Mariusz Felisiak for the foreign key retreival queries.
2017-01-13Fixed #27723 -- Set MultiWidget's subwidgets input type from attrs argument.Mariusz Felisiak
Regression in b52c73008a9d67e9ddbb841872dc15cdd3d6ee01.
2017-01-12Split AuthTemplateTests into test methods.Tim Graham
2017-01-12Fixed #27721 -- Added interface name to shell's IPython/bython import error.Peter Inglesby
2017-01-12Fixed outdated log level in docs/topics/logging.txt.André Cruz
Refs b3acdeee502e961065bfcdb7673d7cf91ab5b283.
2017-01-11Fixed #27713 -- Clarified NoReverseMatch error message when no view is found.Marten Kenbeek
2017-01-11Fixed typos in docs/ref/contrib/admin/index.txtTim Graham
2017-01-11Fixed typo in docs/topics/db/managers.txt.M Somerville
2017-01-11Refs #16614 -- Made QuerySet.iterator() use server-side cursors on PostgreSQL.François Freitag
Thanks to Josh Smeaton for the idea of implementing server-side cursors in PostgreSQL from the iterator method, and Anssi Kääriäinen and Kevin Turner for their previous work. Also Simon Charette and Tim Graham for review.
2017-01-11Fixed #24452 -- Fixed HashedFilesMixin correctness with nested paths.David Sanders
2017-01-10Fixed #27717 -- Allowed migration optimization across AlterModelOptions.Ed Morley
2017-01-10Fixed #27712 -- Reallowed Input widget's attrs argument to set the input type.Mariusz Felisiak
Regression in b52c73008a9d67e9ddbb841872dc15cdd3d6ee01.
2017-01-10Fixed #27714 -- Fixed small visual artifact when clicking inline edit button ↵Anton Samarchyan
in admin.
2017-01-10Fixed #27711 -- Demoted "Installing a distribution-specific package" in ↵Tim Graham
install intro.
2017-01-10Fixed #26961 -- Made admin checks run when DEBUG=False.Adam Chainz
2017-01-10Fixed #27673 -- Made admin's checks run at check time instead of during ↵Adam Chainz
registration. Thanks Morgan Aubert for the test.
2017-01-09Fixed #27688 -- Made messages' add_message() request check use ducktyping.Raffaele Salmaso
2017-01-09Skipped unnecessary system checks in user_commands test.Adam Chainz