summaryrefslogtreecommitdiff
path: root/django/conf
AgeCommit message (Collapse)Author
2020-07-28Improved performance of STATIC_URL and MEDIA_URL setting access.Florian Apolloner
Run `add_script_prefix()` on first access, rather than on every time.
2020-07-14Added Igbo language.Kelechi Precious Nwachukwu
2020-07-08Added Turkmen language.Resulkary
2020-06-12Added support for the Tajik language.Claude Paroz
Thanks Sirius Sufiew for contributing that support.
2020-05-23Refs #31534 -- Improved django.conf.urls.url() warning message with ↵Jon Dufresne
stacklevel=2. Use stacklevel=2 to show the calling site.
2020-05-20Added Kyrgyz language.Claude Paroz
Thanks Soyuzbek orozbek uulu for contributing that support.
2020-05-11Updated source translation catalogs.Claude Paroz
2020-05-05Refs #28622 -- Corrected PASSWORD_RESET_TIMEOUT/PASSWORD_RESET_TIMEOUT_DAYS ↵Chris Burchhardt
docs. Removed outdated note about an extra day in PASSWORD_RESET_TIMEOUT docs and incorrect "minimum" phrase.
2020-05-05Fixed #31534 -- Deprecated django.conf.urls.url().David Smith
2020-04-15Fixed #31268 -- Updated Algerian Arabic (ar_DZ) locale formats.infosrabah
2020-03-18Simplified settings' BASE_DIR definition with pathlib.Path.parent.Adam Johnson
2020-02-05Fixed #31232 -- Changed default SECURE_REFERRER_POLICY to 'same-origin'.Adam Johnson
2020-01-31Updated translations from Transifex.Claude Paroz
Forwardport of ca4f87027e2ed32cb272a1823c9ce4104b02d830 from stable/3.0.x
2020-01-16Fixed #30752 -- Allowed using ExceptionReporter subclasses in error reports.Pavel Lysak
2020-01-07Fixed #15982 -- Added DATE_INPUT_FORMATS to forms.DateTimeField default ↵Claude Paroz
input formats.
2019-12-30Refs #30819 -- Prioritized the date format with four-digit year for the ↵Aldian Fazrihady
Indonesian (id) locale.
2019-12-14Added Algerian Arabic language.Rabah Saadi
2019-12-09Fixed #31066 -- Added a docstring to main() function in manage.py template.exploit19
2019-12-02Updated core translations from Transifex.Carlton Gibson
Forward port of 71ec95345cdc8039c8e7089977580f7e1cd39436 from stable/3.0.x
2019-11-07Fixed #29983 -- Replaced os.path() with pathlib.Path in project template and ↵Jon Dufresne
docs. Thanks Curtis Maloney for the original patch.
2019-11-04Added Uzbek locale formats.bedilbek
2019-11-04Added Uzbek language.Claude Paroz
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-20Fixed #28622 -- Allowed specifying password reset link expiration in seconds ↵Hasan Ramezani
and deprecated PASSWORD_RESET_TIMEOUT_DAYS.
2019-09-10Refs #29817 -- Removed settings.FILE_CHARSET per deprecation timeline.Mariusz Felisiak
2019-09-09Fixed #29406 -- Added support for Referrer-Policy header.Nick Pope
Thanks to James Bennett for the initial implementation.
2019-09-09Fixed #30426 -- Changed X_FRAME_OPTIONS setting default to DENY.Claude Paroz
2019-09-08Updated translation catalogsClaude Paroz
2019-08-18Refs #30426 -- Changed default SECURE_CONTENT_TYPE_NOSNIFF to True.Claude Paroz
2019-06-29Updated translations from TransifexClaude Paroz
Forward port of b3f7262e6e5d9e68e37fb21af89ed6656291faa3 from stable/2.2.x
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-06Updated Hindi language name.Arpana Mehta
2019-04-08Fixed #30304 -- Added support for the HttpOnly, SameSite, and Secure flags ↵Ran Benita
on language cookies.
2019-04-01Updated core translations from TransifexClaude Paroz
Forwardport of 98f526e67c2899b9d44ba7cdbab5d70b1baa0060 from 2.2.x.
2019-03-27Updated spelling and RFCs in HttpOnly cookie flag docs.Nick Pope
2019-03-05Fixed #30234 -- Disallowed non-upper settings in settings.configure().orlnub123
2019-02-08Fixed #30004 -- Changed default FILE_UPLOAD_PERMISSION to 0o644.Himanshu Lakhara
2019-01-17Refs #27829 -- Removed settings.DEFAULT_CONTENT_TYPE per deprecation timeline.Tim Graham
2019-01-16Updated translation catalogsClaude Paroz
2019-01-11Moved django.db.migrations.writer.SettingsReference to django.conf.Tim Graham
Reduces the possibility of circular imports.
2019-01-10Fetched Armenian translations from TransifexClaude Paroz
2019-01-10Added Armenian languageClaude Paroz
2018-12-31Fixed #30069 -- Added docstring to manage.py template.Brylie Christopher Oxley
2018-12-21Fixed Polish MONTH_DAY_FORMAT.wiktorkuchta
2018-12-06Fixed #30003 -- Added usable entry point in default manage.py.jpic
2018-10-20Fixed Italian's MONTH_DAY_FORMAT.deby
The `/` is inconsistent with the other languages.
2018-10-15Fixed #29817 -- Deprecated settings.FILE_CHARSET.Jon Dufresne
2018-10-15Refs #27829 -- Added warning for settings.DEFAULT_CONTENT_TYPE usage outside ↵Jon Dufresne
of Django.
2018-09-29Updated translations from TransifexClaude Paroz
Forward port of d5ed08263b58ec972a1e009f23d7b90c30b6b9c1 from master.
2018-09-28Refs #28909 -- Simplifed code using unpacking generalizations.Sergey Fedoseev