Skip to content

chore: update go dependencies - #185

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/gomod
Open

chore: update go dependencies#185
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/gomod

Conversation

@renovate

@renovate renovate Bot commented Aug 3, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update Pending
cloud.google.com/go/profiler v0.3.0v0.6.0 age confidence require minor
cloud.google.com/go/storage v1.36.0v1.64.0 age confidence require minor
github.com/99designs/gqlgen v0.17.43v0.17.94 age confidence require patch
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.21.0v1.35.0 age confidence require minor
github.com/avast/retry-go/v4 v4.0.4v5.0.0 age confidence require major
github.com/aws/aws-sdk-go-v2 v1.41.5v1.43.4 age confidence require minor v1.43.6 (+1)
github.com/aws/aws-sdk-go-v2/config v1.27.7v1.32.35 age confidence require minor v1.32.37 (+1)
github.com/aws/aws-sdk-go-v2/service/s3 v1.97.3v1.107.0 age confidence require minor v1.107.2 (+1)
github.com/gavv/httpexpect/v2 v2.3.1v2.17.0 age confidence require minor
github.com/goccy/go-yaml v1.11.3v1.19.2 age confidence require minor
github.com/jarcoal/httpmock v1.3.1v1.4.2 age confidence require minor
github.com/k0kubun/pp/v3 v3.2.0v3.5.2 age confidence require minor
github.com/labstack/echo/v4 v4.11.4v5.3.1 age confidence require major
github.com/paulmach/go.geojson v1.4.0v1.5.0 age confidence require minor
github.com/ravilushqa/otelgqlgen v0.15.0v0.19.0 age confidence require minor
github.com/samber/lo v1.39.0v1.53.0 age confidence require minor
github.com/spf13/afero v1.11.0v1.15.0 age confidence require minor
github.com/twpayne/go-kml v1.5.2v3.6.0 age confidence require major
github.com/vektah/gqlparser/v2 v2.5.14v2.5.36 age confidence require patch
github.com/zitadel/oidc v1.13.5v3.49.2 age confidence require major
go (source) 1.25.01.26.5 age confidence golang minor 1.26.6
go.mongodb.org/mongo-driver v1.13.1v2.8.0 age confidence require major
go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho v0.44.0v0.70.0 age confidence require minor
go.opentelemetry.io/contrib/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo v0.32.0v0.70.0 age confidence require minor
go.opentelemetry.io/otel v1.32.0v1.45.0 age confidence require minor
golang.org/x/net v0.54.0v0.57.0 age confidence require minor v0.58.0
golang.org/x/text v0.37.0v0.40.0 age confidence require minor v0.41.0
golang.org/x/tools v0.44.0v0.48.0 age confidence require minor v0.49.0
google.golang.org/api v0.161.0v0.292.0 age confidence require minor v0.293.0

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

googleapis/google-cloud-go (cloud.google.com/go/profiler)

v0.6.0

Compare Source

  • Beta release of BigQuery, DataStore, Logging and Storage. See the
    blog post.

  • bigquery:

    • struct support. Read a row directly into a struct with
      RowIterator.Next, and upload a row directly from a struct with Uploader.Put.
      You can also use field tags. See the [package documentation][cloud-bigquery-ref]
      for details.

    • The ValueList type was removed. It is no longer necessary. Instead of

    var v ValueList
    ... it.Next(&v) ..

    use

    var v []Value
    ... it.Next(&v) ...
    • Previously, repeatedly calling RowIterator.Next on the same []Value or
      ValueList would append to the slice. Now each call resets the size to zero first.

    • Schema inference will infer the SQL type BYTES for a struct field of
      type []byte. Previously it inferred STRING.

    • The types uint, uint64 and uintptr are no longer supported in schema
      inference. BigQuery's integer type is INT64, and those types may hold values
      that are not correctly represented in a 64-bit signed integer.

v0.5.0

  • bigquery:
    • The SQL types DATE, TIME and DATETIME are now supported. They correspond to
      the Date, Time and DateTime types in the new cloud.google.com/go/civil
      package.
    • Support for query parameters.
    • Support deleting a dataset.
    • Values from INTEGER columns will now be returned as int64, not int. This
      will avoid errors arising from large values on 32-bit systems.
  • datastore:
    • Nested Go structs encoded as Entity values, instead of a
      flattened list of the embedded struct's fields. This means that you may now have twice-nested slices, eg.
      type State struct {
        Cities  []struct{
          Populations []int
        }
      }
      See the announcement for
      more details.
    • Contexts no longer hold namespaces; instead you must set a key's namespace
      explicitly. Also, key functions have been changed and renamed.
    • The WithNamespace function has been removed. To specify a namespace in a Query, use the Query.Namespace method:
      q := datastore.NewQuery("Kind").Namespace("ns")
    • All the fields of Key are exported. That means you can construct any Key with a struct literal:
      k := &Key{Kind: "Kind",  ID: 37, Namespace: "ns"}
    • As a result of the above, the Key methods Kind, ID, d.Name, Parent, SetParent and Namespace have been removed.
    • NewIncompleteKey has been removed, replaced by IncompleteKey. Replace
      NewIncompleteKey(ctx, kind, parent)
      with
      IncompleteKey(kind, parent)
      and if you do use namespaces, make sure you set the namespace on the returned key.
    • NewKey has been removed, replaced by NameKey and IDKey. Replace
      NewKey(ctx, kind, name, 0, parent)
      NewKey(ctx, kind, "", id, parent)
      with
      NameKey(kind, name, parent)
      IDKey(kind, id, parent)
      and if you do use namespaces, make sure you set the namespace on the returned key.
    • The Done variable has been removed. Replace datastore.Done with iterator.Done, from the package google.golang.org/api/iterator.
    • The Client.Close method will have a return type of error. It will return the result of closing the underlying gRPC connection.
    • See the announcement for
      more details.

v0.4.0

  • bigquery:
    -NewGCSReference is now a function, not a method on Client.

    • Table.LoaderFrom now accepts a ReaderSource, enabling
      loading data into a table from a file or any io.Reader.
    • Client.Table and Client.OpenTable have been removed.
      Replace

      client.OpenTable("project", "dataset", "table")

      with

      client.DatasetInProject("project", "dataset").Table("table")
    • Client.CreateTable has been removed.
      Replace

      client.CreateTable(ctx, "project", "dataset", "table")

      with

      client.DatasetInProject("project", "dataset").Table("table").Create(ctx)
    • Dataset.ListTables have been replaced with Dataset.Tables.
      Replace

      tables, err := ds.ListTables(ctx)

      with

      it := ds.Tables(ctx)
      for {
          table, err := it.Next()
          if err == iterator.Done {
              break
          }
          if err != nil {
              // TODO: Handle error.
          }
          // TODO: use table.
      }
    • Client.Read has been replaced with Job.Read, Table.Read and Query.Read.
      Replace

      it, err := client.Read(ctx, job)

      with

      it, err := job.Read(ctx)

      and similarly for reading from tables or queries.

    • The iterator returned from the Read methods is now named RowIterator. Its
      behavior is closer to the other iterators in these libraries. It no longer
      supports the Schema method; see the next item.
      Replace

      for it.Next(ctx) {
          var vals ValueList
          if err := it.Get(&vals); err != nil {
              // TODO: Handle error.
          }
          // TODO: use vals.
      }
      if err := it.Err(); err != nil {
          // TODO: Handle error.
      }

      with

      for {
          var vals ValueList
          err := it.Next(&vals)
          if err == iterator.Done {
              break
          }
          if err != nil {
              // TODO: Handle error.
          }
          // TODO: use vals.
      }
      

      Instead of the RecordsPerRequest(n) option, write

      it.PageInfo().MaxSize = n

      Instead of the StartIndex(i) option, write

      it.StartIndex = i
    • ValueLoader.Load now takes a Schema in addition to a slice of Values.
      Replace

      func (vl *myValueLoader) Load(v []bigquery.Value)

      with

      func (vl *myValueLoader) Load(v []bigquery.Value, s bigquery.Schema)
    • Table.Patch is replace by Table.Update.
      Replace

      p := table.Patch()
      p.Description("new description")
      metadata, err := p.Apply(ctx)

      with

      metadata, err := table.Update(ctx, bigquery.TableMetadataToUpdate{
          Description: "new description",
      })
    • Client.Copy is replaced by separate methods for each of its four functions.
      All options have been replaced by struct fields.

      • To load data from Google Cloud Storage into a table, use Table.LoaderFrom.

        Replace

        client.Copy(ctx, table, gcsRef)

        with

        table.LoaderFrom(gcsRef).Run(ctx)

        Instead of passing options to Copy, set fields on the Loader:

        loader := table.LoaderFrom(gcsRef)
        loader.WriteDisposition = bigquery.WriteTruncate
      • To extract data from a table into Google Cloud Storage, use
        Table.ExtractorTo. Set fields on the returned Extractor instead of
        passing options.

        Replace

        client.Copy(ctx, gcsRef, table)

        with

        table.ExtractorTo(gcsRef).Run(ctx)
      • To copy data into a table from one or more other tables, use
        Table.CopierFrom. Set fields on the returned Copier instead of passing options.

        Replace

        client.Copy(ctx, dstTable, srcTable)

        with

        dst.Table.CopierFrom(srcTable).Run(ctx)
      • To start a query job, create a Query and call its Run method. Set fields
        on the query instead of passing options.

        Replace

        client.Copy(ctx, table, query)

        with

        query.Run(ctx)
    • Table.NewUploader has been renamed to Table.Uploader. Instead of options,
      configure an Uploader by setting its fields.
      Replace

      u := table.NewUploader(bigquery.UploadIgnoreUnknownValues())

      with

      u := table.NewUploader(bigquery.UploadIgnoreUnknownValues())
      u.IgnoreUnknownValues = true
  • pubsub: remove pubsub.Done. Use iterator.Done instead, where iterator is the package
    google.golang.org/api/iterator.

99designs/gqlgen (github.com/99designs/gqlgen)

v0.17.94

Compare Source

v0.17.93

Compare Source

What's Changed

Full Changelog: 99designs/gqlgen@v0.17.92...v0.17.93

v0.17.92

Compare Source

What's Changed

New Contributors

Full Changelog: 99designs/gqlgen@v0.17.91...v0.17.92

v0.17.91

Compare Source

What's Changed

New Contributors

Full Changelog: 99designs/gqlgen@v0.17.90...v0.17.91

v0.17.90

Compare Source

What's Changed

New Contributors

Full Changelog: 99designs/gqlgen@v0.17.89...v0.17.90

v0.17.89

Compare Source

What's Changed

New Contributors

Full Changelog: 99designs/gqlgen@v0.17.88...v0.17.89

v0.17.88

Compare Source

What's Changed

New Contributors

Full Changelog: 99designs/gqlgen@v0.17.87...v0.17.88

v0.17.87

Compare Source

What's Changed

Note

PR body was truncated to here.

@renovate
renovate Bot requested review from pyshx and soneda-yuya as code owners August 3, 2026 01:17
@renovate

renovate Bot commented Aug 3, 2026

Copy link
Copy Markdown
Contributor Author

⚠️ 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: server/go.sum
Command failed: go get -t ./...
go: downloading github.com/99designs/gqlgen v0.17.94
go: downloading github.com/idubinskiy/schematyper v0.0.0-20190118213059-f71b40dac30d
go: downloading github.com/vektah/dataloaden v0.3.0
go: downloading github.com/gavv/httpexpect/v2 v2.17.0
go: downloading github.com/reearth/reearthx v0.0.0-20250305165046-135dfe93bd2a
go: downloading github.com/samber/lo v1.53.0
go: downloading github.com/spf13/afero v1.15.0
go: downloading github.com/stretchr/testify v1.11.1
go: downloading golang.org/x/text v0.40.0
go: downloading github.com/vektah/gqlparser/v2 v2.5.36
go: downloading go.mongodb.org/mongo-driver v1.17.9
go: downloading github.com/labstack/echo/v4 v4.15.4
go: downloading cloud.google.com/go/profiler v0.6.0
go: downloading cloud.google.com/go v0.123.0
go: downloading github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.35.0
go: downloading github.com/ravilushqa/otelgqlgen v0.19.0
go: downloading github.com/uber/jaeger-client-go v2.30.0+incompatible
go: downloading github.com/uber/jaeger-lib v2.4.1+incompatible
go: downloading github.com/zitadel/oidc v1.13.5
go: downloading go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho v0.70.0
go: downloading go.opentelemetry.io/contrib v1.36.0
go: downloading go.opentelemetry.io/contrib/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo v0.70.0
go: downloading go.opentelemetry.io/otel v1.45.0
go: downloading go.opentelemetry.io/otel/sdk v1.45.0
go: downloading golang.org/x/net v0.57.0
go: downloading github.com/jarcoal/httpmock v1.4.2
go: downloading gopkg.in/square/go-jose.v2 v2.6.0
go: downloading github.com/joho/godotenv v1.4.0
go: downloading github.com/k0kubun/pp/v3 v3.5.2
go: downloading github.com/kelseyhightower/envconfig v1.4.0
go: downloading golang.org/x/oauth2 v0.36.0
go: downloading github.com/kennygrant/sanitize v1.2.4
go: downloading cloud.google.com/go/storage v1.64.0
go: downloading google.golang.org/api v0.292.0
go: downloading gopkg.in/h2non/gock.v1 v1.1.2
go: downloading golang.org/x/exp v0.0.0-20240119083558-1b970713d09a
go: downloading github.com/google/uuid v1.6.0
go: downloading github.com/square/mongo-lock v0.0.0-20201208161834-4db518ed7fb2
go: downloading github.com/pkg/errors v0.9.1
go: downloading github.com/aws/aws-sdk-go-v2 v1.43.4
go: downloading github.com/aws/aws-sdk-go-v2/config v1.32.35
go: downloading github.com/aws/aws-sdk-go-v2/service/s3 v1.107.0
go: downloading github.com/blang/semver v3.5.1+incompatible
go: downloading github.com/paulmach/go.geojson v1.5.0
go: downloading gopkg.in/go-playground/colors.v1 v1.2.0
go: downloading github.com/jonas-p/go-shp v0.1.1
go: downloading github.com/goccy/go-yaml v1.19.2
go: downloading github.com/mitchellh/mapstructure v1.5.0
go: downloading github.com/iancoleman/strcase v0.3.0
go: downloading golang.org/x/tools v0.48.0
go: downloading github.com/urfave/cli/v3 v3.10.1
go: downloading github.com/gedex/inflector v0.0.0-20170307190818-16278e9db813
go: downloading gopkg.in/alecthomas/kingpin.v2 v2.2.6
go: downloading github.com/TylerBrock/colorjson v0.0.0-20200706003622-8a50f05110d2
go: downloading github.com/ajg/form v1.5.1
go: downloading github.com/fatih/color v1.18.0
go: downloading github.com/fatih/structs v1.1.0
go: downloading github.com/gobwas/glob v0.2.3
go: downloading github.com/google/go-querystring v1.2.0
go: downloading github.com/gorilla/websocket v1.5.0
go: downloading github.com/imkira/go-interpol v1.1.0
go: downloading github.com/mattn/go-isatty v0.0.24
go: downloading github.com/mitchellh/go-wordwrap v1.0.1
go: downloading github.com/sanity-io/litter v1.5.5
go: downloading github.com/valyala/fasthttp v1.40.0
go: downloading github.com/xeipuuv/gojsonschema v1.2.0
go: downloading github.com/yalp/jsonpath v0.0.0-20180802001716-5cc68e5049a0
go: downloading github.com/yudai/gojsondiff v1.0.0
go: downloading moul.io/http2curl v1.0.1-0.20190925090545-5cd742060b0e
go: downloading moul.io/http2curl/v2 v2.3.0
go: downloading golang.org/x/crypto v0.54.0
go: downloading github.com/aws/aws-sdk-go-v2/service/ses v1.19.6
go: downloading github.com/sendgrid/sendgrid-go v3.14.0+incompatible
go: downloading github.com/oklog/ulid v1.3.1
go: downloading github.com/maruel/panicparse/v2 v2.3.1
go: downloading github.com/nicksnyder/go-i18n/v2 v2.4.0
go: downloading github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc
go: downloading github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2
go: downloading github.com/auth0/go-jwt-middleware/v2 v2.2.1
go: downloading github.com/golang-jwt/jwt v3.2.2+incompatible
go: downloading github.com/sosodev/duration v1.4.0
go: downloading golang.org/x/sync v0.22.0
go: downloading go.uber.org/atomic v1.11.0
go: downloading github.com/labstack/gommon v0.5.0
go: downloading go.uber.org/zap v1.26.0
go: downloading cloud.google.com/go/compute/metadata v0.9.0
go: downloading cloud.google.com/go/compute v1.63.0
go: downloading github.com/google/pprof v0.0.0-20260402051712-545e8a4df936
go: downloading github.com/googleapis/gax-go/v2 v2.23.0
go: downloading google.golang.org/genproto v0.0.0-20260519071638-aa98bba5eb94
go: downloading google.golang.org/genproto/googleapis/rpc v0.0.0-20260803160001-6ac0973c030d
go: downloading google.golang.org/grpc v1.83.0
go: downloading google.golang.org/protobuf v1.36.11
go: downloading github.com/go-viper/mapstructure/v2 v2.5.0
go: downloading github.com/hashicorp/golang-lru/v2 v2.0.7
go: downloading github.com/coder/websocket v1.8.15
go: downloading cloud.google.com/go/trace v1.16.0
go: downloading github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.59.0
go: downloading go.opentelemetry.io/otel/trace v1.45.0
go: downloading github.com/valyala/fasttemplate v1.2.2
go: downloading golang.org/x/time v0.15.0
go: downloading github.com/golang/gddo v0.0.0-20210115222349-20d68f94ee1f
go: downloading github.com/gorilla/mux v1.8.1
go: downloading github.com/opentracing/opentracing-go v1.2.0
go: downloading github.com/youmark/pkcs8 v0.0.0-20240726163527-a2c0da244d78
go: downloading go.opentelemetry.io/otel/metric v1.45.0
go: downloading github.com/go-logr/logr v1.4.4
go: downloading github.com/mattn/go-colorable v0.1.15
go: downloading cloud.google.com/go/auth v0.22.0
go: downloading cloud.google.com/go/iam v1.11.0
go: downloading github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.57.0
go: downloading go.opentelemetry.io/contrib/detectors/gcp v1.44.0
go: downloading go.opentelemetry.io/otel/sdk/metric v1.45.0
go: downloading github.com/h2non/parth v0.0.0-20190131123155-b4df798d6542
go: downloading github.com/aws/smithy-go v1.27.6
go: downloading github.com/aws/aws-sdk-go-v2/credentials v1.19.34
go: downloading github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.18.35
go: downloading github.com/aws/aws-sdk-go-v2/service/signin v1.5.4
go: downloading github.com/aws/aws-sdk-go-v2/service/sso v1.33.4
go: downloading github.com/aws/aws-sdk-go-v2/service/ssooidc v1.38.4
go: downloading github.com/aws/aws-sdk-go-v2/service/sts v1.45.4
go: downloading github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.7.16
go: downloading github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.35
go: downloading github.com/aws/aws-sdk-go-v2/internal/v4a v1.4.36
go: downloading github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.15
go: downloading github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.9.28
go: downloading github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.35
go: downloading github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.19.36
go: downloading github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751
go: downloading github.com/alecthomas/units v0.0.0-20210927113745-59d0afb8317a
go: downloading golang.org/x/sys v0.47.0
go: downloading github.com/andybalholm/brotli v1.0.4
go: downloading github.com/klauspost/compress v1.19.1
go: downloading github.com/valyala/bytebufferpool v1.0.0
go: downloading github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415
go: downloading github.com/sergi/go-diff v1.3.1
go: downloading github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82
go: downloading github.com/jmespath/go-jmespath v0.4.0
go: downloading github.com/sendgrid/rest v2.6.9+incompatible
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading gopkg.in/go-jose/go-jose.v2 v2.6.3
go: downloading go.uber.org/multierr v1.11.0
go: downloading cloud.google.com/go/auth/oauth2adapt v0.2.8
go: downloading go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.68.0
go: downloading google.golang.org/genproto/googleapis/api v0.0.0-20260630182238-925bb5da69e7
go: downloading github.com/gorilla/schema v1.4.1
go: downloading github.com/rs/cors v1.11.1
go: downloading github.com/zitadel/logging v0.3.4
go: downloading github.com/golang/snappy v1.0.0
go: downloading github.com/gorilla/securecookie v1.1.2
go: downloading github.com/xdg-go/scram v1.2.0
go: downloading github.com/xdg-go/stringprep v1.0.4
go: downloading github.com/montanaflynn/stats v0.12.2
go: downloading github.com/go-logr/stdr v1.2.2
go: downloading go.opentelemetry.io/auto/sdk v1.2.1
go: downloading cloud.google.com/go/monitoring v1.29.0
go: downloading github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.33.0
go: downloading go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.68.0
go: downloading github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.35
go: downloading golang.org/x/mod v0.38.0
go: downloading github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb
go: downloading github.com/agnivade/levenshtein v1.2.1
go: downloading github.com/google/s2a-go v0.1.9
go: downloading github.com/cespare/xxhash/v2 v2.3.0
go: downloading github.com/sirupsen/logrus v1.9.3
go: downloading github.com/xdg-go/pbkdf2 v1.0.0
go: downloading github.com/felixge/httpsnoop v1.0.4
go: downloading github.com/googleapis/enterprise-certificate-proxy v0.3.19
go: downloading github.com/envoyproxy/go-control-plane/envoy v1.37.0
go: downloading github.com/envoyproxy/go-control-plane v0.14.0
go: downloading github.com/cncf/xds/go v0.0.0-20260202195803-dba9d589def2
go: downloading github.com/envoyproxy/protoc-gen-validate v1.3.3
go: downloading github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10
go: downloading github.com/spiffe/go-spiffe/v2 v2.7.0
go: downloading github.com/go-jose/go-jose/v4 v4.1.4
go: downloading cel.dev/expr v0.25.2
go: downloading github.com/avast/retry-go/v4 v4.7.0
go: downloading github.com/avast/retry-go v3.0.0+incompatible
go: downloading github.com/twpayne/go-kml v1.5.2
go: module . listed in go.work file requires go >= 1.26.5, but go.work lists go 1.25.0; to update it:
	go work use

@github-actions github-actions Bot added the server label Aug 3, 2026
@renovate
renovate Bot force-pushed the renovate/gomod branch 3 times, most recently from 2b714a2 to a037535 Compare August 4, 2026 04:00
@renovate
renovate Bot force-pushed the renovate/gomod branch 20 times, most recently from 247916f to 5770e26 Compare August 10, 2026 22:31
@renovate
renovate Bot force-pushed the renovate/gomod branch from 5770e26 to dbed2c4 Compare August 12, 2026 00:50
@renovate
renovate Bot force-pushed the renovate/gomod branch 6 times, most recently from 5afcae2 to 404b755 Compare August 14, 2026 09:55
@renovate
renovate Bot force-pushed the renovate/gomod branch from 404b755 to a193fdf Compare August 14, 2026 22:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants