This is an automated email from the ASF dual-hosted git repository.
kaxilnaik 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 7fb562487d3 Fix new import paths in Newsfragment (#48551)
7fb562487d3 is described below
commit 7fb562487d31bf1fe586ed3117aeeb2bbc784d1b
Author: Kaxil Naik <[email protected]>
AuthorDate: Sun Mar 30 23:49:18 2025 +0530
Fix new import paths in Newsfragment (#48551)
---
airflow-core/newsfragments/41368.significant.rst | 26 ++++++++++++------------
1 file changed, 13 insertions(+), 13 deletions(-)
diff --git a/airflow-core/newsfragments/41368.significant.rst
b/airflow-core/newsfragments/41368.significant.rst
index 025bfd42535..22aabeef433 100644
--- a/airflow-core/newsfragments/41368.significant.rst
+++ b/airflow-core/newsfragments/41368.significant.rst
@@ -28,27 +28,27 @@ For example, instead of ``from airflow.sensors import
TimeDeltaSensor``, use ``f
* AIR302
- * [ ] ``airflow.operators.bash_operator.BashOperator`` →
``airflow.sdk.bases.operator.BashOperator``
+ * [ ] ``airflow.operators.bash_operator.BashOperator`` →
``airflow.providers.standard.operators.bash.BashOperator``
* [ ] ``airflow.operators.branch_operator.BaseBranchOperator`` →
``airflow.providers.standard.operators.branch.BaseBranchOperator``
* [ ] ``airflow.operators.EmptyOperator`` →
``airflow.providers.standard.operators.empty.EmptyOperator``
* [ ] ``airflow.operators.DummyOperator`` →
``airflow.providers.standard.operators.empty.EmptyOperator``
* [ ] ``airflow.operators.dummy_operator.EmptyOperator`` →
``airflow.providers.standard.operators.empty.EmptyOperator``
* [ ] ``airflow.operators.dummy_operator.DummyOperator`` →
``airflow.providers.standard.operators.empty.EmptyOperator``
* [ ] ``airflow.operators.email_operator.EmailOperator`` →
``airflow.operators.email.EmailOperator``
- * [ ] ``airflow.sensors.base_sensor_operator.BaseSensorOperator`` →
``airflow.sdk.bases.sensor.BashOperator``
+ * [ ] ``airflow.sensors.base_sensor_operator.BaseSensorOperator`` →
``airflow.sdk.bases.sensor.BaseSensorOperator``
* [x] ``airflow.sensors.date_time_sensor.DateTimeSensor`` →
``airflow.sensors.date_time.DateTimeSensor``
- * [x] ``airflow.sensors.external_task_sensor.ExternalTaskMarker`` →
``airflow.sensors.external_task.ExternalTaskMarker``
- * [x] ``airflow.sensors.external_task_sensor.ExternalTaskSensor`` →
``airflow.sensors.external_task.ExternalTaskSensor``
- * [x] ``airflow.sensors.external_task_sensor.ExternalTaskSensorLink`` →
``airflow.sensors.external_task.ExternalTaskSensorLink``
- * [x] ``airflow.sensors.time_delta_sensor.TimeDeltaSensor`` →
``airflow.sensors.time_delta.TimeDeltaSensor``
+ * [x] ``airflow.sensors.external_task_sensor.ExternalTaskMarker`` →
``airflow.providers.standard.sensors.external_task.ExternalTaskMarker``
+ * [x] ``airflow.sensors.external_task_sensor.ExternalTaskSensor`` →
``airflow.providers.standard.sensors.external_task.ExternalTaskSensor``
+ * [x] ``airflow.sensors.external_task_sensor.ExternalTaskSensorLink`` →
``airflow.providers.standard.sensors.external_task.ExternalTaskSensorLink``
+ * [x] ``airflow.sensors.time_delta_sensor.TimeDeltaSensor`` →
``airflow.providers.standard.sensors.time_delta.TimeDeltaSensor``
* [x] ``airflow.hooks.base_hook.BaseHook`` →
``airflow.hooks.base.BaseHook``
- * [x] ``airflow.operators.dagrun_operator.TriggerDagRunLink`` →
``airflow.operators.trigger_dagrun.TriggerDagRunLink``
- * [x] ``airflow.operators.dagrun_operator.TriggerDagRunOperator`` →
``airflow.operators.trigger_dagrun.TriggerDagRunOperator``
- * [x] ``airflow.operators.python_operator.BranchPythonOperator`` →
``airflow.operators.python.BranchPythonOperator``
- * [x] ``airflow.operators.python_operator.PythonOperator`` →
``airflow.operators.python.PythonOperator``
- * [x] ``airflow.operators.python_operator.PythonVirtualenvOperator`` →
``airflow.operators.python.PythonVirtualenvOperator``
- * [x] ``airflow.operators.python_operator.ShortCircuitOperator`` →
``airflow.operators.python.ShortCircuitOperator``
- * [x] ``airflow.operators.latest_only_operator.LatestOnlyOperator`` →
``airflow.operators.latest_only.LatestOnlyOperator``
+ * [x] ``airflow.operators.dagrun_operator.TriggerDagRunLink`` →
``airflow.providers.standard.operators.trigger_dagrun.TriggerDagRunLink``
+ * [x] ``airflow.operators.dagrun_operator.TriggerDagRunOperator`` →
``airflow.providers.standard.operators.trigger_dagrun.TriggerDagRunOperator``
+ * [x] ``airflow.operators.python_operator.BranchPythonOperator`` →
``airflow.providers.standard.operators.python.BranchPythonOperator``
+ * [x] ``airflow.operators.python_operator.PythonOperator`` →
``airflow.providers.standard.operators.python.PythonOperator``
+ * [x] ``airflow.operators.python_operator.PythonVirtualenvOperator`` →
``airflow.providers.standard.operators.python.PythonVirtualenvOperator``
+ * [x] ``airflow.operators.python_operator.ShortCircuitOperator`` →
``airflow.providers.standard.operators.python.ShortCircuitOperator``
+ * [x] ``airflow.operators.latest_only_operator.LatestOnlyOperator`` →
``airflow.providers.standard.operators.latest_only.LatestOnlyOperator``
* AIR303