MariaDB Connector/Node.js 2.1.3 Release Notes

The most recent Stable (GA) release of MariaDB Connector/Node.js is:MariaDB Connector/Node.js 3.4.2

DownloadRelease NotesChangelogConnector/Node.js Overview

Release date: 19 Nov 2019

MariaDB Connector/Node.js 2.1.3 is a Stable (GA) release.

For an overview of MariaDB Connector/Node.js see theAbout MariaDB Connector/Node.js page

Notable Changes

  • CONJS-109 Missing mysql only collation definition

  • CONJS-108 typescript escape/escapeId definition

  • CONJS-107 Change user callback function not called when no option is set and changing collation only if collation option is correct

  • CONJS-106 properly escape boolean parameter false

  • CONJS-105 Typecast provided date function erroneous parsing

  • CONJS-104 Pam authentication must permit to provide multiple passwords

PAM authentication with multiple steps can be achieved using password as array:

const mariadb = require('mariadb');

  mariadb.createConnection({host: 'mydb.com', user: 'myUser', password: ['myPwd', 'myAuthToken']})
    .then(conn => {
       ...
    })
    .catch(err => {
      ...
    });

Misc

  • better cluster error when pool is full

  • adding test coverage

Be notified of new MariaDB Server releases automatically by subscribing to the MariaDB Foundation community announce 'at' lists.mariadb.org announcement list (this is a low traffic, announce-only list). MariaDB plc customers will be notified for all new releases, security issues and critical bug fixes for all MariaDB plc products thanks to the Notification Services.

MariaDB may already be included in your favorite OS distribution. More information can be found on theDistributions which Include MariaDB page.

Last updated

Was this helpful?