summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-06-03Refs #27308, #27753 -- Removed obsolete cookie test mixing bytes with str.Jon Dufresne
Python 3's SimpleCookie treats all values as strings. Passing a bytes object coerces to the repr value.
2017-06-03Removed unused django.contrib.gis.shortcuts.render_to_text()Tim Graham
Unused since its introduction in 79e68c225b926302ebb29c808dda8afa49856f5c.
2017-06-03Fixed #28192 -- Required passing optional form field args as keyword args.Claude Paroz
2017-06-03Fixed typo in docs/ref/forms/fields.txt.Tim Graham
2017-06-03Refs #28192 -- Fixed documentation of ChoiceField choices requirementClaude Paroz
Thanks Tim Graham for noticing the issue.
2017-06-03Refs #28192 -- Made MultiValueField/ComboField fields argument required as ↵Tim Graham
documented.
2017-06-03Fixed #28190 -- Clarifed how include/extends treat template names.Anupam
2017-06-02Completed test coverage for RedirectFallbackMiddleware.Anton Samarchyan
2017-06-02Improved test coverage of contrib/admin/checks.py.Anton Samarchyan
2017-06-02Fixed #26028 -- Added overriding templates howto.Philip James
2017-06-02Removed useless hasattr() checks in ModelAdmin checks.Tim Graham
These attributes are defined on BaseModelAdmin and thus should always be there.
2017-06-02Fixed admin_views IntegrityError test failure.Tim Graham
Regression in 38a5a23c327ab1c816dc56864002ecc66cac4a48.
2017-06-02Fixed admin_views test when run in reverse.Tim Graham
Modifying self.s1 created in setUpTestData() leaked state. Regression in 45585d3cbbd320a316171b17474b60e3f5fb1fb8.
2017-06-02Fixed #28260 -- Allowed customizing the test tablespace initial and ↵Mariusz Felisiak
autoextend size on Oracle. Thanks Tim Graham for the review.
2017-06-02Fixed #28258 -- Optimized Oracle introspection by using LISTAGG.Mariusz Felisiak
Thanks Tim Graham and Jani Tiainen for reviews.
2017-06-02Removed pk hardcoding in admin_views tests.Tim Graham
2017-06-02Fixed #28265 -- Prevented renderer warning on Widget.render() with **kwargs.Jon Dufresne
2017-06-02Fixed #28266 -- Fixed typo in docs/ref/models/instances.txt.Lachlan Musicman
2017-06-01Refs #23968 -- Removed unnecessary lists, generators, and tuple calls.Jon Dufresne
2017-06-01Fixed #27639 -- Added chunk_size parameter to QuerySet.iterator().François Freitag
2017-06-01Clarified QuerySet.iterator()'s docs on server-side cursors.François Freitag
2017-06-01Refs #26682 -- Added AutoField introspection on Oracle.Mariusz Felisiak
2017-06-01Fixed #26682 -- Added support for Oracle identity columns.Mariusz Felisiak
Thanks Shai Berger and Tim Graham for reviews.
2017-06-01Sorted imports per isort 4.2.9.Tim Graham
2017-06-01Added stub release notes for 1.11.3.Tim Graham
2017-06-01Added release date for 1.11.2.Tim Graham
2017-06-01Fixed #28242 -- Moved ImageField file extension validation to the form field.Manatsawin Hanmongkolchai
2017-05-31Refs #27777 -- Improved docs/added test for File context manager change.Ingo Klöcker
2017-05-31Fixed #22550 -- Prohibited QuerySet.last()/reverse() after slicing.Matthias Erll
2017-05-31Fixed a forms test after updated translations.Tim Graham
2017-05-31Updated translations from TransifexClaude Paroz
Forward port of 02158a785eff923110cb4c7c7e635d3ce4a928e3 from stable/1.11.x
2017-05-31Fixed #28170 -- Fixed file_move_safe() crash when moving files to a CIFS mount.Derrick Jackson
2017-05-31Fixed #26755 -- Fixed test_middleware_classes_headers if Django source isn't ↵Chris Lamb
writable.
2017-05-30Fixed #28212 -- Allowed customizing the port that LiveServerTestCase uses.Robert Rollins
Forwardport of 877d7b71ae952b3bc946e5187d6c23039a71614d from stable/1.11.x
2017-05-30Refs #26294 -- Fixed typo in docs/ref/django-admin.txt.René Fleschenberg
2017-05-30Fixed AppRegistryNotReady error when running gis_tests in isolation on PostGIS.Tim Graham
Regression in 890537253cf235091816d27a5c2fb64943c8e34a.
2017-05-30Fixed #28209 -- Made date-based generic views return a 404 rather than crash ↵Adit Biswas
when given an out of range date.
2017-05-30DRY'd startapp and startproject management commands.Adam Johnson
2017-05-30Improved test coverage for startapp/startproject management commands.Adam Johnson
2017-05-30Refs #28181 -- Corrected detection of GDAL 2.1 on Windows.Tim Graham
Follow up to a404f75f92971634c76330f3742261d33ccecca1.
2017-05-30Refs #23804 -- Improved value validation in GDALRaster.geotransform setter.Adam Johnson
2017-05-30Fixed gis_tests.geoapp test with incorrect geodetic coordinates.Mariusz Felisiak
The latitude coordinates exceed -90, 90 bounds and caused a test failure on Oracle 12.2. Thanks Michał Wierzbowski for help preparing the patch.
2017-05-30Fixed #28199 -- Fixed Subquery generating unnecessary/invalid CAST.Tim Graham
Thanks Simon Charette for the fix.
2017-05-29Removed incorrect "required" attribute in docs/ref/forms/fields.txt.Tim Graham
2017-05-29Fixed #26823 -- Prevented update_last_login signal receiver from crashing if ↵Linus Lewandowski
User model doesn't have last_login field.
2017-05-29Refs #28204 - Forwardported 1.11.2 release note.Tim Graham
2017-05-29Fixed #28248 -- Fixed password reset tokens being valid for 1 day longer ↵Nick Zaccardi
than PASSWORD_RESET_TIMEOUT_DAYS.
2017-05-27Added comments to contrib.sitemaps.index() view.Boris Burkov
2017-05-27Corrected REPL example in forms docs for Python 3.Jon Dufresne
2017-05-27Fixed #28249 -- Removed unnecessary dict.keys() calls.Jon Dufresne
iter(dict) is equivalent to iter(dict.keys()).