~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Jonathan Lange
  • Date: 2009-06-26 05:09:06 UTC
  • mto: (4484.1.1 bring-1.16.1-back)
  • mto: This revision was merged to the branch mainline in revision 4485.
  • Revision ID: jml@canonical.com-20090626050906-nh5ve4tmnaj2c79q
Cherrypick bzr.dev r4477.

Fix bug 390563 -- AbsentContentFactory raised when streaming stacked 2a 
branches.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
.. contents:: List of Releases
7
7
   :depth: 1
8
8
 
 
9
* We now properly request a more minimal set of file texts when fetching
 
10
  multiple revisions. (Robert Collins, John Arbash Meinel, #390563)
 
11
 
9
12
* Repositories using CHK pages (which includes the new 2a format) will no
10
13
  longer error during commit or push operations when an autopack operation
11
14
  is triggered. (Robert Collins, #365615)
12
15
 
 
16
 
 
17
* ``chk_map.iter_interesting_nodes`` now properly uses the *intersection*
 
18
  of referenced nodes rather than the *union* to determine what
 
19
  uninteresting pages we still need to look at. Prior to this,
 
20
  incrementally pushing to stacked branch would push the minimal data, but
 
21
  fetching everything would request extra texts. There are some unhandled
 
22
  cases wrt trees of different depths, but this fixes the common cases.
 
23
  (Robert Collins, John Arbash Meinel, #390563)
 
24
 
13
25
* ``GroupCompress`` repositories now take advantage of the pack hints
14
26
  parameter to permit cross-format fetching to incrementally pack the
15
27
  converted data. (Robert Collins)