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 /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 'go.mod')
-rw-r--r-- | go.mod | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -12,12 +12,12 @@ require ( github.com/containernetworking/cni v1.0.1 github.com/containernetworking/plugins v1.0.1 github.com/containers/buildah v1.23.1 - github.com/containers/common v0.46.1-0.20211115170340-7ae7bd1c3f8e + github.com/containers/common v0.46.1-0.20211122213330-d4e7724a0c58 github.com/containers/conmon v2.0.20+incompatible github.com/containers/image/v5 v5.17.0 github.com/containers/ocicrypt v1.1.2 github.com/containers/psgo v1.7.1 - github.com/containers/storage v1.37.1-0.20211014130921-5c5bf639ed01 + github.com/containers/storage v1.37.1-0.20211122214631-59ba58582415 github.com/coreos/go-systemd/v22 v22.3.2 github.com/coreos/stream-metadata-go v0.0.0-20210225230131-70edb9eb47b3 github.com/cyphar/filepath-securejoin v0.2.3 |