hugo mod get -u doesn't update all latest version for modules if the upstream modules haven't been updated.
Let's say the github.com/hbstack/breadcrumb module latest version is v0.2.1.
$ hugo mod get -u
$ hugo mod graph | grep breadcrumb
github.com/hbstack/meta/recommended@v0.2.10 github.com/hbstack/docs/modules/breadcrumb@v0.1.6
github.com/hbstack/docs/modules/breadcrumb@v0.1.6 github.com/hbstack/breadcrumb@v0.1.1
But after executing hugo mod get -u, the github.com/hbstack/breadcrumb wasn't be updated, since it was imported by github.com/hbstack/docs/modules/breadcrumb as an old version, with this, it makes hard to maintain, which requires to release a new version on github.com/hbstack/docs/modules/breadcrumb and github.com/hbstack/meta/recommended.
hugo mod get -u
doesn't update all latest version for modules if the upstream modules haven't been updated.Let's say the
github.com/hbstack/breadcrumb
module latest version isv0.2.1
.But after executing
hugo mod get -u
, thegithub.com/hbstack/breadcrumb
wasn't be updated, since it was imported bygithub.com/hbstack/docs/modules/breadcrumb
as an old version, with this, it makes hard to maintain, which requires to release a new version ongithub.com/hbstack/docs/modules/breadcrumb
andgithub.com/hbstack/meta/recommended
.