NEWS 2.4 KB

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