~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Patch Queue Manager
  • Date: 2012-02-03 10:59:42 UTC
  • mfrom: (6461.1.1 trunk)
  • Revision ID: pqm@pqm.ubuntu.com-20120203105942-zq9f2k9i5a2akbvu
(vila) Merge 2.5 branch (Vincent Ladeuil)

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
.. toctree::
6
6
   :maxdepth: 1
7
7
 
8
 
bzr 2.5b6
 
8
bzr 2.5.0
9
9
#########
10
10
 
11
 
:2.5b6: NOT RELEASED YET
 
11
:Codename: Phillip
 
12
:2.5.0: NOT RELEASED YET
12
13
 
13
14
External Compatibility Breaks
14
15
*****************************
20
21
 
21
22
.. New commands, options, etc that users may wish to try out.
22
23
 
 
24
Improvements
 
25
************
 
26
 
 
27
.. Improvements to existing commands, especially improved performance 
 
28
   or memory usage, or better results.
 
29
 
 
30
Bug Fixes
 
31
*********
 
32
 
 
33
.. Fixes for situations where bzr would previously crash or give incorrect
 
34
   or undesirable results.
 
35
 
 
36
Documentation
 
37
*************
 
38
 
 
39
.. Improved or updated documentation.
 
40
 
 
41
API Changes
 
42
***********
 
43
 
 
44
.. Changes that may require updates in plugins or other code that uses
 
45
   bzrlib.
 
46
 
 
47
Internals
 
48
*********
 
49
 
 
50
.. Major internal changes, unlikely to be visible to users or plugin 
 
51
   developers, but interesting for bzr developers.
 
52
 
 
53
Testing
 
54
*******
 
55
 
 
56
.. Fixes and changes that are only relevant to bzr's test framework and 
 
57
   suite.  This can include new facilities for writing tests, fixes to 
 
58
   spurious test failures and changes to the way things should be tested.
 
59
 
 
60
 
 
61
bzr 2.5b6
 
62
#########
 
63
 
 
64
:2.5b6: 2012-02-02
 
65
 
 
66
This is the sixth (and last (really)) beta of the 2.5 series, leading to a
 
67
2.5.0 release in March 2012. Beta releases are suitable for everyday use
 
68
but may cause some incompatibilities with plugins.
 
69
 
 
70
This introduces the support for colocated branches into the '2a' format in a
 
71
backward compatible way, fix more glitches in the colocated UI, verify https
 
72
certificates for the urllib https client implementation, fix some more
 
73
unicode issues and more.
 
74
 
 
75
All bugs fixed in previous series known at the time of this release are
 
76
included.
 
77
 
 
78
External Compatibility Breaks
 
79
*****************************
 
80
 
 
81
None.
 
82
 
 
83
New Features
 
84
************
 
85
 
23
86
* Support for colocated branches is now available in the default
24
87
  format ("2a"). (Jelmer Vernooij)
25
88
 
26
89
Improvements
27
90
************
28
91
 
29
 
.. Improvements to existing commands, especially improved performance 
30
 
   or memory usage, or better results.
31
 
 
32
92
* ``bzr switch -b`` in a standalone tree will now create a colocated branch.
33
93
  (Jelmer Vernooij, #918197)
34
94
 
54
114
Bug Fixes
55
115
*********
56
116
 
57
 
.. Fixes for situations where bzr would previously crash or give incorrect
58
 
   or undesirable results.
59
 
 
60
117
* ``bzr branch`` now fetches revisions when branching into an empty
61
118
  control directory. (Jelmer Vernooij, #905594)
62
119
 
70
127
* ``bzr send`` works on treeless branches again.
71
128
  (Jelmer Vernooij, #921591)
72
129
 
 
130
* ``bzr version`` no longer throws a UnicodeDecodeError if the .bzr.log path
 
131
  contains non-ascii characters. (Martin Packman, #312841)
 
132
 
73
133
* Support scripts that don't call bzrlib.initialize() but still call run_bzr().
74
134
  (Vincent Ladeuil, #917733)
75
135
 
80
140
  validity as well as the hostname.
81
141
  (Jelmer Vernooij, Vincent Ladeuil, #651161)
82
142
 
83
 
Documentation
84
 
*************
85
 
 
86
 
.. Improved or updated documentation.
87
143
 
88
144
API Changes
89
145
***********
90
146
 
91
 
.. Changes that may require updates in plugins or other code that uses
92
 
   bzrlib.
 
147
* ``config.config_dir`` and related functions now always return paths as
 
148
  unicode. (Martin Packman, #825826)
93
149
 
94
150
* ``ControlDir`` now has a new method ``set_branch_reference`` which can
95
151
  be used for setting branch references. (Jelmer Vernooij)
97
153
* ``ControlDir.destroy_branch`` now raises ``NotBranchError`` rather than
98
154
  ``NoSuchFile`` if the branch didn't exist. (Jelmer Vernooij, #921693)
99
155
 
100
 
* New convenience API method ``WorkingTree.get_config_stack``.
101
 
  (Jelmer Vernooij)
102
 
 
103
156
Internals
104
157
*********
105
158
 
106
 
.. Major internal changes, unlikely to be visible to users or plugin 
107
 
   developers, but interesting for bzr developers.
108
 
 
109
159
* A new matcher ``RevisionHistoryMatches`` has been added. (Jelmer Vernooij)
110
160
 
111
161
* Add new module ``bzrlib.url_policy_open``. (Jelmer Vernooij, #850843)
118
168
Testing
119
169
*******
120
170
 
121
 
.. Fixes and changes that are only relevant to bzr's test framework and 
122
 
   suite.  This can include new facilities for writing tests, fixes to 
123
 
   spurious test failures and changes to the way things should be tested.
124
 
 
125
171
* Be more careful about closing open files for pypy interoperability.
126
172
  (Wouter van Heyst)
127
173