# Argo Workflows changelog > A container-native workflow engine for orchestrating parallel jobs on Kubernetes. - Vendor: Argo Project - Category: Developer Tools - Official site: https://argo-workflows.readthedocs.io - Tracked by: What's New (https://whatsnew.fyi/product/argo-workflows) - Harvested from: GitHub (argoproj/argo-workflows) - Entries below: 10 (newest first) What's New is an index, not a publisher: every entry below links to the vendor's own release notes, which are the authoritative source. Entries are labelled where they are hand-curated sample data, pre-releases, or drawn from a secondary source such as a developer blog. Reuse: the summaries, labels and curation here are © What's New. Quote freely with attribution and a link back; wholesale republication of the corpus is not permitted — terms: https://whatsnew.fyi/terms. The vendors' own release notes remain their publishers'. ## Releases ### v4.1.0-rc2 - Date: 2026-07-31 - Version: v4.1.0-rc2 - Original notes: https://github.com/argoproj/argo-workflows/releases/tag/v4.1.0-rc2 - Permalink: https://whatsnew.fyi/product/argo-workflows/releases/v4.1.0-rc2 - Labels: Pre-release #### Quick Start ##### What's New? Find out on [our blog](https://blog.argoproj.io) and [changelog](https://github.com/argoproj/argo-workflows/blob/main/CHANGELOG.md). ##### Breaking Changes and Known Issues Check the [upgrading guide](https://argo-workflows.readthedocs.io/en/latest/upgrading/) and search for [existing issues on GitHub](https://github.com/argoproj/argo-workflows/issues). ##### Installation ###### CLI ###### Mac / Linux Available via `curl` ```bash #### Detect OS ARGO_OS="darwin" if [[ "$(uname -s)" != "Darwin" ]]; then ARGO_OS="linux" fi #### Download the binary curl -sLO "https://github.com/argoproj/argo-workflows/releases/download/v4.1.0-rc2/argo-$ARGO_OS-amd64.gz" #### Unzip gunzip "argo-$ARGO_OS-amd64.gz" #### Make binary executable chmod +x "argo-$ARGO_OS-amd64" #### Move binary to path mv "./argo-$ARGO_OS-amd64" /usr/local/bin/argo #### Test installation argo version ``` ###### Controller and Server ```bash kubectl create namespace argo kubectl apply -n argo -f https://github.com/argoproj/argo-workflows/releases/download/v4.1.0-rc2/install.yaml ``` ### v4.1.0-rc1 - Date: 2026-07-23 - Version: v4.1.0-rc1 - Original notes: https://github.com/argoproj/argo-workflows/releases/tag/v4.1.0-rc1 - Permalink: https://whatsnew.fyi/product/argo-workflows/releases/v4.1.0-rc1 - Labels: Pre-release #### Quick Start ##### What's New? Find out on [our blog](https://blog.argoproj.io) and [changelog](https://github.com/argoproj/argo-workflows/blob/main/CHANGELOG.md). ##### Breaking Changes and Known Issues Check the [upgrading guide](https://argo-workflows.readthedocs.io/en/latest/upgrading/) and search for [existing issues on GitHub](https://github.com/argoproj/argo-workflows/issues). ##### Installation ###### CLI ###### Mac / Linux Available via `curl` ```bash #### Detect OS ARGO_OS="darwin" if [[ "$(uname -s)" != "Darwin" ]]; then ARGO_OS="linux" fi #### Download the binary curl -sLO "https://github.com/argoproj/argo-workflows/releases/download/v4.1.0-rc1/argo-$ARGO_OS-amd64.gz" #### Unzip gunzip "argo-$ARGO_OS-amd64.gz" #### Make binary executable chmod +x "argo-$ARGO_OS-amd64" #### Move binary to path mv "./argo-$ARGO_OS-amd64" /usr/local/bin/argo #### Test installation argo version ``` ###### Controller and Server ```bash kubectl create namespace argo kubectl apply -n argo -f https://github.com/argoproj/argo-workflows/releases/download/v4.1.0-rc1/install.yaml ``` ### v3.7.17 - Date: 2026-07-22 - Version: v3.7.17 - Original notes: https://github.com/argoproj/argo-workflows/releases/tag/v3.7.17 - Permalink: https://whatsnew.fyi/product/argo-workflows/releases/v3.7.17 #### Quick Start ##### What's New? Find out on [our blog](https://blog.argoproj.io) and [changelog](https://github.com/argoproj/argo-workflows/blob/main/CHANGELOG.md). ##### Breaking Changes and Known Issues Check the [upgrading guide](https://argo-workflows.readthedocs.io/en/latest/upgrading/) and search for [existing issues on GitHub](https://github.com/argoproj/argo-workflows/issues). ##### Installation ###### CLI ###### Mac / Linux Available via `curl` ```bash #### Detect OS ARGO_OS="darwin" if [[ "$(uname -s)" != "Darwin" ]]; then ARGO_OS="linux" fi #### Download the binary curl -sLO "https://github.com/argoproj/argo-workflows/releases/download/v3.7.17/argo-$ARGO_OS-amd64.gz" #### Unzip gunzip "argo-$ARGO_OS-amd64.gz" #### Make binary executable chmod +x "argo-$ARGO_OS-amd64" #### Move binary to path mv "./argo-$ARGO_OS-amd64" /usr/local/bin/argo #### Test installation argo version ``` ###### Controller and Server ```bash kubectl create namespace argo kubectl apply -n argo -f https://github.com/argoproj/argo-workflows/releases/download/v3.7.17/install.yaml ``` ### v4.0.8 - Date: 2026-07-22 - Version: v4.0.8 - Original notes: https://github.com/argoproj/argo-workflows/releases/tag/v4.0.8 - Permalink: https://whatsnew.fyi/product/argo-workflows/releases/v4.0.8 #### Quick Start ##### What's New? Find out on [our blog](https://blog.argoproj.io) and [changelog](https://github.com/argoproj/argo-workflows/blob/main/CHANGELOG.md). ##### Breaking Changes and Known Issues Check the [upgrading guide](https://argo-workflows.readthedocs.io/en/latest/upgrading/) and search for [existing issues on GitHub](https://github.com/argoproj/argo-workflows/issues). ##### Installation ###### CLI ###### Mac / Linux Available via `curl` ```bash #### Detect OS ARGO_OS="darwin" if [[ "$(uname -s)" != "Darwin" ]]; then ARGO_OS="linux" fi #### Download the binary curl -sLO "https://github.com/argoproj/argo-workflows/releases/download/v4.0.8/argo-$ARGO_OS-amd64.gz" #### Unzip gunzip "argo-$ARGO_OS-amd64.gz" #### Make binary executable chmod +x "argo-$ARGO_OS-amd64" #### Move binary to path mv "./argo-$ARGO_OS-amd64" /usr/local/bin/argo #### Test installation argo version ``` ###### Controller and Server ```bash kubectl create namespace argo kubectl apply -n argo -f https://github.com/argoproj/argo-workflows/releases/download/v4.0.8/install.yaml ``` ### v4.0.7 - Date: 2026-07-07 - Version: v4.0.7 - Original notes: https://github.com/argoproj/argo-workflows/releases/tag/v4.0.7 - Permalink: https://whatsnew.fyi/product/argo-workflows/releases/v4.0.7 #### Quick Start ##### What's New? Find out on [our blog](https://blog.argoproj.io) and [changelog](https://github.com/argoproj/argo-workflows/blob/main/CHANGELOG.md). ##### Breaking Changes and Known Issues Check the [upgrading guide](https://argo-workflows.readthedocs.io/en/latest/upgrading/) and search for [existing issues on GitHub](https://github.com/argoproj/argo-workflows/issues). ##### Installation ###### CLI ###### Mac / Linux Available via `curl` ```bash #### Detect OS ARGO_OS="darwin" if [[ "$(uname -s)" != "Darwin" ]]; then ARGO_OS="linux" fi #### Download the binary curl -sLO "https://github.com/argoproj/argo-workflows/releases/download/v4.0.7/argo-$ARGO_OS-amd64.gz" #### Unzip gunzip "argo-$ARGO_OS-amd64.gz" #### Make binary executable chmod +x "argo-$ARGO_OS-amd64" #### Move binary to path mv "./argo-$ARGO_OS-amd64" /usr/local/bin/argo #### Test installation argo version ``` ###### Controller and Server ```bash kubectl create namespace argo kubectl apply -n argo -f https://github.com/argoproj/argo-workflows/releases/download/v4.0.7/install.yaml ``` ### v3.7.16 - Date: 2026-07-07 - Version: v3.7.16 - Original notes: https://github.com/argoproj/argo-workflows/releases/tag/v3.7.16 - Permalink: https://whatsnew.fyi/product/argo-workflows/releases/v3.7.16 #### Quick Start ##### What's New? Find out on [our blog](https://blog.argoproj.io) and [changelog](https://github.com/argoproj/argo-workflows/blob/main/CHANGELOG.md). ##### Breaking Changes and Known Issues Check the [upgrading guide](https://argo-workflows.readthedocs.io/en/latest/upgrading/) and search for [existing issues on GitHub](https://github.com/argoproj/argo-workflows/issues). ##### Installation ###### CLI ###### Mac / Linux Available via `curl` ```bash #### Detect OS ARGO_OS="darwin" if [[ "$(uname -s)" != "Darwin" ]]; then ARGO_OS="linux" fi #### Download the binary curl -sLO "https://github.com/argoproj/argo-workflows/releases/download/v3.7.16/argo-$ARGO_OS-amd64.gz" #### Unzip gunzip "argo-$ARGO_OS-amd64.gz" #### Make binary executable chmod +x "argo-$ARGO_OS-amd64" #### Move binary to path mv "./argo-$ARGO_OS-amd64" /usr/local/bin/argo #### Test installation argo version ``` ###### Controller and Server ```bash kubectl create namespace argo kubectl apply -n argo -f https://github.com/argoproj/argo-workflows/releases/download/v3.7.16/install.yaml ``` ### v4.0.6 - Date: 2026-06-10 - Version: v4.0.6 - Original notes: https://github.com/argoproj/argo-workflows/releases/tag/v4.0.6 - Permalink: https://whatsnew.fyi/product/argo-workflows/releases/v4.0.6 #### Quick Start ##### What's New? Find out on [our blog](https://blog.argoproj.io) and [changelog](https://github.com/argoproj/argo-workflows/blob/main/CHANGELOG.md). ##### Breaking Changes and Known Issues Check the [upgrading guide](https://argo-workflows.readthedocs.io/en/latest/upgrading/) and search for [existing issues on GitHub](https://github.com/argoproj/argo-workflows/issues). ##### Installation ###### CLI ###### Mac / Linux Available via `curl` ```bash #### Detect OS ARGO_OS="darwin" if [[ "$(uname -s)" != "Darwin" ]]; then ARGO_OS="linux" fi #### Download the binary curl -sLO "https://github.com/argoproj/argo-workflows/releases/download/v4.0.6/argo-$ARGO_OS-amd64.gz" #### Unzip gunzip "argo-$ARGO_OS-amd64.gz" #### Make binary executable chmod +x "argo-$ARGO_OS-amd64" #### Move binary to path mv "./argo-$ARGO_OS-amd64" /usr/local/bin/argo #### Test installation argo version ``` ###### Controller and Server ```bash kubectl create namespace argo kubectl apply -n argo -f https://github.com/argoproj/argo-workflows/releases/download/v4.0.6/install.yaml ``` ### v3.7.15 - Date: 2026-06-10 - Version: v3.7.15 - Original notes: https://github.com/argoproj/argo-workflows/releases/tag/v3.7.15 - Permalink: https://whatsnew.fyi/product/argo-workflows/releases/v3.7.15 #### Quick Start ##### What's New? Find out on [our blog](https://blog.argoproj.io) and [changelog](https://github.com/argoproj/argo-workflows/blob/main/CHANGELOG.md). ##### Breaking Changes and Known Issues Check the [upgrading guide](https://argo-workflows.readthedocs.io/en/latest/upgrading/) and search for [existing issues on GitHub](https://github.com/argoproj/argo-workflows/issues). ##### Installation ###### CLI ###### Mac / Linux Available via `curl` ```bash #### Detect OS ARGO_OS="darwin" if [[ "$(uname -s)" != "Darwin" ]]; then ARGO_OS="linux" fi #### Download the binary curl -sLO "https://github.com/argoproj/argo-workflows/releases/download/v3.7.15/argo-$ARGO_OS-amd64.gz" #### Unzip gunzip "argo-$ARGO_OS-amd64.gz" #### Make binary executable chmod +x "argo-$ARGO_OS-amd64" #### Move binary to path mv "./argo-$ARGO_OS-amd64" /usr/local/bin/argo #### Test installation argo version ``` ###### Controller and Server ```bash kubectl create namespace argo kubectl apply -n argo -f https://github.com/argoproj/argo-workflows/releases/download/v3.7.15/install.yaml ``` ### v3.7.14 - Date: 2026-04-23 - Version: v3.7.14 - Original notes: https://github.com/argoproj/argo-workflows/releases/tag/v3.7.14 - Permalink: https://whatsnew.fyi/product/argo-workflows/releases/v3.7.14 #### Quick Start ##### What's New? Find out on [our blog](https://blog.argoproj.io) and [changelog](https://github.com/argoproj/argo-workflows/blob/main/CHANGELOG.md). ##### Breaking Changes and Known Issues Check the [upgrading guide](https://argo-workflows.readthedocs.io/en/latest/upgrading/) and search for [existing issues on GitHub](https://github.com/argoproj/argo-workflows/issues). ##### Installation ###### CLI ###### Mac / Linux Available via `curl` ```bash #### Detect OS ARGO_OS="darwin" if [[ "$(uname -s)" != "Darwin" ]]; then ARGO_OS="linux" fi #### Download the binary curl -sLO "https://github.com/argoproj/argo-workflows/releases/download/v3.7.14/argo-$ARGO_OS-amd64.gz" #### Unzip gunzip "argo-$ARGO_OS-amd64.gz" #### Make binary executable chmod +x "argo-$ARGO_OS-amd64" #### Move binary to path mv "./argo-$ARGO_OS-amd64" /usr/local/bin/argo #### Test installation argo version ``` ###### Controller and Server ```bash kubectl create namespace argo kubectl apply -n argo -f https://github.com/argoproj/argo-workflows/releases/download/v3.7.14/install.yaml ``` ### v4.0.5 - Date: 2026-04-23 - Version: v4.0.5 - Original notes: https://github.com/argoproj/argo-workflows/releases/tag/v4.0.5 - Permalink: https://whatsnew.fyi/product/argo-workflows/releases/v4.0.5 #### Quick Start ##### What's New? Find out on [our blog](https://blog.argoproj.io) and [changelog](https://github.com/argoproj/argo-workflows/blob/main/CHANGELOG.md). ##### Breaking Changes and Known Issues Check the [upgrading guide](https://argo-workflows.readthedocs.io/en/latest/upgrading/) and search for [existing issues on GitHub](https://github.com/argoproj/argo-workflows/issues). ##### Installation ###### CLI ###### Mac / Linux Available via `curl` ```bash #### Detect OS ARGO_OS="darwin" if [[ "$(uname -s)" != "Darwin" ]]; then ARGO_OS="linux" fi #### Download the binary curl -sLO "https://github.com/argoproj/argo-workflows/releases/download/v4.0.5/argo-$ARGO_OS-amd64.gz" #### Unzip gunzip "argo-$ARGO_OS-amd64.gz" #### Make binary executable chmod +x "argo-$ARGO_OS-amd64" #### Move binary to path mv "./argo-$ARGO_OS-amd64" /usr/local/bin/argo #### Test installation argo version ``` ###### Controller and Server ```bash kubectl create namespace argo kubectl apply -n argo -f https://github.com/argoproj/argo-workflows/releases/download/v4.0.5/install.yaml ```