~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-08-02 04:09:08 UTC
  • mfrom: (6046.1.1 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20110802040908-hqz2wr82nyrk14gk
(mbp) merge 2.3 and 2.4 to trunk (Martin Pool)

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
.. Fixes for situations where bzr would previously crash or give incorrect
33
33
   or undesirable results.
34
34
 
 
35
* Accessing a packaging branch on Launchpad (eg, ``lp:ubuntu/bzr``) now
 
36
  checks to see if the most recent published source package version for
 
37
  that project is present in the branch tags. This should help developers
 
38
  trust whether the packaging branch is up-to-date and can be used for new
 
39
  changes. The level of verbosity is controlled by the config item
 
40
  ``launchpad.packaging_verbosity``. It can be set to one of
 
41
 
 
42
  off
 
43
    disable all checks
 
44
 
 
45
 
 
46
  minimal
 
47
    only display if the branch is out-of-date
 
48
 
 
49
  short
 
50
    also display single-line up-to-date and missing,
 
51
 
 
52
 
 
53
  all
 
54
    (default) display multi-line content for all states
 
55
 
 
56
 
 
57
  (John Arbash Meinel, #609187, #812928)
 
58
 
 
59
 
35
60
* The fix for bug #513709 caused us to open a new connection when
36
61
  switching a lightweight checkout that was pointing at a bound branch.
37
62
  This isn't necessary because we know the master URL without opening it,
114
139
* ``Branch.open`` is now about 3x faster (about 2ms instead of 6.5ms).
115
140
  (Andrew Bennetts).
116
141
 
 
142
* Pack, dirstate, and index files are synced to persistent storage if 
 
143
  possible when writing finishes, to reduce the risk of problems caused by
 
144
  a machine crash or similar problem.  This can be turned off through the
 
145
  ``dirstate.fdatasync`` and ``repository.fdatasync`` options, which can
 
146
  be set in ``locations.conf`` or ``bazaar.conf``.  (Martin Pool,
 
147
  #343427)
 
148
 
117
149
Bug Fixes
118
150
*********
119
151