summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-06-04Fixed #30505 -- Doc'd how changes in the order of Field.choices affect ↵Caio Ariede
migrations.
2019-06-04Fixed #30520 -- Fixed crash of admin model inlines on custom fields without ↵Jones Ambrosi
labels.
2019-06-04Fixed #30534 -- Fixed overriding a field's default in ModelForm.cleaned_data().RobertAKARobin
2019-06-03Added CVE-2019-12308 to the security release archive.Nick Pope
2019-06-03Added CVE-2019-11358 to the security release archive.Nick Pope
2019-06-03Fixed typos in 1.11.21, 2.1.9, 2.2.2 release notes.Mariusz Felisiak
2019-06-03Removed redundant object descriptions to prevent warnings with Sphinx 2.1.0.Mariusz Felisiak
2019-06-03Fixed #28604 -- Prevented ManifestStaticFilesStorage from leaving ↵Nathan Gaberel
intermediate files.
2019-06-03Applied jQuery patch for CVE-2019-11358.Carlton Gibson
2019-06-03Fixed CVE-2019-12308 -- Made AdminURLFieldWidget validate URL before ↵Carlton Gibson
rendering clickable link.
2019-06-03Added stub release notes for security releases.Carlton Gibson
2019-05-31Fixed #30493 -- Fixed prefetch_related() for GenericRelation with different ↵can
content types. Co-Authored-By: Mariusz Felisiak <felisiak.mariusz@gmail.com> Thanks Simon Charette for the review.
2019-05-31Refs #30493 -- Added GenericRelatedObjectManager.get_content_type() hook.Mariusz Felisiak
2019-05-31Simplified m2m_recursive.tests.Mariusz Felisiak
2019-05-31Fixed #28831 -- Doc'd that InlineModelAdmin methods' obj argument is the ↵parth
parent object.
2019-05-31Fixed #26192 -- Fixed crash of ordering by constants on PostgreSQL.Mariusz Felisiak
Thanks Simon Charette for the review.
2019-05-31Refs #26192 -- Added tests for ordering by constant value.Mariusz Felisiak
2019-05-31Fixed #28520 -- Added --start-at/--start-after options to runtests.py.Hasan Ramezani
2019-05-30Refs #28520 -- Added _module_match_label() hook to runtests.py.Hasan Ramezani
2019-05-29Simplified SessionMiddleware.process_response() a bit.Daniel Hahler
2019-05-29Fixed #30523 -- Fixed updating file modification times on seen files in ↵Tom Forbes
auto-reloader when using StatReloader. Previously we updated the file mtimes if the file has not been seen before - i.e on the first iteration of the loop. If the mtime has been changed we triggered the notify_file_changed() method which in all cases except the translations will result in the process being terminated. To be strictly correct we need to update the mtime for either branch of the conditional. Regression in 6754bffa2b2df15a741008aa611c1bb0e8dff22b.
2019-05-29Fixed #30516 -- Fixed crash of autoreloader when re-raising exceptions with ↵Tom Forbes
custom signature. Regression in c8720e7696ca41f3262d5369365cc1bd72a216ca.
2019-05-28Simplified Model.save() a bit.葛汉斌
2019-05-28Fixed #30491 -- Clarified when save() on object with pk executes INSERT.Brad Solomon
2019-05-28Fixed #30315 -- Fixed crash of ArrayAgg and StringAgg with ordering when ↵Caio Ariede
used in Subquery.
2019-05-28Fixed #30479 -- Fixed detecting changes in manage.py by autoreloader when ↵Tom Forbes
using StatReloader. Regression in c8720e7696ca41f3262d5369365cc1bd72a216ca.
2019-05-27Refs #30485 -- Avoided unnecessary instance checks in urlencode.Simon Charette
Given doseq defaults to False it should avoid an unnecessary instance check in most cases.
2019-05-27Refs #29548 -- Updated docs for MariaDB support.Mariusz Felisiak
2019-05-27Fixed typo in RasterField test name.Ivor Bosloper
2019-05-27Doc'd that extra_email_context can be used to override default template ↵Mariusz Felisiak
context values in PasswordResetView.
2019-05-27Refs #24944 -- Added test for overriding domain in email context in ↵Mattia Procopio
PasswordResetView.
2019-05-24Fixed #30485 -- Adjusted django.utils.http.urlencode for doseq=False case.Johan Lübcke
2019-05-24Updated release process in the "How is Django Formed?" documentation.Mariusz Felisiak
* Fixed Trac's post release step. * Doc'd the use of robots_txt for updating robots.docs.txt.
2019-05-24Refs #9982 -- Added test for saving OneToOneField field after saving related ↵Mariusz Felisiak
object. Fixed in 519016e5f25d7c0a040015724f9920581551cab0.
2019-05-24Used re.Pattern.findall() instead of re.findall() in inspectdb.tests.Jon Dufresne
2019-05-24Fixed #28780 -- Allowed specyfing a token parameter displayed in password ↵Rob
reset URLs. Co-authored-by: Tim Givois <tim.givois.mendez@gmail.com>
2019-05-24Fixed #30504 -- Corrected redirect() signature in docs.Shashank Parekh
2019-05-24Fixed #30497 -- Ignored document type in assertXMLEqual()/assertXMLNotEqual().Caio Ariede
2019-05-24Doc'd that assertXMLEqual()/assertXMLNotEqual() ignores XML declaration and ↵Caio Ariede
comments.
2019-05-23Fixed #30501 -- Preventing QuerySet.reverse() from mutating expressions in ↵Mariusz Felisiak
QuerySet.order_by and Meta.ordering.
2019-05-23Forced utf-8 encoding when loading common passwords in CommonPasswordValidator.Mariusz Felisiak
Previously we used `decode()` which defaults to utf-8. This change restores previous behavior. Follow up to 28eac41510eb9de728bdfbc22a36f33ac75394f2.
2019-05-22Fixed #30498 -- Fixed proxy class caching in lazy().Ran Benita
lazy() should prepare the proxy class only once (the first time it's used) not on every call. Regression in b4e76f30d12bfa8a53cc297c60055c6f4629cc4c.
2019-05-22Refs #30116 -- Removed unnecessary str() calls in CommonPasswordValidator.Jon Dufresne
open() and gzip.open() supports path-like objects since Python 3.6.
2019-05-22Fixed #30419 -- Favored Meta.indexes over Meta.index_together in ↵Akshesh
optimization docs.
2019-05-22Improved performance of loading common passwords in CommonPasswordValidator.Brad Solomon
CommonPasswordValidator.__init__ previously called either splitlines or readlines, creating an unneeded intermediate list in memory. For large custom password files, this could be burdensome.
2019-05-22Fixed datetime string format examples in docs/howto/custom-template-tags.txt.Alex Gaynor
2019-05-21Fixed #28816 -- Prevented silencing data loss when decreasing ↵Hasan Ramezani
CharField.max_length on PostgreSQL.
2019-05-21Fixed #28147 -- Fixed loss of assigned parent when saving child after parent.Rob
Thanks Erwin Junge for the initial patch.
2019-05-21Refs #28147 -- Added test for saving nullable ForeignKey with to_field ↵Rob
attribute after saving parent.
2019-05-21Fixed #28763 -- Allowed overriding the session cookie age with ↵Hasan Ramezani
SessionStore.get_session_cookie_age().