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

fix(deps): update non-minor dependencies #15

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 5, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
github.com/getsops/sops/v3 v3.9.0 -> v3.9.1 age adoption passing confidence require patch
github.com/sap/component-operator-runtime v0.3.36 -> v0.3.42 age adoption passing confidence require patch
github.com/sap/go-generics v0.2.19 -> v0.2.20 age adoption passing confidence require patch
go (source) 1.23.0 -> 1.23.2 age adoption passing confidence golang patch
k8s.io/apiextensions-apiserver v0.31.0 -> v0.31.1 age adoption passing confidence require patch
k8s.io/apimachinery v0.31.0 -> v0.31.1 age adoption passing confidence require patch
k8s.io/client-go v0.31.0 -> v0.31.1 age adoption passing confidence require patch
k8s.io/code-generator v0.31.0 -> v0.31.1 age adoption passing confidence require patch
k8s.io/kube-aggregator v0.31.0 -> v0.31.1 age adoption passing confidence require patch
sigs.k8s.io/controller-runtime/tools/setup-envtest 3854680 -> 4cae9df age adoption passing confidence require digest
sigs.k8s.io/controller-tools v0.16.2 -> v0.16.3 age adoption passing confidence require patch

Release Notes

getsops/sops (github.com/getsops/sops/v3)

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

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

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

### Verify the provenance of the artifact
slsa-verifier verify-artifact <artifact> \
  --provenance-path sops-v3.9.1.intoto.jsonl \
  --source-uri github.com/getsops/sops \
  --source-tag v3.9.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.9.1
  • ghcr.io/getsops/sops:v3.9.1-alpine
Quay.io
  • quay.io/getsops/sops:v3.9.1
  • quay.io/getsops/sops:v3.9.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.9.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

New Contributors

Full Changelog: getsops/sops@v3.9.0...v3.9.1

sap/component-operator-runtime (github.com/sap/component-operator-runtime)

v0.3.42

Compare Source

v0.3.41

Compare Source

v0.3.40

Compare Source

v0.3.39

Compare Source

v0.3.38

Compare Source

v0.3.37

Compare Source

sap/go-generics (github.com/sap/go-generics)

v0.2.20

Compare Source

Add slice function

func Count[T any](s []T, f func(T) bool) int

and map function

func Count[K comparable, V any](m map[K]V, f func(K, V) bool) int
golang/go (go)

v1.23.2

v1.23.1

kubernetes/apiextensions-apiserver (k8s.io/apiextensions-apiserver)

v0.31.1

Compare Source

kubernetes/apimachinery (k8s.io/apimachinery)

v0.31.1

Compare Source

kubernetes/client-go (k8s.io/client-go)

v0.31.1

Compare Source

kubernetes/code-generator (k8s.io/code-generator)

v0.31.1

Compare Source

kubernetes/kube-aggregator (k8s.io/kube-aggregator)

v0.31.1

Compare Source

kubernetes-sigs/controller-tools (sigs.k8s.io/controller-tools)

v0.16.3

Compare Source

Published binaries on previous v0.16.x releases were reporting an incorrect version.

What's Changed

Dependencies

New Contributors

Full Changelog: kubernetes-sigs/controller-tools@v0.16.2...v0.16.3


Configuration

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

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Sep 5, 2024
Copy link
Contributor Author

renovate bot commented Sep 9, 2024

ℹ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 57 additional dependencies were updated

Details:

Package Change
cloud.google.com/go v0.115.0 -> v0.115.1
cloud.google.com/go/auth v0.6.0 -> v0.9.7
cloud.google.com/go/auth/oauth2adapt v0.2.2 -> v0.2.4
cloud.google.com/go/compute/metadata v0.3.0 -> v0.5.2
cloud.google.com/go/iam v1.1.8 -> v1.2.1
cloud.google.com/go/kms v1.18.0 -> v1.20.0
cloud.google.com/go/longrunning v0.5.7 -> v0.6.1
cloud.google.com/go/storage v1.42.0 -> v1.43.0
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.12.0 -> v1.14.0
github.com/Azure/azure-sdk-for-go/sdk/internal v1.9.0 -> v1.10.0
github.com/ProtonMail/go-crypto v1.1.0-alpha.3-proton -> v1.1.0-beta.0-proton
github.com/aws/aws-sdk-go-v2 v1.30.0 -> v1.31.0
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.2 -> v1.6.5
github.com/aws/aws-sdk-go-v2/config v1.27.21 -> v1.27.39
github.com/aws/aws-sdk-go-v2/credentials v1.17.21 -> v1.17.37
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.8 -> v1.16.14
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.17.1 -> v1.17.25
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.12 -> v1.3.18
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.12 -> v2.6.18
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.0 -> v1.8.1
github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.12 -> v1.3.18
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.2 -> v1.11.5
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.3.14 -> v1.3.20
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.14 -> v1.11.20
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.17.12 -> v1.17.18
github.com/aws/aws-sdk-go-v2/service/kms v1.34.1 -> v1.36.3
github.com/aws/aws-sdk-go-v2/service/s3 v1.56.1 -> v1.63.3
github.com/aws/aws-sdk-go-v2/service/sso v1.21.1 -> v1.23.3
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.25.1 -> v1.27.3
github.com/aws/aws-sdk-go-v2/service/sts v1.29.1 -> v1.31.3
github.com/aws/smithy-go v1.20.2 -> v1.21.0
github.com/cloudflare/circl v1.3.9 -> v1.4.0
github.com/cpuguy83/go-md2man/v2 v2.0.4 -> v2.0.5
github.com/go-jose/go-jose/v4 v4.0.2 -> v4.0.4
github.com/google/s2a-go v0.1.7 -> v0.1.8
github.com/googleapis/enterprise-certificate-proxy v0.3.2 -> v0.3.4
github.com/googleapis/gax-go/v2 v2.12.5 -> v2.13.0
github.com/hashicorp/go-sockaddr v1.0.6 -> v1.0.7
github.com/hashicorp/vault/api v1.14.0 -> v1.15.0
github.com/prometheus/client_golang v1.20.2 -> v1.20.4
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.53.0 -> v0.55.0
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.53.0 -> v0.55.0
go.opentelemetry.io/otel v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/metric v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/trace v1.28.0 -> v1.30.0
golang.org/x/crypto v0.26.0 -> v0.27.0
golang.org/x/net v0.28.0 -> v0.29.0
golang.org/x/oauth2 v0.21.0 -> v0.23.0
golang.org/x/sys v0.24.0 -> v0.25.0
golang.org/x/term v0.23.0 -> v0.24.0
golang.org/x/text v0.17.0 -> v0.18.0
google.golang.org/api v0.186.0 -> v0.199.0
google.golang.org/genproto v0.0.0-20240624140628-dc46fd24d27d -> v0.0.0-20240930140551-af27646dc61f
google.golang.org/genproto/googleapis/api v0.0.0-20240624140628-dc46fd24d27d -> v0.0.0-20240930140551-af27646dc61f
google.golang.org/genproto/googleapis/rpc v0.0.0-20240701130421-f6361c86f094 -> v0.0.0-20240930140551-af27646dc61f
google.golang.org/grpc v1.65.0 -> v1.67.1
k8s.io/api v0.31.0 -> v0.31.1

@renovate renovate bot changed the title chore(deps): update dependency go to v1.23.1 fix(deps): update non-minor dependencies Sep 9, 2024
@renovate renovate bot force-pushed the renovate/non-minor-deps branch 2 times, most recently from edc6bf0 to 9ca3886 Compare September 16, 2024 10:59
@renovate renovate bot force-pushed the renovate/non-minor-deps branch 5 times, most recently from 2f72222 to 92cdbce Compare September 30, 2024 07:18
@renovate renovate bot force-pushed the renovate/non-minor-deps branch 6 times, most recently from 9df101b to 396919e Compare October 6, 2024 18:38
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 file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants