From 53b1787dfca348f0549661dd21d252941251d41a Mon Sep 17 00:00:00 2001 From: Amitesh Gupta Date: Sat, 11 Jul 2026 15:25:49 +0530 Subject: [PATCH 1/2] fix: Fixed the stale docs.sqlalchemy.org/en/14 pooling link in Addresses #69164. --- airflow-core/newsfragments/69164.doc.rst | 1 + airflow-core/src/airflow/config_templates/config.yml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 airflow-core/newsfragments/69164.doc.rst diff --git a/airflow-core/newsfragments/69164.doc.rst b/airflow-core/newsfragments/69164.doc.rst new file mode 100644 index 0000000000000..c705a6283f939 --- /dev/null +++ b/airflow-core/newsfragments/69164.doc.rst @@ -0,0 +1 @@ +Updated the ``sql_alchemy_pool_pre_ping`` configuration description to link to the SQLAlchemy 2.0 documentation instead of the outdated 1.4 docs. diff --git a/airflow-core/src/airflow/config_templates/config.yml b/airflow-core/src/airflow/config_templates/config.yml index 545cded21d71d..af11f9fe701d1 100644 --- a/airflow-core/src/airflow/config_templates/config.yml +++ b/airflow-core/src/airflow/config_templates/config.yml @@ -683,7 +683,7 @@ database: Check connection at the start of each connection pool checkout. Typically, this is a simple statement like "SELECT 1". See `SQLAlchemy Pooling: Disconnect Handling - Pessimistic - `__ + `__ for more details. version_added: 2.3.0 type: boolean From 3562ef1d27387a6086cf8d8a70e6bc60ca496c65 Mon Sep 17 00:00:00 2001 From: Amitesh Gupta Date: Sat, 11 Jul 2026 20:32:56 +0530 Subject: [PATCH 2/2] fix: address review feedback on PR #69751 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removed the newsfragment and corrected the PR title/description per reviewer feedback, leaving only the config.yml en/14→en/20 link fix in the working tree for the orchestrator to commit. --- airflow-core/newsfragments/69164.doc.rst | 1 - 1 file changed, 1 deletion(-) delete mode 100644 airflow-core/newsfragments/69164.doc.rst diff --git a/airflow-core/newsfragments/69164.doc.rst b/airflow-core/newsfragments/69164.doc.rst deleted file mode 100644 index c705a6283f939..0000000000000 --- a/airflow-core/newsfragments/69164.doc.rst +++ /dev/null @@ -1 +0,0 @@ -Updated the ``sql_alchemy_pool_pre_ping`` configuration description to link to the SQLAlchemy 2.0 documentation instead of the outdated 1.4 docs.