SVN: ZODB/trunk/src/CHANGES.txt Updated. :)
Jim Fulton <[email protected]>
| Newsgroups | gmane.comp.python.zope.zodb.cvs |
|---|---|
| Message-ID | <20090824181759.163B09417B__12385.8232204386$1251137890$gmane$org@cvs.zope.org> |
Log message for revision 103177: Updated. :) Changed: U ZODB/trunk/src/CHANGES.txt -=- Modified: ZODB/trunk/src/CHANGES.txt =================================================================== --- ZODB/trunk/src/CHANGES.txt 2009-08-24 18:17:56 UTC (rev 103176) +++ ZODB/trunk/src/CHANGES.txt 2009-08-24 18:17:58 UTC (rev 103177) @@ -22,6 +22,18 @@ - Objects defining _p_deactivate methods that didn't call base methods weren't loaded properly. https://bugs.launchpad.net/zodb/+bug/185066 +- When committing transactions involving blobs to ClientStorages with + non-shared blob directories, a failure could occur in tpc_finish if + there was insufficient disk space to copy the blob file or if the + file wasn't available. https://bugs.launchpad.net/zodb/+bug/224169 + +- Savepoint blob data wasn't properly isolated. If multiple + simultaneous savepoints in separate transactions modified the same + blob, data from one savepoint would overwrite data for another. + +- Savepoint blob data wasn't cleaned up after a transaction abort. + https://bugs.launchpad.net/zodb/+bug/323067 + - Opening a blob with modes 'r+' or 'a' would fail when the blob had no committed changes.