Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update dependency handy-redis to v2 #21

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Oct 29, 2020

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
handy-redis ^1.7.0 -> ^2.0.0 age adoption passing confidence

Release Notes

mmkal/handy-redis (handy-redis)

v2.3.1

Compare Source

Fix:

  • Make eson-parser a dev dependency 9b40c97

v2.3.0

Compare Source

  • Fixes for latest redis-doc (add GEOSEARCH, fix #​324) (#​328) a8c8810
  • Merge commit 'ef78f6ed0cc7739316ae7e2813ab371b12cea7f5' into main f3f38d3
  • Squashed 'docs/redis-doc/' changes from 99a0aa5..93a2afb33 ef78f6e

v2.2.2

Compare Source

npm

v2.2.1

Compare Source

Reduces package size by about 2/3 - some copies of the full redis commands interface files were accidentally shipped last time.

  • Internal: rename ci script to test so np automatically cleans before publishing f06bdab

v2.2.0

Compare Source

v2.1.0

Compare Source

v2.0.3

Compare Source

v2.0.2: handy-redis 2.0.2

Compare Source

Fix:
ZRANGEBYSCORE, ZREMRANGEBYSCORE, ZREVRANGEBYSCORE and ZCOUNT: allow +inf,-inf, ranges in interval args (redis-doc workaround) (#​240 - fixes #​30) 0c4a08f

v2.0.1: handy-redis 2.0.1

Compare Source

Fixes

npm package

v2.0.0: handy-redis 2.0.0

Compare Source

npm package

Breaking changes:

  • command signatures updated, some are now more strict
  • anys have been replaced with unknowns
  • new commands added
  • execMulti is removed in favour of .multi().exec(), which is promisified
  • multi pipelines now keep track of types
  • .batch support added (fixes #​45)
  • .script('LOAD') and other subcommands added (fixes #​221)
  • addNodeRedisCommand exposed (fixes #​176)
  • redis removed as a dependency. It must be added separately
  • deprecated functions/properties/interfaces (the old forms are preserved for backwards-compatibility, but update if possible):
    • clients should now be created with createNodeRedisClient rather than createHandyClient
    • WrappedNodeRedisClient is now preferred to IHandyRedis
    • client.nodeRedis preferred to client.redis
  • lots of internal tidyup of code-generation code

Basic usage is identical, aside from the recommended import name:

import { createNodeRedisClient } from 'handy-redis';

(async function() {
    const client = createNodeRedisClient();

    await client.set('foo', 'bar');
    const foo = await client.get('foo');
    console.log(foo); // 'bar'
})();

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants