diff --git a/go.mod b/go.mod index af1e436db..1cc198582 100644 --- a/go.mod +++ b/go.mod @@ -5,7 +5,7 @@ go 1.20 require ( github.com/containers/common v0.58.2 github.com/containers/image/v5 v5.30.0 - github.com/containers/podman/v5 v5.0.1 + github.com/containers/podman/v5 v5.0.2 github.com/go-kit/log v0.2.1 github.com/onsi/ginkgo/v2 v2.17.1 github.com/onsi/gomega v1.32.0 diff --git a/go.sum b/go.sum index c3af742f3..5b7448143 100644 --- a/go.sum +++ b/go.sum @@ -76,8 +76,8 @@ github.com/containers/luksy v0.0.0-20240212203526-ceb12d4fd50c h1:6zalnZZODMOqNZ github.com/containers/luksy v0.0.0-20240212203526-ceb12d4fd50c/go.mod h1:A/RMGaYhtzfW6L3whYRU+0GGEFocTYyQBqlWSb2UNEM= github.com/containers/ocicrypt v1.1.9 h1:2Csfba4jse85Raxk5HIyEk8OwZNjRvfkhEGijOjIdEM= github.com/containers/ocicrypt v1.1.9/go.mod h1:dTKx1918d8TDkxXvarscpNVY+lyPakPNFN4jwA9GBys= -github.com/containers/podman/v5 v5.0.1 h1:40OJuoOJWxt3hk1j9J0jcwWIbWpjARxpzazYYtCDiNY= -github.com/containers/podman/v5 v5.0.1/go.mod h1:v09KUXu9AEFvzgiKSwkB49jcrVglXx2yi2qaPyaKNBE= +github.com/containers/podman/v5 v5.0.2 h1:xutkGrVfLZupfqo1pERid1tZ3ivFjDXDRbUK9z4ms80= +github.com/containers/podman/v5 v5.0.2/go.mod h1:g4eTcOHzWWuANV5V6C5ovUxXjSrTxTz9ZWpKdfIYvto= github.com/containers/psgo v1.9.0 h1:eJ74jzSaCHnWt26OlKZROSyUyRcGDf+gYBdXnxrMW4g= github.com/containers/psgo v1.9.0/go.mod h1:0YoluUm43Mz2UnBIh1P+6V6NWcbpTL5uRtXyOcH0B5A= github.com/containers/storage v1.53.0 h1:VSES3C/u1pxjTJIXvLrSmyP7OBtDky04oGu07UvdTEA= diff --git a/vendor/github.com/containers/podman/v5/pkg/domain/entities/images.go b/vendor/github.com/containers/podman/v5/pkg/domain/entities/images.go index f70663d9f..d2122f3e5 100644 --- a/vendor/github.com/containers/podman/v5/pkg/domain/entities/images.go +++ b/vendor/github.com/containers/podman/v5/pkg/domain/entities/images.go @@ -51,7 +51,6 @@ func (i *Image) Id() string { //nolint:revive,stylecheck return i.ID } -// swagger:model LibpodImageSummary type ImageSummary = entitiesTypes.ImageSummary // ImageRemoveOptions can be used to alter image removal. diff --git a/vendor/github.com/containers/podman/v5/pkg/domain/entities/manifest.go b/vendor/github.com/containers/podman/v5/pkg/domain/entities/manifest.go index 7e2a5c46d..a81e76c07 100644 --- a/vendor/github.com/containers/podman/v5/pkg/domain/entities/manifest.go +++ b/vendor/github.com/containers/podman/v5/pkg/domain/entities/manifest.go @@ -117,8 +117,6 @@ type ManifestModifyOptions struct { } // ManifestPushReport provides the model for the pushed manifest -// -// swagger:model type ManifestPushReport = entitiesTypes.ManifestPushReport // ManifestRemoveOptions provides the model for removing digests from a manifest @@ -128,11 +126,7 @@ type ManifestRemoveOptions struct { } // ManifestRemoveReport provides the model for the removed manifest -// -// swagger:model type ManifestRemoveReport = entitiesTypes.ManifestRemoveReport // ManifestModifyReport provides the model for removed digests and changed manifest -// -// swagger:model type ManifestModifyReport = entitiesTypes.ManifestModifyReport diff --git a/vendor/github.com/containers/podman/v5/pkg/domain/entities/network.go b/vendor/github.com/containers/podman/v5/pkg/domain/entities/network.go index 1edc335c3..74b6af5c8 100644 --- a/vendor/github.com/containers/podman/v5/pkg/domain/entities/network.go +++ b/vendor/github.com/containers/podman/v5/pkg/domain/entities/network.go @@ -75,7 +75,6 @@ type NetworkConnectOptions = entitiesTypes.NetworkConnectOptions // NetworkPruneReport containers the name of network and an error // associated in its pruning (removal) -// swagger:model NetworkPruneReport type NetworkPruneReport = entitiesTypes.NetworkPruneReport // NetworkPruneOptions describes options for pruning unused networks diff --git a/vendor/github.com/containers/podman/v5/pkg/domain/entities/system.go b/vendor/github.com/containers/podman/v5/pkg/domain/entities/system.go index 5d11f0a32..e62214e7c 100644 --- a/vendor/github.com/containers/podman/v5/pkg/domain/entities/system.go +++ b/vendor/github.com/containers/podman/v5/pkg/domain/entities/system.go @@ -19,7 +19,6 @@ type SystemUnshareOptions = types.SystemUnshareOptions type ComponentVersion = types.SystemComponentVersion type ListRegistriesReport = types.ListRegistriesReport -// swagger:model AuthConfig type AuthConfig = types.AuthConfig type AuthReport = types.AuthReport type LocksReport = types.LocksReport diff --git a/vendor/github.com/containers/podman/v5/pkg/domain/entities/types/auth.go b/vendor/github.com/containers/podman/v5/pkg/domain/entities/types/auth.go index 7f2480173..3fa66987a 100644 --- a/vendor/github.com/containers/podman/v5/pkg/domain/entities/types/auth.go +++ b/vendor/github.com/containers/podman/v5/pkg/domain/entities/types/auth.go @@ -2,6 +2,7 @@ package types // AuthConfig contains authorization information for connecting to a Registry +// swagger:model type AuthConfig struct { Username string `json:"username,omitempty"` Password string `json:"password,omitempty"` diff --git a/vendor/github.com/containers/podman/v5/pkg/domain/entities/volumes.go b/vendor/github.com/containers/podman/v5/pkg/domain/entities/volumes.go index a0acd3a7f..050e28ce0 100644 --- a/vendor/github.com/containers/podman/v5/pkg/domain/entities/volumes.go +++ b/vendor/github.com/containers/podman/v5/pkg/domain/entities/volumes.go @@ -7,7 +7,6 @@ import ( ) // VolumeCreateOptions provides details for creating volumes -// swagger:model type VolumeCreateOptions = types.VolumeCreateOptions type VolumeConfigResponse = types.VolumeConfigResponse diff --git a/vendor/github.com/containers/podman/v5/version/rawversion/version.go b/vendor/github.com/containers/podman/v5/version/rawversion/version.go index 459c9ea1f..126606e03 100644 --- a/vendor/github.com/containers/podman/v5/version/rawversion/version.go +++ b/vendor/github.com/containers/podman/v5/version/rawversion/version.go @@ -7,4 +7,4 @@ package rawversion // // NOTE: remember to bump the version at the top of the top-level README.md // file when this is bumped. -const RawVersion = "5.0.1" +const RawVersion = "5.0.2" diff --git a/vendor/modules.txt b/vendor/modules.txt index 03a829950..745491113 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -296,7 +296,7 @@ github.com/containers/ocicrypt/keywrap/pkcs7 github.com/containers/ocicrypt/spec github.com/containers/ocicrypt/utils github.com/containers/ocicrypt/utils/keyprovider -# github.com/containers/podman/v5 v5.0.1 +# github.com/containers/podman/v5 v5.0.2 ## explicit; go 1.20 github.com/containers/podman/v5/cmd/podman/parse github.com/containers/podman/v5/cmd/podman/registry