Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the go-deps group across 1 directory with 3 updates #1192

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 1, 2024

Bumps the go-deps group with 2 updates in the / directory: filippo.io/age and github.com/getsops/sops/v3.

Updates filippo.io/age from 1.1.1 to 1.2.0

Release notes

Sourced from filippo.io/age's releases.

age v1.2.0

A small release to build the release binaries with a more recent Go toolchain, and to fix a couple CLI edge cases (FiloSottile/age#491, FiloSottile/age#555).

The Go module now exposes a plugin package that provides an age plugin client. That is, Recipient and Identity implementations that invoke a plugin binary, allowing the use of age plugins in Go programs.

Finally, Recipients can now return a set of "labels" by implementing RecipientWithLabels. This allows replicating the special behavior of the scrypt Recipient in third-party Recipients, or applying policy useful for authenticated or post-quantum Recipients.

// RecipientWithLabels can be optionally implemented by a Recipient, in which
// case Encrypt will use WrapWithLabels instead of Wrap.
//
// Encrypt will succeed only if the labels returned by all the recipients
// (assuming the empty set for those that don't implement RecipientWithLabels)
// are the same.
//
// This can be used to ensure a recipient is only used with other recipients
// with equivalent properties (for example by setting a "postquantum" label) or
// to ensure a recipient is always used alone (by returning a random label, for
// example to preserve its authentication properties).
type RecipientWithLabels interface {
	WrapWithLabels(fileKey []byte) (s []*Stanza, labels []string, err error)
}
Commits
  • bbe6ce5 .github/workflows: update artifacts Actions
  • 1e1bada .github/workflows: go-version stable, not latest
  • 2293a9a .github/workflows: use latest Go for bootstrap
  • 01fe9cd README: add pkgx installation instructions
  • bd0511b cmd/age: detect output/input file reuse when possible
  • febaade cmd/age: create file for empty decryptions
  • 0a40718 doc: regenerate groff and html man pages
  • 7ed4868 .github/workflows: apparently setup-go has no defaults
  • 2a761fc .github/workflows: update GitHub Actions
  • 98e7afc all: upgrade dependencies
  • Additional commits viewable in compare view

Updates github.com/getsops/sops/v3 from 3.8.1 to 3.9.0

Release notes

Sourced from github.com/getsops/sops/v3's releases.

v3.9.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:

# Download the binary
curl -LO https://github.com/getsops/sops/releases/download/v3.9.0/sops-v3.9.0.linux.amd64
Move the binary in to your PATH
mv sops-v3.9.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.9.0/sops-v3.9.0.checksums.txt
curl -LO https://github.com/getsops/sops/releases/download/v3.9.0/sops-v3.9.0.checksums.pem
curl -LO https://github.com/getsops/sops/releases/download/v3.9.0/sops-v3.9.0.checksums.sig
Verify the checksums file
cosign verify-blob sops-v3.9.0.checksums.txt 
--certificate sops-v3.9.0.checksums.pem 
--signature sops-v3.9.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.9.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.9.0.intoto.jsonl. To verify the provenance of an artifact, you can utilize the slsa-verifier tool:

</tr></table> 

... (truncated)

Changelog

Sourced from github.com/getsops/sops/v3's changelog.

3.9.0

Features:

  • Add --mac-only-encrypted to compute MAC only over values which end up encrypted (#973)
  • Allow configuration of indentation for YAML and JSON stores (#1273, #1372)
  • Introduce a --pristine flag to sops exec-env (#912)
  • Allow to pass multiple paths to sops updatekeys (#1274)
  • Allow to override fileName with different value (#1332)
  • Sort masterkeys according to --decryption-order (#1345)
  • Add separate subcommands for encryption, decryption, rotating, editing, and setting values (#1391)
  • Add filestatus command (#545)
  • Add command unset (#1475)
  • Merge key for key groups and make keys unique (#1493)
  • Support using comments to select parts to encrypt (#974, #1392)

Deprecations:

  • Deprecate the --background option to exec-env and exec-file (#1379)

Improvements:

Bug fixes:

  • Respect aws_profile from keygroup config (#1049)
  • Fix a bug where not having a config results in a panic (#1371)
  • Consolidate Flatten/Unflatten pre/post processing (#1356)
  • INI and DotEnv stores: shamir_threshold is an integer (#1394)
  • Make check whether file contains invalid keys for encryption dependent on output store (#1393)
  • Do not panic if updatekeys is used with a config that has no creation rules defined (#1506)
  • exec-file: if --filename is used, use the provided filename without random suffix (#1474)
  • Do not use DotEnv store for exec-env, but specialized environment serializing code (#1436)
  • Decryption: do not fail if no matching creation_rule is present in config file (#1434)

Project changes:

Commits
  • 1925952 Merge pull request #1546 from felixfontein/release-3.9.0
  • 3264874 Bump version to 3.9.0.
  • c5650fd Add 3.9.0 changelog.
  • 61a8d6d Merge pull request #1545 from felixfontein/deps
  • 822b5cc Update all go deps with 'go get -t -u ./...'.
  • 72b7d5b Merge pull request #1493 from jonasbadstuebner/feature-merge-key-groups
  • a1738b7 feat(config): merge key_groups
  • aa800f1 Merge pull request #1392 from felixfontein/pr-974-continue
  • 6cfb8ed Update documentation.
  • f6ece99 Add check to avoid that UnencryptedCommentRegex matches encrypted comments.
  • Additional commits viewable in compare view

Updates golang.org/x/net from 0.24.0 to 0.26.0

Commits
  • 66e838c go.mod: update golang.org/x dependencies
  • 6249541 http2: avoid race in server handler SetReadDeadine/SetWriteDeadline
  • 603e3e6 quic: disable X25519Kyber768Draft00 in tests
  • 67e8d0c http2: report an error if goroutines outlive serverTester tests
  • 5608279 http2: avoid corruption in priority write scheduler
  • 0d515a5 http2: factor out frame read/write test functions
  • 9f5b79b http2: drop unused retry function
  • 03c24c2 http2: use synthetic time in server tests
  • 022530c http2: add a more full-featured test net.Conn
  • 410d19e http2: avoid racy access to clientStream.requestedGzip
  • Additional commits viewable in compare view

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


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the go-deps group with 2 updates in the / directory: [filippo.io/age](https://github.com/FiloSottile/age) and [github.com/getsops/sops/v3](https://github.com/getsops/sops).


Updates `filippo.io/age` from 1.1.1 to 1.2.0
- [Release notes](https://github.com/FiloSottile/age/releases)
- [Commits](FiloSottile/age@v1.1.1...v1.2.0)

Updates `github.com/getsops/sops/v3` from 3.8.1 to 3.9.0
- [Release notes](https://github.com/getsops/sops/releases)
- [Changelog](https://github.com/getsops/sops/blob/main/CHANGELOG.rst)
- [Commits](getsops/sops@v3.8.1...v3.9.0)

Updates `golang.org/x/net` from 0.24.0 to 0.26.0
- [Commits](golang/net@v0.24.0...v0.26.0)

---
updated-dependencies:
- dependency-name: filippo.io/age
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-deps
- dependency-name: github.com/getsops/sops/v3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-deps
- dependency-name: golang.org/x/net
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency label Jul 1, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Jul 12, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Jul 12, 2024
@dependabot dependabot bot deleted the dependabot/go_modules/go-deps-196225fd11 branch July 12, 2024 02:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants