You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The "go mod graph" command returns a DAG so there can be no cycles, but
modules can appear multiple times with different versions. When
stripping the version from the modules we can accidentaly introduce
cycles in the DAG by merging multiple versions of a module.
To prevent this, we go back to saving the exact output of "go mod graph"
in memory, including the version strings, and get rid of them when
visiting each node.
Closes: #292
0 commit comments