This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a change to branch ci-upgrade-main
in repository https://gitbox.apache.org/repos/asf/airflow.git


 discard f51b8cfe5b5 [main] CI: Upgrade important CI environment
     add b7a22f0f8e3 Fix docs build crash on newer anyio releases (#72762)
     add 17a2cdc343a Add common.compat alias for BaseEventTrigger (#72140)
     add 4b1e9d286c8 Add example Dag for checkpointing progress from an async 
task (#71870)
     add 9d762c4de94 Remove dead dag_versions.hasattr mocks and duplicate 
bundle_url tests (#72580)
     add fd896f247fe Add rerank support to Cohere provider (#72501)
     add edbdb049f53 Add systemd unit file for Airflow Dag processor (#72772)
     add 3e8f91818cf Fix td_format rendering of negative durations (#72694) 
(#72774)
     add c234f63398b Pass verify and botocore_config to GlueJobCompleteTrigger 
(#72557)
     add 5e65f218508 Fail the Teradata compute cluster trigger on an unknown 
operation (#72696)
     add 01e0ace414e Speed up provider asset change detection by pruning 
dependency directories (#72784)
     add a29cd6c881c Skip pnpm store when detecting UI asset changes (#72783)
     add 9246fc51e32 Add reserved IP ranges to Vertex AI pipeline jobs (#72560)
     add 1f64733284f [main] CI: Upgrade important CI environment
     add 6095e9c9ad2 Keep workspace-relative action references in CI workflows

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   (f51b8cfe5b5)
            \
             N -- N -- N   refs/heads/ci-upgrade-main (6095e9c9ad2)

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/zizmor.yml                                 |  11 ++
 airflow-core/docs/howto/run-with-systemd.rst       |  19 +++
 .../example_dags/example_task_state_store_async.py |  94 +++++++++++
 .../core_api/routes/public/test_dag_versions.py    | 175 +--------------------
 .../core_api/routes/public/test_dags.py            | 106 -------------
 .../core_api/routes/public/test_task_instances.py  | 126 +--------------
 .../tests/unit/cli/commands/test_asset_command.py  |  46 +-----
 .../src/sphinx_exts/pagefind_search/builder.py     |   1 +
 docs/spelling_wordlist.txt                         |   3 +
 generated/known_airflow_exceptions.txt             |   1 -
 .../airflow/providers/amazon/aws/operators/glue.py |   2 +
 .../airflow/providers/amazon/aws/sensors/glue.py   |   2 +
 .../tests/unit/amazon/aws/operators/test_glue.py   |  29 ++++
 .../tests/unit/amazon/aws/sensors/test_glue.py     |  25 +++
 providers/apache/iceberg/pyproject.toml            |   2 +-
 .../providers/apache/iceberg/triggers/iceberg.py   |  11 +-
 providers/cohere/docs/index.rst                    |   7 +-
 providers/cohere/docs/operators/rerank.rst         |  71 +++++++++
 providers/cohere/provider.yaml                     |   2 +
 .../airflow/providers/cohere/get_provider_info.py  |  13 +-
 .../src/airflow/providers/cohere/hooks/cohere.py   |  26 +++
 .../airflow/providers/cohere/operators/rerank.py   |  95 +++++++++++
 .../cohere/example_cohere_rerank_operator.py}      |  29 ++--
 .../cohere/tests/unit/cohere/hooks/test_cohere.py  |  49 +++++-
 .../tests/unit/cohere/operators/test_rerank.py     |  86 ++++++++++
 .../common/compat/{standard => }/triggers.py       |  18 ++-
 .../tests/unit/common/compat/test_triggers.py      |  42 +++++
 .../google/cloud/hooks/vertex_ai/pipeline_job.py   |  10 ++
 .../cloud/operators/vertex_ai/pipeline_job.py      |   6 +
 .../cloud/hooks/vertex_ai/test_pipeline_job.py     |  38 +++++
 .../unit/google/cloud/operators/test_vertex_ai.py  |   5 +-
 .../teradata/triggers/teradata_compute_cluster.py  |  77 +++------
 .../triggers/test_teradata_compute_cluster.py      |  43 +++++
 scripts/ci/prek/compile_provider_assets.py         |  24 ++-
 scripts/ci/prek/compile_ui_assets.py               |  20 ++-
 scripts/systemd/README                             |  22 +++
 ...duler.service => airflow-dag-processor.service} |   4 +-
 .../tests/ci/prek/test_compile_provider_assets.py  | 133 ++++++++++++++++
 scripts/tests/ci/prek/test_compile_ui_assets.py    | 142 +++++++++++++++++
 .../src/airflow_shared/timezones/timezone.py       |  13 +-
 shared/timezones/tests/timezones/test_timezone.py  |  11 ++
 41 files changed, 1070 insertions(+), 569 deletions(-)
 create mode 100644 
airflow-core/src/airflow/example_dags/example_task_state_store_async.py
 create mode 100644 providers/cohere/docs/operators/rerank.rst
 create mode 100644 
providers/cohere/src/airflow/providers/cohere/operators/rerank.py
 copy providers/{opsgenie/tests/system/opsgenie/example_opsgenie_notifier.py => 
cohere/tests/system/cohere/example_cohere_rerank_operator.py} (58%)
 create mode 100644 providers/cohere/tests/unit/cohere/operators/test_rerank.py
 copy providers/common/compat/src/airflow/providers/common/compat/{standard => 
}/triggers.py (55%)
 create mode 100644 
providers/common/compat/tests/unit/common/compat/test_triggers.py
 copy scripts/systemd/{airflow-scheduler.service => 
airflow-dag-processor.service} (94%)
 create mode 100644 scripts/tests/ci/prek/test_compile_provider_assets.py
 create mode 100644 scripts/tests/ci/prek/test_compile_ui_assets.py

Reply via email to