NEWS 2.4 KB

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