-
Notifications
You must be signed in to change notification settings - Fork 0
release: 0.2.2 — raise Hotdata SDK ceilings #12
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| version = "0.2.1" | ||
| version = "0.2.2" | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| [project] | ||
| name = "dbt-hotdata" | ||
| version = "0.2.1" | ||
| version = "0.2.2" | ||
| description = "dbt adapter for Hotdata instant databases." | ||
| readme = "README.md" | ||
| license = "MIT" | ||
|
|
@@ -18,9 +18,12 @@ dependencies = [ | |
| "dbt-common>=1.14,<2", | ||
| "dbt-core>=1.10,<2", | ||
| # Instant-database lifecycle + retry-wrapped client come from the shared | ||
| # Hotdata SDK pair, same floors as hotdata-dlt-destination. | ||
| "hotdata>=0.8.0,<0.9", | ||
| "hotdata-framework>=0.9.0,<0.10", | ||
| # Hotdata SDK pair. Ceilings track the newest tested pair (hotdata 0.9.x + | ||
| # framework 0.14.x, verified against a live workspace); framework releases | ||
| # declare their own compatible hotdata range, so the resolver picks a | ||
| # coherent pair within these bounds. | ||
| "hotdata>=0.8.0,<0.10", | ||
| "hotdata-framework>=0.9.0,<0.15", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit: add a CI job that runs
Failure scenario: a later commit calls an API added in framework 0.11. CI stays green on 0.14.0. A consumer whose environment caps |
||
| "pyarrow>=14", | ||
| ] | ||
|
|
||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
super nit: add a test asserting this version string equals the
pyproject.tomlversion. No check ties the two strings today, and.github/workflows/release.yml:15-22compares the git tag againstpyproject.tomlonly. A future bump that misses this file publishes a wheel wheredbt --versionreports a stale adapter version. (not blocking)