NEWS 3.3 KB

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