~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Andrew Bennetts
  • Date: 2009-10-02 05:43:41 UTC
  • mfrom: (4634.52.10 2.0)
  • mto: This revision was merged to the branch mainline in revision 4723.
  • Revision ID: andrew.bennetts@canonical.com-20091002054341-99yxpjenx8cagpxn
Merge lp:bzr/2.0 into lp:bzr, duplicating relevant NEWS entries for 2.1.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
  sent a signal to the bzr process specifically, for example by typing
50
50
  ``kill -QUIT PID`` in another shell.  (Martin Pool, #341535)
51
51
 
 
52
* ``bzr add`` in a tree that has files with ``\r`` or ``\n`` in the
 
53
  filename will issue a warning and skip over those files.
 
54
  (Robert Collins, #3918)
 
55
 
52
56
* ``bzr check`` in pack-0.92, 1.6 and 1.9 format repositories will no
53
57
  longer report incorrect errors about ``Missing inventory ('TREE_ROOT', ...)``
54
58
  (Robert Collins, #416732)
60
64
  merges are present in the working tree.
61
65
  (Vincent Ladeuil, #426344)
62
66
 
 
67
* bzr will attempt to authenticate with SSH servers that support
 
68
  ``keyboard-interactive`` auth but not ``password`` auth when using
 
69
  Paramiko.   (Andrew Bennetts, #433846)
 
70
 
63
71
* Clearer message when Bazaar runs out of memory, instead of a ``MemoryError``
64
72
  traceback.  (Martin Pool, #109115)
65
73
 
84
92
  is a fairly well packed repository (not as good as 'bzr pack' but
85
93
  good-enough.) (Robert Collins, John Arbash Meinel, #402652)
86
94
 
 
95
* Fixed fetches from a stacked branch on a smart server that were failing
 
96
  with some combinations of remote and local formats.  This was causing
 
97
  "unknown object type identifier 60" errors.  (Andrew Bennetts, #427736)
 
98
 
87
99
* Network streams now decode adjacent records of the same type into a
88
100
  single stream, reducing layering churn. (Robert Collins)
89
101
 
91
103
  object when doing a merge, and there is limbo, or pending-deletions
92
104
  directory.  (Gary van der Merwe, #427773)
93
105
 
 
106
* Occasional IndexError on renamed files have been fixed. Operations that
 
107
  set a full inventory in the working tree will now go via the
 
108
  apply_inventory_delta code path which is simpler and easier to
 
109
  understand than dirstates set_state_from_inventory method. This may
 
110
  have a small performance impact on operations built on _write_inventory,
 
111
  but such operations are already doing full tree scans, so no radical
 
112
  performance change should be observed. (Robert Collins, #403322)
 
113
 
94
114
* Prevent some kinds of incomplete data from being committed to a 2a
95
115
  repository, such as revisions without inventories or inventories without
96
116
  chk_bytes root records.
106
126
  domains or user ids embedding '.sig'. Now they can.
107
127
  (Matthew Fuller, Vincent Ladeuil, #430868)
108
128
 
 
129
* When a file kind becomes unversionable after being added, a sensible
 
130
  error will be shown instead of a traceback. (Robert Collins, #438569)
 
131
 
109
132
Improvements
110
133
************
111
134
 
192
215
Bug Fixes
193
216
*********
194
217
 
 
218
* ``bzr add`` in a tree that has files with ``\r`` or ``\n`` in the
 
219
  filename will issue a warning and skip over those files.
 
220
  (Robert Collins, #3918)
 
221
 
 
222
* bzr will attempt to authenticate with SSH servers that support
 
223
  ``keyboard-interactive`` auth but not ``password`` auth when using
 
224
  Paramiko.   (Andrew Bennetts, #433846)
 
225
 
 
226
* Fixed fetches from a stacked branch on a smart server that were failing
 
227
  with some combinations of remote and local formats.  This was causing
 
228
  "unknown object type identifier 60" errors.  (Andrew Bennetts, #427736)
 
229
 
195
230
* Improve the time for ``bzr log DIR`` for 2a format repositories.
196
231
  We had been using the same code path as for <2a formats, which required
197
232
  iterating over all objects in all revisions.
201
236
  object when doing a merge, and there is limbo, or pending-deletions
202
237
  directory.  (Gary van der Merwe, #427773)
203
238
 
 
239
* Occasional IndexError on renamed files have been fixed. Operations that
 
240
  set a full inventory in the working tree will now go via the
 
241
  apply_inventory_delta code path which is simpler and easier to
 
242
  understand than dirstates set_state_from_inventory method. This may
 
243
  have a small performance impact on operations built on _write_inventory,
 
244
  but such operations are already doing full tree scans, so no radical
 
245
  performance change should be observed. (Robert Collins, #403322)
 
246
 
 
247
* When a file kind becomes unversionable after being added, a sensible
 
248
  error will be shown instead of a traceback. (Robert Collins, #438569)
 
249
 
 
250
* Retrieving file text or mtime from a _PreviewTree has good performance when
 
251
  there are many changes.  (Aaron Bentley)
 
252
 
204
253
 
205
254
bzr 2.0.0
206
255
#########