# HG changeset patch # User Alain Mazy # Date 1712563780 -7200 # Node ID 0974a58fdc76f1f562c07d30bb969628982b18e2 # Parent 832a902770ba3b04270fcbe0d059c04d876dae57 Fix updates from version plugin version 3.3 to latest version diff -r 832a902770ba -r 0974a58fdc76 PostgreSQL/NEWS --- a/PostgreSQL/NEWS Sat Apr 06 17:11:46 2024 +0200 +++ b/PostgreSQL/NEWS Mon Apr 08 10:09:40 2024 +0200 @@ -1,8 +1,18 @@ +Pending changes in the mainline +=============================== + +DB schema revision: 2 +Minimum plugin SDK (for build): 1.12.3 +Minimum Orthanc runtime: 1.12.3 + +* Fix updates from version plugin version 3.3 to latest version + + Release 6.2 (2024-03-25) ======================== DB schema revision: 2 -Minimum plugin SDK: 1.12.3 +Minimum plugin SDK (for build): 1.12.3 Minimum Orthanc runtime: 1.12.3 * Fix check of Orthanc runtime version diff -r 832a902770ba -r 0974a58fdc76 PostgreSQL/Plugins/PostgreSQLIndex.cpp --- a/PostgreSQL/Plugins/PostgreSQLIndex.cpp Sat Apr 06 17:11:46 2024 +0200 +++ b/PostgreSQL/Plugins/PostgreSQLIndex.cpp Mon Apr 08 10:09:40 2024 +0200 @@ -146,6 +146,8 @@ } else if (revision == 1) { + LOG(WARNING) << "DatabasePatchLevel is 1"; + needToRunUpgradeFromUnknownToV1 = true; needToRunUpgradeV1toV2 = true; }