Skip to content

Tags: gomodule/redigo

Tags

v1.9.2

Toggle v1.9.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
ci: fix go caching (#667)

Move checkout before go-setup so caching works.

v1.9.1

Toggle v1.9.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore: retract v1.8.10 (#664)

Retract v1.8.10 which was tagged incorrectly for a feature release and
only available for a few minutes. v1.9.0 is identical.

v1.9.0

Toggle v1.9.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
ci: add goreleaser, update action and go versions (#662)

Add goreleaser to automate the generation of release notes and bump
the versions of github actions golang go the latest versions.

v1.8.9

Toggle v1.8.9's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat: add support for latency command parsing (#614)

Add support for LATENCY LATEST, LATEST HISTORY command parsing.

v1.8.8

Toggle v1.8.8's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: surface underlying error for slice / map helpers (#580)

Surface the underlying error when processing results for slice and map
helpers so that the user can see the real cause and not a type mismatch
error.

Also:
* Formatting changes to improve error case separation.
* Leverage %w in reply errors.

Fixes: #579

v1.8.7

Toggle v1.8.7's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: retract tagged versions (#590)

Retract unpublished versions from go tooling.
Bump go version to 1.16 required for retract statement.

Fixes #585

v1.8.6

Toggle v1.8.6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: DoContext call to DoWithTimeout (#576)

Fix DoContext call to DoWithTimeout passing args as variadic.

Fixes #575

v1.8.5

Toggle v1.8.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: DialURL compatibility with redis-cli (#566)

Fix compatibility of DialURL with respect for single component user-info
records.

This enables URLs such as redis://mypass@localhost/1 as supported by
redis-cli to be used.

v1.8.4

Toggle v1.8.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
chore: Add clog config (#555)

Add config for clog which is used for generating release notes from our
conventional commits.

For details on the tool see: https://github.com/clog-tool/clog-cli

v1.8.3

Toggle v1.8.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat: Add TLS Handshake timeout support (#530)

* feat: Add TLS Handshake timeout support

Add support for configuring a timeout for TLS Handshake call via
DialTLSHandshakeTimeout DialOption. If no option is specified then the
default timeout is 10 seconds.

Also:
* Add a default connect timeout of 30 seconds matching that of net/http.

Fixes #509