X-Git-Url: http://git.samba.org/?a=blobdiff_plain;f=NEWS;h=5520f50e555b673e04c701300a2748148e48e73e;hb=0dac99d6243235e8221e67cc838d29fbe1c1c221;hp=fb46ee154b640d8b528e9458c4ba6c91ac607201;hpb=25df12de09a169f2a91c9b64cf4adb95e0c6ccd0;p=jelmer%2Fdulwich.git diff --git a/NEWS b/NEWS index fb46ee15..5520f50e 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,53 @@ -0.9.7 UNRELEASED +0.9.9 UNRELEASED + +0.9.8 2014-11-30 + + BUG FIXES + + * Various fixes to improve test suite running on Windows. + (Gary van der Merwe) + + * Limit delta copy length to 64K in v2 pack files. (Robert Brown) + + * Strip newline from final ACKed SHA while fetching packs. + (Michael Edgar) + + * Remove assignment to PyList_SIZE() that was causing segfaults on + pypy. (Jelmer Vernooij, #196) + + IMPROVEMENTS + + * Add porcelain 'receive-pack' and 'upload-pack'. (Jelmer Vernooij) + + * Handle SIGINT signals in bin/dulwich. (Jelmer Vernooij) + + * Add 'status' support to bin/dulwich. (Jelmer Vernooij) + + * Add 'branch_create', 'branch_list', 'branch_delete' porcelain. + (Jelmer Vernooij) + + * Add 'fetch' porcelain. (Jelmer Vernooij) + + * Add 'tag_delete' porcelain. (Jelmer Vernooij) + + * Add support for serializing/deserializing 'gpgsig' attributes in Commit. + (Jelmer Vernooij) + + CHANGES + + * dul-web is now available as 'dulwich web-daemon'. + (Jelmer Vernooij) + + * dulwich.porcelain.tag has been renamed to tag_create. + dulwich.porcelain.list_tags has been renamed to tag_list. + (Jelmer Vernooij) + + API CHANGES + + * Restore support for Python 2.6. (Jelmer Vernooij, Gary van der Merwe) + + +0.9.7 2014-06-08 BUG FIXES @@ -25,6 +74,8 @@ * Add porcelain 'status'. (Ryan Faulkner) + * Add porcelain 'daemon'. (Jelmer Vernooij) + * Add `dulwich.greenthreads` module which provides support for concurrency of some object store operations. (Fabien Boucher) @@ -38,7 +89,7 @@ API CHANGES * An optional close function can be passed to the Protocol class. This will - be called by it's close method. (Gary van der Merwe) + be called by its close method. (Gary van der Merwe) * All classes with close methods are now context managers, so that they can be easily closed using a `with` statement. (Gary van der Merwe) @@ -46,6 +97,11 @@ API CHANGES * Remove deprecated `num_objects` argument to `write_pack` methods. (Jelmer Vernooij) + OTHER CHANGES + + * The 'dul-daemon' script has been removed. The same functionality + is now available as 'dulwich daemon'. (Jelmer Vernooij) + 0.9.6 2014-04-23 IMPROVEMENTS