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

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


    from 4b7beb83a98 Updated Dag-Run Screenshots (#55921)
     new dd6a05f737f Fix 'All Log Levels' option in TaskLogHeader (#55851)
     new 243212e6561 Fix `breeze run` command to respect `--backend` flag 
(#55977)
     new 3a7ac635802 Use ``SecretCache`` for connection and variable access in 
task sdk (#55972)
     new 1787ba4d332 Fix pytest collection failure for classes decorated with 
context managers (#55915)
     new 5bab9e6ca72 Bump `uv` to `0.8.20` (#55978)
     new fc32d24ec1b Fix grid scrollbar overlapping on firefox (#55960)
     new a3ad5a9d532 Fix PoolBar flex values (#55957)
     new f5951e2f24f Handle Serialized DAG Format from v3 to v2 when 
downgrading Airflow (#55975)
     new 77f2e9ba86e Regenerate the rest API spec to fix CI (#55986)

The 9 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/actions/install-prek/action.yml            |   2 +-
 .github/workflows/basic-tests.yml                  |   2 +-
 .github/workflows/release_dockerhub_image.yml      |   2 +-
 .pre-commit-config.yaml                            |   6 +
 Dockerfile                                         |   2 +-
 Dockerfile.ci                                      |   2 +-
 airflow-core/docs/img/airflow_erd.sha256           |   2 +-
 airflow-core/docs/migrations-ref.rst               |   5 +-
 .../core_api/openapi/v2-rest-api-generated.yaml    |   8 +-
 ...3_1_0_downgrade_serialized_dag_version_to_v2.py | 199 ++++++++++++
 .../src/airflow/ui/openapi-gen/queries/queries.ts  |   4 +-
 .../ui/openapi-gen/requests/services.gen.ts        |   4 +-
 .../airflow/ui/openapi-gen/requests/types.gen.ts   |   8 +-
 .../src/airflow/ui/src/components/PoolBar.tsx      |   1 -
 .../ui/src/layouts/Details/DetailsLayout.tsx       |   2 +-
 .../ui/src/layouts/Details/PanelButtons.tsx        |   2 +-
 .../src/pages/TaskInstance/Logs/TaskLogHeader.tsx  |   4 +-
 airflow-core/src/airflow/utils/db.py               |   2 +-
 dev/breeze/doc/ci/02_images.md                     |   2 +-
 .../airflow_breeze/commands/developer_commands.py  |   2 +
 .../commands/release_management_commands.py        |   2 +-
 dev/breeze/src/airflow_breeze/global_constants.py  |   2 +-
 .../airflow_breeze/utils/docker_command_utils.py   |  16 +-
 .../apache/kafka/operators/test_consume.py         |  41 +--
 .../apache/kafka/operators/test_produce.py         |  33 +-
 .../tests/unit/celery/cli/test_celery_command.py   |  14 +-
 pyproject.toml                                     |   2 +-
 scripts/ci/install_breeze.sh                       |   2 +-
 .../prek/check_contextmanager_class_decorators.py  | 133 +++++++++
 scripts/tools/setup_breeze                         |   2 +-
 task-sdk/src/airflow/sdk/definitions/connection.py |  86 +++++-
 task-sdk/src/airflow/sdk/execution_time/context.py |  83 +++++-
 task-sdk/tests/task_sdk/bases/test_hook.py         |   2 +-
 .../{test_connections.py => test_connection.py}    | 124 ++++++++
 .../tests/task_sdk/execution_time/test_context.py  |   2 +-
 .../task_sdk/execution_time/test_context_cache.py  | 332 +++++++++++++++++++++
 .../task_sdk/execution_time/test_task_runner.py    |   2 +-
 37 files changed, 1047 insertions(+), 92 deletions(-)
 create mode 100644 
airflow-core/src/airflow/migrations/versions/0085_3_1_0_downgrade_serialized_dag_version_to_v2.py
 create mode 100644 scripts/ci/prek/check_contextmanager_class_decorators.py
 rename task-sdk/tests/task_sdk/definitions/{test_connections.py => 
test_connection.py} (66%)
 create mode 100644 task-sdk/tests/task_sdk/execution_time/test_context_cache.py

Reply via email to