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