summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-07-24Fixed #28321 -- Prevented FormSet.full_clean() from adding errors from ↵Windson yang
deleted forms.
2017-07-24Fixed DatabaseFeatures.has_case_insensitive_like on MySQL and Oracle.Mariusz Felisiak
Incorrect since its introduction in 20bab2cf9d02a5c6477d8aac066a635986e0d3f3.
2017-07-24Refs #24996 -- Removed unused BaseDatabaseFeatures.supports_select_related.Mariusz Felisiak
Unused since 0c7633178fa9410f102e4708cef979b873bccb76.
2017-07-24Fixed #28349 -- Doc'd how to upgrade Django from LTS to LTS.Emmanuel
2017-07-21Fixed #28418 -- Fixed queryset crash when using a GenericRelation to a proxy ↵Rachel Tobin
model.
2017-07-21Refs #17453 -- Fixed broken link to #django IRC logs.Tim Graham
2017-07-21Refs #23919 -- Updated contrib.admin's compress.py to use pathlib.Tom Forbes
2017-07-21Fixed #27970 -- Allowed QuerySet.in_bulk() to fetch on fields besides ↵Tom Carrick
primary key.
2017-07-21Stopped setting BaseExpression.copied on copy().Simon Charette
Unused since its introduction in f59fd15c4928caf3dfcbd50f6ab47be409a43b01.
2017-07-21Refs #24887 -- Stopped mutating a test expression during as_sql().Simon Charette
Also defined an explicit output_field as it was mixing an expression with an IntegerField() with one with a DecimalField().
2017-07-20Sorted display of options in Func.__repr__().orf
2017-07-20Fixed #28370 -- Deprecated the context arg of Field.from_db_value() and ↵Tim Graham
Expression.convert_value(). Unused since a0d166306fbdc41f49e6fadf4ec84b17eb147daa.
2017-07-20Added BaseSpatialField.get_db_prep_value() to simplify.Sergey Fedoseev
BaseSpatialField.get_db_prep_value() supersedes BaseSpatialField.get_db_prep_save() and Geometry.get_db_prep_value().
2017-07-20Fixed #28377 -- Made combining form Media retain relative asset order.Johannes Hoppe
Thanks Florian Apolloner, Mariusz Felisiak, and Tim Graham for reviews.
2017-07-20Refs #25588 -- Removed obsolete bits of RasterField support.Tim Graham
Unused since bbfad84dd980a97174c3b061a3d1b5f1373c380d.
2017-07-20Simplified handling of GIS lookup params.Sergey Fedoseev
2017-07-20Tested the case when the lhs of a raster lookup has an index specified and ↵Sergey Fedoseev
the rhs doesn't.
2017-07-20Removed unused models.DecimalField._format().Sergey Fedoseev
Unused since b3b71a0922334c70bbc646a4873010f808196671.
2017-07-20Removed unneeded check in GeometryField.from_db_value().Sergey Fedoseev
Unneeded since 6f43b2b8a55d72d1e8e04163ff0c2091cf6b8ce5.
2017-07-19Fixed #28414 -- Fixed ClearableFileInput rendering as a subwidget of ↵Roman Selivanov
MultiWidget.
2017-07-19Fixed typo in DistanceLookupBase.process_rhs() error message.Sergey Fedoseev
2017-07-19Removed SRID use in PostGISAdapter.__eq__() and __hash__().Sergey Fedoseev
EWKB already contains the SRID.
2017-07-19Fixed #28411 -- Used cx_Oracle.Cursor.outputtypehandler instead of ↵Mariusz Felisiak
_rowfactory() on Oracle. Thanks Tim Graham for the review.
2017-07-18Removed redundant lookup values in ↵Sergey Fedoseev
RasterFieldTest.test_all_gis_lookups_with_rasters. These values produce already tested lookups and prevent another one from being tested.
2017-07-18Doc'd the need to remove default ordering on Subquery aggregates.Tomer Chachamu
2017-07-18Fixed RasterFieldTest.test_all_gis_lookups_with_rasters.Sergey Fedoseev
It was inadvertently made a no-op in 378cf689d8772d917f642a80967ab8a2332eb41c.
2017-07-18Removed unneeded right quotes in docs to fix spelling errors.Tim Graham
A regression in pyenchant caused a problem: https://github.com/rfk/pyenchant/issues/93
2017-07-18Removed unneeded hasattr(self.rhs, 'get_compiler') checks in ↵Sergey Fedoseev
db/models/lookups.py. Unneeded since 9ae4362becbde31dc9cc31ae0b1db969e7007431.
2017-07-17Created a dedicated test directory for FilePathField tests.Srinivas Reddy Thatiparthy
2017-07-17Fixed #28391 -- Fixed Cast() with CharField and max_length on MySQL.Mariusz Felisiak
Thanks Tim Graham for the review.
2017-07-17Removed unused enter/exit methods of MySQL's CursorWrapper.Tim Graham
Unused since their introduction in e1d839237f7ce38ef078b7f09cc3a1aeaacc02f0.
2017-07-17Fixed 403 link in docs/ref/contrib/gis/install/spatialite.txt.jmk
2017-07-17Allowed Func subclasses to add kwargs to __repr__().Mariusz Felisiak
Thanks Tim Graham for the review.
2017-07-15Fixed #28399 -- Fixed QuerySet.count() for union(), difference(), and ↵Florian Apolloner
intersection() queries.
2017-07-15Simplified GIS Funcs by using GeoFuncMixin.geo_field.Sergey Fedoseev
2017-07-14Fixed #28394 -- Allowed setting BaseExpression.output_field (renamed from ↵Sergey Fedoseev
_output_field).
2017-07-14Fixed #28387 -- Fixed has_changed() for disabled form fields that subclass it.Srinivas Reddy Thatiparthy
2017-07-14Fixed #28397 -- Removed django.core.exceptions.DjangoRuntimeWarning.Tim Graham
2017-07-14Removed unused branch in __getattr__() of Oracle and MySQL cursor wrappers.Sergey Fedoseev
2017-07-14Replaced Oracle CursorIterator with generator expression.Sergey Fedoseev
2017-07-13Refs #28174 -- Added 1.11.4 release note for Python 2 runserver autoreload fix.Tim Graham
Forwardport of fc6b90bdb7a9531e988245942f79518308616b7b from stable/1.11.x
2017-07-13Simplified GEOSCoordSeq._checkindex().Sergey Fedoseev
2017-07-13Added test for GEOSCoordSeq.__getitem__().Sergey Fedoseev
2017-07-13Removed unneeded index check in LineString._set_single() as index is already ↵Sergey Fedoseev
checked in __getitem__(). Unneeded since its introduction in 66e1670efae34d721e374788e4c3f8b5fe5fa481.
2017-07-13Removed unused ListMixin._checkindex() correct kwarg.Sergey Fedoseev
Unused since its introduction in 66e1670efae34d721e374788e4c3f8b5fe5fa481.
2017-07-12Removed GeometryField.get_distance(); a GeoQuerySet leftover.Tim Graham
Follow up to a0d166306fbdc41f49e6fadf4ec84b17eb147daa.
2017-07-12Refs #28020 -- Removed obsolete GeometryCollection.json.Sergey Fedoseev
Unused since 12d0567aa5e82322543f0c0c126ba18c91a1e439.
2017-07-12Merged nested if statements in BaseFormSet.is_valid().Windsooon
2017-07-12Made LineString.__iter__() return iter() from internal GEOSCoordSeq both for ↵Sergey Fedoseev
simplicity and performance.
2017-07-12Added test for LineString.__iter__().Sergey Fedoseev