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

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.13.1 -> v2.13.3
sops patch v3.9.2 -> v3.9.4
vals minor v0.38.0 -> v0.39.0

Release Notes

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

v2.13.3

Compare Source

Quick Start

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

Full Changelog: https://github.com/argoproj/argo-cd/compare/v2.13.2...v2.13.3

v2.13.2

Compare Source

Quick Start

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

Full Changelog: https://github.com/argoproj/argo-cd/compare/v2.13.1...v2.13.2

getsops/sops (sops)

v3.9.4

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.9.4/sops-v3.9.4.linux.amd64

### Move the binary in to your PATH
mv sops-v3.9.4.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.9.4/sops-v3.9.4.checksums.txt
curl -LO https://github.com/getsops/sops/releases/download/v3.9.4/sops-v3.9.4.checksums.pem
curl -LO https://github.com/getsops/sops/releases/download/v3.9.4/sops-v3.9.4.checksums.sig

### Verify the checksums file
cosign verify-blob sops-v3.9.4.checksums.txt \
  --certificate sops-v3.9.4.checksums.pem \
  --signature sops-v3.9.4.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.9.4.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.9.4.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.9.4/sops-v3.9.4.intoto.jsonl

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

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.9.4
  • ghcr.io/getsops/sops:v3.9.4-alpine
Quay.io
  • quay.io/getsops/sops:v3.9.4
  • quay.io/getsops/sops:v3.9.4-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.9.4 \
  --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.9.3...v3.9.4

v3.9.3

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.9.3/sops-v3.9.3.linux.amd64

### Move the binary in to your PATH
mv sops-v3.9.3.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.9.3/sops-v3.9.3.checksums.txt
curl -LO https://github.com/getsops/sops/releases/download/v3.9.3/sops-v3.9.3.checksums.pem
curl -LO https://github.com/getsops/sops/releases/download/v3.9.3/sops-v3.9.3.checksums.sig

### Verify the checksums file
cosign verify-blob sops-v3.9.3.checksums.txt \
  --certificate sops-v3.9.3.checksums.pem \
  --signature sops-v3.9.3.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.9.3.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.9.3.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.9.3/sops-v3.9.3.intoto.jsonl

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

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.9.3
  • ghcr.io/getsops/sops:v3.9.3-alpine
Quay.io
  • quay.io/getsops/sops:v3.9.3
  • quay.io/getsops/sops:v3.9.3-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.9.3 \
  --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.9.2...v3.9.3

helmfile/vals (vals)

v0.39.0

Compare Source

What's Changed

Full Changelog: https://github.com/helmfile/vals/compare/v0.38.0...v0.39.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.13.1` -> `v2.13.3` | | [sops](https://github.com/getsops/sops) | | patch | `v3.9.2` -> `v3.9.4` | | [vals](https://github.com/helmfile/vals) | | minor | `v0.38.0` -> `v0.39.0` | --- ### Release Notes <details> <summary>argoproj/argo-cd (quay.io/argoproj/argocd)</summary> ### [`v2.13.3`](https://github.com/argoproj/argo-cd/releases/tag/v2.13.3) [Compare Source](https://github.com/argoproj/argo-cd/compare/v2.13.2...v2.13.3) #### Quick Start ##### Non-HA: ```shell kubectl create namespace argocd kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/v2.13.3/manifests/install.yaml ``` ##### HA: ```shell kubectl create namespace argocd kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/v2.13.3/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 - [`f260510`](https://github.com/argoproj/argo-cd/commit/f260510f387d2333dda02f6d93737f734e04af13): fix(api): send to closed channel in mergeLogStreams ([#&#8203;7006](https://github.com/argoproj/argo-cd/issues/7006)) ([#&#8203;21178](https://github.com/argoproj/argo-cd/issues/21178)) ([#&#8203;21187](https://github.com/argoproj/argo-cd/issues/21187)) ([@&#8203;gcp-cherry-pick-bot](https://github.com/gcp-cherry-pick-bot)\[bot]) - [`09eede0`](https://github.com/argoproj/argo-cd/commit/09eede0c1775288b3e70a7971dd69492be206f82): fix(appset): Fix appset generate in --core mode for cluster gen ([#&#8203;21170](https://github.com/argoproj/argo-cd/issues/21170)) ([#&#8203;21236](https://github.com/argoproj/argo-cd/issues/21236)) ([@&#8203;gcp-cherry-pick-bot](https://github.com/gcp-cherry-pick-bot)\[bot]) - [`64a14a0`](https://github.com/argoproj/argo-cd/commit/64a14a08e0cffa3352e99444b81e1446fff1cda4): fix(ui): add optional check to avoid undefined reference in project detail ([#&#8203;20044](https://github.com/argoproj/argo-cd/issues/20044)) ([#&#8203;21263](https://github.com/argoproj/argo-cd/issues/21263)) ([@&#8203;crenshaw-dev](https://github.com/crenshaw-dev)) - [`c76a131`](https://github.com/argoproj/argo-cd/commit/c76a131b17eae7ec5b608b2b1dc4aa2c8ac9e8e4): fix: Change applicationset generate HTTP method to avoid route conflicts ([#&#8203;20758](https://github.com/argoproj/argo-cd/issues/20758)) ([#&#8203;21300](https://github.com/argoproj/argo-cd/issues/21300)) ([@&#8203;gcp-cherry-pick-bot](https://github.com/gcp-cherry-pick-bot)\[bot]) - [`079754c`](https://github.com/argoproj/argo-cd/commit/079754c63913522803f7dbe4bded6b6de37f7e34): fix: Populate destination name when destination server is specified ([#&#8203;21063](https://github.com/argoproj/argo-cd/issues/21063)) (cherry-pick 2.13) ([#&#8203;21176](https://github.com/argoproj/argo-cd/issues/21176)) ([@&#8203;adriananeci](https://github.com/adriananeci)) **Full Changelog**: https://github.com/argoproj/argo-cd/compare/v2.13.2...v2.13.3 <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> ### [`v2.13.2`](https://github.com/argoproj/argo-cd/releases/tag/v2.13.2) [Compare Source](https://github.com/argoproj/argo-cd/compare/v2.13.1...v2.13.2) #### Quick Start ##### Non-HA: ```shell kubectl create namespace argocd kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/v2.13.2/manifests/install.yaml ``` ##### HA: ```shell kubectl create namespace argocd kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/v2.13.2/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 - [`ad36916`](https://github.com/argoproj/argo-cd/commit/ad36916ec41bfe49690294aea550ce9bb090e4d5): fix(cli): Fix appset generate in --core mode ([#&#8203;20717](https://github.com/argoproj/argo-cd/issues/20717)) ([#&#8203;20883](https://github.com/argoproj/argo-cd/issues/20883)) ([@&#8203;gcp-cherry-pick-bot](https://github.com/gcp-cherry-pick-bot)\[bot]) - [`01ae20d`](https://github.com/argoproj/argo-cd/commit/01ae20d1b322aad6020840140693c2c6629d7857): fix: 20791 - sync multi-source application out of order source syncs (cherry-pick [#&#8203;21071](https://github.com/argoproj/argo-cd/issues/21071)) ([#&#8203;21077](https://github.com/argoproj/argo-cd/issues/21077)) ([@&#8203;gcp-cherry-pick-bot](https://github.com/gcp-cherry-pick-bot)\[bot]) - [`831e452`](https://github.com/argoproj/argo-cd/commit/831e4525c3457169ce8a904a3fc2c9c637a4b576): fix: API server should not attempt to read secrets in all namespaces ([#&#8203;20950](https://github.com/argoproj/argo-cd/issues/20950)) ([#&#8203;20960](https://github.com/argoproj/argo-cd/issues/20960)) ([@&#8203;gcp-cherry-pick-bot](https://github.com/gcp-cherry-pick-bot)\[bot]) - [`a3624a3`](https://github.com/argoproj/argo-cd/commit/a3624a3f20855557e0dc5673d68f9f78495cdb26): fix: Allow to delete repos with invalid urls ([#&#8203;20921](https://github.com/argoproj/argo-cd/issues/20921)) ([#&#8203;20975](https://github.com/argoproj/argo-cd/issues/20975)) ([#&#8203;21116](https://github.com/argoproj/argo-cd/issues/21116)) ([@&#8203;gcp-cherry-pick-bot](https://github.com/gcp-cherry-pick-bot)\[bot]) - [`89ef356`](https://github.com/argoproj/argo-cd/commit/89ef3563dba240f3af7b37227a732eeff1b41285): fix: Bitbucket Cloud PR Author is processed correctly ([#&#8203;20769](https://github.com/argoproj/argo-cd/issues/20769)) ([#&#8203;20990](https://github.com/argoproj/argo-cd/issues/20990)) ([#&#8203;21039](https://github.com/argoproj/argo-cd/issues/21039)) ([@&#8203;gcp-cherry-pick-bot](https://github.com/gcp-cherry-pick-bot)\[bot]) - [`f8d6665`](https://github.com/argoproj/argo-cd/commit/f8d6665c67bb612045a8cb0d39766aa61000001a): fix: Memory leak in repo-server ([#&#8203;20876](https://github.com/argoproj/argo-cd/issues/20876)) ([#&#8203;20894](https://github.com/argoproj/argo-cd/issues/20894)) ([@&#8203;gcp-cherry-pick-bot](https://github.com/gcp-cherry-pick-bot)\[bot]) - [`b6af657`](https://github.com/argoproj/argo-cd/commit/b6af657295e68388fa31643ac6819e014170d2d5): fix: add missing fields in listrepositories ([#&#8203;20991](https://github.com/argoproj/argo-cd/issues/20991)) ([#&#8203;21129](https://github.com/argoproj/argo-cd/issues/21129)) ([@&#8203;blakepettersson](https://github.com/blakepettersson)) ##### Dependency updates - [`0680ddb`](https://github.com/argoproj/argo-cd/commit/0680ddbdf9a5fb15c089a5703e6dba0760643eca): chore(deps): bump http-proxy-middleware from 2.0.4 to 2.0.7 in /ui ([#&#8203;20518](https://github.com/argoproj/argo-cd/issues/20518)) ([#&#8203;20892](https://github.com/argoproj/argo-cd/issues/20892)) ([@&#8203;gcp-cherry-pick-bot](https://github.com/gcp-cherry-pick-bot)\[bot]) **Full Changelog**: https://github.com/argoproj/argo-cd/compare/v2.13.1...v2.13.2 <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.9.4`](https://github.com/getsops/sops/releases/tag/v3.9.4) [Compare Source](https://github.com/getsops/sops/compare/v3.9.3...v3.9.4) #### 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.9.4/sops-v3.9.4.linux.amd64 ### Move the binary in to your PATH mv sops-v3.9.4.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.9.4/sops-v3.9.4.checksums.txt curl -LO https://github.com/getsops/sops/releases/download/v3.9.4/sops-v3.9.4.checksums.pem curl -LO https://github.com/getsops/sops/releases/download/v3.9.4/sops-v3.9.4.checksums.sig ### Verify the checksums file cosign verify-blob sops-v3.9.4.checksums.txt \ --certificate sops-v3.9.4.checksums.pem \ --signature sops-v3.9.4.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.9.4.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.9.4.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.9.4/sops-v3.9.4.intoto.jsonl ### Verify the provenance of the artifact slsa-verifier verify-artifact <artifact> \ --provenance-path sops-v3.9.4.intoto.jsonl \ --source-uri github.com/getsops/sops \ --source-tag v3.9.4 ``` #### 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.9.4` - `ghcr.io/getsops/sops:v3.9.4-alpine` ##### Quay.io - `quay.io/getsops/sops:v3.9.4` - `quay.io/getsops/sops:v3.9.4-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.9.4 \ --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 go group with 5 updates by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1727 - build(deps): Bump tempfile from 3.14.0 to 3.15.0 in /functional-tests in the rust group by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1728 - build(deps): Bump the go group with 16 updates by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1732 - build(deps): Bump the ci group with 3 updates by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1730 - build(deps): Bump serde_json from 1.0.134 to 1.0.135 in /functional-tests in the rust group by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1731 - build(deps): Bump the go group with 12 updates by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1734 - build(deps): Bump serde_json from 1.0.135 to 1.0.137 in /functional-tests in the rust group by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1735 - Fix ToString for AWS KMS to include role, context, and profile by [@&#8203;felixfontein](https://github.com/felixfontein) in https://github.com/getsops/sops/pull/1733 - build(deps): Bump the ci group with 3 updates by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1738 - build(deps): Bump the go group with 6 updates by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1739 - Release 3.9.4 by [@&#8203;felixfontein](https://github.com/felixfontein) in https://github.com/getsops/sops/pull/1740 **Full Changelog**: https://github.com/getsops/sops/compare/v3.9.3...v3.9.4 ### [`v3.9.3`](https://github.com/getsops/sops/releases/tag/v3.9.3) [Compare Source](https://github.com/getsops/sops/compare/v3.9.2...v3.9.3) #### 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.9.3/sops-v3.9.3.linux.amd64 ### Move the binary in to your PATH mv sops-v3.9.3.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.9.3/sops-v3.9.3.checksums.txt curl -LO https://github.com/getsops/sops/releases/download/v3.9.3/sops-v3.9.3.checksums.pem curl -LO https://github.com/getsops/sops/releases/download/v3.9.3/sops-v3.9.3.checksums.sig ### Verify the checksums file cosign verify-blob sops-v3.9.3.checksums.txt \ --certificate sops-v3.9.3.checksums.pem \ --signature sops-v3.9.3.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.9.3.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.9.3.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.9.3/sops-v3.9.3.intoto.jsonl ### Verify the provenance of the artifact slsa-verifier verify-artifact <artifact> \ --provenance-path sops-v3.9.3.intoto.jsonl \ --source-uri github.com/getsops/sops \ --source-tag v3.9.3 ``` #### 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.9.3` - `ghcr.io/getsops/sops:v3.9.3-alpine` ##### Quay.io - `quay.io/getsops/sops:v3.9.3` - `quay.io/getsops/sops:v3.9.3-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.9.3 \ --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 go group with 10 updates by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1699 - build(deps): Bump the ci group with 2 updates by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1698 - build(deps): Bump golang.org/x/crypto from 0.30.0 to 0.31.0 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1703 - build(deps): Bump the ci group with 4 updates by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1708 - 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/1707 - CI: add 'persist-credentials: false' to checkout actions by [@&#8203;felixfontein](https://github.com/felixfontein) in https://github.com/getsops/sops/pull/1704 - build(deps): Bump filippo.io/age from 1.2.0 to 1.2.1 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1710 - Bump golang.org/x/net to 0.33.0 to address CVE-2024-45338 by [@&#8203;felixfontein](https://github.com/felixfontein) in https://github.com/getsops/sops/pull/1714 - build(deps): Bump the go group across 1 directory with 13 updates by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1715 - build(deps): Bump serde_json from 1.0.133 to 1.0.134 in /functional-tests in the rust group by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1716 - build(deps): Bump the ci group with 2 updates by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/getsops/sops/pull/1717 - GnuPG: do not incorrectly trim fingerprint in presence of exclamation marks for specfic subkey selection by [@&#8203;felixfontein](https://github.com/felixfontein) in https://github.com/getsops/sops/pull/1720 - Tests: use container images from https://github.com/getsops/ci-container-images by [@&#8203;felixfontein](https://github.com/felixfontein) in https://github.com/getsops/sops/pull/1722 - updatekeys subcommand: fix input-type CLI flag being ignored by [@&#8203;felixfontein](https://github.com/felixfontein) in https://github.com/getsops/sops/pull/1721 - Update all Go dependencies by [@&#8203;felixfontein](https://github.com/felixfontein) in https://github.com/getsops/sops/pull/1723 - 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/1725 - Release 3.9.3 by [@&#8203;felixfontein](https://github.com/felixfontein) in https://github.com/getsops/sops/pull/1724 **Full Changelog**: https://github.com/getsops/sops/compare/v3.9.2...v3.9.3 </details> <details> <summary>helmfile/vals (vals)</summary> ### [`v0.39.0`](https://github.com/helmfile/vals/releases/tag/v0.39.0) [Compare Source](https://github.com/helmfile/vals/compare/v0.38.0...v0.39.0) #### What's Changed - build(deps): bump github.com/1password/onepassword-sdk-go from 0.1.4 to 0.1.5 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/587 - build(deps): bump cloud.google.com/go/kms from 1.20.1 to 1.20.2 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/589 - build(deps): bump google.golang.org/api from 0.209.0 to 0.210.0 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/588 - build(deps): bump cloud.google.com/go/storage from 1.47.0 to 1.48.0 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/590 - build(deps): bump google.golang.org/api from 0.210.0 to 0.211.0 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/594 - build(deps): bump github.com/hashicorp/hcp-sdk-go from 0.125.0 to 0.126.0 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/593 - build(deps): bump k8s.io/client-go from 0.31.3 to 0.31.4 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/592 - build(deps): bump k8s.io/apimachinery from 0.31.4 to 0.32.0 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/596 - build(deps): bump golang.org/x/crypto from 0.30.0 to 0.31.0 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/597 - build(deps): bump k8s.io/client-go from 0.31.4 to 0.32.0 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/595 - docs: Add more info link to README for authentication methods by [@&#8203;yxxhero](https://github.com/yxxhero) in https://github.com/helmfile/vals/pull/598 - build(deps): bump github.com/cyberark/conjur-api-go from 0.12.7 to 0.12.9 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/599 - build(deps): bump helm/kind-action from 1.10.0 to 1.11.0 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/602 - build(deps): bump google.golang.org/api from 0.211.0 to 0.212.0 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/601 - build(deps): bump github.com/antchfx/xpath from 1.3.2 to 1.3.3 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/600 - build(deps): bump google.golang.org/api from 0.212.0 to 0.213.0 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/603 - build(deps): bump github.com/hashicorp/hcp-sdk-go from 0.126.0 to 0.127.0 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/606 - build(deps): bump cloud.google.com/go/kms from 1.20.2 to 1.20.3 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/605 - build(deps): bump filippo.io/age from 1.2.0 to 1.2.1 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/604 - build(deps): bump google.golang.org/api from 0.213.0 to 0.214.0 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/607 - build(deps): bump cloud.google.com/go/storage from 1.48.0 to 1.49.0 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/608 - build(deps): bump helm/kind-action from 1.11.0 to 1.12.0 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/609 - build(deps): bump github.com/cyberark/conjur-api-go from 0.12.9 to 0.12.10 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/610 - build(deps): bump github.com/hashicorp/hcp-sdk-go from 0.127.0 to 0.128.0 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/611 - build(deps): bump cloud.google.com/go/kms from 1.20.3 to 1.20.4 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/613 - build(deps): bump cloud.google.com/go/secretmanager from 1.14.2 to 1.14.3 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/612 - build(deps): bump golang.org/x/oauth2 from 0.24.0 to 0.25.0 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/614 - build(deps): bump github.com/hashicorp/hcp-sdk-go from 0.128.0 to 0.129.0 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/615 - build(deps): bump github.com/Azure/azure-sdk-for-go/sdk/azcore from 1.16.0 to 1.17.0 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/617 - build(deps): bump google.golang.org/api from 0.214.0 to 0.215.0 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/616 - build(deps): bump cloud.google.com/go/storage from 1.49.0 to 1.50.0 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/620 - build(deps): bump cloud.google.com/go/kms from 1.20.4 to 1.20.5 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/619 - build(deps): bump github.com/1password/onepassword-sdk-go from 0.1.5 to 0.1.6 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/618 - build(deps): bump github.com/hashicorp/hcp-sdk-go from 0.129.0 to 0.130.0 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/621 - build(deps): bump github.com/aws/aws-sdk-go from 1.55.5 to 1.55.6 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/624 - build(deps): bump github.com/hashicorp/hcp-sdk-go from 0.130.0 to 0.131.0 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/623 - build(deps): bump github.com/Azure/azure-sdk-for-go/sdk/azidentity from 1.8.0 to 1.8.1 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/helmfile/vals/pull/622 **Full Changelog**: https://github.com/helmfile/vals/compare/v0.38.0...v0.39.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:eyJjcmVhdGVkSW5WZXIiOiIzOS4zMy4xIiwidXBkYXRlZEluVmVyIjoiMzkuMzMuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsicmVub3ZhdGUiXX0=-->
renovate added 1 commit 2024-12-12 03:06:59 +00:00
chore(deps): update quay.io/argoproj/argocd docker tag to v2.13.2
All checks were successful
ZeroDownTime/zdt-argocd/pipeline/pr-main This commit looks good
cb71ee5f4f
renovate force-pushed renovate/all-minor-patch from cb71ee5f4f to b00579a01e 2025-01-01 03:04:39 +00:00 Compare
renovate changed title from chore(deps): update quay.io/argoproj/argocd docker tag to v2.13.2 to chore(deps): update all non-major dependencies 2025-01-01 03:04:43 +00:00
renovate force-pushed renovate/all-minor-patch from b00579a01e to 9df2140f06 2025-01-04 03:05:29 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 9df2140f06 to f03286536c 2025-01-17 03:09:07 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from f03286536c to f58b5a8cd3 2025-01-26 03:07:56 +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
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

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