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