Minor Changes
-
BREAKING CHANGE: removed
migrate(request)andcompileSql(DataMigrationOperation)The DDL operation ADT has been removed from
@remix-run/data-table, so this adapter no longer implementsmigrate()andcompileSql()only acceptsDataManipulationOperation. SQL-file migrations run through the newexecuteScript(sql, transaction?)method, which forwards toclient.query(sql)without a parameter array (postgres treats unparameterized queries as multi-statement scripts).
Patch Changes
-
Fixed raw SQL placeholder rewriting so
?characters inside string literals, quoted identifiers, comments, and PostgreSQL dollar-quoted strings are preserved. -
Bumped
@remix-run/*dependencies: