diff options
author | Matthew Heon <matthew.heon@pm.me> | 2019-03-01 15:33:44 -0500 |
---|---|---|
committer | Matthew Heon <matthew.heon@pm.me> | 2019-03-01 15:33:44 -0500 |
commit | bd7326e3df83363dae1341c1c65af4d987a22ec6 (patch) | |
tree | 56e4618fe971203c7137cc8497db2b620360218c /RELEASE_NOTES.md | |
parent | 2747c20867127c930d705f5162dcd78b4faf9624 (diff) | |
download | podman-bd7326e3df83363dae1341c1c65af4d987a22ec6.tar.gz podman-bd7326e3df83363dae1341c1c65af4d987a22ec6.tar.bz2 podman-bd7326e3df83363dae1341c1c65af4d987a22ec6.zip |
Update release notes for v1.1.1
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
Diffstat (limited to 'RELEASE_NOTES.md')
-rw-r--r-- | RELEASE_NOTES.md | 31 |
1 files changed, 30 insertions, 1 deletions
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 0bacad0d7..67975730e 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,5 +1,34 @@ # Release Notes +## 1.1.1 +### Bugfixes +- Fixed a bug where `podman container restore` was erroneously available as `podman restore` ([#2191](https://github.com/containers/libpod/issues/2191)) +- Fixed a bug where the `volume_path` option in `libpod.conf` was not being respected +- Fixed a bug where Podman failed to build when the `varlink` tag was not present ([#2459](https://github.com/containers/libpod/issues/2459)) +- Fixed a bug where the `podman image load` command was listed twice in help text +- Fixed a bug where the `podman image sign` command was also listed as `podman sign` +- Fixed a bug where the `podman image list` command incorrectly had an `image` alias +- Fixed a bug where the `podman images` command incorrectly had `ls` and `list` aliases +- Fixed a bug where the `podman image rm` command was being displayed as `podman image rmi` +- Fixed a bug where the `podman create` command would attempt to parse arguments meant for the container +- Fixed a bug where the combination of FIPS mode and user namespaces resulted in permissions errors +- Fixed a bug where the `--time` alias for `--timeout` for the `podman restart` and `podman stop` commands did not function +- Fixed a bug where the default stop timeout for newly-created containers was being set to 0 seconds (resulting in an immediate SIGKILL on running `podman stop`) +- Fixed a bug where the output format of `podman port` was incorrect, printing full container ID instead of truncated ID +- Fixed a bug where the `podman container list` command did not exist +- Fixed a bug where `podman build` could not build a container from images tagged locally that did not exist in a registry ([#2469](https://github.com/containers/libpod/issues/2469)) +- Fixed a bug where some Podman commands that accept no arguments would not error when provided arguments +- Fixed a bug where `podman play kube` could not handle cases where a pod and a container shared a name + +### Misc +- Usage text for many commands was greatly improved +- Major cleanups were made to Podman manpages, ensuring that command lists are accurate +- Greatly improved debugging output when the `newuidmap` and `newgidmap` binaries fail when using rootless Podman +- The `-s` alias for the global `--storage-driver` option has been removed +- The `podman container refresh` command has been deprecated, as its intended use case is no longer relevant. The command has been hidden and manpages deleted. It will be removed in a future release +- The `podman container runlabel` command will now pull images not available locally even without the `--pull` option. The `--pull` option has been deprecated +- The `podman container checkpoint` and `podman container restore` commands are now only available on OCI runtimes where they are supported (e.g. `runc`) + ## 1.1.0 ### Features - Added `--latest` and `--all` flags to `podman mount` and `podman umount` @@ -59,7 +88,7 @@ - Updated Buildah to v1.7, picking up a number of bugfixes - Updated containers/image library to v1.5, picking up a number of bugfixes and performance improvements to pushing images - Updated containers/storage library to v1.10, picking up a number of bugfixes -- Work on the remote Podman client for interacting with Podman remotely over Varlink is progressing steadily, and many image and pod commands are supported +- Work on the remote Podman client for interacting with Podman remotely over Varlink is progressing steadily, and many image and pod commands are supported - please see the [Readme](https://github.com/containers/libpod/blob/master/remote_client.md) for details - Added path masking to mounts with the `:z` and `:Z` options, preventing users from accidentally performing an SELinux relabel of their entire home directory - The `podman container runlabel` command will not pull an image if it does not contain the requested label - Many commands' usage information now includes examples |