~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

MergeĀ fromĀ old-hpss-branch-implementation-test.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
IN DEVELOPMENT
9
9
--------------
10
10
 
11
 
  BUG FIXES:
12
 
 
13
11
  IMPROVEMENTS:
14
12
 
15
13
    * ``bzr export --format=tgz --root=NAME -`` to export a gzipped tarball 
18
16
 
19
17
  BUGFIXES:
20
18
 
 
19
    * Clearer message about how to set the PYTHONPATH if bzrlib can't be
 
20
      loaded. 
 
21
      (Martin Pool, #205230)
 
22
 
 
23
    * Errors about missing libraries are now shown without a traceback,
 
24
      and with a suggestion to install the library.  The full traceback is 
 
25
      still in ``.bzr.log`` and can be shown with ``-Derror``.
 
26
      (Martin Pool, #240161)
 
27
 
 
28
    * ``needs_read_lock`` and ``needs_write_lock`` now suppress an error during
 
29
      ``unlock`` if there was an error in the original function. This helps
 
30
      most when there is a failure with a smart server action, since often the
 
31
      connection closes and we cannot unlock.
 
32
      (Andrew Bennetts, John Arbash Meinel, #125784)
 
33
 
 
34
    * Obsolete hidden command ``bzr fetch`` removed.
 
35
      (Martin Pool, #172870)
 
36
 
 
37
    * Raise the correct exception when doing ``-rbefore:0`` or ``-c0``.
 
38
      (John Arbash Meinel, #239933)
 
39
 
21
40
    * You can now compare file revisions in Windows diff programs from 
22
41
      Cygwin Bazaar.
23
42
      (Matt McClure, #209281)
24
43
 
 
44
    * revision_history now tolerates mainline ghosts for Branch format 6.
 
45
      (Aaron Bentley, #235055)
 
46
 
25
47
  DOCUMENTATION:
26
48
 
27
 
   * Updated developer documentation.
28
 
     (Martin Pool)
 
49
    * Updated developer documentation.
 
50
      (Martin Pool)
29
51
 
30
52
  TESTING:
31
53
 
 
54
   * ``TestCaseWithTransport.make_branch_and_tree`` tries harder to return
 
55
     a tree with a ``branch`` attribute of the right format.  This was
 
56
     preventing some ``RemoteBranch`` tests from actually running with
 
57
     ``RemoteBranch`` instances.  (Andrew Bennetts)
 
58
 
32
59
  API CHANGES:
33
60
 
34
61
    * ``Branch.pull`` now accepts an ``_override_hook_target`` optional
53
80
      reading from the repository.)
54
81
      (Martin Pool, Andrew Bennetts, Robert Collins, #234748)
55
82
 
 
83
    * ``bzr status`` was breaking if you merged the same revision twice.
 
84
      (John Arbash Meinel, #235407)
 
85
 
56
86
    * Fix infinite loop consuming 100% CPU when a connection is lost while
57
87
      reading a response body via the smart protocol v1 or v2.
58
88
      (Andrew Bennetts)
85
115
    * Faster branching (1.09x) and lightweight checkouts (1.06x) on large trees.
86
116
      (Ian Clatworthy, Aaron Bentley)
87
117
 
88
 
  BUGFIXES:
89
 
 
90
 
    * ``bzr status`` was breaking if you merged the same revision twice.
91
 
      (John Arbash Meinel, #235407)
92
 
 
93
118
  DOCUMENTATION:
94
119
 
95
120
    * Added *Bazaar Zen* section to the User Guide. (Ian Clatworthy)