You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
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.
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
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.
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
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