From d892d2ae49cd29b9639e73cd13017cfeef507ac7 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Thu, 8 May 2025 20:53:24 -0700 Subject: [PATCH] Fix underline length, refs #656 --- docs/changelog.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 2b38342..b47c06a 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -7,7 +7,7 @@ .. _v4_0a0: 4.0a0 (2025-05-08) ------------------ +------------------ - Upsert operations now use SQLite's ``INSERT ... ON CONFLICT SET`` syntax on all SQLite versions later than 3.23.1. This is a very slight breaking change for apps that depend on the previous ``INSERT OR IGNORE`` followed by ``UPDATE`` behavior. (:issue:`652`) - Python library users can opt-in to the previous implementation by passing ``use_old_upsert=True`` to the ``Database()`` constructor, see :ref:`python_api_old_upsert`.