This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to tag nightly-master
in repository https://gitbox.apache.org/repos/asf/airflow.git.


*** WARNING: tag nightly-master was modified! ***

    from 22c6a84  (commit)
      to 11eb649  (commit)
    from 22c6a84  Adds --no-rbac-ui flag for Breeze airflow 1.10 installation 
(#11315)
     add 18dcac8  Add remaining community guidelines to CONTRIBUTING.rst 
(#11312)
     add 47b05a8  Improve handling of job_id in BigQuery operators (#11287)
     add e2655f6  Prints nicer message in case of git push errors (#11320)
     add b0fcf67  Add AzureFileShareToGCSOperator (#10991)
     add d86cf37  Automatically upgrade old default navbar color (#11322)
     add fe59f26  Pin versions of "untrusted" 3rd-party GitHub Actions (#11319)
     add d404cb0  Moves Commiter's guide to CONTRIBUTING.rst (#11314)
     add b4baa2b  Add environment variables documentation to cli-ref.rst. 
(#10970)
     add 2bac481  Update link for Announcement Page (#11337)
     add 5d007fd  Strict type check for azure hooks (#11342)
     add de07d13  Adds --install-wheels flag to breeze command line (#11317)
     add 4d95d9c  Improve code quality of SLA mechanism in SchedulerJob (#11257)
     add 625afa2  Improve Committer's guide docs (#11338)
     add 832a785  Add Azure Blob Storage to GCS transfer operator (#11321)
     add 9dc32a3  Better message when Building Image fails or gets cancelled. 
(#11333)
     add f67e6cb  Revert "Adds --install-wheels flag to breeze command line 
(#11317)" (#11348)
     add ba60836  Fix command to run tmux with breeze in BREEZE.rst (#11340)
     add a1f8885  Improve instructions to install Airflow Version (#11339)
     add 4839a5b  Reduce "start-up" time for tasks in LocalExecutor (#11327)
     add 666e81a  Bump cache version for kubernetes tests (#11355)
     add f5b7bbc  Better diagnostics when there are problems with Kerberos 
(#11353)
     add 11eb649  Fix to make y-axis of Tries chart visible (#10071)

No new revisions were added by this update.

Summary of changes:
 .github/boring-cyborg.yml                          |   2 +-
 .github/workflows/build-images-workflow-run.yml    |  35 +++-
 .github/workflows/ci.yml                           |   8 +-
 .github/workflows/codeql-cancel.yml                |   2 +-
 .github/workflows/delete_old_artifacts.yml         |   2 +-
 BREEZE.rst                                         |   2 +-
 CONTRIBUTING.rst                                   |  34 +++-
 airflow/config_templates/config.yml                |  10 ++
 airflow/config_templates/default_airflow.cfg       |   5 +
 airflow/configuration.py                           |   3 +
 airflow/executors/local_executor.py                |  70 +++++++-
 airflow/jobs/scheduler_job.py                      |  22 ++-
 airflow/providers/dependencies.json                |   1 +
 .../example_azure_fileshare_to_gcs.py}             |  44 +++--
 airflow/providers/google/cloud/hooks/bigquery.py   |  14 +-
 airflow/providers/google/cloud/hooks/gcs.py        |  10 ++
 .../providers/google/cloud/operators/bigquery.py   |   5 +-
 .../cloud/transfers/azure_fileshare_to_gcs.py      | 182 +++++++++++++++++++++
 .../providers/google/cloud/transfers/s3_to_gcs.py  |  12 +-
 .../example_dags/example_azure_blob_to_gcs.py      |  68 ++++++++
 airflow/providers/microsoft/azure/hooks/adx.py     |   4 +-
 .../providers/microsoft/azure/hooks/azure_batch.py |  43 +++--
 .../azure/hooks/azure_container_instance.py        |  18 +-
 .../azure/hooks/azure_container_registry.py        |   4 +-
 .../azure/hooks/azure_container_volume.py          |   8 +-
 .../microsoft/azure/hooks/azure_cosmos.py          |  47 ++++--
 .../microsoft/azure/hooks/azure_data_lake.py       |  10 +-
 .../microsoft/azure/hooks/azure_fileshare.py       |  85 ++++++++--
 airflow/providers/microsoft/azure/hooks/wasb.py    |  27 ++-
 .../microsoft/azure/operators/azure_batch.py       |   6 +-
 .../azure/transfers/azure_blob_to_gcs.py}          | 118 +++++++------
 airflow/settings.py                                |   8 +
 airflow/task/task_runner/standard_task_runner.py   |   3 +-
 airflow/www/views.py                               |   2 +
 dev/README.md                                      |  21 +--
 docs/cli-and-env-variables-ref.rst                 |  85 ++++++++++
 docs/cli-ref.rst                                   |  37 -----
 docs/configurations-ref.rst                        |   4 +
 .../google/transfer/azure_fileshare_to_gcs.rst     |  54 ++++++
 .../microsoft/transfer/blob_storage_to_gcs.rst     |  61 +++++++
 docs/howto/variable.rst                            |   2 +
 docs/index.rst                                     |   2 +-
 docs/modules_management.rst                        |   2 +
 docs/operators-and-hooks-ref.rst                   |  10 ++
 docs/plugins.rst                                   |  19 +++
 docs/redirects.txt                                 |   4 +
 docs/usage-cli.rst                                 |   2 +-
 scripts/ci/libraries/_push_pull_remove_images.sh   |  29 ++++
 scripts/in_container/_in_container_utils.sh        |   3 +
 tests/executors/test_local_executor.py             |  50 +++++-
 ...s3_to_gcs.py => test_azure_fileshare_to_gcs.py} |  85 +++++-----
 .../test_azure_fileshare_to_gcs_system.py          |  80 +++++++++
 .../microsoft/azure/hooks/test_azure_batch.py      |  15 ++
 .../microsoft/azure/hooks/test_azure_fileshare.py  |  29 ++++
 .../microsoft/azure/operators/test_azure_batch.py  |  12 ++
 .../azure/transfers/test_azure_blob_to_gcs.py      | 103 ++++++++++++
 tests/test_utils/azure_system_helpers.py           |  89 ++++++++++
 tests/test_utils/gcp_system_helpers.py             |   8 +
 58 files changed, 1412 insertions(+), 308 deletions(-)
 copy 
airflow/providers/{microsoft/azure/example_dags/example_azure_container_instances.py
 => google/cloud/example_dags/example_azure_fileshare_to_gcs.py} (55%)
 create mode 100644 
airflow/providers/google/cloud/transfers/azure_fileshare_to_gcs.py
 create mode 100644 
airflow/providers/microsoft/azure/example_dags/example_azure_blob_to_gcs.py
 copy airflow/providers/{google/suite/transfers/gcs_to_sheets.py => 
microsoft/azure/transfers/azure_blob_to_gcs.py} (56%)
 create mode 100644 docs/cli-and-env-variables-ref.rst
 delete mode 100644 docs/cli-ref.rst
 create mode 100644 
docs/howto/operator/google/transfer/azure_fileshare_to_gcs.rst
 create mode 100644 
docs/howto/operator/microsoft/transfer/blob_storage_to_gcs.rst
 copy tests/providers/google/cloud/transfers/{test_s3_to_gcs.py => 
test_azure_fileshare_to_gcs.py} (56%)
 create mode 100644 
tests/providers/google/cloud/transfers/test_azure_fileshare_to_gcs_system.py
 create mode 100644 
tests/providers/microsoft/azure/transfers/test_azure_blob_to_gcs.py
 create mode 100644 tests/test_utils/azure_system_helpers.py

Reply via email to