Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[chore] Update leaf module versions to commits with pseudo version dependencies #11509

Merged
merged 1 commit into from
Oct 22, 2024

Commits on Oct 22, 2024

  1. [chore] Update leaf module versions to commits with pseudo version de…

    …pendencies
    
    Say we have three modules, A, B, and C, with dependencies C->B->A. If we are on commit 1, and make a new commit, 2, where we change the dependencies such that the go.mod files read C@2->B@1->A@1, we will still get a failure, because at commit 1 we had not yet made the changes necessary to properly resolve these modules. Specifically, at commit 2 we have B@1->A@*, where A@* is not externally-resolvable.
    
    We therefore need to make a new commit 3, where we can have C@2->B@2->A@2, and at commit 2 all modules are externally-resolvable.
    evan-bradley committed Oct 22, 2024
    Configuration menu
    Copy the full SHA
    28afa11 View commit details
    Browse the repository at this point in the history