- fix eslint errors in test files
- use make instead grunt
- update dependencies
- use eslint
- code refactoring
- update dependencies
-
database config has to be an Object and the database name isn't part of the connection string anymore
old
exports.db = 'mysql://127.0.0.1:9821/users'; exports.dbCollection = 'my_user_table';
new
exports.db = { url: 'mysql://127.0.0.1:3306/', name: 'users', collection: 'my_user_table' },
-
simplify
remove()methodadapter.remove(match, query, callback)
becomes
adapter.remove(username, callback)
...
- initial release