This is an automated email from the ASF dual-hosted git repository. kaxilnaik pushed a commit to branch v3-0-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 257735fc790a8b318df43deeccc00767d635fe7b Author: Jed Cunningham <[email protected]> AuthorDate: Thu Jul 17 14:53:42 2025 -0600 Update dag bundles docs; add s3, fix git classpath (#53473) (cherry picked from commit bf5fd5ff69851db394e50a10e825a744487c0779) --- airflow-core/docs/administration-and-deployment/dag-bundles.rst | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airflow-core/docs/administration-and-deployment/dag-bundles.rst b/airflow-core/docs/administration-and-deployment/dag-bundles.rst index 057d354b1f5..48401b0c143 100644 --- a/airflow-core/docs/administration-and-deployment/dag-bundles.rst +++ b/airflow-core/docs/administration-and-deployment/dag-bundles.rst @@ -50,6 +50,9 @@ Airflow supports multiple types of dag Bundles, each catering to specific use ca **airflow.providers.git.bundles.git.GitDagBundle** These bundles integrate with Git repositories, allowing Airflow to fetch dags directly from a repository. +**airflow.providers.amazon.aws.bundles.s3.S3DagBundle** + These bundles reference an S3 bucket containing DAG files. They do not support versioning of the bundle, meaning tasks always run using the latest code. + Configuring dag bundles ----------------------- @@ -65,7 +68,7 @@ For example, adding multiple dag bundles to your ``airflow.cfg`` file: dag_bundle_config_list = [ { "name": "my_git_repo", - "classpath": "airflow.dag_processing.bundles.git.GitDagBundle", + "classpath": "airflow.providers.git.bundles.git.GitDagBundle", "kwargs": {"tracking_ref": "main", "git_conn_id": "my_git_conn"} }, {
