diff options
author | Valentin Rothberg <rothberg@redhat.com> | 2021-11-22 13:48:14 +0100 |
---|---|---|
committer | Valentin Rothberg <rothberg@redhat.com> | 2021-11-23 11:15:03 +0100 |
commit | 0d1aaf080eb116f1e8e23cd55a8bca0ed5f2e596 (patch) | |
tree | cdb32b1680f23d5d501af445cb345d539eb0dc36 /vendor/github.com/Microsoft/hcsshim/go.mod | |
parent | a55473bea80c2d9e5d79ac97a2bfe313622033f9 (diff) | |
download | podman-0d1aaf080eb116f1e8e23cd55a8bca0ed5f2e596.tar.gz podman-0d1aaf080eb116f1e8e23cd55a8bca0ed5f2e596.tar.bz2 podman-0d1aaf080eb116f1e8e23cd55a8bca0ed5f2e596.zip |
image lookup: do not match *any* tags
For reasons buried in the history of Podman, looking up an untagged
image would match any tag of matching image. For instance, looking up
centos would match a local image centos:foobar. Change that behavior
to only match the latest tag.
Fix: #11964
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'vendor/github.com/Microsoft/hcsshim/go.mod')
-rw-r--r-- | vendor/github.com/Microsoft/hcsshim/go.mod | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/vendor/github.com/Microsoft/hcsshim/go.mod b/vendor/github.com/Microsoft/hcsshim/go.mod index 4d26c7c36..7c9747667 100644 --- a/vendor/github.com/Microsoft/hcsshim/go.mod +++ b/vendor/github.com/Microsoft/hcsshim/go.mod @@ -5,11 +5,12 @@ go 1.13 require ( github.com/BurntSushi/toml v0.3.1 github.com/Microsoft/go-winio v0.4.17 + github.com/cenkalti/backoff/v4 v4.1.1 github.com/containerd/cgroups v1.0.1 github.com/containerd/console v1.0.2 github.com/containerd/containerd v1.5.7 github.com/containerd/go-runc v1.0.0 - github.com/containerd/ttrpc v1.0.2 + github.com/containerd/ttrpc v1.1.0 github.com/containerd/typeurl v1.0.2 github.com/gogo/protobuf v1.3.2 github.com/golang/mock v1.6.0 |