summaryrefslogtreecommitdiff
path: root/docs/releases
AgeCommit message (Collapse)Author
2012-12-21Fixed #19497 -- Refactored testing docs.Ramiro Morales
Thanks Tim Graham for the review and suggestions.
2012-12-15Fixed #19384 -- Documented the behavior of custom managers on abstract models.Russell Keith-Magee
This documents the behavior introduced by cc337a74, which is BACKWARDS INCOMPATIBLE for any attempt to invoke a method on a manager using the abstract class as the calling class (e.g., AbstractBase.objects.do_something()) Thanks to mhsparks for the report.
2012-12-15Fixed #19342 - Added new tutorials to the 1.5 release notesTim Graham
2012-12-13Fixed #19462 -- Made assertQuerysetEqual detect undefined orderingAnssi Kääriäinen
If there are more than one values to compare against and the qs isn't ordered then assertQuerysetEqual will raise a ValueError.
2012-11-28Typo in the 1.5 release notesBruno Renié
2012-11-27Fixed a couple of typos in the 1.5 (and beta) release notes.Jacob Kaplan-Moss
2012-11-27Added 1.5 beta release notes.Jacob Kaplan-Moss
2012-11-25Fixed #17646 -- Added a get_list_filter() method to ModelAdmin. Thanks to ↵Julien Phalip
rasca for the suggestion and to mateusgondim for the patch.
2012-11-24Removed obsolete contrib.comments upgrade guideClaude Paroz
The old comment system was pre-1.0.
2012-11-23Fixed #18375 -- Removed dict-ordering dependency for F-expressionsAnssi Kääriäinen
F() expressions reuse joins like any lookup in a .filter() call - reuse multijoins generated in the same .filter() call else generate new joins. Also, lookups can now reuse joins generated by F(). This change is backwards incompatible, but it is required to prevent dict randomization from generating different queries depending on .filter() kwarg ordering. The new way is also more consistent in how joins are reused.
2012-11-22Spell checked 1.5 alpha release notesTim Graham
2012-11-22Fixed #16039 -- Made post_syncdb handlers multi-db aware.Aymeric Augustin
Also reverted 8fb7a9002669fb7ba7bec7df90b465b92e1ed3c2. Refs #17055.
2012-11-19Fixed #18658 -- Improved ModelAdmin.message_user APIPreston Holmes
Thanks to Lowe Thiderman for the patch and tests
2012-11-18Update docs/releases/1.5.txtAnton Danilchenko
Deleted word that used second time
2012-11-17Fixed #19291 -- Completed deprecation of ADMIN_MEDIA_PREFIX.Aymeric Augustin
2012-11-17Fixed #2550 -- Allow the auth backends to raise the PermissionDenied ↵Jannis Leidel
exception to completely stop the authentication chain. Many thanks to namn, danielr, Dan Julius, Łukasz Rekucki, Aashu Dwivedi and umbrae for working this over the years.
2012-11-16Fixed #18985 -- made DeprecationWarnings loudPreston Holmes
Capture warnings in Python >= 2.7 and route through console handler, which is subject to DEBUG==True Thanks to dstufft for the idea, and claudep for initial patch
2012-11-04Corrected a typo that inadvertently made its way into the docs.Alex Gaynor
2012-11-04Added multi-column indexes to the 1.5 release notes.Alex Gaynor
2012-11-02Deprecated depth kwarg on select_related.Preston Holmes
This is the start of a deprecation path for the depth kwarg on select_related. Removing this will allow us to update select_related so it chains properly and have an API similar to prefetch_related. Thanks to Marc Tamlyn for spearheading and initial patch. refs #16855
2012-10-31Fixed #17083 -- Allowed sessions to use non-default cache.Aymeric Augustin
2012-10-30Added release notes for 1.6.Aymeric Augustin
Since 1.5 is feature-frozen, we need them to document new features.
2012-10-29Fixed #17869 - force logout when REMOTE_USER header disappearsPreston Holmes
If the current sessions user was logged in via a remote user backend log out the user if REMOTE_USER header not available - otherwise leave it to other auth middleware to install the AnonymousUser. Thanks to Sylvain Bouchard for the initial patch and ticket maintenance.
2012-10-27Fixed #18978 -- Moved cleanup command to sessions.Aymeric Augustin
This removes a dependency of 'core' on 'contrib'.
2012-10-25Merge pull request #472 from ericflo/patch-1Preston Holmes
Fixed typo in docs/releases/1.5.txt
2012-10-25Fixed broken links + spell check in 1.5 release notes.Tim Graham
2012-10-25Update docs/releases/1.5.txtEric Florenzano
Fix typo.
2012-10-25Added release notes for Django 1.5 alpha 1.Jacob Kaplan-Moss
Also updated 1.5-proper release notes a bit.
2012-10-24Fixed #6527 -- Provided repeatable content accessAymeric Augustin
in HttpResponses instantiated with iterators.
2012-10-21Added 1.4.2 release notesPreston Holmes
2012-10-20Fixed #7581 -- Added streaming responses.Aymeric Augustin
Thanks mrmachine and everyone else involved on this long-standing ticket.
2012-10-20Fixed #5611 -- Restricted accepted content types in parsing POST dataClaude Paroz
Thanks paulegan for the report and Preston Holmes for the review.
2012-10-13Added release note about removed div around csrf tokenClaude Paroz
Refs #18484. Thanks Simon Charette for the suggestion.
2012-10-10Moved F() '&' and '|' to .bitand() and .bitor()Anssi Kääriäinen
Done for consistency with Q() expressions and QuerySet combining. This will allow usage of '&' and '|' as boolean logical operators in the future. Refs #16211.
2012-10-10Revert "Fixed #16211 -- Added comparison and negation ops to F() expressions"Anssi Kääriäinen
This reverts commit 28abf5f0ebc9d380f25dd278d7ef4642c4504545. Conflicts: docs/releases/1.5.txt
2012-10-06Added assertXML[Not]Equal assertionsClaude Paroz
This is especially needed to compare XML when hash randomization is on, as attribute order may vary. Refs #17758, #19038. Thanks Taylor Mitchell for the initial patch, and Ian Clelland for review and cleanup.
2012-10-03Fixed #14567 -- Made ModelMultipleChoiceField return EmptyQuerySet as empty ↵Stephen Burrows
value
2012-09-30Fixed #9279 -- Added ignorenonexistent option to loaddataPreston Holmes
Thanks to Roman Gladkov for the initial patch and Simon Charette for review.
2012-09-30Fixed #18616 -- added user_login_fail signal to contrib.authMichael Farrell
Thanks to Brad Pitcher for documentation
2012-09-30Fixed #18807 -- Made 404.html and 500.html optionalClaude Paroz
Thanks Aymeric Augustin for the report and Jannis Leidel for the review.
2012-09-30Fixed #16455 -- Added support for PostGIS 2.0Flavio Curella
Thanks ckarrie for the report and the initial patches, Flavio Curella for updating the patch, and Anssi Kääriäinen for testing. See ticket for other valuable contributors.
2012-09-30Fixed #18991 -- Allowed permission lookup by "if in"Anssi Kääriäinen
When looking permissions from PermWrapper it is now possible to use {% if "someapp.someperm" in perms %} instead of {% if perms.someapp.someperm %}.
2012-09-30Fixed #16211 -- Added comparison and negation ops to F() expressionsAnssi Kääriäinen
Work done by Walter Doekes and Trac alias knoeb. Reviewed by Simon Charette.
2012-09-29Fixed #18993 -- 'django' logger logs to console when DEBUG=TrueClaude Paroz
Thanks Preston Holmes for the review.
2012-09-29Merge branch 'ticket15695'Florian Apolloner
2012-09-29Fixed #18919 -- Stopped dropping Z attribute when transforming geometriesClaude Paroz
Previously, the wkb of geometries was dropping the Z attribute. Thanks luizvital for the report and tests and georger.silva@gmail.com for the tests.
2012-09-29Fixed #11948 -- Added interpolate and project linear referencing methodsClaude Paroz
Thanks novalis for the report and the initial patch, and Anssi Kääriäinen and Justin Bronn for the review.
2012-09-28Fixed #18676 -- Allow fast-path deletion of objectsAnssi Kääriäinen
Objects can be fast-path deleted if there are no signals, and there are no further cascades. If fast-path is taken, the objects do not need to be loaded into memory before deletion. Thanks to Jeremy Dunck, Simon Charette and Alex Gaynor for reviewing the patch.
2012-09-27fixed #10809 -- add a mod_wsgi authentication handlerPreston Holmes
Thanks to baumer1122 for the suggestion and initial patch and David Fischer for the contributions and long term patch maintenance and docs.
2012-09-27Fixed #15695 -- Added `ResolverMatch` to the request object.Florian Apolloner