diff options
Diffstat (limited to 'RELEASE_NOTES.md')
-rw-r--r-- | RELEASE_NOTES.md | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 046c0c0df..f411ad28a 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,5 +1,52 @@ # Release Notes +## 0.9.3.1 +### Bugfixes +- Fixed a critical issue where SELinux contexts set on tmpfs volumes were causing runc crashes + +## 0.9.3 +### Features +- Added a flag to `libpod.conf`, `label`, to globally enable/disable SELinux labelling for libpod +- Added `--mount` flag to `podman create` and `podman run` as a new, more explicit way of specifying volume mounts + +### Bugfixes +- Fixed a crash during container creation when an image had no names +- Fixed default rootfs mount propagation to for containers to match Docker +- Fixed permissions of `/proc` in containers +- Fixed permissions of some default bind mounts (for example, `/etc/hosts`) in read-only containers +- Fixed `/dev/shm` in `--ipc=container` and `--ipc=host` containers to use the correct SHM +- Fixed rootless Podman to properly join the namespaces of other containers +- Fixed the output of `podman diff` to not display some default changes that will not be committed +- Fixed rootless to better handle cases where insufficient UIDs/GIDs are mapped into the container + +## 0.9.2.1 +### Bugfixes +- Updated Buildah dependency to fix several bugs in `podman build` + +### Misc +- Small performance improvement in image handling code to not recalculate digests + +## 0.9.2 +### Features +- Added `--interval` flag to `podman wait` to determine the interval between checks for container status +- Added a switch in `libpod.conf` to disable reserving ports for running containers. This lowers the safety of port allocations, but can significantly reduce memory usage. +- Added ability to search all the contents of a registry if no image name is specified when using `podman search` + +### Bugfixes +- Further fixes for sharing of UTS namespaces within pods +- Fixed a deadlock in containers/storage that could be caused by numerous parallel Podman processes. +- Fixed Podman running into open file limits when many ports are forwarded +- Fixed default mount propagation on volume mounts +- Fixed default mounts under /dev remaining if /dev is bind-mounted into the container +- Fixed rootless `podman create` with no command specified throwing an error + +### Misc +- Added `podman rm --volumes` flag for compatability with Docker. As Podman does not presently support named volumes, this does nothing for now, but provides improved compatability with the Docker command line. +- Improved error messages from `podman pull` + +### Compatability +- Podman is no longer being built by default with support for the Devicemapper storage driver. If you are using this storage driver, you should investigate switching to overlayfs. + ## 0.9.1.1 ### Bugfixes - Added support for configuring iptables and firewalld firewalls to allow container traffic. This should resolve numerous issues with network access in containers. |