373d36
%global with_debug 1
373d36
864e60
%if 0%{?fedora} || 0%{?rhel} == 6
864e60
%global with_bundled 1
864e60
%global with_check 1
864e60
%else
864e60
%global with_bundled 0
864e60
%global with_check 0
864e60
%endif
864e60
864e60
%if 0%{?with_debug}
864e60
%global _dwz_low_mem_die_limit 0
864e60
%else
864e60
%global debug_package   %{nil}
864e60
%endif
864e60
864e60
%global provider        github
864e60
%global provider_tld    com
864e60
%global project         projectatomic
864e60
%global repo            buildah
864e60
# https://github.com/projectatomic/buildah
864e60
%global provider_prefix %{provider}.%{provider_tld}/%{project}/%{repo}
864e60
%global import_path     %{provider_prefix}
0462af
%global commit be877622a3b0c7943b3b760ec43c12d177336e4c
864e60
%global shortcommit    %(c=%{commit}; echo ${c:0:7})
864e60
2bfb70
Name:           %{repo}
0462af
Version:        1.2
0462af
Release:        2.git%{shortcommit}%{?dist}
864e60
Summary:        A command line tool used for creating OCI Images
864e60
License:        ASL 2.0
864e60
URL:            https://%{provider_prefix}
864e60
Source:         https://%{provider_prefix}/archive/%{commit}/%{repo}-%{shortcommit}.tar.gz
864e60
# If go_compiler is not set to 1, there is no virtual provide. Use golang instead.
864e60
BuildRequires:  %{?go_compiler:compiler(go-compiler)}%{!?go_compiler:golang}
864e60
BuildRequires:  git
864e60
BuildRequires:  glib2-devel
864e60
BuildRequires:  ostree-devel
864e60
BuildRequires:  glibc-static
864e60
BuildRequires:  go-md2man
864e60
BuildRequires:  gpgme-devel
864e60
BuildRequires:  device-mapper-devel
864e60
BuildRequires:  btrfs-progs-devel
864e60
BuildRequires:  libassuan-devel
373d36
BuildRequires:  libseccomp-devel
7bf8b3
Requires:       runc >= 1.0.0-26
864e60
Requires:       skopeo-containers >= 0.1.20-2
864e60
Requires:       container-selinux
864e60
Provides:       %{repo} = %{version}-%{release}
864e60
864e60
%description
864e60
The buildah package provides a command line tool which can be used to
864e60
* create a working container from scratch
864e60
or
864e60
* create a working container from an image as a starting point
864e60
* mount/umount a working container's root file system for manipulation
864e60
* save container's root file system layer to create a new image
864e60
* delete a working container or an image
864e60
864e60
%prep
864e60
%autosetup -Sgit -n %{name}-%{commit}
864e60
864e60
%build
864e60
mkdir _build
864e60
pushd _build
864e60
mkdir -p src/%{provider}.%{provider_tld}/%{project}
864e60
ln -s $(dirs +1 -l) src/%{import_path}
864e60
popd
864e60
864e60
mv vendor src
864e60
864e60
export GOPATH=$(pwd)/_build:$(pwd):%{gopath}
864e60
make all GIT_COMMIT=%{shortcommit}
864e60
864e60
864e60
%install
864e60
export GOPATH=$(pwd)/_build:$(pwd):%{gopath}
864e60
make DESTDIR=%{buildroot} PREFIX=%{_prefix} install install.completions
864e60
864e60
#define license tag if not already defined
864e60
%{!?_licensedir:%global license %doc}
864e60
864e60
%files
864e60
%license LICENSE
864e60
%doc README.md
864e60
%{_bindir}/%{name}
2bfb70
%{_mandir}/man1/%{name}*
864e60
%dir %{_datadir}/bash-completion
864e60
%dir %{_datadir}/bash-completion/completions
2bfb70
%{_datadir}/bash-completion/completions/%{name}
864e60
864e60
%changelog
0462af
* Thu Jul 19 2018 Dan Walsh <dwalsh@redhat.com> - 1.2-2
0462af
- buildah does not require ostree
0462af
0462af
* Sun Jul 15 2018 Dan Walsh <dwalsh@redhat.com> 1.2-1
0462af
- Vendor in latest containers/image
0462af
- build-using-dockerfile: let -t include transports again
0462af
- Block use of /proc/acpi and /proc/keys from inside containers
0462af
- Fix handling of --registries-conf
0462af
- Fix becoming a maintainer link
0462af
- add optional CI test fo darwin
0462af
- Don't pass a nil error to errors.Wrapf()
0462af
- image filter test: use kubernetes/pause as a "since"
0462af
- Add --cidfile option to from
0462af
- vendor: update containers/storage
0462af
- Contributors need to find the CONTRIBUTOR.md file easier
0462af
- Add a --loglevel option to build-with-dockerfile
0462af
- Create Development plan
0462af
- cmd: Code improvement
0462af
- allow buildah cross compile for a darwin target
0462af
- Add unused function param lint check
0462af
- docs: Follow man-pages(7) suggestions for SYNOPSIS
0462af
- Start using github.com/seccomp/containers-golang
0462af
- umount: add all option to umount all mounted containers
0462af
- runConfigureNetwork(): remove an unused parameter
0462af
- Update github.com/opencontainers/selinux
0462af
- Fix buildah bud --layers
0462af
- Force ownership of /etc/hosts and /etc/resolv.conf to 0:0
0462af
- main: if unprivileged, reexec in a user namespace
0462af
- Vendor in latest imagebuilder
0462af
- Reduce the complexity of the buildah.Run function
0462af
- mount: output it before replacing lastError
0462af
- Vendor in latest selinux-go code
0462af
- Implement basic recognition of the "--isolation" option
0462af
- Run(): try to resolve non-absolute paths using $PATH
0462af
- Run(): don't include any default environment variables
0462af
- build without seccomp
0462af
- vendor in latest runtime-tools
0462af
- bind/mount_unsupported.go: remove import errors
0462af
- Update github.com/opencontainers/runc
0462af
- Add Capabilities lists to BuilderInfo
0462af
- Tweaks for commit tests
0462af
- commit: recognize committing to second storage locations
0462af
- Fix ARGS parsing for run commands
0462af
- Add info on registries.conf to from manpage
0462af
- Switch from using docker to podman for testing in .papr
0462af
- buildah: set the HTTP User-Agent
0462af
- ONBUILD tutorial
0462af
- Add information about the configuration files to the install docs
0462af
- Makefile: add uninstall
0462af
- Add tilde info for push to troubleshooting
0462af
- mount: support multiple inputs
0462af
- Use the right formatting when adding entries to /etc/hosts
0462af
- Vendor in latest go-selinux bindings
0462af
- Allow --userns-uid-map/--userns-gid-map to be global options
0462af
- bind: factor out UnmountMountpoints
0462af
- Run(): simplify runCopyStdio()
0462af
- Run(): handle POLLNVAL results
0462af
- Run(): tweak terminal mode handling
0462af
- Run(): rename 'copyStdio' to 'copyPipes'
0462af
- Run(): don't set a Pdeathsig for the runtime
0462af
- Run(): add options for adding and removing capabilities
0462af
- Run(): don't use a callback when a slice will do
0462af
- setupSeccomp(): refactor
0462af
- Change RunOptions.Stdin/Stdout/Stderr to just be Reader/Writers
0462af
- Escape use of '_' in .md docs
0462af
- Break out getProcIDMappings()
0462af
- Break out SetupIntermediateMountNamespace()
0462af
- Add Multi From Demo
0462af
- Use the c/image conversion code instead of converting configs manually
0462af
- Don't throw away the manifest MIME type and guess again
0462af
- Consolidate loading manifest and config in initConfig
0462af
- Pass a types.Image to Builder.initConfig
0462af
- Require an image ID in importBuilderDataFromImage
0462af
- Use c/image/manifest.GuessMIMEType instead of a custom heuristic
0462af
- Do not ignore any parsing errors in initConfig
0462af
- Explicitly handle "from scratch" images in Builder.initConfig
0462af
- Fix parsing of OCI images
0462af
- Simplify dead but dangerous-looking error handling
0462af
- Don't ignore v2s1 history if docker_version is not set
0462af
- Add --rm and --force-rm to buildah bud
0462af
- Add --all,-a flag to buildah images
0462af
- Separate stdio buffering from writing
0462af
- Remove tty check from images --format
0462af
- Add environment variable BUILDAH_RUNTIME
0462af
- Add --layers and --no-cache to buildah bud
0462af
- Touch up images man
0462af
- version.md: fix DESCRIPTION
0462af
- tests: add containers test
0462af
- tests: add images test
0462af
- images: fix usage
0462af
- fix make clean error
0462af
- Change 'registries' to 'container registries' in man
0462af
- add commit test
0462af
- Add(): learn to record hashes of what we add
0462af
- Minor update to buildah config documentation for entrypoint
0462af
- Add registries.conf link to a few man pages
0462af
cb54ab
* Sun Jun 10 2018 Dan Walsh <dwalsh@redhat.com> 1.1-1
cb54ab
- Drop capabilities if running container processes as non root
cb54ab
- Print Warning message if cmd will not be used based on entrypoint
cb54ab
- Update 01-intro.md
cb54ab
- Shouldn't add insecure registries to list of search registries
cb54ab
- Report errors on bad transports specification when pushing images
cb54ab
- Move parsing code out of common for namespaces and into pkg/parse.go
cb54ab
- Add disable-content-trust noop flag to bud
cb54ab
- Change freenode chan to buildah
cb54ab
- runCopyStdio(): don't close stdin unless we saw POLLHUP
cb54ab
- Add registry errors for pull
cb54ab
- runCollectOutput(): just read until the pipes are closed on us
cb54ab
- Run(): provide redirection for stdio
cb54ab
- rmi, rm: add test
cb54ab
- add mount test
cb54ab
- Add parameter judgment for commands that do not require parameters
cb54ab
- Add context dir to bud command in baseline test
cb54ab
- run.bats: check that we can run with symlinks in the bundle path
cb54ab
- Give better messages to users when image can not be found
cb54ab
- use absolute path for bundlePath
cb54ab
- Add environment variable to buildah --format
cb54ab
- rm: add validation to args and all option
cb54ab
- Accept json array input for config entrypoint
cb54ab
- Run(): process RunOptions.Mounts, and its flags
cb54ab
- Run(): only collect error output from stdio pipes if we created some
cb54ab
- Add OnBuild support for Dockerfiles
cb54ab
- Quick fix on demo readme
cb54ab
- run: fix validate flags
cb54ab
- buildah bud should require a context directory or URL
cb54ab
- Touchup tutorial for run changes
cb54ab
- Validate common bud and from flags
cb54ab
- images: Error if the specified imagename does not exist
cb54ab
- inspect: Increase err judgments to avoid panic
cb54ab
- add test to inspect
cb54ab
- buildah bud picks up ENV from base image
cb54ab
- Extend the amount of time travis_wait should wait
cb54ab
- Add a make target for Installing CNI plugins
cb54ab
- Add tests for namespace control flags
cb54ab
- copy.bats: check ownerships in the container
cb54ab
- Fix SELinux test errors when SELinux is enabled
cb54ab
- Add example CNI configurations
cb54ab
- Run: set supplemental group IDs
cb54ab
- Run: use a temporary mount namespace
cb54ab
- Use CNI to configure container networks
cb54ab
- add/secrets/commit: Use mappings when setting permissions on added content
cb54ab
- Add CLI options for specifying namespace and cgroup setup
cb54ab
- Always set mappings when using user namespaces
cb54ab
- Run(): break out creation of stdio pipe descriptors
cb54ab
- Read UID/GID mapping information from containers and images
cb54ab
- Additional bud CI tests
cb54ab
- Run integration tests under travis_wait in Travis
cb54ab
- build-using-dockerfile: add --annotation
cb54ab
- Implement --squash for build-using-dockerfile and commit
cb54ab
- Vendor in latest container/storage for devicemapper support
cb54ab
- add test to inspect
cb54ab
- Vendor github.com/onsi/ginkgo and github.com/onsi/gomega
cb54ab
- Test with Go 1.10, too
cb54ab
- Add console syntax highlighting to troubleshooting page
cb54ab
- bud.bats: print "$output" before checking its contents
cb54ab
- Manage "Run" containers more closely
cb54ab
- Break Builder.Run()'s "run runc" bits out
cb54ab
- util.ResolveName(): handle completion for tagged/digested image names
cb54ab
- Handle /etc/hosts and /etc/resolv.conf properly in container
cb54ab
- Documentation fixes
cb54ab
- Make it easier to parse our temporary directory as an image name
cb54ab
- Makefile: list new pkg/ subdirectoris as dependencies for buildah
cb54ab
- containerImageSource: return more-correct errors
cb54ab
- API cleanup: PullPolicy and TerminalPolicy should be types
cb54ab
- Make "run --terminal" and "run -t" aliases for "run --tty"
cb54ab
- Vendor github.com/containernetworking/cni v0.6.0
cb54ab
- Update github.com/containers/storage
cb54ab
- Update github.com/projectatomic/libpod
cb54ab
- Add support for buildah bud --label
cb54ab
- buildah push/from can push and pull images with no reference
cb54ab
- Vendor in latest containers/image
cb54ab
- Update gometalinter to fix install.tools error
cb54ab
- Update troubleshooting with new run workaround
cb54ab
- Added a bud demo and tidied up
cb54ab
- Attempt to download file from url, if fails assume Dockerfile
cb54ab
- Add buildah bud CI tests for ENV variables
cb54ab
- Re-enable rpm .spec version check and new commit test
cb54ab
- Update buildah scratch demo to support el7
cb54ab
- Added Docker compatibility demo
cb54ab
- Update to F28 and new run format in baseline test
cb54ab
- Touchup man page short options across man pages
cb54ab
- Added demo dir and a demo. chged distrorlease
cb54ab
- builder-inspect: fix format option
cb54ab
- Add cpu-shares short flag (-c) and cpu-shares CI tests
cb54ab
- Minor fixes to formatting in rpm spec changelog
cb54ab
- Fix rpm .spec changelog formatting
cb54ab
- CI tests and minor fix for cache related noop flags
cb54ab
- buildah-from: add effective value to mount propagation
cb54ab
cb54ab
* Mon May 7 2018 Dan Walsh <dwalsh@redhat.com> 1.0-1
cb54ab
- Remove buildah run cmd and entrypoint execution
cb54ab
- Add Files section with registries.conf to pertinent man pages
cb54ab
- Force "localhost" as a default registry
cb54ab
- Add --compress, --rm, --squash flags as a noop for bud
cb54ab
- Add FIPS mode secret to buildah run and bud
cb54ab
- Add config --comment/--domainname/--history-comment/--hostname
cb54ab
- Add support for --iidfile to bud and commit
cb54ab
- Add /bin/sh -c to entrypoint in config
cb54ab
- buildah images and podman images are listing different sizes
cb54ab
- Remove tarball as an option from buildah push --help
cb54ab
- Update entrypoint behaviour to match docker
cb54ab
- Display imageId after commit
cb54ab
- config: add support for StopSignal
cb54ab
- Allow referencing stages as index and names
cb54ab
- Add multi-stage builds support
cb54ab
- Vendor in latest imagebuilder, to get mixed case AS support
cb54ab
- Allow umount to have multi-containers
cb54ab
- Update buildah push doc
cb54ab
- buildah bud walks symlinks
cb54ab
- Imagename is required for commit atm, update manpage
cb54ab
2bfb70
* Thu May 03 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.16-3.git532e267
2bfb70
- Resolves: #1573681
2bfb70
- built commit 532e267
2bfb70
2bfb70
* Tue Apr 10 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.16.0-2.git6f7d05b
2bfb70
- built commit 6f7d05b
2bfb70
2bfb70
* Wed Apr 4 2018 Dan Walsh <dwalsh@redhat.com> 0.16-1
2bfb70
-   Add support for shell
2bfb70
-   Vendor in latest containers/image
2bfb70
-    	 docker-archive generates docker legacy compatible images
2bfb70
-	 Do not create $DiffID subdirectories for layers with no configs
2bfb70
- 	 Ensure the layer IDs in legacy docker/tarfile metadata are unique
2bfb70
-	 docker-archive: repeated layers are symlinked in the tar file
2bfb70
-	 sysregistries: remove all trailing slashes
2bfb70
-	 Improve docker/* error messages
2bfb70
-	 Fix failure to make auth directory
2bfb70
-	 Create a new slice in Schema1.UpdateLayerInfos
2bfb70
-	 Drop unused storageImageDestination.{image,systemContext}
2bfb70
-	 Load a *storage.Image only once in storageImageSource
2bfb70
-	 Support gzip for docker-archive files
2bfb70
-	 Remove .tar extension from blob and config file names
2bfb70
-	 ostree, src: support copy of compressed layers
2bfb70
-	 ostree: re-pull layer if it misses uncompressed_digest|uncompressed_size
2bfb70
-	 image: fix docker schema v1 -> OCI conversion
2bfb70
-	 Add /etc/containers/certs.d as default certs directory
2bfb70
-  Change image time to locale, add troubleshooting.md, add logo to other mds
2bfb70
-   Allow --cmd parameter to have commands as values
2bfb70
-   Document the mounts.conf file
2bfb70
-   Fix man pages to format correctly
2bfb70
-   buildah from now supports pulling images using the following transports:
2bfb70
-   docker-archive, oci-archive, and dir.
2bfb70
-   If the user overrides the storage driver, the options should be dropped
2bfb70
-   Show Config/Manifest as JSON string in inspect when format is not set
2bfb70
-   Adds feature to pull compressed docker-archive files
2bfb70
373d36
* Tue Feb 27 2018 Dan Walsh <dwalsh@redhat.com> 0.15-1
373d36
- Fix handling of buildah run command options
373d36
373d36
* Mon Feb 26 2018 Dan Walsh <dwalsh@redhat.com> 0.14-1
373d36
- If commonOpts do not exist, we should return rather then segfault
373d36
- Display full error string instead of just status
373d36
- Implement --volume and --shm-size for bud and from
373d36
- Fix secrets patch for buildah bud
373d36
- Fixes the naming issue of blobs and config for the dir transport by removing the .tar extension
373d36
373d36
* Mon Feb 26 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.13-1.git99066e0
373d36
- use correct version
373d36
373d36
* Mon Feb 26 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.12-4.git99066e0
373d36
- enable debuginfo
373d36
373d36
* Mon Feb 26 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.12-3.git99066e0
373d36
- BR: libseccomp-devel
373d36
373d36
* Mon Feb 26 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.12-2.git99066e0
373d36
- Resolves: #1548535
373d36
- built commit 99066e0
373d36
373d36
* Mon Feb 12 2018 Dan Walsh <dwalsh@redhat.com> 0.12-1
373d36
- Added handing for simpler error message for Unknown Dockerfile instructions.
373d36
- Change default certs directory to /etc/containers/certs.dir
373d36
- Vendor in latest containers/image
373d36
- Vendor in latest containers/storage
373d36
- build-using-dockerfile: set the 'author' field for MAINTAINER
373d36
- Return exit code 1 when buildah-rmi fails
373d36
- Trim the image reference to just its name before calling getImageName
373d36
- Touch up rmi -f usage statement
373d36
- Add --format and --filter to buildah containers
373d36
- Add --prune,-p option to rmi command
373d36
- Add authfile param to commit
373d36
- Fix --runtime-flag for buildah run and bud
373d36
- format should override quiet for images
373d36
- Allow all auth params to work with bud
373d36
- Do not overwrite directory permissions on --chown
373d36
- Unescape HTML characters output into the terminal
373d36
- Fix: setting the container name to the image
373d36
- Prompt for un/pwd if not supplied with --creds
373d36
- Make bud be really quiet
373d36
- Return a better error message when failed to resolve an image
373d36
- Update auth tests and fix bud man page
373d36
7bf8b3
* Mon Feb 05 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.11-3.git49095a8
7bf8b3
- Resolves: #1542236 - add ostree and bump runc dep
7bf8b3
7bf8b3
* Thu Feb 01 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 0.11-2.git49095a8
7bf8b3
- rebased to 49095a83f8622cf69532352d183337635562e261
7bf8b3
7bf8b3
* Tue Jan 16 2018 Dan Walsh <dwalsh@redhat.com> 0.11-1
7bf8b3
- Add --all to remove containers
7bf8b3
- Add --all functionality to rmi
7bf8b3
- Show ctrid when doing rm -all
7bf8b3
- Ignore sequential duplicate layers when reading v2s1
7bf8b3
- Lots of minor bug fixes
7bf8b3
- Vendor in latest containers/image and containers/storage
7bf8b3
7bf8b3
* Sat Dec 23 2017 Dan Walsh <dwalsh@redhat.com> 0.10-2
7bf8b3
- Fix checkin
7bf8b3
7bf8b3
* Sat Dec 23 2017 Dan Walsh <dwalsh@redhat.com> 0.10-1
7bf8b3
- Display Config and Manifest as strings
7bf8b3
- Bump containers/image
7bf8b3
- Use configured registries to resolve image names
7bf8b3
- Update to work with newer image library
7bf8b3
- Add --chown option to add/copy commands
7bf8b3
7bf8b3
* Tue Dec 12 2017 Lokesh Mandvekar <lsm5@redhat.com> - 0.9-2.git04ea079
7bf8b3
- build for all arches
7bf8b3
8dfc32
* Sat Dec 2 2017 Dan Walsh <dwalsh@redhat.com> 0.9-1
8dfc32
- Allow push to use the image id
8dfc32
- Make sure builtin volumes have the correct label
8dfc32
864e60
* Wed Nov 22 2017 Dan Walsh <dwalsh@redhat.com> 0.8-1
864e60
- Buildah bud was failing on SELinux machines, this fixes this
864e60
- Block access to certain kernel file systems inside of the container
864e60
864e60
* Thu Nov 16 2017 Dan Walsh <dwalsh@redhat.com> 0.7-1
864e60
- Ignore errors when trying to read containers buildah.json for loading SELinux reservations
864e60
-     Use credentials from kpod login for buildah
864e60
- Adds support for converting manifest types when using the dir transport
864e60
- Rework how we do UID resolution in images
864e60
- Bump github.com/vbatts/tar-split
864e60
- Set option.terminal appropriately in run
864e60
864e60
* Thu Nov 16 2017 Frantisek Kluknavsky <fkluknav@redhat.com> - 0.5-5.gitf7dc659
864e60
- revert building for s390x, it is intended for rhel 7.5
864e60
864e60
* Wed Nov 15 2017 Dan Walsh <dwalsh@redhat.com> 0.5-4
864e60
- Add requires for container-selinux
864e60
864e60
* Mon Nov 13 2017 Frantisek Kluknavsky <fkluknav@redhat.com> - 0.5-3.gitf7dc659
864e60
- build for s390x, https://bugzilla.redhat.com/show_bug.cgi?id=1482234
864e60
864e60
* Wed Nov 08 2017 Dan Walsh <dwalsh@redhat.com> 0.5-2
864e60
-  Bump github.com/vbatts/tar-split
864e60
-  Fixes CVE That could allow a container image to cause a DOS
864e60
864e60
* Tue Nov 07 2017 Dan Walsh <dwalsh@redhat.com> 0.5-1
864e60
-  Add secrets patch to buildah
864e60
-  Add proper SELinux labeling to buildah run
864e60
-  Add tls-verify to bud command
864e60
-  Make filtering by date use the image's date
864e60
-  images: don't list unnamed images twice
864e60
-  Fix timeout issue
864e60
-  Add further tty verbiage to buildah run
864e60
-  Make inspect try an image on failure if type not specified
864e60
-  Add support for `buildah run --hostname`
864e60
-  Tons of bug fixes and code cleanup
864e60
864e60
* Tue Nov  7 2017 Nalin Dahyabhai <nalin@redhat.com> - 0.4-2.git01db066
864e60
- bump to latest version
864e60
- set GIT_COMMIT at build-time
864e60
864e60
* Fri Sep 22 2017 Dan Walsh <dwalsh@redhat.com> 0.4-1.git9cbccf88c
864e60
-   Add default transport to push if not provided
864e60
-   Avoid trying to print a nil ImageReference
864e60
-   Add authentication to commit and push
864e60
-   Add information on buildah from man page on transports
864e60
-   Remove --transport flag
864e60
-   Run: do not complain about missing volume locations
864e60
-   Add credentials to buildah from
864e60
-   Remove export command
864e60
-   Run(): create the right working directory
864e60
-   Improve "from" behavior with unnamed references
864e60
-   Avoid parsing image metadata for dates and layers
864e60
-   Read the image's creation date from public API
864e60
-   Bump containers/storage and containers/image
864e60
-   Don't panic if an image's ID can't be parsed
864e60
-   Turn on --enable-gc when running gometalinter
864e60
-   rmi: handle truncated image IDs
864e60
864e60
* Fri Sep 22 2017 Lokesh Mandvekar <lsm5@redhat.com> - 0.4-1.git9cbccf8
864e60
- bump to v0.4
864e60
864e60
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.3-4.gitb9b2a8a
864e60
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
864e60
864e60
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.3-3.gitb9b2a8a
864e60
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
864e60
864e60
* Thu Jul 20 2017 Dan Walsh <dwalsh@redhat.com> 0.3-2.gitb9b2a8a7e
864e60
- Bump for inclusion of OCI 1.0 Runtime and Image Spec
864e60
864e60
* Tue Jul 18 2017 Dan Walsh <dwalsh@redhat.com> 0.2.0-1.gitac2aad6
864e60
-   buildah run: Add support for -- ending options parsing 
864e60
-   buildah Add/Copy support for glob syntax
864e60
-   buildah commit: Add flag to remove containers on commit
864e60
-   buildah push: Improve man page and help information
864e60
-   buildah run: add a way to disable PTY allocation
864e60
-   Buildah docs: clarify --runtime-flag of run command
864e60
-   Update to match newer storage and image-spec APIs
864e60
-   Update containers/storage and containers/image versions
864e60
-   buildah export: add support
864e60
-   buildah images: update commands
864e60
-   buildah images: Add JSON output option
864e60
-   buildah rmi: update commands
864e60
-   buildah containers: Add JSON output option
864e60
-   buildah version: add command
864e60
-   buildah run: Handle run without an explicit command correctly
864e60
-   Ensure volume points get created, and with perms
864e60
-   buildah containers: Add a -a/--all option
864e60
864e60
* Wed Jun 14 2017 Dan Walsh <dwalsh@redhat.com> 0.1.0-2.git597d2ab9
864e60
- Release Candidate 1
864e60
- All features have now been implemented.
864e60
864e60
* Fri Apr 14 2017 Dan Walsh <dwalsh@redhat.com> 0.0.1-1.git7a0a5333
864e60
- First package for Fedora