mirror of
https://github.com/containers/podman.git
synced 2025-06-07 07:45:34 +08:00
build(deps): bump github.com/containers/buildah from 1.14.7 to 1.14.8
Bumps [github.com/containers/buildah](https://github.com/containers/buildah) from 1.14.7 to 1.14.8. - [Release notes](https://github.com/containers/buildah/releases) - [Changelog](https://github.com/containers/buildah/blob/master/CHANGELOG.md) - [Commits](https://github.com/containers/buildah/compare/v1.14.7...v1.14.8) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
This commit is contained in:
8
vendor/github.com/containers/buildah/CHANGELOG.md
generated
vendored
8
vendor/github.com/containers/buildah/CHANGELOG.md
generated
vendored
@ -2,6 +2,14 @@
|
||||
|
||||
# Changelog
|
||||
|
||||
## v1.14.8 (2020-04-09)
|
||||
Run (make vendor)
|
||||
Run (make -C tests/tools vendor)
|
||||
Run (go mod tidy) before (go mod vendor) again
|
||||
Fix (make vendor)
|
||||
Bump validation
|
||||
Bump back to v1.15.0-dev
|
||||
|
||||
## v1.14.7 (2020-04-07)
|
||||
Bump github.com/containers/image/v5 from 5.3.1 to 5.4.3
|
||||
make vendor: run `tidy` after `vendor`
|
||||
|
7
vendor/github.com/containers/buildah/Makefile
generated
vendored
7
vendor/github.com/containers/buildah/Makefile
generated
vendored
@ -142,10 +142,9 @@ vendor-in-container:
|
||||
|
||||
.PHONY: vendor
|
||||
vendor:
|
||||
export GO111MODULE=on \
|
||||
$(GO) mod vendor && \
|
||||
$(GO) mod tidy && \
|
||||
$(GO) mod verify
|
||||
GO111MODULE=on $(GO) mod tidy
|
||||
GO111MODULE=on $(GO) mod vendor
|
||||
GO111MODULE=on $(GO) mod verify
|
||||
|
||||
.PHONY: lint
|
||||
lint: install.tools
|
||||
|
2
vendor/github.com/containers/buildah/buildah.go
generated
vendored
2
vendor/github.com/containers/buildah/buildah.go
generated
vendored
@ -27,7 +27,7 @@ const (
|
||||
Package = "buildah"
|
||||
// Version for the Package. Bump version in contrib/rpm/buildah.spec
|
||||
// too.
|
||||
Version = "1.14.7"
|
||||
Version = "1.14.8"
|
||||
// The value we use to identify what type of information, currently a
|
||||
// serialized Builder structure, we are using as per-container state.
|
||||
// This should only be changed when we make incompatible changes to
|
||||
|
8
vendor/github.com/containers/buildah/changelog.txt
generated
vendored
8
vendor/github.com/containers/buildah/changelog.txt
generated
vendored
@ -1,3 +1,11 @@
|
||||
- Changelog for v1.14.8 (2020-04-09)
|
||||
* Run (make vendor)
|
||||
* Run (make -C tests/tools vendor)
|
||||
* Run (go mod tidy) before (go mod vendor) again
|
||||
* Fix (make vendor)
|
||||
* Bump validation
|
||||
* Bump back to v1.15.0-dev
|
||||
|
||||
- Changelog for v1.14.7 (2020-04-07)
|
||||
* Bump github.com/containers/image/v5 from 5.3.1 to 5.4.3
|
||||
* make vendor: run `tidy` after `vendor`
|
||||
|
Reference in New Issue
Block a user