]> git.ipfire.org Git - ipfire-2.x.git/commitdiff
sqlite: Update to version 3510000
authorAdolf Belka <adolf.belka@ipfire.org>
Thu, 6 Nov 2025 18:03:30 +0000 (19:03 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Thu, 6 Nov 2025 21:28:18 +0000 (21:28 +0000)
- Update from version 3500400 to 3510000
- Update of rootfile
- Changelog
    3510000
New macros in sqlite3.h:
    SQLITE_SCM_BRANCH → the name of the branch from which the source code is
taken.
    SQLITE_SCM_TAGS → space-separated list of tags on the source code check-in.
    SQLITE_SCM_DATETIME → ISO-8601 date and time of the source code check-in.
Two new JSON functions, jsonb_each() and jsonb_tree() work the same as the
 existing json_each() and json_tree() functions except that they return JSONB
 for the "value" column when the "type" is 'array' or 'object'.
The carray and percentile extensions are now built into the amalgamation,
though they are disabled by default and must be activated at
compile-time using the -DSQLITE_ENABLE_CARRAY and/or
-DSQLITE_ENABLE_PERCENTILE options, respectively.
Enhancements to TCL Interface:
    Add the -asdict flag to the eval command to have it set the row data as a
dict instead of an array.
    User-defined functions may now break to return an SQL NULL.
CLI enhancements:
    Increase the precision of ".timer" to microseconds.
    Enhance the "box" and "column" formatting modes to deal with double-wide
characters.
    The ".imposter" command provides read-only imposter tables that work with
VACUUM and do not require the --unsafe-testing option.
    Add the --ifexists option to the CLI command-line option and to the .open
command.
    Limit columns widths set by the ".width" command to 30,000 or less, as
there is not good reason to have wider columns, but supporting wider
columns provides opportunity to malefactors.
Performance enhancements:
    Use fewer CPU cycles to commit a read transaction.
    Early detection of joins that return no rows due to one or more of the
tables containing no rows.
    Avoid evaluation of scalar subqueries if the result of the subquery does
not change the result of the overall expression.
    Faster window function queries when using
"BETWEEN :x FOLLOWING AND :y FOLLOWING" with a large :y.
Add the PRAGMA wal_checkpoint=NOOP; command and the SQLITE_CHECKPOINT_NOOP
 argument for sqlite3_wal_checkpoint_v2().
Add the sqlite3_set_errmsg() API for use by extensions.
Add the sqlite3_db_status64() API, which works just like the existing
 sqlite3_db_status() API except that it returns 64-bit results.
Add the SQLITE_DBSTATUS_TEMPBUF_SPILL option to the sqlite3_db_status() and
 sqlite3_db_status64() interfaces.
In the session extension add the sqlite3changeset_apply_v3() interface.
For the built-in printf() and the format() SQL function, omit the leading '-'
 from negative floating point numbers if the '+' flag is omitted and the "#"
 flag is present and all displayed digits are '0'. Use '%#f' or similar to
 avoid outputs like '-0.00' and instead show just '0.00'.
Improved error messages generated by FTS5.
Enforce STRICT typing on computed columns.
Improved support for VxWorks
JavaScript/WASM now supports 64-bit WASM. The canonical builds continue to be
 32-bit but creating one's own 64-bit build is now as simple as running "make".
Improved resistance to database corruption caused by an application breaking
 Posix advisory locks using close().

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
config/rootfiles/common/sqlite
lfs/sqlite

index 1c63b682fd01c4111e965baef405e8ff544e5ede..e4fa7c19f8b7090a3d5e25fa62d874064048f621 100644 (file)
@@ -3,6 +3,6 @@ usr/bin/sqlite3
 #usr/include/sqlite3ext.h
 usr/lib/libsqlite3.so
 usr/lib/libsqlite3.so.0
-usr/lib/libsqlite3.so.3.50.4
+usr/lib/libsqlite3.so.3.51.0
 #usr/lib/pkgconfig/sqlite3.pc
 #usr/share/man/man1/sqlite3.1
index fb3554d5df485d524fa2a542a93ca31f26310e1a..3a4d49c2d3f7e8aed45456a373849208857f7f1d 100644 (file)
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 3500400
+VER        = 3510000
 
 THISAPP    = sqlite-autoconf-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = cb7b3509079a6b57dd7a0443e249b8fe6d1ff43b1bb318d07a1403a754ddbfa5d25f191405c062a5cdb872315aac78daa1e95d6687aab37e18889e21bc6d8c71
+$(DL_FILE)_BLAKE2 = 1e4f1589fa546a11bc505a0ed8c2960ba96a907854daedd116586412597855d9e454637ce9ccf8671ad1943bfdcf23c8913057f79c8baea886ce883be584dea1
 
 install : $(TARGET)