NEWS 28 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034
  1. 0.9.7 UNRELEASED
  2. BUG FIXES
  3. * Fix tests dependent on hash ordering. (Michael Edgar)
  4. * Support staging symbolic links in Repo.stage.
  5. (Robert Brown)
  6. IMPROVEMENTS
  7. * Add porcelain 'status'. (Ryan Faulkner)
  8. 0.9.6 2014-04-23
  9. IMPROVEMENTS
  10. * Add support for recursive add in 'git add'.
  11. (Ryan Faulkner, Jelmer Vernooij)
  12. * Add porcelain 'list_tags'. (Ryan Faulkner)
  13. * Add porcelain 'push'. (Ryan Faulkner)
  14. * Add porcelain 'pull'. (Ryan Faulkner)
  15. * Support 'http.proxy' in HttpGitClient.
  16. (Jelmer Vernooij, #1096030)
  17. * Support 'http.useragent' in HttpGitClient.
  18. (Jelmer Vernooij)
  19. * In server, wait for clients to send empty list of
  20. wants when talking to empty repository.
  21. (Damien Tournoud)
  22. * Various changes to improve compatibility with
  23. Python 3. (Gary van der Merwe)
  24. BUG FIXES
  25. * Support unseekable 'wsgi.input' streams.
  26. (Jonas Haag)
  27. * Raise TypeError when passing unicode() object
  28. to Repo.__getitem__.
  29. (Jonas Haag)
  30. * Fix handling of `reset` command in dulwich.fastexport.
  31. (Jelmer Vernooij, #1249029)
  32. * In client, don't wait for server to close connection
  33. first. Fixes hang when used against GitHub
  34. server implementation. (Siddharth Agarwal)
  35. * DeltaChainIterator: fix a corner case where an object is inflated as an
  36. object already in the repository.
  37. (Damien Tournoud, #135)
  38. * Stop leaking file handles during pack reload. (Damien Tournoud)
  39. * Avoid reopening packs during pack cache reload. (Jelmer Vernooij)
  40. API CHANGES
  41. * Drop support for Python 2.6. (Jelmer Vernooij)
  42. 0.9.5 2014-02-23
  43. IMPROVEMENTS
  44. * Add porcelain 'tag'. (Ryan Faulkner)
  45. * New module `dulwich.objectspec` for parsing strings referencing
  46. objects and commit ranges. (Jelmer Vernooij)
  47. * Add shallow branch support. (milki)
  48. * Allow passing urllib2 `opener` into HttpGitClient.
  49. (Dov Feldstern, #909037)
  50. CHANGES
  51. * Drop support for Python 2.4 and 2.5. (Jelmer Vernooij)
  52. API CHANGES
  53. * Remove long deprecated ``Repo.commit``, ``Repo.get_blob``,
  54. ``Repo.tree`` and ``Repo.tag``. (Jelmer Vernooij)
  55. * Remove long deprecated ``Repo.revision_history`` and ``Repo.ref``.
  56. (Jelmer Vernooij)
  57. * Remove long deprecated ``Tree.entries``. (Jelmer Vernooij)
  58. BUG FIXES
  59. * Raise KeyError rather than TypeError when passing in
  60. unicode object of length 20 or 40 to Repo.__getitem__.
  61. (Jelmer Vernooij)
  62. * Use 'rm' rather than 'unlink' in tests, since the latter
  63. does not exist on OpenBSD and other platforms.
  64. (Dmitrij D. Czarkoff)
  65. 0.9.4 2013-11-30
  66. IMPROVEMENTS
  67. * Add ssh_kwargs attribute to ParamikoSSHVendor. (milki)
  68. * Add Repo.set_description(). (Víðir Valberg Guðmundsson)
  69. * Add a basic `dulwich.porcelain` module. (Jelmer Vernooij, Marcin Kuzminski)
  70. * Various performance improvements for object access.
  71. (Jelmer Vernooij)
  72. * New function `get_transport_and_path_from_url`,
  73. similar to `get_transport_and_path` but only
  74. supports URLs.
  75. (Jelmer Vernooij)
  76. * Add support for file:// URLs in `get_transport_and_path_from_url`.
  77. (Jelmer Vernooij)
  78. * Add LocalGitClient implementation.
  79. (Jelmer Vernooij)
  80. BUG FIXES
  81. * Support filesystems with 64bit inode and device numbers.
  82. (André Roth)
  83. CHANGES
  84. * Ref handling has been moved to dulwich.refs.
  85. (Jelmer Vernooij)
  86. API CHANGES
  87. * Remove long deprecated RefsContainer.set_ref().
  88. (Jelmer Vernooij)
  89. * Repo.ref() is now deprecated in favour of Repo.refs[].
  90. (Jelmer Vernooij)
  91. FEATURES
  92. * Add support for graftpoints. (milki)
  93. 0.9.3 2013-09-27
  94. BUG FIXES
  95. * Fix path for stdint.h in MANIFEST.in. (Jelmer Vernooij)
  96. 0.9.2 2013-09-26
  97. BUG FIXES
  98. * Include stdint.h in MANIFEST.in (Mark Mikofski)
  99. 0.9.1 2013-09-22
  100. BUG FIXES
  101. * Support lookups of 40-character refs in BaseRepo.__getitem__. (Chow Loong Jin, Jelmer Vernooij)
  102. * Fix fetching packs with side-band-64k capability disabled. (David Keijser, Jelmer Vernooij)
  103. * Several fixes in send-pack protocol behaviour - handling of empty pack files and deletes.
  104. (milki, #1063087)
  105. * Fix capability negotiation when fetching packs over HTTP.
  106. (#1072461, William Grant)
  107. * Enforce determine_wants returning an empty list rather than None. (Fabien Boucher, Jelmer Vernooij)
  108. * In the server, support pushes just removing refs. (Fabien Boucher, Jelmer Vernooij)
  109. IMPROVEMENTS
  110. * Support passing a single revision to BaseRepo.get_walker() rather than a list of revisions.
  111. (Alberto Ruiz)
  112. * Add `Repo.get_description` method. (Jelmer Vernooij)
  113. * Support thin packs in Pack.iterobjects() and Pack.get_raw().
  114. (William Grant)
  115. * Add `MemoryObjectStore.add_pack` and `MemoryObjectStore.add_thin_pack` methods.
  116. (David Bennett)
  117. * Add paramiko-based SSH vendor. (Aaron O'Mullan)
  118. * Support running 'dulwich.server' and 'dulwich.web' using 'python -m'.
  119. (Jelmer Vernooij)
  120. * Add ObjectStore.close(). (Jelmer Vernooij)
  121. * Raise appropriate NotImplementedError when encountering dumb HTTP servers.
  122. (Jelmer Vernooij)
  123. API CHANGES
  124. * SSHVendor.connect_ssh has been renamed to SSHVendor.run_command.
  125. (Jelmer Vernooij)
  126. * ObjectStore.add_pack() now returns a 3-tuple. The last element will be an
  127. abort() method that can be used to cancel the pack operation.
  128. (Jelmer Vernooij)
  129. 0.9.0 2013-05-31
  130. BUG FIXES
  131. * Push efficiency - report missing objects only. (#562676, Artem Tikhomirov)
  132. * Use indentation consistent with C Git in config files.
  133. (#1031356, Curt Moore, Jelmer Vernooij)
  134. * Recognize and skip binary files in diff function.
  135. (Takeshi Kanemoto)
  136. * Fix handling of relative paths in dulwich.client.get_transport_and_path.
  137. (Brian Visel, #1169368)
  138. * Preserve ordering of entries in configuration.
  139. (Benjamin Pollack)
  140. * Support ~ expansion in SSH client paths. (milki, #1083439)
  141. * Support relative paths in alternate paths.
  142. (milki, Michel Lespinasse, #1175007)
  143. * Log all error messages from wsgiref server to the logging module. This
  144. makes the test suit quiet again. (Gary van der Merwe)
  145. * Support passing None for empty tree in changes_from_tree.
  146. (Kevin Watters)
  147. * Support fetching empty repository in client. (milki, #1060462)
  148. IMPROVEMENTS:
  149. * Add optional honor_filemode flag to build_index_from_tree.
  150. (Mark Mikofski)
  151. * Support core/filemode setting when building trees. (Jelmer Vernooij)
  152. * Add chapter on tags in tutorial. (Ryan Faulkner)
  153. FEATURES
  154. * Add support for mergetags. (milki, #963525)
  155. * Add support for posix shell hooks. (milki)
  156. 0.8.7 2012-11-27
  157. BUG FIXES
  158. * Fix use of alternates in ``DiskObjectStore``.{__contains__,__iter__}.
  159. (Dmitriy)
  160. * Fix compatibility with Python 2.4. (David Carr)
  161. 0.8.6 2012-11-09
  162. API CHANGES
  163. * dulwich.__init__ no longer imports client, protocol, repo and
  164. server modules. (Jelmer Vernooij)
  165. FEATURES
  166. * ConfigDict now behaves more like a dictionary.
  167. (Adam 'Cezar' Jenkins, issue #58)
  168. * HTTPGitApplication now takes an optional
  169. `fallback_app` argument. (Jonas Haag, issue #67)
  170. * Support for large pack index files. (Jameson Nash)
  171. TESTING
  172. * Make index entry tests a little bit less strict, to cope with
  173. slightly different behaviour on various platforms.
  174. (Jelmer Vernooij)
  175. * ``setup.py test`` (available when setuptools is installed) now
  176. runs all tests, not just the basic unit tests.
  177. (Jelmer Vernooij)
  178. BUG FIXES
  179. * Commit._deserialize now actually deserializes the current state rather than
  180. the previous one. (Yifan Zhang, issue #59)
  181. * Handle None elements in lists of TreeChange objects. (Alex Holmes)
  182. * Support cloning repositories without HEAD set.
  183. (D-Key, Jelmer Vernooij, issue #69)
  184. * Support ``MemoryRepo.get_config``. (Jelmer Vernooij)
  185. * In ``get_transport_and_path``, pass extra keyword arguments on to
  186. HttpGitClient. (Jelmer Vernooij)
  187. 0.8.5 2012-03-29
  188. BUG FIXES
  189. * Avoid use of 'with' in dulwich.index. (Jelmer Vernooij)
  190. * Be a little bit strict about OS behaviour in index tests.
  191. Should fix the tests on Debian GNU/kFreeBSD. (Jelmer Vernooij)
  192. 0.8.4 2012-03-28
  193. BUG FIXES
  194. * Options on the same line as sections in config files are now supported.
  195. (Jelmer Vernooij, #920553)
  196. * Only negotiate capabilities that are also supported by the server.
  197. (Rod Cloutier, Risto Kankkunen)
  198. * Fix parsing of invalid timezone offsets with two minus signs.
  199. (Jason R. Coombs, #697828)
  200. * Reset environment variables during tests, to avoid
  201. test isolation leaks reading ~/.gitconfig. (Risto Kankkunen)
  202. TESTS
  203. * $HOME is now explicitly specified for tests that use it to read
  204. ``~/.gitconfig``, to prevent test isolation issues.
  205. (Jelmer Vernooij, #920330)
  206. FEATURES
  207. * Additional arguments to get_transport_and_path are now passed
  208. on to the constructor of the transport. (Sam Vilain)
  209. * The WSGI server now transparently handles when a git client submits data
  210. using Content-Encoding: gzip.
  211. (David Blewett, Jelmer Vernooij)
  212. * Add dulwich.index.build_index_from_tree(). (milki)
  213. 0.8.3 2012-01-21
  214. FEATURES
  215. * The config parser now supports the git-config file format as
  216. described in git-config(1) and can write git config files.
  217. (Jelmer Vernooij, #531092, #768687)
  218. * ``Repo.do_commit`` will now use the user identity from
  219. .git/config or ~/.gitconfig if none was explicitly specified.
  220. (Jelmer Vernooij)
  221. BUG FIXES
  222. * Allow ``determine_wants`` methods to include the zero sha in their
  223. return value. (Jelmer Vernooij)
  224. 0.8.2 2011-12-18
  225. BUG FIXES
  226. * Cope with different zlib buffer sizes in sha1 file parser.
  227. (Jelmer Vernooij)
  228. * Fix get_transport_and_path for HTTP/HTTPS URLs.
  229. (Bruno Renié)
  230. * Avoid calling free_objects() on NULL in error cases. (Chris Eberle)
  231. * Fix use --bare argument to 'dulwich init'. (Chris Eberle)
  232. * Properly abort connections when the determine_wants function
  233. raises an exception. (Jelmer Vernooij, #856769)
  234. * Tweak xcodebuild hack to deal with more error output.
  235. (Jelmer Vernooij, #903840)
  236. FEATURES
  237. * Add support for retrieving tarballs from remote servers.
  238. (Jelmer Vernooij, #379087)
  239. * New method ``update_server_info`` which generates data
  240. for dumb server access. (Jelmer Vernooij, #731235)
  241. 0.8.1 2011-10-31
  242. FEATURES
  243. * Repo.do_commit has a new argument 'ref'.
  244. * Repo.do_commit has a new argument 'merge_heads'. (Jelmer Vernooij)
  245. * New ``Repo.get_walker`` method. (Jelmer Vernooij)
  246. * New ``Repo.clone`` method. (Jelmer Vernooij, #725369)
  247. * ``GitClient.send_pack`` now supports the 'side-band-64k' capability.
  248. (Jelmer Vernooij)
  249. * ``HttpGitClient`` which supports the smart server protocol over
  250. HTTP. "dumb" access is not yet supported. (Jelmer Vernooij, #373688)
  251. * Add basic support for alternates. (Jelmer Vernooij, #810429)
  252. CHANGES
  253. * unittest2 or python >= 2.7 is now required for the testsuite.
  254. testtools is no longer supported. (Jelmer Vernooij, #830713)
  255. BUG FIXES
  256. * Fix compilation with older versions of MSVC. (Martin gz)
  257. * Special case 'refs/stash' as a valid ref. (Jelmer Vernooij, #695577)
  258. * Smart protocol clients can now change refs even if they are
  259. not uploading new data. (Jelmer Vernooij, #855993)
  260. * Don't compile C extensions when running in pypy.
  261. (Ronny Pfannschmidt, #881546)
  262. * Use different name for strnlen replacement function to avoid clashing
  263. with system strnlen. (Jelmer Vernooij, #880362)
  264. API CHANGES
  265. * ``Repo.revision_history`` is now deprecated in favor of ``Repo.get_walker``.
  266. (Jelmer Vernooij)
  267. 0.8.0 2011-08-07
  268. FEATURES
  269. * New DeltaChainIterator abstract class for quickly iterating all objects in
  270. a pack, with implementations for pack indexing and inflation.
  271. (Dave Borowitz)
  272. * New walk module with a Walker class for customizable commit walking.
  273. (Dave Borowitz)
  274. * New tree_changes_for_merge function in diff_tree. (Dave Borowitz)
  275. * Easy rename detection in RenameDetector even without find_copies_harder.
  276. (Dave Borowitz)
  277. BUG FIXES
  278. * Avoid storing all objects in memory when writing pack.
  279. (Jelmer Vernooij, #813268)
  280. * Support IPv6 for git:// connections. (Jelmer Vernooij, #801543)
  281. * Improve performance of Repo.revision_history(). (Timo Schmid, #535118)
  282. * Fix use of SubprocessWrapper on Windows. (Paulo Madeira, #670035)
  283. * Fix compilation on newer versions of Mac OS X (Lion and up). (Ryan McKern, #794543)
  284. * Prevent raising ValueError for correct refs in RefContainer.__delitem__.
  285. * Correctly return a tuple from MemoryObjectStore.get_raw. (Dave Borowitz)
  286. * Fix a bug in reading the pack checksum when there are fewer than 20 bytes
  287. left in the buffer. (Dave Borowitz)
  288. * Support ~ in git:// URL paths. (Jelmer Vernooij, #813555)
  289. * Make ShaFile.__eq__ work when other is not a ShaFile. (Dave Borowitz)
  290. * ObjectStore.get_graph_walker() now no longer yields the same
  291. revision more than once. This has a significant improvement for
  292. performance when wide revision graphs are involved.
  293. (Jelmer Vernooij, #818168)
  294. * Teach ReceivePackHandler how to read empty packs. (Dave Borowitz)
  295. * Don't send a pack with duplicates of the same object. (Dave Borowitz)
  296. * Teach the server how to serve a clone of an empty repo. (Dave Borowitz)
  297. * Correctly advertise capabilities during receive-pack. (Dave Borowitz)
  298. * Fix add/add and add/rename conflicts in tree_changes_for_merge.
  299. (Dave Borowitz)
  300. * Use correct MIME types in web server. (Dave Borowitz)
  301. API CHANGES
  302. * write_pack no longer takes the num_objects argument and requires an object
  303. to be passed in that is iterable (rather than an iterator) and that
  304. provides __len__. (Jelmer Vernooij)
  305. * write_pack_data has been renamed to write_pack_objects and no longer takes a
  306. num_objects argument. (Jelmer Vernooij)
  307. * take_msb_bytes, read_zlib_chunks, unpack_objects, and
  308. PackStreamReader.read_objects now take an additional argument indicating a
  309. crc32 to compute. (Dave Borowitz)
  310. * PackObjectIterator was removed; its functionality is still exposed by
  311. PackData.iterobjects. (Dave Borowitz)
  312. * Add a sha arg to write_pack_object to incrementally compute a SHA.
  313. (Dave Borowitz)
  314. * Include offset in PackStreamReader results. (Dave Borowitz)
  315. * Move PackStreamReader from server to pack. (Dave Borowitz)
  316. * Extract a check_length_and_checksum, compute_file_sha, and
  317. pack_object_header pack helper functions. (Dave Borowitz)
  318. * Extract a compute_file_sha function. (Dave Borowitz)
  319. * Remove move_in_thin_pack as a separate method; add_thin_pack now completes
  320. the thin pack and moves it in in one step. Remove ThinPackData as well.
  321. (Dave Borowitz)
  322. * Custom buffer size in read_zlib_chunks. (Dave Borowitz)
  323. * New UnpackedObject data class that replaces ad-hoc tuples in the return
  324. value of unpack_object and various DeltaChainIterator methods.
  325. (Dave Borowitz)
  326. * Add a lookup_path convenience method to Tree. (Dave Borowitz)
  327. * Optionally create RenameDetectors without passing in tree SHAs.
  328. (Dave Borowitz)
  329. * Optionally include unchanged entries in RenameDetectors. (Dave Borowitz)
  330. * Optionally pass a RenameDetector to tree_changes. (Dave Borowitz)
  331. * Optionally pass a request object through to server handlers. (Dave Borowitz)
  332. TEST CHANGES
  333. * If setuptools is installed, "python setup.py test" will now run the testsuite.
  334. (Jelmer Vernooij)
  335. * Add a new build_pack test utility for building packs from a simple spec.
  336. (Dave Borowitz)
  337. * Add a new build_commit_graph test utility for building commits from a
  338. simple spec. (Dave Borowitz)
  339. 0.7.1 2011-04-12
  340. BUG FIXES
  341. * Fix double decref in _diff_tree.c. (Ted Horst, #715528)
  342. * Fix the build on Windows. (Pascal Quantin)
  343. * Fix get_transport_and_path compatibility with pre-2.6.5 versions of Python.
  344. (Max Bowsher, #707438)
  345. * BaseObjectStore.determine_wants_all no longer breaks on zero SHAs.
  346. (Jelmer Vernooij)
  347. * write_tree_diff() now supports submodules.
  348. (Jelmer Vernooij)
  349. * Fix compilation for XCode 4 and older versions of distutils.sysconfig.
  350. (Daniele Sluijters)
  351. IMPROVEMENTS
  352. * Sphinxified documentation. (Lukasz Balcerzak)
  353. * Add Pack.keep.(Marc Brinkmann)
  354. API CHANGES
  355. * The order of the parameters to Tree.add(name, mode, sha) has changed, and
  356. is now consistent with the rest of Dulwich. Existing code will still
  357. work but print a DeprecationWarning. (Jelmer Vernooij, #663550)
  358. * Tree.entries() is now deprecated in favour of Tree.items() and
  359. Tree.iteritems(). (Jelmer Vernooij)
  360. 0.7.0 2011-01-21
  361. FEATURES
  362. * New `dulwich.diff_tree` module for simple content-based rename detection.
  363. (Dave Borowitz)
  364. * Add Tree.items(). (Jelmer Vernooij)
  365. * Add eof() and unread_pkt_line() methods to Protocol. (Dave Borowitz)
  366. * Add write_tree_diff(). (Jelmer Vernooij)
  367. * Add `serve_command` function for git server commands as executables.
  368. (Jelmer Vernooij)
  369. * dulwich.client.get_transport_and_path now supports rsync-style repository URLs.
  370. (Dave Borowitz, #568493)
  371. BUG FIXES
  372. * Correct short-circuiting operation for no-op fetches in the server.
  373. (Dave Borowitz)
  374. * Support parsing git mbox patches without a version tail, as generated by
  375. Mercurial. (Jelmer Vernooij)
  376. * Fix dul-receive-pack and dul-upload-pack. (Jelmer Vernooij)
  377. * Zero-padded file modes in Tree objects no longer trigger an exception but
  378. the check code warns about them. (Augie Fackler, #581064)
  379. * Repo.init() now honors the mkdir flag. (#671159)
  380. * The ref format is now checked when setting a ref rather than when reading it back.
  381. (Dave Borowitz, #653527)
  382. * Make sure pack files are closed correctly. (Tay Ray Chuan)
  383. DOCUMENTATION
  384. * Run the tutorial inside the test suite. (Jelmer Vernooij)
  385. * Reorganized and updated the tutorial. (Jelmer Vernooij, Dave Borowitz, #610550,
  386. #610540)
  387. 0.6.2 2010-10-16
  388. BUG FIXES
  389. * HTTP server correctly handles empty CONTENT_LENGTH. (Dave Borowitz)
  390. * Don't error when creating GitFiles with the default mode. (Dave Borowitz)
  391. * ThinPackData.from_file now works with resolve_ext_ref callback.
  392. (Dave Borowitz)
  393. * Provide strnlen() on mingw32 which doesn't have it. (Hans Kolek)
  394. * Set bare=true in the configuratin for bare repositories. (Dirk Neumann)
  395. FEATURES
  396. * Use slots for core objects to save up on memory. (Jelmer Vernooij)
  397. * Web server supports streaming progress/pack output. (Dave Borowitz)
  398. * New public function dulwich.pack.write_pack_header. (Dave Borowitz)
  399. * Distinguish between missing files and read errors in HTTP server.
  400. (Dave Borowitz)
  401. * Initial work on support for fastimport using python-fastimport.
  402. (Jelmer Vernooij)
  403. * New dulwich.pack.MemoryPackIndex class. (Jelmer Vernooij)
  404. * Delegate SHA peeling to the object store. (Dave Borowitz)
  405. TESTS
  406. * Use GitFile when modifying packed-refs in tests. (Dave Borowitz)
  407. * New tests in test_web with better coverage and fewer ad-hoc mocks.
  408. (Dave Borowitz)
  409. * Standardize quote delimiters in test_protocol. (Dave Borowitz)
  410. * Fix use when testtools is installed. (Jelmer Vernooij)
  411. * Add trivial test for write_pack_header. (Jelmer Vernooij)
  412. * Refactor some of dulwich.tests.compat.server_utils. (Dave Borowitz)
  413. * Allow overwriting id property of objects in test utils. (Dave Borowitz)
  414. * Use real in-memory objects rather than stubs for server tests.
  415. (Dave Borowitz)
  416. * Clean up MissingObjectFinder. (Dave Borowitz)
  417. API CHANGES
  418. * ObjectStore.iter_tree_contents now walks contents in depth-first, sorted
  419. order. (Dave Borowitz)
  420. * ObjectStore.iter_tree_contents can optionally yield tree objects as well.
  421. (Dave Borowitz).
  422. * Add side-band-64k support to ReceivePackHandler. (Dave Borowitz)
  423. * Change server capabilities methods to classmethods. (Dave Borowitz)
  424. * Tweak server handler injection. (Dave Borowitz)
  425. * PackIndex1 and PackIndex2 now subclass FilePackIndex, which is
  426. itself a subclass of PackIndex. (Jelmer Vernooij)
  427. DOCUMENTATION
  428. * Add docstrings for various functions in dulwich.objects. (Jelmer Vernooij)
  429. * Clean up docstrings in dulwich.protocol. (Dave Borowitz)
  430. * Explicitly specify allowed protocol commands to
  431. ProtocolGraphWalker.read_proto_line. (Dave Borowitz)
  432. * Add utility functions to DictRefsContainer. (Dave Borowitz)
  433. 0.6.1 2010-07-22
  434. BUG FIXES
  435. * Fix memory leak in C implementation of sorted_tree_items. (Dave Borowitz)
  436. * Use correct path separators for named repo files. (Dave Borowitz)
  437. * python > 2.7 and testtools-based test runners will now also pick up skipped
  438. tests correctly. (Jelmer Vernooij)
  439. FEATURES
  440. * Move named file initilization to BaseRepo. (Dave Borowitz)
  441. * Add logging utilities and git/HTTP server logging. (Dave Borowitz)
  442. * The GitClient interface has been cleaned up and instances are now reusable.
  443. (Augie Fackler)
  444. * Allow overriding paths to executables in GitSSHClient.
  445. (Ross Light, Jelmer Vernooij, #585204)
  446. * Add PackBasedObjectStore.pack_loose_objects(). (Jelmer Vernooij)
  447. TESTS
  448. * Add tests for sorted_tree_items and C implementation. (Dave Borowitz)
  449. * Add a MemoryRepo that stores everything in memory. (Dave Borowitz)
  450. * Quiet logging output from web tests. (Dave Borowitz)
  451. * More flexible version checking for compat tests. (Dave Borowitz)
  452. * Compat tests for servers with and without side-band-64k. (Dave Borowitz)
  453. CLEANUP
  454. * Clean up file headers. (Dave Borowitz)
  455. TESTS
  456. * Use GitFile when modifying packed-refs in tests. (Dave Borowitz)
  457. API CHANGES
  458. * dulwich.pack.write_pack_index_v{1,2} now take a file-like object
  459. rather than a filename. (Jelmer Vernooij)
  460. * Make dul-daemon/dul-web trivial wrappers around server functionality.
  461. (Dave Borowitz)
  462. * Move reference WSGI handler to web.py. (Dave Borowitz)
  463. * Factor out _report_status in ReceivePackHandler. (Dave Borowitz)
  464. * Factor out a function to convert a line to a pkt-line. (Dave Borowitz)
  465. 0.6.0 2010-05-22
  466. note: This list is most likely incomplete for 0.6.0.
  467. BUG FIXES
  468. * Fix ReceivePackHandler to disallow removing refs without delete-refs.
  469. (Dave Borowitz)
  470. * Deal with capabilities required by the client, even if they
  471. can not be disabled in the server. (Dave Borowitz)
  472. * Fix trailing newlines in generated patch files.
  473. (Jelmer Vernooij)
  474. * Implement RefsContainer.__contains__. (Jelmer Vernooij)
  475. * Cope with \r in ref files on Windows. (
  476. http://github.com/jelmer/dulwich/issues/#issue/13, Jelmer Vernooij)
  477. * Fix GitFile breakage on Windows. (Anatoly Techtonik, #557585)
  478. * Support packed ref deletion with no peeled refs. (Augie Fackler)
  479. * Fix send pack when there is nothing to fetch. (Augie Fackler)
  480. * Fix fetch if no progress function is specified. (Augie Fackler)
  481. * Allow double-staging of files that are deleted in the index.
  482. (Dave Borowitz)
  483. * Fix RefsContainer.add_if_new to support dangling symrefs.
  484. (Dave Borowitz)
  485. * Non-existant index files in non-bare repositories are now treated as
  486. empty. (Dave Borowitz)
  487. * Always update ShaFile.id when the contents of the object get changed.
  488. (Jelmer Vernooij)
  489. * Various Python2.4-compatibility fixes. (Dave Borowitz)
  490. * Fix thin pack handling. (Dave Borowitz)
  491. FEATURES
  492. * Add include-tag capability to server. (Dave Borowitz)
  493. * New dulwich.fastexport module that can generate fastexport
  494. streams. (Jelmer Vernooij)
  495. * Implemented BaseRepo.__contains__. (Jelmer Vernooij)
  496. * Add __setitem__ to DictRefsContainer. (Dave Borowitz)
  497. * Overall improvements checking Git objects. (Dave Borowitz)
  498. * Packs are now verified while they are received. (Dave Borowitz)
  499. TESTS
  500. * Add framework for testing compatibility with C Git. (Dave Borowitz)
  501. * Add various tests for the use of non-bare repositories. (Dave Borowitz)
  502. * Cope with diffstat not being available on all platforms.
  503. (Tay Ray Chuan, Jelmer Vernooij)
  504. * Add make_object and make_commit convenience functions to test utils.
  505. (Dave Borowitz)
  506. API BREAKAGES
  507. * The 'committer' and 'message' arguments to Repo.do_commit() have
  508. been swapped. 'committer' is now optional. (Jelmer Vernooij)
  509. * Repo.get_blob, Repo.commit, Repo.tag and Repo.tree are now deprecated.
  510. (Jelmer Vernooij)
  511. * RefsContainer.set_ref() was renamed to RefsContainer.set_symbolic_ref(),
  512. for clarity. (Jelmer Vernooij)
  513. API CHANGES
  514. * The primary serialization APIs in dulwich.objects now work
  515. with chunks of strings rather than with full-text strings.
  516. (Jelmer Vernooij)
  517. 0.5.02010-03-03
  518. BUG FIXES
  519. * Support custom fields in commits (readonly). (Jelmer Vernooij)
  520. * Improved ref handling. (Dave Borowitz)
  521. * Rework server protocol to be smarter and interoperate with cgit client.
  522. (Dave Borowitz)
  523. * Add a GitFile class that uses the same locking protocol for writes as
  524. cgit. (Dave Borowitz)
  525. * Cope with forward slashes correctly in the index on Windows.
  526. (Jelmer Vernooij, #526793)
  527. FEATURES
  528. * --pure option to setup.py to allow building/installing without the C
  529. extensions. (Hal Wine, Anatoly Techtonik, Jelmer Vernooij, #434326)
  530. * Implement Repo.get_config(). (Jelmer Vernooij, Augie Fackler)
  531. * HTTP dumb and smart server. (Dave Borowitz)
  532. * Add abstract baseclass for Repo that does not require file system
  533. operations. (Dave Borowitz)
  534. 0.4.1 2010-01-03
  535. FEATURES
  536. * Add ObjectStore.iter_tree_contents(). (Jelmer Vernooij)
  537. * Add Index.changes_from_tree(). (Jelmer Vernooij)
  538. * Add ObjectStore.tree_changes(). (Jelmer Vernooij)
  539. * Add functionality for writing patches in dulwich.patch.
  540. (Jelmer Vernooij)
  541. 0.4.0 2009-10-07
  542. DOCUMENTATION
  543. * Added tutorial.
  544. API CHANGES
  545. * dulwich.object_store.tree_lookup_path will now return the mode and
  546. sha of the object found rather than the object itself.
  547. BUG FIXES
  548. * Use binascii.hexlify / binascii.unhexlify for better performance.
  549. * Cope with extra unknown data in index files by ignoring it (for now).
  550. * Add proper error message when server unexpectedly hangs up. (#415843)
  551. * Correctly write opcode for equal in create_delta.
  552. 0.3.3 2009-07-23
  553. FEATURES
  554. * Implement ShaFile.__hash__().
  555. * Implement Tree.__len__()
  556. BUG FIXES
  557. * Check for 'objects' and 'refs' directories
  558. when looking for a Git repository. (#380818)
  559. 0.3.2 2009-05-20
  560. BUG FIXES
  561. * Support the encoding field in Commits.
  562. * Some Windows compatibility fixes.
  563. * Fixed several issues in commit support.
  564. FEATURES
  565. * Basic support for handling submodules.
  566. 0.3.1 2009-05-13
  567. FEATURES
  568. * Implemented Repo.__getitem__, Repo.__setitem__ and Repo.__delitem__ to
  569. access content.
  570. API CHANGES
  571. * Removed Repo.set_ref, Repo.remove_ref, Repo.tags, Repo.get_refs and
  572. Repo.heads in favor of Repo.refs, a dictionary-like object for accessing
  573. refs.
  574. BUG FIXES
  575. * Removed import of 'sha' module in objects.py, which was causing
  576. deprecation warnings on Python 2.6.
  577. 0.3.0 2009-05-10
  578. FEATURES
  579. * A new function 'commit_tree' has been added that can commit a tree
  580. based on an index.
  581. BUG FIXES
  582. * The memory usage when generating indexes has been significantly reduced.
  583. * A memory leak in the C implementation of parse_tree has been fixed.
  584. * The send-pack smart server command now works. (Thanks Scott Chacon)
  585. * The handling of short timestamps (less than 10 digits) has been fixed.
  586. * The handling of timezones has been fixed.
  587. 0.2.1 2009-04-30
  588. BUG FIXES
  589. * Fix compatibility with Python2.4.
  590. 0.2.0 2009-04-30
  591. FEATURES
  592. * Support for activity reporting in smart protocol client.
  593. * Optional C extensions for better performance in a couple of
  594. places that are performance-critical.
  595. 0.1.1 2009-03-13
  596. BUG FIXES
  597. * Fixed regression in Repo.find_missing_objects()
  598. * Don't fetch ^{} objects from remote hosts, as requesting them
  599. causes a hangup.
  600. * Always write pack to disk completely before calculating checksum.
  601. FEATURES
  602. * Allow disabling thin packs when talking to remote hosts.
  603. 0.1.0 2009-01-24
  604. * Initial release.