Update NEWS.
[jelmer/dulwich.git] / NEWS
1 0.9.6   UNRELEASED
2
3  IMPROVEMENTS
4
5  * Add support for recursive add in 'git add'.
6    (Ryan Faulkner, Jelmer Vernooij)
7
8  * Add porcelain 'list_tags'. (Ryan Faulkner)
9
10  * Add porcelain 'push'. (Ryan Faulkner)
11
12  * Add porcelain 'pull'. (Ryan Faulkner)
13
14  * Support 'http.proxy' in HttpGitClient.
15    (Jelmer Vernooij, #1096030)
16
17  * Support 'http.useragent' in HttpGitClient.
18    (Jelmer Vernooij)
19
20  * In server, wait for clients to send empty list of
21    wants when talking to empty repository.
22    (Damien Tournoud)
23
24  * Various changes to improve compatibility with
25    Python 3. (Gary van der Merwe)
26
27  BUG FIXES
28
29  * Support unseekable 'wsgi.input' streams.
30    (Jonas Haag)
31
32  * Raise TypeError when passing unicode() object
33    to Repo.__getitem__.
34    (Jonas Haag)
35
36  * Fix handling of `reset` command in dulwich.fastexport.
37    (Jelmer Vernooij, #1249029)
38
39  * In client, don't wait for server to close connection
40    first. Fixes hang when used against GitHub
41    server implementation. (Siddharth Agarwal)
42
43  API CHANGES
44
45   * Drop support for Python 2.6. (Jelmer Vernooij)
46
47 0.9.5   2014-02-23
48
49  IMPROVEMENTS
50
51  * Add porcelain 'tag'. (Ryan Faulkner)
52
53  * New module `dulwich.objectspec` for parsing strings referencing
54    objects and commit ranges. (Jelmer Vernooij)
55
56  * Add shallow branch support. (milki)
57
58  * Allow passing urllib2 `opener` into HttpGitClient.
59    (Dov Feldstern, #909037)
60
61  CHANGES
62
63  * Drop support for Python 2.4 and 2.5. (Jelmer Vernooij)
64
65  API CHANGES
66
67  * Remove long deprecated ``Repo.commit``, ``Repo.get_blob``,
68    ``Repo.tree`` and ``Repo.tag``. (Jelmer Vernooij)
69
70  * Remove long deprecated ``Repo.revision_history`` and ``Repo.ref``.
71    (Jelmer Vernooij)
72
73  * Remove long deprecated ``Tree.entries``. (Jelmer Vernooij)
74
75  BUG FIXES
76
77  * Raise KeyError rather than TypeError when passing in
78    unicode object of length 20 or 40 to Repo.__getitem__.
79    (Jelmer Vernooij)
80
81  * Use 'rm' rather than 'unlink' in tests, since the latter
82    does not exist on OpenBSD and other platforms.
83    (Dmitrij D. Czarkoff)
84
85 0.9.4   2013-11-30
86
87  IMPROVEMENTS
88
89  * Add ssh_kwargs attribute to ParamikoSSHVendor. (milki)
90
91  * Add Repo.set_description(). (Víðir Valberg Guðmundsson)
92
93  * Add a basic `dulwich.porcelain` module. (Jelmer Vernooij, Marcin Kuzminski)
94
95  * Various performance improvements for object access.
96    (Jelmer Vernooij)
97
98  * New function `get_transport_and_path_from_url`,
99    similar to `get_transport_and_path` but only
100    supports URLs.
101    (Jelmer Vernooij)
102
103  * Add support for file:// URLs in `get_transport_and_path_from_url`.
104    (Jelmer Vernooij)
105
106  * Add LocalGitClient implementation.
107    (Jelmer Vernooij)
108
109  BUG FIXES
110
111   * Support filesystems with 64bit inode and device numbers.
112     (André Roth)
113
114  CHANGES
115
116   * Ref handling has been moved to dulwich.refs.
117     (Jelmer Vernooij)
118
119  API CHANGES
120
121   * Remove long deprecated RefsContainer.set_ref().
122     (Jelmer Vernooij)
123
124   * Repo.ref() is now deprecated in favour of Repo.refs[].
125     (Jelmer Vernooij)
126
127 FEATURES
128
129   * Add support for graftpoints. (milki)
130
131 0.9.3   2013-09-27
132
133  BUG FIXES
134
135   * Fix path for stdint.h in MANIFEST.in. (Jelmer Vernooij)
136
137 0.9.2   2013-09-26
138
139  BUG FIXES
140
141   * Include stdint.h in MANIFEST.in (Mark Mikofski)
142
143 0.9.1   2013-09-22
144
145  BUG FIXES
146
147   * Support lookups of 40-character refs in BaseRepo.__getitem__. (Chow Loong Jin, Jelmer Vernooij)
148
149   * Fix fetching packs with side-band-64k capability disabled. (David Keijser, Jelmer Vernooij)
150
151   * Several fixes in send-pack protocol behaviour - handling of empty pack files and deletes.
152     (milki, #1063087)
153
154   * Fix capability negotiation when fetching packs over HTTP.
155     (#1072461, William Grant)
156
157   * Enforce determine_wants returning an empty list rather than None. (Fabien Boucher, Jelmer Vernooij)
158
159   * In the server, support pushes just removing refs. (Fabien Boucher, Jelmer Vernooij)
160
161  IMPROVEMENTS
162
163   * Support passing a single revision to BaseRepo.get_walker() rather than a list of revisions. 
164     (Alberto Ruiz)
165
166   * Add `Repo.get_description` method. (Jelmer Vernooij)
167
168   * Support thin packs in Pack.iterobjects() and Pack.get_raw().
169     (William Grant)
170
171   * Add `MemoryObjectStore.add_pack` and `MemoryObjectStore.add_thin_pack` methods.
172     (David Bennett)
173
174   * Add paramiko-based SSH vendor. (Aaron O'Mullan)
175
176   * Support running 'dulwich.server' and 'dulwich.web' using 'python -m'.
177     (Jelmer Vernooij)
178
179   * Add ObjectStore.close(). (Jelmer Vernooij)
180
181   * Raise appropriate NotImplementedError when encountering dumb HTTP servers.
182     (Jelmer Vernooij)
183
184  API CHANGES
185
186   * SSHVendor.connect_ssh has been renamed to SSHVendor.run_command.
187     (Jelmer Vernooij)
188
189   * ObjectStore.add_pack() now returns a 3-tuple. The last element will be an
190     abort() method that can be used to cancel the pack operation.
191     (Jelmer Vernooij)
192
193 0.9.0   2013-05-31
194
195  BUG FIXES
196
197   * Push efficiency - report missing objects only. (#562676, Artem Tikhomirov)
198
199   * Use indentation consistent with C Git in config files.
200     (#1031356, Curt Moore, Jelmer Vernooij)
201
202   * Recognize and skip binary files in diff function.
203     (Takeshi Kanemoto)
204
205   * Fix handling of relative paths in dulwich.client.get_transport_and_path.
206     (Brian Visel, #1169368)
207
208   * Preserve ordering of entries in configuration.
209     (Benjamin Pollack)
210
211   * Support ~ expansion in SSH client paths. (milki, #1083439)
212
213   * Support relative paths in alternate paths.
214     (milki, Michel Lespinasse, #1175007)
215
216   * Log all error messages from wsgiref server to the logging module. This
217     makes the test suit quiet again. (Gary van der Merwe)
218
219   * Support passing None for empty tree in changes_from_tree.
220     (Kevin Watters)
221
222   * Support fetching empty repository in client. (milki, #1060462)
223
224  IMPROVEMENTS:
225
226   * Add optional honor_filemode flag to build_index_from_tree.
227     (Mark Mikofski)
228
229   * Support core/filemode setting when building trees. (Jelmer Vernooij)
230
231   * Add chapter on tags in tutorial. (Ryan Faulkner)
232
233  FEATURES
234
235   * Add support for mergetags. (milki, #963525)
236
237   * Add support for posix shell hooks. (milki)
238
239 0.8.7   2012-11-27
240
241  BUG FIXES
242
243   * Fix use of alternates in ``DiskObjectStore``.{__contains__,__iter__}.
244     (Dmitriy)
245
246   * Fix compatibility with Python 2.4. (David Carr)
247
248 0.8.6   2012-11-09
249
250  API CHANGES
251
252   * dulwich.__init__ no longer imports client, protocol, repo and
253     server modules. (Jelmer Vernooij)
254
255  FEATURES
256
257   * ConfigDict now behaves more like a dictionary.
258     (Adam 'Cezar' Jenkins, issue #58)
259
260   * HTTPGitApplication now takes an optional
261     `fallback_app` argument. (Jonas Haag, issue #67)
262
263   * Support for large pack index files. (Jameson Nash)
264
265  TESTING
266
267   * Make index entry tests a little bit less strict, to cope with
268     slightly different behaviour on various platforms.
269     (Jelmer Vernooij)
270
271   * ``setup.py test`` (available when setuptools is installed) now
272     runs all tests, not just the basic unit tests.
273     (Jelmer Vernooij)
274
275  BUG FIXES
276
277   * Commit._deserialize now actually deserializes the current state rather than
278     the previous one. (Yifan Zhang, issue #59)
279
280   * Handle None elements in lists of TreeChange objects. (Alex Holmes)
281
282   * Support cloning repositories without HEAD set.
283     (D-Key, Jelmer Vernooij, issue #69)
284
285   * Support ``MemoryRepo.get_config``. (Jelmer Vernooij)
286
287   * In ``get_transport_and_path``, pass extra keyword arguments on to
288     HttpGitClient. (Jelmer Vernooij)
289
290 0.8.5   2012-03-29
291
292  BUG FIXES
293
294   * Avoid use of 'with' in dulwich.index. (Jelmer Vernooij)
295
296   * Be a little bit strict about OS behaviour in index tests.
297     Should fix the tests on Debian GNU/kFreeBSD. (Jelmer Vernooij)
298
299 0.8.4   2012-03-28
300
301  BUG FIXES
302
303   * Options on the same line as sections in config files are now supported.
304     (Jelmer Vernooij, #920553)
305
306   * Only negotiate capabilities that are also supported by the server.
307     (Rod Cloutier, Risto Kankkunen)
308
309   * Fix parsing of invalid timezone offsets with two minus signs.
310     (Jason R. Coombs, #697828)
311
312   * Reset environment variables during tests, to avoid
313     test isolation leaks reading ~/.gitconfig. (Risto Kankkunen)
314
315  TESTS
316
317   * $HOME is now explicitly specified for tests that use it to read
318     ``~/.gitconfig``, to prevent test isolation issues.
319     (Jelmer Vernooij, #920330)
320
321  FEATURES
322
323   * Additional arguments to get_transport_and_path are now passed
324     on to the constructor of the transport. (Sam Vilain)
325
326   * The WSGI server now transparently handles when a git client submits data
327     using Content-Encoding: gzip.
328     (David Blewett, Jelmer Vernooij)
329
330   * Add dulwich.index.build_index_from_tree(). (milki)
331
332 0.8.3   2012-01-21
333
334  FEATURES
335
336   * The config parser now supports the git-config file format as
337     described in git-config(1) and can write git config files.
338     (Jelmer Vernooij, #531092, #768687)
339
340   * ``Repo.do_commit`` will now use the user identity from
341     .git/config or ~/.gitconfig if none was explicitly specified.
342     (Jelmer Vernooij)
343
344  BUG FIXES
345
346   * Allow ``determine_wants`` methods to include the zero sha in their
347     return value. (Jelmer Vernooij)
348
349 0.8.2   2011-12-18
350
351  BUG FIXES
352
353   * Cope with different zlib buffer sizes in sha1 file parser.
354     (Jelmer Vernooij)
355
356   * Fix get_transport_and_path for HTTP/HTTPS URLs.
357     (Bruno Renié)
358
359   * Avoid calling free_objects() on NULL in error cases. (Chris Eberle)
360
361   * Fix use --bare argument to 'dulwich init'. (Chris Eberle)
362
363   * Properly abort connections when the determine_wants function
364     raises an exception. (Jelmer Vernooij, #856769)
365
366   * Tweak xcodebuild hack to deal with more error output.
367     (Jelmer Vernooij, #903840)
368
369  FEATURES
370
371   * Add support for retrieving tarballs from remote servers.
372     (Jelmer Vernooij, #379087)
373
374   * New method ``update_server_info`` which generates data
375     for dumb server access. (Jelmer Vernooij, #731235)
376
377 0.8.1   2011-10-31
378
379  FEATURES
380
381   * Repo.do_commit has a new argument 'ref'.
382
383   * Repo.do_commit has a new argument 'merge_heads'. (Jelmer Vernooij)
384
385   * New ``Repo.get_walker`` method. (Jelmer Vernooij)
386
387   * New ``Repo.clone`` method. (Jelmer Vernooij, #725369)
388
389   * ``GitClient.send_pack`` now supports the 'side-band-64k' capability.
390     (Jelmer Vernooij)
391
392   * ``HttpGitClient`` which supports the smart server protocol over
393     HTTP. "dumb" access is not yet supported. (Jelmer Vernooij, #373688)
394
395   * Add basic support for alternates. (Jelmer Vernooij, #810429)
396
397  CHANGES
398
399   * unittest2 or python >= 2.7 is now required for the testsuite.
400     testtools is no longer supported. (Jelmer Vernooij, #830713)
401
402  BUG FIXES
403
404   * Fix compilation with older versions of MSVC.  (Martin gz)
405
406   * Special case 'refs/stash' as a valid ref. (Jelmer Vernooij, #695577)
407
408   * Smart protocol clients can now change refs even if they are
409     not uploading new data. (Jelmer Vernooij, #855993)
410
411  * Don't compile C extensions when running in pypy.
412    (Ronny Pfannschmidt, #881546)
413
414  * Use different name for strnlen replacement function to avoid clashing
415    with system strnlen. (Jelmer Vernooij, #880362)
416
417  API CHANGES
418
419   * ``Repo.revision_history`` is now deprecated in favor of ``Repo.get_walker``.
420     (Jelmer Vernooij)
421
422 0.8.0   2011-08-07
423
424  FEATURES
425
426   * New DeltaChainIterator abstract class for quickly iterating all objects in
427     a pack, with implementations for pack indexing and inflation.
428     (Dave Borowitz)
429
430   * New walk module with a Walker class for customizable commit walking.
431     (Dave Borowitz)
432
433   * New tree_changes_for_merge function in diff_tree. (Dave Borowitz)
434
435   * Easy rename detection in RenameDetector even without find_copies_harder.
436     (Dave Borowitz)
437
438  BUG FIXES
439
440   * Avoid storing all objects in memory when writing pack.
441     (Jelmer Vernooij, #813268)
442
443   * Support IPv6 for git:// connections. (Jelmer Vernooij, #801543)
444
445   * Improve performance of Repo.revision_history(). (Timo Schmid, #535118)
446
447   * Fix use of SubprocessWrapper on Windows. (Paulo Madeira, #670035)
448
449   * Fix compilation on newer versions of Mac OS X (Lion and up). (Ryan McKern, #794543)
450
451   * Prevent raising ValueError for correct refs in RefContainer.__delitem__.
452
453   * Correctly return a tuple from MemoryObjectStore.get_raw. (Dave Borowitz)
454
455   * Fix a bug in reading the pack checksum when there are fewer than 20 bytes
456     left in the buffer. (Dave Borowitz)
457
458   * Support ~ in git:// URL paths. (Jelmer Vernooij, #813555)
459
460   * Make ShaFile.__eq__ work when other is not a ShaFile. (Dave Borowitz)
461
462   * ObjectStore.get_graph_walker() now no longer yields the same
463     revision more than once. This has a significant improvement for
464     performance when wide revision graphs are involved.
465     (Jelmer Vernooij, #818168)
466
467   * Teach ReceivePackHandler how to read empty packs. (Dave Borowitz)
468
469   * Don't send a pack with duplicates of the same object. (Dave Borowitz)
470
471   * Teach the server how to serve a clone of an empty repo. (Dave Borowitz)
472
473   * Correctly advertise capabilities during receive-pack. (Dave Borowitz)
474
475   * Fix add/add and add/rename conflicts in tree_changes_for_merge.
476     (Dave Borowitz)
477
478   * Use correct MIME types in web server. (Dave Borowitz)
479
480  API CHANGES
481
482   * write_pack no longer takes the num_objects argument and requires an object
483     to be passed in that is iterable (rather than an iterator) and that
484     provides __len__.  (Jelmer Vernooij)
485
486   * write_pack_data has been renamed to write_pack_objects and no longer takes a
487     num_objects argument. (Jelmer Vernooij)
488
489   * take_msb_bytes, read_zlib_chunks, unpack_objects, and
490     PackStreamReader.read_objects now take an additional argument indicating a
491     crc32 to compute. (Dave Borowitz)
492
493   * PackObjectIterator was removed; its functionality is still exposed by
494     PackData.iterobjects. (Dave Borowitz)
495
496   * Add a sha arg to write_pack_object to incrementally compute a SHA.
497     (Dave Borowitz)
498
499   * Include offset in PackStreamReader results. (Dave Borowitz)
500
501   * Move PackStreamReader from server to pack. (Dave Borowitz)
502
503   * Extract a check_length_and_checksum, compute_file_sha, and
504     pack_object_header pack helper functions. (Dave Borowitz)
505
506   * Extract a compute_file_sha function. (Dave Borowitz)
507
508   * Remove move_in_thin_pack as a separate method; add_thin_pack now completes
509     the thin pack and moves it in in one step. Remove ThinPackData as well.
510     (Dave Borowitz)
511
512   * Custom buffer size in read_zlib_chunks. (Dave Borowitz)
513
514   * New UnpackedObject data class that replaces ad-hoc tuples in the return
515     value of unpack_object and various DeltaChainIterator methods.
516     (Dave Borowitz)
517
518   * Add a lookup_path convenience method to Tree. (Dave Borowitz)
519
520   * Optionally create RenameDetectors without passing in tree SHAs.
521     (Dave Borowitz)
522
523   * Optionally include unchanged entries in RenameDetectors. (Dave Borowitz)
524
525   * Optionally pass a RenameDetector to tree_changes. (Dave Borowitz)
526
527   * Optionally pass a request object through to server handlers. (Dave Borowitz)
528
529  TEST CHANGES
530
531   * If setuptools is installed, "python setup.py test" will now run the testsuite.
532     (Jelmer Vernooij)
533
534   * Add a new build_pack test utility for building packs from a simple spec.
535     (Dave Borowitz)
536
537   * Add a new build_commit_graph test utility for building commits from a
538     simple spec. (Dave Borowitz)
539
540 0.7.1   2011-04-12
541
542  BUG FIXES
543
544   * Fix double decref in _diff_tree.c. (Ted Horst, #715528)
545
546   * Fix the build on Windows. (Pascal Quantin)
547
548   * Fix get_transport_and_path compatibility with pre-2.6.5 versions of Python.
549     (Max Bowsher, #707438)
550
551   * BaseObjectStore.determine_wants_all no longer breaks on zero SHAs.
552     (Jelmer Vernooij)
553
554   * write_tree_diff() now supports submodules.
555     (Jelmer Vernooij)
556
557   * Fix compilation for XCode 4 and older versions of distutils.sysconfig.
558     (Daniele Sluijters)
559
560  IMPROVEMENTS
561
562   * Sphinxified documentation. (Lukasz Balcerzak)
563
564   * Add Pack.keep.(Marc Brinkmann)
565
566  API CHANGES
567
568   * The order of the parameters to Tree.add(name, mode, sha) has changed, and
569     is now consistent with the rest of Dulwich. Existing code will still
570     work but print a DeprecationWarning. (Jelmer Vernooij, #663550)
571
572   * Tree.entries() is now deprecated in favour of Tree.items() and
573     Tree.iteritems(). (Jelmer Vernooij)
574
575 0.7.0   2011-01-21
576
577  FEATURES
578
579   * New `dulwich.diff_tree` module for simple content-based rename detection.
580     (Dave Borowitz)
581
582   * Add Tree.items(). (Jelmer Vernooij)
583
584   * Add eof() and unread_pkt_line() methods to Protocol. (Dave Borowitz)
585
586   * Add write_tree_diff(). (Jelmer Vernooij)
587
588   * Add `serve_command` function for git server commands as executables.
589     (Jelmer Vernooij)
590
591   * dulwich.client.get_transport_and_path now supports rsync-style repository URLs.
592     (Dave Borowitz, #568493)
593
594  BUG FIXES
595
596   * Correct short-circuiting operation for no-op fetches in the server.
597     (Dave Borowitz)
598
599   * Support parsing git mbox patches without a version tail, as generated by
600     Mercurial.  (Jelmer Vernooij)
601
602   * Fix dul-receive-pack and dul-upload-pack. (Jelmer Vernooij)
603
604   * Zero-padded file modes in Tree objects no longer trigger an exception but
605     the check code warns about them. (Augie Fackler, #581064)
606
607   * Repo.init() now honors the mkdir flag. (#671159)
608
609   * The ref format is now checked when setting a ref rather than when reading it back.
610     (Dave Borowitz, #653527)
611
612   * Make sure pack files are closed correctly. (Tay Ray Chuan)
613
614  DOCUMENTATION
615
616   * Run the tutorial inside the test suite. (Jelmer Vernooij)
617
618   * Reorganized and updated the tutorial. (Jelmer Vernooij, Dave Borowitz, #610550,
619      #610540)
620
621
622 0.6.2   2010-10-16
623
624  BUG FIXES
625
626   * HTTP server correctly handles empty CONTENT_LENGTH. (Dave Borowitz)
627
628   * Don't error when creating GitFiles with the default mode. (Dave Borowitz)
629
630   * ThinPackData.from_file now works with resolve_ext_ref callback.
631     (Dave Borowitz)
632
633   * Provide strnlen() on mingw32 which doesn't have it. (Hans Kolek)
634
635   * Set bare=true in the configuratin for bare repositories. (Dirk Neumann)
636
637  FEATURES
638
639   * Use slots for core objects to save up on memory. (Jelmer Vernooij)
640
641   * Web server supports streaming progress/pack output. (Dave Borowitz)
642
643   * New public function dulwich.pack.write_pack_header. (Dave Borowitz)
644
645   * Distinguish between missing files and read errors in HTTP server.
646     (Dave Borowitz)
647
648   * Initial work on support for fastimport using python-fastimport.
649     (Jelmer Vernooij)
650
651   * New dulwich.pack.MemoryPackIndex class. (Jelmer Vernooij)
652
653   * Delegate SHA peeling to the object store.  (Dave Borowitz)
654
655  TESTS
656
657   * Use GitFile when modifying packed-refs in tests. (Dave Borowitz)
658
659   * New tests in test_web with better coverage and fewer ad-hoc mocks.
660     (Dave Borowitz)
661
662   * Standardize quote delimiters in test_protocol. (Dave Borowitz)
663
664   * Fix use when testtools is installed. (Jelmer Vernooij)
665
666   * Add trivial test for write_pack_header. (Jelmer Vernooij)
667
668   * Refactor some of dulwich.tests.compat.server_utils. (Dave Borowitz)
669
670   * Allow overwriting id property of objects in test utils. (Dave Borowitz)
671
672   * Use real in-memory objects rather than stubs for server tests.
673     (Dave Borowitz)
674
675   * Clean up MissingObjectFinder. (Dave Borowitz)
676
677  API CHANGES
678
679   * ObjectStore.iter_tree_contents now walks contents in depth-first, sorted
680     order. (Dave Borowitz)
681
682   * ObjectStore.iter_tree_contents can optionally yield tree objects as well.
683     (Dave Borowitz).
684
685   * Add side-band-64k support to ReceivePackHandler. (Dave Borowitz)
686
687   * Change server capabilities methods to classmethods. (Dave Borowitz)
688
689   * Tweak server handler injection. (Dave Borowitz)
690
691   * PackIndex1 and PackIndex2 now subclass FilePackIndex, which is 
692     itself a subclass of PackIndex. (Jelmer Vernooij)
693
694  DOCUMENTATION
695
696   * Add docstrings for various functions in dulwich.objects. (Jelmer Vernooij)
697
698   * Clean up docstrings in dulwich.protocol. (Dave Borowitz)
699
700   * Explicitly specify allowed protocol commands to
701     ProtocolGraphWalker.read_proto_line.  (Dave Borowitz)
702
703   * Add utility functions to DictRefsContainer. (Dave Borowitz)
704
705
706 0.6.1   2010-07-22
707
708  BUG FIXES
709
710   * Fix memory leak in C implementation of sorted_tree_items. (Dave Borowitz)
711
712   * Use correct path separators for named repo files. (Dave Borowitz)
713
714   * python > 2.7 and testtools-based test runners will now also pick up skipped
715     tests correctly. (Jelmer Vernooij)
716
717  FEATURES
718
719   * Move named file initilization to BaseRepo. (Dave Borowitz)
720
721   * Add logging utilities and git/HTTP server logging. (Dave Borowitz)
722
723   * The GitClient interface has been cleaned up and instances are now reusable.
724     (Augie Fackler)
725
726   * Allow overriding paths to executables in GitSSHClient. 
727     (Ross Light, Jelmer Vernooij, #585204)
728
729   * Add PackBasedObjectStore.pack_loose_objects(). (Jelmer Vernooij)
730
731  TESTS
732
733   * Add tests for sorted_tree_items and C implementation. (Dave Borowitz)
734
735   * Add a MemoryRepo that stores everything in memory. (Dave Borowitz)
736
737   * Quiet logging output from web tests. (Dave Borowitz)
738
739   * More flexible version checking for compat tests. (Dave Borowitz)
740
741   * Compat tests for servers with and without side-band-64k. (Dave Borowitz)
742
743  CLEANUP
744
745   * Clean up file headers. (Dave Borowitz)
746
747  TESTS
748
749   * Use GitFile when modifying packed-refs in tests. (Dave Borowitz)
750
751  API CHANGES
752
753   * dulwich.pack.write_pack_index_v{1,2} now take a file-like object
754     rather than a filename. (Jelmer Vernooij)
755
756   * Make dul-daemon/dul-web trivial wrappers around server functionality.
757     (Dave Borowitz)
758
759   * Move reference WSGI handler to web.py. (Dave Borowitz)
760
761   * Factor out _report_status in ReceivePackHandler. (Dave Borowitz)
762
763   * Factor out a function to convert a line to a pkt-line. (Dave Borowitz)
764
765
766 0.6.0   2010-05-22
767
768 note: This list is most likely incomplete for 0.6.0.
769
770  BUG FIXES
771  
772   * Fix ReceivePackHandler to disallow removing refs without delete-refs.
773     (Dave Borowitz)
774
775   * Deal with capabilities required by the client, even if they 
776     can not be disabled in the server. (Dave Borowitz)
777
778   * Fix trailing newlines in generated patch files.
779     (Jelmer Vernooij)
780
781   * Implement RefsContainer.__contains__. (Jelmer Vernooij)
782
783   * Cope with \r in ref files on Windows. (
784     http://github.com/jelmer/dulwich/issues/#issue/13, Jelmer Vernooij)
785
786   * Fix GitFile breakage on Windows. (Anatoly Techtonik, #557585)
787
788   * Support packed ref deletion with no peeled refs. (Augie Fackler)
789
790   * Fix send pack when there is nothing to fetch. (Augie Fackler)
791
792   * Fix fetch if no progress function is specified. (Augie Fackler)
793
794   * Allow double-staging of files that are deleted in the index. 
795     (Dave Borowitz)
796
797   * Fix RefsContainer.add_if_new to support dangling symrefs.
798     (Dave Borowitz)
799
800   * Non-existant index files in non-bare repositories are now treated as 
801     empty. (Dave Borowitz)
802
803   * Always update ShaFile.id when the contents of the object get changed. 
804     (Jelmer Vernooij)
805
806   * Various Python2.4-compatibility fixes. (Dave Borowitz)
807
808   * Fix thin pack handling. (Dave Borowitz)
809  
810  FEATURES
811
812   * Add include-tag capability to server. (Dave Borowitz)
813
814   * New dulwich.fastexport module that can generate fastexport 
815     streams. (Jelmer Vernooij)
816
817   * Implemented BaseRepo.__contains__. (Jelmer Vernooij)
818
819   * Add __setitem__ to DictRefsContainer. (Dave Borowitz)
820
821   * Overall improvements checking Git objects. (Dave Borowitz)
822
823   * Packs are now verified while they are received. (Dave Borowitz)
824
825  TESTS
826
827   * Add framework for testing compatibility with C Git. (Dave Borowitz)
828
829   * Add various tests for the use of non-bare repositories. (Dave Borowitz)
830
831   * Cope with diffstat not being available on all platforms. 
832     (Tay Ray Chuan, Jelmer Vernooij)
833
834   * Add make_object and make_commit convenience functions to test utils.
835     (Dave Borowitz)
836
837  API BREAKAGES
838
839   * The 'committer' and 'message' arguments to Repo.do_commit() have 
840     been swapped. 'committer' is now optional. (Jelmer Vernooij)
841
842   * Repo.get_blob, Repo.commit, Repo.tag and Repo.tree are now deprecated.
843     (Jelmer Vernooij)
844
845   * RefsContainer.set_ref() was renamed to RefsContainer.set_symbolic_ref(),
846     for clarity. (Jelmer Vernooij)
847
848  API CHANGES
849
850   * The primary serialization APIs in dulwich.objects now work 
851     with chunks of strings rather than with full-text strings. 
852     (Jelmer Vernooij)
853
854 0.5.02010-03-03
855
856  BUG FIXES
857
858   * Support custom fields in commits (readonly). (Jelmer Vernooij)
859
860   * Improved ref handling. (Dave Borowitz)
861
862   * Rework server protocol to be smarter and interoperate with cgit client.
863     (Dave Borowitz)
864
865   * Add a GitFile class that uses the same locking protocol for writes as 
866     cgit. (Dave Borowitz)
867
868   * Cope with forward slashes correctly in the index on Windows.
869     (Jelmer Vernooij, #526793)
870
871  FEATURES
872
873   * --pure option to setup.py to allow building/installing without the C 
874     extensions. (Hal Wine, Anatoly Techtonik, Jelmer Vernooij, #434326)
875
876   * Implement Repo.get_config(). (Jelmer Vernooij, Augie Fackler)
877
878   * HTTP dumb and smart server. (Dave Borowitz)
879
880   * Add abstract baseclass for Repo that does not require file system 
881     operations. (Dave Borowitz)
882
883 0.4.1   2010-01-03
884
885  FEATURES
886
887   * Add ObjectStore.iter_tree_contents(). (Jelmer Vernooij)
888
889   * Add Index.changes_from_tree(). (Jelmer Vernooij)
890
891   * Add ObjectStore.tree_changes(). (Jelmer Vernooij)
892
893   * Add functionality for writing patches in dulwich.patch.
894     (Jelmer Vernooij)
895
896 0.4.0   2009-10-07
897
898  DOCUMENTATION
899
900   * Added tutorial.
901
902  API CHANGES
903
904   * dulwich.object_store.tree_lookup_path will now return the mode and 
905     sha of the object found rather than the object itself.
906
907  BUG FIXES
908
909   * Use binascii.hexlify / binascii.unhexlify for better performance.
910
911   * Cope with extra unknown data in index files by ignoring it (for now).
912
913   * Add proper error message when server unexpectedly hangs up. (#415843)
914
915   * Correctly write opcode for equal in create_delta.
916
917 0.3.3   2009-07-23
918
919  FEATURES
920
921   * Implement ShaFile.__hash__().
922
923   * Implement Tree.__len__()
924
925  BUG FIXES
926   
927   * Check for 'objects' and 'refs' directories
928     when looking for a Git repository. (#380818)
929
930 0.3.2   2009-05-20
931
932  BUG FIXES
933
934   * Support the encoding field in Commits.
935   
936   * Some Windows compatibility fixes.
937
938   * Fixed several issues in commit support.
939
940  FEATURES
941
942   * Basic support for handling submodules.
943
944 0.3.1   2009-05-13
945
946  FEATURES
947
948   * Implemented Repo.__getitem__, Repo.__setitem__ and Repo.__delitem__ to 
949     access content.
950
951  API CHANGES
952
953   * Removed Repo.set_ref, Repo.remove_ref, Repo.tags, Repo.get_refs and 
954     Repo.heads in favor of Repo.refs, a dictionary-like object for accessing
955     refs.
956
957  BUG FIXES
958
959   * Removed import of 'sha' module in objects.py, which was causing 
960     deprecation warnings on Python 2.6.
961
962 0.3.0   2009-05-10
963
964  FEATURES
965
966   * A new function 'commit_tree' has been added that can commit a tree 
967     based on an index.
968
969  BUG FIXES
970
971   * The memory usage when generating indexes has been significantly reduced.
972  
973   * A memory leak in the C implementation of parse_tree has been fixed.
974
975   * The send-pack smart server command now works. (Thanks Scott Chacon)
976
977   * The handling of short timestamps (less than 10 digits) has been fixed.
978
979   * The handling of timezones has been fixed.
980
981 0.2.1   2009-04-30
982
983  BUG FIXES
984
985   * Fix compatibility with Python2.4.
986
987 0.2.0   2009-04-30
988
989  FEATURES
990
991   * Support for activity reporting in smart protocol client.
992
993   * Optional C extensions for better performance in a couple of 
994     places that are performance-critical.
995
996 0.1.1   2009-03-13
997
998  BUG FIXES
999
1000   * Fixed regression in Repo.find_missing_objects()
1001
1002   * Don't fetch ^{} objects from remote hosts, as requesting them 
1003     causes a hangup.
1004
1005   * Always write pack to disk completely before calculating checksum.
1006
1007  FEATURES
1008
1009   * Allow disabling thin packs when talking to remote hosts.
1010
1011 0.1.0   2009-01-24
1012
1013  * Initial release.