~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Patch Queue Manager
  • Date: 2012-03-30 01:58:47 UTC
  • mfrom: (6511.3.2 co-alias)
  • Revision ID: pqm@pqm.ubuntu.com-20120330015847-a0usc8fbawzc1bu4
(jelmer) Add co: directory service. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
.. toctree::
6
6
   :maxdepth: 1
7
7
 
8
 
bzr 2.6b1
 
8
bzr 2.6b2
9
9
#########
10
10
 
11
 
:2.6b1: NOT RELEASED YET
 
11
:2.6b2: NOT RELEASED YET
12
12
 
13
13
External Compatibility Breaks
14
14
*****************************
26
26
.. Improvements to existing commands, especially improved performance 
27
27
   or memory usage, or better results.
28
28
 
 
29
* Colocated branches can now be addressed using the 'co:NAME' rather than
 
30
  the more complex 'file://.,branch=NAME'. (Jelmer Vernooij, #833665)
 
31
 
 
32
Bug Fixes
 
33
*********
 
34
 
 
35
.. Fixes for situations where bzr would previously crash or give incorrect
 
36
   or undesirable results.
 
37
 
 
38
Documentation
 
39
*************
 
40
 
 
41
.. Improved or updated documentation.
 
42
 
 
43
* Force format registration to avoid generate_docs.py traceback when the
 
44
  registry is empty. (Vincent Ladeuil, #956860)
 
45
 
 
46
API Changes
 
47
***********
 
48
 
 
49
.. Changes that may require updates in plugins or other code that uses
 
50
   bzrlib.
 
51
 
 
52
Internals
 
53
*********
 
54
 
 
55
.. Major internal changes, unlikely to be visible to users or plugin 
 
56
   developers, but interesting for bzr developers.
 
57
 
 
58
Testing
 
59
*******
 
60
 
 
61
.. Fixes and changes that are only relevant to bzr's test framework and 
 
62
   suite.  This can include new facilities for writing tests, fixes to 
 
63
   spurious test failures and changes to the way things should be tested.
 
64
 
 
65
 
 
66
bzr 2.6b1
 
67
#########
 
68
 
 
69
:2.6b1: 2012-03-15
 
70
 
 
71
This is the first beta for the 2.6 series, leading up to a 2.6.0 release in
 
72
August 2012.
 
73
 
 
74
This release includes ssl certificates verification from the urllib-based
 
75
http implementation turned on by default, fixes some UI issues around
 
76
colocated branches, documentation fixes and more.
 
77
 
 
78
This release includes all bugs fixed in previous series known at the time of
 
79
this release.
 
80
 
 
81
Beta releases are suitable for everyday use but may cause some
 
82
incompatibilities with plugins.  Some plugins may need small updates to work
 
83
with 2.6b1.
 
84
 
 
85
External Compatibility Breaks
 
86
*****************************
 
87
 
 
88
None.
 
89
 
 
90
Improvements
 
91
************
 
92
 
29
93
* Access to HTTPS URLs now uses the urrllib implementation by default.
30
94
  For the old pycurl-based implementation, specify ``https+pycurl://`` as
31
95
  the URL scheme when accessing a HTTPS location.
53
117
Bug Fixes
54
118
*********
55
119
 
56
 
.. Fixes for situations where bzr would previously crash or give incorrect
57
 
   or undesirable results.
58
 
 
59
120
* Fix ``bzr config`` display for ``RegistryOption`` values.
60
121
  (Vincent Ladeuil, #930182)
61
122
 
 
123
* Option values set on locked branches should be saved only when the branch
 
124
  is finally unlocked. (Vincent Ladeuil, #948339)
 
125
 
62
126
Documentation
63
127
*************
64
128
 
65
129
.. Improved or updated documentation.
66
130
 
 
131
* Document "bzr lp-propose", "bzr register-branch" and
 
132
  the other Launchpad plugin commands in bzr(1).
 
133
  (Jelmer Vernooij, #843801, #163995)
 
134
 
 
135
* Generate ``ENVIRONMENT`` section in bzr(1) from known environment variable
 
136
  list rather than hardcoding. (Jelmer Vernooij, #197618)
 
137
 
 
138
* Prevent lines of command descriptions starting with a dot to
 
139
  accidentally be interpreted as a roff macro in bzr(1).
 
140
  (Jelmer Vernooij, #711079)
 
141
 
67
142
* Properly format apostrophes in manual page. (Jelmer Vernooij, #234771)
68
143
 
69
144
API Changes
70
145
***********
71
146
 
72
 
.. Changes that may require updates in plugins or other code that uses
73
 
   bzrlib.
74
 
 
75
147
* ``GPGStrategy.do_verifications`` has been deprecated.
76
148
  (Jelmer Vernooij)
77
149
 
91
163
* New convenience API method ``WorkingTree.get_config_stack``.
92
164
  (Jelmer Vernooij)
93
165
 
 
166
* Remove deprecated ``Branch.set_revision_history`` and
 
167
  ``Branch.revision_history`` methods and the ``set_rh``
 
168
  hook on ``Branch``. (Jelmer Vernooij)
 
169
 
94
170
* Remove 
95
171
  ``branch.PullResult.__int__`` deprecated in 2.3.0,
96
172
  ``branch.PushResult.__int__`` deprecated in 2.3.0,
123
199
Internals
124
200
*********
125
201
 
126
 
.. Major internal changes, unlikely to be visible to users or plugin 
127
 
   developers, but interesting for bzr developers.
128
 
 
129
202
* ``Tree.path2id`` now once again accepts a list of path elements
130
203
  in addition to a path. (Jelmer Vernooij)
131
204
 
134
207
  conf.get(option, expand=False) or conf.get_user_option(option,
135
208
  expand=False). (Vincent Ladeuil)
136
209
 
137
 
Testing
138
 
*******
139
 
 
140
 
.. Fixes and changes that are only relevant to bzr's test framework and 
141
 
   suite.  This can include new facilities for writing tests, fixes to 
142
 
   spurious test failures and changes to the way things should be tested.
143
 
 
144
210
..
145
211
   vim: tw=74 ft=rst ff=unix