/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« 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:
2
2
 
3
3
  IMPROVEMENTS:
4
4
 
 
5
    * Knit files now wait to create their contents until the first data is
 
6
      added. The old code used to create an empty .knit and a .kndx with just
 
7
      the header. However, this caused a lot of extra round trips over sftp.
 
8
      This can change the time for ``bzr push`` to create a new remote branch
 
9
      from 160s down to 100s. This also affects ``bzr commit`` performance when
 
10
      adding new files, ``bzr commit`` on a new kernel-like tree drops from 50s
 
11
      down to 40s (John Arbash Meinel, #44692)
 
12
 
5
13
  BUG FIXES:
 
14
 
 
15
    * Handle boundary="" lines properly to allow access through a Squid proxy.
 
16
      (John Arbash Meinel, #57723)
 
17
 
6
18
    * revert now removes newly-added directories (Aaron Bentley, #54172)
7
19
 
8
20
    * ``bzr upgrade sftp://`` shouldn't fail to upgrade v6 branches if there 
9
21
      isn't a working tree. (David Allouche, #40679)
10
22
 
 
23
    * Give nicer error messages when a user supplies an invalid --revision
 
24
      parameter. (John Arbash Meinel, #55420)
 
25
 
11
26
    * Handle when LANG is not recognized by python. Emit a warning, but
12
27
      just revert to using 'ascii'. (John Arbash Meinel, #35392)
13
28
 
24
39
      return urlescaped paths. This is now tested (there were bugs in a few
25
40
      of the transports) (Andrew Bennetts, David Allouche, John Arbash Meinel)
26
41
 
 
42
    * New utility function symbol_versioning.deprecation_string. Returns the
 
43
      formatted string for a callable, deprecation format pair. (Robert Collins)
 
44
 
 
45
    * New TestCase helper applyDeprecated. This allows you to call a callable
 
46
      which is deprecated without it spewing to the screen, just by supplying
 
47
      the deprecation format string issued for it. (Robert Collins)
 
48
 
 
49
    * Transport.append and Transport.put have been deprecated in favor of
 
50
      .append_bytes, .append_file, .put_bytes, and .put_file. This removes the
 
51
      ambiguity in what type of object the functions take.
 
52
      Transport.non_atomic_put_{bytes,file} has also been added. Which works
 
53
      similarly to Transport.append() except for SFTP, it doesn't have a round
 
54
      trip when opening the file. Also, it provides functionality for creating
 
55
      a parent directory when trying to create a file, rather than raise
 
56
      NoSuchFile and forcing the caller to repeat their request.
 
57
      (John Arbash Meinel)
 
58
 
27
59
bzr 0.10.0RC1  2006-08-28
28
60
  
29
61
  IMPROVEMENTS: