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 .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ repos:
types_or: [python, pyi]
args: [--fix]
require_serial: true
additional_dependencies: ['ruff==0.15.10']
additional_dependencies: ['ruff==0.15.11']
exclude: ^airflow-core/tests/unit/dags/test_imports\.py$|^performance/tests/test_.*\.py$
- id: ruff-format
name: Run 'ruff format'
Expand Down
2 changes: 1 addition & 1 deletion airflow-core/docs/best-practices.rst
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ Installing and Using ruff

.. code-block:: bash

pip install "ruff>=0.15.10"
pip install "ruff>=0.15.11"

2. **Running ruff**: Execute ``ruff`` to check your Dags for potential issues:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2215,6 +2215,8 @@ components:
- text
- href
title: ExtraMenuItem
description: Define a menu item that can be added to the menu by auth managers
or plugins.
GanttResponse:
properties:
dag_id:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8125,7 +8125,8 @@ export const $ExtraMenuItem = {
},
type: 'object',
required: ['text', 'href'],
title: 'ExtraMenuItem'
title: 'ExtraMenuItem',
description: 'Define a menu item that can be added to the menu by auth managers or plugins.'
} as const;

export const $GanttResponse = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1985,6 +1985,9 @@ export type EdgeResponse = {
is_source_asset?: boolean | null;
};

/**
* Define a menu item that can be added to the menu by auth managers or plugins.
*/
export type ExtraMenuItem = {
text: string;
href: string;
Expand Down
4 changes: 2 additions & 2 deletions airflow-core/src/airflow/ui/tests/e2e/specs/xcoms.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,11 +97,11 @@ test.describe("XComs Page", () => {
await xcomsPage.verifyDagDisplayNameFiltering(testDagId);
});

test("verify sorting by key column", async ({ xcomsPage }) => {
test("verify sorting by key column", async () => {
await xcomsPage.verifySortByColumn("Key");
});

test("verify sorting by timestamp column", async ({ xcomsPage }) => {
test("verify sorting by timestamp column", async () => {
await xcomsPage.verifySortByColumn("Timestamp");
});
});
14 changes: 7 additions & 7 deletions dev/breeze/uv.lock

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

9 changes: 8 additions & 1 deletion dev/mypy/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,14 @@ Bluesky = "https://bsky.app/profile/apache-airflow.bsky.social"
YouTube = "https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/"

[build-system]
requires = ["hatchling==1.29.0"]
requires = [
"hatchling==1.29.0",
"packaging==26.1",
"pathspec==1.0.4",
"pluggy==1.6.0",
"tomli==2.4.1; python_version < '3.11'",
"trove-classifiers==2026.1.14.14",
]
build-backend = "hatchling.build"

[tool.hatch.version]
Expand Down
3 changes: 2 additions & 1 deletion devel-common/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ dependencies = [
"kgb>=7.2.0",
"requests_mock>=1.11.0",
"rich>=13.6.0",
"ruff==0.15.10",
"ruff==0.15.11",
"semver>=3.0.2",
"typer-slim>=0.15.1",
"time-machine[dateutil]>=3.0.0",
Expand Down Expand Up @@ -111,6 +111,7 @@ dependencies = [
"mypy" = [
# Mypy dependencies
# TODO: upgrade to newer versions of MyPy continuously as they are released
"apache-airflow-mypy",
"mypy==1.20.1",
"types-Deprecated>=1.2.9.20240311",
"types-Markdown>=3.6.0.20240316",
Expand Down
2 changes: 1 addition & 1 deletion scripts/ci/prek/check_imports_in_providers.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# requires-python = ">=3.10,<3.11"
# dependencies = [
# "rich>=13.6.0",
# "ruff==0.15.10",
# "ruff==0.15.11",
# ]
# ///
from __future__ import annotations
Expand Down
2 changes: 1 addition & 1 deletion scripts/ci/prek/ruff_format.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# /// script
# requires-python = ">=3.10,<3.11"
# dependencies = [
# "ruff==0.15.10",
# "ruff==0.15.11",
# ]
# ///

Expand Down
Loading
Loading