~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

Merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
IN DEVELOPMENT
2
2
 
3
3
  IMPROVEMENTS:
 
4
    * ``bzr help commands`` output is now shorter (Aaron Bentley)
 
5
 
 
6
  INTERNALS:
 
7
 
 
8
    * ``TestCase.run_bzr``, ``run_bzr_captured``, and ``run_bzr_subprocess``
 
9
      can take a ``working_dir='foo'`` parameter, which will change directory 
 
10
      for the command. (John Arbash Meinel)
 
11
 
 
12
  BUG FIXES:
 
13
 
 
14
    * bzr branch/pull no longer complain about progress bar cleanup when
 
15
      interrupted during fetch.  (Aaron Bentley, #54000)
 
16
 
 
17
    * ``WorkingTree.set_parent_trees()`` uses the trees to directly write
 
18
      the basis inventory, rather than going through the repository. This
 
19
      allows us to have 1 inventory read, and 2 inventory writes when
 
20
      committing a new tree. (John Arbash Meinel)
 
21
 
 
22
bzr 0.11rc2  2006-09-27
 
23
 
 
24
  BUG FIXES:
 
25
 
 
26
    * Test suite hangs on windows fixed. (Andrew Bennets, Alexander Belchenko).
 
27
    
 
28
    * Commit performance regression fixed. (Aaron Bentley, Robert Collins, John
 
29
      Arbash Meinel).
 
30
 
 
31
bzr 0.11rc1  2006-09-25
 
32
 
 
33
  IMPROVEMENTS:
4
34
 
5
35
    * Knit files now wait to create their contents until the first data is
6
36
      added. The old code used to create an empty .knit and a .kndx with just
42
72
 
43
73
  BUG FIXES:
44
74
 
 
75
    * 'bzr inventory [FILE...]' allows restricting the file list to a
 
76
      specific set of files. (John Arbash Meinel, #3631)
 
77
 
 
78
    * Don't abort when annotating empty files (John Arbash Meinel, #56814)
 
79
 
 
80
    * Add ``Stanza.to_unicode()`` which can be passed to another Stanza
 
81
      when nesting stanzas. Also, add ``read_stanza_unicode`` to handle when
 
82
      reading a nested Stanza. (John Arbash Meinel)
 
83
 
45
84
    * Transform._set_mode() needs to stat the right file. 
46
85
      (John Arbash Meinel, #56549)
47
86
 
84
123
      paths. This may not work perfectly on all platforms, but has the best
85
124
      chance of working in the common case. (John Arbash Meinel, #56816)
86
125
 
 
126
    * When committing, only files that exist in working tree or basis tree
 
127
      may be specified (Aaron Bentley, #50793)
 
128
 
 
129
  PORTABILITY:
 
130
 
 
131
    * Fixes to run on Python 2.5 (Brian M. Carlson, Martin Pool, Marien Zwart)
 
132
 
87
133
  INTERNALS:
88
134
 
89
135
    * TestCaseInTempDir now creates a separate directory for HOME, rather