Skip to content

Update go modules (release-v0.6) (minor)#3142

Open
renovate[bot] wants to merge 1 commit intorelease-v0.6from
renovate/release-v0.6-go-modules
Open

Update go modules (release-v0.6) (minor)#3142
renovate[bot] wants to merge 1 commit intorelease-v0.6from
renovate/release-v0.6-go-modules

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Mar 1, 2026

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
cuelang.org/go v0.11.1v0.16.0 age adoption passing confidence require minor
github.com/cyberphone/json-canonicalization ba74d4419d51d7 age adoption passing confidence require digest
github.com/daixiang0/gci v0.13.5v0.14.0 age adoption passing confidence require minor
github.com/go-git/go-billy/v5 v5.6.2v5.8.0 age adoption passing confidence require minor
github.com/go-git/go-git/v5 v5.16.5v5.17.0 age adoption passing confidence require minor
github.com/go-openapi/strfmt v0.23.0v0.26.1 age adoption passing confidence require minor
github.com/golangci/golangci-lint v1.63.4v1.64.8 age adoption passing confidence require minor
github.com/google/addlicense v1.1.1v1.2.0 age adoption passing confidence require minor
github.com/google/go-containerregistry v0.20.2v0.21.2 age adoption passing confidence require minor
github.com/in-toto/in-toto-golang v0.9.0v0.10.0 age adoption passing confidence require minor
github.com/in-toto/in-toto-golang v0.9.1-0.20240317085821-8e2966059a09v0.10.0 age adoption passing confidence require minor
github.com/konflux-ci/application-api e7eb2ec5154ad2 age adoption passing confidence require digest
github.com/open-policy-agent/conftest v0.55.0v0.67.0 age adoption passing confidence require minor
github.com/pkg/diff 20ebb0f4e6772a age adoption passing confidence require digest
github.com/secure-systems-lab/go-securesystemslib v0.9.0v0.10.0 age adoption passing confidence require minor
github.com/sigstore/cosign/v2 v2.4.1v2.6.2 age adoption passing confidence require minor
github.com/sigstore/rekor v1.3.6v1.5.1 age adoption passing confidence require minor
github.com/sigstore/sigstore v1.8.15v1.10.4 age adoption passing confidence require minor
github.com/spf13/afero v1.11.0v1.15.0 age adoption passing confidence require minor
github.com/spf13/cobra v1.9.1v1.10.2 age adoption passing confidence require minor
github.com/tektoncd/chains v0.22.2v0.26.2 age adoption passing confidence require minor
github.com/tektoncd/cli v0.38.0v0.44.0 age adoption passing confidence require minor
github.com/testcontainers/testcontainers-go v0.34.0v0.41.0 age adoption passing confidence require minor
github.com/wiremock/go-wiremock v1.11.0v1.15.0 age adoption passing confidence require minor
golang.org/x/exp 2d47ceb7ab1446 age adoption passing confidence require digest
golang.org/x/net v0.47.0v0.52.0 age adoption passing confidence require minor
golang.org/x/sync v0.18.0v0.20.0 age adoption passing confidence require minor
helm.sh/helm/v3 v3.16.4v3.20.1 age adoption passing confidence require minor
k8s.io/api v0.34.2v0.35.2 age adoption passing confidence require minor
k8s.io/apiextensions-apiserver v0.34.2v0.35.2 age adoption passing confidence require minor
k8s.io/apimachinery v0.34.2v0.35.2 age adoption passing confidence require minor
k8s.io/client-go v0.34.2v0.35.2 age adoption passing confidence require minor
k8s.io/klog/v2 v2.130.1v2.140.0 age adoption passing confidence require minor
k8s.io/kube-openapi f3f2b995b3e3fd age adoption passing confidence require digest
k8s.io/kubernetes v1.34.2v1.35.2 age adoption passing confidence require minor
oras.land/oras-go/v2 v2.5.0v2.6.0 age adoption passing confidence require minor
sigs.k8s.io/kind v0.26.0v0.31.0 age adoption passing confidence require minor
sigs.k8s.io/kustomize/api v0.20.1v0.21.1 age adoption passing confidence require minor
sigs.k8s.io/kustomize/kustomize/v5 v5.7.1v5.8.1 age adoption passing confidence require minor
sigs.k8s.io/kustomize/kyaml v0.20.1v0.21.1 age adoption passing confidence require minor

Warning

Some dependencies could not be looked up. Check the warning logs for more information.


Release Notes

cue-lang/cue (cuelang.org/go)

v0.16.0

Compare Source

Changes which may break some users are marked below with: ⚠️

Language

As a reminder, we have two ongoing language experiments since v0.15; a replacement for struct embedding and a rework of aliases. Please give these a try and report any issues or feedback!

⚠️ The cmdreferencepkg global experiment is now stable, meaning that CUE_EXPERIMENT=cmdreferencepkg is always enabled.

#"""# is now accepted as a string literal quoting a double quote, ".

Multiline string literals now require a trailing newline, matching the language spec.

The new try experiment

This release introduces the try experiment, which adds a try clause in comprehensions as well as the use of ? in field selectors. This addition to the language is intended to provide a more concise syntax for handling optional fields without the risk of unintentionally swallowing errors.

This experiment also introduces the else clause for if and try comprehensions, and the fallback clause for for comprehensions, which trigger when a comprehension produces zero values.

You can try this experiment by following our how-to guides on the try clause and the else clause. For more information, see the proposal on GitHub and the spec change patch.

Evaluator

Performance

Further improve the use of caching in the typochecker algorithm; this provides speed-ups of up to 80% on some large projects.

Very large structs (tested with 20,000 fields) are up to 80% faster now, as we were repeating some work unnecessarily.

A great deal of effort has gone into reducing the allocations and memory usage across a number of projects. For some of these, memory usage is down by as much as 60%.

These improvements were possible thanks to our Unity service, letting us analyze CUE's performance and test for regressions on third party projects. Contact @​mvdan on Discord, Slack, or via the Unity page to ensure that your project is included or you are running into slowness.

A number of changes were made to improve support for using cue.Values concurrently; see Issue #​2733 for more details and ongoing progress.

Other changes

Fix a regression introduced in v0.13 where the or built-in with literal arguments could stop behaving like a disjunction.

A number of panics and other bugs in the evaluator which were reported since v0.15.0 have been fixed; thank you to all who reported these.

cmd/cue

Add support for $DOCKER_AUTH_CONFIG to directly provide the contents of $DOCKER_CONFIG/config.json to authenticate with module registries, matching Docker's current behavior.

The --outfile flag now works when given non-regular files such as named pipes or sockets.

⚠️ cue mod publish no longer ignores sub-directories containing a go.mod file.

⚠️ Using cue inside the cue.mod directory now fails consistently with a clear error message to not place CUE code there. Previously, some commands worked while others failed with confusing errors.

⚠️ The global --verbose and --trace flags have been moved to the cue get go and cue trim commands respectively, as they were the only ones actually using those flags, and this could be confusing to users.

Fix a bug where loading ./...:pkgname could lead to loading directories without CUE files as instances, which could cause poor performance for CUE packages with multiple parent directories.

cue exp writefs gains an encoding optional field for regular files, to specify an encoding rather than infer it from the filename extension.

LSP server

Initial LSP support for editing embedded JSON and YAML files. This feature provides completions and hover-docs when editing JSON or YAML files which are embedded into CUE via the @embed attribute. A teaser video is available on YouTube.

Code Actions: two code actions are now provided, Add surrounding struct braces and Remove surrounding struct braces, which convert between

a: b: c

and

a: {
	b: c
}

with the cursor on b.

A complete overhaul of how the LSP server suggests code completions. This solves the previous naïve implementation which would only make suggestions after a field name or path had been started. Now completions are available from within whitespace.

Embedded paths with mutual dependencies: embedded paths with multiple components (e.g. a.b.c) can in some cases only be fully resolved after the resolution of other embedded paths. The LSP server can now correctly handle these dependencies.

The LSP server now implements LSP Document Symbols functionality. This is often used by editors to provide light-weight breadcrumb navigation within a file.

Some preliminary diagnostics are now sent from the LSP server back to the editor. Initially this mainly indicates syntax errors in CUE files, but this can be extended in the future.

Many bug fixes, including better behaviour for files and directories with spaces; improvements for value aliases (foo: L=x); LSP rename now provides placeholder text; improved jump-to-definition behaviour for package-level fields; fixed issues around imports; path resolution; formatting of standalone CUE files; and others.

See our Getting Started wiki page for instructions on how to set it up with your editor.

Please report any bugs or missing features you encounter via the Issue tracker or via the #lsp channels on Discord or Slack.

Encodings

Add support for encoding YAML tags like key: !Custom value by using CUE attributes like key: "value" @​yaml(,tag="!Custom").

cue get go now detects which Go packages use Kubernetes type semantics via // +k8s:openapi-gen=true and obeys the field annotations // +optional and // +nullable.

cue get go gains a --codec flag to configure the use and priority of Go struct field tags like json or yaml.

Fix a bug where cue get go could skip over fields whose type implements one of the supported marshaling interfaces.

Fix a few bugs where cue get go could result in invalid or failing CUE code.

JSON Schema's Config.OpenOnlyWhenExplicit option is now exposed for the CLI via the filetype tag jsonschema+openOnlyWhenExplicit.

JSON Schema now properly encodes hash references for better compatibility with other tools.

Standard library

The strconv package adds ParseNumber, like ParseInt or ParseFloat but allowing other CUE number strings such as 1Ki.

The net package adds InCIDR to test whether an IP is contained by a CIDR string.

The net package adds ParseCIDR to extract useful information from a CIDR string.

The net package adds CompareIP to compare two IP addresses, which can be useful for computing with IP ranges.

The net/http package adds Serve as an experimental API to listen on a port and serve HTTP requests.

The tool/file package adds Symlink to create symbolic links.

Go API

cue.Value.Decode now supports the new cue.Unmarshaler interface, allowing Go types to implement their own CUE value decoding logic via an UnmarshalCUE(cue.Value) error method.

The new cue.IsIncomplete function reports whether the given value is a CUE incomplete error.

cue/ast gains the NewPredeclared and Ident.IsPredeclared to mark and detect identifiers referencing predeclared names like error or int rather than fields which may shadow those names in the current scope.

⚠️ cue.Value.Decode now uses cue.IsIncomplete to not treat incomplete errors as fatal, allowing the decoding to continue.

Fix a bug where cue.Value.Decode could behave incorrectly when decoding a CUE null or incomplete value.

⚠️ cue/token.Compare now sorts absolute paths before relative ones, to ensure consistent behavior between Unix-like systems and Windows.

⚠️ The long-deprecated cue/ast.Node.Comments and cue/ast.Node.AddComment interface methods are now removed; use cue/ast.Comments and cue/ast.AddComment respectively.

⚠️ The long-deprecated and unused cue/parser.FromVersion and cue/parser.DeprecationError APIs are now removed.

⚠️ The long-deprecated and hidden cue.Instance.Eval method is now removed.

Full list of changes since v0.15.0

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM ( * 0-3 * * * ) (UTC), 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.

👻 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
Copy link
Contributor Author

renovate bot commented Mar 1, 2026

⚠️ Artifact update problem

Renovate failed to update artifacts 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 -t ./...
go: module cuelang.org/go@v0.16.0 requires go >= 1.25.0; switching to go1.25.8
go: downloading github.com/open-policy-agent/opa v1.14.1
go: downloading golang.org/x/net v0.52.0
go: downloading github.com/open-policy-agent/conftest v0.67.0
go: downloading k8s.io/apiextensions-apiserver v0.35.2
go: downloading github.com/enterprise-contract/go-containerregistry v0.20.3-0.20250120083621-7be5271048b1
go: downloading k8s.io/kube-openapi v0.0.0-20260304202019-5b3e3fdb0acf
go: downloading k8s.io/klog/v2 v2.140.0
go: downloading github.com/package-url/packageurl-go v0.1.3
go: downloading github.com/evanphx/json-patch v5.9.0+incompatible
go: downloading golang.org/x/sys v0.42.0
go: downloading golang.org/x/text v0.35.0
go: downloading github.com/awslabs/amazon-ecr-credential-helper/ecr-login v0.10.1
go: downloading github.com/go-viper/mapstructure/v2 v2.4.0
go: downloading github.com/go-openapi/runtime v0.29.2
go: downloading github.com/go-openapi/strfmt v0.25.0
go: downloading github.com/go-openapi/swag v0.25.4
go: downloading github.com/sigstore/rekor v1.5.0
go: downloading golang.org/x/term v0.41.0
go: downloading github.com/tidwall/gjson v1.17.0
go: downloading golang.org/x/crypto v0.49.0
go: downloading github.com/sigstore/fulcio v1.8.4
go: downloading github.com/cespare/xxhash v1.1.0
go: downloading github.com/lestrrat-go/jwx/v3 v3.0.13
go: downloading github.com/lestrrat-go/jwx v1.2.29
go: downloading go.opentelemetry.io/otel/sdk v1.40.0
go: downloading go.opentelemetry.io/otel v1.40.0
go: downloading golang.org/x/time v0.15.0
go: downloading go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.65.0
go: downloading go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.40.0
go: downloading go.opentelemetry.io/otel/trace v1.40.0
go: downloading github.com/vektah/gqlparser/v2 v2.5.32
go: downloading github.com/vektah/gqlparser v1.2.0
go: downloading github.com/docker/docker-credential-helpers v0.9.5
go: downloading golang.org/x/oauth2 v0.36.0
go: downloading github.com/CycloneDX/cyclonedx-go v0.10.0
go: downloading github.com/moby/buildkit v0.28.0
go: downloading github.com/hashicorp/go-getter v1.8.5
go: downloading github.com/go-openapi/errors v0.22.6
go: downloading github.com/go-openapi/swag/fileutils v0.25.4
go: downloading github.com/go-openapi/swag/jsonutils v0.25.4
go: downloading github.com/go-openapi/swag/stringutils v0.25.4
go: downloading go.mongodb.org/mongo-driver v1.17.6
go: downloading github.com/go-openapi/swag/cmdutils v0.25.4
go: downloading github.com/go-openapi/swag/conv v0.25.4
go: downloading github.com/go-openapi/swag/jsonname v0.25.4
go: downloading github.com/go-openapi/swag/loading v0.25.4
go: downloading github.com/go-openapi/swag/mangling v0.25.4
go: downloading github.com/go-openapi/swag/netutils v0.25.4
go: downloading github.com/go-openapi/swag/typeutils v0.25.4
go: downloading github.com/go-openapi/swag/yamlutils v0.25.4
go: downloading google.golang.org/genproto/googleapis/api v0.0.0-20260203192932-546029d2fa20
go: downloading github.com/go-openapi/validate v0.25.1
go: downloading github.com/go-openapi/jsonreference v0.21.4
go: downloading gitlab.com/gitlab-org/api/client-go v0.143.3
go: downloading github.com/cyphar/filepath-securejoin v0.6.0
go: downloading github.com/lestrrat-go/httprc/v3 v3.0.2
go: downloading github.com/valyala/fastjson v1.6.7
go: downloading github.com/prometheus/common v0.67.4
go: downloading github.com/containerd/containerd/v2 v2.2.1
go: downloading go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.40.0
go: downloading go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.40.0
go: downloading google.golang.org/grpc v1.79.1
go: downloading github.com/dgraph-io/badger/v4 v4.9.1
go: downloading go.opentelemetry.io/otel/metric v1.40.0
go: downloading go.opentelemetry.io/proto/otlp v1.9.0
go: downloading github.com/aws/aws-sdk-go-v2/config v1.32.9
go: downloading github.com/aws/aws-sdk-go-v2/service/ecr v1.45.1
go: downloading github.com/aws/aws-sdk-go-v2/service/ecrpublic v1.33.2
go: downloading cloud.google.com/go/storage v1.60.0
go: downloading github.com/aws/aws-sdk-go-v2/credentials v1.19.9
go: downloading github.com/aws/aws-sdk-go-v2/service/s3 v1.96.0
go: downloading github.com/hashicorp/aws-sdk-go-base/v2 v2.0.0-beta.70
go: downloading github.com/hashicorp/go-version v1.8.0
go: downloading google.golang.org/api v0.267.0
go: downloading github.com/go-openapi/analysis v0.24.1
go: downloading github.com/go-openapi/jsonpointer v0.22.4
go: downloading github.com/go-openapi/loads v0.23.2
go: downloading github.com/go-openapi/spec v0.22.3
go: downloading github.com/go-chi/chi/v5 v5.2.4
go: downloading github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.7
go: downloading google.golang.org/genproto/googleapis/rpc v0.0.0-20260203192932-546029d2fa20
go: downloading github.com/cloudflare/circl v1.6.3
go: downloading github.com/dgraph-io/ristretto v0.1.1
go: downloading github.com/huandu/go-sqlbuilder v1.39.1
go: downloading github.com/aws/aws-sdk-go-v2/service/sso v1.30.10
go: downloading github.com/aws/aws-sdk-go-v2/service/ssooidc v1.35.14
go: downloading golang.org/x/tools v0.43.0
go: downloading cloud.google.com/go/auth v0.18.1
go: downloading github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.55.0
go: downloading go.opentelemetry.io/otel/sdk/metric v1.40.0
go: downloading github.com/aws/aws-sdk-go-v2/internal/v4a v1.4.17
go: downloading github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.9.8
go: downloading github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.19.17
go: downloading github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.55.0
go: downloading github.com/emicklei/proto v1.14.3
go: downloading github.com/protocolbuffers/txtpbfmt v0.0.0-20260217160748-a481f6a22f94
go: downloading github.com/googleapis/enterprise-certificate-proxy v0.3.11
go: downloading github.com/envoyproxy/go-control-plane v0.14.0
go: github.com/muhammadmuzzammil1998/jsonc@v1.0.0 used for two different module paths (github.com/muhammadmuzzammil1998/jsonc and muzzammil.xyz/jsonc)

File name: tools/go.sum
Command failed: go get -t ./...
go: module github.com/open-policy-agent/conftest@v0.67.0 requires go >= 1.25.8; switching to go1.25.8
go: downloading github.com/daixiang0/gci v0.14.0
go: downloading github.com/golangci/golangci-lint v1.64.8
go: downloading github.com/google/addlicense v1.2.0
go: downloading github.com/tektoncd/chains v0.26.2
go: downloading helm.sh/helm/v3 v3.20.1
go: downloading k8s.io/kubernetes v1.35.2
go: downloading sigs.k8s.io/kustomize/kustomize/v5 v5.8.1
go: downloading golang.org/x/exp v0.0.0-20250911091902-df9299821621
go: downloading k8s.io/apimachinery v0.35.1
go: downloading k8s.io/client-go v0.35.1
go: downloading golang.org/x/tools v0.42.0
go: downloading github.com/Masterminds/semver/v3 v3.4.0
go: downloading github.com/gofrs/flock v0.13.0
go: downloading k8s.io/kubectl v0.35.1
go: downloading k8s.io/component-base v0.35.1
go: downloading oras.land/oras-go v1.2.6
go: downloading github.com/google/go-containerregistry v0.21.0
go: downloading github.com/sigstore/sigstore/pkg/signature/kms/aws v1.10.3
go: downloading github.com/sigstore/sigstore/pkg/signature/kms/azure v1.10.3
go: downloading github.com/sigstore/sigstore/pkg/signature/kms/gcp v1.10.3
go: downloading github.com/sigstore/sigstore/pkg/signature/kms/hashivault v1.10.3
go: downloading k8s.io/api v0.35.1
go: downloading github.com/tektoncd/triggers v0.35.0
go: downloading github.com/tektoncd/hub v1.23.6
go: downloading k8s.io/cli-runtime v0.35.1
go: downloading github.com/cyphar/filepath-securejoin v0.6.1
go: downloading k8s.io/apiextensions-apiserver v0.35.1
go: downloading github.com/containerd/containerd v1.7.30
go: downloading github.com/rubenv/sql-migrate v1.8.1
go: downloading sigs.k8s.io/kustomize/cmd/config v0.21.1
go: downloading github.com/ldez/grignotin v0.9.0
go: downloading github.com/golangci/revgrep v0.8.0
go: downloading github.com/tzrikka/xdg v1.3.2
go: downloading golang.org/x/net v0.51.0
go: downloading github.com/aws/aws-sdk-go-v2/service/kms v1.49.1
go: downloading github.com/jellydator/ttlcache/v3 v3.4.0
go: downloading github.com/Azure/azure-sdk-for-go/sdk/azcore v1.20.0
go: downloading github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.13.1
go: downloading github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azkeys v1.4.0
go: downloading cloud.google.com/go/kms v1.25.0
go: downloading github.com/hashicorp/vault/api v1.22.0
go: downloading github.com/in-toto/archivista v0.10.0
go: downloading github.com/in-toto/go-witness v0.9.1
go: downloading gocloud.dev v0.43.0
go: downloading gocloud.dev/docstore/mongodocstore v0.43.0
go: downloading gocloud.dev/pubsub/kafkapubsub v0.43.0
go: downloading k8s.io/component-helpers v0.35.1
go: downloading k8s.io/metrics v0.35.1
go: downloading github.com/tdakkota/asciicheck v0.4.1
go: downloading github.com/kkHAIKE/contextcheck v1.1.6
go: downloading github.com/karamaru-alpha/copyloopvar v1.2.1
go: downloading github.com/OpenPeeDeeP/depguard/v2 v2.2.1
go: downloading github.com/golangci/dupl v0.0.0-20250308024227-f665c8d69b32
go: downloading github.com/kisielk/errcheck v1.9.0
go: downloading github.com/polyfloyd/go-errorlint v1.7.1
go: downloading github.com/GaijinEntertainment/go-exhaustruct/v3 v3.3.1
go: downloading github.com/ldez/exptostd v0.4.2
go: downloading github.com/Crocmagnon/fatcontext v0.7.1
go: downloading github.com/gostaticanalysis/forcetypeassert v0.2.0
go: downloading github.com/nunnatsa/ginkgolinter v0.19.1
go: downloading 4d63.com/gocheckcompilerdirectives v1.3.0
go: downloading 4d63.com/gochecknoglobals v0.2.2
go: downloading github.com/go-critic/go-critic v0.12.0
go: downloading github.com/tetafro/godot v1.5.0
go: downloading github.com/matoous/godox v1.1.0
go: downloading github.com/ldez/gomoddirectives v0.6.1
go: downloading github.com/securego/gosec/v2 v2.22.2
go: downloading honnef.co/go/tools v0.6.1
go: downloading github.com/uudashr/iface v1.3.1
go: downloading github.com/alingse/nilnesserr v0.1.2
go: downloading github.com/catenacyber/perfsprint v0.8.2
go: downloading github.com/ghostiam/protogetter v0.3.9
go: downloading github.com/mgechev/revive v1.7.0
go: downloading go-simpler.org/sloglint v0.9.0
go: downloading github.com/4meepo/tagalign v1.4.2
go: downloading github.com/golangci/gofmt v0.0.0-20250106114630-d62b90e6713d
go: downloading github.com/Azure/azure-sdk-for-go/sdk/internal v1.11.2
go: downloading github.com/AzureAD/microsoft-authentication-library-for-go v1.6.0
go: downloading github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/internal v1.2.0
go: downloading cloud.google.com/go/longrunning v0.8.0
go: downloading github.com/hashicorp/go-secure-stdlib/parseutil v0.2.0
go: downloading github.com/mitchellh/mapstructure v1.5.1-0.20231216201459-8508981c8b6c
go: downloading github.com/aws/aws-sdk-go v1.55.8
go: downloading cloud.google.com/go/firestore v1.21.0
go: downloading github.com/IBM/sarama v1.45.2
go: downloading github.com/ktr0731/go-fuzzyfinder v0.9.0
go: downloading k8s.io/apiserver v0.35.1
go: downloading github.com/gostaticanalysis/comment v1.5.0
go: downloading github.com/hashicorp/go-sockaddr v1.0.7
go: downloading github.com/natefinch/atomic v1.0.1
go: downloading github.com/edwarnicke/gitoid v0.0.0-20220710194850-1be5bfda1f9d
go: downloading go.step.sm/crypto v0.75.0
go: downloading github.com/pierrec/lz4/v4 v4.1.22
go: downloading github.com/gdamore/tcell/v2 v2.9.0
go: downloading goa.design/goa/v3 v3.23.4
go: downloading golang.org/x/exp/typeparams v0.0.0-20250210185358-939b2ce775ac
go: downloading github.com/golang-jwt/jwt/v5 v5.3.0
go: downloading github.com/jmespath/go-jmespath v0.4.1-0.20220621161143-b0104c826a24
go: downloading github.com/lucasb-eyer/go-colorful v1.3.0
go: downloading filippo.io/edwards25519 v1.1.1
go: github.com/muhammadmuzzammil1998/jsonc@v1.0.0 used for two different module paths (github.com/muhammadmuzzammil1998/jsonc and muzzammil.xyz/jsonc)

@renovate renovate bot force-pushed the renovate/release-v0.6-go-modules branch 11 times, most recently from 8c3a1f6 to 2eaef9f Compare March 10, 2026 01:14
@renovate renovate bot force-pushed the renovate/release-v0.6-go-modules branch 8 times, most recently from 4953a72 to 962a4a0 Compare March 16, 2026 08:41
@renovate renovate bot force-pushed the renovate/release-v0.6-go-modules branch from 962a4a0 to c829ef5 Compare March 16, 2026 13:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants