~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

Merge config-stack into config-concrete-stacks

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
.. Improvements to existing commands, especially improved performance 
27
27
   or memory usage, or better results.
28
28
 
 
29
* Slightly reduced memory consumption when fetching into a 2a repository
 
30
  by reusing existing caching a little better.  (Andrew Bennetts)
 
31
 
29
32
Bug Fixes
30
33
*********
31
34
 
32
35
.. Fixes for situations where bzr would previously crash or give incorrect
33
36
   or undesirable results.
34
37
 
 
38
* All Tree types can now be exported as tar.*, zip or directories.
 
39
  (Aaron Bentley)
 
40
  
 
41
* Correct parent is now set when using 'switch -b' with bound branches.
 
42
  (A. S. Budden, #513709)
 
43
 
35
44
Documentation
36
45
*************
37
46
 
43
52
.. Changes that may require updates in plugins or other code that uses
44
53
   bzrlib.
45
54
 
 
55
* ``annotate_file`` has been deprecated in favor of
 
56
  ``annotate_file_revision_tree``. (Jelmer Vernooij, #775598)
 
57
 
46
58
Internals
47
59
*********
48
60
 
171
183
.. Changes that may require updates in plugins or other code that uses
172
184
   bzrlib.
173
185
 
 
186
* ``Branch.update_revisions`` has been made private and should no
 
187
  longer be used by external users. Use ``Branch.pull`` or ``Branch.push``
 
188
  instead. (Jelmer Vernooij, #771765)
 
189
 
174
190
* Commands now have an `invoked_as` attribute, showing the name under
175
191
  which they were called before alias expansion.
176
192
  (Martin Pool)
425
441
  ``RepositoryFormat.supports_leaving_lock`` flags have been added.
426
442
  (Jelmer Vernooij)
427
443
 
 
444
* ``Branch.fetch`` implementations must now accept an optional
 
445
  ``fetch_tags`` keyword argument. (Andrew Bennetts)
 
446
 
428
447
* ``Branch.import_last_revision_info`` is deprecated.  Use the
429
448
  ``import_last_revision_info_and_tags`` method instead.
430
449
  (Andrew Bennetts)