~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: 2011-12-24 10:10:59 UTC
  • mfrom: (6405 +trunk)
  • mto: This revision was merged to the branch mainline in revision 6407.
  • Revision ID: jelmer@samba.org-20111224101059-epghsc5y61hsgbl2
Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
 
37
37
* New HPSS call for ``Repository.reconcile``. (Jelmer Vernooij, #894455)
38
38
 
 
39
* Merge now has two new hooks ``pre_merge`` and ``post_merge``
 
40
  that are called before and after a merge and can make
 
41
  additional modifications to the trees involved.
 
42
  (Jelmer Vernooij, #906877)
 
43
 
39
44
* Override the value returned by ``sys.getfilesystemencoding()`` for the bzr
40
45
  script to utf-8 when it would otherwise be ascii on a posix system. This
41
46
  will mean bzr works with non-ascii files when no locale or an incorrect
42
47
  locale is set. (Martin Packman, #794353)
43
48
 
 
49
* ``bzr branches`` now indicates the active colocated branch.
 
50
  (Jelmer Vernooij, #891667)
 
51
 
 
52
* ``bzr push`` now suggests using :parent if there is a parent location
 
53
  set. (Jelmer Vernooij)
 
54
 
44
55
* ``bzr send`` now only opens a single connection, rather than two,
45
56
  to the target branch.  (Jelmer Vernooij)
46
57
 
53
64
* Allow configuration option default value to be a python callable at
54
65
  registration. (Vincent Ladeuil, #832064)
55
66
 
 
67
* ``bzr config`` will now display the section ``[DEFAULT]`` used in
 
68
  ``bazaar.conf``. (Vincent Ladeuil, #907268)
 
69
 
 
70
* Configuration stores can now provides a specific quoting mechanism. This
 
71
  is required to workaround ``configobj`` conflating quoting and list values
 
72
  automatic conversion. (Vincent Ladeuil, #906897)
 
73
 
56
74
* Create obsolete_packs directory when repacking if it does not
57
75
  exist. (Jonathan Riddell, Jelmer Vernooij, #314314)
58
76
 
142
160
* New matcher ``ContainsNoVfsCalls`` which filters a list of HPSS
143
161
  calls for VFS requests. (Jelmer Vernooij)
144
162
 
 
163
* New ``MemoryStack`` class allows for diskless tests and locally injected
 
164
  configuration stacks.  Lower level tests for predefined set of options can
 
165
  be written without setting up configuration files. (Vincent Ladeuil)
 
166
 
145
167
 
146
168
bzr 2.5b4
147
169
#########
343
365
* The registry of merge types has been moved to ``merge`` from ``option`` but
344
366
  ``merge.get_merge_type_registry`` remains as an accessor. (Martin Packman)
345
367
 
 
368
* All bzr control directories, branch formats, repository formats and
 
369
  working tree formats now support feature flags, which are
 
370
  serialized in their respective format files. See
 
371
  ``doc/developers/feature-flags.txt`` for details.
 
372
  (Jelmer Vernooij)
 
373
 
346
374
Testing
347
375
*******
348
376