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