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