Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Aug 28, 2025

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.15.3 age adoption passing confidence require minor
github.com/cyberphone/json-canonicalization ba74d4419d51d7 age adoption passing confidence require digest
github.com/go-git/go-billy/v5 v5.6.2v5.7.0 age adoption passing confidence require minor
github.com/go-git/go-git/v5 v5.13.2v5.16.4 age adoption passing confidence require minor
github.com/go-openapi/strfmt v0.23.0v0.25.0 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/in-toto/in-toto-golang 8e29660ad67645 require digest
github.com/konflux-ci/application-api e7eb2ec555a927 age adoption passing confidence require digest
github.com/open-policy-agent/conftest v0.55.0v0.66.0 age adoption passing confidence require minor
github.com/pkg/diff 20ebb0f4e6772a age adoption passing confidence require digest
github.com/sigstore/cosign/v2 v2.4.1v2.6.1 age adoption passing confidence require minor
github.com/sigstore/rekor v1.3.6v1.4.3 age adoption passing confidence require minor
github.com/sigstore/sigstore v1.8.15v1.10.3 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/spf13/viper v1.19.0v1.21.0 age adoption passing confidence require minor
github.com/tektoncd/chains v0.22.2v0.26.0 age adoption passing confidence require minor
github.com/tektoncd/cli v0.38.0v0.42.0 age adoption passing confidence require minor
github.com/testcontainers/testcontainers-go v0.34.0v0.40.0 age adoption passing confidence require minor
github.com/wiremock/go-wiremock v1.11.0v1.14.0 age adoption passing confidence require minor
golang.org/x/exp 2d47ceb944ab1f age adoption passing confidence require digest
golang.org/x/net v0.44.0v0.48.0 age adoption passing confidence require minor
golang.org/x/sync v0.17.0v0.19.0 age adoption passing confidence require minor
helm.sh/helm/v3 v3.16.4v3.19.4 age adoption passing confidence require minor
k8s.io/api v0.34.2v0.35.0 age adoption passing confidence require minor
k8s.io/apiextensions-apiserver v0.34.2v0.35.0 age adoption passing confidence require minor
k8s.io/apimachinery v0.34.2v0.35.0 age adoption passing confidence require minor
k8s.io/client-go v0.34.2v0.35.0 age adoption passing confidence require minor
k8s.io/kube-openapi f3f2b994e65d59 age adoption passing confidence require digest
k8s.io/kubernetes v1.34.2v1.35.0 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.0 age adoption passing confidence require minor
sigs.k8s.io/kustomize/kustomize/v5 v5.7.1v5.8.0 age adoption passing confidence require minor
sigs.k8s.io/kustomize/kyaml v0.20.1v0.21.0 age adoption passing confidence require minor

Release Notes

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

v0.15.3

Compare Source

Evaluator

Fix a panic which could occur when using Expr after LookupPath on a cue.Value.

cmd/cue

Fix a panic which could occur when using cue cmd tasks referencing definitions.

Fix a panic which could occur when cue get go encountered a Go enum type with zero named values.

Encodings

Fix a bug in the TOML decoder where nested arrays were not being correctly mapped to CUE values.

Full list of changes since v0.15.1

v0.15.2

Compare Source

v0.15.1

Compare Source

Evaluator

Fix an evalv3 regression first introduced in v0.11.0 where the and built-in function started evaluating its arguments too eagerly, causing failures in cue def.

Fix an evalv3 regression where closedness info could be lost when using a comprehension.

Fix a bug where the evaluator would panic on alias cycles with dynamic fields rather than giving a good error.

LSP

Formatting standalone CUE files - either without a package name, or outside of a CUE module - now works correctly.

Fix a bug where trying to use "find references" on a CUE module with nested modules would cause a hang.

Fix a bug where resolving path roots did not work correctly in the presence of struct embeddings.

cmd/cue

Fix a regression in v0.15.0 where cue get go no longer skipped generating CUE files without any declarations.

Go API

Fix a bug in the subsume package where a struct with a pattern constraint did not subsume a closed struct with a matching field.

Rename the bootstrap build tag used in the internal/filetypes package to cuebootstrap to avoid conflicts with build tags in other Go modules.

Full list of changes since v0.15.0

v0.15.0

Compare Source

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

Note that this release no longer includes a checksums.txt asset; GitHub now provide digests natively.

LSP

This release includes the initial version of cue lsp - with support for "go to definition", "find references", rename, code completion, hover documentation, and code formatting.

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.

Language

explicitopen experiment for #A...

The explicitopen per-file experiment enables the posfix ... operator to explicitly open closed structs, allowing additional fields to be added. This change simplifies CUE's semantics, reduces user confusion, and enables clearer expression of type extensibility patterns.

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

aliasv2 experiment

The aliasv2 per-file experiment implements the new "postfix aliases" syntax, and introduces a "self" predeclared identifier referring to the innermost surrounding struct or list.

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

Other experiments

⚠️ With its proposal accepted, the keepvalidators global experiment is now stable, meaning that CUE_EXPERIMENT=keepvalidators is always enabled.

With its proposal accepted, the structcmp per-file experiment is now stable with language.version at v0.15.0 or later, meaning that the @experiment(structcmp) attribute is unnecessary as it's always enabled.

Evaluator

⚠️ Removing evalv2

The old evalv2 evaluator, which previously could be re-enabled via CUE_EXPERIMENT=evalv3=0, is now deleted. The new evalv3 evaluator has been on by default since v0.13.0, and at this point our entire test suite including Unity is working.

Removing the old evaluator reduces significant load on development, as we were able to clear out 4000 lines of code, and simplify the internal types and code structure. This is a necessary step to unblock ongoing feature and performance work in the evaluator.

As a bonus, because the old and new evaluators shared many core evaluator types, removing the fields only used by the old evaluator yields modest memory usage improvements of around 4-6%.

Performance

Evaluating concrete CUE values no longer involves dependency analysis; this should result in modest speed improvements when marshaling to YAML, via either cue export -e expr -o yaml or yaml.Marshal.

Dependency analysis now avoids computing references more than once, which resolves an expontential performance issue for some configurations using chains of CUE references.

Add caching to a part of the typochecker algorithm; this has been measured to provide performance improvements of up to 30% on a few large projects.

cue/parser now reuses more memory, which results in parsing performance improvements of up to 30% and memory savings of up to 50%, especially when loading large CUE data files.

Other changes

File embedding via the @embed attribute has gained an allowEmptyGlob option, to allow glob patterns to match zero files without causing an error.

The evaluator now shows all user errors created with the error builtin when they can be related to a disjunction failure. Previously, the evaluator would try to only show user errors directly part of a disjunction error, but that caused too many omissions.

Some error positions which were lost in the transition from evalv2 to evalv3 have been reintroduced.

Fix a bug where required fields in a definition might not be enforced when unifying with an inline struct in an expression, such as (#RequiresFoo & {bar: "baz"}).bar.

Fix a regression introduced in v0.12.0 where incomplete errors were not being handled consistently if they directly involved the top-level value.

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

cmd/cue

A new cue help experiments command is introduced to document all available per-file and global experiments.

The cue fix --exp flag is introduced to rewrite files or packages to use new and experimental semantics with @experiment attributes.

cue mod mirror now copies OCI referrers between registries, which ensures that artifacts like signatures and attestations which reference modules being mirrored are copied as well.

cue mod resolve gains a --deps flag that lists all dependencies of the current module and which registries they resolve to.

cue get go gains an --outfile flag to generate exactly one CUE file for a single Go package, which can be useful when integrating cue get go into build systems like Bazel.

Fix a regression introduced in v0.9.0 where loading a qualified pattern like ./...:pkgname no longer filtered files based on the package name given.

cue get go now stops on any Go package loading error. Trying to continue in the presence of syntax or type-checking errors could lead to generating incorrect CUE.

Encodings

Initial support for encoding CUE schemas as JSON Schema is added. This includes a new encoding/jsonschema.Generate Go API, as well as CLI support via cue def --out jsonschema. This is currently very experimental, and many features are missing. For now, it can only generate a single version of JSON Schema, draft/2020-12.

The YAML library in the archived Go module gopkg.in/yaml.v3 has been replaced by go.yaml.in/yaml/v3, an active fork now maintained by the YAML organization.

cue exp gengotypes is improved to handle more edge cases with CUE package imports which could result in broken Go code.

The Protobuf decoder has been tweaked to not require files such as google/protobuf/timestamp.proto to exist on disk, given that they are mapped to CUE standard library APIs directly.

The Protobuf decoder has also been tweaked to support fully qualified references such as my.pkg.name.MessageName.

A bug is fixed in the TOML decoder where sub-table keys could incorrectly lead to duplicate key errors.

Standard library

The net package has gained new AddIP and AddIPCIDR functions to add numerical offsets to IP addresses or CIDR networks.

The Atoi, ParseInt, and ParseUint functions in the strconv package now work on integers with unlimited precision, like the rest of the CUE evaluator, rather than just a maximum of 64 bits.

Go API

The new cue.Value.IsClosed and cue.Value.IsClosedRecursively methods report whether a value has been closed at the top level or recursively, which is useful information when writing schema encodings.

The new cue.Patterns and cue.Selector.Pattern APIs allow introspecting pattern constraints in CUE struct values.

The new encoding/yaml.Decoder API allows decoding a stream of YAML documents, given that existing APIs did not support streams of multiple YAML documents.

encoding/json gains JSON Pointer APIs, which are already useful in packages like encoding/jsonschema.

cue/ast introduces PostfixExpr to support upcoming additions to the language syntax.

cue/ast introduces StringLabelNeedsQuoting to determine whether a string label needs to be quoted when used in CUE syntax.

cue/ast introduces NewStringLabel to create an ast.Label as either an unquoted identifier or a quoted string, depending on whether the string label needs quoting.

tools/fix has gained new APIs to fix configs to use an active experiment, as well as fixing configs to a newer language version.

cue introduces a Path.Append convenience method.

⚠️ cue/build.Instance.Match is removed, given that it was never set to any value at any point since it was added.

cue/token is adjusted so that node positions within a file never result in an offset which is outside the bounds of the file. This could easily lead to subtle bugs or panics when using node position offsets.

⚠️ The cue/token.Pos.Before method is now rewritten to match cue/token.Pos.Compare, given that it always returned "false" for positions from different files. The method is now deprecated as well.

cue/errors is adjusted so that Positions only collects printable positions, to prevent printing empty positions in the CLI.

cue/ast deprecates the File.Imports field in favor of the File.ImportSpecs iterator method. The iterator method File.ImportDecls is also introduced for completeness.

⚠️ The long-deprecated cue.ResolveReferences option API is now removed.

cue/parser.DeprecationError.Version is deprecated, as tracking CUE language versions via integers has not been used since v0.4.3, and the mechanism was never properly documented.

Full list of changes since v0.14.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 Aug 28, 2025

⚠️ 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 github.com/open-policy-agent/[email protected] requires go >= 1.25.3; switching to go1.25.5
go: downloading github.com/sirupsen/logrus v1.9.4-0.20230606125235-dd1b4c2e81af
go: downloading github.com/MakeNowJust/heredoc v1.0.0
go: downloading github.com/spf13/afero v1.15.0
go: downloading github.com/spf13/cobra v1.10.2
go: downloading github.com/open-policy-agent/opa v1.12.1
go: downloading github.com/conforma/go-gather v1.0.2
go: downloading golang.org/x/net v0.48.0
go: downloading github.com/open-policy-agent/conftest v0.66.0
go: downloading github.com/spf13/viper v1.21.0
go: downloading k8s.io/apiextensions-apiserver v0.35.0
go: downloading github.com/enterprise-contract/go-containerregistry v0.20.3-0.20250120083621-7be5271048b1
go: downloading github.com/in-toto/in-toto-golang v0.9.0
go: downloading github.com/jstemmer/go-junit-report/v2 v2.1.0
go: downloading github.com/jstemmer/go-junit-report v1.0.0
go: downloading github.com/tektoncd/pipeline v0.70.0
go: downloading oras.land/oras-go/v2 v2.6.0
go: downloading github.com/santhosh-tekuri/jsonschema/v5 v5.3.1
go: downloading k8s.io/kube-openapi v0.0.0-20251125145642-4e65d59e963e
go: downloading github.com/qri-io/jsonpointer v0.1.1
go: downloading github.com/package-url/packageurl-go v0.1.3
go: downloading github.com/Maldris/go-billy-afero v0.0.0-20200815120323-e9d3de59c99a
go: downloading github.com/stuart-warren/yamlfmt v0.2.0
go: downloading github.com/leanovate/gopter v0.2.11
go: downloading github.com/mitchellh/go-wordwrap v1.0.1
go: downloading github.com/evanphx/json-patch v5.9.0+incompatible
go: downloading golang.org/x/text v0.32.0
go: downloading github.com/fsnotify/fsnotify v1.9.0
go: downloading github.com/olekukonko/tablewriter v1.1.0
go: downloading github.com/awslabs/amazon-ecr-credential-helper/ecr-login v0.10.1
go: downloading github.com/chrismellard/docker-credential-acr-env v0.0.0-20230304212654-82a0ddb27589
go: downloading github.com/mozillazg/docker-credential-acr-helper v0.4.0
go: downloading sigs.k8s.io/release-utils v0.12.1
go: downloading github.com/logrusorgru/aurora v2.0.3+incompatible
go: downloading github.com/owenrumney/go-sarif/v2 v2.3.3
go: downloading github.com/sagikazarmark/locafero v0.11.0
go: downloading github.com/spf13/cast v1.10.0
go: downloading github.com/go-openapi/runtime v0.28.0
go: downloading github.com/go-openapi/strfmt v0.23.0
go: downloading github.com/go-openapi/swag v0.24.1
go: downloading github.com/sigstore/rekor v1.4.2
go: downloading golang.org/x/term v0.38.0
go: downloading github.com/tidwall/gjson v1.17.0
go: downloading github.com/cpuguy83/go-md2man/v2 v2.0.7
go: downloading knative.dev/pkg v0.0.0-20250117084104-c43477f0052b
go: downloading golang.org/x/crypto v0.46.0
go: downloading github.com/docker/cli v28.5.0+incompatible
go: downloading github.com/sigstore/fulcio v1.7.1
go: downloading github.com/chainguard-dev/git-urls v1.0.2
go: downloading github.com/go-git/go-billy/v5 v5.6.2
go: downloading github.com/ProtonMail/go-crypto v1.3.0
go: downloading github.com/cespare/xxhash v1.1.0
go: downloading github.com/mattn/go-runewidth v0.0.16
go: downloading github.com/olekukonko/errors v1.1.0
go: downloading github.com/olekukonko/ll v0.0.9
go: downloading github.com/gobwas/glob v0.2.3
go: downloading github.com/lestrrat-go/jwx/v3 v3.0.12
go: downloading github.com/lestrrat-go/jwx v1.2.29
go: downloading github.com/rcrowley/go-metrics v0.0.0-20250401214520-65e299d6c5c9
go: downloading go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.38.0
go: downloading go.uber.org/automaxprocs v1.6.0
go: downloading github.com/tchap/go-patricia/v2 v2.3.3
go: downloading github.com/vektah/gqlparser/v2 v2.5.31
go: downloading github.com/vektah/gqlparser v1.2.0
go: downloading github.com/yashtewari/glob-intersection v0.2.0
go: downloading github.com/Azure/go-autorest/autorest/azure/auth v0.5.13
go: downloading github.com/Azure/go-autorest/autorest v0.11.29
go: downloading github.com/Azure/go-autorest v14.2.0+incompatible
go: downloading github.com/common-nighthawk/go-figure v0.0.0-20210622060536-734e95fb86be
go: downloading github.com/CycloneDX/cyclonedx-go v0.9.3
go: downloading github.com/moby/buildkit v0.26.3
go: downloading github.com/subosito/gotenv v1.6.0
go: downloading olympos.io/encoding/edn v0.0.0-20201019073823-d3554ca0b0a3
go: downloading github.com/hashicorp/hcl v1.0.1-vault-5
go: downloading github.com/tmccombs/hcl2json v0.6.7
go: downloading github.com/go-akka/configuration v0.0.0-20200606091224-a002c0330665
go: downloading github.com/shteou/go-ignore v0.3.1
go: downloading github.com/go-ini/ini v1.67.0
go: downloading github.com/muhammadmuzzammil1998/jsonc v1.0.0
go: downloading github.com/google/go-jsonnet v0.21.0
go: downloading github.com/spdx/tools-golang v0.5.5
go: downloading github.com/bufbuild/protocompile v0.14.1
go: downloading github.com/BurntSushi/toml v1.6.0
go: downloading github.com/KeisukeYamashita/go-vcl v0.4.0
go: downloading github.com/basgys/goxml2json v1.1.0
go: downloading github.com/hashicorp/go-getter v1.8.3
go: downloading github.com/sourcegraph/conc v0.3.1-0.20240121214520-5f936abd7ae8
go: downloading github.com/pelletier/go-toml/v2 v2.2.4
go: downloading github.com/go-openapi/errors v0.22.2
go: downloading github.com/mitchellh/mapstructure v1.5.1-0.20231216201459-8508981c8b6c
go: downloading go.mongodb.org/mongo-driver v1.16.1
go: downloading github.com/go-openapi/swag/cmdutils v0.24.0
go: downloading github.com/go-openapi/swag/conv v0.24.0
go: downloading github.com/go-openapi/swag/fileutils v0.24.0
go: downloading github.com/go-openapi/swag/jsonname v0.24.0
go: downloading github.com/go-openapi/swag/jsonutils v0.24.0
go: downloading github.com/go-openapi/swag/loading v0.24.0
go: downloading github.com/go-openapi/swag/mangling v0.24.0
go: downloading github.com/go-openapi/swag/netutils v0.24.0
go: downloading github.com/go-openapi/swag/stringutils v0.24.0
go: downloading github.com/go-openapi/swag/typeutils v0.24.0
go: downloading github.com/go-openapi/swag/yamlutils v0.24.0
go: downloading google.golang.org/genproto/googleapis/api v0.0.0-20251022142026-3a174f9686a8
go: downloading github.com/go-openapi/validate v0.24.0
go: downloading github.com/russross/blackfriday/v2 v2.1.0
go: downloading github.com/go-openapi/jsonreference v0.21.0
go: downloading github.com/google/safearchive v0.0.0-20241025131057-f7ce9d7b6f9c
go: downloading github.com/containerd/stargz-snapshotter/estargz v0.17.0
go: downloading gitlab.com/gitlab-org/api/client-go v0.143.3
go: downloading github.com/ThalesIgnite/crypto11 v1.2.5
go: downloading github.com/miekg/pkcs11 v1.1.1
go: downloading github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415
go: downloading github.com/rivo/uniseg v0.4.7
go: downloading github.com/lestrrat-go/option/v2 v2.0.0
go: downloading github.com/lestrrat-go/option v1.0.1
go: downloading github.com/decred/dcrd/dcrec/secp256k1/v4 v4.4.0
go: downloading github.com/lestrrat-go/blackmagic v1.0.4
go: downloading github.com/lestrrat-go/httprc/v3 v3.0.1
go: downloading github.com/lestrrat-go/dsig v1.0.0
go: downloading github.com/lestrrat-go/dsig-secp256k1 v1.0.0
go: downloading github.com/valyala/fastjson v1.6.4
go: downloading github.com/prometheus/procfs v0.17.0
go: downloading github.com/containerd/containerd v1.7.29
go: downloading github.com/containerd/containerd/v2 v2.2.0
go: downloading go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.38.0
go: downloading go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.38.0
go: downloading google.golang.org/grpc v1.77.0
go: downloading github.com/peterh/liner v1.2.2
go: downloading github.com/dgraph-io/badger/v4 v4.8.0
go: downloading go.opentelemetry.io/proto/otlp v1.7.1
go: downloading github.com/aws/aws-sdk-go-v2 v1.39.2
go: downloading github.com/aws/aws-sdk-go-v2/config v1.31.11
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 github.com/aws/smithy-go v1.23.0
go: downloading github.com/Azure/go-autorest/autorest/adal v0.9.24
go: downloading github.com/Azure/go-autorest/autorest/azure/cli v0.4.6
go: downloading github.com/Azure/go-autorest/logger v0.2.1
go: downloading github.com/dimchansky/utfbom v1.1.1
go: downloading github.com/Azure/azure-sdk-for-go v68.0.0+incompatible
go: downloading github.com/AliyunContainerService/ack-ram-tool/pkg/credentials/provider v0.15.0
go: downloading github.com/alibabacloud-go/cr-20160607 v1.0.1
go: downloading github.com/alibabacloud-go/cr-20181201 v1.0.10
go: downloading github.com/alibabacloud-go/darabonba-openapi v0.2.1
go: downloading github.com/alibabacloud-go/tea-utils v1.4.5
go: downloading github.com/alibabacloud-go/tea v1.2.2
go: downloading github.com/aliyun/credentials-go v1.3.9
go: downloading github.com/tonistiigi/go-csvvalue v0.0.0-20240814133006-030d3b2625d0
go: downloading github.com/hashicorp/hcl/v2 v2.23.0
go: downloading github.com/zclconf/go-cty v1.16.2
go: downloading github.com/aws/aws-sdk-go-v2/credentials v1.18.15
go: downloading github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.18.9
go: downloading github.com/aws/aws-sdk-go-v2/service/s3 v1.88.3
go: downloading github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d
go: downloading github.com/hashicorp/aws-sdk-go-base/v2 v2.0.0-beta.65
go: downloading github.com/hashicorp/go-version v1.7.0
go: downloading github.com/ulikunitz/xz v0.5.15
go: downloading google.golang.org/api v0.248.0
go: downloading github.com/mailru/easyjson v0.9.0
go: downloading github.com/opentracing/opentracing-go v1.2.0
go: downloading github.com/go-openapi/analysis v0.23.0
go: downloading github.com/go-openapi/jsonpointer v0.21.0
go: downloading github.com/go-openapi/loads v0.22.0
go: downloading github.com/go-openapi/spec v0.21.0
go: downloading google.golang.org/genproto/googleapis/rpc v0.0.0-20251022142026-3a174f9686a8
go: downloading github.com/evanphx/json-patch/v5 v5.9.0
go: downloading gomodules.xyz/jsonpatch/v2 v2.4.0
go: downloading github.com/google/go-github/v73 v73.0.0
go: downloading github.com/google/go-querystring v1.1.0
go: downloading github.com/thales-e-security/pool v0.0.2
go: downloading github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb
go: downloading github.com/lestrrat-go/httpcc v1.0.1
go: downloading github.com/segmentio/asm v1.2.1
go: downloading github.com/goccy/go-json v0.10.5
go: downloading github.com/bytecodealliance/wasmtime-go/v39 v39.0.1
go: downloading github.com/moby/locker v1.0.1
go: downloading github.com/dgraph-io/ristretto v0.1.1
go: downloading github.com/dgraph-io/ristretto/v2 v2.2.0
go: downloading github.com/agnivade/levenshtein v1.2.1
go: downloading github.com/huandu/go-sqlbuilder v1.38.1
go: downloading github.com/aws/aws-sdk-go-v2/internal/ini v1.8.3
go: downloading github.com/aws/aws-sdk-go-v2/service/sso v1.29.5
go: downloading github.com/aws/aws-sdk-go-v2/service/ssooidc v1.35.1
go: downloading github.com/aws/aws-sdk-go-v2/service/sts v1.38.6
go: downloading github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.9
go: downloading github.com/Azure/go-autorest/tracing v0.6.0
go: downloading github.com/Azure/go-autorest/autorest/date v0.3.0
go: downloading github.com/golang-jwt/jwt/v4 v4.5.2
go: downloading github.com/alibabacloud-go/endpoint-util v1.1.1
go: downloading github.com/alibabacloud-go/openapi-util v0.1.1
go: downloading github.com/alibabacloud-go/alibabacloud-gateway-spi v0.0.5
go: downloading github.com/alibabacloud-go/tea-xml v1.1.3
go: downloading github.com/alibabacloud-go/debug v1.0.1
go: downloading gopkg.in/ini.v1 v1.67.0
go: downloading github.com/agext/levenshtein v1.2.3
go: downloading github.com/containerd/typeurl/v2 v2.2.3
go: downloading github.com/apparentlymart/go-textseg/v15 v15.0.0
go: downloading golang.org/x/tools v0.40.0
go: downloading github.com/anchore/go-struct-converter v0.0.0-20230627203149-c72ef8859ca9
go: downloading cloud.google.com/go/auth v0.16.5
go: downloading cloud.google.com/go/iam v1.5.2
go: downloading github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.7.1
go: downloading github.com/aws/aws-sdk-go-v2/internal/v4a v1.4.9
go: downloading github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.1
go: downloading github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.8.9
go: downloading github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.9
go: downloading github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.19.9
go: downloading github.com/josharian/intern v1.0.0
go: downloading github.com/hashicorp/go-multierror v1.1.1
go: downloading github.com/google/flatbuffers v25.2.10+incompatible
go: downloading github.com/huandu/go-clone v1.7.3
go: downloading github.com/huandu/xstrings v1.5.0
go: downloading github.com/golang/snappy v0.0.4
go: downloading github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.9
go: downloading github.com/alibabacloud-go/tea-utils/v2 v2.0.6
go: downloading github.com/tjfoc/gmsm v1.4.1
go: downloading github.com/clbanning/mxj/v2 v2.7.0
go: downloading github.com/hashicorp/errwrap v1.1.0
go: downloading github.com/emicklei/proto v1.14.2
go: downloading github.com/protocolbuffers/txtpbfmt v0.0.0-20251016062345-16587c79cd91
go: downloading github.com/google/cel-go v0.26.1
go: downloading github.com/stoewer/go-strcase v1.3.1
go: github.com/muhammadmuzzammil1998/[email protected] 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/[email protected] requires go >= 1.25.3; switching to go1.25.5
go: downloading github.com/daixiang0/gci v0.13.5
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.0
go: downloading github.com/wadey/gocovmerge v0.0.0-20160331181800-b5bfa59ec0ad
go: downloading helm.sh/helm/v3 v3.19.4
go: downloading k8s.io/kubernetes v1.35.0
go: downloading sigs.k8s.io/kustomize/kustomize/v5 v5.8.0
go: downloading github.com/bmatcuk/doublestar/v4 v4.6.1
go: downloading golang.org/x/sync v0.18.0
go: downloading github.com/sigstore/cosign/v2 v2.6.0
go: downloading github.com/sigstore/sigstore v1.9.6-0.20250729224751-181c5d3339b3
go: downloading golang.org/x/exp v0.0.0-20250911091902-df9299821621
go: downloading k8s.io/apimachinery v0.34.2
go: downloading k8s.io/client-go v0.34.2
go: downloading golang.org/x/tools v0.38.0
go: downloading github.com/Masterminds/semver/v3 v3.4.0
go: downloading github.com/gofrs/flock v0.13.0
go: downloading github.com/gosuri/uitable v0.0.4
go: downloading k8s.io/kubectl v0.34.2
go: downloading k8s.io/component-base v0.34.2
go: downloading github.com/santhosh-tekuri/jsonschema/v6 v6.0.2
go: downloading oras.land/oras-go v1.2.6
go: downloading github.com/google/go-containerregistry v0.20.6
go: downloading github.com/in-toto/in-toto-golang v0.9.1-0.20240317085821-8e2966059a09
go: downloading github.com/sigstore/sigstore-go v1.1.2
go: downloading github.com/letsencrypt/boulder v0.0.0-20240830194243-1fcf0ee08180
go: downloading golang.org/x/crypto v0.45.0
go: downloading github.com/sigstore/sigstore/pkg/signature/kms/aws v1.9.5
go: downloading github.com/sigstore/sigstore/pkg/signature/kms/azure v1.9.5
go: downloading github.com/sigstore/sigstore/pkg/signature/kms/gcp v1.9.6-0.20250729224751-181c5d3339b3
go: downloading github.com/sigstore/sigstore/pkg/signature/kms/hashivault v1.9.5
go: downloading k8s.io/api v0.34.2
go: downloading github.com/tektoncd/triggers v0.33.0
go: downloading github.com/tektoncd/hub v1.22.2
go: downloading golang.org/x/sys v0.38.0
go: downloading github.com/Masterminds/sprig/v3 v3.3.0
go: downloading k8s.io/cli-runtime v0.34.2
go: downloading github.com/cyphar/filepath-securejoin v0.6.1
go: downloading github.com/mitchellh/copystructure v1.2.0
go: downloading github.com/evanphx/json-patch v5.9.11+incompatible
go: downloading github.com/Masterminds/vcs v1.13.3
go: downloading github.com/Masterminds/squirrel v1.5.4
go: downloading github.com/jmoiron/sqlx v1.4.0
go: downloading github.com/lib/pq v1.10.9
go: downloading github.com/rubenv/sql-migrate v1.8.0
go: downloading github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de
go: downloading sigs.k8s.io/kustomize/cmd/config v0.21.0
go: downloading github.com/hexops/gotextdiff v1.0.3
go: downloading golang.org/x/mod v0.29.0
go: downloading github.com/ldez/grignotin v0.9.0
go: downloading github.com/golangci/plugin-module-register v0.1.1
go: downloading github.com/go-xmlfmt/xmlfmt v1.1.3
go: downloading github.com/golangci/revgrep v0.8.0
go: downloading github.com/tzrikka/xdg v1.3.2
go: downloading go.mongodb.org/mongo-driver v1.17.4
go: downloading google.golang.org/genproto v0.0.0-20250715232539-7130f93afb79
go: downloading github.com/theupdateframework/go-tuf/v2 v2.1.1
go: downloading github.com/titanous/rocacheck v0.0.0-20171023193734-afe73141d399
go: downloading github.com/aws/aws-sdk-go-v2 v1.38.1
go: downloading github.com/aws/aws-sdk-go-v2/config v1.31.3
go: downloading github.com/aws/aws-sdk-go-v2/service/kms v1.44.2
go: downloading github.com/jellydator/ttlcache/v3 v3.4.0
go: downloading github.com/Azure/azure-sdk-for-go/sdk/azcore v1.18.2
go: downloading github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.11.0
go: downloading github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azkeys v1.4.0
go: downloading cloud.google.com/go/kms v1.22.0
go: downloading github.com/hashicorp/vault/api v1.16.0
go: downloading github.com/in-toto/archivista v0.10.0
go: downloading github.com/in-toto/go-witness v0.8.6
go: downloading gocloud.dev v0.43.0
go: downloading gocloud.dev/docstore/mongodocstore v0.43.0
go: downloading github.com/grafeas/grafeas v0.2.3
go: downloading github.com/google/go-containerregistry/pkg/authn/k8schain v0.0.0-20240826191751-a07d1cab8700
go: downloading gocloud.dev/pubsub/kafkapubsub v0.43.0
go: downloading github.com/AlecAivazis/survey/v2 v2.3.7
go: downloading golang.org/x/oauth2 v0.32.0
go: downloading github.com/Masterminds/goutils v1.1.1
go: downloading github.com/shopspring/decimal v1.4.0
go: downloading github.com/mitchellh/reflectwalk v1.0.2
go: downloading github.com/exponent-io/jsonpath v0.0.0-20210407135951-1de76d718b3f
go: downloading github.com/lann/builder v0.0.0-20180802200727-47ae307949d0
go: downloading github.com/go-gorp/gorp/v3 v3.1.0
go: downloading github.com/chai2010/gettext-go v1.0.3
go: downloading k8s.io/component-helpers v0.34.2
go: downloading github.com/lithammer/dedent v1.1.0
go: downloading k8s.io/metrics v0.34.2
go: downloading github.com/alingse/asasalint v0.0.11
go: downloading github.com/tdakkota/asciicheck v0.4.1
go: downloading github.com/breml/bidichk v0.3.2
go: downloading github.com/timakin/bodyclose v0.0.0-20241017074812-ed6a65f985e3
go: downloading github.com/lasiar/canonicalheader v1.1.2
go: downloading github.com/sivchari/containedctx v1.0.3
go: downloading github.com/kkHAIKE/contextcheck v1.1.6
go: downloading github.com/karamaru-alpha/copyloopvar v1.2.1
go: downloading github.com/bkielbasa/cyclop v1.2.3
go: downloading gitlab.com/bosi/decorder v0.4.2
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/Abirdcfly/dupword v0.1.3
go: downloading github.com/charithe/durationcheck v0.0.10
go: downloading github.com/Djarvur/go-err113 v0.1.0
go: downloading github.com/kisielk/errcheck v1.9.0
go: downloading github.com/breml/errchkjson v0.4.0
go: downloading github.com/Antonboom/errname v1.0.0
go: downloading github.com/polyfloyd/go-errorlint v1.7.1
go: downloading github.com/nishanths/exhaustive v0.12.0
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/ashanbrown/forbidigo v1.6.0
go: downloading github.com/gostaticanalysis/forcetypeassert v0.2.0
go: downloading github.com/ultraware/funlen 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/alecthomas/go-check-sumtype v0.3.1
go: downloading github.com/uudashr/gocognit v1.2.0
go: downloading github.com/jgautheron/goconst v1.7.1
go: downloading github.com/go-critic/go-critic v0.12.0
go: downloading github.com/quasilyte/go-ruleguard/dsl v0.3.22
go: downloading github.com/quasilyte/go-ruleguard v0.4.3-0.20240823090925-0fe6f58b47b1
go: downloading github.com/fzipp/gocyclo v0.6.0
go: downloading github.com/tetafro/godot v1.5.0
go: downloading github.com/matoous/godox v1.1.0
go: downloading github.com/denis-tingaikin/go-header v0.5.0
go: downloading github.com/ldez/gomoddirectives v0.6.1
go: downloading github.com/ryancurrah/gomodguard v1.3.5
go: downloading github.com/golangci/go-printf-func-name v0.1.0
go: downloading github.com/securego/gosec/v2 v2.22.2
go: downloading honnef.co/go/tools v0.6.1
go: downloading github.com/xen0n/gosmopolitan v1.2.2
go: downloading github.com/leonklingele/grouper v1.1.2
go: downloading github.com/uudashr/iface v1.3.1
go: downloading github.com/julz/importas v0.2.0
go: downloading github.com/macabu/inamedparam v0.1.3
go: downloading github.com/gordonklaus/ineffassign v0.1.0
go: downloading github.com/sashamelentyev/interfacebloat v1.1.0
go: downloading github.com/ckaznocha/intrange v0.3.0
go: downloading github.com/butuzov/ireturn v0.3.1
go: downloading github.com/timonwong/loggercheck v0.10.1
go: downloading github.com/yagipy/maintidx v1.0.0
go: downloading github.com/ashanbrown/makezero v1.2.0
go: downloading github.com/butuzov/mirror v1.3.0
go: downloading github.com/golangci/misspell v0.6.0
go: downloading github.com/tommy-muehle/go-mnd/v2 v2.5.1
go: downloading go-simpler.org/musttag v0.13.0
go: downloading github.com/alexkohler/nakedret/v2 v2.0.5
go: downloading github.com/nakabonne/nestif v0.3.1
go: downloading github.com/gostaticanalysis/nilerr v0.1.1
go: downloading github.com/alingse/nilnesserr v0.1.2
go: downloading github.com/Antonboom/nilnil v1.0.1
go: downloading github.com/ssgreg/nlreturn/v2 v2.2.1
go: downloading github.com/sonatard/noctx v0.1.0
go: downloading github.com/firefart/nonamedreturns v1.0.5
go: downloading github.com/stbenjam/no-sprintf-host-port v0.2.0
go: downloading github.com/kunwardeep/paralleltest v1.0.10
go: downloading github.com/catenacyber/perfsprint v0.8.2
go: downloading github.com/alexkohler/prealloc v1.0.0
go: downloading github.com/nishanths/predeclared v0.2.2
go: downloading github.com/yeya24/promlinter v0.3.0
go: downloading github.com/ghostiam/protogetter v0.3.9
go: downloading github.com/curioswitch/go-reassign v0.3.0
go: downloading github.com/raeperd/recvcheck v0.2.0
go: downloading github.com/mgechev/revive v1.7.0
go: downloading github.com/jingyugao/rowserrcheck v1.1.1
go: downloading go-simpler.org/sloglint v0.9.0
go: downloading github.com/jjti/go-spancheck v0.6.4
go: downloading github.com/ryanrolds/sqlclosecheck v0.5.1
go: downloading github.com/4meepo/tagalign v1.4.2
go: downloading github.com/ldez/tagliatelle v0.7.1
go: downloading github.com/sivchari/tenv v1.12.1
go: downloading github.com/maratori/testableexamples v1.0.0
go: downloading github.com/Antonboom/testifylint v1.5.2
go: downloading github.com/maratori/testpackage v1.1.1
go: downloading github.com/kulti/thelper v0.6.3
go: downloading github.com/moricho/tparallel v0.3.2
go: downloading github.com/golangci/unconvert v0.0.0-20240309020433-c5143eacb3ed
go: downloading mvdan.cc/unparam v0.0.0-20240528143540-8a5130ca722f
go: downloading github.com/sashamelentyev/usestdlibvars v1.28.0
go: downloading github.com/ldez/usetesting v0.4.2
go: downloading github.com/blizzy78/varnamelen v0.8.0
go: downloading github.com/sanposhiho/wastedassign/v2 v2.1.0
go: downloading github.com/ultraware/whitespace v0.2.0
go: downloading github.com/tomarrell/wrapcheck/v2 v2.10.0
go: downloading github.com/bombsimon/wsl/v4 v4.5.0
go: downloading github.com/ykadowak/zerologlint v0.1.5
go: downloading github.com/golangci/gofmt v0.0.0-20250106114630-d62b90e6713d
go: downloading mvdan.cc/gofumpt v0.7.0
go: downloading github.com/aws/aws-sdk-go-v2/credentials v1.18.7
go: downloading github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.18.4
go: downloading github.com/aws/aws-sdk-go-v2/service/s3 v1.87.1
go: downloading cuelang.org/go v0.15.1
go: downloading github.com/aws/smithy-go v1.22.5
go: downloading github.com/aws/aws-sdk-go-v2/service/sso v1.28.2
go: downloading github.com/aws/aws-sdk-go-v2/service/ssooidc v1.34.0
go: downloading github.com/aws/aws-sdk-go-v2/service/sts v1.38.0
go: downloading github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.4
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.4.2
go: downloading github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/internal v1.2.0
go: downloading github.com/hashicorp/go-rootcerts v1.0.2
go: downloading github.com/hashicorp/go-secure-stdlib/parseutil v0.2.0
go: downloading github.com/hashicorp/go-secure-stdlib/strutil v0.1.2
go: downloading github.com/aws/aws-sdk-go v1.55.8
go: downloading github.com/google/wire v0.6.0
go: downloading cloud.google.com/go/firestore v1.18.0
go: downloading github.com/google/go-containerregistry/pkg/authn/kubernetes v0.0.0-20240826191751-a07d1cab8700
go: downloading github.com/IBM/sarama v1.45.2
go: downloading github.com/docker/docker v28.3.3+incompatible
go: downloading github.com/ktr0731/go-fuzzyfinder v0.9.0
go: downloading github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
go: downloading github.com/joho/godotenv v1.5.1
go: downloading k8s.io/apiserver v0.34.2
go: downloading github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79
go: downloading github.com/peterbourgon/diskv v2.0.1+incompatible
go: downloading github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0
go: downloading github.com/gorilla/websocket v1.5.4-0.20250319132907-e064f32e3674
go: downloading github.com/fatih/camelcase v1.0.0
go: downloading github.com/sourcegraph/go-diff v0.7.0
go: downloading github.com/gostaticanalysis/analysisutil v0.7.1
go: downloading github.com/go-toolsmith/astcast v1.1.0
go: downloading github.com/go-toolsmith/astcopy v1.1.0
go: downloading github.com/go-toolsmith/astequal v1.2.0
go: downloading github.com/go-toolsmith/astfmt v1.1.0
go: downloading github.com/go-toolsmith/astp v1.1.0
go: downloading github.com/go-toolsmith/strparse v1.1.0
go: downloading github.com/go-toolsmith/typep v1.1.0
go: downloading github.com/quasilyte/regex/syntax v0.0.0-20210819130434-b3f0c404a727
go: downloading github.com/ccojocar/zxcvbn-go v1.0.2
go: downloading github.com/gostaticanalysis/comment v1.5.0
go: downloading github.com/fatih/structtag v1.2.0
go: downloading github.com/ettle/strcase v0.2.0
go: downloading github.com/hashicorp/go-immutable-radix/v2 v2.1.0
go: downloading github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.7.0
go: downloading github.com/aws/aws-sdk-go-v2/internal/v4a v1.4.4
go: downloading github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.0
go: downloading github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.8.4
go: downloading github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.4
go: downloading github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.19.4
go: downloading github.com/coreos/go-oidc/v3 v3.14.1
go: downloading github.com/segmentio/ksuid v1.0.4
go: downloading github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966
go: downloading github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.4
go: downloading github.com/kylelemons/godebug v1.1.0
go: downloading go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.62.0
go: downloading github.com/hashicorp/go-sockaddr v1.0.7
go: downloading github.com/ryanuber/go-glob v1.0.0
go: downloading github.com/edwarnicke/gitoid v0.0.0-20220710194850-1be5bfda1f9d
go: downloading golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da
go: downloading github.com/youmark/pkcs8 v0.0.0-20240726163527-a2c0da244d78
go: downloading github.com/eapache/go-resiliency v1.7.0
go: downloading github.com/eapache/go-xerial-snappy v0.0.0-20230731223053-c322873962e3
go: downloading github.com/eapache/queue v1.1.0
go: downloading github.com/jcmturner/gofork v1.7.6
go: downloading github.com/jcmturner/gokrb5/v8 v8.4.4
go: downloading github.com/pierrec/lz4/v4 v4.1.22
go: downloading github.com/gdamore/tcell/v2 v2.8.1
go: downloading github.com/ktr0731/go-ansisgr v0.1.0
go: downloading github.com/nsf/termbox-go v1.1.1
go: downloading github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d
go: downloading goa.design/goa/v3 v3.21.1
go: downloading github.com/google/btree v1.1.3
go: downloading github.com/moby/spdystream v0.5.0
go: downloading github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f
go: downloading golang.org/x/exp/typeparams v0.0.0-20250210185358-939b2ce775ac
go: downloading github.com/quasilyte/gogrep v0.5.0
go: downloading github.com/quasilyte/stdinfo v0.0.0-20220114132959-f7386bf02567
go: downloading github.com/chavacava/garif v0.1.0
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/xdg-go/scram v1.1.2
go: downloading github.com/xdg-go/stringprep v1.0.4
go: downloading github.com/montanaflynn/stats v0.7.1
go: downloading github.com/jcmturner/dnsutils/v2 v2.0.0
go: downloading github.com/hashicorp/go-uuid v1.0.3
go: downloading github.com/gdamore/encoding v1.0.1
go: downloading github.com/lucasb-eyer/go-colorful v1.2.0
go: downloading github.com/xdg-go/pbkdf2 v1.0.0
go: downloading github.com/jcmturner/rpc/v2 v2.0.3
go: downloading github.com/jcmturner/aescts/v2 v2.0.0
go: downloading github.com/gdamore/tcell/v2 v2.9.0
go: github.com/muhammadmuzzammil1998/[email protected] 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 5 times, most recently from 4aa9b3e to 65d1436 Compare September 2, 2025 21:30
@renovate renovate bot force-pushed the renovate/release-v0.6-go-modules branch from 65d1436 to bc37c5e Compare September 4, 2025 14:00
@renovate renovate bot changed the title Update go modules (release-v0.6) (minor) Update go modules (release-v0.6) Sep 4, 2025
@renovate renovate bot force-pushed the renovate/release-v0.6-go-modules branch from bc37c5e to a0c2d99 Compare September 4, 2025 14:35
@renovate renovate bot changed the title Update go modules (release-v0.6) Update go modules (release-v0.6) (minor) Sep 4, 2025
@renovate renovate bot force-pushed the renovate/release-v0.6-go-modules branch from a0c2d99 to 6c6b530 Compare September 5, 2025 08:54
@renovate renovate bot changed the title Update go modules (release-v0.6) (minor) Update go modules (release-v0.6) Sep 5, 2025
@renovate renovate bot force-pushed the renovate/release-v0.6-go-modules branch from 6c6b530 to 84f155e Compare September 5, 2025 12:50
@renovate renovate bot changed the title Update go modules (release-v0.6) Update go modules (release-v0.6) (minor) Sep 5, 2025
@renovate renovate bot force-pushed the renovate/release-v0.6-go-modules branch 11 times, most recently from b67d3d3 to 8ed3f71 Compare September 12, 2025 05:37
@renovate renovate bot force-pushed the renovate/release-v0.6-go-modules branch 2 times, most recently from c1c6e13 to 8b9b8bb Compare September 17, 2025 04:43
@renovate renovate bot changed the title Update go modules (release-v0.6) (minor) Update go modules (release-v0.6) Sep 17, 2025
@renovate renovate bot force-pushed the renovate/release-v0.6-go-modules branch 4 times, most recently from 734f111 to 48c20e4 Compare November 27, 2025 04:01
@renovate renovate bot force-pushed the renovate/release-v0.6-go-modules branch 3 times, most recently from e6da2d7 to ced3e95 Compare December 8, 2025 17:14
@renovate renovate bot force-pushed the renovate/release-v0.6-go-modules branch 9 times, most recently from 23876a5 to 9361491 Compare December 15, 2025 09:34
@renovate renovate bot force-pushed the renovate/release-v0.6-go-modules branch 8 times, most recently from d42b5fe to 01e7152 Compare December 22, 2025 01:41
@renovate renovate bot force-pushed the renovate/release-v0.6-go-modules branch from 01e7152 to f4c07bf Compare December 30, 2025 15:32
@renovate renovate bot force-pushed the renovate/release-v0.6-go-modules branch from f4c07bf to 356c679 Compare December 30, 2025 18:34
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