If we change to warnings instead of errors we could deal with certain projects where older dependencies are required. The current behaviour throws an error when setting in the replaces a dependency that uses an older version than one in the go.mod.
However this error doesn't take into account if we really need this old dep to build the project. Or even if go mod tidy did bumped this version for us.
If we change to warnings instead of errors we could deal with certain projects where older dependencies are required. The current behaviour throws an error when setting in the
replaces
a dependency that uses an older version than one in the go.mod. However this error doesn't take into account if we really need this old dep to build the project. Or even if go mod tidy did bumped this version for us.