发布日期: 2026-07-09
版本号: v3.4.5

Argo CD v3.4.5 版本已发布。该版本包含面向非高可用(Non-HA)和高可用(HA)环境的快速安装指南,安装命令为在指定命名空间中应用对应的配置清单。所有容器镜像及符合SLSA三级规范的CLI二进制文件均由cosign签名,并提供出处信息以供验证。用户若从其他次版本升级,请务必参阅相关升级文档。此版本主要更新包括多项错误修复,例如正确处理引用源深度、优化同步逻辑、修正UI显示问题等,并更新了部分依赖项。

更新内容 (中文)

快速开始

非高可用部署:

kubectl create namespace argocd
kubectl apply -n argocd --server-side --force-conflicts -f https://raw.githubusercontent.com/argoproj/argo-cd/v3.4.5/manifests/install.yaml

高可用部署:

kubectl create namespace argocd
kubectl apply -n argocd --server-side --force-conflicts -f https://raw.githubusercontent.com/argoproj/argo-cd/v3.4.5/manifests/ha/install.yaml

发布签名与出处

所有 Argo CD 容器镜像均由 cosign 签名。符合 SLSA 3 级规范的容器镜像和 CLI 二进制文件会生成出处证明。有关如何验证,请参阅文档

发布说明博文

要了解此版本中关键变更和改进的详细分解,请查阅官方博文

升级指南

如果从不同的次版本升级,请务必阅读升级指南文档。

变更日志

错误修复

  • e77e4b645cc1ad28b1af74931d8810c514fa75e7: 修复(reposerver):优先使用引用源的深度,而非主源(为 3.4 版本 cherry-pick #28339)(#28341) (@alexandresavicki)
  • 63e67d5e7f502f85b69cd52d6d56e1123b087992: 修复(ssa):不要在 SSA 中运行认证协调(将 #27624 和 #27601 cherry-pick 到 3.4)(#28265) (@Mangaal)
  • 240390732e7b593a53a237c4f149426e7268f295: 修复:当 manifest-generate-paths 同步期间有新提交时,自动同步被跳过 (#27875) (为 3.4 版本 cherry-pick #28227) (#28331) (@argo-cd-cherry-pick-bot[bot])
  • 2d18587a4c36d4676dd0514bc4a3c5e0cc8b2ed4: 修复:已删除的资源在 UI 中错误显示(为 3.4 版本 cherry-pick #28322)(#28337) (@argo-cd-cherry-pick-bot[bot])
  • a82e158db8a56037d8e8b5085d188abd9fba12f0: 修复:在执行 “replace” 时不要覆盖非忽略字段(为 3.4 版本 cherry-pick #27136)(#28507) (@argo-cd-cherry-pick-bot[bot])
  • d4c8f1c3c724d4d71c1f4ddb6b255ab36d3bef4a: 修复:修复 dex 配置环境变量替换的回退问题 - 在 3.4 中 cherry-pick #28369 (#28411) (@ppapapetrou76)

依赖项更新

  • 8c7ece50a4dfd731d5e10bedf3a3e692808b3d23: 维护(deps):将 golang.org/x/crypto 升级至 0.53.0 (release-3.4) (#28375) (@nmirasch)
  • a8f245b7a0a9b4b9ca8538038b521da29b5932f6: 维护(deps):将 Ubuntu 基础镜像更新至 26.04 LTS (3.4) (#28430) (@suii2210)

完整变更日志: https://github.com/argoproj/argo-cd/compare/v3.4.4...v3.4.5

更新内容 (原始)

Quick Start

Non-HA:

kubectl create namespace argocd
kubectl apply -n argocd --server-side --force-conflicts -f https://raw.githubusercontent.com/argoproj/argo-cd/v3.4.5/manifests/install.yaml

HA:

kubectl create namespace argocd
kubectl apply -n argocd --server-side --force-conflicts -f https://raw.githubusercontent.com/argoproj/argo-cd/v3.4.5/manifests/ha/install.yaml

Release Signatures and Provenance

All Argo CD container images are signed by cosign. A Provenance is generated for container images and CLI binaries which meet the SLSA Level 3 specifications. See the documentation on how to verify.

Release Notes Blog Post

For a detailed breakdown of the key changes and improvements in this release, check out the official blog post

Upgrading

If upgrading from a different minor version, be sure to read the upgrading documentation.

Changelog

Bug fixes

  • e77e4b645cc1ad28b1af74931d8810c514fa75e7: fix(reposerver): honor depth of referenced source instead of primary source (cherry-pick #28339 for 3.4) (#28341) (@alexandresavicki)
  • 63e67d5e7f502f85b69cd52d6d56e1123b087992: fix(ssa): do not run auth reconcile with SSA (cherry pick of #27624 and #27601 to 3.4) (#28265) (@Mangaal)
  • 240390732e7b593a53a237c4f149426e7268f295: fix: auto-sync skipped when newer commit arrives during sync with manifest-generate-paths (#27875) (cherry-pick #28227 for 3.4) (#28331) (@argo-cd-cherry-pick-bot[bot])
  • 2d18587a4c36d4676dd0514bc4a3c5e0cc8b2ed4: fix: deleted resource are incorrectly shown in UI (cherry-pick #28322 for 3.4) (#28337) (@argo-cd-cherry-pick-bot[bot])
  • a82e158db8a56037d8e8b5085d188abd9fba12f0: fix: don’t clobber non-ignored fields on “replace” (cherry-pick #27136 for 3.4) (#28507) (@argo-cd-cherry-pick-bot[bot])
  • d4c8f1c3c724d4d71c1f4ddb6b255ab36d3bef4a: fix: fixes a regression of dex config env vars substituion - Cherry pick of #28369 in 3.4 (#28411) (@ppapapetrou76)

Dependency updates

  • 8c7ece50a4dfd731d5e10bedf3a3e692808b3d23: chore(deps): bump golang.org/x/crypto to 0.53.0 (release-3.4) (#28375) (@nmirasch)
  • a8f245b7a0a9b4b9ca8538038b521da29b5932f6: chore(deps): update Ubuntu base image to 26.04 LTS (3.4) (#28430) (@suii2210)

Full Changelog: https://github.com/argoproj/argo-cd/compare/v3.4.4...v3.4.5

下载链接