Skip to content

Sops

v3.13.2 Feature

This release adds 3 notable features for engineering teams evaluating rollout.

Published 27d Secrets & Credentials
✓ No known CVEs patched
Read the diff → Tool health → What is this tool? →

✓ No known CVEs patched in this version

Topics

aws azure devops gcp pgp secret-distribution
+3 more
secrets-management security sops

Affected surfaces

deps

Summary

AI summary

Broad release touches Quay.io, deps, GitHub Container Registry, and https://docs.sigstore.dev/cosign/overview/.

Full changelog

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

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

# Verify the checksums file
cosign verify-blob sops-v3.13.2.checksums.txt \
  --bundle sops-v3.13.2.checksums.sigstore.json \
  --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.13.2.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.13.2.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.13.2/sops-v3.13.2.intoto.jsonl

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

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.13.2
  • ghcr.io/getsops/sops:v3.13.2-alpine

Quay.io

  • quay.io/getsops/sops:v3.13.2
  • quay.io/getsops/sops:v3.13.2-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.13.2 \
  --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

  • build(deps): Bump the go group with 3 updates by @dependabot[bot] in https://github.com/getsops/sops/pull/2185
  • build(deps): Bump github/codeql-action from 4.35.4 to 4.35.5 in the ci group by @dependabot[bot] in https://github.com/getsops/sops/pull/2184
  • build(deps): Bump the go group with 11 updates by @dependabot[bot] in https://github.com/getsops/sops/pull/2193
  • build(deps): Bump the ci group with 4 updates by @dependabot[bot] in https://github.com/getsops/sops/pull/2192
  • build(deps): Bump serde_json from 1.0.149 to 1.0.150 in /functional-tests in the rust group by @dependabot[bot] in https://github.com/getsops/sops/pull/2191
  • build(deps): Bump the go group with 11 updates by @dependabot[bot] in https://github.com/getsops/sops/pull/2197
  • build(deps): Bump docker/setup-qemu-action from 4.0.0 to 4.1.0 in the ci group by @dependabot[bot] in https://github.com/getsops/sops/pull/2196
  • test: unset all age env vars in make test target by @arpitjain099 in https://github.com/getsops/sops/pull/2208
  • build(deps): Bump the go group with 10 updates by @dependabot[bot] in https://github.com/getsops/sops/pull/2212
  • build(deps): Bump the ci group with 2 updates by @dependabot[bot] in https://github.com/getsops/sops/pull/2211
  • build(deps): Bump the go group with 15 updates by @dependabot[bot] in https://github.com/getsops/sops/pull/2218
  • build(deps): Bump alpine from 3.23 to 3.24 in /.release in the docker group by @dependabot[bot] in https://github.com/getsops/sops/pull/2217
  • fix: handle pointers when serializing context by @tlercher in https://github.com/getsops/sops/pull/2219
  • docs: fix typo in exec-file --filename help text by @s3onghyun in https://github.com/getsops/sops/pull/2221
  • JSON store: preserve large integers that fit into int64 by @s3onghyun in https://github.com/getsops/sops/pull/2222
  • Fix panic when expecting an encrypted string, but a non-string is encountered by @felixfontein in https://github.com/getsops/sops/pull/2227
  • Fix INI store no longer double-encoding newlines by @felixfontein in https://github.com/getsops/sops/pull/2189
  • exec-file/exec-env: reset supplementary groups when changing user by @felixfontein in https://github.com/getsops/sops/pull/2194
  • build(deps): Bump the go group with 6 updates by @dependabot[bot] in https://github.com/getsops/sops/pull/2229
  • build(deps): Bump actions/checkout from 6.0.3 to 7.0.0 in the ci group by @dependabot[bot] in https://github.com/getsops/sops/pull/2228
  • Fix issue when changing user in exec subcommands by @sabre1041 in https://github.com/getsops/sops/pull/2230
  • Shorten .md lines by @felixfontein in https://github.com/getsops/sops/pull/2206
  • Update all Go dependencies with go get -t -u ./... by @felixfontein in https://github.com/getsops/sops/pull/2231
  • build(deps): Bump github.com/opencontainers/runc from 1.2.8 to 1.3.6 by @dependabot[bot] in https://github.com/getsops/sops/pull/2233
  • build(deps): Bump the ci group with 2 updates by @dependabot[bot] in https://github.com/getsops/sops/pull/2236
  • Release 3.13.2 by @felixfontein in https://github.com/getsops/sops/pull/2232

New Contributors

  • @arpitjain099 made their first contribution in https://github.com/getsops/sops/pull/2208
  • @tlercher made their first contribution in https://github.com/getsops/sops/pull/2219
  • @s3onghyun made their first contribution in https://github.com/getsops/sops/pull/2221

Full Changelog: https://github.com/getsops/sops/compare/v3.13.1...v3.13.2

Weekly OSS security release digest.

The CVE patches and breaking changes that affected production tools this week. One email, every Sunday.

No spam, unsubscribe anytime.

Share this release

Track Sops

Get notified when new releases ship.

Sign up free

About Sops

An editor of encrypted files that supports YAML, JSON and BINARY formats and encrypts with AWS KMS and PGP.

All releases →

Beta — feedback welcome: [email protected]