ci: add dbt 1.11 to test matrix - #5996
Draft
lKolabrodl wants to merge 1 commit into
Draft
Conversation
Signed-off-by: MikhailB <36865467+lKolabrodl@users.noreply.github.com>
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
注册 for free
to join this conversation on GitHub.
Already have an account?
登录 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.
Description
Closes #5992.
Adds dbt 1.11 to the CI compatibility matrix. For this version, the install target pins
dbt-coreto the 1.11 release line while allowing the adapter resolver to select compatible versions.This special handling is needed because not every adapter has a 1.11 release, and forcing all adapters to
~=1.11.0creates mutually incompatible dependency constraints. Existing handling for dbt 1.3 through 1.10 is unchanged.Test Plan
.github/workflows/pr.yamlwith PyYAML.git diff --check.dbt-core~=1.11.0and all supported adapters; the resolver selected dbt-core 1.11.14 plus a compatible adapter set.sqlmesh info --skip-connectioninexamples/sushi_dbtsuccessfully (11 models parsed).Checklist
make styleand fixed any issues (GNU Make is not available in this Windows environment; configuration files were validated directly)make fast-test) (targeted checks pass; see Test Plan)git commit -s) per the DCOAI assistance was used to help investigate adapter constraints and prepare the change; the resulting diff and verification were reviewed manually.