[ubuntu/karmic-proposed] bzr 2.0.2-0ubuntu1 (Accepted)

Martin Pool mbp at sourcefrog.net
Mon Dec 21 17:58:37 GMT 2009


bzr (2.0.2-0ubuntu1) karmic-proposed; urgency=low

  * Proposed SRU, taking all changes from Bazaar's 2.0.2 new bugfix-only
    upstream release.
  * Avoid "NoneType has no attribute st_mode" error when files disappear
    from a directory while it's being read. LP: #446033
  * Content filters are now applied correctly after revert.
  * Diff parsing handles "Binary files differ" hunks.  LP: #436325
  * Fetching from stacked pre-2a repository via a smart server no longer
    fails intermittently with "second push failed to complete".
    LP: #437626
  * Fix typos left after test_selftest refactoring.
    LP: #461149
  * Fixed ``ObjectNotLocked`` errors during ``bzr log -r NNN somefile``.
    LP: #445171
  * PreviewTree file names are not limited by the encoding of the temp
    directory's filesystem. LP: #436794
  * ``bzr log`` now read-locks branches exactly once, so makes better use of
    data caches.
  * Filtered views user documentation upgraded to refer to format 2a
    instead of pre-2.0 formats.
  * ``bzr add`` in a tree that has files with ``\r`` or ``\n`` in the
    filename will issue a warning and skip over those files.
    LP: #3918
  * bzr will attempt to authenticate with SSH servers that support
    ``keyboard-interactive`` auth but not ``password`` auth when using
    Paramiko.   LP: #433846
  * Fixed fetches from a stacked branch on a smart server that were failing
    with some combinations of remote and local formats.  This was causing
    "unknown object type identifier 60" errors.  LP: #427736
  * Fixed ``ObjectNotLocked`` errors when doing some log and diff operations
    on branches via a smart server.  LP: #389413
  * Handle things like ``bzr add foo`` and ``bzr rm foo`` when the tree is
    at the root of a drive. ``osutils._cicp_canonical_relpath`` always
    assumed that ``abspath()`` returned a path that did not have a trailing
    ``/``, but that is not true when working at the root of the filesystem.
    LP: #322807
  * Hide deprecation warnings for 'final' releases for python2.6.
    LP: #440062
  * Improve the time for ``bzr log DIR`` for 2a format repositories.
    We had been using the same code path as for <2a formats, which required
    iterating over all objects in all revisions.
    LP: #374730
  * Make sure that we unlock the tree if we fail to create a TreeTransform
    object when doing a merge, and there is limbo, or pending-deletions
    directory.  LP: #427773
  * Occasional IndexError on renamed files have been fixed. Operations that
    set a full inventory in the working tree will now go via the
    apply_inventory_delta code path which is simpler and easier to
    understand than dirstates set_state_from_inventory method. This may
    have a small performance impact on operations built on _write_inventory,
    but such operations are already doing full tree scans, so no radical
    performance change should be observed. LP: #403322
  * Retrieving file text or mtime from a _PreviewTree has good performance when
    there are many changes.
  * The CHK index pages now use an unlimited cache size. With a limited
    cache and a large project, the random access of chk pages could cause us
    to download the entire cix file many times.
    LP: #402623
  * When a file kind becomes unversionable after being added, a sensible
    error will be shown instead of a traceback. LP: #438569
  * Improved README.
  * Improved upgrade documentation for Launchpad branches.

Date: Mon, 14 Dec 2009 19:17:08 +1100
Changed-By: Martin Pool <mbp at sourcefrog.net>
Maintainer: Ubuntu Developers <ubuntu-devel-discuss at lists.ubuntu.com>
Signed-By: Martin Pitt <martin.pitt at ubuntu.com>
https://edge.launchpad.net/ubuntu/karmic/+source/bzr/2.0.2-0ubuntu1
-------------- next part --------------
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.8
Date: Mon, 14 Dec 2009 19:17:08 +1100
Source: bzr
Binary: bzr
Architecture: source
Version: 2.0.2-0ubuntu1
Distribution: karmic-proposed
Urgency: low
Maintainer: Ubuntu Developers <ubuntu-devel-discuss at lists.ubuntu.com>
Changed-By: Martin Pool <mbp at sourcefrog.net>
Description: 
 bzr        - easy to use distributed version control system
Changes: 
 bzr (2.0.2-0ubuntu1) karmic-proposed; urgency=low
 .
   * Proposed SRU, taking all changes from Bazaar's 2.0.2 new bugfix-only
     upstream release.
   * Avoid "NoneType has no attribute st_mode" error when files disappear
     from a directory while it's being read. LP: #446033
   * Content filters are now applied correctly after revert.
   * Diff parsing handles "Binary files differ" hunks.  LP: #436325
   * Fetching from stacked pre-2a repository via a smart server no longer
     fails intermittently with "second push failed to complete".
     LP: #437626
   * Fix typos left after test_selftest refactoring.
     LP: #461149
   * Fixed ``ObjectNotLocked`` errors during ``bzr log -r NNN somefile``.
     LP: #445171
   * PreviewTree file names are not limited by the encoding of the temp
     directory's filesystem. LP: #436794
   * ``bzr log`` now read-locks branches exactly once, so makes better use of
     data caches.
   * Filtered views user documentation upgraded to refer to format 2a
     instead of pre-2.0 formats.
   * ``bzr add`` in a tree that has files with ``\r`` or ``\n`` in the
     filename will issue a warning and skip over those files.
     LP: #3918
   * bzr will attempt to authenticate with SSH servers that support
     ``keyboard-interactive`` auth but not ``password`` auth when using
     Paramiko.   LP: #433846
   * Fixed fetches from a stacked branch on a smart server that were failing
     with some combinations of remote and local formats.  This was causing
     "unknown object type identifier 60" errors.  LP: #427736
   * Fixed ``ObjectNotLocked`` errors when doing some log and diff operations
     on branches via a smart server.  LP: #389413
   * Handle things like ``bzr add foo`` and ``bzr rm foo`` when the tree is
     at the root of a drive. ``osutils._cicp_canonical_relpath`` always
     assumed that ``abspath()`` returned a path that did not have a trailing
     ``/``, but that is not true when working at the root of the filesystem.
     LP: #322807
   * Hide deprecation warnings for 'final' releases for python2.6.
     LP: #440062
   * Improve the time for ``bzr log DIR`` for 2a format repositories.
     We had been using the same code path as for <2a formats, which required
     iterating over all objects in all revisions.
     LP: #374730
   * Make sure that we unlock the tree if we fail to create a TreeTransform
     object when doing a merge, and there is limbo, or pending-deletions
     directory.  LP: #427773
   * Occasional IndexError on renamed files have been fixed. Operations that
     set a full inventory in the working tree will now go via the
     apply_inventory_delta code path which is simpler and easier to
     understand than dirstates set_state_from_inventory method. This may
     have a small performance impact on operations built on _write_inventory,
     but such operations are already doing full tree scans, so no radical
     performance change should be observed. LP: #403322
   * Retrieving file text or mtime from a _PreviewTree has good performance when
     there are many changes.
   * The CHK index pages now use an unlimited cache size. With a limited
     cache and a large project, the random access of chk pages could cause us
     to download the entire cix file many times.
     LP: #402623
   * When a file kind becomes unversionable after being added, a sensible
     error will be shown instead of a traceback. LP: #438569
   * Improved README.
   * Improved upgrade documentation for Launchpad branches.
Checksums-Sha1: 
 66d27edfa1a815e37b018c520b5770d8f2080908 1499 bzr_2.0.2-0ubuntu1.dsc
 ec20149eeefde56770ca765e828b228caef67b57 13501 bzr_2.0.2-0ubuntu1.diff.gz
Checksums-Sha256: 
 3baf044012a163dd44226f6522738b065dca098334fa96a250beaa83b3181c24 1499 bzr_2.0.2-0ubuntu1.dsc
 ae799f00839d46b87ea0cc28a7808469249371c92309721557f6777a76dc0aeb 13501 bzr_2.0.2-0ubuntu1.diff.gz
Files: 
 0c3efbe10fbbb1fa047a257bf48ce9dc 1499 vcs optional bzr_2.0.2-0ubuntu1.dsc
 ec78749b4408f75f93b809b256dfbf6f 13501 vcs optional bzr_2.0.2-0ubuntu1.diff.gz
Launchpad-Bugs-Fixed: 3918 322807 374730 389413 402623 403322 427736 427773 433846 436325 436794 437626 438569 440062 445171 446033 461149
Original-Maintainer: Debian Bazaar Maintainers <pkg-bazaar-maint at lists.alioth.debian.org>

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAksvqi0ACgkQDecnbV4Fd/J1AQCgsLknyTNLviwPm+D+glMz1IhR
kTQAnRuAzXnm7ICmC0mnY4sGiK1dNKpS
=IiJj
-----END PGP SIGNATURE-----


More information about the Karmic-changes mailing list