dependabot[bot]
06fdd1604a
build(deps): bump github.com/containers/storage from 1.30.1 to 1.30.2
...
Bumps [github.com/containers/storage](https://github.com/containers/storage ) from 1.30.1 to 1.30.2.
- [Release notes](https://github.com/containers/storage/releases )
- [Changelog](https://github.com/containers/storage/blob/master/docs/containers-storage-changes.md )
- [Commits](https://github.com/containers/storage/compare/v1.30.1...v1.30.2 )
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
2021-05-10 08:18:56 -04:00
dependabot[bot]
ce19e08732
build(deps): bump github.com/docker/docker
...
Bumps [github.com/docker/docker](https://github.com/docker/docker ) from 20.10.3-0.20210216175712-646072ed6524+incompatible to 20.10.6+incompatible.
- [Release notes](https://github.com/docker/docker/releases )
- [Changelog](https://github.com/moby/moby/blob/master/CHANGELOG.md )
- [Commits](https://github.com/docker/docker/commits/v20.10.6 )
Signed-off-by: dependabot[bot] <support@github.com>
2021-05-07 07:54:09 +00:00
dependabot[bot]
6846d4d246
Bump github.com/onsi/gomega from 1.11.0 to 1.12.0
...
Bumps [github.com/onsi/gomega](https://github.com/onsi/gomega ) from 1.11.0 to 1.12.0.
- [Release notes](https://github.com/onsi/gomega/releases )
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md )
- [Commits](https://github.com/onsi/gomega/compare/v1.11.0...v1.12.0 )
Signed-off-by: dependabot[bot] <support@github.com>
2021-05-06 07:47:48 +00:00
Daniel J Walsh
8f0efa1fc0
Merge pull request #523 from containers/dependabot/go_modules/github.com/containers/image/v5-5.12.0
...
Bump github.com/containers/image/v5 from 5.11.1 to 5.12.0
2021-05-05 11:10:50 -04:00
dependabot[bot]
b2f8b8380b
Bump github.com/containers/image/v5 from 5.11.1 to 5.12.0
...
Bumps [github.com/containers/image/v5](https://github.com/containers/image ) from 5.11.1 to 5.12.0.
- [Release notes](https://github.com/containers/image/releases )
- [Commits](https://github.com/containers/image/compare/v5.11.1...v5.12.0 )
Signed-off-by: dependabot[bot] <support@github.com>
2021-05-05 07:49:50 +00:00
dependabot[bot]
cb32aa43f4
Bump github.com/onsi/ginkgo from 1.16.1 to 1.16.2
...
Bumps [github.com/onsi/ginkgo](https://github.com/onsi/ginkgo ) from 1.16.1 to 1.16.2.
- [Release notes](https://github.com/onsi/ginkgo/releases )
- [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md )
- [Commits](https://github.com/onsi/ginkgo/compare/v1.16.1...v1.16.2 )
Signed-off-by: dependabot[bot] <support@github.com>
2021-05-05 07:49:30 +00:00
Valentin Rothberg
bc6c57edb5
libimage: follow-up changes
...
The following changes were not split into smaller commits since the
entire package is still work in progress and I want to keep moving:
* Various small fixes.
* The internal image cache has been removed as it's a recipe for
inconsistencies for longer running processes. This should make
libimage easier to use for CRI-O and a Podman service.
* LookupImage now returns storage.ErrUnknownImage rather than nil.
This simplifies the callers and makes sure we have a consistent
error.
* LookupImage is now able to handle manifests lists. Unless the
platform is explicitly ignored via the options, the matching
image within the manifest list is now returned. This greatly
simplifies the spec generation in Podman; no callers should have
to worry about this kind of detail.
* LookupImage has been refactored into smaller-sized and easier to
read functions.
* RemoveImages has been changed to assemble the data of removed or
untagged images. This comes in handy for pruning images. I am
heavily against having a dedicated API for pruning since the it's
really just a combination of filtering and removing images which
RemoveImages already supports. Hence these changes to satisfy
the needs of `podman image prune`.
Furthermore, it now returns an []error slice rather than a single
error. Again to make Podman happy which needs to inspect *all*
errors for setting the appropriate exit code.
* A rather large refactoring of the removal code along with very
verbose comments. Those were largely absent in the Podman code base
but there many rules and contracts embedded that I partially could
only reconstruct by manually tests and comparing to Docker.
* Add a new `containers={true,false}` filter which allows filtering
images whether they are used by containers (=true) or if no container
is using them (=false). This filter is required for pruning images
in Podman.
* `libimage/types` has been merged into `libimage`. Podman has to do
_a lot of_ massaging for the remote client already and the types
are pretty much nailed down for the remote API. Hence, I prefer to
do some translation between `libimage` types and what Podman needs
rather than splitting `libimage` in half without an obvious reason.
This way the package is self-contained allowing for an easier
navigation and maintenance.
* `libimage.PullPolicy` has been merged into `pkg/config.PullPolicy`
to have _one_ central place to deal with pull policies. The type
system in `pkg/config` sets "always" as the default unfortunately
but I think consistency is more important at that point.
* Added `CopyOptions.DirForceCompress` to enforce layer compression
when copying to a `dir` destination.
* We now use `github.com/disiqueira/gotree` for pretty printing image
trees. That greatly simplifies the code and we don't have to worry
about the logic of printing a tree. Note that trees are now always
printed top down!
* Added a new `libimage.ManifestList` type along with an API for local
lookups and performing certain operations on it to wrap around
`libimage/manifests` as previously done in `libpod/image` and other
places in Podman.
* Correct caching of `(*Image).Inspect`.
* In addition to username, password and credentials, allow for
speciying an identity token for copying images. That's needed for
Podman's remote API.
* Make image removal more tolerant toward corrupted images.
* A new "until=timestamp" filter that can be used by all APIs
supporting filtering.
* An empty string now resolves to PullPolicyMissing.
* `(*Runtime) systemContextCopy()` returns a deep copy of the runtime's
system context. Golang's shallow copies are very dangerous for long
running processes such as Podman's system service. Hence, we need to
make sure that base data is not altered over time. That adds another
external dependency but I do not see a way around that. Long term,
I desire a `(*containers/image/types.SystemContext).Copy()` function.
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
2021-05-03 15:20:40 +02:00
dependabot[bot]
7712cbcc6d
Bump github.com/containers/storage from 1.30.0 to 1.30.1
...
Bumps [github.com/containers/storage](https://github.com/containers/storage ) from 1.30.0 to 1.30.1.
- [Release notes](https://github.com/containers/storage/releases )
- [Changelog](https://github.com/containers/storage/blob/master/docs/containers-storage-changes.md )
- [Commits](https://github.com/containers/storage/compare/v1.30.0...v1.30.1 )
Signed-off-by: dependabot[bot] <support@github.com>
2021-04-29 08:07:30 +00:00
dependabot[bot]
ba68fd44b3
Bump github.com/containers/ocicrypt from 1.1.0 to 1.1.1
...
Bumps [github.com/containers/ocicrypt](https://github.com/containers/ocicrypt ) from 1.1.0 to 1.1.1.
- [Release notes](https://github.com/containers/ocicrypt/releases )
- [Commits](https://github.com/containers/ocicrypt/compare/v1.1.0...v1.1.1 )
Signed-off-by: dependabot[bot] <support@github.com>
2021-04-22 07:39:09 +00:00
Valentin Rothberg
32a28aee73
new libimage package
...
The new `libimage` package is an attempt to consolidate the code for
managing container images and performing operations on them such as
pulling, pushing, saving, searching, local lookups, removing etc.
Over time, Buildah, CRI-O and Podman diverged with respect to managing
container images resulting in a high amount of code duplication
rendering the tools harder to maintain (e.g., bug fixes) and harder to
extend (e.g., adding new features) than necessary.
The desire to share all that code in a common library grew and this is
an attempt to address the it.
The changes as they are now pass Buildah CI [1]. Once merged into
Buildah, I expect follow up changes when migrating Podman over to
`libimage`.
Miscellaneous changes:
* Copy `podman/pkg/signal` to `pkg/signal`.
* Copy `buildah/manifests` to `image/manifests`. Note that the unit
tests require root privileges. Skip()'s are added when running
rootless. Currently excluded from linting.
* Copy `buildah/pkg/manifests` to `pkg/manifests`. Currently excluded
from linting.
* Copy `buildah/pkg/supplemented` to `pkg/supplemented`. Currently
excluded from linting.
[1] github.com/containers/buildah/pull/3148
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
2021-04-21 11:17:47 +02:00
dependabot[bot]
05644e6e28
Bump github.com/containers/storage from 1.29.0 to 1.30.0
...
Bumps [github.com/containers/storage](https://github.com/containers/storage ) from 1.29.0 to 1.30.0.
- [Release notes](https://github.com/containers/storage/releases )
- [Changelog](https://github.com/containers/storage/blob/master/docs/containers-storage-changes.md )
- [Commits](https://github.com/containers/storage/compare/v1.29.0...v1.30.0 )
Signed-off-by: dependabot[bot] <support@github.com>
2021-04-21 07:47:10 +00:00
dependabot[bot]
7a858b0177
Bump github.com/containers/storage from 1.28.1 to 1.29.0
...
Bumps [github.com/containers/storage](https://github.com/containers/storage ) from 1.28.1 to 1.29.0.
- [Release notes](https://github.com/containers/storage/releases )
- [Changelog](https://github.com/containers/storage/blob/master/docs/containers-storage-changes.md )
- [Commits](https://github.com/containers/storage/compare/v1.28.1...v1.29.0 )
Signed-off-by: dependabot[bot] <support@github.com>
2021-04-13 07:58:53 +00:00
dependabot[bot]
e82d47d24c
Bump github.com/containers/image/v5 from 5.10.5 to 5.11.0
...
Bumps [github.com/containers/image/v5](https://github.com/containers/image ) from 5.10.5 to 5.11.0.
- [Release notes](https://github.com/containers/image/releases )
- [Commits](https://github.com/containers/image/compare/v5.10.5...v5.11.0 )
Signed-off-by: dependabot[bot] <support@github.com>
2021-04-12 09:31:40 +00:00
dependabot[bot]
64d6314178
Bump github.com/onsi/ginkgo from 1.16.0 to 1.16.1
...
Bumps [github.com/onsi/ginkgo](https://github.com/onsi/ginkgo ) from 1.16.0 to 1.16.1.
- [Release notes](https://github.com/onsi/ginkgo/releases )
- [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md )
- [Commits](https://github.com/onsi/ginkgo/compare/v1.16.0...v1.16.1 )
Signed-off-by: dependabot[bot] <support@github.com>
2021-04-08 07:53:22 +00:00
dependabot[bot]
6005822e60
Bump github.com/onsi/ginkgo from 1.15.2 to 1.16.0
...
Bumps [github.com/onsi/ginkgo](https://github.com/onsi/ginkgo ) from 1.15.2 to 1.16.0.
- [Release notes](https://github.com/onsi/ginkgo/releases )
- [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md )
- [Commits](https://github.com/onsi/ginkgo/compare/v1.15.2...v1.16.0 )
Signed-off-by: dependabot[bot] <support@github.com>
2021-04-05 09:32:42 +00:00
dependabot[bot]
893ac6236b
Bump github.com/containers/storage from 1.28.0 to 1.28.1
...
Bumps [github.com/containers/storage](https://github.com/containers/storage ) from 1.28.0 to 1.28.1.
- [Release notes](https://github.com/containers/storage/releases )
- [Changelog](https://github.com/containers/storage/blob/master/docs/containers-storage-changes.md )
- [Commits](https://github.com/containers/storage/compare/v1.28.0...v1.28.1 )
Signed-off-by: dependabot[bot] <support@github.com>
2021-03-25 06:57:07 +00:00
Daniel J Walsh
0134ea8df8
Bump github.com/containers/storage from 1.27.0 to 1.28.0
...
Bumps [github.com/containers/storage](https://github.com/containers/storage ) from 1.27.0 to 1.28.0.
- [Release notes](https://github.com/containers/storage/releases )
- [Changelog](https://github.com/containers/storage/blob/master/docs/containers-storage-changes.md )
- [Commits](https://github.com/containers/storage/compare/v1.27.0...v1.28.0 )
Signed-off-by: dependabot[bot] <support@github.com>
2021-03-17 05:31:57 -04:00
dependabot[bot]
542adae2b9
Bump github.com/onsi/ginkgo from 1.15.1 to 1.15.2
...
Bumps [github.com/onsi/ginkgo](https://github.com/onsi/ginkgo ) from 1.15.1 to 1.15.2.
- [Release notes](https://github.com/onsi/ginkgo/releases )
- [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md )
- [Commits](https://github.com/onsi/ginkgo/compare/v1.15.1...v1.15.2 )
Signed-off-by: dependabot[bot] <support@github.com>
2021-03-17 07:27:47 +00:00
dependabot[bot]
d967b29820
Bump github.com/hashicorp/go-multierror from 1.1.0 to 1.1.1
...
Bumps [github.com/hashicorp/go-multierror](https://github.com/hashicorp/go-multierror ) from 1.1.0 to 1.1.1.
- [Release notes](https://github.com/hashicorp/go-multierror/releases )
- [Commits](https://github.com/hashicorp/go-multierror/compare/v1.1.0...v1.1.1 )
Signed-off-by: dependabot[bot] <support@github.com>
2021-03-12 07:32:47 +00:00
dependabot-preview[bot]
082b64ac40
Bump github.com/sirupsen/logrus from 1.8.0 to 1.8.1
...
Bumps [github.com/sirupsen/logrus](https://github.com/sirupsen/logrus ) from 1.8.0 to 1.8.1.
- [Release notes](https://github.com/sirupsen/logrus/releases )
- [Changelog](https://github.com/sirupsen/logrus/blob/master/CHANGELOG.md )
- [Commits](https://github.com/sirupsen/logrus/compare/v1.8.0...v1.8.1 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Signed-off-by: Sascha Grunert <sgrunert@redhat.com>
2021-03-10 14:53:43 +01:00
Daniel J Walsh
9c78fd1e3b
Bump github.com/onsi/gomega from 1.10.5 to 1.11.0
...
Bumps [github.com/onsi/gomega](https://github.com/onsi/gomega ) from 1.10.5 to 1.11.0.
- [Release notes](https://github.com/onsi/gomega/releases )
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md )
- [Commits](https://github.com/onsi/gomega/compare/v1.10.5...v1.11.0 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
2021-03-08 08:43:00 -05:00
dependabot-preview[bot]
f074579bac
Bump github.com/onsi/ginkgo from 1.15.0 to 1.15.1
...
Bumps [github.com/onsi/ginkgo](https://github.com/onsi/ginkgo ) from 1.15.0 to 1.15.1.
- [Release notes](https://github.com/onsi/ginkgo/releases )
- [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md )
- [Commits](https://github.com/onsi/ginkgo/compare/v1.15.0...v1.15.1 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
2021-03-08 06:00:11 -05:00
dependabot-preview[bot]
cb88950623
Bump github.com/containers/image/v5 from 5.10.4 to 5.10.5
...
Bumps [github.com/containers/image/v5](https://github.com/containers/image ) from 5.10.4 to 5.10.5.
- [Release notes](https://github.com/containers/image/releases )
- [Commits](https://github.com/containers/image/compare/v5.10.4...v5.10.5 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
2021-03-04 14:34:30 -05:00
Daniel J Walsh
ee0eadd226
Vendor in containers/common and start using types subdir.
...
This will shrink the vendoring size of containers/common/pkg/config
by a huge amount.
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
2021-02-27 06:43:12 -05:00
dependabot-preview[bot]
51790eb2d2
Bump github.com/containers/image/v5 from 5.10.3 to 5.10.4
...
Bumps [github.com/containers/image/v5](https://github.com/containers/image ) from 5.10.3 to 5.10.4.
- [Release notes](https://github.com/containers/image/releases )
- [Commits](https://github.com/containers/image/compare/v5.10.3...v5.10.4 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
2021-02-26 07:15:09 -05:00
dependabot-preview[bot]
86eb56d2fa
Bump github.com/containers/image/v5 from 5.10.2 to 5.10.3
...
Bumps [github.com/containers/image/v5](https://github.com/containers/image ) from 5.10.2 to 5.10.3.
- [Release notes](https://github.com/containers/image/releases )
- [Commits](https://github.com/containers/image/compare/v5.10.2...v5.10.3 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
2021-02-23 05:35:14 -05:00
dependabot-preview[bot]
d4c071f07e
Bump github.com/sirupsen/logrus from 1.7.1 to 1.8.0
...
Bumps [github.com/sirupsen/logrus](https://github.com/sirupsen/logrus ) from 1.7.1 to 1.8.0.
- [Release notes](https://github.com/sirupsen/logrus/releases )
- [Changelog](https://github.com/sirupsen/logrus/blob/master/CHANGELOG.md )
- [Commits](https://github.com/sirupsen/logrus/compare/v1.7.1...v1.8.0 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
2021-02-18 05:05:51 -05:00
dependabot-preview[bot]
2a5286f006
Bump github.com/sirupsen/logrus from 1.7.0 to 1.7.1
...
Bumps [github.com/sirupsen/logrus](https://github.com/sirupsen/logrus ) from 1.7.0 to 1.7.1.
- [Release notes](https://github.com/sirupsen/logrus/releases )
- [Changelog](https://github.com/sirupsen/logrus/blob/master/CHANGELOG.md )
- [Commits](https://github.com/sirupsen/logrus/compare/v1.7.0...v1.7.1 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
2021-02-17 06:50:16 -05:00
dependabot-preview[bot]
81446f1cb1
Bump github.com/spf13/cobra from 1.1.2 to 1.1.3
...
Bumps [github.com/spf13/cobra](https://github.com/spf13/cobra ) from 1.1.2 to 1.1.3.
- [Release notes](https://github.com/spf13/cobra/releases )
- [Changelog](https://github.com/spf13/cobra/blob/master/CHANGELOG.md )
- [Commits](https://github.com/spf13/cobra/compare/v1.1.2...v1.1.3 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
2021-02-12 11:37:30 +01:00
OpenShift Merge Robot
f8a2c7c90a
Merge pull request #449 from containers/dependabot/go_modules/github.com/spf13/cobra-1.1.2
...
Bump github.com/spf13/cobra from 1.1.1 to 1.1.2
2021-02-11 12:16:00 -05:00
dependabot-preview[bot]
e4a81b18ae
Bump github.com/spf13/cobra from 1.1.1 to 1.1.2
...
Bumps [github.com/spf13/cobra](https://github.com/spf13/cobra ) from 1.1.1 to 1.1.2.
- [Release notes](https://github.com/spf13/cobra/releases )
- [Changelog](https://github.com/spf13/cobra/blob/master/CHANGELOG.md )
- [Commits](https://github.com/spf13/cobra/compare/v1.1.1...v1.1.2 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
2021-02-10 10:32:26 -05:00
dependabot-preview[bot]
cd503c544e
Bump github.com/containers/image/v5 from 5.10.1 to 5.10.2
...
Bumps [github.com/containers/image/v5](https://github.com/containers/image ) from 5.10.1 to 5.10.2.
- [Release notes](https://github.com/containers/image/releases )
- [Commits](https://github.com/containers/image/compare/v5.10.1...v5.10.2 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-02-10 10:31:35 -05:00
Valentin Rothberg
f2537f0a33
Revert "Bump github.com/opencontainers/runc from 1.0.0-rc91 to 1.0.0-rc93"
...
This reverts commit fc61280ca0 .
The bump of the gocapability package is causing regressions in Podman.
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
2021-02-06 13:01:04 +01:00
dependabot-preview[bot]
fc61280ca0
Bump github.com/opencontainers/runc from 1.0.0-rc91 to 1.0.0-rc93
...
Bumps [github.com/opencontainers/runc](https://github.com/opencontainers/runc ) from 1.0.0-rc91 to 1.0.0-rc93.
- [Release notes](https://github.com/opencontainers/runc/releases )
- [Commits](https://github.com/opencontainers/runc/compare/v1.0.0-rc91...v1.0.0-rc93 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
2021-02-05 06:53:46 -05:00
OpenShift Merge Robot
f118741788
Merge pull request #434 from containers/dependabot/go_modules/github.com/containers/storage-1.25.0
...
Bump github.com/containers/storage from 1.24.5 to 1.25.0
2021-02-04 15:28:45 -05:00
dependabot-preview[bot]
4ab2941105
Bump github.com/containers/storage from 1.24.5 to 1.25.0
...
Bumps [github.com/containers/storage](https://github.com/containers/storage ) from 1.24.5 to 1.25.0.
- [Release notes](https://github.com/containers/storage/releases )
- [Changelog](https://github.com/containers/storage/blob/master/docs/containers-storage-changes.md )
- [Commits](https://github.com/containers/storage/compare/v1.24.5...v1.25.0 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
2021-02-04 05:09:54 -05:00
Daniel J Walsh
54a7f71e17
Bump github.com/onsi/ginkgo from 1.14.2 to 1.15.0
...
Bumps [github.com/onsi/ginkgo](https://github.com/onsi/ginkgo ) from 1.14.2 to 1.15.0.
- [Release notes](https://github.com/onsi/ginkgo/releases )
- [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md )
- [Commits](https://github.com/onsi/ginkgo/compare/v1.14.2...v1.15.0 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
2021-02-03 06:29:02 -05:00
dependabot-preview[bot]
f3cccebace
Bump github.com/onsi/gomega from 1.10.4 to 1.10.5
...
Bumps [github.com/onsi/gomega](https://github.com/onsi/gomega ) from 1.10.4 to 1.10.5.
- [Release notes](https://github.com/onsi/gomega/releases )
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md )
- [Commits](https://github.com/onsi/gomega/compare/v1.10.4...v1.10.5 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
2021-02-02 06:12:56 -05:00
dependabot-preview[bot]
175d0da52e
Bump github.com/containers/image/v5 from 5.10.0 to 5.10.1
...
Bumps [github.com/containers/image/v5](https://github.com/containers/image ) from 5.10.0 to 5.10.1.
- [Release notes](https://github.com/containers/image/releases )
- [Commits](https://github.com/containers/image/compare/v5.10.0...v5.10.1 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
2021-01-29 07:55:26 -05:00
dependabot-preview[bot]
5a42e777e5
Bump github.com/containers/image/v5 from 5.9.0 to 5.10.0
...
Bumps [github.com/containers/image/v5](https://github.com/containers/image ) from 5.9.0 to 5.10.0.
- [Release notes](https://github.com/containers/image/releases )
- [Commits](https://github.com/containers/image/compare/v5.9.0...v5.10.0 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
2021-01-28 11:53:10 +01:00
dependabot-preview[bot]
a9b4d39f85
Bump github.com/stretchr/testify from 1.6.1 to 1.7.0
...
Bumps [github.com/stretchr/testify](https://github.com/stretchr/testify ) from 1.6.1 to 1.7.0.
- [Release notes](https://github.com/stretchr/testify/releases )
- [Commits](https://github.com/stretchr/testify/compare/v1.6.1...v1.7.0 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
2021-01-15 04:37:03 -05:00
Daniel J Walsh
d6d2fd11b4
Update vendor of containers/storage
...
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
2021-01-08 08:52:21 -05:00
dependabot-preview[bot]
810202a46d
Bump github.com/containers/storage from 1.24.3 to 1.24.4
...
Bumps [github.com/containers/storage](https://github.com/containers/storage ) from 1.24.3 to 1.24.4.
- [Release notes](https://github.com/containers/storage/releases )
- [Changelog](https://github.com/containers/storage/blob/master/docs/containers-storage-changes.md )
- [Commits](https://github.com/containers/storage/compare/v1.24.3...v1.24.4 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
2020-12-23 16:00:00 -05:00
dependabot-preview[bot]
60f936e119
Bump github.com/opencontainers/selinux from 1.7.0 to 1.8.0
...
Bumps [github.com/opencontainers/selinux](https://github.com/opencontainers/selinux ) from 1.7.0 to 1.8.0.
- [Release notes](https://github.com/opencontainers/selinux/releases )
- [Commits](https://github.com/opencontainers/selinux/compare/v1.7.0...v1.8.0 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
2020-12-16 09:14:28 -05:00
OpenShift Merge Robot
31771c7c1a
Merge pull request #379 from containers/dependabot/go_modules/github.com/onsi/gomega-1.10.4
...
Bump github.com/onsi/gomega from 1.10.3 to 1.10.4
2020-12-09 08:42:56 -05:00
dependabot-preview[bot]
3c27a11cae
Bump github.com/onsi/gomega from 1.10.3 to 1.10.4
...
Bumps [github.com/onsi/gomega](https://github.com/onsi/gomega ) from 1.10.3 to 1.10.4.
- [Release notes](https://github.com/onsi/gomega/releases )
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md )
- [Commits](https://github.com/onsi/gomega/compare/v1.10.3...v1.10.4 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
2020-12-09 08:07:52 -05:00
dependabot-preview[bot]
42bb65e542
Bump github.com/opencontainers/selinux from 1.6.0 to 1.7.0
...
Bumps [github.com/opencontainers/selinux](https://github.com/opencontainers/selinux ) from 1.6.0 to 1.7.0.
- [Release notes](https://github.com/opencontainers/selinux/releases )
- [Commits](https://github.com/opencontainers/selinux/compare/v1.6.0...v1.7.0 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
2020-12-09 08:07:25 -05:00
Daniel J Walsh
21dc020ae5
Bump github.com/containers/storage from 1.24.2 to 1.24.3
...
Bumps [github.com/containers/storage](https://github.com/containers/storage ) from 1.24.2 to 1.24.3.
- [Release notes](https://github.com/containers/storage/releases )
- [Changelog](https://github.com/containers/storage/blob/master/docs/containers-storage-changes.md )
- [Commits](https://github.com/containers/storage/compare/v1.24.2...v1.24.3 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
2020-12-08 06:52:29 -05:00
dependabot-preview[bot]
7ae4a0816c
Bump github.com/containers/image/v5 from 5.8.1 to 5.9.0
...
Bumps [github.com/containers/image/v5](https://github.com/containers/image ) from 5.8.1 to 5.9.0.
- [Release notes](https://github.com/containers/image/releases )
- [Commits](https://github.com/containers/image/compare/v5.8.1...v5.9.0 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
2020-12-08 05:42:23 -05:00
dependabot-preview[bot]
b635bb1dd5
Bump github.com/containers/storage from 1.24.1 to 1.24.2
...
Bumps [github.com/containers/storage](https://github.com/containers/storage ) from 1.24.1 to 1.24.2.
- [Release notes](https://github.com/containers/storage/releases )
- [Changelog](https://github.com/containers/storage/blob/master/docs/containers-storage-changes.md )
- [Commits](https://github.com/containers/storage/compare/v1.24.1...v1.24.2 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
2020-12-07 05:46:13 -05:00