This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/npm_and_yarn/providers/fab/src/airflow/providers/fab/www/fab-ui-package-updates-e3295f9023
in repository https://gitbox.apache.org/repos/asf/airflow.git
discard 6186a80ab31 Bump the fab-ui-package-updates group across 1 directory
with 3 updates
add c35d1d77fa2 Add workers.celery.affinity & workers.kubernetes.affinity
(#64860)
add 26a700fc7ad docs: remove outdated reference to Dag Dependencies view
(#64787)
add e62a12d06f8 Fix CARGO_HOME location for airflow user builds (#64899)
add 11a0aa8a36d open task group when navigating via group name; preserve
arrow toggl… (#64284)
add 44708bdb2a3 [main] CI: Upgrade important CI environment (#64912)
add 27258d56788 Speed up cleanup_python_generated_files by skipping
irrelevant dirs (#64927)
add 636213e7d33 Add workers.celery.extraContainers &
workers.kubernetes.extraContainers (#64739)
add 06101dc5daa Fix broken RST link in New PMC Member Onboarding steps
(#64934)
add 666879c6735 fix(migrations): move UPDATEs inside disable_sqlite_fkeys
in migration 0097 (#64876)
add 6fd0142229e Fix elasticsearch provider to use SDK imports for Airflow
3.2+ (#64931)
add 3ac0d74db71 Fix read out-of-order issue with send method in
CommsDecoder (#64894)
add f089b5b2e93 Fix trigger template rendering failure when operator
template_fields differ from trigger attributes (#64715)
add 1171c9b397f Fix broken markdown links in boring-cyborg first PR
welcome comment (#64937)
add 1ffd2da4fbe Update python client version/changelog for 3.2.0 release
(#64951)
add a06082660ed fix bulk connection delete banner (#64735)
add a42955b8816 Update accepting provider guide with more examples (#64958)
add 7efa37252e1 Update gen ai batch api system test (#64964)
add f4f48b9abfb Add vault data layer for auto-triage (#64590)
add 35d76bc147b UI: Implement automatic link target detection for
extra_links (#64404)
add f5fc9e4db67 Bump the fab-ui-package-updates group across 1 directory
with 3 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 (6186a80ab31)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/providers/fab/src/airflow/providers/fab/www/fab-ui-package-updates-e3295f9023
(f5fc9e4db67)
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:
.github/boring-cyborg.yml | 2 +-
COMMITTERS.rst | 2 +-
Dockerfile | 2 +-
Dockerfile.ci | 2 +-
airflow-core/docs/core-concepts/dags.rst | 5 +-
..._enforce_log_event_and_dag_is_stale_not_null.py | 9 +-
airflow-core/src/airflow/triggers/base.py | 23 +-
.../ui/src/layouts/Details/Grid/TaskNames.tsx | 19 +-
.../ui/src/pages/TaskInstance/ExtraLinks.test.tsx | 124 +++++++++++
.../ui/src/pages/TaskInstance/ExtraLinks.tsx | 26 ++-
.../ui/src/queries/useBulkDeleteConnections.tsx | 4 +-
.../tests/unit/triggers/test_base_trigger.py | 71 ++++++
chart/docs/using-additional-containers.rst | 14 +-
chart/files/pod-template-file.kubernetes-helm-yaml | 6 +-
chart/newsfragments/64739.significant.rst | 1 +
chart/newsfragments/64860.significant.rst | 1 +
chart/templates/NOTES.txt | 16 ++
chart/values.schema.json | 32 ++-
chart/values.yaml | 26 +++
clients/python/CHANGELOG.md | 47 ++++
clients/python/version.txt | 2 +-
.../src/airflow_breeze/commands/pr_commands.py | 68 +++++-
dev/breeze/src/airflow_breeze/global_constants.py | 2 +-
dev/breeze/src/airflow_breeze/utils/llm_utils.py | 15 +-
dev/breeze/src/airflow_breeze/utils/path_utils.py | 36 +--
dev/breeze/src/airflow_breeze/utils/pr_cache.py | 43 +++-
dev/breeze/src/airflow_breeze/utils/pr_vault.py | 209 ++++++++++++++++++
dev/breeze/tests/test_author_cache.py | 80 +++++++
dev/breeze/tests/test_cache_validation.py | 117 ++++++++++
dev/breeze/tests/test_pr_vault.py | 244 +++++++++++++++++++++
dev/breeze/uv.lock | 20 +-
.../airflow_aux/test_pod_template_file.py | 125 +++++++++--
.../tests/helm_tests/airflow_core/test_worker.py | 128 ++++++++---
.../helm_tests/airflow_core/test_worker_sets.py | 65 +++++-
providers/ACCEPTING_PROVIDERS.rst | 11 +-
.../providers/elasticsearch/log/es_task_handler.py | 3 +-
.../gen_ai/example_gen_ai_gemini_batch_api.py | 3 +-
task-sdk/src/airflow/sdk/execution_time/comms.py | 2 +-
.../tests/task_sdk/execution_time/test_comms.py | 49 ++++-
uv.lock | 5 +-
40 files changed, 1518 insertions(+), 141 deletions(-)
create mode 100644
airflow-core/src/airflow/ui/src/pages/TaskInstance/ExtraLinks.test.tsx
create mode 100644 chart/newsfragments/64739.significant.rst
create mode 100644 chart/newsfragments/64860.significant.rst
create mode 100644 dev/breeze/src/airflow_breeze/utils/pr_vault.py
create mode 100644 dev/breeze/tests/test_author_cache.py
create mode 100644 dev/breeze/tests/test_cache_validation.py
create mode 100644 dev/breeze/tests/test_pr_vault.py