Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Add news for the 3.8.11 release. Tweaks to the testing document and to the change log. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
0b7f40e93ef7596896e3c685f757d11a |
User & Date: | drh 2015-07-27 10:52:28.513 |
Context
2015-07-27
| ||
14:54 | Add the sha1sum and SQLITE_SOURCE_ID for version 3.8.11. (check-in: 77de487a96 user: dan tags: trunk) | |
10:52 | Add news for the 3.8.11 release. Tweaks to the testing document and to the change log. (check-in: 0b7f40e93e user: drh tags: trunk) | |
2015-07-24
| ||
20:37 | Update the change log for the zeroblob64() interfaces. (check-in: ea601769ef user: drh tags: trunk) | |
Changes
Changes to pages/changes.in.
︙ | ︙ | |||
14 15 16 17 18 19 20 | set nChng 0 proc chng {date desc {options {}}} { global nChng aChng set aChng($nChng) [list $date $desc $options] incr nChng } | | | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | set nChng 0 proc chng {date desc {options {}}} { global nChng aChng set aChng($nChng) [list $date $desc $options] incr nChng } chng {2015-07-28 (3.8.11)} { <li>Added the experimental [RBU] extension. Note that this extension is experimental and subject to change in incompatible ways. <li>Added the experimental [FTS5] extension. Note that this extension is experimental and subject to change in incompatible ways. <li>Added the [sqlite3_value_dup()] and [sqlite3_value_free()] interfaces. <li>Enhance the [spellfix1] extension to support [ON CONFLICT] clauses. <li>The [IS operator] is now able to drive indexes. |
︙ | ︙ |
Changes to pages/news.in.
︙ | ︙ | |||
14 15 16 17 18 19 20 21 22 23 24 25 26 27 | hd_puts "<h3>$date - $title</h3>" regsub -all "\n( *\n)+" $text "</p>\n\n<p>" txt regsub -all {[Tt]icket #(\d+)} $txt \ {<a href="http://www.sqlite.org/cvstrac/tktview?tn=\1">\0</a>} txt hd_resolve "<blockquote>$txt</blockquote>" hd_puts "<hr width=\"50%\">" } newsitem {2015-05-20} {Release 3.8.10.2} { <p>Yikes! Index corruption after a sequence of valid SQL statements! <p>It has been many years since anything like [https://www.sqlite.org/src/info/34cd55d6|this bug] has snuck into an official SQLite release. But for the pasts seven months ([version 3.8.7] through [version 3.8.10.1]) | > > > > > | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | hd_puts "<h3>$date - $title</h3>" regsub -all "\n( *\n)+" $text "</p>\n\n<p>" txt regsub -all {[Tt]icket #(\d+)} $txt \ {<a href="http://www.sqlite.org/cvstrac/tktview?tn=\1">\0</a>} txt hd_resolve "<blockquote>$txt</blockquote>" hd_puts "<hr width=\"50%\">" } newsitem {2015-07-28} {Release 3.8.11} { <p>SQLite version 3.8.10 is a regularly scheduled maintenance release. See the [version 3.8.11|change log] for details. } newsitem {2015-05-20} {Release 3.8.10.2} { <p>Yikes! Index corruption after a sequence of valid SQL statements! <p>It has been many years since anything like [https://www.sqlite.org/src/info/34cd55d6|this bug] has snuck into an official SQLite release. But for the pasts seven months ([version 3.8.7] through [version 3.8.10.1]) |
︙ | ︙ |
Changes to pages/testing.in.
︙ | ︙ | |||
393 394 395 396 397 398 399 | <p>Because of its past success, AFL became a standard part of the testing strategy for SQLite beginning with [version 3.8.10]. There are at least two instance of AFL running against SQLite continuously, 24/7/365, trying new randomly mutated inputs against SQLite at a rate of a few hundred to a few thousand per second. Both SQL statements and database files are fuzzed. Billions and billions of mutations have been tried, but AFL's | | | 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 | <p>Because of its past success, AFL became a standard part of the testing strategy for SQLite beginning with [version 3.8.10]. There are at least two instance of AFL running against SQLite continuously, 24/7/365, trying new randomly mutated inputs against SQLite at a rate of a few hundred to a few thousand per second. Both SQL statements and database files are fuzzed. Billions and billions of mutations have been tried, but AFL's instrumentation has narrowed them down to less than 50,000 test cases that cover all distinct behaviors. Newly discovered test cases are periodically captured and added to the [TCL test suite] where they can be rerun using the "make fuzztest" command. <h3>4.2 Malformed Database Files</h3> <p>There are numerous test cases that verify that SQLite is able to |
︙ | ︙ |