NEWS 40 KB

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