fix(pipeline): bump Airflow to 2.11 and dbt to 1.9 to resolve SQLAlchemy conflict
Some checks failed
Build and Push Docker Images / Build Backend (FastAPI) (push) Successful in 32s
Build and Push Docker Images / Build Frontend (Next.js) (push) Successful in 1m5s
Build and Push Docker Images / Build Integrator (push) Successful in 57s
Build and Push Docker Images / Build Kestra Init (push) Successful in 32s
Build and Push Docker Images / Build Pipeline (Meltano + dbt + Airflow) (push) Failing after 49s
Build and Push Docker Images / Trigger Portainer Update (push) Has been skipped

Airflow 2.10 requires SQLAlchemy <2.0, but dbt-postgres 1.8+ pulls in
SQLAlchemy 2.x. Airflow 2.11 supports SQLAlchemy 2.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-26 09:08:21 +00:00
parent 5d90eddf46
commit e32666ae4c
2 changed files with 3 additions and 3 deletions

View File

@@ -84,7 +84,7 @@ plugins:
utilities:
- name: dbt-postgres
variant: dbt-labs
pip_url: dbt-postgres~=1.8
pip_url: dbt-postgres~=1.9
config:
project_dir: $MELTANO_PROJECT_ROOT/transform
profiles_dir: $MELTANO_PROJECT_ROOT/transform

View File

@@ -1,7 +1,7 @@
# Pipeline dependencies
meltano==3.5.*
dbt-postgres~=1.8
apache-airflow==2.10.*
dbt-postgres~=1.9
apache-airflow==2.11.*
apache-airflow-providers-postgres>=5.0
typesense>=0.21
requests>=2.31