Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Website changes in preparation for the release of 2.8.17. (CVS 2834) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
a927696ba30da39cb94ba666a10b7311 |
User & Date: | drh 2005-12-19 17:53:36.000 |
Context
2005-12-20
| ||
09:19 | Add simple tests and fixes for sqlite3_soft_heap_limit() (CVS 2837) (check-in: c2c5285442 user: danielk1977 tags: trunk) | |
2005-12-19
| ||
17:53 | Website changes in preparation for the release of 2.8.17. (CVS 2834) (check-in: a927696ba3 user: drh tags: trunk) | |
17:26 | Website changes for the release of 3.2.8. (CVS 2831) (check-in: 2f7ec117de user: drh tags: trunk) | |
Changes
Changes to www/changes.tcl.
︙ | ︙ | |||
22 23 24 25 26 27 28 29 30 31 32 33 34 35 | puts "<A NAME=\"version_$label\">" } puts "<DT><B>$date</B></DT>" puts "<DD><P><UL>$desc</UL></P></DD>" } chng {2005 December 19 (3.2.8)} { <li>Fix an obscure bug that can cause database corruption under the following unusual circumstances: A large INSERT or UPDATE statement which is part of an even larger transaction fails due to a uniqueness contraint but the containing transaction commits.</li> } chng {2005 September 24 (3.2.7)} { | > > > > > > > | 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | puts "<A NAME=\"version_$label\">" } puts "<DT><B>$date</B></DT>" puts "<DD><P><UL>$desc</UL></P></DD>" } chng {2005 December 19 (3.2.8)} { <li>Fix an obscure bug that can cause database corruption under the following unusual circumstances: A large INSERT or UPDATE statement which is part of an even larger transaction fails due to a uniqueness contraint but the containing transaction commits.</li> } chng {2005 December 19 (2.8.17)} { <li>Fix an obscure bug that can cause database corruption under the following unusual circumstances: A large INSERT or UPDATE statement which is part of an even larger transaction fails due to a uniqueness contraint but the containing transaction commits.</li> } chng {2005 September 24 (3.2.7)} { |
︙ | ︙ |
Changes to www/index.tcl.
︙ | ︙ | |||
62 63 64 65 66 67 68 | proc newsitem {date title text} { puts "<h3>$date - $title</h3>" regsub -all "\n( *\n)+" $text "</p>\n\n<p>" txt puts "<p>$txt</p>" puts "<hr width=\"50%\">" } | | | > | | 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 | proc newsitem {date title text} { puts "<h3>$date - $title</h3>" regsub -all "\n( *\n)+" $text "</p>\n\n<p>" txt puts "<p>$txt</p>" puts "<hr width=\"50%\">" } newsitem {2005-Dec-19} {Versions 3.2.8 and 2.8.17} { These versions contain one-line changes to 3.2.7 and 2.8.16 to fix a bug that has been present since March of 2002 and version 2.4.0. That bug might possibly cause database corruption if a large INSERT or UPDATE statement within a multi-statement transaction fails due to a uniqueness constraint but the containing transaction commits. } newsitem {2005-Sep-24} {Version 3.2.7} { This version fixes several minor and obscure bugs. Upgrade only if you are having problems. |
︙ | ︙ | |||
115 116 117 118 119 120 121 | } puts { <p align="right"><a href="oldnews.html">Old news...</a></p> </td></tr></table> } | | | 116 117 118 119 120 121 122 123 | } puts { <p align="right"><a href="oldnews.html">Old news...</a></p> </td></tr></table> } footer {$Id: index.tcl,v 1.128 2005/12/19 17:53:36 drh Exp $} |