NEWS 38 KB

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