Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 10, 2025

Bumps github.com/ClickHouse/clickhouse-go/v2 from 2.35.0 to 2.36.0.

Release notes

Sourced from github.com/ClickHouse/clickhouse-go/v2's releases.

v2.36.0

What's Changed

Enhancements 🎉

The batch.Close() function was added to prevent connections from being leaked by the batch interface. In the previous API, it is possible that an early return (due to return err or some other cause) would cause the connection to be held until the connection timed out.

Here's an example of using this new function:

batch, err := conn.PrepareBatch(ctx, "INSERT INTO function null('x UInt64') VALUES (1)")
if err != nil { . . . }
// This defer call will make sure the batch is absolutely cleaned up before it falls out of scope.
defer batch.Close()

Users should update their code to call this new function. Depending on your insert logic you may be leaking connections if Send never gets called.

Full Changelog: ClickHouse/clickhouse-go@v2.35.0...v2.36.0

Changelog

Sourced from github.com/ClickHouse/clickhouse-go/v2's changelog.

v2.36.0, 2025-06-03

What's Changed

Enhancements 🎉

Full Changelog: ClickHouse/clickhouse-go@v2.35.0...v2.36.0

Commits
  • 81d3c10 Update release notes
  • 06d64b3 Merge pull request #1566 from ClickHouse/fix_cancel_query
  • a0e6569 more tests, added doc comment
  • 436a09d batch close
  • 71e3975 Merge pull request #1563 from ClickHouse/dependabot/go_modules/github.com/doc...
  • aaad304 Bump github.com/docker/docker
  • 5ebfd0c Merge pull request #1561 from ClickHouse/dependabot/go_modules/github.com/doc...
  • 65cea60 Bump github.com/docker/docker
  • 2ef7662 Update run-tests.yml with ClickHouse versions
  • 9085e33 Merge pull request #1557 from ClickHouse/dependabot/go_modules/go.opentelemet...
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [github.com/ClickHouse/clickhouse-go/v2](https://github.com/ClickHouse/clickhouse-go) from 2.35.0 to 2.36.0.
- [Release notes](https://github.com/ClickHouse/clickhouse-go/releases)
- [Changelog](https://github.com/ClickHouse/clickhouse-go/blob/main/CHANGELOG.md)
- [Commits](ClickHouse/clickhouse-go@v2.35.0...v2.36.0)

---
updated-dependencies:
- dependency-name: github.com/ClickHouse/clickhouse-go/v2
  dependency-version: 2.36.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@burningalchemist burningalchemist merged commit 44992d8 into master Jun 10, 2025
4 checks passed
@burningalchemist burningalchemist deleted the dependabot/go_modules/github.com/ClickHouse/clickhouse-go/v2-2.36.0 branch June 10, 2025 10:22
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.

1 participant