aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@gmail.com>2018-09-14 18:12:46 -0400
committerGitHub <noreply@github.com>2018-09-14 18:12:46 -0400
commitab5dd390ccbb0dbb33b7a78cbb41cb3807a459d2 (patch)
treef5dcb3f2e5c59b8401121537525f628cd242458c
parentb4719041750348cc83d52ffaab944d38fa9c3189 (diff)
parenta139f98aea44e2050c5e84c42dd58cc646ea3fc1 (diff)
downloadpodman-ab5dd390ccbb0dbb33b7a78cbb41cb3807a459d2.tar.gz
podman-ab5dd390ccbb0dbb33b7a78cbb41cb3807a459d2.tar.bz2
podman-ab5dd390ccbb0dbb33b7a78cbb41cb3807a459d2.zip
Merge pull request #1479 from mheon/release_notes_0.9.2
Update release notes for 0.9.2
-rw-r--r--README.md2
-rw-r--r--RELEASE_NOTES.md18
2 files changed, 19 insertions, 1 deletions
diff --git a/README.md b/README.md
index bd4f2c0d5..b033bbc86 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
![PODMAN logo](logo/podman-logo-source.svg)
# libpod - library for running OCI-based containers in Pods
-### Latest Version: 0.9.1
+### Latest Version: 0.9.2
### Status: Active Development
## What is the scope of this project?
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index 046c0c0df..65c8997df 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -1,5 +1,23 @@
# Release Notes
+## 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`
+
## 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.