NEWS 3.7 KB

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