Skip to content

v3.0.1

Choose a tag to compare

@github-actions github-actions released this 30 May 17:09
· 17 commits to main since this release
1695e30

Patch Changes

  • c048de0: Fix db.execute() result-shape assumption that broke on drivers other than drizzle-orm/node-postgres. invoke-budget and schema-version probes were reading result.rows[0], but postgres-js (and some drizzle 1.x driver builds) return the rows array directly — those consumers were getting undefined.rows and patching the dist by hand.

    Added a rowsOf() helper that handles both shapes and used it at both call sites. pg_notify and other fire-and-forget executes are unaffected.