From 8c1c1614ada15f40c0d8dad52939f1857adb0d2e Mon Sep 17 00:00:00 2001 From: Rudi Heitbaum Date: Tue, 12 Mar 2024 20:46:53 +0000 Subject: [PATCH] sqlite: update to 3.45.2 release notes: - https://www.sqlite.org/releaselog/3_45_2.html Changes in this specific patch release, version 3.45.2 (2024-03-12): - Fix an error in UPSERT, introduced by enhancement 3a in version 3.35.0 (2021-03-12), that could cause an index to get out-of-sync with its table. Forum thread 919c6579c8. - Reduce the scope of the NOT NULL strength reduction optimization that was added as item 8e in version 3.35.0 (2021-03-12). The optimization was being attempted in some contexts where it did not work, resulting in incorrect query results. Forum thread 440f2a2f17. - Other trifling corrections and compiler warning fixes that have come up since the previous patch release. See the timeline for details. --- packages/databases/sqlite/package.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/databases/sqlite/package.mk b/packages/databases/sqlite/package.mk index 725a051dcf..434644e1fa 100644 --- a/packages/databases/sqlite/package.mk +++ b/packages/databases/sqlite/package.mk @@ -3,9 +3,9 @@ # Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv) PKG_NAME="sqlite" -PKG_VERSION="3.45.1" +PKG_VERSION="3.45.2" PKG_VERSION_SQLITE="${PKG_VERSION/./}00" -PKG_SHA256="cd9c27841b7a5932c9897651e20b86c701dd740556989b01ca596fcfa3d49a0a" +PKG_SHA256="bc9067442eedf3dd39989b5c5cfbfff37ae66cc9c99274e0c3052dc4d4a8f6ae" PKG_LICENSE="PublicDomain" PKG_SITE="https://www.sqlite.org/" PKG_URL="https://www.sqlite.org/2024/${PKG_NAME}-autoconf-${PKG_VERSION_SQLITE/./0}.tar.gz"