Fix broken class xrefs in standard provider docs - #73360
Merged
kaxil merged 1 commit intoSep 19, 2026
Merged
Conversation
kaxil
force-pushed
the
worktree-fix-standard-sensor-docs-xref
branch
from
September 18, 2026 21:38
17297cf to
fe17d4c
Compare
shahar1
approved these changes
Sep 18, 2026
DayOfWeekSensor's xref in the standard provider's sensor guide pointed at the pre-provider-split airflow.sensors.weekday path, which no longer exists; the class now lives under airflow.providers.standard.sensors.weekday. BaseXCom's xref in the common.io XCom backend guide pointed at airflow.models.xcom.BaseXCom, a deprecated compat shim. The task-sdk docs only expose it at the flat airflow.sdk.BaseXCom path (autoapiclass in task-sdk/docs/api.rst, autoapi_generate_api_docs=False elsewhere), matching the existing convention for this class of xref (e.g. airflow.sdk.ResumableJobMixin). The TimeSensor xref in the same sensor guide is also broken (points at a non-existent sensors.time_sensor module) but is left alone here since apache#69610, apache#69746, and apache#69925 are all open against that same paragraph.
kaxil
force-pushed
the
worktree-fix-standard-sensor-docs-xref
branch
from
September 18, 2026 21:43
fe17d4c to
602270d
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
DayOfWeekSensor's xref in the standard provider's sensor guide pointed at the pre-provider-splitairflow.sensors.weekdaypath, which no longer exists; the class now lives underairflow.providers.standard.sensors.weekday.BaseXCom's xref in the common.io XCom backend guide pointed atairflow.models.xcom.BaseXCom, a deprecated compat shim. The task-sdk docs only expose it at the flatairflow.sdk.BaseXCompath, matching the existing convention for this class of xref (e.g.airflow.sdk.ResumableJobMixin).The
TimeSensorxref in the same sensor guide is also broken (points at a non-existentsensors.time_sensormodule) but is left alone here since #69610, #69746, and #69925 are all open against that same paragraph.