2
0

NEWS 38 KB

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