This is an automated email from the ASF dual-hosted git repository.
dependabot[bot] pushed a change to branch
dependabot/npm_and_yarn/providers/fab/src/airflow/providers/fab/www/v3-3-test/3-3-fab-ui-package-updates-d83a3cf524
in repository https://gitbox.apache.org/repos/asf/airflow.git
discard f6a5f1a0729 Bump the 3-3-fab-ui-package-updates group across 1
directory with 2 updates
add c4bc1dbc4b3 Relax types-paramiko to support version 5 (#71009) (#71105)
add c654696c2fb Resolve the Dag's team when authorizing a Dag found by
lookup (#70893) (#71107)
add 2ebec52f632 [v3-3-test] Allow opentelemetry-exporter-prometheus
pre-release in candidate constraints resolution (#71110) (#71132)
add 2b42bf14655 [v3-3-test] Refresh the image cache on canary pushes, not
only on the schedule (#71137) (#71138)
add eede1e7ecad [v3-3-test] Fix typos in README_RELEASE_PYTHON_CLIENT
(#71089) (#71109)
add 2a7efe51b2a Resolve release constraints against PyPI providers only
(#71140) (#71143)
add f3164f0e8c6 [v3-3-test] Fix provider distribution builds failing with
flit 4 (#71118) (#71149)
add ffa0fff4690 [v3-3-test] Add vatsrahul1001 to the release-constraints
workflow allowlist (#71152) (#71153)
add 6fc4bcc311e [v3-3-test] Stop auto-scrolling task logs while the user
is selecting text (#70594) (#71127)
add 4498cefce56 [v3-3-test] Restrict exception-node deserialization to
known classes without importing the stored name (#68511) (#71133)
add 07b9a577960 [v3-3-test] Only refuse team-scoped-looking env var ids
when multi_team is on (#71079) (#71142)
add 1733b72bc5b Fix orphaned subprocesses and supervisor crash on
heartbeat 409 (#65738) (#71146)
add 985c5a8be32 [v3-3-test] UI: Keep task try history consistent when
switching tasks (#70711) (#71126)
add da29b1ad659 [v3-3-test] Document the 409 from XCom create and drop a
duplicated condition (#70992) (#71128)
add ebca37fd955 [v3-3-test] Keep not-ready providers out of the all extra
(#71165) (#71167)
add 14e5c4a56ed Refresh the image registry cache in a workflow that cannot
be cancelled (#71171) (#71173)
add 860eac445b4 [v3-3-test] Allow opentelemetry-semantic-conventions
pre-release in constraints resolution (#71177) (#71178)
add 7aee7d6ffa9 Respect retries when a deferrable trigger ends a task with
TaskFailedEvent (#69821) (#71163)
add f3c2ef20cef Fill Taiwanese Mandarin translation gap (#71164)
add 303b1c42bda Unify how timetable is translated in Taiwanese Mandarin
(#71168)
add 865375a7e86 [v3-3-test] Fix ambiguous git refspec when pushing
release-candidate constraints (#71181) (#71184)
add 9b6d80b5539 Fail task instances whose stored next_kwargs cannot be
processed (#70685) (#71183)
add 41191ba20fc Revert the pandas < 3 cap for DataFrame XComs (#71182)
add 6924a4e4097 Bump the 3-3-fab-ui-package-updates group across 1
directory with 2 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 (f6a5f1a0729)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/providers/fab/src/airflow/providers/fab/www/v3-3-test/3-3-fab-ui-package-updates-d83a3cf524
(6924a4e4097)
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/workflows/additional-ci-image-checks.yml | 65 +---
.github/workflows/ci-amd.yml | 7 -
.github/workflows/ci-arm.yml | 7 -
.github/workflows/generate-constraints.yml | 18 +-
.github/workflows/refresh-constraints.yml | 72 ++++
.github/workflows/refresh-image-registry-cache.yml | 145 +++++++
.github/workflows/release-constraints.yml | 11 +-
.github/workflows/update-constraints-on-push.yml | 56 ++-
airflow-core/newsfragments/69821.bugfix.rst | 1 +
airflow-core/newsfragments/70791.significant.rst | 35 --
.../core_api/openapi/v2-rest-api-generated.yaml | 6 +
.../api_fastapi/core_api/routes/public/assets.py | 6 +-
.../api_fastapi/core_api/routes/public/dag_run.py | 5 +-
.../api_fastapi/core_api/routes/public/xcom.py | 8 +-
.../src/airflow/jobs/scheduler_job_runner.py | 21 +-
airflow-core/src/airflow/models/trigger.py | 158 +++++++-
.../src/airflow/secrets/environment_variables.py | 20 +-
.../airflow/serialization/serialized_objects.py | 36 +-
.../ui/openapi-gen/requests/services.gen.ts | 1 +
.../airflow/ui/openapi-gen/requests/types.gen.ts | 4 +
.../ui/public/i18n/locales/zh-TW/components.json | 2 +-
.../airflow/ui/public/i18n/locales/zh-TW/dag.json | 1 +
.../ui/src/components/TaskTrySelect.test.tsx | 206 ++++++++--
.../airflow/ui/src/components/TaskTrySelect.tsx | 12 +-
.../src/pages/TaskInstance/Logs/TaskLogContent.tsx | 13 +-
.../ui/src/pages/TaskInstance/Logs/utils.test.ts | 78 +++-
.../ui/src/pages/TaskInstance/Logs/utils.ts | 13 +
airflow-core/tests/unit/always/test_secrets.py | 2 +
.../always/test_secrets_environment_variables.py | 19 +
.../core_api/routes/public/test_assets.py | 28 ++
.../core_api/routes/public/test_dag_run.py | 26 ++
airflow-core/tests/unit/jobs/test_scheduler_job.py | 52 +++
airflow-core/tests/unit/models/test_trigger.py | 143 ++++++-
.../unit/serialization/test_dag_serialization.py | 121 +++++-
dev/MANUALLY_BUILDING_IMAGES.md | 6 +-
...UALLY_GENERATING_IMAGE_CACHE_AND_CONSTRAINTS.md | 89 +++--
dev/README_RELEASE_PYTHON_CLIENT.md | 4 +-
dev/breeze/pyproject.toml | 8 +-
.../prepare_providers/provider_distributions.py | 2 +-
dev/breeze/tests/test_selective_checks.py | 21 +
dev/breeze/uv.lock | 4 +-
dev/images/update_constraints_run_workflow.png | Bin 0 -> 505265 bytes
devel-common/pyproject.toml | 3 +-
providers/amazon/pyproject.toml | 15 +-
providers/apache/hdfs/README.rst | 12 +-
providers/apache/hdfs/docs/index.rst | 12 +-
providers/apache/hdfs/pyproject.toml | 15 +-
providers/apache/hive/README.rst | 12 +-
providers/apache/hive/docs/index.rst | 12 +-
providers/apache/hive/pyproject.toml | 15 +-
.../providers/apache/kafka/plugins}/__init__.py | 0
providers/common/sql/pyproject.toml | 15 +-
providers/databricks/README.rst | 12 +-
providers/databricks/docs/index.rst | 12 +-
providers/databricks/pyproject.toml | 15 +-
providers/exasol/README.rst | 12 +-
providers/exasol/docs/index.rst | 12 +-
providers/exasol/pyproject.toml | 15 +-
.../src/airflow/providers/fab/www/pnpm-lock.yaml | 16 +-
providers/google/README.rst | 12 +-
providers/google/docs/index.rst | 12 +-
providers/google/pyproject.toml | 15 +-
.../providers/openai/example_dags}/__init__.py | 0
providers/papermill/README.rst | 12 +-
providers/papermill/docs/index.rst | 12 +-
providers/papermill/pyproject.toml | 15 +-
providers/postgres/pyproject.toml | 15 +-
providers/presto/README.rst | 12 +-
providers/presto/docs/index.rst | 12 +-
providers/presto/pyproject.toml | 15 +-
providers/salesforce/README.rst | 12 +-
providers/salesforce/docs/index.rst | 12 +-
providers/salesforce/pyproject.toml | 15 +-
providers/snowflake/README.rst | 6 +-
providers/snowflake/docs/index.rst | 6 +-
providers/snowflake/pyproject.toml | 15 +-
providers/trino/README.rst | 12 +-
providers/trino/docs/index.rst | 12 +-
providers/trino/pyproject.toml | 15 +-
providers/weaviate/README.rst | 12 +-
providers/weaviate/docs/index.rst | 12 +-
providers/weaviate/pyproject.toml | 15 +-
pyproject.toml | 4 -
scripts/ci/prek/common_prek_utils.py | 17 +-
scripts/ci/prek/update_airflow_pyproject_toml.py | 20 +-
scripts/in_container/run_generate_constraints.py | 19 +
task-sdk/pyproject.toml | 15 +-
.../src/airflow/sdk/execution_time/supervisor.py | 69 +++-
.../src/airflow/sdk/serde/serializers/pandas.py | 45 ---
.../task_sdk/execution_time/test_supervisor.py | 161 +++++++-
task-sdk/tests/task_sdk/serde/test_serializers.py | 28 --
uv.lock | 432 ++++++++++-----------
92 files changed, 1943 insertions(+), 880 deletions(-)
create mode 100644 .github/workflows/refresh-constraints.yml
create mode 100644 .github/workflows/refresh-image-registry-cache.yml
create mode 100644 airflow-core/newsfragments/69821.bugfix.rst
delete mode 100644 airflow-core/newsfragments/70791.significant.rst
create mode 100644 dev/images/update_constraints_run_workflow.png
copy {airflow-core/src/airflow/_shared =>
providers/apache/kafka/src/airflow/providers/apache/kafka/plugins}/__init__.py
(100%)
copy {airflow-core/src/airflow/_shared =>
providers/openai/src/airflow/providers/openai/example_dags}/__init__.py (100%)