8000 build(deps): bump the gomod group across 1 directory with 4 updates by dependabot[bot] · Pull Request #955 · pressly/goose · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

build(deps): bump the gomod group across 1 directory with 4 updates #955

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor
@dependabot dependabot bot commented on behalf of github Jun 14, 2025

Bumps the gomod group with 4 updates in the / directory: github.com/ClickHouse/clickhouse-go/v2, github.com/ydb-platform/ydb-go-sdk/v3, golang.org/x/sync and modernc.org/sqlite.

Updates 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

Updates github.com/ydb-platform/ydb-go-sdk/v3 from 3.108.1 to 3.110.0

Release notes

Sourced from github.com/ydb-platform/ydb-go-sdk/v3's releases.

v3.110.0

  • Added read partitions in parallel for topic listener.

Full Changelog: v3.109.0...v3.110.0

v3.109.0

  • Added control plane fields for split-merge topics (Create,Alter,Describe)

Full Changelog: v3.108.5...v3.109.0

v3.108.5

  • Fixed stop topic reader after TLI in transaction

Full Changelog: v3.108.4...v3.108.5

v3.108.4

  • Removed experimental from coordination API
  • Added WithReaderLogContext, WithWriterLogContext options to topic reader/writer to supply log entries with user context fields

Full Changelog: v3.108.3...v3.108.4

v3.108.3

  • Fixed handling of zero values for DyNumber
  • Fixed the decimal yql slice bounds out of range

Full Changelog: v3.108.2...v3.108.3

v3.108.2

Full Changelog: v3.108.1...v3.108.2

Changelog

Sourced from github.com/ydb-platform/ydb-go-sdk/v3's changelog.

v3.110.0

  • Added read partitions in parallel for topic listener.

v3.109.0

  • Added control plane fields for split-merge topics (Create,Alter,Describe)

v3.108.5

  • Fixed stop topic reader after TLI in transaction

v3.108.4

  • Removed experimental from coordination API
  • Added WithReaderLogContext, WithWriterLogContext options to topic reader/writer to supply log entries with user context fields

v3.108.3

  • Fixed handling of zero values for DyNumber
  • Fixed the decimal yql slice bounds out of range

v3.108.2

Commits

Updates golang.org/x/sync from 0.14.0 to 0.15.0

Commits
  • 8a14946 errgroup: remove duplicated comment
  • 1869c69 all: replace deprecated ioutil
  • d1ac909 sync/errgroup: PanicError.Error print stack trace
  • See full diff in compare view

Updates modernc.org/sqlite from 1.37.0 to 1.38.0

Commits

Most Recent Ignore Conditions Applied to This Pull Request
Dependency Name Ignore Conditions
github.com/ClickHouse/clickhouse-go/v2 [>= 2.4.a, < 2.5]
github.com/ClickHouse/clickhouse-go/v2 [>= 2.21.a, < 2.22]
github.com/ydb-platform/ydb-go-sdk/v3 [>= 3.57.a, < 3.58]

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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the gomod group with 4 updates in the / directory: [github.com/ClickHouse/clickhouse-go/v2](https://github.com/ClickHouse/clickhouse-go), [github.com/ydb-platform/ydb-go-sdk/v3](https://github.com/ydb-platform/ydb-go-sdk), [golang.org/x/sync](https://github.com/golang/sync) and [modernc.org/sqlite](https://gitlab.com/cznic/sqlite).


Updates `github.com/ClickHouse/clickhouse-go/v2` 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)

Updates `github.com/ydb-platform/ydb-go-sdk/v3` from 3.108.1 to 3.110.0
- [Release notes](https://github.com/ydb-platform/ydb-go-sdk/releases)
- [Changelog](https://github.com/ydb-platform/ydb-go-sdk/blob/master/CHANGELOG.md)
- [Commits](ydb-platform/ydb-go-sdk@v3.108.1...v3.110.0)

Updates `golang.org/x/sync` from 0.14.0 to 0.15.0
- [Commits](golang/sync@v0.14.0...v0.15.0)

Updates `modernc.org/sqlite` from 1.37.0 to 1.38.0
- [Commits](https://gitlab.com/cznic/sqlite/compare/v1.37.0...v1.38.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
  dependency-group: gomod
- dependency-name: github.com/ydb-platform/ydb-go-sdk/v3
  dependency-version: 3.110.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: golang.org/x/sync
  dependency-version: 0.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: modernc.org/sqlite
  dependency-version: 1.38.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Jun 14, 2025
Copy link
Contributor Author
dependabot bot commented on behalf of github Jun 28, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Jun 28, 2025
@dependabot dependabot bot deleted the dependabot/go_modules/gomod-1029b92a50 branch June 28, 2025 00:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file go Pull requests that update Go code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant
0