~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Jelmer Vernooij
  • Date: 2010-08-20 19:07:17 UTC
  • mfrom: (5385 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5389.
  • Revision ID: jelmer@samba.org-20100820190717-txm7aiyh6wtumgd3
merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
Bug Fixes
65
65
*********
66
66
 
 
67
* Allow using both --using and --diff-options. 
 
68
  (Matthäus G. Chajdas, #234708)
 
69
 
67
70
* ``bzr add SYMLINK/FILE`` now works properly when the symlink points to a
68
71
  previously-unversioned directory within the tree: the directory is
69
72
  marked versioned too.  
74
77
  regular expression.
75
78
  (Parth Malwankar #300062)
76
79
 
77
 
* Check if both --diff-options and --using are set, and exit with error
78
 
  in this case. (Matthäus G. Chajdas, #234708)
79
 
 
80
80
* CommitBuilder now uses the committer instead of _config.username to generate
81
81
  the revision-id.  (Aaron Bentley, #614404)
82
82
 
83
 
* Cope with Microsoft FTP server that returns reply '250 Directory
84
 
  created' when mkdir succeeds.  (Martin Pool, #224373)
 
83
* Cope with Microsoft FTP Server and VSFTPd that return reply '250
 
84
  Directory created' when mkdir succeeds.  (Martin Pool, #224373)
85
85
 
86
86
* Decrease peak memory during ``bzr send``. The old code was caching all
87
87
  text content and all inventory strings for all revisions before
114
114
Improvements
115
115
************
116
116
 
 
117
* ``bzr remove`` now just backs up changed files instead of exiting,
 
118
  forcing you to choose to either keep or delete them. Bazaar will now delete
 
119
  the files if they can easily be recovered using revert, otherwise they
 
120
  will be backed up (adding an extention of the form .~#~).
 
121
  (Marius Kruger, #400554)
 
122
 
117
123
* Inventory entries now consume less memory (on 32-bit Ubuntu file entries
118
124
  have dropped from 68 bytes to 40, and directory entries from 120 bytes
119
125
  to 48).  (Andrew Bennetts)