diff --git a/docs/apache-airflow/core-concepts/dags.rst b/docs/apache-airflow/core-concepts/dags.rst index ae4da4ab18c6..98823fbc85ad 100644 --- a/docs/apache-airflow/core-concepts/dags.rst +++ b/docs/apache-airflow/core-concepts/dags.rst @@ -765,7 +765,7 @@ While dependencies between tasks in a DAG are explicitly defined through upstrea relationships, dependencies between DAGs are a bit more complex. In general, there are two ways in which one DAG can depend on another: -- triggering - :class:`~airflow.operators.trigger_dagrun.TriggerDagRunOperator` +- triggering - :class:`~airflow.providers.standard.operators.trigger_dagrun.TriggerDagRunOperator` - waiting - :class:`~airflow.sensors.external_task_sensor.ExternalTaskSensor` Additional difficulty is that one DAG could wait for or trigger several runs of the other DAG diff --git a/docs/apache-airflow/operators-and-hooks-ref.rst b/docs/apache-airflow/operators-and-hooks-ref.rst index ae131fb8d268..22a320fb7bb6 100644 --- a/docs/apache-airflow/operators-and-hooks-ref.rst +++ b/docs/apache-airflow/operators-and-hooks-ref.rst @@ -65,7 +65,7 @@ For details see: :doc:`apache-airflow-providers:operators-and-hooks-ref/index`. * - :mod:`airflow.operators.latest_only` - - * - :mod:`airflow.operators.trigger_dagrun` + * - :mod:`airflow.providers.standard.operators.trigger_dagrun` - **Sensors:** diff --git a/newsfragments/41736.significant.rst b/newsfragments/41736.significant.rst index 2c90979d80f0..92ab8cb92a8f 100644 --- a/newsfragments/41736.significant.rst +++ b/newsfragments/41736.significant.rst @@ -3,5 +3,5 @@ Removed deprecated parameters from core-operators. Parameters removed: - airflow.operators.datetime.BranchDateTimeOperator: use_task_execution_date -- airflow.operators.trigger_dagrun.TriggerDagRunOperator: execution_date +- airflow.providers.standard.operators.trigger_dagrun.TriggerDagRunOperator: execution_date - airflow.operators.weekday.BranchDayOfWeekOperator: use_task_execution_day