Skip to content

Conversation

@renovate-bot
Copy link
Contributor

@renovate-bot renovate-bot commented Dec 19, 2025

Note: This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update
cloud.google.com/go/alloydbconn v1.15.5v1.17.1 age confidence require minor
cloud.google.com/go/bigtable v1.40.1v1.41.0 age confidence require minor
cloud.google.com/go/cloudsqlconn v1.19.0v1.19.1 age confidence require patch
cloud.google.com/go/geminidataanalytics v0.3.0v0.5.0 age confidence require minor
cloud.google.com/go/longrunning v0.7.0v0.8.0 age confidence require minor
cloud.google.com/go/spanner v1.86.1v1.87.0 age confidence require minor
github.com/ClickHouse/clickhouse-go/v2 v2.40.3v2.42.0 age confidence require minor
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.53.0v0.54.0 age confidence require minor
github.com/couchbase/tools-common/http v1.0.9v1.0.11 age confidence require patch
github.com/elastic/go-elasticsearch/v9 v9.2.0v9.2.1 age confidence require patch
github.com/firebase/genkit/go v1.2.0v1.3.0 age confidence require minor
github.com/go-playground/validator/v10 v10.28.0v10.30.1 age confidence require minor
github.com/goccy/go-yaml v1.18.0v1.19.2 age confidence require minor
github.com/godror/godror v0.49.6v0.50.0 age confidence require minor
github.com/jackc/pgx/v5 v5.7.6v5.8.0 age confidence require minor
github.com/microsoft/go-mssqldb v1.9.3v1.9.5 age confidence require patch
github.com/openai/openai-go/v3 v3.8.1v3.16.0 age confidence require minor
github.com/spf13/cobra v1.10.1v1.10.2 age confidence require patch
github.com/trinodb/trino-go-client v0.330.0v0.333.0 age confidence require minor
github.com/valkey-io/valkey-go v1.0.68v1.0.70 age confidence require patch
go.mongodb.org/mongo-driver v1.17.4v1.17.6 age confidence require patch
go.opentelemetry.io/contrib/propagators/autoprop v0.62.0v0.64.0 age confidence require minor
go.opentelemetry.io/otel v1.38.0v1.39.0 age confidence require minor
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v1.38.0v1.39.0 age confidence require minor
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.38.0v1.39.0 age confidence require minor
go.opentelemetry.io/otel/metric v1.38.0v1.39.0 age confidence require minor
go.opentelemetry.io/otel/sdk v1.38.0v1.39.0 age confidence require minor
go.opentelemetry.io/otel/sdk/metric v1.38.0v1.39.0 age confidence require minor
go.opentelemetry.io/otel/trace v1.38.0v1.39.0 age confidence require minor
golang.org/x/oauth2 v0.33.0v0.34.0 age confidence require minor
google.golang.org/adk v0.1.0v0.3.0 age confidence require minor
google.golang.org/api v0.256.0v0.259.0 age confidence require minor
google.golang.org/genai v1.37.0v1.41.0 age confidence require minor
google.golang.org/genai v1.36.0v1.41.0 age confidence require minor
google.golang.org/genproto 3a174f90a764e5 age confidence require digest
google.golang.org/protobuf v1.36.10v1.36.11 age confidence require patch
modernc.org/sqlite v1.40.0v1.43.0 age confidence require minor

Release Notes

googlecloudplatform/alloydb-go-connector (cloud.google.com/go/alloydbconn)

v1.17.1

Compare Source

Bug Fixes

v1.17.0

Compare Source

Features
Bug Fixes

v1.16.0

Compare Source

Features

v1.15.6

Compare Source

Bug Fixes
googlecloudplatform/cloud-sql-go-connector (cloud.google.com/go/cloudsqlconn)

v1.19.1

Compare Source

Bug Fixes
googleapis/google-cloud-go (cloud.google.com/go/geminidataanalytics)

v0.5.0

Compare Source

  • 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

Compare Source

  • 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.

ClickHouse/clickhouse-go (github.com/ClickHouse/clickhouse-go/v2)

v2.42.0

Compare Source

What's Changed

Enhancements 🎉
Bug Fixes 🐛
Other Changes 🛠

New Contributors

Full Changelog: ClickHouse/clickhouse-go@v2.41.0...v2.42.0

v2.41.0

Compare Source

What's Changed

Enhancements 🎉
Bug fixes 🐛
Other Changes 🛠

New Contributors

Full Changelog: ClickHouse/clickhouse-go@v2.40.3...v2.41.0

GoogleCloudPlatform/opentelemetry-operations-go (github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric)

v0.54.0: v1.30.0/v0.54.0

Compare Source

What's Changed

New Contributors

Full Changelog: GoogleCloudPlatform/opentelemetry-operations-go@v0.53.0...v0.54.0

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

v9.2.1

Compare Source

Features
Bug Fixes
go-playground/validator (github.com/go-playground/validator/v10)

v10.30.1: Release 10.30.1

Compare Source

What's Changed

New Contributors

Full Changelog: go-playground/validator@v10.30.0...v10.30.1

v10.30.0: Release 10.30.0

Compare Source

What's Changed

New Contributors

Full Changelog: go-playground/validator@v10.29.0...v10.30.0

v10.29.0

Compare Source

What's Changed

New Contributors

Full Changelog: go-playground/validator@v10.28.0...v10.29.0

goccy/go-yaml (github.com/goccy/go-yaml)

v1.19.2: 1.19.2

Compare Source

What's Changed

New Contributors

Full Changelog: goccy/go-yaml@v1.19.1...v1.19.2

v1.19.1: 1.19.1

Compare Source

What's Changed

Full Changelog: goccy/go-yaml@v1.19.0...v1.19.1

v1.19.0: 1.19.0

Compare Source

What's Changed

New Contributors

Full Changelog: goccy/go-yaml@v1.18.0...v1.19.0

godror/godror (github.com/godror/godror)

v0.50.0

Compare Source

Added
  • StructScan, SliceScan, StructObjectWrite, SliceObjectWrite helpers for implementing what is now behind godror:"typename," struct tags.
  • dsn.PoolParams.NoWait for #​396.
Breaking
  • Remove godror:"typename" struct tag scanning - it's complex, error prone and hard to inject. Implement ObjectWriter and ObjectScanner instead (with the help of {Struct,Slice}{WriteObject,Scan} if needed).
jackc/pgx (github.com/jackc/pgx/v5)

v5.8.0

Compare Source

microsoft/go-mssqldb (github.com/microsoft/go-mssqldb)

v1.9.5

Compare Source

v1.9.4

Compare Source

What's Changed

New Contributors

Full Changelog: microsoft/go-mssqldb@v1.9.3...v1.9.4

openai/openai-go (github.com/openai/openai-go/v3)

v3.16.0

Compare Source

Full Changelog: v3.15.0...v3.16.0

Features
  • api: add new Response completed_at prop (bff6331)
Bug Fixes
  • client: use the correct order of params for vector store file and batch polling (ef32641)
Chores
  • internal: codegen related update (1e529a4)
  • internal: use different example values for some enums (a2836ee)
Documentation

v3.15.0

Compare Source

3.15.0 (2025-12-19)

Full Changelog: v3.14.0...v3.15.0

Bug Fixes
Chores
  • add float64 to valid types for RegisterFieldValidator (e67d89d)

v3.14.0

Compare Source

3.14.0 (2025-12-16)

Full Changelog: v3.13.0...v3.14.0

Features

Configuration

📅 Schedule: 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.

👻 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.

@forking-renovate
Copy link

forking-renovate bot commented Dec 19, 2025

ℹ️ Artifact update notice

File name: docs/en/getting-started/quickstart/go/genkit/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
google.golang.org/genai v1.34.0 -> v1.40.0
File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 36 additional dependencies were updated
  • The go directive was updated for compatibility reasons

Details:

Package Change
go 1.24.7 -> 1.24.9
github.com/ClickHouse/ch-go v0.68.0 -> v0.69.0
github.com/paulmach/orb v0.11.1 -> v0.12.0
github.com/segmentio/asm v1.2.0 -> v1.2.1
cloud.google.com/go v0.121.6 -> v0.123.0
cloud.google.com/go/alloydb v1.18.0 -> v1.19.0
cloud.google.com/go/auth v0.17.0 -> v0.18.0
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.29.0 -> v1.30.0
github.com/cncf/xds/go v0.0.0-20250501225837-2ac532fd4443 -> v0.0.0-20251022180443-0feb69152e9f
github.com/couchbase/tools-common/errors v1.0.0 -> v1.1.0
github.com/envoyproxy/go-control-plane/envoy v1.32.4 -> v1.35.0
github.com/gabriel-vasile/mimetype v1.4.10 -> v1.4.12
github.com/go-jose/go-jose/v4 v4.1.2 -> v4.1.3
github.com/googleapis/gax-go/v2 v2.15.0 -> v2.16.0
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.2 -> v2.27.3
github.com/klauspost/compress v1.18.0 -> v1.18.1
github.com/spiffe/go-spiffe/v2 v2.5.0 -> v2.6.0
go.opentelemetry.io/contrib/detectors/gcp v1.36.0 -> v1.38.0
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.63.0 -> v0.64.0
go.opentelemetry.io/contrib/propagators/aws v1.37.0 -> v1.39.0
go.opentelemetry.io/contrib/propagators/b3 v1.37.0 -> v1.39.0
go.opentelemetry.io/contrib/propagators/jaeger v1.37.0 -> v1.39.0
go.opentelemetry.io/contrib/propagators/ot v1.37.0 -> v1.39.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.38.0 -> v1.39.0
go.opentelemetry.io/proto/otlp v1.7.1 -> v1.9.0
golang.org/x/crypto v0.45.0 -> v0.46.0
golang.org/x/mod v0.29.0 -> v0.30.0
golang.org/x/net v0.47.0 -> v0.48.0
golang.org/x/sync v0.18.0 -> v0.19.0
golang.org/x/sys v0.38.0 -> v0.39.0
golang.org/x/telemetry v0.0.0-20251008203120-078029d740a8 -> v0.0.0-20251111182119-bc8e575c7b54
golang.org/x/term v0.37.0 -> v0.38.0
golang.org/x/text v0.31.0 -> v0.32.0
golang.org/x/tools v0.38.0 -> v0.39.0
google.golang.org/genproto/googleapis/api v0.0.0-20251111163417-95abcf5c77ba -> v0.0.0-20251213004720-97cd9d5aeac2
google.golang.org/genproto/googleapis/rpc v0.0.0-20251103181224-f26f9409b101 -> v0.0.0-20251222181119-0a764e51fe1b
google.golang.org/grpc v1.76.0 -> v1.78.0

@renovate-bot renovate-bot requested a review from a team as a code owner December 19, 2025 22:25
@dpebot
Copy link
Collaborator

dpebot commented Dec 19, 2025

/gcbrun

@trusted-contributions-gcf trusted-contributions-gcf bot added the tests: run Label to trigger Github Action tests. label Dec 19, 2025
@github-actions github-actions bot removed the tests: run Label to trigger Github Action tests. label Dec 19, 2025
@gemini-code-assist
Copy link
Contributor

Summary of Changes

Hello @renovate-bot, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request performs a comprehensive update of numerous Go module dependencies across the project. The updates range from minor version bumps to patch releases, covering a wide array of libraries including Google Cloud services, various database connectors, OpenTelemetry components, and general-purpose utilities. The primary goal is to ensure the project benefits from the latest features, performance improvements, and bug fixes provided by these upstream dependencies, maintaining compatibility and leveraging recent advancements in the Go ecosystem.

Highlights

  • Google Cloud Libraries Update: Multiple Google Cloud Go client libraries have been updated, including cloud.google.com/go/alloydbconn (v1.15.5 to v1.17.1), cloud.google.com/go/bigtable (v1.40.1 to v1.41.0), cloud.google.com/go/cloudsqlconn (v1.19.0 to v1.19.1), cloud.google.com/go/geminidataanalytics (v0.3.0 to v0.4.0), and cloud.google.com/go/spanner (v1.86.1 to v1.87.0). These updates bring new features and bug fixes, such as support for login scope and credentials options in AlloyDB, and significant refactoring in BigQuery related to table and query operations.
  • Database Driver Updates: Several database drivers received updates: github.com/ClickHouse/clickhouse-go/v2 (v2.40.3 to v2.42.0) with enhancements like context options for system.query_log and improved exception handling; github.com/microsoft/go-mssqldb (v1.9.3 to v1.9.5) with bug fixes; github.com/trinodb/trino-go-client (v0.330.0 to v0.333.0) adding support for catalog roles and Zstd decompression optimization; github.com/valkey-io/valkey-go (v1.0.68 to v1.0.69) with new features like OverrideCacheTTL and atomic slot migration commands; and go.mongodb.org/mongo-driver (v1.17.4 to v1.17.6).
  • OpenTelemetry and Utility Library Updates: OpenTelemetry related modules have been updated, including github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric (v0.53.0 to v0.54.0) and various go.opentelemetry.io packages (v1.38.0 to v1.39.0). Other notable updates include github.com/elastic/go-elasticsearch/v9 (v9.2.0 to v9.2.1), github.com/go-playground/validator/v10 (v10.28.0 to v10.29.0) with new validation rules, github.com/goccy/go-yaml (v1.18.0 to v1.19.1) with YAML decoding improvements, and github.com/openai/openai-go/v3 (v3.8.1 to v3.15.0) for OpenAI API updates.
  • Core Go Ecosystem Updates: Updates to core Go ecosystem packages include golang.org/x/oauth2 (v0.33.0 to v0.34.0), google.golang.org/api (v0.256.0 to v0.258.0), google.golang.org/genproto (digest update), and google.golang.org/protobuf (v1.36.10 to v1.36.11). Additionally, google.golang.org/adk (v0.1.0 to v0.3.0) and google.golang.org/genai (v1.36.0 to v1.40.0) were updated in quickstart documentation.

🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console.

Ignored Files
  • Ignored by pattern: go.sum (1)
    • go.sum
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request updates numerous Go dependencies. I've reviewed the changelogs for the updated packages and have identified a few potentially breaking changes or significant behavior modifications that require attention:

  • github.com/ClickHouse/clickhouse-go/v2: Default gzip compression is now disabled, which could affect performance and connectivity.
  • github.com/trinodb/trino-go-client: A breaking change was introduced in DSN parsing.
  • github.com/openai/openai-go/v3: A large version jump that may include subtle breaking changes.
  • github.com/go-playground/validator/v10: Validation behavior has changed for some rules.

I've added specific comments on the relevant go.mod files with more details. Please review these points and test the application thoroughly before merging to ensure a smooth upgrade.

require (
github.com/googleapis/mcp-toolbox-sdk-go v0.4.0
github.com/openai/openai-go/v3 v3.8.1
github.com/openai/openai-go/v3 v3.15.0
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

This is a significant version jump from v3.8.1 to v3.15.0. While it's a minor version update according to semver, the range is large and the release notes mention some changes like "rename param to avoid collision" which could be breaking. Given the openAI quickstart depends on this, it's crucial to perform thorough testing to ensure compatibility and that all functionalities work as expected.

github.com/thlib/go-timezone-local v0.0.7
github.com/trinodb/trino-go-client v0.330.0
github.com/valkey-io/valkey-go v1.0.68
github.com/trinodb/trino-go-client v0.333.0
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

Version v0.331.0 of this library, included in this update, introduces a breaking change related to DSN parsing by adding the ParseDSNToConfig function. If you are using DSN strings to configure your Trino client, you may need to update your code to use the new function or adjust your configuration approach. Please review the library's release notes and update your code if necessary.

@dpebot
Copy link
Collaborator

dpebot commented Dec 21, 2025

/gcbrun

@trusted-contributions-gcf trusted-contributions-gcf bot added the tests: run Label to trigger Github Action tests. label Dec 21, 2025
@github-actions github-actions bot removed the tests: run Label to trigger Github Action tests. label Dec 21, 2025
@dpebot
Copy link
Collaborator

dpebot commented Dec 22, 2025

/gcbrun

@trusted-contributions-gcf trusted-contributions-gcf bot added the tests: run Label to trigger Github Action tests. label Dec 22, 2025
@github-actions github-actions bot removed the tests: run Label to trigger Github Action tests. label Dec 22, 2025
@dpebot
Copy link
Collaborator

dpebot commented Dec 22, 2025

/gcbrun

@trusted-contributions-gcf trusted-contributions-gcf bot added the tests: run Label to trigger Github Action tests. label Dec 22, 2025
@github-actions github-actions bot removed the tests: run Label to trigger Github Action tests. label Dec 22, 2025
@dpebot
Copy link
Collaborator

dpebot commented Dec 22, 2025

/gcbrun

@trusted-contributions-gcf trusted-contributions-gcf bot added the tests: run Label to trigger Github Action tests. label Dec 22, 2025
@github-actions github-actions bot removed the tests: run Label to trigger Github Action tests. label Dec 22, 2025
@dpebot
Copy link
Collaborator

dpebot commented Dec 23, 2025

/gcbrun

@trusted-contributions-gcf trusted-contributions-gcf bot added the tests: run Label to trigger Github Action tests. label Dec 23, 2025
@github-actions github-actions bot removed the tests: run Label to trigger Github Action tests. label Dec 23, 2025
@dpebot
Copy link
Collaborator

dpebot commented Dec 23, 2025

/gcbrun

@dpebot
Copy link
Collaborator

dpebot commented Jan 8, 2026

/gcbrun

@trusted-contributions-gcf trusted-contributions-gcf bot added the tests: run Label to trigger Github Action tests. label Jan 8, 2026
@github-actions github-actions bot removed the tests: run Label to trigger Github Action tests. label Jan 8, 2026
@dpebot
Copy link
Collaborator

dpebot commented Jan 8, 2026

/gcbrun

@trusted-contributions-gcf trusted-contributions-gcf bot added the tests: run Label to trigger Github Action tests. label Jan 8, 2026
@github-actions github-actions bot removed the tests: run Label to trigger Github Action tests. label Jan 8, 2026
@dpebot
Copy link
Collaborator

dpebot commented Jan 8, 2026

/gcbrun

@trusted-contributions-gcf trusted-contributions-gcf bot added the tests: run Label to trigger Github Action tests. label Jan 8, 2026
@github-actions github-actions bot removed the tests: run Label to trigger Github Action tests. label Jan 8, 2026
@dpebot
Copy link
Collaborator

dpebot commented Jan 9, 2026

/gcbrun

@trusted-contributions-gcf trusted-contributions-gcf bot added the tests: run Label to trigger Github Action tests. label Jan 9, 2026
@github-actions github-actions bot removed tests: run Label to trigger Github Action tests. labels Jan 9, 2026
@dpebot
Copy link
Collaborator

dpebot commented Jan 9, 2026

/gcbrun

@trusted-contributions-gcf trusted-contributions-gcf bot added the tests: run Label to trigger Github Action tests. label Jan 9, 2026
@github-actions github-actions bot removed the tests: run Label to trigger Github Action tests. label Jan 9, 2026
@dpebot
Copy link
Collaborator

dpebot commented Jan 9, 2026

/gcbrun

@trusted-contributions-gcf trusted-contributions-gcf bot added the tests: run Label to trigger Github Action tests. label Jan 9, 2026
@github-actions github-actions bot removed the tests: run Label to trigger Github Action tests. label Jan 9, 2026
@dpebot
Copy link
Collaborator

dpebot commented Jan 9, 2026

/gcbrun

@trusted-contributions-gcf trusted-contributions-gcf bot added the tests: run Label to trigger Github Action tests. label Jan 9, 2026
@github-actions github-actions bot removed the tests: run Label to trigger Github Action tests. label Jan 9, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

priority: p2 Moderately-important priority. Fix may not be included in next release.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants