v3.2.0 — 2026-05-22

Changed:
- installer-anaconda-iso: version input default changes from
  ${CI_COMMIT_SHORT_SHA} to the literal "current". The canonical
  download URL is now stable across rebuilds — consumers don't need
  to chase short-SHAs to find the latest ISO. The baked image's SHA
  is still queryable post-install via "bootc status"; encoding it in
  the registry URL added churn without adding information.
- installer-anaconda-iso: the upload step now pre-deletes any
  existing package at the same (name, version) before uploading.
  GitLab's generic package registry allows duplicate uploads by
  default; without this, every CI re-run appended a new file at the
  same path and the registry accumulated multiple ISOs per version.
  Pre-delete makes the job idempotent. Pair with the group-level
  genericDuplicatesAllowed: false setting (already flipped) to
  enforce one-file-per-(name,version) at the registry layer too.