summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2019-06-26Fixed #30588 -- Fixed crash of autoreloader when __main__ module doesn't ↵Tom Forbes
have __file__ attribute.
2019-06-24Fixed typo in docs/topics/db/models.txt.Meysam
2019-06-24Fixed typo in docs/ref/models/indexes.txt.Alexey Opalev
2019-06-22Removed unneeded non-breaking spaces added in 00169bc36Claude Paroz
2019-06-21Fixed #30421 -- Allowed symmetrical intermediate table for self-referential ↵Nadège Michel
ManyToManyField.
2019-06-21Fixed typos in 1.11.19, 2.0.11, 2.1.6 release notes.Jon Dufresne
2019-06-20Removed unnecessary backslashes from docs.Mariusz Felisiak
2019-06-20Fixed #30451 -- Added ASGI handler and coroutine-safety.Andrew Godwin
This adds an ASGI handler, asgi.py file for the default project layout, a few async utilities and adds async-safety to many parts of Django.
2019-06-20Fixed #30565 -- Closed HttpResponse when wsgi.file_wrapper closes file-like ↵Chris Jerdonek
object.
2019-06-20Refs #30565 -- Doc'd HttpResponse.close() method.Chris Jerdonek
2019-06-20Fixed #30547 -- Doc'd how Meta.constraints affect model validation.Swat009
2019-06-19Fixed typos in signals and custom management commands docs.Hasan Ramezani
2019-06-18Fixed typos and example in signals.pre_init docs.Hasan Ramezani
2019-06-14Fixed #12952 -- Adjusted admin log change messages to use form labels ↵Sanyam Khurana
instead of field names.
2019-06-13Fixed an example of email with display name in EmailMessage.from_email.Joachim Jablon
2019-06-13Refs #29548 -- Doc'd MariaDB support for GIS database functions.Mariusz Felisiak
2019-06-13Fixed #30128 -- Fixed handling timedelta timezone in database functions.can
2019-06-12Added missing support for PointOnSurface function on MariaDB.Mariusz Felisiak
2019-06-11Fixed #27486 -- Fixed Python 3.7 DeprecationWarning in intword and ↵Jon Dufresne
filesizeformat filters. intword and filesizeformat passed floats to ngettext() which is deprecated in Python 3.7. The rationale for this warning is documented in BPO-28692: https://bugs.python.org/issue28692. For filesizeformat, the filesize value is expected to be an int -- it fills %d string formatting placeholders. It was likely coerced to a float to ensure floating point division on Python 2. Python 3 always does floating point division, so coerce to an int instead of a float to fix the warning. For intword, the number may contain a decimal component. In English, a decimal component makes the noun plural. A helper function, round_away_from_one(), was added to convert the float to an integer that is appropriate for ngettext().
2019-06-11Fixed intword example in docs/ref/contrib/humanize.txt.Jon Dufresne
2019-06-11Fixed #30486 -- Fixed the default value of Aggregate.distinct and updated ↵Vyacheslav Ver
example of custom aggregate functions.
2019-06-11Changed charset and collation link to MySQL docs.Mykola Nicholas
2019-06-10Fixed #30553 -- Clarified the default value of disable_existing_loggers.swatantra
2019-06-07Fixed #29379 -- Added autocomplete attribute to contrib.auth.forms fields.Hasan Ramezani
Thank you to Nick Pope for review. Co-authored-by: CHI Cheng <cloudream@gmail.com>
2019-06-05Refs #30226 -- Added User.get_user_permissions() method.Tobias Bengfort
Added to mirror the existing User.get_group_permissions().
2019-06-05Fixed #30226 -- Added BaseBackend for authentication.Tobias Bengfort
2019-06-05Fixed #30542 -- Fixed crash of numerical aggregations with filter.Étienne Beaulé
Filters in annotations crashed when used with numerical-type aggregations (i.e. Avg, StdDev, and Variance). This was caused as the source expressions no not necessarily have an output_field (such as the filter field), which lead to an AttributeError: 'WhereNode' object has no attribute output_field. Thanks to Chuan-Zheng Lee for the report. Regression in c690afb873cac8035a3cb3be7c597a5ff0e4b261 and two following commits.
2019-06-05Added stub release notes for 2.2.3.Mariusz Felisiak
2019-06-04Updated release process notes for oss-security list content guidelines.Carlton Gibson
c.f. https://oss-security.openwall.org/wiki/mailing-lists/oss-security#list-content-guidelines
2019-06-04Fixed #30505 -- Doc'd how changes in the order of Field.choices affect ↵Caio Ariede
migrations.
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-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 #28831 -- Doc'd that InlineModelAdmin methods' obj argument is the ↵parth
parent object.
2019-05-31Fixed #28520 -- Added --start-at/--start-after options to runtests.py.Hasan Ramezani
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-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 #29548 -- Updated docs for MariaDB support.Mariusz Felisiak
2019-05-27Doc'd that extra_email_context can be used to override default template ↵Mariusz Felisiak
context values in 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-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