2018-08-31 09:01:29 +00:00
|
|
|
==========================
|
|
|
|
Django 2.1.2 release notes
|
|
|
|
==========================
|
|
|
|
|
2018-10-01 08:10:48 +00:00
|
|
|
*October 1, 2018*
|
2018-08-31 09:01:29 +00:00
|
|
|
|
2018-09-13 13:08:41 +00:00
|
|
|
Django 2.1.2 fixes a security issue and several bugs in 2.1.1. Also, the latest
|
|
|
|
string translations from Transifex are incorporated.
|
|
|
|
|
|
|
|
CVE-2018-16984: Password hash disclosure to "view only" admin users
|
|
|
|
===================================================================
|
|
|
|
|
|
|
|
If an admin user has the change permission to the user model, only part of the
|
|
|
|
password hash is displayed in the change form. Admin users with the view (but
|
|
|
|
not change) permission to the user model were displayed the entire hash. While
|
|
|
|
it's typically infeasible to reverse a strong password hash, if your site uses
|
|
|
|
weaker password hashing algorithms such as MD5 or SHA1, it could be a problem.
|
2018-08-31 09:01:29 +00:00
|
|
|
|
|
|
|
Bugfixes
|
|
|
|
========
|
|
|
|
|
2018-09-06 20:10:20 +00:00
|
|
|
* Fixed a regression where nonexistent joins in ``F()`` no longer raised
|
|
|
|
``FieldError`` (:ticket:`29727`).
|
2018-09-11 16:51:11 +00:00
|
|
|
|
|
|
|
* Fixed a regression where files starting with a tilde or underscore weren't
|
|
|
|
ignored by the migrations loader (:ticket:`29749`).
|
2018-09-14 03:33:17 +00:00
|
|
|
|
|
|
|
* Made migrations detect changes to ``Meta.default_related_name``
|
|
|
|
(:ticket:`29755`).
|
2018-09-16 10:45:34 +00:00
|
|
|
|
|
|
|
* Added compatibility for ``cx_Oracle`` 7 (:ticket:`29759`).
|
2018-09-25 20:00:20 +00:00
|
|
|
|
|
|
|
* Fixed a regression in Django 2.0 where unique index names weren't quoted
|
|
|
|
(:ticket:`29778`).
|
2018-09-26 18:18:48 +00:00
|
|
|
|
|
|
|
* Fixed a regression where sliced queries with multiple columns with the same
|
|
|
|
name crashed on Oracle 12.1 (:ticket:`29630`).
|
2018-09-27 23:52:01 +00:00
|
|
|
|
|
|
|
* Fixed a crash when a user with the view (but not change) permission made a
|
|
|
|
POST request to an admin user change form (:ticket:`29809`).
|