Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion airflow-ctl/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ dev = [
"apache-airflow-devel-common",
]
codegen = [
"datamodel-code-generator[http]==0.33.0",
"datamodel-code-generator[http]==0.41.0",
"apache-airflow-devel-common"
]

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: v2-simple-auth-manager-generated.yaml
# version: 0.33.0
# version: 0.41.0

from __future__ import annotations

Expand Down
10 changes: 5 additions & 5 deletions airflow-ctl/src/airflowctl/api/datamodels/generated.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: v2-rest-api-generated.yaml
# version: 0.33.0
# version: 0.41.0

from __future__ import annotations

Expand Down Expand Up @@ -202,8 +202,8 @@ class BulkUpdateActionBulkDAGRunBody(BaseModel):
action_on_non_existence: BulkActionNotOnExistence | None = "fail"


class TaskIds(RootModel[list]):
root: Annotated[list, Field(max_length=2, min_length=2)]
class TaskIds(RootModel[list[Any]]):
root: Annotated[list[Any], Field(max_length=2, min_length=2)]


class ClearTaskInstancesBody(BaseModel):
Expand Down Expand Up @@ -243,8 +243,8 @@ class ClearTaskInstancesBody(BaseModel):
note: Annotated[Note | None, Field(title="Note")] = None


class Value(RootModel[list]):
root: Annotated[list, Field(max_length=2, min_length=2, title="Value")]
class Value(RootModel[list[Any]]):
root: Annotated[list[Any], Field(max_length=2, min_length=2, title="Value")]


class ConfigOption(BaseModel):
Expand Down
2 changes: 1 addition & 1 deletion task-sdk/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ exclude_also = [

[dependency-groups]
codegen = [
"datamodel-code-generator[http]==0.33.0",
"datamodel-code-generator[http]==0.41.0",
"openapi-spec-validator>=0.7.1",
"svcs>=25.1.0",
"rich>=13.6.0",
Expand Down
2 changes: 1 addition & 1 deletion task-sdk/src/airflow/sdk/api/datamodels/_generated.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: http://0.0.0.0:8080/execution/openapi.json
# version: 0.33.0
# version: 0.41.0

# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
Expand Down
10 changes: 5 additions & 5 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.