ozontech/cute

go: github.com/ohler55/ojg@v1.12.9: invalid version: unknown revision v1.12.9

Closed this issue · 5 comments

The module requests a dependency that apparently no longer exists, because the last tag that is in the specified repository is 1.15.0 (but it is available at https://pkg.go.dev/github.com/ohler55/ojg@v1.12.9)

.../go list -modfile=.../go.mod -m -json -mod=mod all #gosetup
go: github.com/ohler55/ojg@v1.12.9: invalid version: unknown revision v1.12.9

It only helps to forcibly specify a newer version 1.21.1

require (
    ...
    github.com/ozontech/cute v0.1.14
    ...
)

require (
    ...
    github.com/ohler55/ojg v1.21.0 // indirect
    ...
)

use replace github.com/ozontech/cute v0.1.15 => github.com/KaymeKaydex/cute v0.1.2 as temprorary hotfix

@siller174 , can u review my changes with newer version with existing tag, looks like critical error

Thank you. I will merge it this evening.

I merged you PR but decided to upgrade all in #60, please check it if you have a tive

Fixed in v0.1.16.
Thank you a lot for your fix. You are welcome at all times.