Connector/Node.js 3.5.1 Release Notes
Connector/Node.js 3.5.1 is a Stable (GA) release of MariaDB Connector/Node.js, released on 2026-02-18
Notable changes
Add asyncDispose support for ConnectionPromise - CONJS-338
await using conn = await mariadb.createConnection(config);
// conn.end() is called automatically at end of blockAdd generic type parameter for query values in TypeScript definitions - CONJS-339
const rows = await conn.query<ResultType, [number, string]>(
'SELECT * FROM t WHERE id = ? AND name = ?',
[1, 'alice']
);Support charset + collation combination in connection options - CONJS-341
Bugs Fixed
Last updated
Was this helpful?

