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 63a8c79 (commit)
to 5e4b801 (commit)
from 63a8c79 Replace old SubDag zoom screenshot with new (#9621)
add cd3d9d9 Fix using .json template extension in GMP operators (#9566)
add 5cf2585 Fix docstrings in exceptions.py (#9622)
add e50e946 Task logging handlers can provide custom log links (#9354)
add ce9bad4 Improve queries number SchedulerJob._process_executor_events
(#9488)
add ee20086 Move S3TaskHandler to the AWS provider package (#9602)
add 611d449 Use supports_read instead of is_supported in log endpoint
(#9628)
add 37ca8ad Updated link to official documentation (#9629)
add 72d5a58 Fixing typo in chart/README.me (#9632)
add fddc572 Customizable page size limit in API (#9431)
add a99aaeb Allow setting Hashicorp Vault token from File (#9644)
add be6ed86 Fixed failing Kubernetes tests after deny_all for
experimental API (#9647)
add 5e4b801 Test are triggered now on more changes. (#9646)
No new revisions were added by this update.
Summary of changes:
.github/workflows/ci.yml | 37 ++---
UPDATING.md | 4 +
.../api_connexion/endpoints/connection_endpoint.py | 7 +-
.../api_connexion/endpoints/dag_run_endpoint.py | 3 +-
.../api_connexion/endpoints/event_log_endpoint.py | 4 +
.../endpoints/import_error_endpoint.py | 11 +-
airflow/api_connexion/endpoints/log_endpoint.py | 2 +-
airflow/api_connexion/endpoints/pool_endpoint.py | 9 +-
.../api_connexion/endpoints/variable_endpoint.py | 4 +
airflow/api_connexion/endpoints/xcom_endpoint.py | 15 +-
airflow/api_connexion/openapi/v1.yaml | 1 -
airflow/api_connexion/parameters.py | 30 +++-
airflow/config_templates/airflow_local_settings.py | 4 +-
airflow/config_templates/config.yml | 16 ++
airflow/config_templates/default_airflow.cfg | 9 ++
airflow/exceptions.py | 2 +-
airflow/jobs/scheduler_job.py | 32 ++--
.../providers/amazon/aws/log}/__init__.py | 0
.../amazon/aws}/log/s3_task_handler.py | 0
.../operators/campaign_manager.py | 8 +-
.../marketing_platform/operators/display_video.py | 7 +
.../marketing_platform/operators/search_ads.py | 7 +
.../hashicorp/_internal_client/vault_client.py | 22 ++-
airflow/providers/hashicorp/hooks/vault.py | 5 +
airflow/providers/hashicorp/secrets/vault.py | 5 +
airflow/utils/log/es_task_handler.py | 34 +++-
airflow/utils/log/log_reader.py | 8 +-
airflow/utils/log/logging_mixin.py | 16 ++
airflow/utils/log/s3_task_handler.py | 177 ++-------------------
airflow/www/templates/airflow/dag.html | 30 ++--
airflow/www/views.py | 55 +++++--
chart/README.md | 3 +-
chart/templates/configmap.yaml | 3 +
chart/values.yaml | 4 +
docs/autoapi_templates/index.rst | 13 ++
docs/howto/operator/gcp/campaign_manager.rst | 3 +-
docs/howto/operator/gcp/display_video.rst | 3 +-
docs/howto/operator/gcp/search_ads.rst | 3 +-
docs/howto/write-logs.rst | 26 +++
docs/index.rst | 3 +-
docs/project.rst | 2 +-
.../amazon/aws => stable-rest-api}/index.rst | 16 +-
scripts/ci/libraries/_kind.sh | 3 +-
.../endpoints/test_connection_endpoint.py | 31 +++-
.../endpoints/test_dag_run_endpoint.py | 14 +-
.../endpoints/test_event_log_endpoint.py | 14 +-
.../endpoints/test_import_error_endpoint.py | 36 ++++-
tests/api_connexion/endpoints/test_log_endpoint.py | 2 +-
.../api_connexion/endpoints/test_pool_endpoint.py | 26 ++-
.../endpoints/test_variable_endpoint.py | 11 +-
tests/api_connexion/test_parameters.py | 39 ++++-
tests/jobs/test_scheduler_job.py | 4 +-
.../{zendesk/hooks => amazon/aws/log}/__init__.py | 0
.../amazon/aws}/log/test_s3_task_handler.py | 6 +-
.../operators/test_campaign_manager.py | 19 +++
.../operators/test_display_video.py | 15 ++
.../operators/test_search_ads.py | 19 ++-
.../_internal_client/test_vault_client.py | 15 ++
tests/utils/log/test_es_task_handler.py | 22 +++
tests/www/test_views.py | 75 ++++++++-
60 files changed, 696 insertions(+), 298 deletions(-)
copy {tests/providers/zendesk/hooks =>
airflow/providers/amazon/aws/log}/__init__.py (100%)
copy airflow/{utils => providers/amazon/aws}/log/s3_task_handler.py (100%)
copy docs/{howto/operator/amazon/aws => stable-rest-api}/index.rst (63%)
copy tests/providers/{zendesk/hooks => amazon/aws/log}/__init__.py (100%)
rename tests/{utils => providers/amazon/aws}/log/test_s3_task_handler.py (96%)