~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/en/release-notes/bzr-2.3.txt

  • Committer: Martin Packman
  • Date: 2012-01-05 09:50:04 UTC
  • mfrom: (6424 +trunk)
  • mto: This revision was merged to the branch mainline in revision 6426.
  • Revision ID: martin.packman@canonical.com-20120105095004-mia9xb7y0efmto0v
Merge bzr.dev to resolve conflicts in bzrlib.builtins

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
* Cope cleanly with buggy HTTP proxies that close the socket in the middle
36
36
  of a multipart response.  (Martin Pool, #198646).
37
37
 
 
38
* Fix "Unprintable exception" error when a RetryWithNewPacks error is
 
39
  displayed.  (Andrew Bennetts)
 
40
 
38
41
Documentation
39
42
*************
40
43
 
87
90
.. Improvements to existing commands, especially improved performance 
88
91
   or memory usage, or better results.
89
92
 
 
93
* Tweak an RPC implementation for ``Repository.get_parent_map``, it was
 
94
  doing an inefficient ``small_set.difference_update(large_set)`` when we
 
95
  can do ``small_set = small_set.difference(large_set)``. This speeds up
 
96
  discovery time by about 10%. (John Arbash Meinel)
 
97
 
90
98
Bug Fixes
91
99
*********
92
100