diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-10-17 21:09:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-17 21:09:05 +0200 |
commit | 2b0892e757c878cdb087dd22b8986bccef0276ed (patch) | |
tree | c67c8443911d412860b28bcecee8be17001cfd35 | |
parent | f2d9a9d2abd1405d8ea5fb7b94715f6f87618226 (diff) | |
parent | 92b70f0637a3e185bcb53d689cf2f45bbc709f1a (diff) | |
download | podman-2b0892e757c878cdb087dd22b8986bccef0276ed.tar.gz podman-2b0892e757c878cdb087dd22b8986bccef0276ed.tar.bz2 podman-2b0892e757c878cdb087dd22b8986bccef0276ed.zip |
Merge pull request #4290 from mheon/release_notes_1.6.2_final
Finalize release notes for v1.6.2
-rw-r--r-- | RELEASE_NOTES.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 0f2e748fa..235871273 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -22,9 +22,11 @@ - Fixed a bug where `podman stats` was broken on systems running CGroups V2 when run rootless ([#4268](https://github.com/containers/libpod/issues/4268)) - Fixed a bug where the `podman start` command would print the short container ID, instead of the full ID - Fixed a bug where containers created with an OCI runtime that is no longer available (uninstalled or removed from the config file) would not appear in `podman ps` and could not be removed via `podman rm` +- Fixed a bug where containers restored via `podman container restore --import` would retain the CGroup path of the original container, even if their container ID changed; thus, multiple containers created from the same checkpoint would all share the same CGroup ### Misc - The default PID limit for containers is now set to 4096. It can be adjusted back to the old default (unlimited) by passing `--pids-limit 0` to `podman create` and `podman run` +- The `podman start --attach` command now automatically attaches `STDIN` if the container was created with `-i` - The `podman network create` command now validates network names using the same regular expression as container and pod names - The `--systemd` flag to `podman run` and `podman create` will now only enable systemd mode when the binary being run inside the container is `/sbin/init`, `/usr/sbin/init`, or ends in `systemd` (previously detected any path ending in `init` or `systemd`) - Updated vendored Buildah to 1.11.3 |