This is an automated email from the ASF dual-hosted git repository.
taragolis pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
from 50e0b928be Make passing build args explicit in ci/prod builds (#35768)
add b1a9ebb2fe Move `BaseOperatorLink` into the separate module (#35032)
No new revisions were added by this update.
Summary of changes:
.pre-commit-config.yaml | 23 +++++++--
STATIC_CODE_CHECKS.rst | 3 +-
airflow/models/__init__.py | 5 +-
airflow/models/abstractoperator.py | 3 +-
airflow/models/baseoperator.py | 49 +++++++++----------
airflow/models/baseoperatorlink.py | 57 ++++++++++++++++++++++
airflow/models/mappedoperator.py | 3 +-
airflow/operators/trigger_dagrun.py | 3 +-
airflow/sensors/external_task.py | 2 +-
airflow/serialization/serialized_objects.py | 2 +-
docs/apache-airflow/howto/define-extra-link.rst | 9 ++--
docs/apache-airflow/public-airflow-interface.rst | 7 +++
docs/conf.py | 1 +
pyproject.toml | 1 +
.../endpoints/test_extra_link_endpoint.py | 2 +-
.../endpoints/test_plugin_endpoint.py | 2 +-
tests/api_connexion/schemas/test_plugin_schema.py | 2 +-
tests/serialization/test_dag_serialization.py | 3 +-
tests/test_utils/mock_operators.py | 3 +-
tests/www/views/test_views_extra_links.py | 3 +-
20 files changed, 135 insertions(+), 48 deletions(-)
create mode 100644 airflow/models/baseoperatorlink.py