Merge pull request #10784 from mheon/release_322

[CI:DOCS] Bump to v3.2.2
This commit is contained in:
OpenShift Merge Robot
2021-06-25 17:00:09 -04:00
committed by GitHub
4 changed files with 33 additions and 4 deletions

View File

@ -5,7 +5,7 @@
Podman (the POD MANager) is a tool for managing containers and images, volumes mounted into those containers, and pods made from groups of containers. Podman (the POD MANager) is a tool for managing containers and images, volumes mounted into those containers, and pods made from groups of containers.
Podman is based on libpod, a library for container lifecycle management that is also contained in this repository. The libpod library provides APIs for managing containers, pods, container images, and volumes. Podman is based on libpod, a library for container lifecycle management that is also contained in this repository. The libpod library provides APIs for managing containers, pods, container images, and volumes.
* [Latest Version: 3.1.0](https://github.com/containers/podman/releases/latest) * [Latest Version: 3.2.2](https://github.com/containers/podman/releases/latest)
* Latest Remote client for Windows * Latest Remote client for Windows
* Latest Remote client for MacOs * Latest Remote client for MacOs
* Latest Static Remote client for Linux * Latest Static Remote client for Linux
@ -130,7 +130,7 @@ Buildah and Podman are two complementary open-source projects that are
available on most Linux platforms and both projects reside at available on most Linux platforms and both projects reside at
[GitHub.com](https://github.com) with Buildah [GitHub.com](https://github.com) with Buildah
[here](https://github.com/containers/buildah) and Podman [here](https://github.com/containers/buildah) and Podman
[here](https://github.com/containers/podman). Both, Buildah and Podman are [here](https://github.com/containers/podman). Both Buildah and Podman are
command line tools that work on Open Container Initiative (OCI) images and command line tools that work on Open Container Initiative (OCI) images and
containers. The two projects differentiate in their specialization. containers. The two projects differentiate in their specialization.

View File

@ -1,3 +1,32 @@
- Changelog for v3.2.2 (2021-06-25):
* fix systemcontext to use correct TMPDIR
* Scrub podman commands to use report package
* Fix volumes with uid and gid options
* Vendor in c/common v0.38.11
* Initial release notes for v3.2.2
* Fix restoring of privileged containers
* Fix handling of podman-remote build --device
* Add support for podman remote build -f - .
* Fix panic condition in cgroups.getAvailableControllers
* Fix permissions on initially created named volumes
* Fix building static podman-remote
* add correct slirp ip to /etc/hosts
* disable tty-size exec checks in system tests
* Fix resize race with podman exec -it
* Fix documentation of the --format option of podman push
* Fix systemd-resolved detection.
* Health Check is not handled in the compat LibpodToContainerJSON
* Do not use inotify for OCICNI
* getContainerNetworkInfo: lock netNsCtr before sync
* [NO TESTS NEEDED] Create /etc/mtab with the correct ownership
* Create the /etc/mtab file if does not exists
* [v3.2] cp: do not allow dir->file copying
* create: support images with invalid platform
* vendor containers/common@v0.38.10
* logs: k8s-file: restore poll sleep
* logs: k8s-file: fix spurious error logs
* utils: move message from warning to debug
- Changelog for v3.2.1 (2021-06-11): - Changelog for v3.2.1 (2021-06-11):
* Updated release notes for v3.2.1 * Updated release notes for v3.2.1
* remote events: fix --stream=false * remote events: fix --stream=false

View File

@ -36,7 +36,7 @@ Epoch: 99
%else %else
Epoch: 0 Epoch: 0
%endif %endif
Version: 3.2.2 Version: 3.2.3
Release: #COMMITDATE#.git%{shortcommit0}%{?dist} Release: #COMMITDATE#.git%{shortcommit0}%{?dist}
Summary: Manage Pods, Containers and Container Images Summary: Manage Pods, Containers and Container Images
License: ASL 2.0 License: ASL 2.0

View File

@ -27,7 +27,7 @@ const (
// NOTE: remember to bump the version at the top // NOTE: remember to bump the version at the top
// of the top-level README.md file when this is // of the top-level README.md file when this is
// bumped. // bumped.
var Version = semver.MustParse("3.2.2-dev") var Version = semver.MustParse("3.2.3-dev")
// See https://docs.docker.com/engine/api/v1.40/ // See https://docs.docker.com/engine/api/v1.40/
// libpod compat handlers are expected to honor docker API versions // libpod compat handlers are expected to honor docker API versions