This is an automated email from the ASF dual-hosted git repository.
vatsrahul1001 pushed a change to branch backport-4091ccf-v3-3-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
omit 6c9832f55c6 Add support for pandas 3 based xcoms in airflow (#71103)
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 f1ab6ec094a Add support for pandas 3 based xcoms in airflow (#71103)
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 (6c9832f55c6)
\
N -- N -- N refs/heads/backport-4091ccf-v3-3-test (f1ab6ec094a)
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 | 78 +---------
.github/workflows/ci-amd.yml | 7 -
.github/workflows/ci-arm.yml | 7 -
.github/workflows/refresh-constraints.yml | 72 ++++++++++
...-cache.yml => refresh-image-registry-cache.yml} | 59 ++++----
.github/workflows/release-constraints.yml | 6 +-
.github/workflows/update-constraints-on-push.yml | 56 ++++++--
airflow-core/newsfragments/69821.bugfix.rst | 1 +
airflow-core/newsfragments/70791.significant.rst | 35 -----
.../src/airflow/jobs/scheduler_job_runner.py | 21 ++-
airflow-core/src/airflow/models/trigger.py | 158 ++++++++++++++++++---
.../ui/public/i18n/locales/zh-TW/components.json | 2 +-
.../airflow/ui/public/i18n/locales/zh-TW/dag.json | 1 +
airflow-core/tests/unit/jobs/test_scheduler_job.py | 52 +++++++
airflow-core/tests/unit/models/test_trigger.py | 143 ++++++++++++++++++-
dev/MANUALLY_BUILDING_IMAGES.md | 6 +-
...UALLY_GENERATING_IMAGE_CACHE_AND_CONSTRAINTS.md | 89 ++++++++----
dev/breeze/tests/test_selective_checks.py | 23 +--
dev/images/update_constraints_run_workflow.png | Bin 0 -> 505265 bytes
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/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 +-
providers/google/README.rst | 12 +-
providers/google/docs/index.rst | 12 +-
providers/google/pyproject.toml | 15 +-
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 +-
scripts/in_container/run_generate_constraints.py | 11 ++
task-sdk/pyproject.toml | 15 +-
task-sdk/tests/task_sdk/serde/test_serializers.py | 28 ----
uv.lock | 90 ++++++------
59 files changed, 796 insertions(+), 626 deletions(-)
create mode 100644 .github/workflows/refresh-constraints.yml
rename .github/workflows/{refresh-image-cache.yml =>
refresh-image-registry-cache.yml} (61%)
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