fortis / koa-boost

Cache middleware for koa
1 stars 0 forks source link

An in-range update of ioredis-mock is breaking the build 🚨 #22

Open greenkeeper[bot] opened 6 years ago

greenkeeper[bot] commented 6 years ago

Version 3.1.2 of ioredis-mock was just published.

Branch Build failing 🚨
Dependency ioredis-mock
Current Version 3.1.1
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

ioredis-mock is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details - ❌ **continuous-integration/travis-ci/push** The Travis CI build failed [Details](https://travis-ci.org/fortis/koa-boost/builds/299899547?utm_source=github_status&utm_medium=notification)

Release Notes v3.1.2
  • Fixed: Fixed hexists edge cases (#331)
Commits

The new version differs by 1 commits.

  • b392026 Fix: Fixed hexists edge cases (#331)

See the full diff

FAQ and help There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those don’t help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).

Your Greenkeeper Bot :palm_tree:

greenkeeper[bot] commented 6 years ago

After pinning to 3.1.1 your tests are still failing. The reported issue might not affect your project. These imprecisions are caused by inconsistent test results.

greenkeeper[bot] commented 6 years ago

Version 3.1.3 just got published.

Your tests are still failing with this version. Compare the changes 🚨

Release Notes v3.1.3
  • Fixed: Errors in smembers and srem when no data is set (#332)
Commits

The new version differs by 2 commits.

  • 3f8345e Fix: Errors in smembers and srem when no data is set (#332)
  • 8c57c48 Chore: Update Changelog

See the full diff

greenkeeper[bot] commented 6 years ago

Version 3.2.0 just got published.

Your tests are still failing with this version. Compare the changes 🚨

Release Notes v3.2.0

New Commands

SCAN command (#334 @DrMegavolt)

redis
  .scan(0, 'MATCH', 'foo*', 'COUNT', 1)
  .then(result => console.log(result))

LRANGE command (#335 @sseidametov)

redis
  .lrange('myKey', 0, 2)
  .then(result => console.log(result))
Commits

The new version differs by 4 commits.

  • dfaf417 Changelog: πŸš€
  • f9dad15 Feat: Add LRANGE support (#335)
  • aae16cd Feat: Scan command implementation (#334)
  • 60f1019 Chore: Setup Prettier (#333)

See the full diff

greenkeeper[bot] commented 6 years ago

Version 3.3.0 just got published.

Your tests are still failing with this version. Compare the changes 🚨

Release Notes v3.3.0

Added

Added support for passing Map and Object to hmset

This is a stopgap solution until real argument and reply transformers is implemented and fully compatible with ioredis

ZADD command (#321 @ddunkin)

redis.zadd('myzset', '1', 'one', '1', 'uno',  '2', 'two', '3', 'three') // returns `4` as 4 items got added

ZRANGE command (#321 @ddunkin)

redis.zrange('myzset', 0, -1) // ['one', 'uno', 'two', 'three']

ZREVRANGE command (#321 @ddunkin)

redis.zrevrange('myzset', 0, -1) // ['three', 'two', 'uno', 'one']

ZREMRANGEBYRANK command (#321 @ddunkin)

redis.zremrangebyrank('myzset', 0, 2) // returns '3' as that’s how many items got deleted
redis.zrange('myzset', 0, -1) // ['three']
Commits

The new version differs by 3 commits.

  • cffd1cf Changelog: πŸš€
  • 87cbdd4 Feat: Support objects and maps in hmset (#337)
  • 5c0000e Feat: Add support for some sorted set commands: zadd, zrange, zremrevbyrank, zrevrange. (#321)

See the full diff

greenkeeper[bot] commented 6 years ago

Version 3.3.1 just got published.

Your tests are still failing with this version. Compare the changes 🚨

Release Notes v3.3.1
  • Fixed: Missing runkit file (#340)
Commits

The new version differs by 1 commits.

  • b03d7c4 Fix: Missing runkit file (#340)

See the full diff

greenkeeper[bot] commented 6 years ago

Version 3.4.0 just got published.

Your tests are still failing with this version. Compare the changes 🚨

Release Notes v3.4.0

Added

Full Argument and Reply transformer support (#342 @DrMegavolt)

Any transformer you use on arguments and replies in ioredis will work in ioredis-mock πŸŽ‰

Since we're now able to load the built in transformers in ioredis we could finally get rid of old code related to the the hgetall and hmset commands.

If you're using ioredis-mock standalone and haven't upgraded to v3.3.0 or newer

The following only apply if you use ioredis-mock without installing ioredis

If this is your use case you'll need to install ioredis as well or ioredis-mock will not work as we're using ioredis internals to stay compatible. Using ioredis-mock without installing ioredis have been possible up to now but's newer actually been officially supported. That's why ioredis have always been specified as a peerDependency.

Commits

The new version differs by 2 commits.

  • 817911e Changelog: πŸš€
  • a5a00ea Feat: Argument and Reply Transformers (#342)

See the full diff

greenkeeper[bot] commented 6 years ago

Version 3.4.1 just got published.

Your tests are still failing with this version. Compare the changes 🚨

Release Notes v3.4.1
  • Fixed: More detailed RunKit example (#346)
Commits

The new version differs by 2 commits.

  • b752152 Fix: More detailed RunKit example (#346)
  • 4f9682d Junit support on CircleCI (#344)

See the full diff

greenkeeper[bot] commented 6 years ago

Version 3.4.2 just got published.

Your tests are still failing with this version. Compare the changes 🚨

Release Notes v3.4.2
  • Fixed: Remove .eslintcache file from package (#347)
Commits

The new version differs by 1 commits.

  • 142df47 Fix: Remove .eslintcache file from package (#347)

See the full diff

greenkeeper[bot] commented 6 years ago

Version 3.5.0 just got published.

Your tests are still failing with this version. Compare the changes 🚨

Release Notes v3.5.0

Added

Subscribe Stub (#348 @yitongding)

const RedisMock = require('ioredis-mock');
const redis = new RedisMock();
redis.subscribe('news', 'music').then(result => console.log(result)) // logs '2'
Commits

The new version differs by 2 commits.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 3.6.0 just got published.

Your tests are still failing with this version. Compare the changes 🚨

Release Notes v3.6.0

Added

ZRANGEBYSCORE command (#350 @usebaz)

const data = {
  foo: new Map([
    ['first', { score: 1, value: 'first' }],
    ['second', { score: 2, value: 'second' }],
    ['third', { score: 3, value: 'third' }],
    ['fourth', { score: 4, value: 'fourth' }],
    ['fifth', { score: 5, value: 'fifth' }],
  ]),
};
const RedisMock = require('ioredis-mock');
const redis = new MockRedis({ data });
redis
  .zrangebyscore('foo', 1, 3)
  .then(result => console.log(result)) // logs ['first', 'second', 'third']

QUIT stub (#350 @usebaz)

In ioredis this is the equivalent to calling redis.disconnect. ioredis-mock does not implement connection simulation functionality yet so for now it's just a stub.

redis.quit() // OK

UNSUBSCRIBE stub (#350 @usebaz)

Our previous release added subscribe and joining the fray you can now pretend to be unsubscribing (just like the newsletters in your inbox!)

redis.unsubscribe() // OK
Commits

The new version differs by 2 commits.

  • c131dea Changelog: πŸš€
  • 0066012 Feat: Add zrangebyscore and stubs for unsubscribe and quit (#350)

See the full diff

greenkeeper[bot] commented 6 years ago

Version 3.6.1 just got published.

Your tests are still failing with this version. Compare the changes 🚨

Release Notes v3.6.1
Commits

The new version differs by 1 commits.

  • 46d4195 Fix: Passing null values should not throw exceptions (#353 @kkragenbrink)

See the full diff

greenkeeper[bot] commented 6 years ago

Version 3.6.2 just got published.

Your tests are still failing with this version. Compare the changes 🚨

Commits

The new version differs by 1 commits.

  • 455a899 Fix: DEL should return number of keys deleted from the data, not the number of arguments (#355)

See the full diff

greenkeeper[bot] commented 6 years ago

Version 3.6.3 just got published.

Your tests are still failing with this version. Compare the changes 🚨

Commits

The new version differs by 1 commits.

  • a59fc0c Fix: srandom not using Set. (#356 @ianmuninio)

See the full diff

greenkeeper[bot] commented 6 years ago

Version 3.6.4 just got published.

Your tests are still failing with this version. Compare the changes 🚨

Commits

The new version differs by 1 commits.

  • 1923352 Fix: keys no longer returns empty sets, just like real redis (#358)

See the full diff