NEWS 2.8 KB

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