From 9377222d4d22865e91a8527c6f83ab885c4f7f6b Mon Sep 17 00:00:00 2001 From: "Jonathan D.A. Jewell" <6759885+hyperpolymath@users.noreply.github.com> Date: Thu, 14 May 2026 15:04:38 +0100 Subject: [PATCH] docs(readme): drop MySQL from interception backends list MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes #62. The README listed MySQL alongside Postgres/SQLite/MongoDB as if it were a supported interception backend, but `abi::DatabaseBackend` only defines PostgreSQL/SQLite/MongoDB. Anyone landing on the README would think MySQL works. Remove the MySQL line. MySQL remains in ROADMAP.adoc as a `[ ]` todo, which is the appropriate place for unimplemented work. (Redis appears nowhere in the current README — already absent. The issue mentioned it but the README has since been edited.) Co-Authored-By: Claude Opus 4.7 --- README.adoc | 1 - 1 file changed, 1 deletion(-) diff --git a/README.adoc b/README.adoc index 87184fd..5e25cd8 100644 --- a/README.adoc +++ b/README.adoc @@ -183,7 +183,6 @@ Your Application **Interception methods** (configurable per database): * **PostgreSQL**: logical replication / `pg_notify` / triggers -* **MySQL**: binlog CDC / triggers * **SQLite**: `sqlite3_update_hook` / WAL monitoring * **MongoDB**: change streams * **Application-level**: middleware / ORM hooks