Tags: Lost-Temple/redigo
Tags
chore: Add clog config (gomodule#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 (gomodule#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 gomodule#509
fix: Correct grammar in ScanSlice docs (gomodule#491) Correct grammar in ScanSlice doc string.
fix: Argument processing on pointers (gomodule#474) Fix Argument interface processing on struct pointer types which was broken by gomodule#428 and not quite corrected by gomodule#446.
fix: Revert go mod changes (gomodule#472) Revert go mod changes which didn't work as intended due to sub modules.
feat: support go mod (gomodule#440) Add support for go mod The correct behaviour of this relies on go1.14 https://golang.org/doc/go1.14#incompatible-versions Fixes gomodule#366