From b3b3aef2fbfb971d3eb83a201e2ecd36358e554c Mon Sep 17 00:00:00 2001 From: CleverThis Date: Tue, 5 May 2026 00:02:35 +0000 Subject: [PATCH 1/2] fix(database/migration_runner): add check_same_thread=False to get_current_revision() SQLite engine Pass connect_args={'check_same_thread': False} when creating the SQLite engine in get_current_revision(), consistent with init_or_upgrade() which already does this for all SQLite engines. Without this flag, calling get_current_revision() from a thread other than the one that created the engine raises a ProgrammingError. Add a Behave scenario to verify the connect_args are passed correctly. ISSUES CLOSED: #10952 -- 2.52.0 From 45f25fa88d343e13b027ff833ba8e4a31c3af9db Mon Sep 17 00:00:00 2001 From: CleverThis Date: Tue, 5 May 2026 00:57:07 +0000 Subject: [PATCH 2/2] ci: retrigger CI after docker infrastructure recovery -- 2.52.0