This is an automated email from the ASF dual-hosted git repository.
jscheffl pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 56efe9dd19a Migrate airbyte provider to use
airflow.sdk.configuration.conf (#59991)
56efe9dd19a is described below
commit 56efe9dd19aee7117b06e099631712eb7c33bec3
Author: Ankit Chaurasia <[email protected]>
AuthorDate: Thu Jan 1 04:21:10 2026 +0545
Migrate airbyte provider to use airflow.sdk.configuration.conf (#59991)
---
providers/airbyte/pyproject.toml | 2 +-
providers/airbyte/src/airflow/providers/airbyte/operators/airbyte.py | 3 +--
providers/airbyte/src/airflow/providers/airbyte/sensors/airbyte.py | 3 +--
3 files changed, 3 insertions(+), 5 deletions(-)
diff --git a/providers/airbyte/pyproject.toml b/providers/airbyte/pyproject.toml
index 8681cc6f8ae..a571d57d778 100644
--- a/providers/airbyte/pyproject.toml
+++ b/providers/airbyte/pyproject.toml
@@ -59,7 +59,7 @@ requires-python = ">=3.10"
# After you modify the dependencies, and rebuild your Breeze CI image with
``breeze ci-image build``
dependencies = [
"apache-airflow>=2.11.0",
- "apache-airflow-providers-common-compat>=1.10.1",
+ "apache-airflow-providers-common-compat>=1.10.1", # use next version
"airbyte-api>=0.52.0",
"requests>=2.32.0",
]
diff --git
a/providers/airbyte/src/airflow/providers/airbyte/operators/airbyte.py
b/providers/airbyte/src/airflow/providers/airbyte/operators/airbyte.py
index ca74827bd65..55cdb5f5658 100644
--- a/providers/airbyte/src/airflow/providers/airbyte/operators/airbyte.py
+++ b/providers/airbyte/src/airflow/providers/airbyte/operators/airbyte.py
@@ -23,10 +23,9 @@ from typing import TYPE_CHECKING, Any
from airbyte_api.models import JobStatusEnum
-from airflow.configuration import conf
from airflow.providers.airbyte.hooks.airbyte import AirbyteHook
from airflow.providers.airbyte.triggers.airbyte import AirbyteSyncTrigger
-from airflow.providers.common.compat.sdk import AirflowException, BaseOperator
+from airflow.providers.common.compat.sdk import AirflowException,
BaseOperator, conf
if TYPE_CHECKING:
from airflow.providers.common.compat.sdk import Context
diff --git a/providers/airbyte/src/airflow/providers/airbyte/sensors/airbyte.py
b/providers/airbyte/src/airflow/providers/airbyte/sensors/airbyte.py
index 18d991539e5..5c6be4b9c33 100644
--- a/providers/airbyte/src/airflow/providers/airbyte/sensors/airbyte.py
+++ b/providers/airbyte/src/airflow/providers/airbyte/sensors/airbyte.py
@@ -25,10 +25,9 @@ from typing import TYPE_CHECKING, Any
from airbyte_api.models import JobStatusEnum
-from airflow.configuration import conf
from airflow.providers.airbyte.hooks.airbyte import AirbyteHook
from airflow.providers.airbyte.triggers.airbyte import AirbyteSyncTrigger
-from airflow.providers.common.compat.sdk import AirflowException,
BaseSensorOperator
+from airflow.providers.common.compat.sdk import AirflowException,
BaseSensorOperator, conf
if TYPE_CHECKING:
from airflow.providers.common.compat.sdk import Context