Hello Darko, Rather than that 'replace' you found, a better solution is probably adding a 'require' for a more recent release of github.com/ugorji/go.
Adding this to my go.mod worked for me in a simple test just now to resolve a similar error to what you reported: require github.com/ugorji/go v1.1.7 Using a 'require' for a recent version is better than the 'replace' you found for a couple reasons, including it is more forward looking, it ages out more gracefully, it helps anyone importing your project (avoiding the problem Sam W. just commented on), etc. Or, you likely could use a later version than v1.1.7. The v1.1.7 release of github.com/ugorji/go was specifically targeting resolving the error you reported, I believe. Some more details here if interested: https://github.com/ugorji/go/issues/299 Regards, thepudds On Tuesday, September 10, 2019 at 9:15:46 AM UTC-4, Sam Whited wrote: > > Note that replace directives are not transitive, so every single user of > your library will need to do this. You can put it into your go.mod file > to get your library building and get tests passing, but your users will > still have to do this work as well so you'll probably want to document > that they now have to jump through hoops to use your library. > > —Sam > > On Tue, Sep 10, 2019, at 13:10, Darko Luketic wrote: > > The answer is apparently > > https://github.com/gin-gonic/gin/issues/2039#issuecomment-527997733 > > > > > Add this to your go.mod file: `replace github.com/ugorji/go v1.1.4 > > > => github.com/ugorji/go v0.0.0-20190204201341-e444a5086c43` > > On Tuesday, September 10, 2019 at 2:48:25 PM UTC+2, Darko > > Luketic wrote: > > > What used to work pre go 1.13 now doesn't work anymore > > -- > Sam Whited > -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/golang-nuts/ef689ff2-fe8b-4e8b-b01f-c96e37260f6c%40googlegroups.com.