Skip to content

fix(deps): update module github.com/elastic/go-elasticsearch/v8 to v9.5.1 - #2926

Open
trap-renovate[bot] wants to merge 1 commit into
masterfrom
renovate/github.com-elastic-go-elasticsearch-v8-9.x
Open

fix(deps): update module github.com/elastic/go-elasticsearch/v8 to v9.5.1#2926
trap-renovate[bot] wants to merge 1 commit into
masterfrom
renovate/github.com-elastic-go-elasticsearch-v8-9.x

Conversation

@trap-renovate

@trap-renovate trap-renovate Bot commented Feb 4, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
github.com/elastic/go-elasticsearch/v8 v8.19.7v9.5.1 age confidence

Release Notes

elastic/go-elasticsearch (github.com/elastic/go-elasticsearch/v8)

v9.5.1

Compare Source

Features

v9.5.0

Compare Source

Features

v9.4.3

Compare Source

Features

v9.4.2

Compare Source

Bug Fixes
  • esutil: Omit empty routing query param in BulkIndexer (#​1515) (3845bb1)

v9.4.1

Compare Source

⚠ BREAKING CHANGES
  • client: (*elasticsearch.Client).ToTyped() is removed. Use elasticsearch.NewTypedFrom(c) instead.
Bug Fixes
  • client: Remove (*Client).ToTyped() to fix binary-size regression (#​1480) (86e8f65)

v9.4.0

Compare Source

⚠ BREAKING CHANGES
  • esutil: default Client to elasticsearch.NewBase in NewBulkIndexer
  • esapi: params previously typed *int on ~25 esapi endpoints are now *int64 to match the spec long type. Call sites passing untyped integer literals keep compiling; call sites passing a typed int variable need an int64(...) cast.
Features
Bug Fixes

v9.3.6

Compare Source

Features

v9.3.5

Compare Source

Bug Fixes
  • esutil: Omit empty routing query param in BulkIndexer (#​1514) (f9640f0)

v9.3.4

Compare Source

⚠ BREAKING CHANGES
  • client: (*elasticsearch.Client).ToTyped() is removed. Use elasticsearch.NewTypedFrom(c) instead.
Bug Fixes
  • client: Remove (*Client).ToTyped() to fix binary-size regression (#​1479) (7d5b37e)

v9.3.3

Compare Source

⚠ BREAKING CHANGES
  • esapi: params previously typed *int on ~20 esapi endpoints are now *int64 to match the spec long type. Call sites passing untyped integer literals keep compiling; call sites passing a typed int variable need an int64(...) cast.
Features
Bug Fixes

v9.3.2

Compare Source

⚠ BREAKING CHANGES
  • Typed API: update client from spec df81426
Features
Bug Fixes
  • esapi: Document Response.Body must be closed; fix leaks in examples (#​1313) (3b3dd1e)
  • esutil: Deterministic context check in BulkIndexer.Close (#​1340) (a02272b)
  • esutil: Propagate caller context through BulkIndexer item callbacks (#​1316) (d28cd9d)
  • Typed API: Context variable shadowing in TypedAPI Perform causing otel attributes to leak to parent span (#​1331) (f37f7d1)

v9.3.1

Compare Source

Bug Fixes
  • bulk_indexer: Enable instrumentation support in bulk index requests (#​1243) (3300e5d)
  • esutil: Avoid duplicate bulk indexer OnError callbacks (#​1251) (9255720)
  • esutil: Propagate context timeout while closing bulk indexer (#​1254) (6a0b973)
  • Prevent BulkIndexer from silently dropping items on flush failure (#​1241) (0215eec)
  • Typed API: Add field-level nil checks during deserialisation (#​1225) (fc22640)
  • Typed API: Add missing custom UnmarshalJSON methods for types with additional properties (fc22640)

v9.3.0

Compare Source

⚠ BREAKING CHANGES
  • Upgrade Go version from 1.23 to 1.24 (#​1137)
  • API: API methods and request fields that previously accepted a single string for resource identifiers (e.g., indices, names, IDs, routing, features) now require []string. Corresponding WithX helpers now accept variadic arguments (...string).
  • API: All ExpandWildcards request fields were changed from string to []string, and WithExpandWildcards helpers now accept variadic arguments (...string).
  • API: Routing parameters across document, search, and multi-document APIs were changed from string to []string, and related WithRouting helpers now accept variadic arguments (...string).
  • API: Duration-based parameters previously expressed as string now use time.Duration (e.g., KeepAlive, Interval, BucketSpan). Call sites must pass time.Duration values.
  • API: ML APIs using interface{} for start/end time parameters now require string values, removing support for arbitrary types.
  • API: Several top-level API methods now require []string instead of string for path parameters that support multiple resources (e.g., indices, templates, data streams, transforms, repositories, privileges).
  • API: MonitoringBulk was refactored: DocumentType support was removed, Interval is now time.Duration, and required parameters were added explicitly to the method signature.
  • API: Some WithX functional options changed between single-value and variadic forms to match API behaviour. Existing option usage may require updates.
  • API: Request struct fields were updated to reflect REST API semantics, including changes from string to []string and removal of deprecated fields. Direct struct initialization may require changes.
Features
  • API: Introduce strong typing for duration values (3c657da)
  • API: Support multi-value resource parameters (3c657da)
  • API: Support multiple resources per request (3c657da)
  • API: Update APIs to 9.3.0 (3c657da)
  • Expose FlushedMs metric in BulkIndexer (#​1191) (d67d0be)
  • Typed API: Add DenseVectorF32 and DenseVectorBytes types, improving indexing performance of dense vectors by up to 3x when used instead of a float32 array (f543b82)
  • Typed API: Update TypedAPI to latest elasticsearch-specification 9.3.0 (f543b82)
  • Upgrade Go version from 1.23 to 1.24 (#​1137) (05f15eb)
Bug Fixes
  • API: Align request structs with Elasticsearch REST spec (3c657da)
  • API: Align routing parameters with REST API (3c657da)
  • API: Correct functional option cardinality (3c657da)
  • API: Modernize MonitoringBulk API (3c657da)
  • API: Normalize expand_wildcards handling (3c657da)
  • API: Simplify ML time range parameters (3c657da)
  • esutil: Handle error from Seek in BulkIndexer.writeBody (#​1162) (ab7b3bb)
  • Typed API: Marshal Additional Properties into json.RawMessage instead of any to avoid loss of precision (#​1147) (e3e61d6)

v9.2.6

Compare Source

⚠ BREAKING CHANGES
  • client: (*elasticsearch.Client).ToTyped() is removed. Use elasticsearch.NewTypedFrom(c) instead.
Bug Fixes
  • client: Remove (*Client).ToTyped() to fix binary-size regression (#​1478) (e328483)

v9.2.5

Compare Source

⚠ BREAKING CHANGES
  • esapi: params previously typed *int on ~20 esapi endpoints are now *int64 to match the spec long type. Call sites passing untyped integer literals keep compiling; call sites passing a typed int variable need an int64(...) cast.
Features
Bug Fixes
  • esapi: Regenerate esapi with *int64 for long-typed params (#​1421) (e30cdb6)
  • gen: Map spec long to *int64 for esapi params (#​1392) (ef6e458)
  • gen: Normalize date URL part and param types to string (#​1415) (a029ed0)
  • gen: Pass []string to DeleteIndexTemplate in test boilerplate (#​1423) (af25eed)
  • gen: Pass []string to DeletePrivileges in xpack test boilerplate (#​1424) (d603097)
  • gen: Support *int64 fields in gen-tests output (#​1418) (3a61210)

v9.2.4

Compare Source

⚠ BREAKING CHANGES
  • Typed API: update client from spec 49022a2
Features
Bug Fixes
  • esapi: Document Response.Body must be closed; fix leaks in examples (#​1312) (c680847)
  • esutil: Deterministic context check in BulkIndexer.Close (#​1339) (0b34e21)
  • esutil: Propagate caller context through BulkIndexer item callbacks (#​1315) (cf70e22)
  • Typed API: Context variable shadowing in TypedAPI Perform causing otel attributes to leak to parent span (#​1330) (f52219c)

v9.2.3

Compare Source

Bug Fixes
  • bulk_indexer: Enable instrumentation support in bulk index requests (#​1242) (71b0b0d)
  • esutil: Avoid duplicate bulk indexer OnError callbacks (#​1250) (8537e89)
  • esutil: Propagate context timeout while closing bulk indexer (#​1253) (405af64)
  • Prevent BulkIndexer from silently dropping items on flush failure (#​1240) (755a9d3)
  • Typed API: Add field-level nil checks during deserialisation (#​1224) (59f268f)
  • Typed API: Add missing custom UnmarshalJSON methods for types with additional properties (59f268f)

v9.2.2

Compare Source

Features
Bug Fixes
  • esutil: Handle error from Seek in BulkIndexer.writeBody (#​1161) (5394405)
  • Typed API: Marshal Additional Properties into json.RawMessage instead of any to avoid loss of precision (#​1201) (b5ceeee)

v9.2.1

Compare Source

Features
Bug Fixes

v9.2.0: 9.2.0

Compare Source

API

  • Updated APIs to 9.2.0

Typed API

v9.1.2

Compare Source

Features
Bug Fixes
  • Typed API: Marshal Additional Properties into json.RawMessage instead of any to avoid loss of precision (#​1200) (f32bfca)

v9.1.1

Compare Source

Features
Bug Fixes

v9.1.0: 9.1.0

Compare Source

API

  • Updated APIs to 9.1.0

Typed API

  • Update TypedAPI to latest elasticsearch-specification 9.1
  • This release introduces a new MethodAPI used by the TypedClient which makes the client friendlier for dead code elimination.
    Reducing the size of the client when only a subset of the APIs are used. The old API structure remains available for backward compatibility, but it is now deprecated.

v9.0.1: 9.0.1

Compare Source

API

  • Updated APIs to 9.0.4

Typed API

v9.0.0: 9.0.0

Compare Source

  • The client now requires Go 1.23 or later.

New

  • This release introduces an optional package for the TypedAPI named esdsl.
    It provides a domain-specific language (DSL) for building Elasticsearch queries in Go.
    The DSL is designed to simplify query construction, making it easier to build complex queries without writing raw JSON.
// create index
{
    // delete index if exists
    if existsRes, err := es.Indices.Exists("test").IsSuccess(context.Background()); err != nil {
        log.Println(err)
        return
    } else if existsRes {
        if ok, _ := es.Indices.Delete("test").IsSuccess(context.Background()); !ok {
            log.Fatalf("Error deleting index: %v\n", err)
        }
        log.Println("Index deleted:", "test")
    } else {
        log.Println("Index does not exist:", "test")
    }

    mappings := esdsl.NewTypeMapping().
        AddProperty("name", esdsl.NewTextProperty()).
        AddProperty("age", esdsl.NewIntegerNumberProperty())

    createRes, err := es.Indices.Create("test").Mappings(mappings).Do(context.Background())
    if err != nil {
        log.Println(err)
        return
    }

    log.Printf("Index created: %#v\n", createRes)
}

// index document
{
    documents := []Document{
        {"Alice", 30},
        {"Bob", 25},
        {"Charlie", 35},
    }

    bulk := es.Bulk().Index("test")
    for _, document := range documents {
        err := bulk.IndexOp(types.IndexOperation{}, document)
        if err != nil {
            log.Println("Error indexing document:", err)
        }
    }
    bulkRes, err := bulk.Refresh(refresh.Waitfor).Do(context.Background())
    if err != nil {
        log.Println(err)
        return
    }
    if bulkRes.Errors {
        log.Println("Some documents failed to index")
        for _, item := range bulkRes.Items {
            for operationType, responseItem := range item {
                if responseItem.Error != nil {
                    log.Println("Operation:", operationType)
                    log.Println("Response:", responseItem)
                }
            }
        }
    }
    indexedDocs := 0
    for _, item := range bulkRes.Items {
        for _, responseItem := range item {
            if responseItem.Error == nil {
                indexedDocs++
            }
        }
    }

    log.Println("Documents indexed:", indexedDocs)
}

// calculate median age
{
    searchRes, err := es.Search().
        Index("test").
        Size(0).
        AddAggregation("median_age", esdsl.NewPercentilesAggregation().Field("age").Percents(50)).
        Do(context.Background())
    if err != nil {
        log.Println(err)
        return
    }

    if agg, ok := searchRes.Aggregations["median_age"].(*types.TDigestPercentilesAggregate); ok {
        if val, ok := agg.Values.(map[string]interface{})["50.0"]; ok {
            log.Println("Median age:", val)
        }
    }
}

// search documents
{
    matchRes, err := es.Search().
        Index("test").
        Query(esdsl.NewBoolQuery().
            Must(esdsl.NewMatchQuery("name", "Alice")).
            Filter(esdsl.NewNumberRangeQuery("age").Gte(20).Lte(40))).
        Sort(esdsl.NewSortOptions().AddSortOption("age", esdsl.NewFieldSort(sortorder.Asc))).
        Size(10).
        Do(context.Background())
    if err != nil {
        log.Println(err)
        return
    }
    if matchRes.Hits.Total.Value > 0 {
        for _, hit := range matchRes.Hits.Hits {
            doc := Document{}
            err := json.Unmarshal(hit.Source_, &doc)
            if err != nil {
                log.Println("Error unmarshalling document:", err)
                continue
            }
            log.Printf("Document ID: %s, Name: %s, Age: %d\n", *hit.Id_, doc.Name, doc.Age)
        }
    } else {
        log.Println("No documents found")
    }
}

API

  • Updated APIs to 9.0.0

Typed API


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • 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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate CLI.

@trap-renovate trap-renovate Bot added renovate/gomod (Renovate) Pull requests related to go.mod update type/major (Renovate) Pull requests that update major version labels Feb 4, 2026
@trap-renovate
trap-renovate Bot force-pushed the renovate/github.com-elastic-go-elasticsearch-v8-9.x branch 26 times, most recently from 5c54968 to 07eebad Compare February 9, 2026 21:42
@trap-renovate
trap-renovate Bot force-pushed the renovate/github.com-elastic-go-elasticsearch-v8-9.x branch 6 times, most recently from 5486f9a to 93ad6a9 Compare February 11, 2026 20:43
@trap-renovate trap-renovate Bot changed the title fix(deps): update module github.com/elastic/go-elasticsearch/v8 to v9.3.0 fix(deps): update module github.com/elastic/go-elasticsearch/v8 to v9.3.1 Feb 11, 2026
@trap-renovate
trap-renovate Bot force-pushed the renovate/github.com-elastic-go-elasticsearch-v8-9.x branch 4 times, most recently from 5f88525 to 4e0d1b0 Compare February 11, 2026 20:54
@trap-renovate
trap-renovate Bot force-pushed the renovate/github.com-elastic-go-elasticsearch-v8-9.x branch 16 times, most recently from 38f5e73 to 1acdbe8 Compare March 1, 2026 06:32
@trap-renovate

trap-renovate Bot commented May 7, 2026

Copy link
Copy Markdown
Contributor Author

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@trap-renovate

trap-renovate Bot commented Aug 25, 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: go.sum
Command failed: go get -t ./...
go: downloading github.com/golang/mock v1.7.0-rc.1
go: downloading github.com/google/wire v0.7.0
go: downloading github.com/gofrs/uuid v4.4.0+incompatible
go: downloading github.com/json-iterator/go v1.1.12
go: downloading go.uber.org/zap v1.28.0
go: downloading golang.org/x/sync v0.22.0
go: downloading gorm.io/gorm v1.31.2
go: downloading cloud.google.com/go/profiler v0.6.0
go: downloading github.com/wtks/zapdriver v1.3.1-patch.0
go: downloading github.com/go-sql-driver/mysql v1.10.0
go: downloading cloud.google.com/go v0.123.0
go: downloading github.com/labstack/echo/v5 v5.3.1
go: downloading github.com/stretchr/testify v1.12.1
go: downloading github.com/leandro-lugaresi/hub v1.1.2
go: downloading github.com/spf13/cobra v1.10.2
go: downloading github.com/spf13/pflag v1.0.10
go: downloading github.com/spf13/viper v1.21.0
go: downloading github.com/go-gormigrate/gormigrate/v2 v2.1.6
go: downloading github.com/go-ozzo/ozzo-validation/v4 v4.4.1
go: downloading github.com/samber/lo v1.53.0
go: downloading github.com/motoki317/sc v1.8.2
go: downloading google.golang.org/api v0.293.0
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading gorm.io/driver/mysql v1.6.0
go: downloading gorm.io/plugin/opentelemetry v0.1.16
go: downloading github.com/labstack/echo-opentelemetry v0.0.3
go: downloading gorm.io/plugin/prometheus v0.1.0
go: downloading github.com/coreos/go-oidc/v3 v3.20.0
go: downloading github.com/labstack/echo-prometheus v0.0.1
go: downloading github.com/disintegration/imaging v1.6.2
go: downloading golang.org/x/exp v0.0.0-20260824195058-e88cd73687aa
go: downloading golang.org/x/oauth2 v0.36.0
go: downloading github.com/gavv/httpexpect/v2 v2.17.0
go: downloading github.com/NYTimes/gziphandler v1.1.1
go: downloading github.com/prometheus/client_golang v1.24.1
go: downloading github.com/golang-jwt/jwt/v5 v5.3.1
go: downloading golang.org/x/time v0.15.0
go: downloading github.com/google/go-querystring v1.2.0
go: downloading github.com/zitadel/oidc/v3 v3.49.2
go: downloading github.com/livekit/protocol v1.50.4
go: downloading github.com/lthibault/jitterbug/v2 v2.2.2
go: downloading github.com/livekit/server-sdk-go/v2 v2.18.1
go: downloading github.com/gorilla/websocket v1.5.4-0.20250319132907-e064f32e3674
go: downloading github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e
go: downloading firebase.google.com/go/v4 v4.20.0
go: downloading github.com/sapphi-red/midec v0.5.2
go: downloading github.com/go-audio/audio v1.0.0
go: downloading github.com/go-audio/wav v1.1.0
go: downloading github.com/hajimehoshi/go-mp3 v0.3.4
go: downloading github.com/orcaman/writerseeker v0.0.0-20200621085525-1d3f536ff85e
go: downloading github.com/motoki317/go-waveform v0.0.3
go: downloading golang.org/x/image v0.45.0
go: downloading github.com/dyatlov/go-opengraph/opengraph v0.0.0-20220524092352-606d7b1e5f8a
go: downloading golang.org/x/net v0.58.0
go: downloading github.com/jfreymuth/oggvorbis v1.0.5
go: downloading golang.org/x/crypto v0.55.0
go: downloading github.com/motoki317/go-identicon v0.0.1
go: downloading golang.org/x/mod v0.39.0
go: downloading golang.org/x/tools v0.49.0
go: downloading github.com/MicahParks/jwkset v0.11.3
go: downloading github.com/lestrrat-go/jwx/v3 v3.2.0
go: downloading github.com/google/subcommands v1.2.0
go: downloading github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2
go: downloading github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
go: downloading github.com/modern-go/reflect2 v1.0.2
go: downloading github.com/guregu/null v4.0.0+incompatible
go: downloading go.uber.org/multierr v1.11.0
go: downloading github.com/aws/aws-sdk-go-v2 v1.43.7
go: downloading github.com/aws/aws-sdk-go-v2/config v1.32.38
go: downloading github.com/aws/aws-sdk-go-v2/credentials v1.19.37
go: downloading github.com/aws/aws-sdk-go-v2/feature/s3/transfermanager v0.3.15
go: downloading github.com/aws/aws-sdk-go-v2/service/s3 v1.107.3
go: downloading github.com/ncw/swift/v2 v2.0.5
go: downloading github.com/ory/dockertest/v3 v3.12.0
go: downloading github.com/jinzhu/now v1.1.5
go: downloading github.com/boz/go-throttle v0.0.0-20160922054636-fdc4eab740c1
go: downloading go.opentelemetry.io/contrib/exporters/autoexport v0.70.0
go: downloading go.opentelemetry.io/otel v1.45.0
go: downloading go.opentelemetry.io/otel/sdk v1.45.0
go: downloading filippo.io/edwards25519 v1.2.0
go: downloading cloud.google.com/go/compute/metadata v0.9.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-20260511170946-3700d4141b60
go: downloading google.golang.org/genproto/googleapis/rpc v0.0.0-20260807164820-c8921c73eeea
go: downloading google.golang.org/grpc v1.83.0
go: downloading google.golang.org/protobuf v1.36.11
go: downloading github.com/inconshreveable/mousetrap v1.1.0
go: downloading github.com/fsnotify/fsnotify v1.10.1
go: downloading github.com/go-viper/mapstructure/v2 v2.4.0
go: downloading github.com/sagikazarmark/locafero v0.11.0
go: downloading github.com/spf13/afero v1.15.0
go: downloading github.com/spf13/cast v1.10.0
go: downloading golang.org/x/text v0.41.0
go: downloading go.opentelemetry.io/otel/trace v1.45.0
go: downloading gorm.io/driver/clickhouse v0.7.0
go: downloading gorm.io/driver/postgres v1.5.11
go: downloading go.opentelemetry.io/otel/metric v1.45.0
go: downloading github.com/go-jose/go-jose/v4 v4.1.4
go: downloading github.com/prometheus/common v0.70.1
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.16.0
go: downloading github.com/fatih/structs v1.1.0
go: downloading github.com/gobwas/glob v0.2.3
go: downloading github.com/imkira/go-interpol v1.1.0
go: downloading github.com/mattn/go-isatty v0.0.22
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/v2 v2.3.0
go: downloading github.com/beorn7/perks v1.0.1
go: downloading github.com/cespare/xxhash/v2 v2.3.0
go: downloading github.com/prometheus/client_model v0.6.2
go: downloading github.com/prometheus/procfs v0.21.1
go: downloading golang.org/x/sys v0.47.0
go: downloading github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d
go: downloading github.com/muhlemmer/gu v0.3.1
go: downloading github.com/zitadel/schema v1.3.2
go: downloading github.com/frostbyte73/core v0.1.1
go: downloading github.com/gammazero/deque v1.2.1
go: downloading github.com/hashicorp/go-retryablehttp v0.7.8
go: downloading go.uber.org/atomic v1.11.0
go: downloading buf.build/go/protoyaml v0.7.0
go: downloading github.com/dennwc/iters v1.2.2
go: downloading github.com/livekit/psrpc v0.7.2
go: downloading github.com/twitchtv/twirp v8.1.3+incompatible
go: downloading github.com/bep/debounce v1.2.1
go: downloading github.com/go-logr/stdr v1.2.2
go: downloading github.com/google/uuid v1.6.0
go: downloading github.com/livekit/mageutil v0.0.0-20250511045019-0f1ff63f7731
go: downloading github.com/livekit/mediatransportutil v0.0.0-20260605212259-862d4a7bcb1e
go: downloading github.com/magefile/mage v1.17.2
go: downloading github.com/pion/dtls/v3 v3.1.4
go: downloading github.com/pion/interceptor v0.1.45
go: downloading github.com/pion/rtcp v1.2.16
go: downloading github.com/pion/rtp v1.10.2
go: downloading github.com/pion/sdp/v3 v3.0.19
go: downloading github.com/pion/webrtc/v4 v4.2.15
go: downloading cloud.google.com/go/firestore v1.22.0
go: downloading github.com/go-audio/riff v1.0.0
go: downloading github.com/ajstarks/svgo v0.0.0-20210406150507-75cfd577ce75
go: downloading github.com/jfreymuth/vorbis v1.0.2
go: downloading github.com/fogleman/gg v1.3.0
go: downloading github.com/decred/dcrd/dcrec/secp256k1/v4 v4.4.1
go: downloading github.com/lestrrat-go/blackmagic v1.0.4
go: downloading github.com/lestrrat-go/httprc/v3 v3.0.6
go: downloading github.com/lestrrat-go/option/v2 v2.0.0
go: downloading github.com/aws/smithy-go v1.27.8
go: downloading github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.18.38
go: downloading github.com/aws/aws-sdk-go-v2/service/signin v1.5.7
go: downloading github.com/aws/aws-sdk-go-v2/service/sso v1.33.7
go: downloading github.com/aws/aws-sdk-go-v2/service/ssooidc v1.38.7
go: downloading github.com/aws/aws-sdk-go-v2/service/sts v1.45.7
go: downloading github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.7.18
go: downloading github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.38
go: downloading github.com/aws/aws-sdk-go-v2/internal/v4a v1.4.39
go: downloading github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.17
go: downloading github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.9.31
go: downloading github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.38
go: downloading github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.19.39
go: downloading github.com/cenkalti/backoff/v4 v4.3.0
go: downloading github.com/Microsoft/go-winio v0.6.2
go: downloading github.com/docker/go-units v0.5.0
go: downloading github.com/jinzhu/inflection v1.0.0
go: downloading go.opentelemetry.io/contrib/bridges/prometheus v0.70.0
go: downloading go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc v0.21.0
go: downloading go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp v0.21.0
go: downloading go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.45.0
go: downloading go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v1.45.0
go: downloading go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.45.0
go: downloading go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.45.0
go: downloading go.opentelemetry.io/otel/exporters/prometheus v0.67.0
go: downloading go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.45.0
go: downloading go.opentelemetry.io/otel/exporters/stdout/stdoutlog v0.21.0
go: downloading go.opentelemetry.io/otel/exporters/stdout/stdoutmetric v1.45.0
go: downloading go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.45.0
go: downloading go.opentelemetry.io/otel/sdk/log v0.21.0
go: downloading go.opentelemetry.io/otel/sdk/metric v1.45.0
go: downloading github.com/go-logr/logr v1.4.4
go: downloading google.golang.org/genproto/googleapis/api v0.0.0-20260803160001-6ac0973c030d
go: downloading go.yaml.in/yaml/v3 v3.0.5
go: downloading cloud.google.com/go/auth v0.23.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 github.com/subosito/gotenv v1.6.0
go: downloading github.com/pelletier/go-toml/v2 v2.2.4
go: downloading github.com/sourcegraph/conc v0.3.1-0.20240121214520-5f936abd7ae8
go: downloading github.com/ClickHouse/clickhouse-go/v2 v2.30.0
go: downloading github.com/hashicorp/go-version v1.6.0
go: downloading github.com/jackc/pgx/v5 v5.9.2
go: downloading github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822
go: downloading github.com/mattn/go-colorable v0.1.14
go: downloading github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415
go: downloading github.com/andybalholm/brotli v1.1.1
go: downloading github.com/klauspost/compress v1.19.1
go: downloading github.com/valyala/bytebufferpool v1.0.0
go: downloading github.com/sergi/go-diff v1.2.0
go: downloading github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82
go: downloading github.com/puzpuzpuz/xsync/v4 v4.5.0
go: downloading go.uber.org/zap/exp v0.3.0
go: downloading github.com/benbjohnson/clock v1.3.5
go: downloading github.com/jxskiss/base62 v1.1.0
go: downloading github.com/hashicorp/go-cleanhttp v0.5.2
go: downloading buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go v1.36.11-20260415201107-50325440f8f2.1
go: downloading buf.build/go/protovalidate v1.2.0
go: downloading github.com/nats-io/nats.go v1.52.0
go: downloading github.com/redis/go-redis/v9 v9.20.0
go: downloading github.com/pion/logging v0.2.4
go: downloading github.com/lithammer/shortuuid/v4 v4.2.0
go: downloading github.com/pion/transport/v4 v4.0.2
go: downloading github.com/pion/randutil v0.1.0
go: downloading github.com/pion/datachannel v1.6.0
go: downloading github.com/pion/ice/v4 v4.2.7
go: downloading github.com/pion/sctp v1.10.0
go: downloading github.com/pion/srtp/v3 v3.0.11
go: downloading github.com/pion/stun/v3 v3.1.5
go: downloading github.com/MicahParks/keyfunc v1.9.0
go: downloading github.com/golang-jwt/jwt/v4 v4.5.2
go: downloading google.golang.org/appengine/v2 v2.0.6
go: downloading cloud.google.com/go/storage v1.62.1
go: downloading github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0
go: downloading github.com/segmentio/asm v1.2.1
go: downloading github.com/goccy/go-json v0.10.6
go: downloading github.com/valyala/fastjson v1.6.10
go: downloading github.com/lestrrat-go/httpcc v1.0.1
go: downloading github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.38
go: downloading github.com/docker/cli v29.0.0+incompatible
go: downloading github.com/sirupsen/logrus v1.9.4
go: downloading github.com/opencontainers/runc v1.3.3
go: downloading github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5
go: downloading github.com/moby/term v0.5.2
go: downloading github.com/opencontainers/image-spec v1.1.1
go: downloading go.opentelemetry.io/proto/otlp v1.11.0
go: downloading github.com/prometheus/otlptranslator v1.0.0
go: downloading go.opentelemetry.io/otel/log v0.21.0
go: downloading go.opentelemetry.io/auto/sdk v1.2.1
go: downloading github.com/google/s2a-go v0.1.9
go: downloading go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.69.0
go: downloading github.com/ClickHouse/ch-go v0.61.5
go: downloading github.com/pkg/errors v0.9.1
go: downloading github.com/jackc/pgpassfile v1.0.0
go: downloading github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761
go: downloading github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb
go: downloading github.com/zeebo/xxh3 v1.1.0
go: downloading github.com/google/cel-go v0.28.1
go: downloading github.com/nats-io/nkeys v0.4.16
go: downloading github.com/nats-io/nuid v1.0.1
go: downloading github.com/pion/mdns/v2 v2.1.0
go: downloading github.com/pion/turn/v5 v5.0.9
go: downloading cloud.google.com/go/longrunning v1.0.0
go: downloading github.com/golang/protobuf v1.5.4
go: downloading cloud.google.com/go/iam v1.11.0
go: downloading github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.56.0
go: downloading go.opentelemetry.io/contrib/detectors/gcp v1.44.0
go: downloading github.com/docker/go-connections v0.7.0
go: downloading github.com/containerd/continuity v0.4.5
go: downloading github.com/moby/sys/user v0.3.0
go: downloading github.com/cenkalti/backoff/v5 v5.0.3
go: downloading github.com/opencontainers/go-digest v1.0.0
go: downloading github.com/grpc-ecosystem/grpc-gateway/v2 v2.29.0
go: downloading dario.cat/mergo v1.0.2
go: downloading github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510
go: downloading github.com/moby/moby/client v0.4.1
go: downloading github.com/moby/moby/api v1.54.2
go: downloading github.com/googleapis/enterprise-certificate-proxy v0.3.20
go: downloading github.com/felixge/httpsnoop v1.0.4
go: downloading github.com/paulmach/orb v0.11.1
go: downloading github.com/shopspring/decimal v1.4.0
go: downloading github.com/jackc/puddle/v2 v2.2.2
go: downloading github.com/go-faster/city v1.0.1
go: downloading github.com/go-faster/errors v0.7.1
go: downloading github.com/pierrec/lz4/v4 v4.1.21
go: downloading github.com/klauspost/cpuid/v2 v2.3.0
go: downloading cel.dev/expr v0.25.2
go: downloading github.com/wlynxg/anet v0.0.5
go: downloading github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.33.0
go: downloading cloud.google.com/go/monitoring v1.29.0
go: downloading github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.56.0
go: downloading github.com/Azure/go-ansiterm v0.0.0-20250102033503-faa5f7b0171c
go: downloading github.com/antlr4-go/antlr/v4 v4.13.1
go: downloading github.com/envoyproxy/go-control-plane/envoy v1.37.0
go: downloading github.com/moby/docker-image-spec v1.3.1
go: downloading github.com/containerd/errdefs v1.0.0
go: downloading github.com/containerd/errdefs/pkg v0.3.0
go: downloading github.com/distribution/reference v0.6.0
go: downloading github.com/spiffe/go-spiffe/v2 v2.7.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/elastic/go-elasticsearch/v8 v8.19.7
go: downloading github.com/elastic/go-elasticsearch v0.0.0
go: downloading github.com/elastic/elastic-transport-go/v8 v8.9.0
go: github.com/traPtitech/traQ/router/v3 imports
	github.com/livekit/protocol/livekit imports
	github.com/livekit/psrpc imports
	github.com/nats-io/nats.go imports
	github.com/nats-io/nkeys: github.com/nats-io/nkeys@v0.4.16: read "https://proxy.golang.org/github.com/nats-io/nkeys/@v/v0.4.16.zip": stream error: stream ID 2303; INTERNAL_ERROR; received from peer

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

renovate/gomod (Renovate) Pull requests related to go.mod update type/major (Renovate) Pull requests that update major version

Projects

Status: pending

Development

Successfully merging this pull request may close these issues.

1 participant