~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Vincent Ladeuil
  • Date: 2011-10-27 12:26:48 UTC
  • mto: (6015.44.4 2.4)
  • mto: This revision was merged to the branch mainline in revision 6236.
  • Revision ID: v.ladeuil+lp@free.fr-20111027122648-x4b85k69pyrbpbkk
Address some points from gz's review.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
Bug Fixes
33
33
*********
34
34
 
 
35
* During merges, when two entries end up using the same path for two
 
36
  different file-ids (the same file being 'bzr added' in two different
 
37
  branches) , 'duplicate' conflicts are created instead of 'content'
 
38
  ones. This was previously leading to a 'Malformed tramsform' exception.
 
39
  (Vincent Ladeuil, #880701)
 
40
 
35
41
* Fixed an infinite loop when creating a repo at the root of the filesystem, 
36
42
  i.e. "/", due to posixpath.normpath() not collapsing 2 leading slashes into 
37
43
  one, thus respecting the POSIX standard, but making relpath() loop infinitely.
40
46
* Fixed loading of external merge tools from config to properly decode
41
47
  command-lines which contain embedded quotes. (Gordon Tyler, #828803)
42
48
 
43
 
* 'Duplicate' conflicts are now created instead of 'Content' ones when a
44
 
  merge tries to create two entries for the same path.
45
 
  (Vincent Ladeuil, #880701)
46
 
 
47
49
* Include declaration of 'changed' to avoid an UnboundLocalError in dirstate
48
50
  pyrex code with new Cython versions. (Denys Duchier, #837221)
49
51
 
 
52
* 'Malformed transform' exceptions are now recognized as internal errors
 
53
  instead of user errors and report a traceback. This will reduce user
 
54
  confusion as there is generally nothing users can do about them.
 
55
  (Vincent Ladeuil, #880701)
 
56
 
50
57
* Prevent several kinds of OverflowError and other fallout from failing to fit
51
58
  stat fields into four bytes in dirstate pack_stat implementations.
52
59
  (Martin Packman, #683191 #706957)
54
61
* Return early from create_delta_index_from_delta given tiny inputs. This
55
62
  avoids raising a spurious MemoryError on certain platforms such as AIX.
56
63
  (John Arbash Meinel, #856731)
 
64
 
57
65
  
58
66
Documentation
59
67
*************