Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| SHA1 Hash: | ab93c4c75576fc4357139ee930febc75ea65e48c |
|---|---|
| Date: | 2012-10-04 19:54:05 |
| User: | drh |
| Comment: | Website updates for the 3.7.14.1 release. |
Tags And Properties
- branch=trunk inherited from [b2e03e19ab]
- sym-trunk inherited from [b2e03e19ab]
Changes
Changes to pages/changes.in
37 <a href="http://www.sqlite.org/src/timeline"> 37 <a href="http://www.sqlite.org/src/timeline"> 38 http://www.sqlite.org/src/timeline</a>.</p> 38 http://www.sqlite.org/src/timeline</a>.</p> 39 } 39 } 40 hd_close_aux 40 hd_close_aux 41 hd_enable_main 1 41 hd_enable_main 1 42 } 42 } 43 } 43 } > 44 > 45 chng {2012-10-04 (3.7.14.1)} { > 46 <li>Fix a bug (ticket > 47 <a href="www.sqlite.org/src/tktview/d02e1406a58ea02d">[d02e1406a58ea02d]] > 48 that causes a segfault on a LEFT JOIN that includes an OR in the ON clause. > 49 <li>Work around a bug in the optimizer in the VisualStudio-2012 compiler that > 50 causes invalid code to be generated when compiling SQLite on ARM. > 51 <li>Fix the TCL interface so that the "nullvalue" setting is honored for > 52 TCL implementations of SQL functions. > 53 } 44 54 45 chng {2012-09-03 (3.7.14)} { 55 chng {2012-09-03 (3.7.14)} { 46 <li>Drop built-in support for OS/2. If you need to upgrade an OS/2 56 <li>Drop built-in support for OS/2. If you need to upgrade an OS/2 47 application to use this or a later version of SQLite, 57 application to use this or a later version of SQLite, 48 then add an application-defined [VFS] using the 58 then add an application-defined [VFS] using the 49 [sqlite3_vfs_register()] interface. The code removed in this release can 59 [sqlite3_vfs_register()] interface. The code removed in this release can 50 serve as a baseline for the application-defined VFS. 60 serve as a baseline for the application-defined VFS.
Changes to pages/index.in
83 83 84 </td> 84 </td> 85 <td width="20"></td><td bgcolor="#044a64" width="1"></td><td width="20"></td> 85 <td width="20"></td><td bgcolor="#044a64" width="1"></td><td width="20"></td> 86 <td valign="top"> 86 <td valign="top"> 87 <h3>Current Status</h3> 87 <h3>Current Status</h3> 88 88 89 <p><ul> 89 <p><ul> 90 <li><a href="releaselog/3_7_14.html">Version 3.7.14</a> | 90 <li><a href="releaselog/3_7_14_1.html">Version 3.7.14.1</a> 91 of SQLite is recommended for all new development. 91 of SQLite is recommended for all new development. 92 Upgrading from version 3.7.6.3, 3.7.7, 3.7.7.1, 3.7.8, 3.7.9, 3.7.11, 92 Upgrading from version 3.7.6.3, 3.7.7, 3.7.7.1, 3.7.8, 3.7.9, 3.7.11, 93 3.7.12, 3.7.12.1, or 3.7.13 is optional. 93 3.7.12, 3.7.12.1, or 3.7.13 is optional. 94 Upgrading from all other SQLite versions is recommended.</li> | 94 Upgrading from all other SQLite versions (including version 3.7.14) > 95 is recommended.</li> 95 </ul></p> 96 </ul></p> 96 97 97 <h3>Common Links</h3> 98 <h3>Common Links</h3> 98 99 99 <p><ul> 100 <p><ul> 100 <li> <a href="features.html">Features</a> </li> 101 <li> <a href="features.html">Features</a> </li> 101 <li> <a href="faq.html">Frequently Asked Questions</a> </li> 102 <li> <a href="faq.html">Frequently Asked Questions</a> </li>
Changes to pages/news.in
14 hd_puts "<h3>$date - $title</h3>" 14 hd_puts "<h3>$date - $title</h3>" 15 regsub -all "\n( *\n)+" $text "</p>\n\n<p>" txt 15 regsub -all "\n( *\n)+" $text "</p>\n\n<p>" txt 16 regsub -all {[Tt]icket #(\d+)} $txt \ 16 regsub -all {[Tt]icket #(\d+)} $txt \ 17 {<a href="http://www.sqlite.org/cvstrac/tktview?tn=\1">\0</a>} txt 17 {<a href="http://www.sqlite.org/cvstrac/tktview?tn=\1">\0</a>} txt 18 hd_resolve "<blockquote>$txt</blockquote>" 18 hd_resolve "<blockquote>$txt</blockquote>" 19 hd_puts "<hr width=\"50%\">" 19 hd_puts "<hr width=\"50%\">" 20 } 20 } > 21 > 22 newsitem {2012-Oct-04} {Release 3.7.14.1} { > 23 SQLite [version 3.7.14.1] is a patch release. Changes from the baseline > 24 version 3.7.14 are minimal and are restricted to fixing three bugs. > 25 > 26 One of the fixed bugs is a long-standing issue with the TCL interface. > 27 Another is a external compiler bug that SQLite merely works around and > 28 that only comes up if you are using the VisualStudio-2012 compiler to > 29 generate WinRT applications on ARM with optimizations enabled. The > 30 third problem is an SQLite core bug, introduced in version 3.7.14, that > 31 can cause a segfault if a query contains a LEFT JOIN that contains an OR > 32 in the ON clause. > 33 } > 34 21 35 22 newsitem {2012-Sep-03} {Release 3.7.14} { 36 newsitem {2012-Sep-03} {Release 3.7.14} { 23 SQLite [version 3.7.14] is a regularly scheduled maintenance release 37 SQLite [version 3.7.14] is a regularly scheduled maintenance release 24 of SQLite. The previous release continues to work well. Upgrading 38 of SQLite. The previous release continues to work well. Upgrading 25 is optional. 39 is optional. 26 40 27 Version 3.7.14 drops native support for OS/2. We are not aware of any 41 Version 3.7.14 drops native support for OS/2. We are not aware of any