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 #27

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 23, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
github.com/getsops/sops/v3 v3.9.2 -> v3.9.3 age adoption passing confidence require patch
github.com/sap/component-operator-runtime v0.3.59 -> v0.3.64 age adoption passing confidence require patch
github.com/sap/go-generics v0.2.21 -> v0.2.24 age adoption passing confidence require patch
go (source) 1.23.4 -> 1.23.5 age adoption passing confidence golang patch
golang 1.23.4 -> 1.23.5 age adoption passing confidence stage patch
k8s.io/apiextensions-apiserver v0.32.0 -> v0.32.1 age adoption passing confidence require patch
k8s.io/apimachinery v0.32.0 -> v0.32.1 age adoption passing confidence require patch
k8s.io/client-go v0.32.0 -> v0.32.1 age adoption passing confidence require patch
k8s.io/code-generator v0.32.0 -> v0.32.1 age adoption passing confidence require patch
k8s.io/kube-aggregator v0.32.0 -> v0.32.1 age adoption passing confidence require patch
sigs.k8s.io/controller-runtime/tools/setup-envtest aea2e32 -> aafb269 age adoption passing confidence require digest

Release Notes

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

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: getsops/sops@v3.9.2...v3.9.3

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

v0.3.64

Compare Source

v0.3.63

Compare Source

v0.3.62

Compare Source

Incompatible changes

Previously, the forced re-apply of dependent objects was based on a timestamp that was coded into the object digest. As a consequence, the digest annotation of every dependent object was updated more or less every 60 minutes. Which caused problems (e.g. with crossplane).

From this release onwards, the force-re-apply mechanism is based on the new status field status.inventory[].lastAppliedAt.

Note: YOU MUST, REALLY MUST, regenerate your component CRD when using a version of component-operator-runtime containing this release, and ship the module update together with the updated CRD!!!

v0.3.61

Compare Source

v0.3.60

Compare Source

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

v0.2.24

Compare Source

v0.2.23

Compare Source

v0.2.22

Compare Source

golang/go (go)

v1.23.5

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

v0.32.1

Compare Source

kubernetes/apimachinery (k8s.io/apimachinery)

v0.32.1

Compare Source

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

v0.32.1

Compare Source

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

v0.32.1

Compare Source

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

v0.32.1

Compare Source


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 Dec 23, 2024
Copy link
Contributor Author

renovate bot commented Dec 23, 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):

  • 9 additional dependencies were updated

Details:

Package Change
golang.org/x/crypto v0.29.0 -> v0.31.0
golang.org/x/mod v0.21.0 -> v0.22.0
golang.org/x/net v0.31.0 -> v0.33.0
golang.org/x/sync v0.9.0 -> v0.10.0
golang.org/x/sys v0.27.0 -> v0.28.0
golang.org/x/term v0.26.0 -> v0.27.0
golang.org/x/text v0.20.0 -> v0.21.0
golang.org/x/tools v0.26.0 -> v0.28.0
google.golang.org/protobuf v1.35.2 -> v1.36.1

@renovate renovate bot force-pushed the renovate/non-minor-deps branch from 69cf11c to 5184f48 Compare December 27, 2024 18:25
@renovate renovate bot changed the title fix(deps): update module github.com/sap/component-operator-runtime to v0.3.60 fix(deps): update non-minor dependencies Dec 27, 2024
@renovate renovate bot force-pushed the renovate/non-minor-deps branch 4 times, most recently from 4085852 to c64971c Compare December 31, 2024 13:38
Copy link
Contributor Author

renovate bot commented Dec 31, 2024

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: go.sum
Command failed: go get -d -t ./...
go: -d flag is deprecated. -d=true is a no-op
warning: ignoring symlink /tmp/renovate/repos/github/SAP/component-operator/chart/crds
go: downloading k8s.io/apiextensions-apiserver v0.32.1
go: downloading k8s.io/apimachinery v0.32.1
go: downloading k8s.io/client-go v0.32.1
go: downloading k8s.io/kube-aggregator v0.32.1
go: downloading sigs.k8s.io/controller-runtime v0.19.4
go: downloading github.com/sap/component-operator-runtime v0.3.64
go: downloading filippo.io/age v1.2.1
go: downloading github.com/getsops/sops/v3 v3.9.3
go: downloading github.com/pkg/errors v0.9.1
go: downloading github.com/drone/envsubst v1.0.3
go: downloading github.com/sap/go-generics v0.2.24
go: downloading sigs.k8s.io/yaml v1.4.0
go: downloading github.com/fluxcd/source-controller/api v1.4.1
go: downloading github.com/go-logr/logr v1.4.2
go: downloading github.com/gogo/protobuf v1.3.2
go: downloading k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738
go: downloading k8s.io/klog/v2 v2.130.1
go: downloading sigs.k8s.io/structured-merge-diff/v4 v4.5.0
go: downloading k8s.io/api v0.32.1
go: downloading github.com/evanphx/json-patch/v5 v5.9.0
go: downloading github.com/go-logr/zapr v1.3.0
go: downloading go.uber.org/zap v1.27.0
go: downloading github.com/prometheus/client_golang v1.20.5
go: downloading github.com/google/gofuzz v1.2.0
go: downloading golang.org/x/crypto v0.31.0
go: downloading github.com/fatih/color v1.18.0
go: downloading github.com/goware/prefixer v0.0.0-20160118172347-395022866408
go: downloading github.com/mitchellh/go-wordwrap v1.0.1
go: downloading github.com/sirupsen/logrus v1.9.3
go: downloading golang.org/x/net v0.33.0
go: downloading github.com/urfave/cli v1.22.16
go: downloading golang.org/x/term v0.27.0
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading google.golang.org/grpc v1.69.2
go: downloading google.golang.org/protobuf v1.36.1
go: downloading github.com/ProtonMail/go-crypto v1.1.3
go: downloading github.com/getsops/gopgagent v0.0.0-20241224165529-7044f28e491e
go: downloading github.com/Masterminds/sprig/v3 v3.3.0
go: downloading sigs.k8s.io/kustomize/api v0.18.0
go: downloading sigs.k8s.io/kustomize/kyaml v0.18.1
go: downloading github.com/fluxcd/pkg/apis/acl v0.3.0
go: downloading github.com/fluxcd/pkg/apis/meta v1.6.1
go: downloading golang.org/x/time v0.9.0
go: downloading golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56
go: downloading github.com/golang/protobuf v1.5.4
go: downloading github.com/google/gnostic-models v0.6.8
go: downloading github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822
go: downloading gopkg.in/evanphx/json-patch.v4 v4.12.0
go: downloading github.com/iancoleman/strcase v0.3.0
go: downloading sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3
go: downloading github.com/json-iterator/go v1.1.12
go: downloading k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f
go: downloading go.uber.org/multierr v1.11.0
go: downloading github.com/klauspost/compress v1.17.9
go: downloading github.com/prometheus/client_model v0.6.1
go: downloading github.com/prometheus/common v0.55.0
go: downloading github.com/fsnotify/fsnotify v1.7.0
go: downloading github.com/hashicorp/go-multierror v1.1.1
go: downloading sigs.k8s.io/cli-utils v0.37.2
go: downloading gopkg.in/inf.v0 v0.9.1
go: downloading golang.org/x/sys v0.28.0
go: downloading github.com/mattn/go-colorable v0.1.13
go: downloading github.com/mattn/go-isatty v0.0.20
go: downloading github.com/lib/pq v1.10.9
go: downloading github.com/aws/aws-sdk-go-v2 v1.32.7
go: downloading github.com/aws/aws-sdk-go-v2/config v1.28.7
go: downloading github.com/aws/aws-sdk-go-v2/credentials v1.17.48
go: downloading github.com/aws/aws-sdk-go-v2/service/kms v1.37.8
go: downloading github.com/aws/aws-sdk-go-v2/service/sts v1.33.3
go: downloading gopkg.in/ini.v1 v1.67.0
go: downloading github.com/blang/semver v3.5.1+incompatible
go: downloading github.com/hashicorp/go-cleanhttp v0.5.2
go: downloading github.com/cpuguy83/go-md2man/v2 v2.0.6
go: downloading github.com/Azure/azure-sdk-for-go/sdk/azcore v1.16.0
go: downloading github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.8.0
go: downloading github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azkeys v1.3.0
go: downloading cloud.google.com/go/kms v1.20.3
go: downloading cloud.google.com/go v0.117.0
go: downloading google.golang.org/api v0.214.0
go: downloading github.com/hashicorp/vault/api v1.15.0
go: downloading github.com/mitchellh/go-homedir v1.1.0
go: downloading cloud.google.com/go/storage v1.49.0
go: downloading github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.17.44
go: downloading github.com/aws/aws-sdk-go-v2/service/s3 v1.71.1
go: downloading github.com/google/go-cmp v0.6.0
go: downloading google.golang.org/genproto/googleapis/rpc v0.0.0-20241223144023-3abc09e42ca8
go: downloading google.golang.org/genproto v0.0.0-20241223144023-3abc09e42ca8
go: downloading dario.cat/mergo v1.0.1
go: downloading github.com/Masterminds/goutils v1.1.1
go: downloading github.com/Masterminds/semver/v3 v3.3.0
go: downloading github.com/google/uuid v1.6.0
go: downloading github.com/huandu/xstrings v1.5.0
go: downloading github.com/mitchellh/copystructure v1.2.0
go: downloading github.com/shopspring/decimal v1.4.0
go: downloading github.com/spf13/cast v1.7.1
go: downloading gomodules.xyz/jsonpatch/v2 v2.4.0
go: downloading github.com/fxamacker/cbor/v2 v2.7.0
go: downloading golang.org/x/oauth2 v0.24.0
go: downloading github.com/beorn7/perks v1.0.1
go: downloading github.com/cespare/xxhash/v2 v2.3.0
go: downloading github.com/prometheus/procfs v0.15.1
go: downloading github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
go: downloading github.com/modern-go/reflect2 v1.0.2
go: downloading github.com/spf13/pflag v1.0.5
go: downloading github.com/go-openapi/jsonreference v0.20.4
go: downloading github.com/go-openapi/swag v0.23.0
go: downloading github.com/hashicorp/errwrap v1.1.0
go: downloading github.com/aws/smithy-go v1.22.1
go: downloading github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.22
go: downloading github.com/aws/aws-sdk-go-v2/internal/ini v1.8.1
go: downloading github.com/aws/aws-sdk-go-v2/service/sso v1.24.8
go: downloading github.com/aws/aws-sdk-go-v2/service/ssooidc v1.28.7
go: downloading github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.26
go: downloading github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.1
go: downloading github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.7
go: downloading github.com/russross/blackfriday/v2 v2.1.0
go: downloading github.com/Azure/azure-sdk-for-go/sdk/internal v1.10.0
go: downloading github.com/AzureAD/microsoft-authentication-library-for-go v1.3.2
go: downloading github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/internal v1.1.0
go: downloading cloud.google.com/go/iam v1.3.0
go: downloading cloud.google.com/go/longrunning v0.6.3
go: downloading github.com/googleapis/gax-go/v2 v2.14.1
go: downloading google.golang.org/genproto/googleapis/api v0.0.0-20241223144023-3abc09e42ca8
go: downloading cloud.google.com/go/auth v0.13.0
go: downloading github.com/cenkalti/backoff/v4 v4.3.0
go: downloading github.com/go-jose/go-jose/v4 v4.0.4
go: downloading github.com/hashicorp/go-retryablehttp v0.7.7
go: downloading github.com/hashicorp/go-rootcerts v1.0.2
go: downloading github.com/hashicorp/go-secure-stdlib/parseutil v0.1.8
go: downloading github.com/hashicorp/go-secure-stdlib/strutil v0.1.2
go: downloading github.com/hashicorp/hcl v1.0.0
go: downloading github.com/mitchellh/mapstructure v1.5.0
go: downloading cloud.google.com/go/compute/metadata v0.6.0
go: downloading github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.49.0
go: downloading go.opentelemetry.io/contrib/detectors/gcp v1.33.0
go: downloading go.opentelemetry.io/otel v1.33.0
go: downloading go.opentelemetry.io/otel/sdk/metric v1.33.0
go: downloading go.opentelemetry.io/otel/sdk v1.33.0
go: downloading google.golang.org/grpc/stats/opentelemetry v0.0.0-20240907200651-3ffb98b2c93a
go: downloading github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.7
go: downloading github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.26
go: downloading github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.4.7
go: downloading github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.7
go: downloading github.com/cloudflare/circl v1.5.0
go: downloading github.com/mitchellh/reflectwalk v1.0.2
go: downloading github.com/blang/semver/v4 v4.0.0
go: downloading github.com/go-errors/errors v1.5.1
go: downloading golang.org/x/text v0.21.0
go: downloading github.com/x448/float16 v0.8.4
go: downloading github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc
go: downloading github.com/go-openapi/jsonpointer v0.21.0
go: downloading github.com/mailru/easyjson v0.7.7
go: downloading github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.26
go: downloading github.com/kylelemons/godebug v1.1.0
go: downloading github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c
go: downloading cloud.google.com/go/auth/oauth2adapt v0.2.6
go: downloading go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.58.0
go: downloading go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.58.0
go: downloading github.com/google/s2a-go v0.1.8
go: downloading github.com/hashicorp/go-sockaddr v1.0.7
go: downloading github.com/ryanuber/go-glob v1.0.0
go: downloading go.opentelemetry.io/otel/trace v1.33.0
go: downloading cloud.google.com/go/monitoring v1.22.0
go: downloading github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.49.0
go: downloading github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.25.0
go: downloading go.opentelemetry.io/otel/metric v1.33.0
go: downloading github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00
go: downloading github.com/xlab/treeprint v1.2.0
go: downloading github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510
go: downloading github.com/emicklei/go-restful/v3 v3.11.2
go: downloading github.com/josharian/intern v1.0.0
go: downloading github.com/golang-jwt/jwt/v5 v5.2.1
go: downloading github.com/felixge/httpsnoop v1.0.4
go: downloading github.com/googleapis/enterprise-certificate-proxy v0.3.4
go: downloading github.com/go-logr/stdr v1.2.2
go: downloading go.opentelemetry.io/auto/sdk v1.1.0
go: downloading github.com/envoyproxy/go-control-plane v0.13.1
go: downloading github.com/cncf/xds/go v0.0.0-20241223141626-cff3c89139a3
go: downloading github.com/envoyproxy/protoc-gen-validate v1.1.0
go: downloading github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10
go: downloading golang.org/x/sync v0.10.0
go: downloading cel.dev/expr v0.19.1
go: downloading github.com/census-instrumentation/opencensus-proto v0.4.1
go: downloading google.golang.org/grpc v1.69.4
go: downloading google.golang.org/grpc/stats/opentelemetry v0.0.0-20241028142157-ada6787961b3
go: github.com/sap/component-operator/internal/decrypt imports
	github.com/getsops/sops/v3/config imports
	github.com/getsops/sops/v3/publish imports
	cloud.google.com/go/storage imports
	google.golang.org/grpc/stats/opentelemetry: ambiguous import: found package google.golang.org/grpc/stats/opentelemetry in multiple modules:
	google.golang.org/grpc v1.69.2 (/tmp/renovate/cache/others/go/pkg/mod/google.golang.org/[email protected]/stats/opentelemetry)
	google.golang.org/grpc/stats/opentelemetry v0.0.0-20241028142157-ada6787961b3 (/tmp/renovate/cache/others/go/pkg/mod/google.golang.org/grpc/stats/[email protected])
go: downloading github.com/rogpeppe/go-internal v1.13.1

@renovate renovate bot force-pushed the renovate/non-minor-deps branch 7 times, most recently from 0b4d935 to 40336be Compare January 7, 2025 20:14
@renovate renovate bot force-pushed the renovate/non-minor-deps branch 10 times, most recently from 490294f to b77571e Compare January 14, 2025 18:00
@renovate renovate bot force-pushed the renovate/non-minor-deps branch 3 times, most recently from 10ea0fc to c253c32 Compare January 17, 2025 01:17
@renovate renovate bot force-pushed the renovate/non-minor-deps branch from c253c32 to e155fea Compare January 19, 2025 21:47
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