From 6e1f64f8b49f605ca74ec8dab5b30f8a0dceed9c Mon Sep 17 00:00:00 2001 From: Quigley Malcolm Date: Wed, 13 Nov 2024 13:19:01 -0600 Subject: [PATCH] Bump minimum dbt-adapters requirement to 1.9.0 (#10998) This is needed for dbt-core + dbt-adapters to work properly in regards to the microbatch project_flag/behavior flag `require_batched_execution_for_custom_microbatch_strategy` --- .changes/unreleased/Dependencies-20241113-112043.yaml | 6 ++++++ core/setup.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 .changes/unreleased/Dependencies-20241113-112043.yaml diff --git a/.changes/unreleased/Dependencies-20241113-112043.yaml b/.changes/unreleased/Dependencies-20241113-112043.yaml new file mode 100644 index 00000000000..cc477456787 --- /dev/null +++ b/.changes/unreleased/Dependencies-20241113-112043.yaml @@ -0,0 +1,6 @@ +kind: Dependencies +body: Bump minimum dbt-adapters version to 1.9.0 +time: 2024-11-13T11:20:43.25658-06:00 +custom: + Author: QMalcolm + Issue: "10996" diff --git a/core/setup.py b/core/setup.py index 456e5fedc15..8fdb2731a82 100644 --- a/core/setup.py +++ b/core/setup.py @@ -72,7 +72,7 @@ "dbt-semantic-interfaces>=0.7.4,<0.8", # Minor versions for these are expected to be backwards-compatible "dbt-common>=1.11.0,<2.0", - "dbt-adapters>=1.8.0,<2.0", + "dbt-adapters>=1.9.0,<2.0", # ---- # Expect compatibility with all new versions of these packages, so lower bounds only. "packaging>20.9",