summaryrefslogtreecommitdiff
path: root/django
AgeCommit message (Collapse)Author
2017-01-17Refs #26263 -- Removed deprecated Context.has_key().Tim Graham
2017-01-17Refs #26154 -- Removed deprecated CommaSeparatedIntegerField.Tim Graham
2017-01-17Refs #26013 -- Removed deprecated django.core.urlresolvers module.Tim Graham
2017-01-17Refs #25838 -- Removed the deprecated shell --plain option.Tim Graham
2017-01-17Refs #20223 -- Removed deprecated django.utils.functional.allow_lazy().Tim Graham
2017-01-17Refs #25773 -- Removed deprecated geos.MultiPolygon.cascaded_union property.Tim Graham
2017-01-17Refs #25665 -- Removed deprecated getter/setter of Point.tuple.Tim Graham
2017-01-17Refs #25665 -- Removed deprecated getters/setters of Point coordinate ↵Tim Graham
properties.
2017-01-17Refs #25665 -- Removed GEOSGeometry.get/set_srid() per deprecation timeline.Tim Graham
2017-01-17Refs #25550 -- Removed support for direct assignment to the reverse side of ↵Tim Graham
a related set.
2017-01-17Refs #25604 -- Removed makemigrations --exit option per deprecation timeline.Tim Graham
2017-01-17Refs #25466 -- Removed aliases for LoaderOrigin and StringOrigin.Tim Graham
Per deprecation timeline.
2017-01-17Refs #13110 -- Removed SyndicationFeed.add_item()'s enclosure argument.Tim Graham
Per deprecation timeline.
2017-01-17Refs #25135 -- Removed support for the contrib.admin allow_tags attribute.Tim Graham
Per deprecation timeline.
2017-01-17Refs #25190 -- Removed callable_obj parameter to assertRaisesMessages().Tim Graham
Per deprecation timeline.
2017-01-17Refs #24126 -- Removed auth views' current_app parameter per deprecation ↵Tim Graham
timeline.
2017-01-17Refs #25120 -- Removed template.loaders.eggs.Loader per deprecation timeline.Tim Graham
2017-01-17Refs #24716 -- Removed Field._get_val_from_obj() per deprecation timeline.Tim Graham
2017-01-17Refs #21927 -- Removed include()'s app_name argument per deprecation timeline.Tim Graham
Also removed support for passing a 3-tuple to include() and support for setting an instance namespace without an application namespace. Thanks Marten Kenbeek for completing the patch.
2017-01-17Refs #24728 - Removed Atom1Feed/RssFeed mime_type attribute.Tim Graham
Per deprecation timeline.
2017-01-17Refs #24733 -- Removed support for error views without the exception parameter.Tim Graham
Per deprecation timeline.
2017-01-17Refs #15053 -- Removed support for non-recursive template loading.Tim Graham
Per deprecation timeline.
2017-01-17Refs #25184 -- Removed contrib.gis.geoip per deprecation timeline.Tim Graham
2017-01-17Removed GeoManager and GeoQuerySet per deprecation timeline.Tim Graham
2017-01-17Refs #22993 -- Removed skipIfCustomUser per deprecation timeline.Tim Graham
2017-01-17Refs #19738 -- Removed timezone conversion in SQL queries executed outside ↵Tim Graham
of the ORM. Per deprecation timeline.
2017-01-17Refs #24215 -- Removed add_lazy_relation() per deprecation timeline.Tim Graham
2017-01-17Refs #21127 -- Required on_delete for ForeignKey/OneToOneField.Tim Graham
Per deprecation timeline.
2017-01-17Removed Field.rel and Field.remote_field.to per deprecation timeline.Tim Graham
2017-01-17Refs #23960 -- Removed the host parameter for SimpleTestCase.assertRedirects().Tim Graham
Per deprecation timeline.
2017-01-17Refs #18651 -- Removed assignment_tag per deprecation timeline.Tim Graham
2017-01-17Refs #24219 -- Removed django.forms.extras per deprecation timeline.Tim Graham
2017-01-17Refs #24154 -- Removed deprecated ↵Tim Graham
BaseDatabaseOperations.check_aggregate_support().
2017-01-17Refs #24205 -- Removed Signal.disconnect()'s weak argument.Tim Graham
Per deprecation timeline.
2017-01-17Bumped version; master is now 2.0 pre-alpha.Tim Graham
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-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-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-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.