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

ash pushed a change to branch fix-vscode-ns-packages
in repository https://gitbox.apache.org/repos/asf/airflow.git


    omit a8f5231f9e6 Fix completion/linting/type checking with VSCode/pyright
     add 9ee9e52dc6e Add backport action to workflow (#43886)
     add 18ef6875663 Added notion of dialects into ProvidersManager (#43726)
     add 57b61f8a2ef Move Annotated import to `typing` module (#43887)
     add 3be0b6c427b Change Airflow Backcompat provider tests to 2.10.3 (#43898)
     add 45cbad79bd5 Correct mime-type (#43879)
     add 4bc1257df4b Fix duplication of Task tries in the UI (#43891)
     add 0360b992daa Upgrade tomli as build dependency (#43900)
     add 52b960b5509 Add `pdbr` as devel debuggers (#43904)
     add 23243b7bd3e Bump ruff to `0.7.3` (#43903)
     add 28d0a7e90a5 Fix CI ruff format static checks (#43908)
     add d07ff507b78 Allow setting run_id in xcom_pull method (#41343)
     add 5bb922172ba Migrate public xcom endpoint get entry to fastapi (#43521)
     add 03b34005d14 Revert "Add backport action to workflow (#43886)" (#43914)
     add f71df97e6cd Fix prepare-provider-packages for fab and standard 
providers (#43913)
     add 73eb25b1ee7 Fix completion/linting/type checking with VSCode/pyright

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   (a8f5231f9e6)
            \
             N -- N -- N   refs/heads/fix-vscode-ns-packages (73eb25b1ee7)

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/basic-tests.yml                  |   2 +-
 .pre-commit-config.yaml                            |   4 +-
 .../endpoints/task_instance_endpoint.py            |   7 +-
 airflow/api_connexion/endpoints/xcom_endpoint.py   |   2 +
 airflow/api_connexion/openapi/v1.yaml              |   2 +-
 airflow/api_fastapi/common/parameters.py           |   4 +-
 airflow/api_fastapi/common/types.py                |   3 +-
 airflow/api_fastapi/core_api/datamodels/plugins.py |   3 +-
 airflow/api_fastapi/core_api/datamodels/trigger.py |   2 +-
 .../api_fastapi/core_api/datamodels/variables.py   |   2 +-
 .../datamodels/{dag_warning.py => xcom.py}         |  35 ++--
 .../api_fastapi/core_api/openapi/v1-generated.yaml | 163 +++++++++++++++
 .../api_fastapi/core_api/routes/public/__init__.py |   2 +
 .../core_api/routes/public/backfills.py            |   3 +-
 .../core_api/routes/public/connections.py          |   3 +-
 .../api_fastapi/core_api/routes/public/dag_run.py  |   3 +-
 .../core_api/routes/public/dag_sources.py          |   3 +-
 .../core_api/routes/public/dag_stats.py            |   3 +-
 .../core_api/routes/public/dag_warning.py          |   3 +-
 airflow/api_fastapi/core_api/routes/public/dags.py |   3 +-
 .../core_api/routes/public/event_logs.py           |   2 +-
 .../core_api/routes/public/import_error.py         |   3 +-
 .../api_fastapi/core_api/routes/public/pools.py    |   3 +-
 .../core_api/routes/public/task_instances.py       |   3 +-
 .../core_api/routes/public/variables.py            |   3 +-
 airflow/api_fastapi/core_api/routes/public/xcom.py |  88 ++++++++
 airflow/api_fastapi/core_api/routes/ui/assets.py   |   3 +-
 airflow/api_fastapi/core_api/routes/ui/dags.py     |   3 +-
 .../api_fastapi/core_api/routes/ui/dashboard.py    |   3 +-
 .../execution_api/routes/connections.py            |   2 +-
 .../execution_api/routes/task_instance.py          |   2 +-
 .../api_fastapi/execution_api/routes/variables.py  |   2 +-
 airflow/cli/commands/provider_command.py           |  13 ++
 airflow/models/taskinstance.py                     |  11 +-
 airflow/provider.yaml.schema.json                  |  21 ++
 airflow/providers_manager.py                       |  33 +++
 airflow/serialization/pydantic/dag.py              |   3 +-
 airflow/serialization/pydantic/taskinstance.py     |   3 +-
 airflow/www/static/js/types/api-generated.ts       |   2 +-
 dev/breeze/src/airflow_breeze/global_constants.py  |   3 +-
 hatch_build.py                                     |   3 +-
 .../airflow/providers/apache/hdfs/sensors/hdfs.py  |   4 +-
 .../providers/google/cloud/hooks/bigquery.py       |   2 +-
 pyproject.toml                                     |   2 +-
 tests/always/test_providers_manager.py             |  32 +++
 .../endpoints/test_task_instance_endpoint.py       |  17 ++
 .../core_api/routes/public/test_xcom.py            | 226 +++++++++++++++++++++
 tests/models/test_taskinstance.py                  |  34 ++++
 48 files changed, 722 insertions(+), 56 deletions(-)
 copy airflow/api_fastapi/core_api/datamodels/{dag_warning.py => xcom.py} (61%)
 create mode 100644 airflow/api_fastapi/core_api/routes/public/xcom.py
 create mode 100644 tests/api_fastapi/core_api/routes/public/test_xcom.py

Reply via email to