summaryrefslogtreecommitdiff
path: root/docs/releases
AgeCommit message (Collapse)Author
2015-12-04Fixed #25853 -- Added support for GeoHash function on SpatiaLite.Sergey Fedoseev
2015-12-04Fixed #13774 -- Added models.Field.rel_db_type().Alexander Sosnovskiy
2015-12-03Refs #25659 -- Added missing docs for Difference/Intersection/SymDifference ↵Sergey Fedoseev
functions. Complements 7127eb287fb08b89a31bc97097a1fb6b08ada463.
2015-12-03Fixed #25851 -- Removed links to deprecated assignment tag docs.Alasdair Nicol
2015-12-02Fixed #25836 -- Added support for MakeLine aggregate on SpatiaLite.Sergey Fedoseev
2015-12-01Added stub release notes for 1.9.1.Tim Graham
2015-12-01Added release date for 1.9.Tim Graham
2015-12-01Fixed #25778 -- Updated docs links to use https when available.Jon Dufresne
2015-11-30Removed obsolete phrase about adding Python 3.5 in Django 1.9.Tim Graham
2015-11-28Fixed #25812 -- Restored the ability to use custom formats with the date ↵Gagaro
template filter.
2015-11-27Added Scottish Gaelic as new available languageClaude Paroz
Refs #25815. Thanks gunchleoc <fios@foramnagaidhlog.net> for the Scottish Gaelic formats.py.
2015-11-27Added Colombian Spanish as new available languageClaude Paroz
Refs #25815.
2015-11-26Fixed #25807 -- Instructed the migration writer about lazy objects.Simon Charette
Thanks to Trac alias mrgaolei for the report, Baptiste for the confirmation and Tim for the review.
2015-11-25Fixed #25773 -- Deprecated the geos.MultiPolygon.cascaded_union property.Sergey Fedoseev
2015-11-25Fixed #25772 -- Corrected __len lookup on ArrayField for empty arrays.Attila Tovt
2015-11-25Fixed #25734 -- Made GDALBand min and max properties use ↵Daniel Wiesmann
GDALComputeRasterStatistics. Thanks Sergey Fedoseev and Tim Graham for the review.
2015-11-25Fixed #25274 --- Made inspectdb handle renamed fields in unique_together.Jacek Bzdak
2015-11-25Added stub release notes for 1.8.8.Tim Graham
2015-11-24Added CVE-2015-8213 to the security archive.Tim Graham
2015-11-24Added release date for 1.8.7/1.7.11 releases.Tim Graham
2015-11-24Fixed a settings leak possibility in the date template filter.Florian Apolloner
This is a security fix.
2015-11-24Fixed #25767 -- Fixed data truncation possibility with ↵George Marshall
Positive(Small)IntegerField on MySQL.
2015-11-23Refs #25786 -- Added tests/release notes for set_FOO_order() crash with ↵Tim Graham
order_with_respect_to referencing OneToOneField pk. Forwardport of 6d9f061b07ce7aa1a9da6799b3104971ee73998b from stable/1.8.x The issue was fixed by 7bec480fe2ace94c8e7f0c88485442bfa74436b4.
2015-11-22Fixed #25685 -- Fixed a duplicate query regression on deletion of proxied ↵Simon Charette
models. Thanks to Trac alias ppetrid for the report and Tim for the review. Conflicts: django/db/models/deletion.py tests/delete/tests.py Forward port of 7c3ef19978b36b61db88a519f799f1ce8d019679 from stable/1.8.x
2015-11-21Fixed #25715 -- Fixed Model.refresh_from_db() with ForeignKey ↵Tim Graham
w/on_delete=SET_NULL.
2015-11-20Fixed #25722 -- Added the GEOSGeometry.covers() method.Sergey Fedoseev
2015-11-19Fixed #25764 -- Added support for serialization of enum.Enum in migrations.Andrei Fokau
Thanks Tim Graham for the review.
2015-11-19Fixed #19361 -- Added link to object's change form in admin's post-save message.Anton Baklanov
Thanks Roel Kramer for tests.
2015-11-19Fixed #25769 -- Updated get_version() release candidate naming for PEP 0440.Tim Graham
2015-11-19Removed a bug fix from the 1.9 release notes.Tim Graham
The fix has also since been backported to stable/1.8.x.
2015-11-18Fixed #25654 -- Added the GEOSGeometry.unary_union property.Sergey Fedoseev
2015-11-18Fixed #25665 -- Deprecated getter/setter of Point.tuple.Sergey Fedoseev
2015-11-18Refs #25665 -- Deprecated getters/setters of Point coordinate properties.Sergey Fedoseev
2015-11-18Refs #25665 -- Deprecated getter/setter of GEOSGeometry.srid.Sergey Fedoseev
2015-11-17Refs #24971, #25356 -- Clarified how apps.py works in 1.9 release notes.Tim Graham
2015-11-17Fixed #25695 -- Added template_name parameter to csrf_failure() view.Raphael Michel
2015-11-16Fixed typo in docs/releases/1.9.txt.Tim Graham
2015-11-16Fixed #25755 -- Unified spelling of "website".Agnieszka Lasyk
2015-11-14Fixed #25666 -- Fixed the exact lookup of ArrayField.Dmitry Dygalo
2015-11-12Fixed #25469 -- Added autoescape option to DjangoTemplates backend.Aaron Elliot Ross
Thanks Aymeric for the initial patch and Carl for review.
2015-11-12Replaced "inbuilt" with more common "built-in".Tim Graham
2015-11-11Refs #24937 -- Forwardport of 1.8.7 release note.Tim Graham
Forwardport of 3ded51bcf21f384b2e80ce97aff5c12d63e5f0e3 from stable/1.8.x
2015-11-11Fixed #25720 -- Made gettext() return bytestring on Python 2 if input is ↵Marti Raudsepp
bytestring. This is consistent with the behavior of Django 1.7.x and earlier.
2015-11-10Updated six to 1.10.0.Tim Graham
2015-11-10Fixed #25693 -- Prevented data loss with Prefetch and ManyToManyField.Ian Foote
Thanks to Jamie Matthews for finding and explaining the bug.
2015-11-10Refs #25618 -- Forwardported 1.8.7 release note.Tim Graham
Forwardport of 8c8a6d8a3f869ecc4d72b96ddb4760a1b59d5e62 from stable/1.8.x
2015-11-09Fixed #25683 -- Allowed ModelChoiceField(queryset=...) to accept Managers.Marti Raudsepp
This fixes a regression from refs #25496.
2015-11-09Refs #25686 -- Forwardported 1.8.7 release note.Tim Graham
2015-11-07Fixed debug view crash during autumn DST change.Aymeric Augustin
This only happens if USE_TZ = False and pytz is installed (perhaps not the most logical combination, but who am I to jugde?) Refs #23714 which essentially fixed the same problem when USE_TZ = True. Thanks Florian and Carl for insisting until I wrote a complete patch.
2015-11-07Fixed #25692 -- Added natural keys support to Site model.j0hnsmith