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

Changelog History
Page 1

  • v1.2.0 Changes

    ๐Ÿ†• New features

    • Add :telemetry_metadata option to Redis calls. This can be used to provide custom metadata for Telemetry events.
    • Mark Redis sentinel support as not-experimental anymore.
    • Make Redix.URI part of the public API.

    ๐Ÿ› Bug fixes and improvements

    • Handle Redis servers that disable the CLIENT command.
    • Bump Elixir requirement to 1.11+.
  • v1.1.5 Changes

    ๐Ÿ› Bug fixes and improvements

    • Fix formatting of Unix domain sockets when logging
    • Use Logger instead of IO.warn/2 when warning about ACLs, so that it can be silenced more easily.
    • Allow the :port option to be set explicitly to 0 when using Unix domain sockets
    • Support empty string as database when using Redis URIs due to changes to how URIs are handled in Elixir
  • v1.1.4 Changes

    ๐Ÿ› Bug fixes and improvements

    • Support version 1.0 and over for the Telemetry dependency.
  • v1.1.3 Changes

    ๐Ÿ› Bug fixes and improvements

    • The .formatter.exs file included in this repo had some filesystem permission problems. This version fixes those.
  • v1.1.2 Changes

    ๐Ÿ”– Version v1.1.1 was accidentally published with local code (from the maintainer's machine) in it instead of the code from the main Git branch. We're all humans! Version v1.1.1 has been retired.

  • v1.1.1 Changes

    ๐Ÿ› Bug fixes and improvements

    • Version v1.1.0 started using ACLs and issuing AUTH <username> <password> when a username was provided (either via options or via URI). This broke previous documented behavior, where Redix used to ignore usernames. With this bug fix, Redix now falls back to AUTH <password> if AUTH <username> <password> fails because of the wrong number of arguments, which indicates a version of Redis earlier than verison 6 (when ACLs were introduced).
  • v1.1.0 Changes

    ๐Ÿ› Bug fixes and improvements

    • Improve handling of databases in URIs.
    • Add support for ACL, introduced in Redis 6.
  • v1.0.0 Changes

    ๐Ÿ›  No bug fixes or improvements. Just enough years passed for this to become 1.0.0!

  • v0.11.2 Changes

    ๐Ÿ› Bug fixes and improvements

    • Fix a connection process crash that would very rarely happen when connecting to sentinel nodes with the wrong password or wrong database would fail to due a TCP/SSL connection issue.
  • v0.11.1 Changes

    June 08, 2020

    ๐Ÿ› Bug fixes and improvements

    • Allow nil as a valid value for the :password start option again. v0.11.0 broke this feature.