From 2944f82f6f30d35fe86005ca81c00d29049b7e6f Mon Sep 17 00:00:00 2001 From: Trenton Holmes <797416+stumpylog@users.noreply.github.com> Date: Thu, 11 Jun 2026 12:45:36 -0700 Subject: [PATCH] Update vendored SQLite amalgamation to 3.53.2 Bumps scripts/vendor.sh and the WASM build's SQLITE_WASM_VERSION from 3.45.3 (2024) to 3.53.2 (2026). --- Makefile | 4 ++-- scripts/vendor.sh | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 175ab169..1772bbb7 100644 --- a/Makefile +++ b/Makefile @@ -289,8 +289,8 @@ WASM_DIR=$(prefix)/.wasm $(WASM_DIR): $(prefix) mkdir -p $@ -SQLITE_WASM_VERSION=3450300 -SQLITE_WASM_YEAR=2024 +SQLITE_WASM_VERSION=3530200 +SQLITE_WASM_YEAR=2026 SQLITE_WASM_SRCZIP=$(BUILD_DIR)/sqlite-src.zip SQLITE_WASM_COMPILED_SQLITE3C=$(BUILD_DIR)/sqlite-src-$(SQLITE_WASM_VERSION)/sqlite3.c SQLITE_WASM_COMPILED_MJS=$(BUILD_DIR)/sqlite-src-$(SQLITE_WASM_VERSION)/ext/wasm/jswasm/sqlite3.mjs diff --git a/scripts/vendor.sh b/scripts/vendor.sh index 033ea1e9..0ca087a2 100755 --- a/scripts/vendor.sh +++ b/scripts/vendor.sh @@ -1,7 +1,7 @@ #!/bin/bash mkdir -p vendor -curl -o sqlite-amalgamation.zip https://www.sqlite.org/2024/sqlite-amalgamation-3450300.zip +curl -o sqlite-amalgamation.zip https://www.sqlite.org/2026/sqlite-amalgamation-3530200.zip unzip sqlite-amalgamation.zip -mv sqlite-amalgamation-3450300/* vendor/ -rmdir sqlite-amalgamation-3450300 +mv sqlite-amalgamation-3530200/* vendor/ +rmdir sqlite-amalgamation-3530200 rm sqlite-amalgamation.zip