-
Notifications
You must be signed in to change notification settings - Fork 98
Description
Due to some confusion during the migration of the Redigo project (see gomodule/redigo#366), some projects (see RediSearch/redisearch-go#98) ended up with the orphaned (and older) 2.0.0+incompatible version in the go.mod. This seems to have happened to Throttled.
When I "upgrade" Redigo in https://github.com/fleetdm/fleet with go get -u github.com/gomodule/redigo@v1.8.4
, the Go tooling downgrades Throttled to 2.2.5 (the last version before the go.mod
file was added).
Can we update the go.mod
to include Redigo 1.8.4 (the current latest version)? Doing this and cutting a release would allow our project to use the current version of Throttled along with the current version of Redigo, without needing a manual replace
directive in the go.mod
.
Thanks!