diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-08-15 23:11:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-15 23:11:24 +0200 |
commit | b9a176bea94b8e3a97a70dd7cd599f1a057777b0 (patch) | |
tree | ef2bff628ae7ad71bae225083d32958763d45791 | |
parent | 74224d9b7ce7b2cfec551b6f16005642cb2fa4df (diff) | |
parent | 03ebb98398d2b0b05596034c6d3287ee7c7ea575 (diff) | |
download | podman-b9a176bea94b8e3a97a70dd7cd599f1a057777b0.tar.gz podman-b9a176bea94b8e3a97a70dd7cd599f1a057777b0.tar.bz2 podman-b9a176bea94b8e3a97a70dd7cd599f1a057777b0.zip |
Merge pull request #3825 from mheon/release_notes_1.5.1_real
Add release notes for v1.5.1
-rw-r--r-- | RELEASE_NOTES.md | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index f55fd9b18..3cfd8ed86 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,5 +1,23 @@ # Release Notes +## 1.5.1 +### Features +- The hostname of pods is now set to the pod's name + +### Bugfixes +- Fixed a bug where `podman run` and `podman create` did not honor the `--authfile` option ([#3730](https://github.com/containers/libpod/issues/3730)) +- Fixed a bug where containers restored with `podman container restore --import` would incorrectly duplicate the Conmon PID file of the original container +- Fixed a bug where `podman build` ignored the default OCI runtime configured in `libpod.conf` +- Fixed a bug where `podman run --rm` (or force-removing any running container with `podman rm --force`) were not retrieving the correct exit code ([#3795](https://github.com/containers/libpod/issues/3795)) +- Fixed a bug where Podman would exit with an error if any configured hooks directory was not present +- Fixed a bug where `podman inspect` and `podman commit` would not use the correct `CMD` for containers run with `podman play kube` +- Fixed a bug created pods when using rootless Podman and CGroups V2 ([#3801](https://github.com/containers/libpod/issues/3801)) +- Fixed a bug where the `podman events` command with the `--since` or `--until` options could take a very long time to complete + +### Misc +- Rootless Podman will now inherit OCI runtime configuration from the root configuration ([#3781](https://github.com/containers/libpod/issues/3781)) +- Podman now properly sets a user agent while contacting registries ([#3788](https://github.com/containers/libpod/issues/3788)) + ## 1.5.0 ### Features - Podman containers can now join the user namespaces of other containers with `--userns=container:$ID`, or a user namespace at an arbitary path with `--userns=ns:$PATH` |