Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Add a news blurb for the 3.8.4 release. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
02c3db4e289c07e2ba7e38fea937e359 |
User & Date: | drh 2014-03-08 03:21:06.519 |
Context
2014-03-10
| ||
12:23 | The 3.8.4 release. (check-in: 9ac72e3702 user: drh tags: trunk) | |
2014-03-08
| ||
03:21 | Add a news blurb for the 3.8.4 release. (check-in: 02c3db4e28 user: drh tags: trunk) | |
2014-03-06
| ||
02:12 | Update the index page and change log in anticipation for 3.8.4. (check-in: 2c81b82587 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 29 30 31 32 33 34 35 36 37 38 | set nChng 0 proc chng {date desc {options {}}} { global nChng aChng set aChng($nChng) [list $date $desc $options] incr nChng } chng {2014-03-08 (3.8.4)} { <li>Code optimization and refactoring for improved performance. <li>Add the ".clone" and ".save" commands to the command-line shell. <li>Update the banner on the command-line shell to alert novice users when they are using an ephemeral in-memory database. <li>Fix editline support in the command-line shell. <li>Add support for coverage testing of VDBE programs using the [SQLITE_TESTCTRL_VDBE_COVERAGE] verb of [sqlite3_test_control()]. <li>Update the _FILE_OFFSET_BITS macro so that builds work again on QNX. <li>Change the datatype of SrcList.nSrc from type u8 to type int to work around an issue in the C compiler on AIX. <li>Get extension loading working on Cygwin. <li>Bug fix: DISTINCT now recognizes that a [zeroblob] and a blob of all 0x00 bytes are the same thing. [http://www.sqlite.org/src/info/fccbde530a | Ticket [fccbde530a]] <li>Bug fix: Compute the correct answer for queries that contain an IS NOT NULL term in the WHERE clause and also contain an OR term in the WHERE clause and are compiled with [SQLITE_ENABLE_STAT4]. |
︙ | ︙ |
Changes to pages/news.in.
︙ | ︙ | |||
14 15 16 17 18 19 20 21 22 23 | 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 {2014-02-11} {Release 3.8.3.1} { <p>SQLite [version 3.8.3.1] fixes a bug present in versions 3.8.1, | > > > > > > > > > > > > > > > | | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | 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 {2014-03-08} {Release 3.8.4} { <p>SQLite [version 3.8.4] is a maintenance release featuring performance enhancements and fixes for a number of obscure bugs. There are no significant new features in SQLite version 3.8.4. However, the number of CPU cycles (measured by valgrind) needed to do many common operations has be reduced by about 12% relative to the previous release, and by about 25% relative to [version 3.7.16] from approximately one year ago. <p>Version 3.8.4 of SQLite fixes several corner-case bugs that were found since the previous release. These bugs were unlikely to appear in practice, and none represent a security vulnerability. Nevertheless, developers are encouraged to upgrade from all prior releases. } newsitem {2014-02-11} {Release 3.8.3.1} { <p>SQLite [version 3.8.3.1] fixes a bug present in versions 3.8.1, 3.8.2 and 3.8.3 that can cause queries to omit valid output rows. Upgrading from those versions is recommended. <p>The problem only comes up if SQLite is compiled with either the [SQLITE_ENABLE_STAT3] or [SQLITE_ENABLE_STAT4] compile-time options. In that case, if a query has a WHERE clause that contains expressions like this: <blockquote> |
︙ | ︙ |