Updating Go dependencies in a project that depends on this is currently breaking due to the dependency in go.mod of an older tag of commonlog:
|
github.com/tliron/commonlog v0.2.18 |
$ go mod tidy -v -e
go: downloading github.com/tliron/kutil v0.3.26
go: github.com/daveshanley/vacuum imports
github.com/daveshanley/vacuum/cmd imports
github.com/daveshanley/vacuum/language-server imports
github.com/tliron/glsp/server imports
github.com/tliron/commonlog imports
github.com/tliron/kutil/terminal: reading github.com/tliron/kutil/go.mod at revision v0.3.26: unknown revision v0.3.26
go: github.com/daveshanley/vacuum imports
github.com/daveshanley/vacuum/cmd imports
github.com/daveshanley/vacuum/language-server imports
github.com/tliron/glsp/server imports
github.com/tliron/commonlog imports
github.com/tliron/kutil/util: reading github.com/tliron/kutil/go.mod at revision v0.3.26: unknown revision v0.3.26
It looks like the newer tags of commonlog have this fixed:
ie: https://github.com/tliron/commonlog/tags
Would you be ok to bump this to a fixed version (ie: v0.2.21) while #42 is still being developed?
Updating Go dependencies in a project that depends on this is currently breaking due to the dependency in go.mod of an older tag of commonlog:
glsp/go.mod
Line 9 in 59d6e31
It looks like the newer tags of commonlog have this fixed:
ie: https://github.com/tliron/commonlog/tags
Would you be ok to bump this to a fixed version (ie:
v0.2.21) while #42 is still being developed?