/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 doc/en/release-notes/bzr-2.6.txt

  • Committer: Vincent Ladeuil
  • Date: 2012-03-14 08:34:10 UTC
  • mto: This revision was merged to the branch mainline in revision 6501.
  • Revision ID: v.ladeuil+lp@free.fr-20120314083410-knnbugxnq7owem53
Remove deprecated code

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
####################
 
2
Bazaar Release Notes
 
3
####################
 
4
 
 
5
.. toctree::
 
6
   :maxdepth: 1
 
7
 
 
8
bzr 2.6b1
 
9
#########
 
10
 
 
11
:2.6b1: NOT RELEASED YET
 
12
 
 
13
External Compatibility Breaks
 
14
*****************************
 
15
 
 
16
.. These may require users to change the way they use Bazaar.
 
17
 
 
18
New Features
 
19
************
 
20
 
 
21
.. New commands, options, etc that users may wish to try out.
 
22
 
 
23
Improvements
 
24
************
 
25
 
 
26
.. Improvements to existing commands, especially improved performance 
 
27
   or memory usage, or better results.
 
28
 
 
29
* Access to HTTPS URLs now uses the urrllib implementation by default.
 
30
  For the old pycurl-based implementation, specify ``https+pycurl://`` as
 
31
  the URL scheme when accessing a HTTPS location.
 
32
  (Jelmer Vernooij, #125055)
 
33
 
 
34
* Add short option alias ``-N`` for ``--no-recurse``.
 
35
  (Jelmer Vernooij, #945904)
 
36
 
 
37
* Avoid 'Invalid range access' errors when whole files are retrieved with
 
38
  transport.http.get() . (Vincent Ladeuil, #924746)
 
39
 
 
40
* ``bzr rmbranch`` now supports removing colocated branches.
 
41
  (Jelmer Vernooij, #920653)
 
42
 
 
43
* ``bzr rmbranch`` no longer removes active branches unless ``--force``
 
44
  is specified. (Jelmer Vernooij, #922953)
 
45
 
 
46
* ``bzr verify-signatures`` now shows a progress bar.
 
47
  (Jelmer Vernooij)
 
48
 
 
49
* Two new command hooks, ``pre_command`` and ``post_command``,
 
50
  provide notification before and after a command has been run.
 
51
  (Brian de Alwis, Jelmer Vernooij)
 
52
 
 
53
Bug Fixes
 
54
*********
 
55
 
 
56
.. Fixes for situations where bzr would previously crash or give incorrect
 
57
   or undesirable results.
 
58
 
 
59
* Fix ``bzr config`` display for ``RegistryOption`` values.
 
60
  (Vincent Ladeuil, #930182)
 
61
 
 
62
Documentation
 
63
*************
 
64
 
 
65
.. Improved or updated documentation.
 
66
 
 
67
API Changes
 
68
***********
 
69
 
 
70
.. Changes that may require updates in plugins or other code that uses
 
71
   bzrlib.
 
72
 
 
73
* ``GPGStrategy.do_verifications`` has been deprecated.
 
74
  (Jelmer Vernooij)
 
75
 
 
76
* File ids in the ``Tree`` API can now be bytestring as previously,
 
77
  or tuples of bytestrings.
 
78
  (Jelmer Vernooij)
 
79
 
 
80
* ``mail_client`` now accepts a configuration stack object rather than
 
81
  an old style Config object. (Jelmer Vernooij)
 
82
 
 
83
* New method ``Repository.verify_revision_signatures``.
 
84
  (Jelmer Vernooij)
 
85
 
 
86
* New configuration option class ``RegistryOption`` which is backed
 
87
  onto a registry. (Jelmer Vernooij)
 
88
 
 
89
* New convenience API method ``WorkingTree.get_config_stack``.
 
90
  (Jelmer Vernooij)
 
91
 
 
92
* Remove ``Merge3Merger.scalar_three_way`` deprecated in 2.2.0,
 
93
  ``hooks.known_hooks_key_to_parent_and_attribute`` deprecated in 2.3,
 
94
  ``hooks.Hooks.create_hook`` deprecated in 2.4,
 
95
  ``inventory.Inventory.__contains__`` deprecated in 2.4.0,
 
96
  ``workingtree.WorkingTreeFormat.get_default_format`` deprecated in 2.4.0,
 
97
  ``workingtree.WorkingTreeFormat.register_format`` deprecated in 2.4.0,
 
98
  ``workingtree.WorkingTreeFormat.register_extra_format`` deprecated in 2.4.0,
 
99
  ``workingtree.WorkingTreeFormat.unregister_extra_format`` deprecated in 2.4.0,
 
100
  ``workingtree.WorkingTreeFormat.get_formats`` deprecated in 2.4.0,
 
101
  ``workingtree.WorkingTreeFormat.set_default_format`` deprecated in 2.4.0,
 
102
  ``workingtree.WorkingTreeFormat.unregister_format`` deprecated in 2.4.0,
 
103
  (Vincent Ladeuil)
 
104
 
 
105
Internals
 
106
*********
 
107
 
 
108
.. Major internal changes, unlikely to be visible to users or plugin 
 
109
   developers, but interesting for bzr developers.
 
110
 
 
111
* ``Tree.path2id`` now once again accepts a list of path elements
 
112
  in addition to a path. (Jelmer Vernooij)
 
113
 
 
114
* Turn config option expansion on by default. The only options for which
 
115
  this should be disabled are templates which should already have used
 
116
  conf.get(option, expand=False) or conf.get_user_option(option,
 
117
  expand=False). (Vincent Ladeuil)
 
118
 
 
119
Testing
 
120
*******
 
121
 
 
122
.. Fixes and changes that are only relevant to bzr's test framework and 
 
123
   suite.  This can include new facilities for writing tests, fixes to 
 
124
   spurious test failures and changes to the way things should be tested.
 
125
 
 
126
..
 
127
   vim: tw=74 ft=rst ff=unix