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