diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-19 04:07:40 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-19 04:07:40 +0000 |
commit | 9d2c15192c890a8876bcb9a2ef918756d03718b6 (patch) | |
tree | 8340f6a53cda0ba296d162c8c8d767086a337ff9 /www/changes.html | |
parent | Adding upstream version 3.46.0. (diff) | |
download | sqlite3-upstream.tar.xz sqlite3-upstream.zip |
Adding upstream version 3.46.1.upstream/3.46.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'www/changes.html')
-rw-r--r-- | www/changes.html | 31 |
1 files changed, 30 insertions, 1 deletions
diff --git a/www/changes.html b/www/changes.html index f7954ca..35f73a4 100644 --- a/www/changes.html +++ b/www/changes.html @@ -129,6 +129,35 @@ https://www.sqlite.org/src/timeline?t=release</a>. See the <a href="chronology.html">chronology</a> a succinct listing of releases. </p> +<a name="version_3_46_1"></a> +<h3>2024-08-13 (3.46.1)</h3><p><ol class='lessindent'> +<li> Improved robustness while parsing the <a href="fts5.html#tokenizers">tokenize= arguments</a> in <a href="fts5.html">FTS5</a>. + <a href="https://sqlite.org/forum/forumpost/171bcc2bcd">Forum post 171bcc2bcd</a>. +<li> Enhancements to <a href="queryplanner.html#covidx">covering index</a> prediction in the query planner. + Add early detection of over-prediction of covering indexes so that + <a href="c3ref/prepare.html">sqlite3_prepare()</a> will return an error rather than just generate bad bytecode. + <a href="https://sqlite.org/forum/forumpost/e60e4c295d22f8ce">Forum post e60e4c295d22f8ce</a>. +<li> Do not let the number of terms on a <a href="lang_select.html#values">VALUES clause</a> be limited by + <a href="c3ref/c_limit_attached.html#sqlitelimitcompoundselect">SQLITE_LIMIT_COMPOUND_SELECT</a>, even if the VALUES clause contains + elements that appear to be variables due to + <a href="quirks.html#dblquote">double-quoted string literals</a>. +<li> Fix the <a href="windowfunctions.html">window function</a> version of <a href="lang_aggfunc.html#group_concat">group_concat()</a> so that it returns + an empty string if it has one or more empty string inputs. +<li> In <a href="fts5.html#the_secure_delete_configuration_option">FTS5 secure-delete mode</a>, fix false-positive + integrity-check reports about corrupt indexes. +<li> Syntax errors in <a href="lang_altertable.html">ALTER TABLE</a> should always return <a href="rescode.html#error">SQLITE_ERROR</a>. In + some cases, they were formerly returning <a href="rescode.html#internal">SQLITE_INTERNAL</a>. +<li> JavaScript/WASM: + <ol type="a"> + <li> Fix a corruption-causing bug in the JavaScript "opfs" VFS. + <li> Work around a couple of browser-specific OPFS quirks. + </ol> +<li> Other minor fixes. +<p><b>Hashes:</b> +<li>SQLITE_SOURCE_ID: 2024-08-13 09:16:08 c9c2ab54ba1f5f46360f1b4f35d849cd3f080e6fc2b6c60e91b16c63f69a1e33 +<li>SHA3-256 for sqlite3.c: 186a1baa476b6d546de155160ca6d30ff7b7e6ee375f0bb6445e1a3d180a7dad + +</ol></p> <a name="version_3_46_0"></a> <h3>2024-05-23 (3.46.0)</h3><p><ol class='lessindent'> <li> Enhance <a href="pragma.html#pragma_optimize">PRAGMA optimize</a> in multiple ways, to make it @@ -345,7 +374,7 @@ See the <a href="chronology.html">chronology</a> a succinct listing of releases. by <a href="pragma.html#pragma_integrity_check">PRAGMA integrity_check</a>. <li> <a href="compile.html#use_seh">SQLITE_USE_SEH</a> (Structured Exception Handling) is now enabled by default whenever SQLite is built using the Microsoft C compiler. It can be disabled using - -DSQLITE_USE_SEH=0 + -D<a href="compile.html#omit_seh">SQLITE_OMIT_SEH</a>. <li> Query planner optimizations: <ol type="a"> <li> In partial index scans, if the WHERE clause implies a constant value for a table |