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