~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Jelmer Vernooij
  • Date: 2012-02-06 11:36:02 UTC
  • mfrom: (6462 +trunk)
  • mto: This revision was merged to the branch mainline in revision 6463.
  • Revision ID: jelmer@samba.org-20120206113602-yu3j0xe7qbk1szw9
Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
bzr 2.5.0
9
9
#########
10
10
 
 
11
:Codename: Phillip
11
12
:2.5.0: NOT RELEASED YET
12
13
 
13
14
External Compatibility Breaks
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
 
 
120
* A sane default is provided for ``ssl.ca_certs`` which should points to the
 
121
  Certificate Authority bundle for supported platforms.
 
122
  (Vincent Ladeuil, #920455)
 
123
 
63
124
* ``bzr branch`` generates correct target branch locations again if not
64
125
  specified. (Jelmer Vernooij, #919218)
65
126
 
66
127
* ``bzr send`` works on treeless branches again.
67
128
  (Jelmer Vernooij, #921591)
68
129
 
 
130
* ``bzr version`` no longer throws a UnicodeDecodeError if the .bzr.log path
 
131
  contains non-ascii characters. (Martin Packman, #312841)
 
132
 
69
133
* Support scripts that don't call bzrlib.initialize() but still call run_bzr().
70
134
  (Vincent Ladeuil, #917733)
71
135
 
76
140
  validity as well as the hostname.
77
141
  (Jelmer Vernooij, Vincent Ladeuil, #651161)
78
142
 
79
 
Documentation
80
 
*************
81
 
 
82
 
.. Improved or updated documentation.
83
143
 
84
144
API Changes
85
145
***********
86
146
 
87
 
.. Changes that may require updates in plugins or other code that uses
88
 
   bzrlib.
 
147
* ``config.config_dir`` and related functions now always return paths as
 
148
  unicode. (Martin Packman, #825826)
89
149
 
90
150
* ``ControlDir`` now has a new method ``set_branch_reference`` which can
91
151
  be used for setting branch references. (Jelmer Vernooij)
92
152
 
 
153
* ``ControlDir.destroy_branch`` now raises ``NotBranchError`` rather than
 
154
  ``NoSuchFile`` if the branch didn't exist. (Jelmer Vernooij, #921693)
 
155
 
93
156
Internals
94
157
*********
95
158
 
96
 
.. Major internal changes, unlikely to be visible to users or plugin 
97
 
   developers, but interesting for bzr developers.
98
 
 
99
159
* A new matcher ``RevisionHistoryMatches`` has been added. (Jelmer Vernooij)
100
160
 
101
161
* Add new module ``bzrlib.url_policy_open``. (Jelmer Vernooij, #850843)
108
168
Testing
109
169
*******
110
170
 
111
 
.. Fixes and changes that are only relevant to bzr's test framework and 
112
 
   suite.  This can include new facilities for writing tests, fixes to 
113
 
   spurious test failures and changes to the way things should be tested.
114
 
 
115
171
* Be more careful about closing open files for pypy interoperability.
116
172
  (Wouter van Heyst)
117
173