Connector/Node.js 2.1.3 Release Notes

circle-info

Downloadarrow-up-right | Release Notes | Changelog | Connector/Node.js Overview

Release date: 19 Nov 2019

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

circle-check

Notable Changes

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

This page is: Copyright © 2025 MariaDB. All rights reserved.

spinner

Last updated

Was this helpful?