5 * In dulwich.index.build_index_from_tree, by default
6 refuse to create entries that start with .git/.
8 * Fix running of testsuite when installed.
9 (Jelmer Vernooij, #223)
11 * Use a block cache in _find_content_rename_candidates(),
12 improving performance. (Mike Williams)
14 * Add support for ``core.protectNTFS`` setting.
17 * Fix TypeError when fetching empty updates.
20 * Resolve delta refs when pulling into a MemoryRepo.
23 * Fix handling of tags of non-commits in missing object finder.
26 * Explicitly disable mmap on plan9 where it doesn't work.
31 * New public method `Repo.reset_index`. (Jelmer Vernooij)
33 * Prevent duplicate parsing of loose files in objects
34 directory when reading. Thanks to David Keijser for the
35 report. (Jelmer Vernooij, #231)
41 * Fix buffer overflow in C implementation of pack apply_delta().
44 Thanks to Ivan Fratric of the Google Security Team for
52 * Various fixes to improve test suite running on Windows.
55 * Limit delta copy length to 64K in v2 pack files. (Robert Brown)
57 * Strip newline from final ACKed SHA while fetching packs.
60 * Remove assignment to PyList_SIZE() that was causing segfaults on
61 pypy. (Jelmer Vernooij, #196)
65 * Add porcelain 'receive-pack' and 'upload-pack'. (Jelmer Vernooij)
67 * Handle SIGINT signals in bin/dulwich. (Jelmer Vernooij)
69 * Add 'status' support to bin/dulwich. (Jelmer Vernooij)
71 * Add 'branch_create', 'branch_list', 'branch_delete' porcelain.
74 * Add 'fetch' porcelain. (Jelmer Vernooij)
76 * Add 'tag_delete' porcelain. (Jelmer Vernooij)
78 * Add support for serializing/deserializing 'gpgsig' attributes in Commit.
83 * dul-web is now available as 'dulwich web-daemon'.
86 * dulwich.porcelain.tag has been renamed to tag_create.
87 dulwich.porcelain.list_tags has been renamed to tag_list.
92 * Restore support for Python 2.6. (Jelmer Vernooij, Gary van der Merwe)
99 * Fix tests dependent on hash ordering. (Michael Edgar)
101 * Support staging symbolic links in Repo.stage.
104 * Ensure that all files object are closed when running the test suite.
107 * When writing OFS_DELTA pack entries, write correct offset.
110 * Fix handler of larger copy operations in packs. (Augie Fackler)
112 * Various fixes to improve test suite running on Windows.
115 * Fix logic for extra adds of identical files in rename detector.
120 * Add porcelain 'status'. (Ryan Faulkner)
122 * Add porcelain 'daemon'. (Jelmer Vernooij)
124 * Add `dulwich.greenthreads` module which provides support
125 for concurrency of some object store operations.
128 * Various changes to improve compatibility with Python 3.
129 (Gary van der Merwe, Hannu Valtonen, michael-k)
131 * Add OpenStack Swift backed repository implementation
132 in dulwich.contrib. See README.swift for details. (Fabien Boucher)
136 * An optional close function can be passed to the Protocol class. This will
137 be called by its close method. (Gary van der Merwe)
139 * All classes with close methods are now context managers, so that they can
140 be easily closed using a `with` statement. (Gary van der Merwe)
142 * Remove deprecated `num_objects` argument to `write_pack` methods.
147 * The 'dul-daemon' script has been removed. The same functionality
148 is now available as 'dulwich daemon'. (Jelmer Vernooij)
154 * Add support for recursive add in 'git add'.
155 (Ryan Faulkner, Jelmer Vernooij)
157 * Add porcelain 'list_tags'. (Ryan Faulkner)
159 * Add porcelain 'push'. (Ryan Faulkner)
161 * Add porcelain 'pull'. (Ryan Faulkner)
163 * Support 'http.proxy' in HttpGitClient.
164 (Jelmer Vernooij, #1096030)
166 * Support 'http.useragent' in HttpGitClient.
169 * In server, wait for clients to send empty list of
170 wants when talking to empty repository.
173 * Various changes to improve compatibility with
174 Python 3. (Gary van der Merwe)
178 * Support unseekable 'wsgi.input' streams.
181 * Raise TypeError when passing unicode() object
185 * Fix handling of `reset` command in dulwich.fastexport.
186 (Jelmer Vernooij, #1249029)
188 * In client, don't wait for server to close connection
189 first. Fixes hang when used against GitHub
190 server implementation. (Siddharth Agarwal)
192 * DeltaChainIterator: fix a corner case where an object is inflated as an
193 object already in the repository.
194 (Damien Tournoud, #135)
196 * Stop leaking file handles during pack reload. (Damien Tournoud)
198 * Avoid reopening packs during pack cache reload. (Jelmer Vernooij)
202 * Drop support for Python 2.6. (Jelmer Vernooij)
208 * Add porcelain 'tag'. (Ryan Faulkner)
210 * New module `dulwich.objectspec` for parsing strings referencing
211 objects and commit ranges. (Jelmer Vernooij)
213 * Add shallow branch support. (milki)
215 * Allow passing urllib2 `opener` into HttpGitClient.
216 (Dov Feldstern, #909037)
220 * Drop support for Python 2.4 and 2.5. (Jelmer Vernooij)
224 * Remove long deprecated ``Repo.commit``, ``Repo.get_blob``,
225 ``Repo.tree`` and ``Repo.tag``. (Jelmer Vernooij)
227 * Remove long deprecated ``Repo.revision_history`` and ``Repo.ref``.
230 * Remove long deprecated ``Tree.entries``. (Jelmer Vernooij)
234 * Raise KeyError rather than TypeError when passing in
235 unicode object of length 20 or 40 to Repo.__getitem__.
238 * Use 'rm' rather than 'unlink' in tests, since the latter
239 does not exist on OpenBSD and other platforms.
240 (Dmitrij D. Czarkoff)
246 * Add ssh_kwargs attribute to ParamikoSSHVendor. (milki)
248 * Add Repo.set_description(). (Víðir Valberg Guðmundsson)
250 * Add a basic `dulwich.porcelain` module. (Jelmer Vernooij, Marcin Kuzminski)
252 * Various performance improvements for object access.
255 * New function `get_transport_and_path_from_url`,
256 similar to `get_transport_and_path` but only
260 * Add support for file:// URLs in `get_transport_and_path_from_url`.
263 * Add LocalGitClient implementation.
268 * Support filesystems with 64bit inode and device numbers.
273 * Ref handling has been moved to dulwich.refs.
278 * Remove long deprecated RefsContainer.set_ref().
281 * Repo.ref() is now deprecated in favour of Repo.refs[].
286 * Add support for graftpoints. (milki)
292 * Fix path for stdint.h in MANIFEST.in. (Jelmer Vernooij)
298 * Include stdint.h in MANIFEST.in (Mark Mikofski)
304 * Support lookups of 40-character refs in BaseRepo.__getitem__. (Chow Loong Jin, Jelmer Vernooij)
306 * Fix fetching packs with side-band-64k capability disabled. (David Keijser, Jelmer Vernooij)
308 * Several fixes in send-pack protocol behaviour - handling of empty pack files and deletes.
311 * Fix capability negotiation when fetching packs over HTTP.
312 (#1072461, William Grant)
314 * Enforce determine_wants returning an empty list rather than None. (Fabien Boucher, Jelmer Vernooij)
316 * In the server, support pushes just removing refs. (Fabien Boucher, Jelmer Vernooij)
320 * Support passing a single revision to BaseRepo.get_walker() rather than a list of revisions.
323 * Add `Repo.get_description` method. (Jelmer Vernooij)
325 * Support thin packs in Pack.iterobjects() and Pack.get_raw().
328 * Add `MemoryObjectStore.add_pack` and `MemoryObjectStore.add_thin_pack` methods.
331 * Add paramiko-based SSH vendor. (Aaron O'Mullan)
333 * Support running 'dulwich.server' and 'dulwich.web' using 'python -m'.
336 * Add ObjectStore.close(). (Jelmer Vernooij)
338 * Raise appropriate NotImplementedError when encountering dumb HTTP servers.
343 * SSHVendor.connect_ssh has been renamed to SSHVendor.run_command.
346 * ObjectStore.add_pack() now returns a 3-tuple. The last element will be an
347 abort() method that can be used to cancel the pack operation.
354 * Push efficiency - report missing objects only. (#562676, Artem Tikhomirov)
356 * Use indentation consistent with C Git in config files.
357 (#1031356, Curt Moore, Jelmer Vernooij)
359 * Recognize and skip binary files in diff function.
362 * Fix handling of relative paths in dulwich.client.get_transport_and_path.
363 (Brian Visel, #1169368)
365 * Preserve ordering of entries in configuration.
368 * Support ~ expansion in SSH client paths. (milki, #1083439)
370 * Support relative paths in alternate paths.
371 (milki, Michel Lespinasse, #1175007)
373 * Log all error messages from wsgiref server to the logging module. This
374 makes the test suit quiet again. (Gary van der Merwe)
376 * Support passing None for empty tree in changes_from_tree.
379 * Support fetching empty repository in client. (milki, #1060462)
383 * Add optional honor_filemode flag to build_index_from_tree.
386 * Support core/filemode setting when building trees. (Jelmer Vernooij)
388 * Add chapter on tags in tutorial. (Ryan Faulkner)
392 * Add support for mergetags. (milki, #963525)
394 * Add support for posix shell hooks. (milki)
400 * Fix use of alternates in ``DiskObjectStore``.{__contains__,__iter__}.
403 * Fix compatibility with Python 2.4. (David Carr)
409 * dulwich.__init__ no longer imports client, protocol, repo and
410 server modules. (Jelmer Vernooij)
414 * ConfigDict now behaves more like a dictionary.
415 (Adam 'Cezar' Jenkins, issue #58)
417 * HTTPGitApplication now takes an optional
418 `fallback_app` argument. (Jonas Haag, issue #67)
420 * Support for large pack index files. (Jameson Nash)
424 * Make index entry tests a little bit less strict, to cope with
425 slightly different behaviour on various platforms.
428 * ``setup.py test`` (available when setuptools is installed) now
429 runs all tests, not just the basic unit tests.
434 * Commit._deserialize now actually deserializes the current state rather than
435 the previous one. (Yifan Zhang, issue #59)
437 * Handle None elements in lists of TreeChange objects. (Alex Holmes)
439 * Support cloning repositories without HEAD set.
440 (D-Key, Jelmer Vernooij, issue #69)
442 * Support ``MemoryRepo.get_config``. (Jelmer Vernooij)
444 * In ``get_transport_and_path``, pass extra keyword arguments on to
445 HttpGitClient. (Jelmer Vernooij)
451 * Avoid use of 'with' in dulwich.index. (Jelmer Vernooij)
453 * Be a little bit strict about OS behaviour in index tests.
454 Should fix the tests on Debian GNU/kFreeBSD. (Jelmer Vernooij)
460 * Options on the same line as sections in config files are now supported.
461 (Jelmer Vernooij, #920553)
463 * Only negotiate capabilities that are also supported by the server.
464 (Rod Cloutier, Risto Kankkunen)
466 * Fix parsing of invalid timezone offsets with two minus signs.
467 (Jason R. Coombs, #697828)
469 * Reset environment variables during tests, to avoid
470 test isolation leaks reading ~/.gitconfig. (Risto Kankkunen)
474 * $HOME is now explicitly specified for tests that use it to read
475 ``~/.gitconfig``, to prevent test isolation issues.
476 (Jelmer Vernooij, #920330)
480 * Additional arguments to get_transport_and_path are now passed
481 on to the constructor of the transport. (Sam Vilain)
483 * The WSGI server now transparently handles when a git client submits data
484 using Content-Encoding: gzip.
485 (David Blewett, Jelmer Vernooij)
487 * Add dulwich.index.build_index_from_tree(). (milki)
493 * The config parser now supports the git-config file format as
494 described in git-config(1) and can write git config files.
495 (Jelmer Vernooij, #531092, #768687)
497 * ``Repo.do_commit`` will now use the user identity from
498 .git/config or ~/.gitconfig if none was explicitly specified.
503 * Allow ``determine_wants`` methods to include the zero sha in their
504 return value. (Jelmer Vernooij)
510 * Cope with different zlib buffer sizes in sha1 file parser.
513 * Fix get_transport_and_path for HTTP/HTTPS URLs.
516 * Avoid calling free_objects() on NULL in error cases. (Chris Eberle)
518 * Fix use --bare argument to 'dulwich init'. (Chris Eberle)
520 * Properly abort connections when the determine_wants function
521 raises an exception. (Jelmer Vernooij, #856769)
523 * Tweak xcodebuild hack to deal with more error output.
524 (Jelmer Vernooij, #903840)
528 * Add support for retrieving tarballs from remote servers.
529 (Jelmer Vernooij, #379087)
531 * New method ``update_server_info`` which generates data
532 for dumb server access. (Jelmer Vernooij, #731235)
538 * Repo.do_commit has a new argument 'ref'.
540 * Repo.do_commit has a new argument 'merge_heads'. (Jelmer Vernooij)
542 * New ``Repo.get_walker`` method. (Jelmer Vernooij)
544 * New ``Repo.clone`` method. (Jelmer Vernooij, #725369)
546 * ``GitClient.send_pack`` now supports the 'side-band-64k' capability.
549 * ``HttpGitClient`` which supports the smart server protocol over
550 HTTP. "dumb" access is not yet supported. (Jelmer Vernooij, #373688)
552 * Add basic support for alternates. (Jelmer Vernooij, #810429)
556 * unittest2 or python >= 2.7 is now required for the testsuite.
557 testtools is no longer supported. (Jelmer Vernooij, #830713)
561 * Fix compilation with older versions of MSVC. (Martin gz)
563 * Special case 'refs/stash' as a valid ref. (Jelmer Vernooij, #695577)
565 * Smart protocol clients can now change refs even if they are
566 not uploading new data. (Jelmer Vernooij, #855993)
568 * Don't compile C extensions when running in pypy.
569 (Ronny Pfannschmidt, #881546)
571 * Use different name for strnlen replacement function to avoid clashing
572 with system strnlen. (Jelmer Vernooij, #880362)
576 * ``Repo.revision_history`` is now deprecated in favor of ``Repo.get_walker``.
583 * New DeltaChainIterator abstract class for quickly iterating all objects in
584 a pack, with implementations for pack indexing and inflation.
587 * New walk module with a Walker class for customizable commit walking.
590 * New tree_changes_for_merge function in diff_tree. (Dave Borowitz)
592 * Easy rename detection in RenameDetector even without find_copies_harder.
597 * Avoid storing all objects in memory when writing pack.
598 (Jelmer Vernooij, #813268)
600 * Support IPv6 for git:// connections. (Jelmer Vernooij, #801543)
602 * Improve performance of Repo.revision_history(). (Timo Schmid, #535118)
604 * Fix use of SubprocessWrapper on Windows. (Paulo Madeira, #670035)
606 * Fix compilation on newer versions of Mac OS X (Lion and up). (Ryan McKern, #794543)
608 * Prevent raising ValueError for correct refs in RefContainer.__delitem__.
610 * Correctly return a tuple from MemoryObjectStore.get_raw. (Dave Borowitz)
612 * Fix a bug in reading the pack checksum when there are fewer than 20 bytes
613 left in the buffer. (Dave Borowitz)
615 * Support ~ in git:// URL paths. (Jelmer Vernooij, #813555)
617 * Make ShaFile.__eq__ work when other is not a ShaFile. (Dave Borowitz)
619 * ObjectStore.get_graph_walker() now no longer yields the same
620 revision more than once. This has a significant improvement for
621 performance when wide revision graphs are involved.
622 (Jelmer Vernooij, #818168)
624 * Teach ReceivePackHandler how to read empty packs. (Dave Borowitz)
626 * Don't send a pack with duplicates of the same object. (Dave Borowitz)
628 * Teach the server how to serve a clone of an empty repo. (Dave Borowitz)
630 * Correctly advertise capabilities during receive-pack. (Dave Borowitz)
632 * Fix add/add and add/rename conflicts in tree_changes_for_merge.
635 * Use correct MIME types in web server. (Dave Borowitz)
639 * write_pack no longer takes the num_objects argument and requires an object
640 to be passed in that is iterable (rather than an iterator) and that
641 provides __len__. (Jelmer Vernooij)
643 * write_pack_data has been renamed to write_pack_objects and no longer takes a
644 num_objects argument. (Jelmer Vernooij)
646 * take_msb_bytes, read_zlib_chunks, unpack_objects, and
647 PackStreamReader.read_objects now take an additional argument indicating a
648 crc32 to compute. (Dave Borowitz)
650 * PackObjectIterator was removed; its functionality is still exposed by
651 PackData.iterobjects. (Dave Borowitz)
653 * Add a sha arg to write_pack_object to incrementally compute a SHA.
656 * Include offset in PackStreamReader results. (Dave Borowitz)
658 * Move PackStreamReader from server to pack. (Dave Borowitz)
660 * Extract a check_length_and_checksum, compute_file_sha, and
661 pack_object_header pack helper functions. (Dave Borowitz)
663 * Extract a compute_file_sha function. (Dave Borowitz)
665 * Remove move_in_thin_pack as a separate method; add_thin_pack now completes
666 the thin pack and moves it in in one step. Remove ThinPackData as well.
669 * Custom buffer size in read_zlib_chunks. (Dave Borowitz)
671 * New UnpackedObject data class that replaces ad-hoc tuples in the return
672 value of unpack_object and various DeltaChainIterator methods.
675 * Add a lookup_path convenience method to Tree. (Dave Borowitz)
677 * Optionally create RenameDetectors without passing in tree SHAs.
680 * Optionally include unchanged entries in RenameDetectors. (Dave Borowitz)
682 * Optionally pass a RenameDetector to tree_changes. (Dave Borowitz)
684 * Optionally pass a request object through to server handlers. (Dave Borowitz)
688 * If setuptools is installed, "python setup.py test" will now run the testsuite.
691 * Add a new build_pack test utility for building packs from a simple spec.
694 * Add a new build_commit_graph test utility for building commits from a
695 simple spec. (Dave Borowitz)
701 * Fix double decref in _diff_tree.c. (Ted Horst, #715528)
703 * Fix the build on Windows. (Pascal Quantin)
705 * Fix get_transport_and_path compatibility with pre-2.6.5 versions of Python.
706 (Max Bowsher, #707438)
708 * BaseObjectStore.determine_wants_all no longer breaks on zero SHAs.
711 * write_tree_diff() now supports submodules.
714 * Fix compilation for XCode 4 and older versions of distutils.sysconfig.
719 * Sphinxified documentation. (Lukasz Balcerzak)
721 * Add Pack.keep.(Marc Brinkmann)
725 * The order of the parameters to Tree.add(name, mode, sha) has changed, and
726 is now consistent with the rest of Dulwich. Existing code will still
727 work but print a DeprecationWarning. (Jelmer Vernooij, #663550)
729 * Tree.entries() is now deprecated in favour of Tree.items() and
730 Tree.iteritems(). (Jelmer Vernooij)
736 * New `dulwich.diff_tree` module for simple content-based rename detection.
739 * Add Tree.items(). (Jelmer Vernooij)
741 * Add eof() and unread_pkt_line() methods to Protocol. (Dave Borowitz)
743 * Add write_tree_diff(). (Jelmer Vernooij)
745 * Add `serve_command` function for git server commands as executables.
748 * dulwich.client.get_transport_and_path now supports rsync-style repository URLs.
749 (Dave Borowitz, #568493)
753 * Correct short-circuiting operation for no-op fetches in the server.
756 * Support parsing git mbox patches without a version tail, as generated by
757 Mercurial. (Jelmer Vernooij)
759 * Fix dul-receive-pack and dul-upload-pack. (Jelmer Vernooij)
761 * Zero-padded file modes in Tree objects no longer trigger an exception but
762 the check code warns about them. (Augie Fackler, #581064)
764 * Repo.init() now honors the mkdir flag. (#671159)
766 * The ref format is now checked when setting a ref rather than when reading it back.
767 (Dave Borowitz, #653527)
769 * Make sure pack files are closed correctly. (Tay Ray Chuan)
773 * Run the tutorial inside the test suite. (Jelmer Vernooij)
775 * Reorganized and updated the tutorial. (Jelmer Vernooij, Dave Borowitz, #610550,
783 * HTTP server correctly handles empty CONTENT_LENGTH. (Dave Borowitz)
785 * Don't error when creating GitFiles with the default mode. (Dave Borowitz)
787 * ThinPackData.from_file now works with resolve_ext_ref callback.
790 * Provide strnlen() on mingw32 which doesn't have it. (Hans Kolek)
792 * Set bare=true in the configuratin for bare repositories. (Dirk Neumann)
796 * Use slots for core objects to save up on memory. (Jelmer Vernooij)
798 * Web server supports streaming progress/pack output. (Dave Borowitz)
800 * New public function dulwich.pack.write_pack_header. (Dave Borowitz)
802 * Distinguish between missing files and read errors in HTTP server.
805 * Initial work on support for fastimport using python-fastimport.
808 * New dulwich.pack.MemoryPackIndex class. (Jelmer Vernooij)
810 * Delegate SHA peeling to the object store. (Dave Borowitz)
814 * Use GitFile when modifying packed-refs in tests. (Dave Borowitz)
816 * New tests in test_web with better coverage and fewer ad-hoc mocks.
819 * Standardize quote delimiters in test_protocol. (Dave Borowitz)
821 * Fix use when testtools is installed. (Jelmer Vernooij)
823 * Add trivial test for write_pack_header. (Jelmer Vernooij)
825 * Refactor some of dulwich.tests.compat.server_utils. (Dave Borowitz)
827 * Allow overwriting id property of objects in test utils. (Dave Borowitz)
829 * Use real in-memory objects rather than stubs for server tests.
832 * Clean up MissingObjectFinder. (Dave Borowitz)
836 * ObjectStore.iter_tree_contents now walks contents in depth-first, sorted
837 order. (Dave Borowitz)
839 * ObjectStore.iter_tree_contents can optionally yield tree objects as well.
842 * Add side-band-64k support to ReceivePackHandler. (Dave Borowitz)
844 * Change server capabilities methods to classmethods. (Dave Borowitz)
846 * Tweak server handler injection. (Dave Borowitz)
848 * PackIndex1 and PackIndex2 now subclass FilePackIndex, which is
849 itself a subclass of PackIndex. (Jelmer Vernooij)
853 * Add docstrings for various functions in dulwich.objects. (Jelmer Vernooij)
855 * Clean up docstrings in dulwich.protocol. (Dave Borowitz)
857 * Explicitly specify allowed protocol commands to
858 ProtocolGraphWalker.read_proto_line. (Dave Borowitz)
860 * Add utility functions to DictRefsContainer. (Dave Borowitz)
867 * Fix memory leak in C implementation of sorted_tree_items. (Dave Borowitz)
869 * Use correct path separators for named repo files. (Dave Borowitz)
871 * python > 2.7 and testtools-based test runners will now also pick up skipped
872 tests correctly. (Jelmer Vernooij)
876 * Move named file initilization to BaseRepo. (Dave Borowitz)
878 * Add logging utilities and git/HTTP server logging. (Dave Borowitz)
880 * The GitClient interface has been cleaned up and instances are now reusable.
883 * Allow overriding paths to executables in GitSSHClient.
884 (Ross Light, Jelmer Vernooij, #585204)
886 * Add PackBasedObjectStore.pack_loose_objects(). (Jelmer Vernooij)
890 * Add tests for sorted_tree_items and C implementation. (Dave Borowitz)
892 * Add a MemoryRepo that stores everything in memory. (Dave Borowitz)
894 * Quiet logging output from web tests. (Dave Borowitz)
896 * More flexible version checking for compat tests. (Dave Borowitz)
898 * Compat tests for servers with and without side-band-64k. (Dave Borowitz)
902 * Clean up file headers. (Dave Borowitz)
906 * Use GitFile when modifying packed-refs in tests. (Dave Borowitz)
910 * dulwich.pack.write_pack_index_v{1,2} now take a file-like object
911 rather than a filename. (Jelmer Vernooij)
913 * Make dul-daemon/dul-web trivial wrappers around server functionality.
916 * Move reference WSGI handler to web.py. (Dave Borowitz)
918 * Factor out _report_status in ReceivePackHandler. (Dave Borowitz)
920 * Factor out a function to convert a line to a pkt-line. (Dave Borowitz)
925 note: This list is most likely incomplete for 0.6.0.
929 * Fix ReceivePackHandler to disallow removing refs without delete-refs.
932 * Deal with capabilities required by the client, even if they
933 can not be disabled in the server. (Dave Borowitz)
935 * Fix trailing newlines in generated patch files.
938 * Implement RefsContainer.__contains__. (Jelmer Vernooij)
940 * Cope with \r in ref files on Windows. (
941 http://github.com/jelmer/dulwich/issues/#issue/13, Jelmer Vernooij)
943 * Fix GitFile breakage on Windows. (Anatoly Techtonik, #557585)
945 * Support packed ref deletion with no peeled refs. (Augie Fackler)
947 * Fix send pack when there is nothing to fetch. (Augie Fackler)
949 * Fix fetch if no progress function is specified. (Augie Fackler)
951 * Allow double-staging of files that are deleted in the index.
954 * Fix RefsContainer.add_if_new to support dangling symrefs.
957 * Non-existant index files in non-bare repositories are now treated as
958 empty. (Dave Borowitz)
960 * Always update ShaFile.id when the contents of the object get changed.
963 * Various Python2.4-compatibility fixes. (Dave Borowitz)
965 * Fix thin pack handling. (Dave Borowitz)
969 * Add include-tag capability to server. (Dave Borowitz)
971 * New dulwich.fastexport module that can generate fastexport
972 streams. (Jelmer Vernooij)
974 * Implemented BaseRepo.__contains__. (Jelmer Vernooij)
976 * Add __setitem__ to DictRefsContainer. (Dave Borowitz)
978 * Overall improvements checking Git objects. (Dave Borowitz)
980 * Packs are now verified while they are received. (Dave Borowitz)
984 * Add framework for testing compatibility with C Git. (Dave Borowitz)
986 * Add various tests for the use of non-bare repositories. (Dave Borowitz)
988 * Cope with diffstat not being available on all platforms.
989 (Tay Ray Chuan, Jelmer Vernooij)
991 * Add make_object and make_commit convenience functions to test utils.
996 * The 'committer' and 'message' arguments to Repo.do_commit() have
997 been swapped. 'committer' is now optional. (Jelmer Vernooij)
999 * Repo.get_blob, Repo.commit, Repo.tag and Repo.tree are now deprecated.
1002 * RefsContainer.set_ref() was renamed to RefsContainer.set_symbolic_ref(),
1003 for clarity. (Jelmer Vernooij)
1007 * The primary serialization APIs in dulwich.objects now work
1008 with chunks of strings rather than with full-text strings.
1015 * Support custom fields in commits (readonly). (Jelmer Vernooij)
1017 * Improved ref handling. (Dave Borowitz)
1019 * Rework server protocol to be smarter and interoperate with cgit client.
1022 * Add a GitFile class that uses the same locking protocol for writes as
1023 cgit. (Dave Borowitz)
1025 * Cope with forward slashes correctly in the index on Windows.
1026 (Jelmer Vernooij, #526793)
1030 * --pure option to setup.py to allow building/installing without the C
1031 extensions. (Hal Wine, Anatoly Techtonik, Jelmer Vernooij, #434326)
1033 * Implement Repo.get_config(). (Jelmer Vernooij, Augie Fackler)
1035 * HTTP dumb and smart server. (Dave Borowitz)
1037 * Add abstract baseclass for Repo that does not require file system
1038 operations. (Dave Borowitz)
1044 * Add ObjectStore.iter_tree_contents(). (Jelmer Vernooij)
1046 * Add Index.changes_from_tree(). (Jelmer Vernooij)
1048 * Add ObjectStore.tree_changes(). (Jelmer Vernooij)
1050 * Add functionality for writing patches in dulwich.patch.
1061 * dulwich.object_store.tree_lookup_path will now return the mode and
1062 sha of the object found rather than the object itself.
1066 * Use binascii.hexlify / binascii.unhexlify for better performance.
1068 * Cope with extra unknown data in index files by ignoring it (for now).
1070 * Add proper error message when server unexpectedly hangs up. (#415843)
1072 * Correctly write opcode for equal in create_delta.
1078 * Implement ShaFile.__hash__().
1080 * Implement Tree.__len__()
1084 * Check for 'objects' and 'refs' directories
1085 when looking for a Git repository. (#380818)
1091 * Support the encoding field in Commits.
1093 * Some Windows compatibility fixes.
1095 * Fixed several issues in commit support.
1099 * Basic support for handling submodules.
1105 * Implemented Repo.__getitem__, Repo.__setitem__ and Repo.__delitem__ to
1110 * Removed Repo.set_ref, Repo.remove_ref, Repo.tags, Repo.get_refs and
1111 Repo.heads in favor of Repo.refs, a dictionary-like object for accessing
1116 * Removed import of 'sha' module in objects.py, which was causing
1117 deprecation warnings on Python 2.6.
1123 * A new function 'commit_tree' has been added that can commit a tree
1128 * The memory usage when generating indexes has been significantly reduced.
1130 * A memory leak in the C implementation of parse_tree has been fixed.
1132 * The send-pack smart server command now works. (Thanks Scott Chacon)
1134 * The handling of short timestamps (less than 10 digits) has been fixed.
1136 * The handling of timezones has been fixed.
1142 * Fix compatibility with Python2.4.
1148 * Support for activity reporting in smart protocol client.
1150 * Optional C extensions for better performance in a couple of
1151 places that are performance-critical.
1157 * Fixed regression in Repo.find_missing_objects()
1159 * Don't fetch ^{} objects from remote hosts, as requesting them
1162 * Always write pack to disk completely before calculating checksum.
1166 * Allow disabling thin packs when talking to remote hosts.