Skip to content

Commit f913a83

Browse files
authored
Merge pull request #50 from jlmjanssen/release/v3.48.0
Release/v3.48.0
2 parents 4de0abe + 877a1e9 commit f913a83

File tree

5 files changed

+1787
-853
lines changed

5 files changed

+1787
-853
lines changed

source/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Changelog
22

3+
## SQLite Release 3.48.0 On 2025-01-14
4+
5+
1. Refactor the "configure" script used to help build SQLite from canonical sources, to fix bugs, improve performance, and make the code more maintainable.
6+
* This does not affect the "configure" script in the sqlite3-autoconf-NNNNNNN.tar.gz "amalgamation tarball", only the canonical sources. The build system for the amalgamation tarball is unchanged. If you are using the amalgamation tarball, nothing about this change log entry applies to you.
7+
* The key innovation here is that Autosetup is now used instead of GNU Autoconf. That seems like a big change, but it is really just an implementation detail. The ./configure script is coded very differently, but should work the same as before.
8+
* One advantage of the new configure is that you no longer need to install TCL in order to build most SQLite targets. TCL is still required to run tests or to build accessory programs (like sqlite3_analyzer) that use TCL, but it is not required for most common targets. Hence, as of this release, the only build dependencies are a C compiler and "make" or "nmake".
9+
2. Improved EXPLAIN QUERY PLAN output for covering indexes.
10+
3. Allow a two-argument version of the iif() SQL function. Also allow if() as an alternative spelling for iif().
11+
4. Add the ".dbtotxt" command to the CLI.
12+
5. Add the SQLITE_IOCAP_SUBPAGE_READ property to the xDeviceCharacteristics method of the sqlite3_io_methods object.
13+
6. Add the SQLITE_PREPARE_DONT_LOG option to sqlite3_prepare_v3() that prevents warning messages being sent to the error log if the SQL is ill-formed. This allows sqlite3_prepare_v3() to be used to do test compiles of SQL to check for validity without polluting the error log with false messages.
14+
7. Increase the minimum allowed value of SQLITE_LIMIT_LENGTH from 1 to 30.
15+
8. Added the SQLITE_FCNTL_NULL_IO file control.
16+
9. Extend the FTS5 auxiliary API xInstToken() to work with prefix queries via the insttoken configuration option and the fts5_insttoken() SQL function.
17+
10. Increase the maximum number of arguments to an SQL function from 127 to 1000.
18+
11. Remove vestigial traces of SQLITE_USER_AUTHENTICATION.
19+
12. Various obscure bug fixes.
20+
321
## SQLite Release 3.47.2 On 2024-12-07
422

523
1. Fix a problem in text-to-floating-point conversion for SQLite that can cause values between '1.8446744073709550592eNNN' and '1.8446744073709551609eNNN' for any exponent NNN to be rendered incorrectly. In other words, some numeric text values where the first 16 significant digits are '1844674407370955' might be converted into the wrong floating-point value. See forum thread 569a7209179a7f5e. This problem only arises on x64 and i386 hardware. The problem was introduced in 3.47.0.

source/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
Download: https://sqlite.org/2024/sqlite-amalgamation-3470200.zip
1+
Download: https://sqlite.org/2025/sqlite-amalgamation-3480000.zip
22

33
```
4-
Archive: sqlite-amalgamation-3470200.zip
4+
Archive: sqlite-amalgamation-3480000.zip
55
Length Method Size Cmpr Date Time CRC-32 Name
66
-------- ------ ------- ---- ---------- ----- -------- ----
7-
0 Stored 0 0% 2024-12-07 21:57 00000000 sqlite-amalgamation-3470200/
8-
9195458 Defl:N 2368505 74% 2024-12-07 21:57 d4f520a7 sqlite-amalgamation-3470200/sqlite3.c
9-
1044214 Defl:N 267040 74% 2024-12-07 21:57 24f3c07f sqlite-amalgamation-3470200/shell.c
10-
651186 Defl:N 168328 74% 2024-12-07 21:57 b4edf4b4 sqlite-amalgamation-3470200/sqlite3.h
11-
38149 Defl:N 6615 83% 2024-12-07 21:57 c5ea7fc8 sqlite-amalgamation-3470200/sqlite3ext.h
7+
0 Stored 0 0% 2025-01-14 12:22 00000000 sqlite-amalgamation-3480000/
8+
9215145 Defl:N 2374125 74% 2025-01-14 12:22 2ab2f383 sqlite-amalgamation-3480000/sqlite3.c
9+
1055648 Defl:N 269788 74% 2025-01-14 12:22 153c494b sqlite-amalgamation-3480000/shell.c
10+
653276 Defl:N 168945 74% 2025-01-14 12:22 addf6ccf sqlite-amalgamation-3480000/sqlite3.h
11+
38149 Defl:N 6615 83% 2025-01-14 12:22 c5ea7fc8 sqlite-amalgamation-3480000/sqlite3ext.h
1212
-------- ------- --- -------
13-
10929007 2810488 74% 5 files
13+
10962218 2819473 74% 5 files
1414
```

0 commit comments

Comments
 (0)