-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release notes for v1.6.3 #4417
Merged
openshift-merge-robot
merged 1 commit into
containers:v1.6
from
mheon:release_notes_1.6.3
Nov 1, 2019
+29
−0
Merged
Release notes for v1.6.3 #4417
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,34 @@ | ||
# Release Notes | ||
|
||
## 1.6.3 | ||
### Features | ||
- Handling of the `libpod.conf` configuration file has seen major changes. Most significantly, rootless users will no longer automatically receive a complete configuration file when they first use Podman, and will instead only receive differences from the global configuration. | ||
- Initial support for the CNI DNS plugin, which allows containers to resolve the IPs of other containers via DNS name, has been added | ||
- Podman now supports anonymous named volumes, created by specifying only a destination to the `-v` flag to the `podman create` and `podman run` commands | ||
- Named volumes now support `uid` and `gid` options in `--opt o=...` to set UID and GID of the created volume | ||
|
||
### Bugfixes | ||
- Fixed a bug where the `podman start` command would print container ID, instead of name, when starting containers given their name | ||
- Fixed a bug where named volumes with options did not properly detect issues with mounting the volume, leading to an inconsistent state ([#4303](https://github.com/containers/libpod/issues/4303)) | ||
- Fixed a bug where incorrect Seccomp profiles were used in containers generated by `podman play kube` | ||
- Fixed a bug where processes started by `podman exec` would have the wrong SELinux label in some circumstances ([#4361](https://github.com/containers/libpod/issues/4361)) | ||
- Fixed a bug where error messages from `slirp4netns` would be lost | ||
- Fixed a bug where `podman run --network=$NAME` would not throw an error in rootless Podman, where CNI networks are not supported | ||
- Fixed a bug where `podman network create` would throw confusing errors when trying to create a volume with a name that already exists | ||
- Fixed a bug where Podman would not error if the `systemd` CGroup manager was specified, but systemd could not be contacted over DBus | ||
- Fixed a bug where image volumes were mounted `noexec` ([#4318](https://github.com/containers/libpod/issues/4318)) | ||
- Fixed a bug where the `podman stats` command required the name of a container to be given, instead of showing all containers when no container was specified ([#4274](https://github.com/containers/libpod/issues/4274)) | ||
- Fixed a bug where the `podman volume inspect` command would not show the options that named volumes were created with | ||
- Fixed a bug where custom storage configuration was not written to `storage.conf` at time of first creation for rootless Podman ([#2659](https://github.com/containers/libpod/issues/2659)) | ||
- Fixed a bug where remote Podman did not support shell redirection of container output | ||
|
||
### Misc | ||
- Updated vendored containers/image library to v5.0 | ||
- Initial support for images using manifest lists has been added, though commands for directly interacting with manifests are still missing | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think you can now pull directly by manifest, we just don't allow you to play with them yet. |
||
- Support for pushing to and pulling from OSTree has been removed due to deprecation in the containers/image library | ||
- Rootless Podman no longer enables linger on systems with systemd as init by default. As such, containers will now be killed when the user who ran them logs out, unless linger is explicitly enabled using [loginctl](https://www.freedesktop.org/software/systemd/man/loginctl.html) | ||
- Podman will now check the version of `conmon` that is in use to ensure it is sufficient | ||
|
||
## 1.6.2 | ||
### Features | ||
- Added a `--runtime` flag to `podman system migrate` to allow the OCI runtime for all containers to be reset, to ease transition to the `crun` runtime on CGroups V2 systems until `runc` gains full support | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@nalind Should mention something about pull by digest?