Support more database engines
Features
Add support for in-memory data-storage and for the following database engines: (ad39a98)
- MariaDB
- Microsoft SQL Server
- Postgres
- SQLite
Bug Fixes
- fix the
getUsers()
filtering bug (bfcb508)
⚠ BREAKING CHANGES
- Calls to
express-user-manager.getDbDriver('mysql')
will fail. - Passing connection parameters to the constructor returned by the call to
express-user-manager.getDbDriver()
no longer connects to the database, theconnect()
method must be explicitly called on the instantiated object and passed the connection parameters. express-user-manager.getDbDriver()
is now deprecated and will be removed in an upcoming release; useexpress-user manager.getDbAdapter()
instead.