You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: RELEASE_NOTES.md
+14-2
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,7 @@
2
2
3
3
## 4.6.0
4
4
### Features
5
+
- The `podman manifest inspect` command now supports the `--authfile` option, for authentication purposes.
5
6
- The `podman wait` command now supports `--condition={healthy,unhealthy}`, allowing waits on successful health checks.
6
7
- The `podman push` command now supports a new option, ` --compression-level`, which specifies the compression level to use ([#18939](https://github.com/containers/podman/issues/18939)).
7
8
- The `podman machine start` command, when run with `--log-level=debug`, now creates a console window to display the virtual machine while booting.
@@ -51,7 +52,18 @@
51
52
- Quadlet now supports the `HostName` field, which sets the container's host name, in `.container` files ([#18486](https://github.com/containers/podman/issues/18486)).
52
53
53
54
### Bugfixes
54
-
- The `podman machine start` command now waits for systemd-user sessions to be up, addressing flaky machine starts ([##17403](https://github.com/containers/podman/issues/#17403)).
55
+
- Fixed a bug where the `podman machine start` command would fail with a 255 exit code. It now waits for systemd-user sessions to be up, and for SSH to be ready, addressing the flaky machine starts ([#17403](https://github.com/containers/podman/issues/#17403)).
56
+
- Fixed a bug where the `podman auto update` command did not correctly use authentication files when contacting container registries.
57
+
- Fixed a bug where the `--dns` option to the `podman run` command was ignored for macvlan networks ([#19169](https://github.com/containers/podman/issues/19169)).
58
+
- Fixed a bug in the `podman system service` command where setting LISTEN_FDS when listening on TCP would misbehave.
59
+
- Fixed a bug where hostnames were not recognized as a network alias. Containers can now resolve other hostnames, in addition to their names ([#17370](https://github.com/containers/podman/issues/17370)).
60
+
- Fixed a bug where the `podman pod run` command would error after a reboot on a non-systemd system ([#19175](https://github.com/containers/podman/issues/19175)).
61
+
- Fixed a bug where the `--syslog` option returned a fatal error when no syslog server was found ([#19075](https://github.com/containers/podman/issues/19075)).
62
+
- Fixed a bug where the `--mount` option would parse the `readonly` option incorrectly ([#18995](https://github.com/containers/podman/issues/18995)).
63
+
- Fixed a bug where hook executables invoked by the `podman run` command set an incorrect working directory. It now sets the correct working directory pointing to the container bundle directory ([#18907](https://github.com/containers/podman/issues/18907)).
64
+
- Fixed a bug where the `-device-cgroup-rule` option was silently ignored in rootless mode ([#18698](https://github.com/containers/podman/issues/18698)).
65
+
- Listing images is now more resilient towards concurrently running image removals.
66
+
- Fixed a bug where the `--force` option to the `podman kube down` command would not remove volumes ([#18797](https://github.com/containers/podman/issues/18797)).
55
67
- Fixed a bug where setting the `--list-tags` option in the `podman search` command would cause the command to ignore the `--format` option ([#18939](https://github.com/containers/podman/issues/18939)).
56
68
- Fixed a bug where the `podman machine start` command did not properly translate the proxy IP.
57
69
- Fixed a bug where the `podman auto-update` command would not restart dependent units (specified via `Requires=`) on auto update ([#18926](https://github.com/containers/podman/issues/18926)).
@@ -101,7 +113,7 @@
101
113
- Updated Buildah to v1.31.0
102
114
- Updated the containers/storage library to v1.48.0
103
115
- Updated the containers/image library to v5.26.1
104
-
- Updated the containers/common library to v0.55.1
116
+
- Updated the containers/common library to v0.55.2
Short: "Display the contents of a manifest list or image index",
18
21
Long: "Display the contents of a manifest list or image index.",
@@ -30,6 +33,9 @@ func init() {
30
33
})
31
34
flags:=inspectCmd.Flags()
32
35
36
+
authfileFlagName:="authfile"
37
+
flags.StringVar(&inspectOptions.Authfile, authfileFlagName, auth.GetDefaultAuthFile(), "path of the authentication file. Use REGISTRY_AUTH_FILE environment variable to override")
Copy file name to clipboardExpand all lines: docs/source/markdown/podman-auto-update.1.md.in
+1
Original file line number
Diff line number
Diff line change
@@ -79,6 +79,7 @@ Please note that detecting if a systemd unit has failed is best done by the cont
79
79
80
80
For a container to send the READY message via SDNOTIFY it must be created with the `--sdnotify=container` option (see podman-run(1)). The application running inside the container can then execute `systemd-notify --ready` when ready or use the sdnotify bindings of the specific programming language (e.g., sd_notify(3)).
0 commit comments