diff --git a/CHANGELOG.md b/CHANGELOG.md index 223a9c8e..f42503af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,9 @@ # Changelog - ## [Unreleased] + +## [02.59.00] --- 2026-07-12 + ### Fixed - Pre-update backup now fires for **every** extension update/uninstall, not just the first one in a 10-minute window. A coarse 600-second session throttle (armed after any pre-action backup — even after updating MokoSuiteBackup itself or a core Joomla update) was disabling the client-side interceptor **and** the server-side fallback for *all* extensions for 10 minutes, so distinct updates silently went un-backed-up (looked like "only the backup extension triggers it"). Replaced with **one backup per Update action**: a single batch/click still backs up once (deduped per-request), the client re-fire is skipped via a **one-shot** action-keyed flag (consumed once), and the core-update path uses its own dedicated key so it no longer suppresses extension backups. - Pre-update backup on the **Joomla Update** page is now **seamless** (Akeeba-style): after the full-screen backup runs, the plugin auto-ticks Joomla's "I have taken a backup" checkbox and clicks Install, so the update continues automatically instead of stopping for a second manual click. @@ -65,18 +67,3 @@ ### Fixed - Component manifest `` reverted to the element-safe `MokoSuiteBackup`. The "Type - Name" convention derived element `com_component-mokosuitebackup`, registering a duplicate component and leaving the real `com_mokosuitebackup` orphaned on the old version. (#213) - -## [02.56.07] --- 2026-07-05 - -### Security -- Mask the FTP password in `AjaxController::maskSecrets()`/`mergeExistingSecrets()` — stored FTP remotes no longer leak their password via `listRemotes`. (#169) -- Stop the API single-item view (`Backups/JsonapiView`) leaking the server `absolute_path`. (#187) -- SFTP uploader uses `StrictHostKeyChecking=accept-new` instead of `no`. (#182) - -### Fixed -- `DatabaseDumper` writes a real newline after `DROP TABLE` (was a literal `\n`). (#179) -- Profile-picker forms order by `id` instead of the dropped `ordering` column. (#180) -- `uninstall.mysql.sql` now drops the snapshots table. (#181) -- CLI snapshot delete uses the `data_file` column (was non-existent `file_path`). (#184) -- Remove the duplicate pre-update backup (content plugin no longer subscribes to `onExtensionBeforeUpdate`). (#186) -- `DatabaseImporter` collects non-fatal statement errors (`getErrors()`/`hasErrors()`). (#188) diff --git a/source/packages/com_mokosuitebackup/sql/updates/mysql/02.59.00.sql b/source/packages/com_mokosuitebackup/sql/updates/mysql/02.59.00.sql new file mode 100644 index 00000000..8e400b17 --- /dev/null +++ b/source/packages/com_mokosuitebackup/sql/updates/mysql/02.59.00.sql @@ -0,0 +1 @@ +/* 02.59.00 — no schema changes */