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

utkarsharma pushed a change to branch v3-0-test
in repository https://gitbox.apache.org/repos/asf/airflow.git


 discard 98aa251b8ae Fix static checks
 discard ff072289f6e Update RELEASE_NOTES.rst
 discard 3a8a1d6018e Update Airflow version to 3.0.0
     add 43ac5cb21a9 Add autorefresh to dag page (#46296)
     add 3de1433fbca Move Sendgrid to new provider structure (#46313)
     add 8787721d951 Bump version of task-sdk package to alpha (#46324)
     add 34299cc4fcf Create TaskMap rows when pushing XCom values from the Task 
Execution Interface (#46319)
     add 6bb8f8ca338 Add autorefresh to dags list page (#46326)
     add 9988454349c Set minimum dependencies for apache-beam on Py 3.12+3.13 
(#46321)
     add c7cb46fe23b Add basic autorefresh to grid and graph (#46330)
     add fc10f83fa95 Update Airflow version to 3.0.0
     add fd862733016 Update RELEASE_NOTES.rst

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   (98aa251b8ae)
            \
             N -- N -- N   refs/heads/v3-0-test (fd862733016)

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 +-
 airflow/api_fastapi/execution_api/routes/xcoms.py  |  57 +++++--
 airflow/models/taskinstance.py                     |  21 +--
 airflow/ui/src/components/TaskTrySelect.tsx        |   7 +-
 .../src/components/TriggerDag/TriggerDAGForm.tsx   |   4 +-
 airflow/ui/src/constants/sortParams.ts             |   8 +-
 airflow/ui/src/layouts/Details/Graph/Graph.tsx     |   5 +
 airflow/ui/src/layouts/Details/Grid/Grid.tsx       |   4 +
 airflow/ui/src/pages/Dag/Dag.tsx                   |  19 ++-
 airflow/ui/src/pages/Dag/Header.tsx                | 174 +++++++++++----------
 airflow/ui/src/pages/Dag/Runs/Runs.tsx             |  15 +-
 airflow/ui/src/pages/Dag/Tasks/TaskCard.tsx        | 109 +++++++------
 airflow/ui/src/pages/Dag/Tasks/TaskRecentRuns.tsx  |  32 ++--
 airflow/ui/src/pages/Dag/Tasks/Tasks.tsx           |  45 +-----
 airflow/ui/src/pages/DagsList/DagCard.tsx          |   6 +-
 airflow/ui/src/pages/DagsList/DagsList.tsx         |   3 +-
 airflow/ui/src/pages/Run/Run.tsx                   |  29 ++--
 airflow/ui/src/pages/Run/TaskInstances.tsx         |  13 +-
 airflow/ui/src/pages/TaskInstance/Details.tsx      |  11 +-
 airflow/ui/src/pages/TaskInstance/TaskInstance.tsx |  26 ++-
 airflow/ui/src/queries/useDags.tsx                 |  20 ++-
 airflow/ui/src/queries/useLogs.tsx                 |  11 +-
 airflow/ui/src/queries/useTrigger.ts               |  18 ++-
 airflow/ui/src/utils/index.ts                      |   1 +
 airflow/ui/src/utils/query.ts                      |  69 ++++++++
 airflow/ui/src/utils/refresh.ts                    |  29 ----
 docs/.gitignore                                    |   1 +
 .../changelog.rst                                  |  25 ---
 generated/provider_dependencies.json               |   3 +-
 providers/apache/beam/README.rst                   |   9 +-
 providers/apache/beam/pyproject.toml               |   4 +-
 .../providers/apache/beam/get_provider_info.py     |   8 +-
 providers/{openfaas => sendgrid}/README.rst        |  17 +-
 .../docs}/.latest-doc-only-change.txt              |   0
 .../CHANGELOG.rst => sendgrid/docs/changelog.rst}  |   0
 .../sendgrid/docs}/commits.rst                     |   0
 .../sendgrid/docs}/index.rst                       |   0
 .../docs}/installing-providers-from-sources.rst    |   0
 .../sendgrid/docs}/security.rst                    |   0
 .../airflow/providers => }/sendgrid/provider.yaml  |   4 -
 providers/{openfaas => sendgrid}/pyproject.toml    |  17 +-
 .../src/airflow/providers/sendgrid}/LICENSE        |   0
 .../src/airflow/providers/sendgrid/__init__.py     |   0
 .../providers/sendgrid}/get_provider_info.py       |  29 ++--
 .../airflow/providers/sendgrid/utils}/__init__.py  |   0
 .../airflow/providers/sendgrid/utils/emailer.py    |   5 +-
 providers/{airbyte => sendgrid}/tests/conftest.py  |   0
 .../tests/provider_tests}/__init__.py              |   0
 .../tests/provider_tests/sendgrid}/__init__.py     |   0
 .../provider_tests/sendgrid/utils}/__init__.py     |   0
 .../provider_tests}/sendgrid/utils/test_emailer.py |   0
 .../airflow/providers/sendgrid/utils/__init__.py   |  16 --
 providers/tests/sendgrid/__init__.py               |  16 --
 providers/tests/sendgrid/utils/__init__.py         |  16 --
 pyproject.toml                                     |   3 +
 scripts/ci/docker-compose/remove-sources.yml       |   1 +
 scripts/ci/docker-compose/tests-sources.yml        |   1 +
 task_sdk/src/airflow/sdk/__init__.py               |   2 +-
 .../src/airflow/sdk/definitions/mappedoperator.py  |  17 ++
 task_sdk/src/airflow/sdk/exceptions.py             |  22 ++-
 task_sdk/src/airflow/sdk/execution_time/comms.py   |   1 +
 .../src/airflow/sdk/execution_time/task_runner.py  |  63 +++++---
 task_sdk/tests/execution_time/test_task_runner.py  |  13 +-
 .../api_fastapi/execution_api/routes/test_xcoms.py |  42 ++++-
 64 files changed, 600 insertions(+), 473 deletions(-)
 create mode 100644 airflow/ui/src/utils/query.ts
 delete mode 100644 airflow/ui/src/utils/refresh.ts
 delete mode 100644 docs/apache-airflow-providers-sendgrid/changelog.rst
 copy providers/{openfaas => sendgrid}/README.rst (83%)
 rename providers/{src/airflow/providers/sendgrid => 
sendgrid/docs}/.latest-doc-only-change.txt (100%)
 rename providers/{src/airflow/providers/sendgrid/CHANGELOG.rst => 
sendgrid/docs/changelog.rst} (100%)
 rename {docs/apache-airflow-providers-sendgrid => 
providers/sendgrid/docs}/commits.rst (100%)
 rename {docs/apache-airflow-providers-sendgrid => 
providers/sendgrid/docs}/index.rst (100%)
 rename {docs/apache-airflow-providers-sendgrid => 
providers/sendgrid/docs}/installing-providers-from-sources.rst (100%)
 rename {docs/apache-airflow-providers-sendgrid => 
providers/sendgrid/docs}/security.rst (100%)
 rename providers/{src/airflow/providers => }/sendgrid/provider.yaml (95%)
 copy providers/{openfaas => sendgrid}/pyproject.toml (87%)
 copy {chart => providers/sendgrid/src/airflow/providers/sendgrid}/LICENSE 
(100%)
 rename providers/{ => sendgrid}/src/airflow/providers/sendgrid/__init__.py 
(100%)
 copy providers/{openfaas/src/airflow/providers/openfaas => 
sendgrid/src/airflow/providers/sendgrid}/get_provider_info.py (66%)
 copy {airflow/api_connexion => 
providers/sendgrid/src/airflow/providers/sendgrid/utils}/__init__.py (100%)
 rename providers/{ => 
sendgrid}/src/airflow/providers/sendgrid/utils/emailer.py (99%)
 copy providers/{airbyte => sendgrid}/tests/conftest.py (100%)
 copy providers/{ => sendgrid/tests/provider_tests}/__init__.py (100%)
 copy {airflow/api_connexion => 
providers/sendgrid/tests/provider_tests/sendgrid}/__init__.py (100%)
 copy {airflow/api_connexion => 
providers/sendgrid/tests/provider_tests/sendgrid/utils}/__init__.py (100%)
 rename providers/{tests => 
sendgrid/tests/provider_tests}/sendgrid/utils/test_emailer.py (100%)
 delete mode 100644 providers/src/airflow/providers/sendgrid/utils/__init__.py
 delete mode 100644 providers/tests/sendgrid/__init__.py
 delete mode 100644 providers/tests/sendgrid/utils/__init__.py

Reply via email to