vendor: github.com/opencontainers/image-spec v1.1.0-rc3#45437
Merged
thaJeztah merged 1 commit intomoby:masterfrom May 31, 2023
Merged
vendor: github.com/opencontainers/image-spec v1.1.0-rc3#45437thaJeztah merged 1 commit intomoby:masterfrom
thaJeztah merged 1 commit intomoby:masterfrom
Conversation
thaJeztah
commented
Apr 28, 2023
vendor.mod
Outdated
| github.com/morikuni/aec v1.0.0 | ||
| github.com/opencontainers/go-digest v1.0.0 | ||
| github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b | ||
| github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b // replaced; see replace rule for the correct version (v1.1.0-rc.3) |
Member
Author
There was a problem hiding this comment.
Actually; let me replace this for the last commit before the tag, so that others would have almost the same minimum version at least.
Member
Author
There was a problem hiding this comment.
We cannot use the commit of the tag itself, because go mod is being smart, and opencontainers/image-spec@085b884 is converted to v1.1.0-rc.3 (because it's the same commit as the tag), then v1.1.0-rc.3 is compared with v1.1.0-rc2.0.20221005185240-3a7f492d3f1b, which is considered newer, so it then upgrades by "rolling back" 😭 😂
9755d4c to
2736042
Compare
Member
Author
|
Looks like BuildKit needs an update; |
Member
Author
|
ARGH.. and I had my PR to prepare for that; and it wasn't merged; |
7342371 to
c7036d8
Compare
c7036d8 to
dd8653e
Compare
73ad490 to
be74ef4
Compare
full diff: opencontainers/image-spec@3a7f492...v1.1.0-rc3 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
be74ef4 to
b42e367
Compare
rumpl
approved these changes
May 31, 2023
vvoland
approved these changes
May 31, 2023
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Temporarily using using the last commit before the tag, and a replace rule. Because SemVer considers v1.1.0-rc.3 older than v1.1.0-rc2 (due to te missing .). The "rc.3" is the correct format, but older releases did not use this format, so now sort higher, see:https://semvercompare.azurewebsites.net/?version=1.1.0-rc1&version=1.1.0-rc2&version=1.1.0-rc.3We cannot use the commit of the tag itself (085b884d628c42985cc2f2a99e5701f7e9b3bd1f), because go mod is being smart, and that commit is resolved to the tag (v1.1.0-rc.3), then compared withv1.1.0-rc2.0.20221005185240-3a7f492d3f1b, which is considered newer thanv1.1.0-rc.3, and so it "upgrades" by "downgrading".full diff: opencontainers/image-spec@3a7f492...v1.1.0-rc.3
- What I did
- How I did it
- How to verify it
- Description for the changelog
- A picture of a cute animal (not mandatory but encouraged)