~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

(jam) Merge 2.3 into 2.4 including the get_parent_map tweak.

Show diffs side-by-side

added added

removed removed

Lines of Context:
87
87
.. Improvements to existing commands, especially improved performance 
88
88
   or memory usage, or better results.
89
89
 
 
90
* Tweak an RPC implementation for ``Repository.get_parent_map``, it was
 
91
  doing an inefficient ``small_set.difference_update(large_set)`` when we
 
92
  can do ``small_set = small_set.difference(large_set)``. This speeds up
 
93
  discovery time by about 10%. (John Arbash Meinel)
 
94
 
90
95
Bug Fixes
91
96
*********
92
97