This is an automated email from the ASF dual-hosted git repository.
jscheffl pushed a commit to branch v3-2-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v3-2-test by this push:
new 5c65f5ace1d [v3-2-test] docs: remove outdated reference to Dag
Dependencies view (#64787) (#64911)
5c65f5ace1d is described below
commit 5c65f5ace1d9d1943a808f7b88311ad9633f30e4
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Wed Apr 8 19:57:48 2026 +0200
[v3-2-test] docs: remove outdated reference to Dag Dependencies view
(#64787) (#64911)
(cherry picked from commit 26a700fc7ad6a4ea47abbd9455942b874c1d5591)
Co-authored-by: Subham <[email protected]>
---
airflow-core/docs/core-concepts/dags.rst | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/airflow-core/docs/core-concepts/dags.rst
b/airflow-core/docs/core-concepts/dags.rst
index a7e6fdb2b8c..8b19ba07e41 100644
--- a/airflow-core/docs/core-concepts/dags.rst
+++ b/airflow-core/docs/core-concepts/dags.rst
@@ -774,10 +774,7 @@ in which one Dag can depend on another:
- waiting -
:class:`~airflow.providers.standard.sensors.external_task.ExternalTaskSensor`
Additional difficulty is that one Dag could wait for or trigger several runs
of the other Dag
-with different data intervals. The **Dag Dependencies** view
-``Menu -> Browse -> Dag Dependencies`` helps visualize dependencies between
Dags. The dependencies
-are calculated by the scheduler during Dag serialization and the webserver
uses them to build
-the dependency graph.
+with different data intervals. These dependencies are calculated by the
scheduler during Dag serialization.
The dependency detector is configurable, so you can implement your own logic
different than the defaults in
:class:`~airflow.serialization.serialized_objects.DependencyDetector`