From 36d3601ee910acaef4bbc46c52a63f9852709c66 Mon Sep 17 00:00:00 2001 From: Rodolfo Alonso Hernandez Date: Mon, 27 Mar 2023 20:11:50 +0200 Subject: [PATCH] Update git submodules * Update oslo.db from branch 'master' to da4f13e7345653eba8aab5b8aceeaeff7367989e - Do not convert to string ``url.URL`` objects The SQLAlchemy method ``url.make_url`` accepts strings and ``url.URL`` object types. By default, oslo.db was converting any object to string before calling ``url.make_url``, that parses this string. Since SQLAlchemy 2.0, the ``url.URL.__str__`` method is removed and the ``url.URL.__repr__`` method returns a string with the password hidden. The new utility method checks what type of object is passed and only if the object is not a string nor a ``url.URL`` object, is converted to a string. Closes-Bug: #2012928 Change-Id: I84f13f378f83e2a55078370ae2b4787f00982c23 --- oslo.db | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oslo.db b/oslo.db index 94d6e24ca1..da4f13e734 160000 --- a/oslo.db +++ b/oslo.db @@ -1 +1 @@ -Subproject commit 94d6e24ca19b0116eed00d5ccdb8a538918c6dcf +Subproject commit da4f13e7345653eba8aab5b8aceeaeff7367989e