summaryrefslogtreecommitdiff
path: root/docs/releases
AgeCommit message (Collapse)Author
2015-03-27Fixed #18773 -- Added logging for template variable resolvingCaroline Simpson
Added a django.template logger without a default handler. Added logging if there is an exception while resolving variables in a template.
2015-03-27Dropped support for PostgreSQL 9.0.Tim Graham
2015-03-25Fixed #24531 -- Improved CommaSeparatedIntegerField validation.Bertrand Bordage
`','`, `'1,,1'`, `',1'` etc. are no longer considered as valid comma-separated integer lists.
2015-03-25Fixed #24215 -- Refactored lazy model operationsAlex Hill
This adds a new method, Apps.lazy_model_operation(), and a helper function, lazy_related_operation(), which together supersede add_lazy_relation() and make lazy model operations the responsibility of the App registry. This system no longer uses the class_prepared signal.
2015-03-25Fixed #23814 -- Documented apps refactored out of Django.Fabio Natali
2015-03-25Renamed Field.rel attribute to remote_fieldAnssi Kääriäinen
Field.rel is now deprecated. Rel objects have now also remote_field attribute. This means that self == self.remote_field.remote_field. In addition, made the Rel objects a bit more like Field objects. Still, marked ManyToManyFields as null=True.
2015-03-23Fixed #16362 -- Allowed lookaround assertions in URL patterns.Bas Peschier
2015-03-21Fixed #24479 -- Added system check to prevent both ordering and order_wrt.Jon Dufresne
2015-03-20Fixed #22106 -- Allowed using more than one instance of javascript_catalog ↵Moritz Sichert
per project.
2015-03-20Fixed #24419 -- Added sendtestemail management commandLoek van Gent
2015-03-19Fixed #24417 -- Added ModelAdmin.get_list_select_related()Loek van Gent
2015-03-18Added today's security issues to archive.Tim Graham
2015-03-18Made is_safe_url() reject URLs that start with control characters.Tim Graham
This is a security fix; disclosure to follow shortly.
2015-03-18Fixed an infinite loop possibility in strip_tags().Tim Graham
This is a security fix; disclosure to follow shortly.
2015-03-18Added stub release notes for security releases.Tim Graham
2015-03-18Fixed #24495 -- Allowed unsaved model instance assignment check to be bypassed.Karl Hobley
2015-03-18Fixed #23960 -- Removed http.fix_location_headerClaude Paroz
Thanks Carl Meyer for the report and Tim Graham for the review.
2015-03-17Refs #24487 -- Added upgrade tips about removal of SortedDict.Tim Graham
Thanks Pascal Chambon for the initial patch.
2015-03-17Fixed #15579 -- Added ability to delete only child models in multi-table ↵Andriy Sokolovskiy
inheritance.
2015-03-16Added write support for GDALRasterDaniel Wiesmann
- Instantiation of GDALRaster instances from dict or json data. - Retrieve and write pixel values in GDALBand objects. - Support for the GDALFlushCache in gdal C prototypes - Added private flush method to GDALRaster to make sure all data is written to files when file-based rasters are changed. - Replaced ``ptr`` with ``_ptr`` for internal ptr variable Refs #23804. Thanks Claude Paroz and Tim Graham for the reviews.
2015-03-16Fixed #24427 -- Stopped writing migration files in dry run mode when merging.John Giannelos
Also added display of migration to stdout when verbosity=3.
2015-03-16Fixed #24493 -- Added BaseContext.setdefault()Preston Timmons
2015-03-16Fixed #5986 -- Added ability to customize order of Form fieldsThomas Tanner
2015-03-16Added comma to improve readability in 1.7 release notes.Steven Das
2015-03-14Fixes #23643 -- Added chained exception details to debug view.Tomáš Ehrlich
2015-03-14Refs #24354 -- Prevented repointing of relations on superclasses when ↵Matthew Wilkes
migrating a subclass's name change Forwardport of test and release note from stable/1.7.x
2015-03-14Fixed #12982 -- Added a get_or_set() method to the BaseCache backend.Berker Peksag
2015-03-13Fixed #24122 -- Redirected to translated url after setting languageClaude Paroz
Thanks gbdlin for the initial patch and Tim Graham for the review.
2015-03-12Fixed #24139 -- Changed HttpResponse.reason_phrase to evaluate based on ↵Jon Dufresne
status_code.
2015-03-12Fixed #24226 -- Changed admin EMPTY_CHANGELIST_VALUE from (None) to -Tim Graham
2015-03-10Added yesterday's security issue to archive.Tim Graham
2015-03-09Added stub release notes for 1.7.7.Tim Graham
2015-03-09Refs #24461 -- Added test/release notes for XSS issue in ↵Baptiste Mispelon
ModelAdmin.readonly_fields This issue was fixed by refs #24464.
2015-03-09Clarified an item in 1.7.6 release notes.Tim Graham
2015-03-09Fixed #24464 -- Made built-in HTML template filter functions escape their ↵Erik Romijn
input by default. This may cause some backwards compatibility issues, but may also resolve security issues in third party projects that fail to heed warnings in our documentation. Thanks Markus Holtermann for help with tests and docs.
2015-03-07Forwardported 1.7.6 release note.Tim Graham
2015-03-07Fixed #24447 -- Made migrations add FK constraints for existing columnsJean-Louis Fuchs
When altering from e.g. an IntegerField to a ForeignKey, Django didn't add a constraint.
2015-03-07Fixed #24451 -- Deprecated comma-separated {% cycle %} syntax.Tim Graham
2015-03-05Fixed #21495 -- Added settings.CSRF_HEADER_NAMEGrzegorz Slusarek
2015-03-05Fixed #19538 -- Removed window.__admin_media_prefix__ from admin templates.Tim Graham
2015-03-03Fixed #24399 -- Made filesystem loaders use more specific exceptions.Preston Timmons
2015-02-25Added stub release notes for 1.7.6.Tim Graham
2015-02-25Added release date for 1.7.5 release.Tim Graham
2015-02-24Reverted "Fixed #24325 -- Documented change in ModelForm.save() foreign key ↵Tim Graham
access." This reverts commit 0af3822dc362b6253bda1c9699466dd0bbbf6066. It's obsoleted by refs #24395.
2015-02-23Fixed #23762 -- clarified CACHE_MIDDLEWARE_ANONYMOUS_ONLY deprecation in docsKenneth Kam
2015-02-23Added formats for the Azerbaijani locale.Emin Mastizada
2015-02-22Fixed signature of BaseDatabaseOperations.date_interval_sql() and document ↵Michael Manfre
the change.
2015-02-22Fixed #24358 -- Corrected code-block directives for console sessions.Sean Wang
2015-02-20Fixed #24351, #24346 -- Changed the signature of allow_migrate().Loic Bistuer
The new signature enables better support for routing RunPython and RunSQL operations, especially w.r.t. reusable and third-party apps. This commit also takes advantage of the deprecation cycle for the old signature to remove the backward incompatibility introduced in #22583; RunPython and RunSQL won't call allow_migrate() when when the router has the old signature. Thanks Aymeric Augustin and Tim Graham for helping shape up the patch. Refs 22583.
2015-02-20Fixed typo in path to is_safe_url()Tim Graham