This is an automated email from the ASF dual-hosted git repository.
github-actions[bot] pushed a change to branch ci-upgrade-main
in repository https://gitbox.apache.org/repos/asf/airflow.git
discard b19acbc457b [main] CI: Upgrade important CI environment
add 63b8bedca66 Go SDK: stop logging fetched edge workloads verbatim
(#68355)
add 6cea6df94cd OpenLineage: reuse per-process adapter in dag-state-change
pool workers (#69283)
add 54259ae1795 Verify Azure AD OAuth id_token signatures by default in
FAB auth manager (#69374)
add aca7d5ab999 Fix flaky LocalExecutor drain test under Python 3.14
forkserver (#69538)
add c96f5c89453 Add scheduler observability metrics (#68068)
add 6fd1994ce28 refactor: Introduced CachedAsyncTokenCredential which
keeps the session open during lifecycle of cached RequestAdapter (#69365)
add 1ff21149246 Reject inverted date windows in airflow partitions clear
(#69454)
add 8bedde1bad5 Fix remote task log pollution leaking out of S3 log
handler test (#69539)
add 19a3cba6de7 Add Calendar Deadlines API Endpoint and Data Models
(#68604)
add ca967b9c047 Add Amazon MSK IAM (OAUTHBEARER) support to Apache Kafka
provider (#69427)
add 0a0055a853b Fill Taiwanese Mandarin translation gap (#69549)
add 9ec780dbc85 Sync supervisor schema with remote source-of-truth (#69527)
add 4e4c69aab79 Additional setup for Java SDK release (#69444)
add 5e23c6a0cc8 Remove redundant session.commit() calls in FastAPI route
handlers (#69495)
add d3972ae1f6e Simplify airflowctl query parameter handling (#69475)
add 11b49e75593 Add extra field filtering for asset events (#64611)
add a050861fc59 Fix documentation misusing previous/next for task
relationships (#69179)
add 65fba6f1200 Add streaming task log support to BaseExecutor and
FileTaskHandler (#69299)
add 101bc155e0f Thread version_data to callbacks (#69185)
add dc5ddd26202 Add the team_name tag to the Celery executor
task_timeout_error (#69092)
add 01b425a06f6 Reject invalid partition keys in the create asset events
API (#69453)
add c96da9bb453 Skip the ts-sdk supervisor schema check on PRs not
touching ts-sdk (#69583)
add e5465795a88 Fix flaky KubernetesPodOperator log-timestamp test (#69563)
add d53ce3a7423 [main] CI: Upgrade important CI environment
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 (b19acbc457b)
\
N -- N -- N refs/heads/ci-upgrade-main (d53ce3a7423)
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:
.pre-commit-config.yaml | 13 +-
Dockerfile.ci | 2 +-
.../docs/authoring-and-scheduling/assets.rst | 20 +
.../dynamic-task-mapping.rst | 4 +-
airflow-core/docs/best-practices.rst | 4 +-
airflow-core/docs/howto/dynamic-dag-generation.rst | 2 +-
airflow-core/docs/migrations-ref.rst | 4 +-
airflow-core/docs/tutorial/objectstorage.rst | 4 +-
airflow-core/docs/tutorial/taskflow.rst | 2 +-
.../src/airflow/api_fastapi/common/parameters.py | 56 ++
.../api_fastapi/core_api/datamodels/assets.py | 20 +-
.../api_fastapi/core_api/datamodels/ui/calendar.py | 15 +
.../api_fastapi/core_api/openapi/_private_ui.yaml | 113 ++++
.../core_api/openapi/v2-rest-api-generated.yaml | 14 +
.../api_fastapi/core_api/routes/public/assets.py | 3 +
.../core_api/routes/public/backfills.py | 1 -
.../api_fastapi/core_api/routes/public/hitl.py | 2 -
.../api_fastapi/core_api/routes/ui/calendar.py | 34 +-
.../api_fastapi/core_api/services/ui/calendar.py | 55 ++
.../execution_api/routes/asset_events.py | 38 +-
.../api_fastapi/execution_api/routes/hitl.py | 1 -
.../api_fastapi/execution_api/routes/xcoms.py | 1 -
.../src/airflow/callbacks/callback_requests.py | 2 +
.../src/airflow/cli/commands/partition_command.py | 29 +-
airflow-core/src/airflow/dag_processing/manager.py | 6 +-
.../src/airflow/executors/base_executor.py | 14 +
.../src/airflow/executors/workloads/callback.py | 4 +
.../src/airflow/executors/workloads/task.py | 7 +-
.../src/airflow/jobs/scheduler_job_runner.py | 44 +-
airflow-core/src/airflow/migrations/env.py | 10 +
...24_3_4_0_add_gin_index_on_asset_event_extra.py} | 41 +-
airflow-core/src/airflow/models/dag_version.py | 14 +-
airflow-core/src/airflow/models/dagrun.py | 6 +
airflow-core/src/airflow/models/trigger.py | 23 +-
.../src/airflow/ui/openapi-gen/queries/common.ts | 16 +-
.../ui/openapi-gen/queries/ensureQueryData.ts | 27 +-
.../src/airflow/ui/openapi-gen/queries/prefetch.ts | 27 +-
.../src/airflow/ui/openapi-gen/queries/queries.ts | 27 +-
.../src/airflow/ui/openapi-gen/queries/suspense.ts | 27 +-
.../airflow/ui/openapi-gen/requests/schemas.gen.ts | 46 +-
.../ui/openapi-gen/requests/services.gen.ts | 37 +-
.../airflow/ui/openapi-gen/requests/types.gen.ts | 47 ++
.../ui/public/i18n/locales/zh-TW/admin.json | 1 +
.../ui/public/i18n/locales/zh-TW/common.json | 17 +
.../airflow/ui/public/i18n/locales/zh-TW/dags.json | 5 +
airflow-core/src/airflow/utils/db.py | 1 +
.../src/airflow/utils/log/file_task_handler.py | 44 +-
airflow-core/src/airflow/utils/sqlalchemy.py | 55 +-
.../core_api/routes/public/test_assets.py | 105 ++++
.../core_api/routes/ui/test_calendar.py | 202 ++++++-
.../versions/head/test_asset_events.py | 207 +++++++
.../tests/unit/callbacks/test_callback_requests.py | 27 +
.../unit/cli/commands/test_partition_command.py | 136 +++++
.../tests/unit/dag_processing/test_manager.py | 25 +
.../tests/unit/executors/test_base_executor.py | 8 +
.../tests/unit/executors/test_local_executor.py | 12 +-
.../tests/unit/executors/test_workloads.py | 60 +-
airflow-core/tests/unit/jobs/test_scheduler_job.py | 146 ++++-
airflow-core/tests/unit/models/test_dag_version.py | 29 +
airflow-core/tests/unit/models/test_trigger.py | 27 +
.../tests/unit/utils/log/test_file_task_handler.py | 74 +++
airflow-core/tests/unit/utils/test_db.py | 2 +
airflow-core/tests/unit/utils/test_log_handlers.py | 6 +-
.../src/airflowctl/api/datamodels/generated.py | 6 +-
airflow-ctl/src/airflowctl/api/operations.py | 40 +-
.../tests/airflow_ctl/api/test_operations.py | 16 +-
dev/breeze/doc/ci/04_selective_checks.md | 4 +
.../src/airflow_breeze/utils/selective_checks.py | 9 +
dev/breeze/tests/test_selective_checks.py | 84 ++-
dev/breeze/uv.lock | 30 +-
docs/spelling_wordlist.txt | 1 +
go-sdk/edge/worker.go | 61 +-
go-sdk/edge/worker_test.go | 107 ++++
java-sdk/.gitattributes | 4 +
LICENSE => java-sdk/LICENSE | 0
{airflow-ctl => java-sdk}/NOTICE | 2 +-
java-sdk/README.md | 147 ++++-
java-sdk/build.gradle.kts | 133 +++++
.../src/main/kotlin/airflow-publish.gradle.kts | 29 +-
java-sdk/gradle/wrapper/gradle-wrapper.properties | 1 +
java-sdk/sdk/build.gradle.kts | 76 ++-
.../sdk}/schema/schema.json | 0
providers/amazon/docs/operators/ssm.rst | 4 +-
providers/apache/kafka/docs/connections/kafka.rst | 32 +
providers/apache/kafka/docs/index.rst | 1 +
providers/apache/kafka/pyproject.toml | 3 +
.../airflow/providers/apache/kafka/hooks/base.py | 74 ++-
.../tests/unit/apache/kafka/hooks/test_base.py | 112 +++-
.../providers/celery/executors/celery_executor.py | 3 +-
.../unit/celery/executors/test_celery_executor.py | 60 +-
.../unit/cncf/kubernetes/utils/test_pod_manager.py | 55 +-
providers/fab/docs/changelog.rst | 7 +
.../fab/auth_manager/security_manager/override.py | 3 +-
.../auth_manager/security_manager/test_override.py | 32 +
.../providers/microsoft/azure/hooks/msgraph.py | 99 +++-
.../unit/microsoft/azure/hooks/test_msgraph.py | 84 +--
.../azure/tests/unit/microsoft/azure/test_utils.py | 34 +-
providers/openlineage/docs/troubleshooting.rst | 16 +
.../providers/openlineage/plugins/listener.py | 50 +-
.../unit/openlineage/plugins/test_listener.py | 48 +-
.../observability/metrics/metrics_template.yaml | 33 ++
task-sdk/src/airflow/sdk/api/client.py | 12 +-
task-sdk/src/airflow/sdk/execution_time/comms.py | 2 +
task-sdk/src/airflow/sdk/execution_time/context.py | 8 +
.../airflow/sdk/execution_time/schema/schema.json | 69 +++
.../src/airflow/sdk/execution_time/supervisor.py | 2 +
task-sdk/tests/task_sdk/api/test_client.py | 62 ++
.../tests/task_sdk/execution_time/test_context.py | 45 ++
.../task_sdk/execution_time/test_supervisor.py | 88 +++
ts-sdk/src/generated/supervisor.ts | 20 +
uv.lock | 655 +++++++++++----------
111 files changed, 3866 insertions(+), 648 deletions(-)
copy
airflow-core/src/airflow/migrations/versions/{0090_3_2_0_add_length_dag_bundle_team_bundle_name.py
=> 0124_3_4_0_add_gin_index_on_asset_event_extra.py} (57%)
create mode 100644 go-sdk/edge/worker_test.go
copy LICENSE => java-sdk/LICENSE (100%)
copy {airflow-ctl => java-sdk}/NOTICE (86%)
create mode 100644 java-sdk/build.gradle.kts
copy {task-sdk/src/airflow/sdk/execution_time =>
java-sdk/sdk}/schema/schema.json (100%)