~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: John Arbash Meinel
  • Date: 2009-12-21 16:45:39 UTC
  • mfrom: (4634.108.5 2.0)
  • mto: (4634.108.6 2.0)
  • mto: This revision was merged to the branch mainline in revision 4928.
  • Revision ID: john@arbash-meinel.com-20091221164539-5xz1zy24f4ca1c07
Merge bzr.stable 4713, resolve NEWS

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
bzr 2.0.4 (not released yet)
9
9
############################
10
10
 
11
 
:Codename: template
 
11
:Codename:
12
12
:2.0.4: ???
13
13
 
14
14
Compatibility Breaks
20
20
Bug Fixes
21
21
*********
22
22
 
 
23
* ``bzr export dir`` now requests all file content as a record stream,
 
24
  rather than requsting the file content one file-at-a-time. This can make
 
25
  exporting over the network significantly faster (54min => 9min in one
 
26
  case). (John Arbash Meinel, #343218)
 
27
 
 
28
* ``bzr serve`` no longer slowly leaks memory. The compiled
 
29
  ``bzrlib.bencode.Encoder()`` class was using ``__del__`` to cleanup and
 
30
  free resources, and it should have been using ``__dealloc__``.
 
31
  This will likely have an impact on any other process that is serving for
 
32
  an extended period of time.  (John Arbash Meinel, #494406)
 
33
 
23
34
* The 2a format wasn't properly restarting autopacks when something
24
35
  changed underneath it (like another autopack). Now concurrent
25
36
  autopackers will properly succeed. (John Arbash Meinel, #495000)