diff --git a/CHANGELOG.md b/CHANGELOG.md index f1cb8fc..ce609c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## `0.4.2` +- CVE remediations: + + [OCI Manifest Type Confusion Issue](https://github.com/advisories/GHSA-qq97-vm5h-rrhg) + + [Ambiguous OCI manifest parsing](https://github.com/advisories/GHSA-5j5w-g665-5m35) + + [Clarify `mediaType` handling](https://github.com/advisories/GHSA-77vh-xpmg-72qh) + + [Insufficiently restricted permissions on plugin directories](https://github.com/advisories/GHSA-c2h3-6mxw-7mvq) +- upgrades: + + switched to *Go* 1.17 + + *Ubuntu 20.04* and *Alpine 3.14* to latest container images +- fixes: + + building on non-*Linux* platforms (issue #61) + ## `0.4.1` - CVE remediations: + [CVE-2020-26160](https://github.com/advisories/GHSA-w73w-5m7g-f7qc), `github.com/dgrijalva/jwt-go` diff --git a/go.mod b/go.mod index ea82f39..368e721 100644 --- a/go.mod +++ b/go.mod @@ -16,17 +16,40 @@ require ( ) require ( + cloud.google.com/go v0.65.0 // indirect + github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78 // indirect github.com/Microsoft/go-winio v0.4.15-0.20190919025122-fc70bd9a86b5 // indirect + github.com/beorn7/perks v1.0.1 // indirect + github.com/cespare/xxhash/v2 v2.1.1 // indirect github.com/containerd/containerd v1.4.12 // indirect github.com/docker/cli v0.0.0-20200130152716-5d0cf8839492 // indirect + github.com/docker/docker-credential-helpers v0.6.3 // indirect + github.com/docker/go-connections v0.4.0 // indirect github.com/docker/go-metrics v0.0.0-20181218153428-b84716841b82 // indirect + github.com/docker/go-units v0.4.0 // indirect github.com/docker/libtrust v0.0.0-20160708172513-aabc10ec26b7 // indirect + github.com/gogo/protobuf v1.3.1 // indirect + github.com/golang/protobuf v1.4.2 // indirect github.com/gorilla/mux v1.7.4 // indirect + github.com/jmespath/go-jmespath v0.4.0 // indirect + github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect github.com/moby/term v0.0.0-20201110203204-bea5bbe245bf // indirect + github.com/morikuni/aec v1.0.0 // indirect github.com/opencontainers/go-digest v1.0.0 // indirect github.com/opencontainers/image-spec v1.0.2 // indirect + github.com/pkg/errors v0.9.1 // indirect github.com/prometheus/client_golang v1.7.1 // indirect + github.com/prometheus/client_model v0.2.0 // indirect + github.com/prometheus/common v0.10.0 // indirect + github.com/prometheus/procfs v0.1.3 // indirect github.com/stretchr/testify v1.6.1 // indirect + golang.org/x/net v0.0.0-20201110031124-69a78807bb2b // indirect + golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208 // indirect + golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f // indirect + google.golang.org/appengine v1.6.6 // indirect + google.golang.org/genproto v0.0.0-20200825200019-8632dd797987 // indirect + google.golang.org/grpc v1.31.0 // indirect + google.golang.org/protobuf v1.25.0 // indirect ) // replace github.com/Sirupsen/logrus => github.com/sirupsen/logrus v1.7.0