NEWS 4.2 KB

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