2
0

NEWS 30 KB

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