From 8de0229a042d7fec4dde1bdb42a5765d5ddbc3fa Mon Sep 17 00:00:00 2001 From: Quigley Malcolm Date: Wed, 30 Oct 2024 14:07:56 -0500 Subject: [PATCH] Bump dbt adapters minior minimum to 1.8.0 (#10947) * Bump minimum dbt-adpaters to 1.8.0 In https://github.com/dbt-labs/dbt-core/pull/10859 we started using the `get_adapter_run_info` method provided by `dbt-adapters`. However that function is only available in dbt-adapters >= 1.8.0. Thus 1.8.0 is our new minimum for dbt-adapters. * Add changie doc --- .changes/unreleased/Dependencies-20241030-134526.yaml | 6 ++++++ core/setup.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 .changes/unreleased/Dependencies-20241030-134526.yaml diff --git a/.changes/unreleased/Dependencies-20241030-134526.yaml b/.changes/unreleased/Dependencies-20241030-134526.yaml new file mode 100644 index 00000000000..ed015170f9a --- /dev/null +++ b/.changes/unreleased/Dependencies-20241030-134526.yaml @@ -0,0 +1,6 @@ +kind: Dependencies +body: Bump minimnum allowed dbt-adapters version to 1.8.0 +time: 2024-10-30T13:45:26.144328-05:00 +custom: + Author: QMalcolm + Issue: N/A diff --git a/core/setup.py b/core/setup.py index b787ce8a923..da69ce72fc0 100644 --- a/core/setup.py +++ b/core/setup.py @@ -72,7 +72,7 @@ "dbt-semantic-interfaces>=0.7.3,<0.8", # Minor versions for these are expected to be backwards-compatible "dbt-common>=1.11.0,<2.0", - "dbt-adapters>=1.7.0,<2.0", + "dbt-adapters>=1.8.0,<2.0", # ---- # Expect compatibility with all new versions of these packages, so lower bounds only. "packaging>20.9",