Skip to content

Commit 218ddf3

Browse files
fix(deps): update module github.com/getsops/sops/v3 to v3.8.1 (#878)
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/getsops/sops/v3](https://togithub.com/getsops/sops) | require | patch | `v3.8.0` -> `v3.8.1` | --- ### Release Notes <details> <summary>getsops/sops (github.com/getsops/sops/v3)</summary> ### [`v3.8.1`](https://togithub.com/getsops/sops/releases/tag/v3.8.1) [Compare Source](https://togithub.com/getsops/sops/compare/v3.8.0...v3.8.1) #### Note from the Maintainers In this release of SOPS, we have focused on landing a variety of bug fixes to improve the overall user experience. For a comprehensive list of changes, please refer to [`CHANGELOG.rst`](https://togithub.com/getsops/sops/blob/v3.8.1/CHANGELOG.rst). ##### Important Information for SOPS SDK Users With the project transitioning from the Mozilla Foundation to the CNCF, the Go module path has been updated to reflect this change in ownership. If you use `go.mozilla.org/sops/v3` as a library, going forward, import the Go Module using `github.com/getsops/sops/v3`. Apart from this small adjustment, the SDK's API remains fully backward compatible. For a one-liner to quickly implement this change throughout your codebase, please refer to: [https://github.com/getsops/sops/issues/1246#issuecomment-1625526429](https://togithub.com/getsops/sops/issues/1246#issuecomment-1625526429) #### 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.8.1/sops-v3.8.1.linux.amd64 ### Move the binary in to your PATH mv sops-v3.8.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.8.1/sops-v3.8.1.checksums.txt curl -LO https://github.com/getsops/sops/releases/download/v3.8.1/sops-v3.8.1.checksums.pem curl -LO https://github.com/getsops/sops/releases/download/v3.8.1/sops-v3.8.1.checksums.sig ### Verify the checksums file cosign verify-blob sops-v3.8.1.checksums.txt \ --certificate sops-v3.8.1.checksums.pem \ --signature sops-v3.8.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.8.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.8.1.intoto.jsonl`. To verify the provenance of an artifact, you can utilize the [`slsa-verifier`](https://togithub.com/slsa-framework/slsa-verifier#artifacts) tool: ```shell ### Download the metadata file curl -LO https://github.com/getsops/sops/releases/download/v3.8.1/sops-v3.8.1.intoto.jsonl ### Verify the provenance of the artifact slsa-verifier verify-artifact <artifact> \ --provenance-path sops-v3.8.1.intoto.jsonl \ --source-uri github.com/getsops/sops \ --source-tag v3.8.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.8.1` - `ghcr.io/getsops/sops:v3.8.1-alpine` ##### Quay.io - `quay.io/getsops/sops:v3.8.1` - `quay.io/getsops/sops:v3.8.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.8.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://togithub.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 3 updates by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/getsops/sops/pull/1295](https://togithub.com/getsops/sops/pull/1295) - pgp: improve handling of GnuPG home dir by [@&#8203;hiddeco](https://togithub.com/hiddeco) in [https://github.com/getsops/sops/pull/1298](https://togithub.com/getsops/sops/pull/1298) - Delete sops encrypted file we don't have keys for by [@&#8203;felixfontein](https://togithub.com/felixfontein) in [https://github.com/getsops/sops/pull/1288](https://togithub.com/getsops/sops/pull/1288) - Improve handling of errors when binary store handles bad data by [@&#8203;felixfontein](https://togithub.com/felixfontein) in [https://github.com/getsops/sops/pull/1289](https://togithub.com/getsops/sops/pull/1289) - On macOS, prefer XDG_CONFIG_HOME over os.UserConfigDir() by [@&#8203;felixfontein](https://togithub.com/felixfontein) in [https://github.com/getsops/sops/pull/1291](https://togithub.com/getsops/sops/pull/1291) - Do not crash if an empty YAML file is encrypted by [@&#8203;felixfontein](https://togithub.com/felixfontein) in [https://github.com/getsops/sops/pull/1290](https://togithub.com/getsops/sops/pull/1290) - Fix descriptions of unencrypted-regex and encrypted-regex flags, and ensure unencrypted_regex is considered in config validation by [@&#8203;mitar](https://togithub.com/mitar) in [https://github.com/getsops/sops/pull/1300](https://togithub.com/getsops/sops/pull/1300) - build(deps): Bump the go group with 4 updates by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/getsops/sops/pull/1306](https://togithub.com/getsops/sops/pull/1306) - build(deps): Bump the ci group with 1 update by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/getsops/sops/pull/1301](https://togithub.com/getsops/sops/pull/1301) - Handle return values of dec.Token() to improve error messages by [@&#8203;felixfontein](https://togithub.com/felixfontein) in [https://github.com/getsops/sops/pull/1307](https://togithub.com/getsops/sops/pull/1307) - pgp: make error the last return value by [@&#8203;felixfontein](https://togithub.com/felixfontein) in [https://github.com/getsops/sops/pull/1310](https://togithub.com/getsops/sops/pull/1310) - pgp: do not require abs path for SopsGpgExecEnv by [@&#8203;holiman](https://togithub.com/holiman) in [https://github.com/getsops/sops/pull/1309](https://togithub.com/getsops/sops/pull/1309) - decrypt: fix dropped error by [@&#8203;alrs](https://togithub.com/alrs) in [https://github.com/getsops/sops/pull/1304](https://togithub.com/getsops/sops/pull/1304) - Handle errors by [@&#8203;felixfontein](https://togithub.com/felixfontein) in [https://github.com/getsops/sops/pull/1311](https://togithub.com/getsops/sops/pull/1311) - Report key rotation errors by [@&#8203;felixfontein](https://togithub.com/felixfontein) in [https://github.com/getsops/sops/pull/1317](https://togithub.com/getsops/sops/pull/1317) - cmd/sops/main.go: make sure to wrap raw errors with toExitError() by [@&#8203;felixfontein](https://togithub.com/felixfontein) in [https://github.com/getsops/sops/pull/1318](https://togithub.com/getsops/sops/pull/1318) - build(deps): Bump the go group with 7 updates by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/getsops/sops/pull/1319](https://togithub.com/getsops/sops/pull/1319) - Enrich AWS authentication documentation by [@&#8203;nsantiago2719](https://togithub.com/nsantiago2719) in [https://github.com/getsops/sops/pull/1272](https://togithub.com/getsops/sops/pull/1272) - Better error reporting for missing gpg binary by [@&#8203;makkes](https://togithub.com/makkes) in [https://github.com/getsops/sops/pull/1286](https://togithub.com/getsops/sops/pull/1286) - Improve RST and MD files by [@&#8203;felixfontein](https://togithub.com/felixfontein) in [https://github.com/getsops/sops/pull/1320](https://togithub.com/getsops/sops/pull/1320) - Add linting for RST and MD files by [@&#8203;felixfontein](https://togithub.com/felixfontein) in [https://github.com/getsops/sops/pull/1287](https://togithub.com/getsops/sops/pull/1287) - Update dependencies by [@&#8203;hiddeco](https://togithub.com/hiddeco) in [https://github.com/getsops/sops/pull/1325](https://togithub.com/getsops/sops/pull/1325) - Prepare v3.8.1 by [@&#8203;hiddeco](https://togithub.com/hiddeco) in [https://github.com/getsops/sops/pull/1324](https://togithub.com/getsops/sops/pull/1324) #### New Contributors - [@&#8203;mitar](https://togithub.com/mitar) made their first contribution in [https://github.com/getsops/sops/pull/1300](https://togithub.com/getsops/sops/pull/1300) - [@&#8203;holiman](https://togithub.com/holiman) made their first contribution in [https://github.com/getsops/sops/pull/1309](https://togithub.com/getsops/sops/pull/1309) - [@&#8203;alrs](https://togithub.com/alrs) made their first contribution in [https://github.com/getsops/sops/pull/1304](https://togithub.com/getsops/sops/pull/1304) - [@&#8203;nsantiago2719](https://togithub.com/nsantiago2719) made their first contribution in [https://github.com/getsops/sops/pull/1272](https://togithub.com/getsops/sops/pull/1272) - [@&#8203;makkes](https://togithub.com/makkes) made their first contribution in [https://github.com/getsops/sops/pull/1286](https://togithub.com/getsops/sops/pull/1286) **Full Changelog**: getsops/sops@v3.8.0...v3.8.1 </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. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/markussiebert/cdk-sops-secrets).
1 parent 5f6702e commit 218ddf3

File tree

8 files changed

+107
-107
lines changed

8 files changed

+107
-107
lines changed

lambda/go.mod

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.21.0
55
require (
66
github.com/aws/aws-lambda-go v1.41.0
77
github.com/aws/aws-sdk-go v1.45.24
8-
github.com/getsops/sops/v3 v3.8.0
8+
github.com/getsops/sops/v3 v3.8.1
99
github.com/gkampitakis/go-snaps v0.4.11
1010
github.com/go-test/deep v1.1.0
1111
gopkg.in/yaml.v3 v3.0.1
@@ -14,29 +14,29 @@ require (
1414
require (
1515
cloud.google.com/go/compute v1.23.0 // indirect
1616
cloud.google.com/go/compute/metadata v0.2.3 // indirect
17-
cloud.google.com/go/iam v1.1.1 // indirect
17+
cloud.google.com/go/iam v1.1.2 // indirect
1818
cloud.google.com/go/kms v1.15.2 // indirect
1919
filippo.io/age v1.1.1 // indirect
20-
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.7.2 // indirect
21-
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.3.1 // indirect
20+
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.8.0 // indirect
21+
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.4.0 // indirect
2222
github.com/Azure/azure-sdk-for-go/sdk/internal v1.3.0 // indirect
2323
github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azkeys v1.0.1 // indirect
2424
github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/internal v1.0.0 // indirect
2525
github.com/AzureAD/microsoft-authentication-library-for-go v1.1.1 // indirect
26-
github.com/ProtonMail/go-crypto v0.0.0-20230828082145-3c4c8a2d2371 // indirect
27-
github.com/aws/aws-sdk-go-v2 v1.21.0 // indirect
28-
github.com/aws/aws-sdk-go-v2/config v1.18.39 // indirect
29-
github.com/aws/aws-sdk-go-v2/credentials v1.13.37 // indirect
30-
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.11 // indirect
31-
github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.41 // indirect
32-
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.35 // indirect
33-
github.com/aws/aws-sdk-go-v2/internal/ini v1.3.42 // indirect
34-
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.35 // indirect
35-
github.com/aws/aws-sdk-go-v2/service/kms v1.24.5 // indirect
36-
github.com/aws/aws-sdk-go-v2/service/sso v1.13.6 // indirect
37-
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.15.6 // indirect
38-
github.com/aws/aws-sdk-go-v2/service/sts v1.21.5 // indirect
39-
github.com/aws/smithy-go v1.14.2 // indirect
26+
github.com/ProtonMail/go-crypto v0.0.0-20230923063757-afb1ddc0824c // indirect
27+
github.com/aws/aws-sdk-go-v2 v1.21.1 // indirect
28+
github.com/aws/aws-sdk-go-v2/config v1.18.44 // indirect
29+
github.com/aws/aws-sdk-go-v2/credentials v1.13.42 // indirect
30+
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.12 // indirect
31+
github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.42 // indirect
32+
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.36 // indirect
33+
github.com/aws/aws-sdk-go-v2/internal/ini v1.3.44 // indirect
34+
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.36 // indirect
35+
github.com/aws/aws-sdk-go-v2/service/kms v1.24.6 // indirect
36+
github.com/aws/aws-sdk-go-v2/service/sso v1.15.1 // indirect
37+
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.17.2 // indirect
38+
github.com/aws/aws-sdk-go-v2/service/sts v1.23.1 // indirect
39+
github.com/aws/smithy-go v1.15.0 // indirect
4040
github.com/blang/semver v3.5.1+incompatible // indirect
4141
github.com/cenkalti/backoff/v3 v3.2.2 // indirect
4242
github.com/cloudflare/circl v1.3.3 // indirect
@@ -49,10 +49,10 @@ require (
4949
github.com/golang-jwt/jwt/v5 v5.0.0 // indirect
5050
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
5151
github.com/golang/protobuf v1.5.3 // indirect
52-
github.com/google/go-cmp v0.5.9 // indirect
52+
github.com/google/go-cmp v0.6.0 // indirect
5353
github.com/google/s2a-go v0.1.7 // indirect
5454
github.com/google/uuid v1.3.1 // indirect
55-
github.com/googleapis/enterprise-certificate-proxy v0.2.5 // indirect
55+
github.com/googleapis/enterprise-certificate-proxy v0.3.1 // indirect
5656
github.com/googleapis/gax-go/v2 v2.12.0 // indirect
5757
github.com/goware/prefixer v0.0.0-20160118172347-395022866408 // indirect
5858
github.com/hashicorp/errwrap v1.1.0 // indirect
@@ -87,20 +87,20 @@ require (
8787
github.com/tidwall/sjson v1.2.5 // indirect
8888
github.com/urfave/cli v1.22.14 // indirect
8989
go.opencensus.io v0.24.0 // indirect
90-
golang.org/x/crypto v0.13.0 // indirect
91-
golang.org/x/net v0.15.0 // indirect
90+
golang.org/x/crypto v0.14.0 // indirect
91+
golang.org/x/net v0.17.0 // indirect
9292
golang.org/x/oauth2 v0.12.0 // indirect
9393
golang.org/x/sync v0.3.0 // indirect
94-
golang.org/x/sys v0.12.0 // indirect
95-
golang.org/x/term v0.12.0 // indirect
94+
golang.org/x/sys v0.13.0 // indirect
95+
golang.org/x/term v0.13.0 // indirect
9696
golang.org/x/text v0.13.0 // indirect
9797
golang.org/x/time v0.0.0-20220609170525-579cf78fd858 // indirect
98-
google.golang.org/api v0.141.0 // indirect
98+
google.golang.org/api v0.146.0 // indirect
9999
google.golang.org/appengine v1.6.7 // indirect
100-
google.golang.org/genproto v0.0.0-20230822172742-b8732ec3820d // indirect
101-
google.golang.org/genproto/googleapis/api v0.0.0-20230803162519-f966b187b2e5 // indirect
102-
google.golang.org/genproto/googleapis/rpc v0.0.0-20230913181813-007df8e322eb // indirect
103-
google.golang.org/grpc v1.58.1 // indirect
100+
google.golang.org/genproto v0.0.0-20231002182017-d307bd883b97 // indirect
101+
google.golang.org/genproto/googleapis/api v0.0.0-20230920204549-e6e6cdab5c13 // indirect
102+
google.golang.org/genproto/googleapis/rpc v0.0.0-20231009173412-8bfb1ae86b6c // indirect
103+
google.golang.org/grpc v1.58.3 // indirect
104104
google.golang.org/protobuf v1.31.0 // indirect
105105
gopkg.in/ini.v1 v1.67.0 // indirect
106106
)

0 commit comments

Comments
 (0)