Skip to content

chore(deps): bump the go_modules group across 2 directories with 4 updates#9

Open
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/go_modules/go_modules-9e10f93325
Open

chore(deps): bump the go_modules group across 2 directories with 4 updates#9
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/go_modules/go_modules-9e10f93325

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Feb 19, 2026

Bumps the go_modules group with 2 updates in the / directory: github.com/argoproj/argo-workflows/v3 and filippo.io/edwards25519.
Bumps the go_modules group with 1 update in the /test/tools/project-cleaner directory: golang.org/x/crypto.

Updates github.com/argoproj/argo-workflows/v3 from 3.6.7 to 3.6.17

Release notes

Sourced from github.com/argoproj/argo-workflows/v3's releases.

v3.6.17

Quick Start

What's New?

Find out on our blog and changelog.

Breaking Changes and Known Issues

Check the upgrading guide and search for existing issues on GitHub.

Installation

CLI

Mac / Linux

Available via curl

# 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.6.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

kubectl create namespace argo
kubectl apply -n argo -f https://github.com/argoproj/argo-workflows/releases/download/v3.6.17/install.yaml

v3.6.16

... (truncated)

Changelog

Sourced from github.com/argoproj/argo-workflows/v3's changelog.

v3.6.17 (2026-01-21)

Full Changelog: v3.6.16...v3.6.17

Selected Changes

  • Alan Clucas
  • Benjamin Scott Pruett
  • Eduardo Rodrigues
  • Mason Malone

v3.6.16 (2026-01-08)

Full Changelog: v3.6.15...v3.6.16

Selected Changes

  • Alan Clucas
  • Isitha Subasinghe
  • Jack Cui
  • jiazhen.liu
  • jswxstw
  • Lars F. Karlström
  • Mason Malone
  • oninowang
  • shuangkun tian

v3.6.15 (2025-12-09)

Full Changelog: v3.6.14...v3.6.15

... (truncated)

Commits
  • 0b991b4 fix: workflow controller to detect stale workflows (cherry-pick #15090 for 3....
  • ec96c1b fix(security): stored XSS in artifact directory listings (cherry-pick #15255 ...
  • 3d75205 fix: Optimize DAG sort for retry (cherry-pick #15241 for 3.6) (#15248)
  • 1c2f347 fix: dedupe realtime metrics and handle delete tombstone (cherry-pick #15216 ...
  • 40c52bc fix: remove pod finalizer in abnormal scenarios (cherry-pick #15164 for 3.6) ...
  • 91c1c21 fix: Avoid resetting resourceVersion for watch. Fixes #15106 (cherry-pick #15...
  • bc0779b fix: type-aware application of template defaults (#14899) (cherry-pick #15144...
  • 158b47b fix: upgrade expr to bring in bugfix. Fixes #15093 (cherry-pick #15168 for 3....
  • 2cbf69b ci: disable flaky test (cherry-pick #14507 for 3.6) (#15184)
  • 116b224 docs: update OSS garbage collection status to Yes (cherry-pick #15159 for 3.6...
  • Additional commits viewable in compare view

Updates filippo.io/edwards25519 from 1.1.0 to 1.1.1

Commits

Updates github.com/expr-lang/expr from 1.17.0 to 1.17.7

Release notes

Sourced from github.com/expr-lang/expr's releases.

v1.17.7

Expr is a Go-centric expression language designed to deliver dynamic configurations with unparalleled accuracy, safety, and speed.

program, err := expr.Compile(`let foo = bar(); baz(foo, foo)`)

This release brings new language features, performance improvements across runtime and compiler, better error handling, and many important bug fixes.

New Features

Support for else if expressions

  • You can now chain conditional branches using else if! (#879)

Unicode escapes in the \u{XXXXXX} format

  • String literals now support Unicode code point escapes such as \u{1F600}. (#882)

Byte slice support in the matches operator

The matches operator now works with []byte, improving interoperability with binary data. (#876)

Short-circuit control options

New options allow enabling or disabling short-circuiting behavior in the compiler and VM. (#847)

Option to disable if operator

A separate DisableIfOperator option is now available. (#881)

Performance Improvements

Runtime structure fetch improvements

Accessing struct fields at runtime is now faster. (#833)

VM function call optimizations

Function calls inside the VM execute more efficiently. (#832)

Type system performance boost

Large or complex type operations now run significantly faster. (#824)

Bug Fixes

  • Guard negative forward jump offsets (#861).

... (truncated)

Commits
  • d472286 Improve gen.go
  • 713a26a Add support for Unicode escape sequences in the \u{XXXXXX} format (#882)
  • 6ed72a2 Add DisableIfOperator option (#881)
  • 4d38449 chore: test and build on Go 1.25 (#880)
  • 087698e Add error handling for invalid if condition and test for crash with null byte
  • 738da0b Remove ExampleDisableShortCircuit test function
  • eb73788 Add else if support (#879)
  • cf53913 Improve the performance of runtime.Fetch for structures (#833)
  • e5ee6c2 Rename DisableSC to ShortCircuit for better clarity and consistency
  • 1973835 feat: add disable short-circuiting option to compiler (#847)
  • Additional commits viewable in compare view

Updates golang.org/x/crypto from 0.38.0 to 0.45.0

Commits
  • 4e0068c go.mod: update golang.org/x dependencies
  • e79546e ssh: curb GSSAPI DoS risk by limiting number of specified OIDs
  • f91f7a7 ssh/agent: prevent panic on malformed constraint
  • 2df4153 acme/autocert: let automatic renewal work with short lifetime certs
  • bcf6a84 acme: pass context to request
  • b4f2b62 ssh: fix error message on unsupported cipher
  • 79ec3a5 ssh: allow to bind to a hostname in remote forwarding
  • 122a78f go.mod: update golang.org/x dependencies
  • c0531f9 all: eliminate vet diagnostics
  • 0997000 all: fix some comments
  • Additional commits viewable in compare view

Updates golang.org/x/crypto from 0.36.0 to 0.45.0

Commits
  • 4e0068c go.mod: update golang.org/x dependencies
  • e79546e ssh: curb GSSAPI DoS risk by limiting number of specified OIDs
  • f91f7a7 ssh/agent: prevent panic on malformed constraint
  • 2df4153 acme/autocert: let automatic renewal work with short lifetime certs
  • bcf6a84 acme: pass context to request
  • b4f2b62 ssh: fix error message on unsupported cipher
  • 79ec3a5 ssh: allow to bind to a hostname in remote forwarding
  • 122a78f go.mod: update golang.org/x dependencies
  • c0531f9 all: eliminate vet diagnostics
  • 0997000 all: fix some comments
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions
    You can disable automated security fix PRs for this repo from the Security Alerts page.

…dates

Bumps the go_modules group with 2 updates in the / directory: [github.com/argoproj/argo-workflows/v3](https://github.com/argoproj/argo-workflows) and [filippo.io/edwards25519](https://github.com/FiloSottile/edwards25519).
Bumps the go_modules group with 1 update in the /test/tools/project-cleaner directory: [golang.org/x/crypto](https://github.com/golang/crypto).


Updates `github.com/argoproj/argo-workflows/v3` from 3.6.7 to 3.6.17
- [Release notes](https://github.com/argoproj/argo-workflows/releases)
- [Changelog](https://github.com/argoproj/argo-workflows/blob/main/CHANGELOG.md)
- [Commits](argoproj/argo-workflows@v3.6.7...v3.6.17)

Updates `filippo.io/edwards25519` from 1.1.0 to 1.1.1
- [Commits](FiloSottile/edwards25519@v1.1.0...v1.1.1)

Updates `github.com/expr-lang/expr` from 1.17.0 to 1.17.7
- [Release notes](https://github.com/expr-lang/expr/releases)
- [Commits](expr-lang/expr@v1.17.0...v1.17.7)

Updates `golang.org/x/crypto` from 0.38.0 to 0.45.0
- [Commits](golang/crypto@v0.36.0...v0.45.0)

Updates `golang.org/x/crypto` from 0.36.0 to 0.45.0
- [Commits](golang/crypto@v0.36.0...v0.45.0)

---
updated-dependencies:
- dependency-name: github.com/argoproj/argo-workflows/v3
  dependency-version: 3.6.17
  dependency-type: direct:production
  dependency-group: go_modules
- dependency-name: filippo.io/edwards25519
  dependency-version: 1.1.1
  dependency-type: indirect
  dependency-group: go_modules
- dependency-name: github.com/expr-lang/expr
  dependency-version: 1.17.7
  dependency-type: indirect
  dependency-group: go_modules
- dependency-name: golang.org/x/crypto
  dependency-version: 0.45.0
  dependency-type: indirect
  dependency-group: go_modules
- dependency-name: golang.org/x/crypto
  dependency-version: 0.45.0
  dependency-type: indirect
  dependency-group: go_modules
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update go code labels Feb 19, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file go Pull requests that update go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants