Skip to content

Latest commit

 

History

History
63 lines (41 loc) · 1.04 KB

File metadata and controls

63 lines (41 loc) · 1.04 KB
0.5.3 / 2015-07-06
  • fix eslint errors in test files
0.5.2 / 2015-07-03
  • use make instead grunt
  • update dependencies
  • use eslint
0.5.1 / 2014-05-19
  • code refactoring
  • update dependencies
0.5.0 / 2014-04-17
  • 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'
    },
0.4.0 / 2014-04-10
0.3.0 / 2014-04-03
  • simplify remove() method

    adapter.remove(match, query, callback)

    becomes

    adapter.remove(username, callback)

...

0.0.1 / 2014-01-19
  • initial release