NEWS 34 KB

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