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
1 change: 1 addition & 0 deletions .github/SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
**Table of contents**

- [Apache Airflow Security](#apache-airflow-security)
- [What should be and should NOT be reported ?](#what-should-be-and-should-not-be-reported-)
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ repos:
- id: check-hooks-apply
name: Check if all hooks apply to the repository
- repo: https://github.com/thlorenz/doctoc.git
rev: d7815f1f950f8d5ec933fa4f70208bf316bb13f8 # frozen: v2.3.0
rev: 8c02ba71e7e9c5c90d85f05b676523cb8fd897c6 # frozen: v2.4.0
hooks:
- id: doctoc
name: Add TOC for Markdown and RST files
Expand Down Expand Up @@ -448,7 +448,7 @@ repos:
types_or: [python, pyi]
args: [--fix]
require_serial: true
additional_dependencies: ['ruff==0.15.9']
additional_dependencies: ['ruff==0.15.10']
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 Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ ARG PYTHON_LTO="true"
# Also use `force pip` label on your PR to swap all places we use `uv` to `pip`
ARG AIRFLOW_PIP_VERSION=26.0.1
# ARG AIRFLOW_PIP_VERSION="git+https://github.com/pypa/pip.git@main"
ARG AIRFLOW_UV_VERSION=0.11.3
ARG AIRFLOW_UV_VERSION=0.11.6
ARG AIRFLOW_USE_UV="false"
ARG AIRFLOW_IMAGE_REPOSITORY="https://github.com/apache/airflow"
ARG AIRFLOW_IMAGE_README_URL="https://raw.githubusercontent.com/apache/airflow/main/docs/docker-stack/README.md"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.ci
Original file line number Diff line number Diff line change
Expand Up @@ -1828,7 +1828,7 @@ COPY --from=scripts common.sh install_packaging_tools.sh install_additional_depe
# Also use `force pip` label on your PR to swap all places we use `uv` to `pip`
ARG AIRFLOW_PIP_VERSION=26.0.1
# ARG AIRFLOW_PIP_VERSION="git+https://github.com/pypa/pip.git@main"
ARG AIRFLOW_UV_VERSION=0.11.3
ARG AIRFLOW_UV_VERSION=0.11.6
ARG AIRFLOW_PREK_VERSION="0.3.8"

# UV_LINK_MODE=copy is needed since we are using cache mounted from the host
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.9"
pip install "ruff>=0.15.10"

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

Expand Down
1 change: 1 addition & 0 deletions dev/PROJECT_GUIDELINES.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
**Table of contents**

- [Adding a Committer or PMC Member](#adding-a-committer-or-pmc-member)
- [Airflow Improvement Proposals (AIPs)](#airflow-improvement-proposals-aips)
Expand Down
1 change: 1 addition & 0 deletions dev/breeze/doc/adr/0001-record-architecture-decisions.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
**Table of contents**

- [1. Record architecture decisions](#1-record-architecture-decisions)
- [Status](#status)
Expand Down
2 changes: 1 addition & 1 deletion dev/breeze/doc/ci/02_images.md
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ can be used for CI images:
| `ADDITIONAL_DEV_APT_DEPS` | | Additional apt dev dependencies installed in the first part of the image |
| `ADDITIONAL_DEV_APT_ENV` | | Additional env variables defined when installing dev deps |
| `AIRFLOW_PIP_VERSION` | `26.0.1` | `pip` version used. |
| `AIRFLOW_UV_VERSION` | `0.11.3` | `uv` version used. |
| `AIRFLOW_UV_VERSION` | `0.11.6` | `uv` version used. |
| `AIRFLOW_PREK_VERSION` | `0.3.8` | `prek` version used. |
| `AIRFLOW_USE_UV` | `true` | Whether to use UV for installation. |
| `PIP_PROGRESS_BAR` | `on` | Progress bar for PIP installation |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -260,10 +260,10 @@ class VersionedFile(NamedTuple):


AIRFLOW_PIP_VERSION = "26.0.1"
AIRFLOW_UV_VERSION = "0.11.3"
AIRFLOW_UV_VERSION = "0.11.6"
AIRFLOW_USE_UV = False
GITPYTHON_VERSION = "3.1.46"
RICH_VERSION = "14.3.3"
RICH_VERSION = "14.3.4"
PREK_VERSION = "0.3.8"
HATCH_VERSION = "1.16.5"
PYYAML_VERSION = "6.0.3"
Expand Down
2 changes: 1 addition & 1 deletion dev/breeze/src/airflow_breeze/global_constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@
ALLOWED_INSTALL_MYSQL_CLIENT_TYPES = ["mariadb"]

PIP_VERSION = "26.0.1"
UV_VERSION = "0.11.3"
UV_VERSION = "0.11.6"

# packages that providers docs
REGULAR_DOC_PACKAGES = [
Expand Down
Loading
Loading