This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/npm_and_yarn/airflow-core/src/airflow/ui/v3-1-test/core-ui-package-updates-d2b6544b90
in repository https://gitbox.apache.org/repos/asf/airflow.git
omit b4c1a962344 Bump the core-ui-package-updates group across 1 directory
with 63 updates
add cd6710d3973 [v3-1-test] Fix scheduler crash when enqueuing TI with
null dag_version_id (#61813) (#61846)
add 96b3b91d016 Persist table columns visibility in local storage (#61858)
(#61868)
add 7c2ad006410 [v3-1-test] Read Python version from static www/ftp
information (#61904) (#61905)
add 418bfb204ad [v3-1-test] fix(api): disable uvloop if
PYTHONASYNCIODEBUG=1 to prevent segfault … (#61281) (#61933)
add 6290a170383 [v3-1-test] Update versions in README.md (#61944) (#61966)
add 978c47bf4ba [v3-1-test] Fix recursion depth error in
_redact_exception_with_context (#61776) (#61795)
add 1040d7b444a Add on_task_instance_skipped listener hookspec (#59467)
(#61863)
add 407ae0ce1c8 [v3-1-test] Add LOG_MAX_SIZE environment variables to log
groomer (#61559) (#61950)
add b55d097d33a [v3-1-test] Remove redundant debounce-promise dependency
from UI (#61832) (#61938)
add 1bc3bc9bb1f Bump the core-ui-package-updates group across 1 directory
with 63 updates
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 (b4c1a962344)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/airflow-core/src/airflow/ui/v3-1-test/core-ui-package-updates-d2b6544b90
(1bc3bc9bb1f)
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 | 32 +-
README.md | 40 +-
.../administration-and-deployment/web-stack.rst | 20 +
.../docs/installation/supported-versions.rst | 20 +-
airflow-core/src/airflow/api_fastapi/main.py | 15 +
.../src/airflow/jobs/scheduler_job_runner.py | 7 +
.../src/airflow/listeners/spec/taskinstance.py | 25 ++
airflow-core/src/airflow/ui/package.json | 25 +-
airflow-core/src/airflow/ui/pnpm-lock.yaml | 451 ++++++++++-----------
.../ui/src/components/DataTable/DataTable.tsx | 6 +-
.../ui/src/components/SearchDags/SearchDags.tsx | 47 ++-
airflow-core/tests/unit/charts/log_groomer.py | 70 ++++
airflow-core/tests/unit/jobs/test_scheduler_job.py | 30 ++
.../dag-processor/dag-processor-deployment.yaml | 8 +
.../templates/scheduler/scheduler-deployment.yaml | 8 +
.../templates/triggerer/triggerer-deployment.yaml | 8 +
chart/templates/workers/worker-deployment.yaml | 8 +
chart/values.schema.json | 13 +
chart/values.yaml | 18 +
generated/PYPI_README.md | 24 +-
helm-tests/tests/chart_utils/log_groomer.py | 70 ++++
scripts/ci/prek/supported_versions.py | 4 +-
scripts/ci/prek/upgrade_important_versions.py | 37 +-
scripts/docker/clean-logs.sh | 32 +-
.../secrets_masker/secrets_masker.py | 37 +-
.../tests/secrets_masker/test_secrets_masker.py | 357 +++++++++++++++-
.../src/airflow/sdk/execution_time/task_runner.py | 6 +
.../task_sdk/execution_time/test_task_runner.py | 35 ++
28 files changed, 1091 insertions(+), 362 deletions(-)