- Fixed bug where same query may be returned from cache twice
- New API
- Allow raw queries to be cached
- Non-singleton design pattern - required moving model name from constructor to model method
- Swap redis.setex for redis.set(['EX']) (H/T https://github.com/thujikun)
- Added findAndCount method
- Fixed bug where cacheHit was true even when going to the database, when reusing the cache obj
- Fixed issue with associations generating new cache (H/T https://github.com/NotJustClarkKent)
- Updated dev dependencies for sqlite3, redis (should work test correctly with node 4.x, 5.x, 6.x)
- Added error handler for database issues (H/T https://github.com/thujikun)
- Added findOne method (H/T https://github.com/jonathanleang)
- Add sequelize 3.0 support, drop queryOptions
- Added travis ci build status and entry
- Fix findAll from P.R. #3 (H/T to https://github.com/thujikun)
- Fix v0.0.5, findAll and aggregates
- This is also a broken release, do NOT use, findAll and aggregates become broken
- Fix v0.0.4, use .get and upgrade sequelize to 2.0.0rc1 (does recursive POJO conversion)
- Add CHANGELOG.md
- This is a bad release, do NOT use, uses toJSON method that may not exist
- Update test with toJSON method
- Fix for hashing of circular references (nested entities)
- Initial release