All Versions
44
Latest Version
Avg Release Cycle
5 days
Latest Release
-

Changelog History
Page 1

  • v1.12.1 Changes

    • ๐Ÿ”‹ Feature: support new command: HRANDFIELD.
    • ๐Ÿ›  Bugfix: all tests pass on redis:7 now.
    • ๐Ÿ”‹ Feature: IRedis now accept username for auth, redis server version under 6 will ignore username.
    • ๐Ÿ”‹ Feature: IRedis support prompt now, you can customize prompt string. (thanks to [aymericbeaumet])
    • Feature: IRedis now honors the ssl_cert_reqs strategy, either specifying it via command line (--verify-ssl=<none|optional|required>) or as an url parameter (ssl_cert_reqs) when the connection is secured via tls (rediss://). (authored by [torrefatto])
  • v1.12 Changes

    • ๐Ÿ”‹ Feature: CLIENT KILL now support LADDR argument.
    • ๐Ÿ”‹ Feature: CLIENT LIST now support ID argument.
    • ๐Ÿ”‹ Feature: CLIENT PAUSE support options and added CLIENT UNPAUSE command.
    • ๐Ÿ”‹ Feature: CLIENT TRACKING support multiple prefixes.
    • ๐Ÿ”‹ Feature: support new command: CLIENT TRACKINGINFO.
    • ๐Ÿ”‹ Feature: support new command: COPY.
    • Feature: support new command: EVAL_RO and EVALSHA_RO.
    • ๐Ÿ”‹ Feature: support new command: EXPIRETIME.
    • ๐Ÿ”‹ Feature: support new command: FAILOVER.
    • ๐Ÿ”‹ Feature: support new command: GEOSEARCH.
    • ๐Ÿ”‹ Feature: support new command: GEOSEARCHRESTORE.
    • ๐Ÿ”‹ Feature: support new command: GETDEL.
    • ๐Ÿ”‹ Feature: support new command: GETEX.
    • ๐Ÿ”‹ Feature: FLUSHDB and FLUSHALL supports SYNC option.
    • ๐Ÿ”‹ Feature: GEOADD supports CH XX NX options.
    • ๐Ÿ”‹ Feature: Timestamp Completers are now support completion for timestamp fields and milliseconds timestamp fields.
    • ๐Ÿ—„ Deprecate: GEORADIUS is deprecated, no auto-complete for this command anymore.
    • ๐Ÿ—„ Deprecate: GEORADIUSBYMEMBER is deprecated, no auto-complete for this command anymore.
  • v1.11.1 Changes

    • ๐Ÿ›  Bugfix: Switch distutils.version to packaging.version to fix the version parse for windows. (new dependency: pypi's python-packaging.
  • v1.11 Changes

  • v1.10 Changes

    • ๐Ÿ”‹ Feature: more human readable output for HELP command like ACL HELP and MEMORY HELP.
    • ๐Ÿ”‹ Feature: you can use Ctrl + C to cancel a blocking command like BLPOP.
    • โœ… Test: IRedis now tested under ubuntu-latest (before is ubuntu-16.04)
    • ๐Ÿ‘ Dependency: Support Python 3.10 now, thanks to [tssujt].
    • โž• Add new command group: bitmap.
    • ๐Ÿ‘Œ Support new command in Redis:
      • ACL GETUSER
      • ACL HELP
      • BLMOVE
      • CLIENT INFO
  • v1.9.4 Changes

    • ๐Ÿ›  Bugfix: respect newbie_mode set in config, if cli flag is missing. thanks to [sid-maddy]
  • v1.9.3 Changes

    • ๐Ÿ›  Bugfix: When IRedis start with --decode=utf-8, command with shell pipe will fail. ( #383). Thanks to [hanaasagi].
  • v1.9.2 Changes

    • ๐Ÿ›  Bugfix: before cluster commands' node-id only accept numbers, not it's fixed. node-id can be \w+.
    • ๐Ÿ”‹ Feature: support set client name for iredis connections via --client-name.
  • v1.9.1 Changes

    August 28, 2020
    • ๐Ÿ”‹ Feature: support auto-reissue command to another Redis server, when got a "MOVED" error in redis cluster.
  • v1.9 Changes

    • ๐Ÿ”‹ Feature: Support LPOS command.
    • โšก๏ธ Doc: Update docs in HELP command update to date.