~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/en/release-notes/bzr-2.4.txt

merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
* ``bzr annotate -r-1 file`` will now properly annotate a deleted file.
51
51
  (Andrew King, #537442)
52
52
 
 
53
* ``bzr export`` to zip files will now set a mode on directories.
 
54
  (Jelmer Vernooij, #207253)
 
55
 
53
56
* ``bzr push --overwrite`` with an older revision specified will now correctly
54
57
  roll back the target branch. (Jelmer Vernooij, #386576)
55
58
 
68
71
  paths, however they may still print junk if not on a UTF-8 terminal.
69
72
  (Martin [gz], #707954)
70
73
 
 
74
* ``bzr reconfigure --unstacked`` now copies revisions (and their
 
75
  ancestors) named in tags into the unstacked repository, not just the
 
76
  ancestry of the branch's tip.  (Andrew Bennetts, #401646)
 
77
 
71
78
* ``bzr serve`` no longer crashes when a server_started hook is installed and
72
79
  IPv6 support is available on the system. (Jelmer Vernooij, #293697)
73
80
 
86
93
  ``bzr plugins`` and in crash reports.
87
94
  (#704195, Martin Pool)
88
95
 
 
96
* The "pretty" version of ``needs_read_lock`` and ``needs_write_lock`` now
 
97
  preserves the identity of default parameter values.
 
98
  (Andrew Bennetts, #718569)
 
99
 
89
100
* ``bzr dump-btree --raw`` no longer tracebacks on a B-Tree file
90
101
  containing no rows. (Eric Siegerman, #715508)
91
102
 
 
103
* Fix ``bzr lp-mirror`` to work on command line branch URLs and branches
 
104
  without an explicit public location. (Max Bowsher)
 
105
 
92
106
Documentation
93
107
*************
94
108
 
128
142
* ``CatchingExceptionThread`` (formerly ThreadWithException) has been moved
129
143
  out of the ``bzrlib.tests`` hierarchy to make it clearer that it can be used
130
144
  outside of tests. This class makes it easier to track exceptions in threads
131
 
  by cacthing them so they can be re-raised in the controlling thread.
132
 
  (Vincent Ladeuil)
 
145
  by cacthing them so they can be re-raised in the controlling thread. It's
 
146
  available in the ``bzrlib.cethread`` module.  (Vincent Ladeuil)
 
147
 
 
148
* ``HookPoint.lazy_hook`` and ``Hooks.install_named_lazy_hook`` can install 
 
149
  hooks for which the callable is loaded lazily.  (Jelmer Vernooij)
133
150
 
134
151
Testing
135
152
*******