Auto-commit local changes before build (2026-01-19 15:47:15)

This commit is contained in:
Ivo Oskamp 2026-01-19 15:47:15 +01:00
parent a7a61fdd64
commit 4b3b6162a0
3 changed files with 19 additions and 3 deletions

View File

@ -1 +1 @@
v20260119-15-fix-migrations-autotask-phase2
v20260119-16-fix-runchecks-render-modal

View File

@ -975,7 +975,7 @@ table.addEventListener('change', function (e) {
for (var i = 0; i < runs.length; i++) {
if (String(runs[i].id) === String(keepRunId)) { idx = i; break; }
}
renderModal(payload, idx);
renderRun(payload, idx);
});
}
})
@ -984,7 +984,7 @@ table.addEventListener('change', function (e) {
else alert(e.message || 'Failed.');
})
.finally(function () {
// State will be recalculated by renderModal/renderRun.
// State will be recalculated by renderRun.
});
});
}

View File

@ -308,6 +308,22 @@ Changes:
- Restored successful Gunicorn worker startup and backend application boot.
- No functional or behavioural changes beyond resolving the syntax error.
## v20260119-15-fix-migrations-autotask-phase2
### Changes:
- Restored the missing `_get_table_columns()` helper function required by multiple database migrations.
- Fixed Autotask-related migrations that introduced the `resolved_origin` and Autotask job_run fields.
- Ensured all migrations run inside a safe transaction context so failures always trigger a rollback.
- Prevented database sessions from remaining in an aborted state after a failed migration.
- Resolved runtime database errors on the Run Checks page caused by earlier migration failures.
## v20260119-16-fix-runchecks-render-modal
### Changes:
- Fixed a JavaScript runtime error on the Run Checks page where `renderModal` was referenced but not defined.
- Replaced the obsolete `renderModal(...)` call with the correct Run Checks rendering function.
- Restored proper Run Checks page rendering without breaking existing ticket or modal behaviour.
***
## v0.1.21