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