This is an automated email from the ASF dual-hosted git repository.
jedcunningham pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
from 8906f127fec Bump apache-airflow from 2.10.1 to 2.10.3 in /performance
(#43834)
add a212bf86abb Add basic support for git and local dag bundles (#42689)
No new revisions were added by this update.
Summary of changes:
airflow/config_templates/config.yml | 8 +
.../bundles}/__init__.py | 0
airflow/dag_processing/bundles/base.py | 82 ++++++++++
airflow/dag_processing/bundles/git.py | 115 +++++++++++++
.../dag_processing/bundles/local.py | 36 +++--
hatch_build.py | 1 +
tests/dag_processing/test_dag_bundles.py | 178 +++++++++++++++++++++
7 files changed, 406 insertions(+), 14 deletions(-)
copy airflow/{api_connexion => dag_processing/bundles}/__init__.py (100%)
create mode 100644 airflow/dag_processing/bundles/base.py
create mode 100644 airflow/dag_processing/bundles/git.py
copy
providers/src/airflow/providers/cncf/kubernetes/resource_convert/env_variable.py
=> airflow/dag_processing/bundles/local.py (56%)
create mode 100644 tests/dag_processing/test_dag_bundles.py