chore(deps): update all non-major dependencies #8

Open
renovate wants to merge 1 commits from renovate/all-minor-patch into main
Member

This PR contains the following updates:

Package Type Update Change
quay.io/argoproj/argocd final patch v2.14.7 -> v2.14.8
sops minor v3.9.4 -> v3.10.1
vals minor v0.39.4 -> v0.40.1

Release Notes

argoproj/argo-cd (quay.io/argoproj/argocd)

v2.14.8

Compare Source

Quick Start

Non-HA:
kubectl create namespace argocd
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/v2.14.8/manifests/install.yaml
HA:
kubectl create namespace argocd
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/v2.14.8/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.

Upgrading

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

Changelog

Bug fixes
Dependency updates
Other work

Full Changelog: https://github.com/argoproj/argo-cd/compare/v2.14.7...v2.14.8

getsops/sops (sops)

v3.10.1

Compare Source

Installation

To install sops, download one of the pre-built binaries provided for your platform from the artifacts attached to this release.

For instance, if you are using Linux on an AMD64 architecture:


### Download the binary
curl -LO https://github.com/getsops/sops/releases/download/v3.10.1/sops-v3.10.1.linux.amd64

### Move the binary in to your PATH
mv sops-v3.10.1.linux.amd64 /usr/local/bin/sops

### Make the binary executable
chmod +x /usr/local/bin/sops
Verify checksums file signature

The checksums file provided within the artifacts attached to this release is signed using Cosign with GitHub OIDC. To validate the signature of this file, run the following commands:


### Download the checksums file, certificate and signature
curl -LO https://github.com/getsops/sops/releases/download/v3.10.1/sops-v3.10.1.checksums.txt
curl -LO https://github.com/getsops/sops/releases/download/v3.10.1/sops-v3.10.1.checksums.pem
curl -LO https://github.com/getsops/sops/releases/download/v3.10.1/sops-v3.10.1.checksums.sig

### Verify the checksums file
cosign verify-blob sops-v3.10.1.checksums.txt \
  --certificate sops-v3.10.1.checksums.pem \
  --signature sops-v3.10.1.checksums.sig \
  --certificate-identity-regexp=https://github.com/getsops \
  --certificate-oidc-issuer=https://token.actions.githubusercontent.com
Verify binary integrity

To verify the integrity of the downloaded binary, you can utilize the checksums file after having validated its signature:


### Verify the binary using the checksums file
sha256sum -c sops-v3.10.1.checksums.txt --ignore-missing
Verify artifact provenance

The SLSA provenance of the binaries, packages, and SBOMs can be found within the artifacts associated with this release. It is presented through an in-toto link metadata file named sops-v3.10.1.intoto.jsonl. To verify the provenance of an artifact, you can utilize the slsa-verifier tool:


### Download the metadata file
curl -LO  https://github.com/getsops/sops/releases/download/v3.10.1/sops-v3.10.1.intoto.jsonl

### Verify the provenance of the artifact
slsa-verifier verify-artifact <artifact> \
  --provenance-path sops-v3.10.1.intoto.jsonl \
  --source-uri github.com/getsops/sops \
  --source-tag v3.10.1

Container Images

The sops binaries are also available as container images, based on Debian (slim) and Alpine Linux. The Debian-based container images include any dependencies which may be required to make use of certain key services, such as GnuPG, AWS KMS, Azure Key Vault, and Google Cloud KMS. The Alpine-based container images are smaller in size, but do not include these dependencies.

These container images are available for the following architectures: linux/amd64 and linux/arm64.

GitHub Container Registry
  • ghcr.io/getsops/sops:v3.10.1
  • ghcr.io/getsops/sops:v3.10.1-alpine
Quay.io
  • quay.io/getsops/sops:v3.10.1
  • quay.io/getsops/sops:v3.10.1-alpine
Verify container image signature

The container images are signed using Cosign with GitHub OIDC. To validate the signature of an image, run the following command:

cosign verify ghcr.io/getsops/sops:v3.10.1 \
  --certificate-identity-regexp=https://github.com/getsops \
  --certificate-oidc-issuer=https://token.actions.githubusercontent.com \
  -o text
Verify container image provenance

The container images include SLSA provenance attestations. For more information around the verification of this, please refer to the slsa-verifier documentation.

Software Bill of Materials

The Software Bill of Materials (SBOM) for each binary is accessible within the artifacts enclosed with this release. It is presented as an SPDX JSON file, formatted as <binary>.spdx.sbom.json.

What's Changed

Full Changelog: https://github.com/getsops/sops/compare/v3.10.0...v3.10.1

v3.10.0

Compare Source

Installation

To install sops, download one of the pre-built binaries provided for your platform from the artifacts attached to this release.

For instance, if you are using Linux on an AMD64 architecture:


### Download the binary
curl -LO https://github.com/getsops/sops/releases/download/v3.10.0/sops-v3.10.0.linux.amd64

### Move the binary in to your PATH
mv sops-v3.10.0.linux.amd64 /usr/local/bin/sops

### Make the binary executable
chmod +x /usr/local/bin/sops
Verify checksums file signature

The checksums file provided within the artifacts attached to this release is signed using Cosign with GitHub OIDC. To validate the signature of this file, run the following commands:


### Download the checksums file, certificate and signature
curl -LO https://github.com/getsops/sops/releases/download/v3.10.0/sops-v3.10.0.checksums.txt
curl -LO https://github.com/getsops/sops/releases/download/v3.10.0/sops-v3.10.0.checksums.pem
curl -LO https://github.com/getsops/sops/releases/download/v3.10.0/sops-v3.10.0.checksums.sig

### Verify the checksums file
cosign verify-blob sops-v3.10.0.checksums.txt \
  --certificate sops-v3.10.0.checksums.pem \
  --signature sops-v3.10.0.checksums.sig \
  --certificate-identity-regexp=https://github.com/getsops \
  --certificate-oidc-issuer=https://token.actions.githubusercontent.com
Verify binary integrity

To verify the integrity of the downloaded binary, you can utilize the checksums file after having validated its signature:


### Verify the binary using the checksums file
sha256sum -c sops-v3.10.0.checksums.txt --ignore-missing
Verify artifact provenance

The SLSA provenance of the binaries, packages, and SBOMs can be found within the artifacts associated with this release. It is presented through an in-toto link metadata file named sops-v3.10.0.intoto.jsonl. To verify the provenance of an artifact, you can utilize the slsa-verifier tool:


### Download the metadata file
curl -LO  https://github.com/getsops/sops/releases/download/v3.10.0/sops-v3.10.0.intoto.jsonl

### Verify the provenance of the artifact
slsa-verifier verify-artifact <artifact> \
  --provenance-path sops-v3.10.0.intoto.jsonl \
  --source-uri github.com/getsops/sops \
  --source-tag v3.10.0

Container Images

The sops binaries are also available as container images, based on Debian (slim) and Alpine Linux. The Debian-based container images include any dependencies which may be required to make use of certain key services, such as GnuPG, AWS KMS, Azure Key Vault, and Google Cloud KMS. The Alpine-based container images are smaller in size, but do not include these dependencies.

These container images are available for the following architectures: linux/amd64 and linux/arm64.

GitHub Container Registry
  • ghcr.io/getsops/sops:v3.10.0
  • ghcr.io/getsops/sops:v3.10.0-alpine
Quay.io
  • quay.io/getsops/sops:v3.10.0
  • quay.io/getsops/sops:v3.10.0-alpine
Verify container image signature

The container images are signed using Cosign with GitHub OIDC. To validate the signature of an image, run the following command:

cosign verify ghcr.io/getsops/sops:v3.10.0 \
  --certificate-identity-regexp=https://github.com/getsops \
  --certificate-oidc-issuer=https://token.actions.githubusercontent.com \
  -o text
Verify container image provenance

The container images include SLSA provenance attestations. For more information around the verification of this, please refer to the slsa-verifier documentation.

Software Bill of Materials

The Software Bill of Materials (SBOM) for each binary is accessible within the artifacts enclosed with this release. It is presented as an SPDX JSON file, formatted as <binary>.spdx.sbom.json.

What's Changed

New Contributors

Full Changelog: https://github.com/getsops/sops/compare/v3.9.4...v3.10.0

helmfile/vals (vals)

v0.40.1

Compare Source

What's Changed

Full Changelog: https://github.com/helmfile/vals/compare/v0.40.0...v0.40.1

v0.40.0

Compare Source

What's Changed

Full Changelog: https://github.com/helmfile/vals/compare/v0.39.4...v0.40.0


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [quay.io/argoproj/argocd](https://github.com/argoproj/argo-cd) | final | patch | `v2.14.7` -> `v2.14.8` | | [sops](https://github.com/getsops/sops) | | minor | `v3.9.4` -> `v3.10.1` | | [vals](https://github.com/helmfile/vals) | | minor | `v0.39.4` -> `v0.40.1` | --- ### Release Notes <details> <summary>argoproj/argo-cd (quay.io/argoproj/argocd)</summary> ### [`v2.14.8`](https://github.com/argoproj/argo-cd/releases/tag/v2.14.8) [Compare Source](https://github.com/argoproj/argo-cd/compare/v2.14.7...v2.14.8) #### Quick Start ##### Non-HA: ```shell kubectl create namespace argocd kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/v2.14.8/manifests/install.yaml ``` ##### HA: ```shell kubectl create namespace argocd kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/v2.14.8/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](https://argo-cd.readthedocs.io/en/stable/operator-manual/signed-release-assets) on how to verify. #### Upgrading If upgrading from a different minor version, be sure to read the [upgrading](https://argo-cd.readthedocs.io/en/stable/operator-manual/upgrading/overview/) documentation. #### Changelog ##### Bug fixes - [`9a9e62d`](https://github.com/argoproj/argo-cd/commit/9a9e62d392cd81928b163db6b65c00d09c4c4c6c): fix(server): fully populate app destination before project checks ([#&#8203;22408](https://github.com/argoproj/argo-cd/issues/22408)) ([#&#8203;22426](https://github.com/argoproj/argo-cd/issues/22426)) ([@&#8203;crenshaw-dev](https://github.com/crenshaw-dev)) - [`7acdaa9`](https://github.com/argoproj/argo-cd/commit/7acdaa96e04ab9a49a5754c66a9ae3d9d40d1e37): fix: CVE-2025-26791 upgrading redoc dep to 2.4.0 to avoid DOMPurify b… ([#&#8203;21997](https://github.com/argoproj/argo-cd/issues/21997)) ([@&#8203;nmirasch](https://github.com/nmirasch)) - [`872319e`](https://github.com/argoproj/argo-cd/commit/872319e8e759cc141d57ea870ba7ef974ab84fd8): fix: handle annotated git tags correctly in repo server cache ([#&#8203;21771](https://github.com/argoproj/argo-cd/issues/21771)) ([#&#8203;22424](https://github.com/argoproj/argo-cd/issues/22424)) ([@&#8203;aali309](https://github.com/aali309)) ##### Dependency updates - [`9f832cd`](https://github.com/argoproj/argo-cd/commit/9f832cd099a2729bf5157282a6fa58423b2dca4d): chore(deps): bump github.com/golang-jwt/jwt to 4.5.2/5.2.2 ([#&#8203;22465](https://github.com/argoproj/argo-cd/issues/22465)) ([@&#8203;crenshaw-dev](https://github.com/crenshaw-dev)) ##### Other work - [`ec45e33`](https://github.com/argoproj/argo-cd/commit/ec45e338006b2be0b52afc9c39c715cde7f7dff6): fix(ui, rbac): project-roles ([#&#8203;21829](https://github.com/argoproj/argo-cd/issues/21829)) (2.14 backport) ([#&#8203;22461](https://github.com/argoproj/argo-cd/issues/22461)) ([@&#8203;blakepettersson](https://github.com/blakepettersson)) **Full Changelog**: https://github.com/argoproj/argo-cd/compare/v2.14.7...v2.14.8 <a href="https://argoproj.github.io/cd/"><img src="https://raw.githubusercontent.com/argoproj/argo-site/master/content/pages/cd/gitops-cd.png" width="25%" ></a> </details> <details> <summary>getsops/sops (sops)</summary> ### [`v3.10.1`](https://github.com/getsops/sops/releases/tag/v3.10.1) [Compare Source](https://github.com/getsops/sops/compare/v3.10.0...v3.10.1) #### Installation To install `sops`, download one of the pre-built binaries provided for your platform from the artifacts attached to this release. For instance, if you are using Linux on an AMD64 architecture: ```shell ### Download the binary curl -LO https://github.com/getsops/sops/releases/download/v3.10.1/sops-v3.10.1.linux.amd64 ### Move the binary in to your PATH mv sops-v3.10.1.linux.amd64 /usr/local/bin/sops ### Make the binary executable chmod +x /usr/local/bin/sops ``` ##### Verify checksums file signature The checksums file provided within the artifacts attached to this release is signed using [Cosign](https://docs.sigstore.dev/cosign/overview/) with GitHub OIDC. To validate the signature of this file, run the following commands: ```shell ### Download the checksums file, certificate and signature curl -LO https://github.com/getsops/sops/releases/download/v3.10.1/sops-v3.10.1.checksums.txt curl -LO https://github.com/getsops/sops/releases/download/v3.10.1/sops-v3.10.1.checksums.pem curl -LO https://github.com/getsops/sops/releases/download/v3.10.1/sops-v3.10.1.checksums.sig ### Verify the checksums file cosign verify-blob sops-v3.10.1.checksums.txt \ --certificate sops-v3.10.1.checksums.pem \ --signature sops-v3.10.1.checksums.sig \ --certificate-identity-regexp=https://github.com/getsops \ --certificate-oidc-issuer=https://token.actions.githubusercontent.com ``` ##### Verify binary integrity To verify the integrity of the downloaded binary, you can utilize the checksums file after having validated its signature: ```shell ### Verify the binary using the checksums file sha256sum -c sops-v3.10.1.checksums.txt --ignore-missing ``` ##### Verify artifact provenance The [SLSA provenance](https://slsa.dev/provenance/v0.2) of the binaries, packages, and SBOMs can be found within the artifacts associated with this release. It is presented through an [in-toto](https://in-toto.io/) link metadata file named `sops-v3.10.1.intoto.jsonl`. To verify the provenance of an artifact, you can utilize the [`slsa-verifier`](https://github.com/slsa-framework/slsa-verifier#artifacts) tool: ```shell ### Download the metadata file curl -LO https://github.com/getsops/sops/releases/download/v3.10.1/sops-v3.10.1.intoto.jsonl ### Verify the provenance of the artifact slsa-verifier verify-artifact <artifact> \ --provenance-path sops-v3.10.1.intoto.jsonl \ --source-uri github.com/getsops/sops \ --source-tag v3.10.1 ``` #### Container Images The `sops` binaries are also available as container images, based on Debian (slim) and Alpine Linux. The Debian-based container images include any dependencies which may be required to make use of certain key services, such as GnuPG, AWS KMS, Azure Key Vault, and Google Cloud KMS. The Alpine-based container images are smaller in size, but do not include these dependencies. These container images are available for the following architectures: `linux/amd64` and `linux/arm64`. ##### GitHub Container Registry - `ghcr.io/getsops/sops:v3.10.1` - `ghcr.io/getsops/sops:v3.10.1-alpine` ##### Quay.io - `quay.io/getsops/sops:v3.10.1` - `quay.io/getsops/sops:v3.10.1-alpine` ##### Verify container image signature The container images are signed using [Cosign](https://docs.sigstore.dev/cosign/overview/) with GitHub OIDC. To validate the signature of an image, run the following command: ```shell cosign verify ghcr.io/getsops/sops:v3.10.1 \ --certificate-identity-regexp=https://github.com/getsops \ --certificate-oidc-issuer=https://token.actions.githubusercontent.com \ -o text ``` ##### Verify container image provenance The container images include [SLSA provenance](https://slsa.dev/provenance/v0.2) attestations. For more information around the verification of this, please refer to the [`slsa-verifier` documentation](https://github.com/slsa-framework/slsa-verifier#containers). #### Software Bill of Materials The Software Bill of Materials (SBOM) for each binary is accessible within the artifacts enclosed with this release. It is presented as an [SPDX](https://spdx.dev/) JSON file, formatted as `<binary>.spdx.sbom.json`. #### What's Changed - build(deps): Bump the ci group with 2 updates by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1826 - Release 3.10.1 by [@&#8203;felixfontein](https://github.com/felixfontein) in https://github.com/getsops/sops/pull/1827 **Full Changelog**: https://github.com/getsops/sops/compare/v3.10.0...v3.10.1 ### [`v3.10.0`](https://github.com/getsops/sops/releases/tag/v3.10.0) [Compare Source](https://github.com/getsops/sops/compare/v3.9.4...v3.10.0) #### Installation To install `sops`, download one of the pre-built binaries provided for your platform from the artifacts attached to this release. For instance, if you are using Linux on an AMD64 architecture: ```shell ### Download the binary curl -LO https://github.com/getsops/sops/releases/download/v3.10.0/sops-v3.10.0.linux.amd64 ### Move the binary in to your PATH mv sops-v3.10.0.linux.amd64 /usr/local/bin/sops ### Make the binary executable chmod +x /usr/local/bin/sops ``` ##### Verify checksums file signature The checksums file provided within the artifacts attached to this release is signed using [Cosign](https://docs.sigstore.dev/cosign/overview/) with GitHub OIDC. To validate the signature of this file, run the following commands: ```shell ### Download the checksums file, certificate and signature curl -LO https://github.com/getsops/sops/releases/download/v3.10.0/sops-v3.10.0.checksums.txt curl -LO https://github.com/getsops/sops/releases/download/v3.10.0/sops-v3.10.0.checksums.pem curl -LO https://github.com/getsops/sops/releases/download/v3.10.0/sops-v3.10.0.checksums.sig ### Verify the checksums file cosign verify-blob sops-v3.10.0.checksums.txt \ --certificate sops-v3.10.0.checksums.pem \ --signature sops-v3.10.0.checksums.sig \ --certificate-identity-regexp=https://github.com/getsops \ --certificate-oidc-issuer=https://token.actions.githubusercontent.com ``` ##### Verify binary integrity To verify the integrity of the downloaded binary, you can utilize the checksums file after having validated its signature: ```shell ### Verify the binary using the checksums file sha256sum -c sops-v3.10.0.checksums.txt --ignore-missing ``` ##### Verify artifact provenance The [SLSA provenance](https://slsa.dev/provenance/v0.2) of the binaries, packages, and SBOMs can be found within the artifacts associated with this release. It is presented through an [in-toto](https://in-toto.io/) link metadata file named `sops-v3.10.0.intoto.jsonl`. To verify the provenance of an artifact, you can utilize the [`slsa-verifier`](https://github.com/slsa-framework/slsa-verifier#artifacts) tool: ```shell ### Download the metadata file curl -LO https://github.com/getsops/sops/releases/download/v3.10.0/sops-v3.10.0.intoto.jsonl ### Verify the provenance of the artifact slsa-verifier verify-artifact <artifact> \ --provenance-path sops-v3.10.0.intoto.jsonl \ --source-uri github.com/getsops/sops \ --source-tag v3.10.0 ``` #### Container Images The `sops` binaries are also available as container images, based on Debian (slim) and Alpine Linux. The Debian-based container images include any dependencies which may be required to make use of certain key services, such as GnuPG, AWS KMS, Azure Key Vault, and Google Cloud KMS. The Alpine-based container images are smaller in size, but do not include these dependencies. These container images are available for the following architectures: `linux/amd64` and `linux/arm64`. ##### GitHub Container Registry - `ghcr.io/getsops/sops:v3.10.0` - `ghcr.io/getsops/sops:v3.10.0-alpine` ##### Quay.io - `quay.io/getsops/sops:v3.10.0` - `quay.io/getsops/sops:v3.10.0-alpine` ##### Verify container image signature The container images are signed using [Cosign](https://docs.sigstore.dev/cosign/overview/) with GitHub OIDC. To validate the signature of an image, run the following command: ```shell cosign verify ghcr.io/getsops/sops:v3.10.0 \ --certificate-identity-regexp=https://github.com/getsops \ --certificate-oidc-issuer=https://token.actions.githubusercontent.com \ -o text ``` ##### Verify container image provenance The container images include [SLSA provenance](https://slsa.dev/provenance/v0.2) attestations. For more information around the verification of this, please refer to the [`slsa-verifier` documentation](https://github.com/slsa-framework/slsa-verifier#containers). #### Software Bill of Materials The Software Bill of Materials (SBOM) for each binary is accessible within the artifacts enclosed with this release. It is presented as an [SPDX](https://spdx.dev/) JSON file, formatted as `<binary>.spdx.sbom.json`. #### What's Changed - build(deps): Bump alpine from 3.18 to 3.21 in /.release in the docker group across 1 directory by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1700 - Convert changelog to MarkDown by [@&#8203;felixfontein](https://github.com/felixfontein) in https://github.com/getsops/sops/pull/1741 - build(deps): Bump the go group with 7 updates by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1743 - build(deps): Bump the go group with 9 updates by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1745 - build(deps): Bump the rust group in /functional-tests with 2 updates by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1744 - build(deps): Bump github/codeql-action from 3.28.5 to 3.28.8 in the ci group by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1746 - build(deps): Bump the go group with 12 updates by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1751 - build(deps): Bump the ci group with 4 updates by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1750 - Add --input-type option for filestatus subcommand by [@&#8203;felixfontein](https://github.com/felixfontein) in https://github.com/getsops/sops/pull/1601 - Use SOPS_EDITOR before EDITOR by [@&#8203;felixfontein](https://github.com/felixfontein) in https://github.com/getsops/sops/pull/1611 - Allow users to disable version check via environment variable by [@&#8203;nicklasfrahm](https://github.com/nicklasfrahm) in https://github.com/getsops/sops/pull/1684 - add duplicate section support to ini store by [@&#8203;reindlt](https://github.com/reindlt) in https://github.com/getsops/sops/pull/1452 - stores: test for duplicate keys, reserve keyword (yaml only now) by [@&#8203;holiman](https://github.com/holiman) in https://github.com/getsops/sops/pull/1203 - Add same process option for exec-env by [@&#8203;ricmatsui](https://github.com/ricmatsui) in https://github.com/getsops/sops/pull/880 - outputs: add trailing newline at the end of JSON files by [@&#8203;duthils](https://github.com/duthils) in https://github.com/getsops/sops/pull/1476 - set subcommand: add --idempotent flag that will not write the file if no change happened by [@&#8203;felixfontein](https://github.com/felixfontein) in https://github.com/getsops/sops/pull/1754 - Encrypt and decrypt time.Time objects by [@&#8203;felixfontein](https://github.com/felixfontein) in https://github.com/getsops/sops/pull/1759 - build(deps): Bump the go group with 8 updates by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1763 - build(deps): Bump tempfile from 3.16.0 to 3.17.0 in /functional-tests in the rust group by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1762 - build(deps): Bump goreleaser/goreleaser-action from 6.1.0 to 6.2.1 in the ci group by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1761 - fix(docs): typo in README.rst by [@&#8203;Paredev](https://github.com/Paredev) in https://github.com/getsops/sops/pull/1765 - Add SSH support for age by [@&#8203;haoqixu](https://github.com/haoqixu) in https://github.com/getsops/sops/pull/1692 - make sure that tests do not pick keys.txt from user's HOME dir by [@&#8203;tomaszduda23](https://github.com/tomaszduda23) in https://github.com/getsops/sops/pull/1766 - support for age identity with passphrase by [@&#8203;tomaszduda23](https://github.com/tomaszduda23) in https://github.com/getsops/sops/pull/1400 - build(deps): Bump the rust group in /functional-tests with 4 updates by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1768 - build(deps): Bump the go group with 12 updates by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1769 - build(deps): Bump the ci group with 4 updates by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1770 - build(deps): Bump github.com/go-jose/go-jose/v4 from 4.0.4 to 4.0.5 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1773 - feat: add age plugin support by [@&#8203;brianmcgee](https://github.com/brianmcgee) in https://github.com/getsops/sops/pull/1641 - Check GnuPG decryption result for non-empty size by [@&#8203;felixfontein](https://github.com/felixfontein) in https://github.com/getsops/sops/pull/1776 - vendored age code: consolidate passphrase reading functionality by [@&#8203;felixfontein](https://github.com/felixfontein) in https://github.com/getsops/sops/pull/1775 - Allow to encrypt and decrypt from stdin by [@&#8203;felixfontein](https://github.com/felixfontein) in https://github.com/getsops/sops/pull/1690 - build(deps): Bump the go group with 11 updates by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1784 - build(deps): Bump the ci group with 5 updates by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1782 - build(deps): Bump serde_json from 1.0.139 to 1.0.140 in /functional-tests in the rust group; bump Rust to 1.85.0 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1783 - build(deps): Bump the go group with 13 updates by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1797 - build(deps): Bump the rust group in /functional-tests with 3 updates by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1796 - build(deps): Bump github/codeql-action from 3.28.10 to 3.28.11 in the ci group by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1795 - build(deps): Bump the go group with 6 updates by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1802 - build(deps): Bump tempfile from 3.18.0 to 3.19.0 in /functional-tests in the rust group by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1800 - build(deps): Bump docker/login-action from 3.3.0 to 3.4.0 in the ci group by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1801 - build(deps): Bump github.com/golang-jwt/jwt/v5 from 5.2.1 to 5.2.2 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1806 - goreleaser: add windows arm64 by [@&#8203;duthils](https://github.com/duthils) in https://github.com/getsops/sops/pull/1791 - Add a way to set sops config location via envvar by [@&#8203;sledzikowy](https://github.com/sledzikowy) in https://github.com/getsops/sops/pull/1701 - build(deps): Bump the go group with 3 updates by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1809 - build(deps): Bump the ci group with 5 updates by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1808 - build(deps): Bump tempfile from 3.19.0 to 3.19.1 in /functional-tests in the rust group by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1807 - Support --config option in publish subcommand by [@&#8203;felixfontein](https://github.com/felixfontein) in https://github.com/getsops/sops/pull/1779 - Fix caching of Metadata.DataKey by [@&#8203;felixfontein](https://github.com/felixfontein) in https://github.com/getsops/sops/pull/1781 - Lint by [@&#8203;felixfontein](https://github.com/felixfontein) in https://github.com/getsops/sops/pull/1780 - updatekeys subcommand: rename GroupQuorum to ShamirThreshold by [@&#8203;felixfontein](https://github.com/felixfontein) in https://github.com/getsops/sops/pull/1631 - If --filename-override is specified, convert it to an absolute path same as regular filenames by [@&#8203;felixfontein](https://github.com/felixfontein) in https://github.com/getsops/sops/pull/1793 - Add support for `oauth2.TokenSource` in GCP KMS by [@&#8203;matheuscscp](https://github.com/matheuscscp) in https://github.com/getsops/sops/pull/1794 - Added SOPS_AGE_KEY_CMD option to age, fixes [#&#8203;1323](https://github.com/getsops/sops/issues/1323) by [@&#8203;danilobuerger](https://github.com/danilobuerger) in https://github.com/getsops/sops/pull/1811 - chore: omitempty metadata to reduce the size of stored config by [@&#8203;cgetzen](https://github.com/cgetzen) in https://github.com/getsops/sops/pull/1571 - Improve Shamir Secret Sharing code by [@&#8203;felixfontein](https://github.com/felixfontein) in https://github.com/getsops/sops/pull/1813 - Update all dependencies by [@&#8203;felixfontein](https://github.com/felixfontein) in https://github.com/getsops/sops/pull/1814 - Run 'gofmt -w' on all .go files by [@&#8203;felixfontein](https://github.com/felixfontein) in https://github.com/getsops/sops/pull/1817 - Add option to explicitly check for the latest version; deprecate current default of always doing that unless disabled by [@&#8203;felixfontein](https://github.com/felixfontein) in https://github.com/getsops/sops/pull/1816 - Build using Go 1.24 and drop support for 1.22 by [@&#8203;hiddeco](https://github.com/hiddeco) in https://github.com/getsops/sops/pull/1819 - Support `GOOGLE_OAUTH_ACCESS_TOKEN` for Google Cloud Platform by [@&#8203;marensofier](https://github.com/marensofier) in https://github.com/getsops/sops/pull/1578 - Warn about `.sops.yml` files found while searching for `.sops.yaml` by [@&#8203;felixfontein](https://github.com/felixfontein) in https://github.com/getsops/sops/pull/1820 - Release 3.10.0 by [@&#8203;felixfontein](https://github.com/felixfontein) in https://github.com/getsops/sops/pull/1815 - Added support for multiarch windows release binaries by [@&#8203;sabre1041](https://github.com/sabre1041) in https://github.com/getsops/sops/pull/1823 #### New Contributors - [@&#8203;reindlt](https://github.com/reindlt) made their first contribution in https://github.com/getsops/sops/pull/1452 - [@&#8203;ricmatsui](https://github.com/ricmatsui) made their first contribution in https://github.com/getsops/sops/pull/880 - [@&#8203;Paredev](https://github.com/Paredev) made their first contribution in https://github.com/getsops/sops/pull/1765 - [@&#8203;haoqixu](https://github.com/haoqixu) made their first contribution in https://github.com/getsops/sops/pull/1692 - [@&#8203;brianmcgee](https://github.com/brianmcgee) made their first contribution in https://github.com/getsops/sops/pull/1641 - [@&#8203;sledzikowy](https://github.com/sledzikowy) made their first contribution in https://github.com/getsops/sops/pull/1701 - [@&#8203;matheuscscp](https://github.com/matheuscscp) made their first contribution in https://github.com/getsops/sops/pull/1794 - [@&#8203;danilobuerger](https://github.com/danilobuerger) made their first contribution in https://github.com/getsops/sops/pull/1811 - [@&#8203;cgetzen](https://github.com/cgetzen) made their first contribution in https://github.com/getsops/sops/pull/1571 - [@&#8203;marensofier](https://github.com/marensofier) made their first contribution in https://github.com/getsops/sops/pull/1578 - [@&#8203;sabre1041](https://github.com/sabre1041) made their first contribution in https://github.com/getsops/sops/pull/1823 **Full Changelog**: https://github.com/getsops/sops/compare/v3.9.4...v3.10.0 </details> <details> <summary>helmfile/vals (vals)</summary> ### [`v0.40.1`](https://github.com/helmfile/vals/releases/tag/v0.40.1) [Compare Source](https://github.com/helmfile/vals/compare/v0.40.0...v0.40.1) #### What's Changed - feat: enhance timestamp handling in YAML parsing to support sequences by [@&#8203;yxxhero](https://github.com/yxxhero) in https://github.com/helmfile/vals/pull/670 **Full Changelog**: https://github.com/helmfile/vals/compare/v0.40.0...v0.40.1 ### [`v0.40.0`](https://github.com/helmfile/vals/releases/tag/v0.40.0) [Compare Source](https://github.com/helmfile/vals/compare/v0.39.4...v0.40.0) #### What's Changed - build(deps): bump github.com/cyberark/conjur-api-go from 0.12.12 to 0.12.13 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/657 - build(deps): bump github.com/hashicorp/hcp-sdk-go from 0.138.0 to 0.139.0 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/658 - build(deps): bump github.com/golang-jwt/jwt/v5 from 5.2.1 to 5.2.2 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/662 - build(deps): bump github.com/Azure/azure-sdk-for-go/sdk/azcore from 1.17.0 to 1.17.1 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/660 - build(deps): bump github.com/golang-jwt/jwt/v4 from 4.5.1 to 4.5.2 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/663 - build(deps): bump github.com/1password/onepassword-sdk-go from 0.2.0 to 0.2.1 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/659 - build(deps): bump github.com/cyberark/conjur-api-go from 0.12.13 to 0.12.14 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/664 - build(deps): bump golangci/golangci-lint-action from 6 to 7 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/666 - refactor(ci): Simplify CI workflow by removing unit-test job by [@&#8203;yxxhero](https://github.com/yxxhero) in https://github.com/helmfile/vals/pull/632 - feat: handle timestamps as strings in YAML parsing by [@&#8203;yxxhero](https://github.com/yxxhero) in https://github.com/helmfile/vals/pull/669 **Full Changelog**: https://github.com/helmfile/vals/compare/v0.39.4...v0.40.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDAuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJyZW5vdmF0ZSJdfQ==-->
renovate added 1 commit 2025-03-25 03:03:49 +00:00
chore(deps): update quay.io/argoproj/argocd docker tag to v2.14.8
All checks were successful
ZeroDownTime/zdt-argocd/pipeline/pr-main This commit looks good
e53a7a39f4
renovate force-pushed renovate/all-minor-patch from e53a7a39f4 to 2f7261612f 2025-03-31 03:03:49 +00:00 Compare
renovate changed title from chore(deps): update quay.io/argoproj/argocd docker tag to v2.14.8 to chore(deps): update all non-major dependencies 2025-03-31 03:03:54 +00:00
renovate force-pushed renovate/all-minor-patch from 2f7261612f to 3686b5fc1a 2025-04-01 03:04:08 +00:00 Compare
All checks were successful
ZeroDownTime/zdt-argocd/pipeline/pr-main This commit looks good
This pull request can be merged automatically.
You are not authorized to merge this pull request.

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/all-minor-patch:renovate/all-minor-patch
git checkout renovate/all-minor-patch
Sign in to join this conversation.
No Reviewers
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: ZeroDownTime/zdt-argocd#8
No description provided.