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