~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-08-12 16:12:23 UTC
  • mfrom: (6060.2.1 trunk)
  • Revision ID: pqm@pqm.ubuntu.com-20110812161223-hfvwsgbtb9vype5r
(vila) Merge 2.4 into trunk (Vincent Ladeuil)

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
  provided ``bool_from_store`` and ``int_from_store`` are used.
26
26
  (Vincent Ladeuil)
27
27
 
28
 
* A ``from_unicode`` parameter can be specified when registering a config
29
 
  option. This implements boolean, integer and list config options when the
30
 
  provided ``bool_from_store``, ``int_from_store`` and ``list_from_store``
31
 
  are used for this parameter.  (Vincent Ladeuil)
32
 
 
33
28
* Accessing a packaging branch on Launchpad (eg, ``lp:ubuntu/bzr``) now
34
29
  checks to see if the most recent published source package version for
35
30
  that project is present in the branch tags. This should help developers
69
64
  while --match-message, --match-author, --match-committer and
70
65
  --match-bugs match each of those fields.
71
66
 
72
 
* ``bzr help configuration/<option>`` display the help for ``option`` for
73
 
  all registered configuration options. (Vincent Ladeuil, #747050)
74
 
 
75
67
* Relative local paths can now be specified in URL syntax by using the
76
68
  "file:" prefix.  (Jelmer Vernooij)
77
69
 
174
166
.. Major internal changes, unlikely to be visible to users or plugin 
175
167
   developers, but interesting for bzr developers.
176
168
 
177
 
* New method ``ControlDir._get_selected_branch`` which returns the
178
 
  colocated branch selected using path segment parameters.
179
 
  (Jelmer Vernooij, #380871)
180
 
 
181
169
Testing
182
170
*******
183
171
 
197
185
 
198
186
* Fix compatibility with testtools 0.9.12. (Jelmer Vernooij, #815423)
199
187
 
200
 
* ``LockDir`` can now be run when the local hostname is ``localhost``.
201
 
  (Jelmer Vernooij, #825994)
202
 
 
203
 
* ``ModuleAvailableFeature`` won't try to import already imported modules,
204
 
  allowing it to be used for modules with side-effects.
205
 
  (Vincent Ladeuil, #712474)
206
 
 
207
188
* `TestCaseWithMemoryTransport` is faster now: `_check_safety_net` now
208
189
  just compares the bytes in the dirstate file to its pristine state,
209
190
  rather than opening the WorkingTree and calling ``last_revision()``.