~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

Merge cleanup into first-try

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
Bug Fixes
44
44
*********
45
45
 
 
46
* ``bzr branch`` to a new repository with a default stacking policy no
 
47
  longer transfers the full history unnecessarily.
 
48
  (Andrew Bennetts, #597942)
 
49
 
46
50
* ``bzr init`` does not recursively scan directory contents anymore
47
51
  leading to faster init for directories with existing content.
48
52
  (Martin [gz], Parth Malwankar, #501307)
50
54
* ``bzr log --exclude-common-ancestry`` is now taken into account for
51
55
  linear ancetries. (Vincent Ladeuil, #575631)
52
56
 
 
57
* ``bzr log -r branch:REMOTE`` can now properly log the remote branch,
 
58
  rather than trying to fetch the data locally and failing because of a
 
59
  readonly error. (Martin von Gagern, #149270)
 
60
 
53
61
* ``bzr pull`` now works when a lp: URL is explicitly defined as the parent
54
62
  or pull location in locations.conf or branch.conf.
55
63
  (Gordon Tyler, #534787)
56
64
 
 
65
* ``BzrDir.find_branches`` should ignore branches with missing repositories.
 
66
  (Marius Kruger, Robert Collins)
 
67
 
 
68
* ``BzrDir.find_bzrdirs`` should ignore dirs that raises PermissionDenied.
 
69
  (Marius Kruger, Robert Collins)
 
70
 
57
71
* Ensure that wrong path specifications in ``BZR_PLUGINS_AT`` display
58
72
  proper error messages. (Vincent Ladeuil, #591215)
59
73
 
170
184
Internals
171
185
*********
172
186
 
 
187
* ``bzrlib.osutils.get_terminal_encoding`` will now only mutter its
 
188
  selection when explicitly requested; this avoids many duplicate calls
 
189
  being logged when helpers, wrappers and older code that manually calls
 
190
  it are executed it is now logged deliberately by the ui setup code.
 
191
  (Robert Collins)
 
192
 
173
193
* Improved ``bzrlib.urlutils`` to handle lp:foo/bar URLs. (Gordon Tyler)
174
194
 
 
195
* ``bzrlib._c_static_tuple.StaticTuple`` now implements ``__sizeof__``, so
 
196
  that ``sys.getsizeof`` and other memory analysis tools will report more
 
197
  accurate results. (Andrew Bennetts)
 
198
 
 
199
* The symbol_versioning module can now cleanup after itself -
 
200
  ``suppress_deprecation_warnings`` now returns a cleanup function.
 
201
  (Robert Collins)
 
202
 
175
203
Testing
176
204
*******
177
205