summaryrefslogtreecommitdiff
path: root/releasenotes/notes/bug-1901654-69b9f35d11cd0c75.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'releasenotes/notes/bug-1901654-69b9f35d11cd0c75.yaml')
-rw-r--r--releasenotes/notes/bug-1901654-69b9f35d11cd0c75.yaml10
1 files changed, 10 insertions, 0 deletions
diff --git a/releasenotes/notes/bug-1901654-69b9f35d11cd0c75.yaml b/releasenotes/notes/bug-1901654-69b9f35d11cd0c75.yaml
new file mode 100644
index 000000000..0537bb837
--- /dev/null
+++ b/releasenotes/notes/bug-1901654-69b9f35d11cd0c75.yaml
@@ -0,0 +1,10 @@
+---
+fixes:
+ - |
+ [`bug 1901654 <https://bugs.launchpad.net/keystone/+bug/1901654>`_]
+ Previously, generate_public_ID() in sha256.py assumed the passed arguments is str data type.
+ However, python-ldap 3.0 or later returns bytes data type for attribute values except fields
+ of distinguished names, relative distinguished names, attribute names, queries.
+ If keystone running on Python3 is integrated with LDAP and the LDAP server has local_id variable
+ in its attribute, user login operations will fail due to the assumption and modifiation of python-ldap.
+ By this fix, generate_public_ID() properly handles bytes data type in the parameter.