From a32b1b1f1557dc629818f1dd0d2bd1f5a2f561d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Geir=20Ove=20Gr=C3=B8nmo?= Date: Tue, 15 Apr 2025 11:42:11 +0200 Subject: [PATCH] IS-18148: Added changelog entry for SQL system upgrade --- hub/changelog.rst | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/hub/changelog.rst b/hub/changelog.rst index c8d2b63200..25c20ee3be 100644 --- a/hub/changelog.rst +++ b/hub/changelog.rst @@ -1,6 +1,17 @@ Changelog ========= +.. _changelog_2025-04-22: + +2025-04-22 +---------- +* We are rolling out a major upgrade of the SQL system where we've upgraded the database drivers and the SQL alchemy + library that underpins it. This fixes several known vulnerabilities in the library and the drivers. + + Note that there is a change in behaviour in the Oracle driver which no longer pads up to ``Y`` trailing zeros in + columns of datatype ``NUMBER(X,Y)``, e.g. it will now return ``2.91`` instead of ``2.9100`` in a column of + type ``NUMBER(6,4)``. The ``sql`` source may for this reason produce updated results for existing entities. + .. _changelog_2025-04-11: 2025-04-11