chore(deps): upgrade hotdata SDK 0.3.1 -> 0.4.0#171
Merged
Conversation
0.4.0 removes the datasets API/models and adds a usage API. The CLI already dropped its datasets surface in #166, so the removal is a no-op here and the new usage API is simply unused. No source changes needed. Verified: `cargo build`/`clippy` clean, full suite (206) green, and a production smoke test (auth status, databases list, an arrow-decoded query) against workspace AgentRyan succeeds.
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Upgrades the
hotdataRust SDK pin from 0.3.1 → 0.4.0.What changed in 0.4.0
datasetsAPI and all dataset models (breaking).usageAPI +workspace_usage_responsemodel.The CLI already removed its datasets surface in #166, so the SDK's datasets removal is a no-op here, and the new usage API is currently unused. No source changes were required — only the
Cargo.tomlpin andCargo.lock.Verification
cargo build/cargo clippy --all-targetsclean (no new warnings).src/.auth status✅databases list→ 25 databases ✅query "SELECT 1 AS ok, 'hello' AS msg"→ renders via the arrow decode path ✅