summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-09-05Added tests for BooleanField/NullBooleanField's check constraints on Oracle.Mariusz Felisiak
2017-09-04Fixed #28126 -- Added GistIndex to contrib.postgres.Mads Jensen
Thanks to Marc Tamlyn for the initial patch.
2017-09-04Improved messages in IndexErrors raised by GDAL objects.Nick Pope
2017-09-04Fixed #28569 -- Corrected get_layer_by_name prototype to skip error checking.Nick Pope
All other get_*_by_name functions have errcheck=False. This makes it return None for an invalid name instead of raising a GDALException.
2017-09-04Fixed #28479 -- Doc'd that transaction rollback doesn't revert model state.Jonatas CD
2017-09-04Fixed #28493 -- Made migrations autodetector find dependencies for model ↵Jeremy Satterfield
renaming.
2017-09-04Fixed #28568 -- Fixed typo in docs/ref/models/database-functions.txt.Michael
And made an example use naming consistent with the rest of the doc.
2017-09-04Fixed #28082 -- Made BaseDateListView pass context from get_dated_items() to ↵Sebastian Sassi
subclasses. Thanks leon-matthews for the report and fix.
2017-09-04Corrected YearComparisonLookup.get_bound() signature.Srinivas Reddy Thatiparthy
2017-09-04Fixed #26344 -- Made EmailMessage include alternatives when the body is ↵Igor Tokarev
empty and it has attachments.
2017-09-04Fixed typo in docs/releases/1.10.txt.Berker Peksag
2017-09-03Refs #27804 -- Used subTest() in a modeladmin test.Nick Pope
2017-09-03Fixed #28558 -- Simplified code to remove OGRIndexError.Nick Pope
The test is a regression for refs #4740 to show that the original fix of OGRIndexError is no longer needed. This is similar to the removal of GEOSIndexError in 197b1878105504b5ac7e399e1f52a6093c88baa3.
2017-09-03Refs #27804 -- Used subTest() in a syndication test.Mads Jensen
2017-09-03Fixed #28500 -- Fixed crash in FileBasedCache._is_expired() if the cache ↵caleb logan
file is empty.
2017-09-03Fixed #28550 -- Restored contrib.auth's login() and logout() views' respect ↵ZachLiuGIS
of positional arguments. Regression in 78963495d0caadb77eb97ccf319ef0ba3b204fb5. Forwardport of f8e0557b01ebbb11478cfb012c4cafc67f1213c1 from stable/1.11.x
2017-09-03Updated EmpytResultSet import not to use the alias.Mariusz Felisiak
2017-09-03Refs #25225 -- Removed test for removed ListMixin._IndexError.Nick Pope
Unused since 197b1878105504b5ac7e399e1f52a6093c88baa3.
2017-09-02Removed stray versionadded/changed annotations for 1.10.Tim Graham
2017-09-02Moved select_sql in SQLCompiler.get_extra_select() to improve performance.Mariusz Felisiak
2017-09-02Fixed #28367 -- Doc'd how to override management commands.jkrzy
2017-09-02Fixed #28306 -- Completed test coverage for django.utils.lorem_ipsum.LBerrocal
Thanks Idan Melamed for the original patch.
2017-09-02Fixed #28332 -- Fixed diamond inheritence example in docs.Jeremy Satterfield
2017-09-02Fixed #17985 -- Documented ModelAdmin.lookup_allowed().Simon Meers
2017-09-02Fixed #28525 -- Documented GDAL and GeoIP exceptions.Nick Pope
2017-09-02Fixed typos in docs/releases/1.10.txt.Berker Peksag
2017-09-02Simplified index bounds checking in GDAL objects.Nick Pope
2017-09-02Fixed #28559 -- Removed contrib.gis.gdal.OGRException backwards ↵Nick Pope
compatibility alias.
2017-09-01Fixed test in auth_tests modifying data from setUpTestData().François Freitag
2017-09-01Fixed #28557 -- Fixed ForeignKey/OneToOneField/ManyToManyField argument name ↵Tim Graham
in docs.
2017-09-01Refs #26522 -- Forwardported 1.11.5 release note.Tim Graham
2017-09-01Reordered GeoIP docs be consistent with GDAL/GEOS ordering.Nick Pope
2017-09-01Made GeoIP docs headers consistent with other GIS docs.Nick Pope
2017-08-31Refs #23276 -- Fixed explanation of how calling views works.Tim Graham
"Importing the view" is no longer applicable after a9fd740d22bc4fed5fdb280c036618000ee13df1.
2017-08-31Fixed #28549 -- Fixed QuerySet.defer() with super and subclass fields.Jeremy Kerr
Previously, deferring fields in different classes didn't omit the superclass' deferred field. Thanks Simon Charette for the suggested fix.
2017-08-31Fixed #28543 -- Prevented ManyToManyField.value_from_object() from being lazy.Tim Graham
Previously, it was a QuerySet which could reevaluate to a new value if the model's data changes. This is inconsistent with other Field.value_from_object() methods. This allows reverting the fix in the admin for refs #27998.
2017-08-31Fixed #28524 -- Fixed program name in management commands when using 'python ↵Nick Pope
-m django'.
2017-08-31Removed useless itertools.chain() call in ChoiceWidget.optgroups().Sergey Fedoseev
2017-08-31Refs #28487 -- Forwardported 1.11.5 release note.Tim Graham
2017-08-31Simplified model's Options._get_fields() a bit.Sergey Fedoseev
2017-08-30Fixed #27701 -- Doc'd staticfiles runserver bypasses middleware when serving ↵jkrzy
static files.
2017-08-30Fixed #28548 -- Replaced 'middlewares' with 'middleware' in docs.Jkrzy
2017-08-29Fixed #28530 -- Prevented SelectDateWidget from localizing years in output.caleb logan
2017-08-29Simplified contrib.gis.geos.prototypes by replacing c_char with c_byte.Sergey Fedoseev
2017-08-28Fixed #28536 -- Removed old JS cross-browser utilitiesClaude Paroz
2017-08-26Added Media.__repr__().Collin Anderson
It makes it easier to debug MediaOrderConflictWarnings (refs #28377).
2017-08-26Removed lone usage of jQuery in admin's calendar.jsClaude Paroz
2017-08-26Complemented datetime picker selenium testClaude Paroz
This includes test coverage for the calendarMonth JS function in calendar.js
2017-08-26Refs #27869 -- Omitted field kwargs from GinIndex.deconstruct() if they're None.Mads Jensen
2017-08-26Refs #25809 -- Omitted pages_per_range from BrinIndex.deconstruct() if it's ↵Mads Jensen
None.