Skip to content

Commit ab8ebe9

Browse files
authored
gh-151163: Update Android, macOS installer, and Windows builds to SQLite 3.53.2 (GH-151187)
1 parent 81c1cdc commit ab8ebe9

11 files changed

Lines changed: 14 additions & 13 deletions

Mac/BuildScript/build-installer.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -359,9 +359,9 @@ def library_recipes():
359359
),
360360
),
361361
dict(
362-
name="SQLite 3.53.1",
363-
url="https://www.sqlite.org/2026/sqlite-autoconf-3530100.tar.gz",
364-
checksum="83e6b2020a034e9a7ad4a72feea59e1ad52f162e09cbd26735a3ffb98359fc4f",
362+
name="SQLite 3.53.2",
363+
url="https://www.sqlite.org/2026/sqlite-autoconf-3530200.tar.gz",
364+
checksum="588ad51949419a56ebe81fe56193d510c559eb94c9a57748387860b5d3069316",
365365
extra_cflags=('-Os '
366366
'-DSQLITE_ENABLE_FTS5 '
367367
'-DSQLITE_ENABLE_FTS4 '
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Updated Android build to include SQLite version 3.53.2.

Misc/NEWS.d/next/Windows/2026-04-26-23-14-45.gh-issue-149029.oPTXP4.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Updated Windows builds to include SQLite version 3.53.2.

Misc/NEWS.d/next/macOS/2026-04-26-23-15-09.gh-issue-149029.Lsx--T.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Updated macOS installer to include SQLite version 3.53.2.

Misc/externals.spdx.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,21 +91,21 @@
9191
"checksums": [
9292
{
9393
"algorithm": "SHA256",
94-
"checksumValue": "15e8fc7dc059f7b156e53629540951c2691acd71e027f6f8f66dacab5c66c884"
94+
"checksumValue": "53f8711811090cc4d9ffc624c360f81e7b409763b145ab2e948998f1a0d6a612"
9595
}
9696
],
97-
"downloadLocation": "https://github.com/python/cpython-source-deps/archive/refs/tags/sqlite-3.53.1.0.tar.gz",
97+
"downloadLocation": "https://github.com/python/cpython-source-deps/archive/refs/tags/sqlite-3.53.2.0.tar.gz",
9898
"externalRefs": [
9999
{
100100
"referenceCategory": "SECURITY",
101-
"referenceLocator": "cpe:2.3:a:sqlite:sqlite:3.53.1.0:*:*:*:*:*:*:*",
101+
"referenceLocator": "cpe:2.3:a:sqlite:sqlite:3.53.2.0:*:*:*:*:*:*:*",
102102
"referenceType": "cpe23Type"
103103
}
104104
],
105105
"licenseConcluded": "NOASSERTION",
106106
"name": "sqlite",
107107
"primaryPackagePurpose": "SOURCE",
108-
"versionInfo": "3.53.1.0"
108+
"versionInfo": "3.53.2.0"
109109
},
110110
{
111111
"SPDXID": "SPDXRef-PACKAGE-tcl",

PCbuild/get_externals.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ set libraries=%libraries% bzip2-1.0.8
5656
if NOT "%IncludeLibffiSrc%"=="false" set libraries=%libraries% libffi-3.4.4
5757
if NOT "%IncludeSSLSrc%"=="false" set libraries=%libraries% openssl-3.5.7
5858
set libraries=%libraries% mpdecimal-4.0.0
59-
set libraries=%libraries% sqlite-3.53.1.0
59+
set libraries=%libraries% sqlite-3.53.2.0
6060
if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tcl-9.0.3.0
6161
if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tk-9.0.3.1
6262
set libraries=%libraries% xz-5.8.1.1

PCbuild/python.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
<Import Project="$(ExternalProps)" Condition="$(ExternalProps) != '' and Exists('$(ExternalProps)')" />
9999

100100
<PropertyGroup>
101-
<sqlite3Dir Condition="$(sqlite3Dir) == ''">$(ExternalsDir)sqlite-3.53.1.0\</sqlite3Dir>
101+
<sqlite3Dir Condition="$(sqlite3Dir) == ''">$(ExternalsDir)sqlite-3.53.2.0\</sqlite3Dir>
102102
<bz2Dir Condition="$(bz2Dir) == ''">$(ExternalsDir)bzip2-1.0.8\</bz2Dir>
103103
<lzmaDir Condition="$(lzmaDir) == ''">$(ExternalsDir)xz-5.8.1.1\</lzmaDir>
104104
<libffiDir Condition="$(libffiDir) == ''">$(ExternalsDir)libffi-3.4.4\</libffiDir>

PCbuild/readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ _ssl
242242
again when building.
243243

244244
_sqlite3
245-
Wraps SQLite 3.53.1, which is itself built by sqlite3.vcxproj
245+
Wraps SQLite 3.53.2, which is itself built by sqlite3.vcxproj
246246
Homepage:
247247
https://www.sqlite.org/
248248

0 commit comments

Comments
 (0)