From 4bfa767f002e608412410309ec47b36b6caf6fa3 Mon Sep 17 00:00:00 2001 From: Akihiro Motoki Date: Fri, 25 Sep 2020 11:43:30 +0900 Subject: [PATCH] Relnote on disabling stripping leading/trailing spaces in password commit 6a07f5a5b4e2c0921967b8c47c8c9cfcd9a45b90 changed the password form to avoid dropping leading/trailing spaces in passwords. It is worth having a release note. Change-Id: I9009d616975acc1c84d0a150119167d424eb5dfb Related-Bug: #1861224 (cherry picked from commit 37ea4159f002213c5e378a7d925f51dc1c152f53) --- ...p-trailing-space-password-856bd5595938a094.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 releasenotes/notes/strip-trailing-space-password-856bd5595938a094.yaml diff --git a/releasenotes/notes/strip-trailing-space-password-856bd5595938a094.yaml b/releasenotes/notes/strip-trailing-space-password-856bd5595938a094.yaml new file mode 100644 index 0000000000..b0a38bcbd4 --- /dev/null +++ b/releasenotes/notes/strip-trailing-space-password-856bd5595938a094.yaml @@ -0,0 +1,14 @@ +--- +upgrade: + - | + Password forms in horizon now does not strip leading/trailing spaces + included in input passwords. Previously horizon stripped leading/trailing + spaces in input passwords but on the other hand keystone accepts + leading/trailing spaces and it can be an issue when such passwords are + set via keystone API. To handle this situation horizon no longer strips + leading/trailing spaces in passwords. + See [:bug:`1861224`] and + `the related mailing thread `__ + for more detail. + (Note that this change is part of horizon 18.5.0 release + but we forgot to mention it.)