4.0.0 (2018-10-02)
Features
BREAKING CHANGES
- Native promises replaces Bluebird to correspond with ioredis v4. This change is not backwards compatible and we're updating the peerDependency accordingly. You can switch the Promise implementation in
ioredis-mock
as inioredis
:
const Redis = require('ioredis-mock')
Redis.Promise = require('bluebird')
const redis = new Redis()