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