~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Martin Pool
  • Date: 2006-10-04 06:43:08 UTC
  • mfrom: (2058 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2061.
  • Revision ID: mbp@sourcefrog.net-20061004064308-7e642680b07c5107
merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
IN DEVELOPMENT
2
2
 
3
 
bzr 0.11rc1  2006-09-18
 
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
    * When reverting, files that are not locally modified that do not exist
 
23
      in the target are deleted, not just unversioned (Aaron Bentley)
 
24
 
 
25
    * When trying to acquire a lock, don't fail immediately. Instead, try
 
26
      a few times (up to 1 hour) before timing out. Also, report why the
 
27
      lock is unavailable (John Arbash Meinel, #43521, #49556)
 
28
 
 
29
    * Leave HttpTransportBase daughter classes decides how they
 
30
      implement cloning. (Vincent Ladeuil, #61606)
 
31
 
 
32
bzr 0.11  2006-10-02
 
33
 
 
34
    * Smart server transport test failures on windows fixed. (Lukáš Lalinský).
 
35
 
 
36
bzr 0.11rc2  2006-09-27
 
37
 
 
38
  BUG FIXES:
 
39
 
 
40
    * Test suite hangs on windows fixed. (Andrew Bennets, Alexander Belchenko).
 
41
    
 
42
    * Commit performance regression fixed. (Aaron Bentley, Robert Collins, John
 
43
      Arbash Meinel).
 
44
 
 
45
bzr 0.11rc1  2006-09-25
4
46
 
5
47
  IMPROVEMENTS:
6
48
 
149
191
      needs_tree_write_lock is provided in the workingtree module. Like the
150
192
      needs_read_lock and needs_write_lock decorators this allows static 
151
193
      declaration of the locking requirements of a function to ensure that
152
 
      a lock is taken out for casual scripts. (Robert Collins)
 
194
      a lock is taken out for casual scripts. (Robert Collins, #54107)
153
195
 
154
196
    * All WorkingTree methods which write to the tree, but not to the branch
155
197
      have been converted to use ``needs_tree_write_lock`` rather than