NEWS 39 KB

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