summaryrefslogtreecommitdiff
path: root/docs/releases
AgeCommit message (Collapse)Author
2014-11-10Fixed #23789 -- TemplateResponse handles context differently from renderLuke Plant
2014-11-10Fixed a typo in 1.6 release notes.aruseni
2014-11-09Fixed #23785 -- Typo in docs/releases/1.6.txtTim Graham
2014-11-06Fixed #23770 -- Changed serialization strategy for floats with respect to ↵Markus Holtermann
NaN and Inf Thanks to w0rp for the report
2014-11-05Removed redundant link in 1.7 release notes.Tim Graham
2014-11-05Added "Features removed in 1.8" section to release notes.Tim Graham
2014-11-04Updated six to 1.8.0.Tim Graham
2014-11-04Fixed #23531 -- Added CommonMiddleware.response_redirect_class.Berker Peksag
2014-11-04Fixed #13181 -- Added support for callable choices to forms.ChoiceFieldPeter Inglesby
Thanks vanschelven and expleo for the initial patch.
2014-11-04Added HStoreField.Marc Tamlyn
Thanks to `django-hstore` for inspiration in some areas, and many people for reviews.
2014-11-03Fixed #5405 -- Added admindocs support for reStructured text in model docstringsZan Anderle
Thanks elvard and gkmngrgn for work on the patch and Markus H. for review.
2014-11-03Fixed #21281 -- Made override_settings act at class level when used as a ↵Thomas Chaumeny
TestCase decorator.
2014-11-03Fixed #18523 -- Added stream-like API to HttpResponse.Michael Kelly
Added getvalue() to HttpResponse to return the content of the response, along with a few other methods to partially match io.IOBase. Thanks Claude Paroz for the suggestion and Nick Sanford for review.
2014-11-03Fixed #23420 - broken warning for unbound naive datetime objectsAndy Chosak
Fixed issue with warning message displayed for unbound naive datetime objects when USE_TZ is True. Adds unit test that demonstrates the issue (discoverable when using a custom lookup in MySQL).
2014-11-03Fixed #18456 -- Added path escaping to HttpRequest.get_full_path().Unai Zalakain
2014-11-03Moved CSRF docs out of contrib.Thomas Chaumeny
2014-10-31Fixed #23731 -- Fixed migrations crash when adding blank GeometryFields on ↵Tim Graham
PostGIS. Thanks raratiru for the report and Claude Paroz for review.
2014-10-31Fixed #23468 -- Added checks for duplicate fixtures directories in loaddata.Konrad Świat
If settings.FIXTURE_DIRS contains duplicates or a default fixture directory (app_name/fixtures), ImproperlyConfigured is raised. Thanks to Berker Peksag and Tim Graham for review.
2014-10-31Fixed #23738 -- Allowed migrating from NULL to NOT NULL with the same ↵Markus Holtermann
default value Thanks to Andrey Antukh for the report.
2014-10-31Fixed #23715 -- Prevented urlize from treating a trailing ! as part of an URLMarkus Holtermann
Thanks to 57even for the report.
2014-10-30Fixed #23656 -- Made FormMixin.get_form's form_class argument optional.Simon Charette
Thanks Tim Graham for the review.
2014-10-30Fixed #23152 -- Added support for transactional Spatialite metadata ↵Tim Graham
initialization. Thanks Doug Goldstein for the initial patch.
2014-10-30Fixed #8149 -- Made File.__iter__() support universal newlines.Jon Dufresne
The following are recognized as ending a line: the Unix end-of-line convention '\n', the Windows convention '\r\n', and the old Macintosh convention '\r'. http://www.python.org/dev/peps/pep-0278 Thanks tchaumeny for review.
2014-10-30Updated FIRST_DAY_OF_WEEK for Ukrainian to Monday.slollo
2014-10-29Fixed #23614 -- Changed the way the migration autodetector orders ↵Markus Holtermann
unique/index_together Thanks to Naddiseo for the report and Tim Graham for the review
2014-10-29Forwardported 1.7.2 release note from a0cfd77971dc0e61427ca468e9b6ea9a548c796e.Tim Graham
2014-10-29Fixed #23719 -- Fixed MySQL 5.6 crash with GeometryFields in migrations.Tim Graham
2014-10-28Fixed #23606 -- Implemented Client and RequestFactory trace() methods.Rigel Di Scala
Thanks KevinEtienne for the suggestion.
2014-10-28Fixed #19716 -- Added support for microseconds with MySQL 5.6.4 and upClaude Paroz
Thanks erik@cederstrand.dk for the report and Tim Graham for the review.
2014-10-28Stopped stripping microseconds with MySQL backendClaude Paroz
Refs #19716.
2014-10-28Fixed #23493 -- Added bilateral attribute to TransformThomas Chaumeny
2014-10-27Fixed #23717 -- Fixed makemessages crash when STATIC_ROOT=NoneClaude Paroz
2014-10-27Forwardported release note for refs #23621.Tim Graham
2014-10-27Fixed #23699 -- Prevented flush from loading initial data for apps with ↵Tony Zhu
migrations.
2014-10-25Removed simplejson inventory file from docs/conf.py.Berker Peksag
2014-10-24Fixed #23618 -- Allowed apps with no models to still have migrationsClaude Paroz
Basically a4737bf6ae reapplied.
2014-10-23Fixed #23702 -- Fixed adding an explicit id field on SQLite.Tim Graham
Thanks gavinwahl for the report.
2014-10-23Fixed #23444 -- Deprecated ↵a1tus
django.contrib.admin.helpers.InlineAdminForm.original_content_type_id
2014-10-23Fixed #23630 -- Made AlterModelTable rename auto-created M2M tables.Tim Graham
Thanks Naddiseo for the report, Andrew Godwin for guidance, and Shai Berger for review.
2014-10-22Added stub release notes for 1.7.2.Tim Graham
2014-10-22Added release dates to release notes.Tim Graham
2014-10-21Fixed #23583 -- More selectively ignored static/media rootsClaude Paroz
Fixed a regression introduced by 28efafa24c. Thanks Michal Čihař for the report and initial patch, and Collin Anderson and Tim Graham for the reviews.
2014-10-21Fixed #21740 -- Allowed test client data to be an empty stringClaude Paroz
This fixes a regression introduced by 2a31d00933. Thanks tony-zhu for the report.
2014-10-20Fixed #23629 -- Allowed autodetector to detect changes in Meta.db_table.Tianyi Wang
Thanks Naddiseo for reporting.
2014-10-20Fixed #23692 -- Removed alpha/beta/rc release notes.Tim Graham
2014-10-20Fixed #23685 -- Made call_command skip checks by defaultClaude Paroz
Thanks Loic Bistuer for the report/review and Tim Graham for the review.
2014-10-17Added 1.7.1 release notes for refs #23649.Tim Graham
2014-10-16Fixed #23615 -- Validate that a Model instance's "check" attribute is a method.Rigel Di Scala
The "check" name is a reserved word used by Django's check framework, and cannot be redefined as something else other than a method, or the check framework will raise an error. This change amends the django.core.checks.model_check.check_all_models() function, so that it verifies that a model instance's attribute "check" is actually a method. This new check is assigned the id "models.E020".
2014-10-16Fixed #23579 -- Changed GEOSGeometry.__str__ to include the SRIDClaude Paroz
Thanks Tim Graham for the review.
2014-10-16Fixed #19508 -- Implemented uri_to_iri as per RFC.Anubhav Joshi
Thanks Loic Bistuer for helping in shaping the patch and Claude Paroz for the review.