v1.53.0
Added
-
Per-container update policy (#2, voted by @NotRetarded and @famewolf). Cap how far an auto-update may jump on the semver ladder:
all(default, every bump),minor(minor + patch, hold majors),patch(patch only). Set it per container withdocksentry.policy=minor, or globally withUPDATE_POLICY=minor— the label wins. Held-back updates still show in the "Updates Available" list with a one-line note, and a manual/updateor Bulk update applies them anyway (an explicit action always overrides). Bump level comes from the version info Docksentry already reads (OCI version labels, falling back to a semver tag); anything unclassifiable is allowed, not silently skipped.This gates the existing digest-based auto-update path — it does not follow or switch semver tags (
:1.2.3is never rewritten to:1.2.4). Tag-following is a separate future capability.
Fixed
- Podman self-update failed with
invalid PID mode(#49, @LeeNX). Podman reports the default PID/UTS namespace as"private"where Docker reports empty, and--pid privateisn't a valid run value — so the recreate crashed and rolled back. PID/UTS now skip"private"like--ipcalready did; real values likehoststill carry over.