NEWS 2.5 KB

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