NEWS 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. 0.3.4 UNRELEASED
  2. API CHANGES
  3. * dulwich.object_store.tree_lookup_path will now return the mode and
  4. sha of the object found rather than the object itself.
  5. BUG FIXES
  6. * Use binascii.hexlify / binascii.unhexlify for better performance.
  7. 0.3.3 2009-07-23
  8. FEATURES
  9. * Implement ShaFile.__hash__().
  10. * Implement Tree.__len__()
  11. BUG FIXES
  12. * Check for 'objects' and 'refs' directories
  13. when looking for a Git repository. (#380818)
  14. 0.3.2 2009-05-20
  15. BUG FIXES
  16. * Support the encoding field in Commits.
  17. * Some Windows compatibility fixes.
  18. * Fixed several issues in commit support.
  19. FEATURES
  20. * Basic support for handling submodules.
  21. 0.3.1 2009-05-13
  22. FEATURES
  23. * Implemented Repo.__getitem__, Repo.__setitem__ and Repo.__delitem__ to
  24. access content.
  25. API CHANGES
  26. * Removed Repo.set_ref, Repo.remove_ref, Repo.tags, Repo.get_refs and
  27. Repo.heads in favor of Repo.refs, a dictionary-like object for accessing
  28. refs.
  29. BUG FIXES
  30. * Removed import of 'sha' module in objects.py, which was causing
  31. deprecation warnings on Python 2.6.
  32. 0.3.0 2009-05-10
  33. FEATURES
  34. * A new function `commit_tree' has been added that can commit a tree
  35. based on an index.
  36. BUG FIXES
  37. * The memory usage when generating indexes has been significantly reduced.
  38. * A memory leak in the C implementation of parse_tree has been fixed.
  39. * The send-pack smart server command now works. (Thanks Scott Chacon)
  40. * The handling of short timestamps (less than 10 digits) has been fixed.
  41. * The handling of timezones has been fixed.
  42. 0.2.1 2009-04-30
  43. BUG FIXES
  44. * Fix compatibility with Python2.4.
  45. 0.2.0 2009-04-30
  46. FEATURES
  47. * Support for activity reporting in smart protocol client.
  48. * Optional C extensions for better performance in a couple of
  49. places that are performance-critical.
  50. 0.1.1 2009-03-13
  51. BUG FIXES
  52. * Fixed regression in Repo.find_missing_objects()
  53. * Don't fetch ^{} objects from remote hosts, as requesting them
  54. causes a hangup.
  55. * Always write pack to disk completely before calculating checksum.
  56. FEATURES
  57. * Allow disabling thin packs when talking to remote hosts.
  58. 0.1.0 2009-01-24
  59. * Initial release.