4.0.5

Latest release in branch 4.0
Released 14 Jan 2026 (3 months ago)

SoftwareHelm
Branch4.0
Status
End of life
Initial release4.0.0
12 Nov 2025 (5 months ago)
Latest patch release4.0.5
14 Jan 2026 (3 months ago)
Supported
Kubernetes versions
1.34.x - 1.31.x
Active support end21 Jan 2026 (Ended 3 months ago)
Release noteshttps://github.com/helm/helm/releases/tag/v4.0.5
Source codehttps://github.com/helm/helm/tree/v4.0.5
Downloadhttps://github.com/helm/helm/releases/tag/v4.0.5
Helm 4.0 ReleasesView full list

What Is New in Helm 4.0?

Category Key Changes
New Features
  • Redesigned plugin system with WebAssembly support
  • Post‑renderers are now implemented as plugins
  • Server‑side apply capability
  • Resource watching based on kstatus for smarter waiting
  • Local content‑based chart caching
  • Slog‑based logging for modern logger integration
  • Reproducible chart archive builds
  • Expanded SDK API (multiple chart API versions, experimental v3 API soon)
Improvements
  • Refined CLI flags and output to ease migration from v3
  • Full support for existing apiVersion: v2 charts
Deprecations
  • Legacy plugin model deprecated in favor of the new WASM‑based system

How have the core components evolved in Helm 4.0?

Plugin System Overhaul

The plugin architecture now runs WebAssembly modules, giving developers language‑agnostic extensions. This matters because plugins can be sandboxed and distributed as tiny binaries.

Post‑Renderers as First‑Class Plugins

Post‑renderers are no longer a special case; they are loaded through the same plugin loader. In practice, this simplifies custom manifest transformations and aligns them with other extensions.

Server‑Side Apply Integration

Helm can now delegate object reconciliation to the Kubernetes server‑side apply engine. This reduces client‑side diff complexity and leverages native field‑management semantics.

Enhanced Resource Watching

Waiting for resources now uses kstatus to interpret conditions more accurately. Users see faster, more reliable rollout checks.

Local Content‑Based Caching

Charts are cached based on their content hash, cutting down repeated downloads and improving CI/CD speed.

Slog‑Based Logging

The logging layer switched to Go’s slog, allowing seamless integration with modern observability stacks.

Reproducible Chart Archives

Chart packaging now produces deterministic archives, which helps with verification and supply‑chain security.

SDK API Expansion

The Helm SDK now supports multiple chart API versions, preparing the ecosystem for the upcoming experimental v3 chart format.

FAQ

Can existing Helm v3 charts be used without modification?
Yes. Charts with apiVersion: v2 install, upgrade, and render unchanged. Only features that depend on server‑side apply or new plugins need explicit opt‑in.

How do I write a WebAssembly plugin for Helm 4?
Compile your code to a WASM binary, place it in $HELM_PLUGIN_DIR, and expose the required entry points as defined in the Helm plugin spec. The runtime loads the module securely.

What changes are required for CI pipelines that use helm template?
The command still exists, but flag names have been tidied. Updating scripts to the new flag set and ensuring the CI runner has a Helm 4 binary are the only steps.

Is server‑side apply enabled by default?
No. You must enable it with the --server-side-apply flag on install/upgrade. This avoids unexpected behavior for users who rely on client‑side diff.

How does the new caching mechanism affect chart versioning?
Caching is keyed on the chart’s content hash, not the version string. Identical content across versions will hit the cache, while any change forces a fresh download.

Releases In Branch 4.0

VersionRelease date
4.0.514 Jan 2026
(3 months ago)
4.0.012 Nov 2025
(5 months ago)