summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2019-09-27Refs #30597 -- Added a warning about dependent apps when unapplying migrations.David Vaz
2019-09-27Fixed #27921 -- Clarified usage of make_aware() with is_dst argument.Glenn
2019-09-25Fixed #25598 -- Added SCRIPT_NAME prefix to STATIC_URL and MEDIA_URL set to ↵Oleg Kainov
relative paths. Thanks Florian Apolloner for reviews. Co-authored-by: Joel Dunham <Joel.Dunham@technicalsafetybc.ca>
2019-09-25Documented admonition on when to use custom signals (#11814)Adam Johnson
Thanks Cesar Canassa for the suggestion and Aymeric Augustin for review.
2019-09-24Removed some outdated backwards compatibility imports and misleading comments.Mads Jensen
EmptyResultSet moved in 46509cf13dbf049f75077981c29ef2c60b5a96ab. FieldDoesNotExist moved in 8958170755b37ce346ae5257c1000bd936faa3b0. BoundField and pretty_name moved in 8550161e531a603d57723850fb09c4c9b7ca60b9. EMPTY_VALUES moved in 471596fc1afcb9c6258d317c619eaf5fd394e797. BaseRunserverCommand moved in 5c53e30607014163872e89c221b206992a9acfef.
2019-09-24Refs #27910 -- Doc'd support for enumeration types serialization in migrations.Mariusz Felisiak
2019-09-24Refs #30350 -- Doc'd support for range serialization in migrations.Mariusz Felisiak
2019-09-24Updated the default cache key transformation in documentation.Ryan Nowakowski
Follow up to 6c69de80bdcd2744bc64cb933c2d863dd5e74a33.
2019-09-24Fixed #29444 -- Allowed returning multiple fields from INSERT statements on ↵Johannes Hoppe
Oracle.
2019-09-24Refs #26601 -- Used new-style middlewares in documentation.Claude Paroz
2019-09-23Fixed #30732 -- Doc'd that SameSite cookies flags can affect ↵Jezeniel Zapanta
xframe_options_exempt.
2019-09-23Refs #29915 -- Doc'd limitation of using pattern lookups with UUIDField on ↵Mariusz Felisiak
PostgreSQL.
2019-09-23Fixed typo in docs/ref/settings.txt.Mariusz Felisiak
2019-09-20Refs #28622 -- Clarified security implications of PASSWORD_RESET_TIMEOUT.Luke Plant
2019-09-20Fixed #28622 -- Allowed specifying password reset link expiration in seconds ↵Hasan Ramezani
and deprecated PASSWORD_RESET_TIMEOUT_DAYS.
2019-09-19Fixed #27462 -- Clarifed pk_set difference in m2m_changed signal receivers ↵Carlton Gibson
for add() and remove(). Thank you to Mariusz Felisiak for review.
2019-09-18Fixed #30772 -- Optimized make_template_fragment_key().Daniel Fairhead
Removed usage of urllib.quote(), unnecessary since cbbe60c7fc39fa8ff75554bd90104eaad6924bb1. Used hasher's .update() on key fragments.
2019-09-16Fixed #30775 -- Added admonition about missing imports to "Running tests" ↵Katie McLaughlin
section in tutorial 5.
2019-09-16Fixed #30769 -- Fixed a crash when filtering against a subquery ↵Simon Charette
JSON/HStoreField annotation. This was a regression introduced by 7deeabc7c7526786df6894429ce89a9c4b614086 to address CVE-2019-14234. Thanks Tim Kleinschmidt for the report and Mariusz for the tests.
2019-09-16Added stub release notes for 1.11.25 and 2.1.13.Mariusz Felisiak
2019-09-14Fixed #29823 -- Doc'd limitation of DecimalField on SQLite.Claude Paroz
2019-09-13Fixed typos in docs/ref/settings.txt.Ben Falk
2019-09-13Refs #27910 -- Improved documentation for model field choice enumeration types.Nick Pope
2019-09-12Added PBKDF2 hasher iteration increase to 3.0 release notes.Carlton Gibson
Refs 06670015f7e55a8be8137dbd95b7f4c536c3782b
2019-09-12Increased the default PBKDF2 iterations for Django 3.1.Carlton Gibson
2019-09-12Expanded notes on alphas in release How-to.Carlton Gibson
2019-09-10Advanced deprecation warnings for Django 3.1.Mariusz Felisiak
2019-09-10Refs #14357 -- Made Meta.ordering not affect GROUP BY queries.Mariusz Felisiak
Per deprecation timeline.
2019-09-10Refs #30037 -- Required the RemoteUserBackend.configure_user() to have ↵Mariusz Felisiak
request as the first positional argument. Per deprecation timeline.
2019-09-10Refs #28478 -- Removed support for TestCase's allow_database_queries and ↵Mariusz Felisiak
multi_db per deprecation timeline.
2019-09-10Refs #28606 -- Removed CachedStaticFilesStorage per deprecation timeline.Mariusz Felisiak
2019-09-10Refs #29703 -- Removed QuerySetPaginator alias per deprecation timeline.Mariusz Felisiak
2019-09-10Refs #29546 -- Removed django.utils.timezone.FixedOffset per deprecation ↵Mariusz Felisiak
timeline.
2019-09-10Refs #29817 -- Removed settings.FILE_CHARSET per deprecation timeline.Mariusz Felisiak
2019-09-10Refs #29598 -- Removed FloatRangeField per deprecation timeline.Mariusz Felisiak
2019-09-10Removed versionadded/changed annotations for 2.2.Mariusz Felisiak
2019-09-10Added stub release notes for 3.1.Mariusz Felisiak
2019-09-10Bumped version; master is now 3.1 pre-alpha.Mariusz Felisiak
2019-09-10Updated man page for 3.0 alpha release.Carlton Gibson
2019-09-10Fixed #30754 -- Prevented inclusion of aliases in partial index conditions.Simon Charette
SQLite doesn't repoint table aliases in partial index conditions on table rename which breaks the documented table alteration procedure. Thanks Pēteris Caune for the report.
2019-09-10Finalised release notes for 3.0 alpha release.Carlton Gibson
* Removed empty sections * Corrected some typos and wrapping errors.
2019-09-09Fixed #28107 -- Added ↵Vojtech Bocek
DatabaseFeatures.allows_group_by_selected_pks_on_model() to allow enabling optimization for unmanaged models.
2019-09-09Refs #28107 -- Doc'd how to subclass an existing database engine.Vojtech Bocek
2019-09-09Fixed #29406 -- Added support for Referrer-Policy header.Nick Pope
Thanks to James Bennett for the initial implementation.
2019-09-09Refs #30426 -- Moved release notes into separate security section.Nick Pope
2019-09-09Standardized links for headers in security middleware documentation.Nick Pope
2019-09-09Refs #29444 -- Allowed returning multiple fields from INSERT statements on ↵Johannes Hoppe
PostgreSQL. Thanks Florian Apolloner, Tim Graham, Simon Charette, Nick Pope, and Mariusz Felisiak for reviews.
2019-09-09Fixed #30757 -- Added a system check to ensure max_length fits the longest ↵Nick Pope
choice.
2019-09-09Fixed #30767 -- Improved references to deployment documentation.Katie McLaughlin
* Increased tocdepth to expose more complexity of topics. * Ensured deployment checklist is linked on main doc page.
2019-09-09Fixed #30426 -- Changed X_FRAME_OPTIONS setting default to DENY.Claude Paroz