X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;ds=sidebyside;f=NEWS;h=7a121e4b7c791fe2059f3c851645c57514413c74;hb=4499c07531787e7d0258f8384ff5e518d18b6bd6;hp=3c22293ff35cb82982b21f100c4c75b7228a2a9a;hpb=f310e349df60f18deea91f3e61971652bf8cdf58;p=notmuch diff --git a/NEWS b/NEWS index 3c22293f..7a121e4b 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,17 @@ -Notmuch 0.19~rc1 (2014-11-06) +Notmuch 0.19~rc2 (2014-11-09) ============================= +Command-Line Interface +---------------------- + +Stopped `notmuch dump` failing if someone writes to the database + + The dump command now takes the write lock when running. This + prevents other processes from writing to the database during the + dump which would cause the dump to fail. Note, if another notmuch + process already has the write lock the dump will not start, so + script callers should still check the return value. + Emacs Interface --------------- @@ -25,9 +36,39 @@ Improved `q` binding in notmuch buffers Library changes --------------- +Introduced database version 3 with support for "database features." + + Features are independent aspects of the database schema. + Representing these independently of the database version number will + let us evolve the database format faster and more incrementally, + while maintaining better forwards and backwards compatibility. + +Library users are no longer required to call `notmuch_database_upgrade` + + Previously, library users were required to call + `notmuch_database_needs_upgrade` and `notmuch_database_upgrade` + before using a writable database. Even the CLI didn't get this + right, and it is no longer required. Now, individual APIs may + return `NOTMUCH_STATUS_UPGRADE_REQUIRED` if the database format is + too out of date for that API. + +Library users can now abort an atomic section by closing the database + + Previously there was no supported way to abort an atomic section. + Callers can now simply close the database, and any outstanding + atomic section will be aborted. + Add return status to notmuch_database_close and notmuch_database_destroy +Bug fixes and performance improvements for thread linking + + The database now represents missing-but-referenced messages ("ghost + messages") similarly to how it represents regular messages. This + enables an improved thread linking algorithm that performs better + and fixes a bug that sometimes prevented notmuch from linking + messages into the same thread. + nmbug -----