This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/github_actions/v3-2-test/github-actions-updates-5d993b9bb5
in repository https://gitbox.apache.org/repos/asf/airflow.git
omit b76394a2b57 Bump aws-actions/configure-aws-credentials
add f5239c95676 [v3-2-test] Fix release check tooling for providers
(#64920) (#65008)
add ff7097240a4 [v3-2-test] Add FAQ entry for API server memory growth
with gunicorn worker recycling (#65036) (#65037)
add 68f71377a5a [v3-2-test] Sync default image Python version references
(#64994) (#65045)
add 67a29a28a9f [v3-2-test] Fixed incorrect image path for helm/core
issues in breeze docs (#65060) (#65064)
add 57ceb425880 [v3-2-test] Fix missing dag_id in get_task_instance
(#64957) (#64968) (#65067)
add f9559f9c2b0 [v3-2-test] Added plugins command to airflowctl (#64935)
(#65001)
add 1af072e318b [v3-2-test] add yaml-based help texts for auto-generated
airflowctl commands (#65073) (#65090)
add eb3896d59f5 [v3-2-test] fix(cli): change is_alive default to None in
jobs list (#65065) (#65091)
add 98b3e0db39f sync airflowctl from main to v3-2-test (#65069)
add e86585dd5cd [v3-2-test] Trigger unit tests when only shared/*.py files
change (#64999) (#65094)
add 8e55051fc55 [v3-2-test] Prevent path traversal via
AIRFLOW_CLI_ENVIRONMENT in airflowctl (#64618) (#65096)
add 27324ce7e5c [v3-2-test] Fix CLI error handling and exit codes for
failed commands (#65052) (#65097)
add fd73783cfcf Bump aws-actions/configure-aws-credentials
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (b76394a2b57)
\
N -- N -- N
refs/heads/dependabot/github_actions/v3-2-test/github-actions-updates-5d993b9bb5
(fd73783cfcf)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
Dockerfile | 2 +-
Dockerfile.ci | 2 +-
airflow-core/docs/faq.rst | 37 ++++
airflow-core/src/airflow/models/taskinstance.py | 1 +
.../tests/unit/models/test_taskinstance.py | 75 +++++++++
.../airflowctl_tests/test_airflowctl_commands.py | 3 +
airflow-ctl/.pre-commit-config.yaml | 9 +
airflow-ctl/docs/images/command_hashes.txt | 23 +--
airflow-ctl/docs/images/output_assets.svg | 186 +++++++++++----------
airflow-ctl/docs/images/output_backfill.svg | 122 +++++++-------
airflow-ctl/docs/images/output_config.svg | 98 +++++------
airflow-ctl/docs/images/output_connections.svg | 88 +++++-----
airflow-ctl/docs/images/output_dagrun.svg | 86 +++++-----
airflow-ctl/docs/images/output_dags.svg | 170 +++++++++----------
airflow-ctl/docs/images/output_jobs.svg | 80 ++++-----
airflow-ctl/docs/images/output_main.svg | 130 +++++++-------
airflow-ctl/docs/images/output_plugins.svg | 105 ++++++++++++
airflow-ctl/docs/images/output_pools.svg | 116 ++++++-------
airflow-ctl/docs/images/output_providers.svg | 80 ++++-----
airflow-ctl/docs/images/output_variables.svg | 76 ++++-----
.../docs/installation/installing-from-pypi.rst | 34 +++-
airflow-ctl/pyproject.toml | 2 +
airflow-ctl/src/airflowctl/api/client.py | 74 ++++++--
airflow-ctl/src/airflowctl/api/operations.py | 56 +++++--
airflow-ctl/src/airflowctl/ctl/cli_config.py | 27 ++-
.../src/airflowctl/ctl/commands/auth_command.py | 6 +-
airflow-ctl/src/airflowctl/ctl/help_texts.yaml | 102 +++++++++++
airflow-ctl/tests/airflow_ctl/api/test_client.py | 37 +++-
.../tests/airflow_ctl/api/test_operations.py | 176 +++++++++++++++----
.../airflow_ctl/ctl/commands/test_auth_command.py | 18 ++
.../tests/airflow_ctl/ctl/test_cli_config.py | 115 +++++++++++++
dev/breeze/doc/09_release_management_tasks.rst | 4 +-
.../airflow_breeze/utils/check_release_files.py | 3 +-
.../src/airflow_breeze/utils/selective_checks.py | 1 +
dev/breeze/tests/test_selective_checks.py | 10 ++
docker-stack-docs/build-arg-ref.rst | 2 +-
.../customizing/add-build-essential-custom.sh | 2 +-
.../docker-examples/customizing/custom-sources.sh | 2 +-
.../customizing/pypi-dev-runtime-deps.sh | 2 +-
.../customizing/pypi-extras-and-deps.sh | 2 +-
.../customizing/pypi-selected-version.sh | 2 +-
.../restricted/restricted_environments.sh | 2 +-
.../ci/prek/check_airflowctl_command_coverage.py | 34 +---
scripts/ci/prek/check_airflowctl_help_texts.py | 87 ++++++++++
scripts/ci/prek/common_prek_utils.py | 61 ++++++-
scripts/ci/prek/upgrade_important_versions.py | 10 +-
.../in_container/run_capture_airflowctl_help.py | 1 +
scripts/tests/ci/prek/test_common_prek_utils.py | 14 ++
task-sdk/src/airflow/sdk/_shared/AGENTS.md | 2 +-
49 files changed, 1636 insertions(+), 741 deletions(-)
create mode 100644 airflow-ctl/docs/images/output_plugins.svg
create mode 100644 airflow-ctl/src/airflowctl/ctl/help_texts.yaml
create mode 100755 scripts/ci/prek/check_airflowctl_help_texts.py