NEWS 42 KB

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