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