Skip to content

chore(deps): bump databend-client from 0.28.2 to 0.34.0#25304

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/cargo/databend-client-0.33.7
Open

chore(deps): bump databend-client from 0.28.2 to 0.34.0#25304
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/cargo/databend-client-0.33.7

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 27, 2026

Bumps databend-client from 0.28.2 to 0.34.0.

Release notes

Sourced from databend-client's releases.

Release v0.34.0

What's Changed

New Contributors

Full Changelog: databendlabs/bendsql@v0.33.7...v0.34.0

Release v0.33.7

What's Changed

Full Changelog: databendlabs/bendsql@v0.33.6...v0.33.7

Release v0.33.6

What's Changed

Full Changelog: databendlabs/bendsql@v0.33.5...v0.33.6

Release v0.33.5

What's Changed

Full Changelog: databendlabs/bendsql@v0.33.4...v0.33.5

... (truncated)

Commits

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot Bot added domain: deps Anything related to Vector's dependencies no-changelog Changes in this PR do not need user-facing explanations in the release changelog labels Apr 27, 2026
@dependabot dependabot Bot requested a review from a team as a code owner April 27, 2026 15:39
Copy link
Copy Markdown

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Choose a reason for hiding this comment

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

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 11c798da5a

ℹ️ About Codex in GitHub

Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".

Comment thread Cargo.lock Outdated
[[package]]
name = "databend-client"
version = "0.28.2"
version = "0.33.7"
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P1 Badge Align databend-client lock entry with manifest constraint

Cargo.lock now pins databend-client to 0.33.7, but Cargo.toml still declares databend-client = "0.28.0" (which only allows <0.29.0 for a 0.x crate). This makes the lockfile inconsistent with the manifest and breaks reproducible builds whenever the sinks-databend dependency is resolved under --locked (for example in CI/release workflows that enable that feature), because Cargo cannot satisfy the declared version requirement from the locked package.

Useful? React with 👍 / 👎.

@dependabot dependabot Bot force-pushed the dependabot/cargo/databend-client-0.33.7 branch 6 times, most recently from a982f20 to 8f2b4b2 Compare May 5, 2026 00:09
@dependabot dependabot Bot force-pushed the dependabot/cargo/databend-client-0.33.7 branch 2 times, most recently from 1539237 to f5f4898 Compare May 6, 2026 18:40
Copy link
Copy Markdown

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Choose a reason for hiding this comment

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

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: f5f4898198

ℹ️ About Codex in GitHub

Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".

Comment thread Cargo.lock Outdated
[[package]]
name = "databend-client"
version = "0.28.2"
version = "0.33.7"
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P2 Badge Adapt databend integration tests to Page::raw_schema

When this dependency bump is actually used with databend-integration-tests, the integration test helper no longer compiles: src/sinks/databend/integration_tests.rs still iterates resp.schema, but databend-client 0.33.x changed Page to expose raw_schema instead of schema (0.28.2 had schema, 0.33.7 has raw_schema). Updating the lock entry without the corresponding test change leaves the Databend integration-test feature broken once the version constraint is aligned.

Useful? React with 👍 / 👎.

@dependabot dependabot Bot force-pushed the dependabot/cargo/databend-client-0.33.7 branch from f5f4898 to 94bf05b Compare May 7, 2026 17:49
Copy link
Copy Markdown

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Choose a reason for hiding this comment

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

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 94bf05b7c9

ℹ️ About Codex in GitHub

Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".

Comment thread Cargo.lock Outdated
[[package]]
name = "databend-client"
version = "0.28.2"
version = "0.33.7"
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P2 Badge Update WithContext matching for databend 0.33

When this bump is made usable for the sinks-databend feature, src/sinks/databend/service.rs no longer compiles because the retry logic still matches DatabendError::WithContext(boxed_error, ..) as a tuple variant. In databend-client 0.33.7, Error::WithContext is a struct variant with an inner field, whereas 0.28.2 used the tuple form; this is separate from the existing Page::raw_schema test issue and breaks the non-test Databend sink build once the manifest constraint is aligned.

Useful? React with 👍 / 👎.

@dependabot dependabot Bot force-pushed the dependabot/cargo/databend-client-0.33.7 branch 4 times, most recently from b3b2869 to 899b050 Compare May 8, 2026 18:55
Copy link
Copy Markdown

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Choose a reason for hiding this comment

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

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 899b050713

ℹ️ About Codex in GitHub

Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".

Comment thread Cargo.lock
]

[[package]]
name = "jiff-tzdb"
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P2 Badge Regenerate third-party license inventory

This dependency update adds new crates (jiff-tzdb and jiff-tzdb-platform) to Cargo.lock, but LICENSE-3rdparty.csv was not regenerated and currently has no entries for those package names. In the dependency-change CI path, .github/workflows/test.yml runs make check-licenses, which invokes dd-rust-license-tool check, so this PR will fail the license check until the generated license inventory is updated and committed.

Useful? React with 👍 / 👎.

@dependabot dependabot Bot force-pushed the dependabot/cargo/databend-client-0.33.7 branch 5 times, most recently from 71eeab7 to 54f6da7 Compare May 15, 2026 19:19
@dependabot dependabot Bot changed the title chore(deps): bump databend-client from 0.28.2 to 0.33.7 chore(deps): bump databend-client from 0.28.2 to 0.34.0 May 18, 2026
@dependabot dependabot Bot force-pushed the dependabot/cargo/databend-client-0.33.7 branch 2 times, most recently from 45a39ae to da12ecf Compare May 20, 2026 15:52
@dependabot dependabot Bot force-pushed the dependabot/cargo/databend-client-0.33.7 branch from da12ecf to a3ebe00 Compare May 26, 2026 21:22
@dependabot dependabot Bot force-pushed the dependabot/cargo/databend-client-0.33.7 branch from a3ebe00 to 9fd353f Compare May 27, 2026 14:38
Bumps [databend-client](https://github.com/databendlabs/bendsql) from 0.28.2 to 0.34.0.
- [Release notes](https://github.com/databendlabs/bendsql/releases)
- [Commits](databendlabs/bendsql@v0.28.2...v0.34.0)

---
updated-dependencies:
- dependency-name: databend-client
  dependency-version: 0.33.7
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/cargo/databend-client-0.33.7 branch from 9fd353f to b883252 Compare May 27, 2026 15:23
Copy link
Copy Markdown

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Choose a reason for hiding this comment

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

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: b883252f91

ℹ️ About Codex in GitHub

Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".

Comment thread Cargo.lock
[[package]]
name = "databend-client"
version = "0.28.2"
version = "0.34.0"
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P2 Badge Pass params to databend query_all

With the lockfile now pinning databend-client 0.34.0, APIClient::query_all takes both the SQL string and a params argument, but the existing healthcheck and Databend integration tests still call it with only the SQL at src/sinks/databend/config.rs:212 and src/sinks/databend/integration_tests.rs:92,106. Once the manifest constraint is aligned so this locked version is actually used, enabling sinks-databend or databend-integration-tests will fail to compile unless these calls pass None or the intended params value; the fresh evidence is this commit's new 0.34.0 lock entry.

Useful? React with 👍 / 👎.

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

Labels

domain: deps Anything related to Vector's dependencies no-changelog Changes in this PR do not need user-facing explanations in the release changelog

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants