/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Parth Malwankar
  • Date: 2010-08-28 06:13:48 UTC
  • mto: This revision was merged to the branch mainline in revision 5411.
  • Revision ID: parth.malwankar@gmail.com-20100828061348-w9butw4ackj8wpyl
initial post_status hook is now working

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
.. contents:: List of Releases
6
6
   :depth: 1
7
7
 
 
8
bzr 2.3b1
 
9
#########
 
10
 
 
11
:Codename: ???
 
12
:2.3b1: NOT RELEASED YET
 
13
 
 
14
Compatibility Breaks
 
15
********************
 
16
 
 
17
* BzrError subclasses no longer support the name "message" to be used
 
18
  as an argument for __init__ or in _fmt format specification as this
 
19
  breaks in some Python versions. errors.LockError.__init__ argument
 
20
  is now named "msg" instead of earlier "message".
 
21
  (Parth Malwankar, #603461)
 
22
 
 
23
* `decode` parameter to get() method in FtpTransport and GioTransport classes
 
24
  is deprecated. (Alexander Belchenko)
 
25
 
 
26
* `FileInWrongBranch` is deprecated in favour of `PathNotChild` and no
 
27
  longer raised.
 
28
  (Martin Pool)
 
29
 
 
30
* `tree_files` and `internal_tree_files` are now deprecated in favor of
 
31
  `WorkingTree.open_containing_paths`.
 
32
  (Martin Pool)
 
33
 
 
34
* `ControlDirFormat` and  `ControlDir` have been split out of `BzrDirFormat`
 
35
  and `BzrDir`, respectively. `ControlDirFormat`
 
36
  and `ControlDir` should be used as the base classes for new non-.bzr
 
37
  implementations.
 
38
 
 
39
  `BzrDirFormat.register_control_format` has been renamed to
 
40
  `ControlDirFormat.register_format`.
 
41
 
 
42
  `BzrDirFormat.register_server_control_format` has been removed.
 
43
 
 
44
  Probing for control directories is now done by separate objects derived
 
45
  from `bzrlib.controldir.Prober` and registered using
 
46
  `bzrlib.controldir.ControlDirFormat.register_prober` or
 
47
  `bzrlib.controldir.ControlDirFormat.register_server_prober`.
 
48
  `BzrDirFormat.probe_transport` has been moved onto `Prober`.
 
49
 
 
50
  `BzrDirFormat.register_format` has been renamed to 
 
51
  `BzrProber.register_bzrdir_format`.
 
52
  (Jelmer Vernooij)
 
53
 
 
54
* The old ``bzr selftest --benchmark`` option has been removed.
 
55
  <https://launchpad.net/bzr-usertest> is an actively-maintained
 
56
  macrobenchmark suite.
 
57
  (Martin Pool)
 
58
 
 
59
New Features
 
60
************
 
61
 
 
62
* The ``lp:`` prefix will now use your known username (from
 
63
  ``bzr launchpad-login``) to expand ``~`` to your username.  For example:
 
64
  ``bzr launchpad-login user && bzr push lp:~/project/branch`` will now
 
65
  push to ``lp:~user/project/branch``.  (John Arbash Meinel)
 
66
 
 
67
Bug Fixes
 
68
*********
 
69
 
 
70
* Allow using both --using and --diff-options. 
 
71
  (Matthäus G. Chajdas, #234708)
 
72
 
 
73
* ``bzr add SYMLINK/FILE`` now works properly when the symlink points to a
 
74
  previously-unversioned directory within the tree: the directory is
 
75
  marked versioned too.  
 
76
  (Martin Pool, #192859)
 
77
 
 
78
* ``bzr ignore PATTERNS`` exits with error if a bad pattern is supplied.
 
79
  ``InvalidPattern`` exception error message now shows faulting
 
80
  regular expression.
 
81
  (Parth Malwankar #300062)
 
82
 
 
83
* ``clean-tree`` issues a warning if it is unable to delete a file
 
84
  due to ``errno.EACCES`` instead of exiting with an error on Windows.
 
85
  (Parth Malwankar, #430785)
 
86
 
 
87
* CommitBuilder now uses the committer instead of _config.username to generate
 
88
  the revision-id.  (Aaron Bentley, #614404)
 
89
 
 
90
* Cope with Microsoft FTP Server and VSFTPd that return reply '250
 
91
  Directory created' when mkdir succeeds.  (Martin Pool, #224373)
 
92
 
 
93
* Decrease peak memory during ``bzr send``. The old code was caching all
 
94
  text content and all inventory strings for all revisions before
 
95
  computing the diffs. Now we only cache as long as there is a child that
 
96
  will need them. Sending 2000 bzr revisions drops from 1.2GB peak to
 
97
  256MB peak. (John Arbash Meinel, #614576)
 
98
 
 
99
* Don't print internal object name when print an invalid revision spec
 
100
  error.  (Neil Martinsen-Burrell, #598701)
 
101
 
 
102
* Fix ``AttributeError on parent.children`` when adding a file under a 
 
103
  directory that was a symlink in the previous commit.
 
104
  (Martin Pool, #192859)
 
105
 
 
106
* ``HTTP/1.1`` test servers now set a ``Content-Length`` header to comply
 
107
  with pedantic ``HTTP/1.1`` clients. (Vincent Ladeuil, #568421)
 
108
 
 
109
* `PathNotChild` should not give a traceback.
 
110
  (Martin Pool, #98735)
 
111
 
 
112
* Prevent ``CHKMap.apply_delta`` from generating non-canonical CHK maps,
 
113
  which can result in "missing referenced chk root keys" errors when
 
114
  fetching from repositories with affected revisions.
 
115
  (Andrew Bennetts, #522637)
 
116
 
 
117
* ``Transport.stat`` on a symlink, including a transport pointing directly
 
118
  to a symlink, now returns information about the symlink.
 
119
  (Martin Pool)
 
120
 
 
121
Improvements
 
122
************
 
123
 
 
124
* ``bzr remove`` now just backs up changed files instead of exiting,
 
125
  forcing you to choose to either keep or delete them. Bazaar will now delete
 
126
  the files if they can easily be recovered using revert, otherwise they
 
127
  will be backed up (adding an extention of the form .~#~).
 
128
  (Marius Kruger, #400554)
 
129
 
 
130
* Decrease memory consumption when many chk index pages are loaded. (Such
 
131
  as during ``bzr co`` or ``bzr ls -R`` of a large tree.) Often we need to
 
132
  read many chk pages because the individual chk map nodes will be spread
 
133
  randomly. Peak memory for 'bzr ls -R' on a large tree dropped from 396MB
 
134
  down to 247MB, expect even more significant savings on 64-bit platforms.
 
135
  (John Arbash Meinel)
 
136
 
 
137
* ``DirState`` internals use a little bit less memory. For bzr.dev it
 
138
  drops the memory from 1MB down to about 800kB. And replaces a few
 
139
  thousand tuples and sets with StaticTuple.  (John Arbash Meinel)
 
140
 
 
141
* Inventory entries now consume less memory (on 32-bit Ubuntu file entries
 
142
  have dropped from 68 bytes to 40, and directory entries from 120 bytes
 
143
  to 48).  (Andrew Bennetts)
 
144
 
 
145
* When building new working trees, default to reading from the repository
 
146
  rather than the source tree unless explicitly requested. (via
 
147
  ``--files-from`` and ``--hardlink`` for ``bzr branch`` and
 
148
  ``bzr checkout``. Generally, 2a format repositories extract
 
149
  content faster than seeking and reading content from another tree,
 
150
  especially in cold-cache situations. (John Arbash Meinel, #607298)
 
151
 
 
152
Documentation
 
153
*************
 
154
 
 
155
* Added a builder/writer sphinx extension that can generate texinfo files. The
 
156
  generated files are syntactically correct but the info navigation nodes
 
157
  needs more work. (Vincent Ladeuil, #219334)
 
158
 
 
159
* First tests defined for sphinx, including a new bzrlib.tests.features.sphinx
 
160
  to make the tests conditional.
 
161
  (Vincent Ladeuil)
 
162
 
 
163
* Fix a lot of references in the docs to the old http://bazaar-vcs.org to
 
164
  the new http://bazaar.canonical.com or http://wiki.bazaar.canonical.com
 
165
  (John Arbash Meinel, #617503)
 
166
 
 
167
API Changes
 
168
***********
 
169
 
 
170
* InventoryEntry instances now raise AttributeError if you try to assign
 
171
  to attributes that are irrelevant to that kind of entry.  e.g. setting
 
172
  ``symlink_target`` on an InventoryFile will fail.  It is still okay to
 
173
  read those attributes on any kind of InventoryEntry.  The complete list
 
174
  of affected attributes is: ``executable``, ``text_id``, ``text_sha1``,
 
175
  ``text_size`` (only valid for kind == file); ``symlink_target`` (only
 
176
  valid for kind == link); and ``reference_revision`` (only valid for kind
 
177
  == tree-reference).  (Andrew Bennetts)
 
178
 
 
179
* InventoryEntry objects no longer have ``_put_in_tar`` or
 
180
  ``_put_on_disk`` methods.  (Andrew Bennetts)
 
181
 
 
182
Internals
 
183
*********
 
184
 
 
185
* Remove used and broken code path in ``BranchInitHookParams.__repr__``.
 
186
  (Andrew Bennetts)
 
187
 
 
188
Testing
 
189
*******
 
190
 
 
191
* The way ``bzr selftest --parallel`` generates N partitions of tests to
 
192
  run in parallel has changed.  Instead of splitting the list of tests at
 
193
  N-1 points, it distributes the tests one-by-one into the partitions in a
 
194
  round robin fashion.  This reduces the total time to run the tests in
 
195
  parallel because a series of slow tests in the test suite will be
 
196
  distributed evenly among the parallel test suites, rather than slowing
 
197
  down just one suite.  (Andrew Bennetts)
 
198
 
 
199
 
 
200
bzr 2.2.1
 
201
#########
 
202
 
 
203
:Codename: ??
 
204
:2.2.1: NOT RELEASED YET
 
205
 
 
206
Bug Fixes
 
207
*********
 
208
 
 
209
* ``bzr add SYMLINK/FILE`` now works properly when the symlink points to a
 
210
  previously-unversioned directory within the tree: the directory is
 
211
  marked versioned too.  
 
212
  (Martin Pool, #192859)
 
213
 
 
214
* CommitBuilder now uses the committer instead of _config.username to generate
 
215
  the revision-id.  (Aaron Bentley, #614404)
 
216
 
 
217
* Cope with Microsoft FTP server that returns reply '250 Directory
 
218
  created' when mkdir succeeds.  (Martin Pool, #224373)
 
219
 
 
220
* Fix ``AttributeError on parent.children`` when adding a file under a 
 
221
  directory that was a symlink in the previous commit.
 
222
  (Martin Pool, #192859)
 
223
 
 
224
Documentation
 
225
*************
 
226
 
 
227
* Fix a lot of references in the docs to the old http://bazaar-vcs.org to
 
228
  the new http://bazaar.canonical.com or http://wiki.bazaar.canonical.com
 
229
  (John Arbash Meinel, #617503)
 
230
 
 
231
Internals
 
232
*********
 
233
 
 
234
* Remove used and broken code path in ``BranchInitHookParams.__repr__``.
 
235
  (Andrew Bennetts)
 
236
 
 
237
 
 
238
bzr 2.2
 
239
#######
 
240
 
 
241
:Codename: La Hulpe
 
242
:2.2: 2010-08-06
 
243
 
 
244
This release marks the start of another long-term-stable series. From
 
245
here, we will only make bugfix releases on the 2.2 series (2.2.1, etc),
 
246
while 2.3 will become our new development series. The 2.0 and 2.1 series
 
247
will also continue to get bugfixes. (Currently 2.0 is planned to be
 
248
supported for another 6 months.)
 
249
 
 
250
This is primarily a bugfix and polish release over the 2.1 series, with
 
251
a large number of bugs fixed (>120), and some performance improvements.
 
252
 
 
253
There are some compatibility changes in this release.  For users of bzrlib
 
254
as a library, we now request that they call ``bzrlib.initialize`` and use
 
255
the returned context manager appropriately. For commandline users we no
 
256
longer guess user identity for ``bzr commit``, users must specify their
 
257
identity using ``bzr whoami`` (you don't need to specify your identity for
 
258
readonly operations).
 
259
 
 
260
Users are encouraged to upgrade from the other stable series.
 
261
 
 
262
Compatibility Breaks
 
263
********************
 
264
 
 
265
* BzrError subclasses no longer support the name "message" to be used
 
266
  as an argument for __init__ or in _fmt format specification as this
 
267
  breaks in some Python versions. errors.LockError.__init__ argument
 
268
  is now named "msg" instead of earlier "message".
 
269
  (Parth Malwankar, #603461)
 
270
 
 
271
* The old ``bzr selftest --benchmark`` option has been removed.
 
272
  <https://launchpad.net/bzr-usertest> is an actively-maintained
 
273
  macrobenchmark suite.
 
274
  (Martin Pool)
 
275
 
 
276
Bug Fixes
 
277
*********
 
278
 
 
279
* ``bzr ignore PATTERNS`` exits with error if a bad pattern is supplied.
 
280
  ``InvalidPattern`` exception error message now shows faulting
 
281
  regular expression.
 
282
  (Parth Malwankar #300062)
 
283
 
 
284
* Configuration files in ``${BZR_HOME}`` are now written in an atomic
 
285
  way which should help avoid problems with concurrent writers.
 
286
  (Vincent Ladeuil, #525571)
 
287
 
 
288
* Don't traceback trying to unversion children files of an already
 
289
  unversioned directory.  (Vincent Ladeuil, #494221)
 
290
 
 
291
* ``HTTP/1.1`` test servers now set a ``Content-Length`` header to comply
 
292
  with pedantic ``HTTP/1.1`` clients. (Vincent Ladeuil, #568421)
 
293
 
 
294
* Progress bars prefer to truncate the text message rather than the
 
295
  counters.  The spinner is shown between the network transfer indicator
 
296
  and the progress message.  Progress bars are correctly cleared off when 
 
297
  they finish.  (Martin Pool, #611127)
 
298
 
 
299
* Recursive binding for checkouts is now detected by bzr. A clear error
 
300
  message is shown to the user. (Parth Malwankar, #405192)
 
301
 
 
302
Improvements
 
303
************
 
304
 
 
305
* Add ``bzrlib.merge.MergeIntoMerger``, which can merge part or all of a
 
306
  tree, and works with unrelated branches.  (Andrew Bennetts)
 
307
 
 
308
* Add py2exe windows target ``bzrw.exe``. This allow for starting a Bazaar
 
309
  GUI with out have a console open in the background.
 
310
  (Gary van der Merwe, #433781)
 
311
 
 
312
Documentation
 
313
*************
 
314
 
 
315
* ``bzr help patterns`` now explains case insensitive patterns and
 
316
  points to Python regular expression documentation.
 
317
  (Parth Malwankar, #594386)
 
318
 
 
319
API Changes
 
320
***********
 
321
 
 
322
* Delete ``ProgressTask.note``, which was deprecated in 2.1.
 
323
 
 
324
Testing
 
325
*******
 
326
 
 
327
* Unit test added to ensure that "message" is not uses as a format variable
 
328
  name in BzrError subclasses as this conflicts with some Python versions.
 
329
  (Parth Malwankar, #603461)
 
330
 
 
331
bzr 2.2b4
 
332
#########
 
333
 
 
334
:Codename: Monkey Magic
 
335
:2.2b4: 2004-07-09
 
336
 
 
337
 
 
338
This fourth and final beta in the 2.2 series now stabilizes the internal
 
339
APIs. Plugin authors are recommended to ensure their releases are
 
340
compatible, so that 2.2rc1 can be a true release candidate, containing
 
341
stable and compatible plugin versions. 
 
342
 
 
343
For users of bzrlib as a library, one of the primary changes is to request
 
344
that they call ``bzrlib.initialize`` and use the returned context manager
 
345
appropriately.
 
346
 
 
347
Better interaction with ``bzr-loom`` to make sure branching from a loom
 
348
even over a smart server still yields a local loom. Not to mention lots of
 
349
bugfixes over 2.2b3.
 
350
 
 
351
Compatibility Breaks
 
352
********************
 
353
 
 
354
* bzrlib library users now need to call ``__enter__`` and ``__exit__`` on
 
355
  the result of ``bzrlib.initialize``. This change was made when fixing
 
356
  the bad habit recent bzr versions have had of leaving progress bars 
 
357
  behind on the screen. That required calling another function before
 
358
  exiting the program, and it made sense to provide a full context
 
359
  manager at the same time. (Robert Collins)
 
360
 
 
361
* The ``bzr`` front end now requires a ``bzrlib.ui.ui_factory`` which is a
 
362
  context manager in the Python 2.5 and above sense. The bzrlib base class
 
363
  is such a manager, but third party UI factories which do not derive from
 
364
  ``bzrlib.ui.UIFactory`` will be incompatible with the command line front
 
365
  end.
 
366
 
 
367
* URLs like ``foo:bar/baz`` are now always parsed as a URL with scheme "foo"
 
368
  and path "bar/baz", even if bzr does not recognize "foo" as a known URL
 
369
  scheme.  Previously these URLs would be treated as local paths.
 
370
  (Gordon Tyler)
 
371
 
 
372
 
 
373
New Features
 
374
************
 
375
 
 
376
* Support ``--directory`` option for a number of additional commands:
 
377
  conflicts, merge-directive, missing, resolve, shelve, switch,
 
378
  unshelve, whoami. (Martin von Gagern, #527878)
 
379
 
 
380
Bug Fixes
 
381
*********
 
382
 
 
383
* ``bzr branch`` to a new repository with a default stacking policy no
 
384
  longer transfers the full history unnecessarily.
 
385
  (Andrew Bennetts, #597942)
 
386
 
 
387
* ``bzr init`` does not recursively scan directory contents anymore
 
388
  leading to faster init for directories with existing content.
 
389
  (Martin [gz], Parth Malwankar, #501307)
 
390
 
 
391
* ``bzr log --exclude-common-ancestry`` is now taken into account for
 
392
  linear ancetries. (Vincent Ladeuil, #575631)
 
393
 
 
394
* ``bzr log -r branch:REMOTE`` can now properly log the remote branch,
 
395
  rather than trying to fetch the data locally and failing because of a
 
396
  readonly error. (Martin von Gagern, #149270)
 
397
 
 
398
* ``bzr pull`` now works when a lp: URL is explicitly defined as the parent
 
399
  or pull location in locations.conf or branch.conf.
 
400
  (Gordon Tyler, #534787)
 
401
 
 
402
* ``bzr reconfigure --unstacked`` now works with branches accessed via a
 
403
  smart server. (Andrew Bennetts, #551525)
 
404
 
 
405
* ``BzrDir.find_branches`` should ignore branches with missing repositories.
 
406
  (Marius Kruger, Robert Collins)
 
407
 
 
408
* ``BzrDir.find_bzrdirs`` should ignore dirs that raises PermissionDenied.
 
409
  (Marius Kruger, Robert Collins)
 
410
 
 
411
* Ensure that wrong path specifications in ``BZR_PLUGINS_AT`` display
 
412
  proper error messages. (Vincent Ladeuil, #591215)
 
413
 
 
414
* Explicitly removing ``--profile-imports`` option from parsed command-line
 
415
  arguments on Windows, because bzr script does the same.
 
416
  (Alexander Belchenko, #588277)
 
417
 
 
418
* Fetching was slightly confused about the best code to use and was
 
419
  using a new code path for all branches, resulting in more lookups than
 
420
  necessary on old branches. (Robert Collins, #593515)
 
421
 
 
422
* Final fix for 'no help for command' issue. We now show a clean message
 
423
  when a command has no help, document how to set help more clearly, and
 
424
  test that all commands available to the test suite have help.
 
425
  (Robert Collins, #177500)
 
426
 
 
427
* Invalid patterns supplied to ``Globster`` or ``lazy_regex`` now raise
 
428
  ``InvalidPattern`` exception showing clear error message to the user.
 
429
  (Parth Malwankar #300062)
 
430
 
 
431
* Progress output is cleaned up when exiting.  (Aaron Bentley)
 
432
 
 
433
* Raise ValueError instead of a string exception.
 
434
  (John Arbash Meinel, #586926)
 
435
 
 
436
* Relative imports in plugins are now handled correctly when using
 
437
  BZR_PLUGINS_AT. (Vincent Ladeuil, #588959)
 
438
 
 
439
* ``ScriptRunner`` now strips off leading indentation from test scripts,
 
440
  which previously caused "SyntaxError: No command for line".
 
441
  (Martin Pool)
 
442
 
 
443
* Show unicode filenames in diff headers using terminal encoding. 
 
444
  (Alexander Belchenko, Bug #382699)
 
445
  NOTE for Windows users: If user need to save diff to file then user need to
 
446
  change encoding of the terminal to ANSI encoding with command ``chcp XXX``
 
447
  (e.g. ``chcp 1251`` for Russian Windows).
 
448
 
 
449
* URL displayed for use with ``break-lock`` when smart server sees lock
 
450
  contention are now valid. Default timeout for lock contention retry is
 
451
  now 30 seconds instead of 300 seconds.
 
452
  (Parth Malwankar, #250451)
 
453
 
 
454
* ``walkdirs`` now raises a useful message when the filenames are not using
 
455
  the filesystem encoding. (Eric Moritz, #488519)
 
456
 
 
457
* Enable debugging of bzr on windows with pdb and other tools. This was 
 
458
  broken because we call GetCommandLineW on windows. The fix adjusts the 
 
459
  command line we get to be the same length as sys.argv.
 
460
  (Jason Spashett, Alexander Belchenko, #587868)
 
461
 
 
462
Improvements
 
463
************
 
464
 
 
465
* Bazaar now reads data from SSH connections more efficiently on platforms
 
466
  that provide the ``socketpair`` function, and when using paramiko.
 
467
  (Andrew Bennetts, #590637)
 
468
 
 
469
* ``Branch.copy_content_into`` is now a convenience method dispatching to
 
470
  a ``InterBranch`` multi-method. This permits ``bzr-loom`` and other
 
471
  plugins to intercept this even when a ``RemoteBranch`` proxy is in use.
 
472
  (Robert Collins, #201613)
 
473
 
 
474
* ``Branch`` formats can now be loaded lazily by registering a
 
475
  ``MetaDirBranchFormatFactory`` rather than an actual format. This will
 
476
  cause the named format class to be loaded only when an enumeration of
 
477
  formats is needed or when the format string for the object is
 
478
  encountered. (Robert Collins, Jelmer Vernooij)
 
479
 
 
480
* The encoding that bzr uses to output things other than file content can
 
481
  now be overridden via the output_encoding configuration option.
 
482
  (Martin Pool, #340394)
 
483
 
 
484
* Use lazy imports in ``bzrlib/merge.py`` so that plugins like ``news_merge``
 
485
  do not cause modules to be loaded unnecessarily just because the plugin
 
486
  registers a merge hook.  This improves ``bzr rocks`` time by about 25%
 
487
  in a default installation (with just the core plugins).
 
488
  (Andrew Bennetts)
 
489
 
 
490
Documentation
 
491
*************
 
492
 
 
493
* Added ``regression`` tag to our tags list. (Robert Collins)
 
494
 
 
495
* Improved our release checklist to have a bit less churn and leave things
 
496
  ready-to-go for the next action (including other people doing
 
497
  development). (Robert Collins)
 
498
 
 
499
* Remove obsolete discussion of PQM in documentation about how to
 
500
  contribute to Bazaar.  (Martin Pool, #588444)
 
501
 
 
502
API Changes
 
503
***********
 
504
 
 
505
* ``bzrlib.branch.InterBranch._get_branch_formats_to_test`` now returns
 
506
  an iterable of format pairs, rather than just a single pair, permitting
 
507
  InterBranch objects that work with multiple permutations to be
 
508
  comprehensively tested. (Robert Collins)
 
509
 
 
510
* ``bzrlib.lsprof.profile`` will no longer silently generate bad threaded
 
511
  profiles when concurrent profile requests are made. Instead the profile
 
512
  requests will be serialised. Reentrant requests will now deadlock.
 
513
  (Robert Collins)
 
514
 
 
515
* ``bzrlib.knit.KnitSequenceMatcher``, which has been deprecated since
 
516
  2007, has been deleted.  Use ``PatienceSequenceMatcher`` from
 
517
  ``bzrlib.patiencediff`` instead. (Andrew Bennetts)
 
518
 
 
519
* ``bzrlib.re_compile_checked`` is now deprecated. Caller should handle
 
520
  ``bzrlib.errors.InvalidPattern`` exception thrown by ``re.match`` in
 
521
  case the default error message not suitable for the use case.
 
522
  (Parth Malwankar)
 
523
 
 
524
* ``bzrlib.tests.blackbox.ExternalBase`` is deprecated.  It provided only
 
525
  one method ``check_output``, and we now recommend checking command
 
526
  output using ``run_script``. (Martin Pool)
 
527
 
 
528
* ``bzrlib.transport.ssh.SSHVendor.connect_ssh`` now returns an object
 
529
  that implements the interface of ``bzrlib.transport.ssh.SSHConnection``.
 
530
  Third-party implementations of ``SSHVendor`` may need to be updated
 
531
  accordingly.  Similarly, any code using ``SSHConnection`` directly will
 
532
  need to be updated.  (Andrew Bennetts)
 
533
 
 
534
* The constructor of ``bzrilb.smart.medium.SmartSSHClientMedium`` has
 
535
  changed to take an ``SSHParams`` instance (replacing many individual
 
536
  values).  (Andrew Bennetts)
 
537
 
 
538
Internals
 
539
*********
 
540
 
 
541
* ``bzrlib.osutils.get_terminal_encoding`` will now only mutter its
 
542
  selection when explicitly requested; this avoids many duplicate calls
 
543
  being logged when helpers, wrappers and older code that manually calls
 
544
  it are executed it is now logged deliberately by the ui setup code.
 
545
  (Robert Collins)
 
546
 
 
547
* Improved ``bzrlib.urlutils`` to handle lp:foo/bar URLs. (Gordon Tyler)
 
548
 
 
549
* ``bzrlib._c_static_tuple.StaticTuple`` now implements ``__sizeof__``, so
 
550
  that ``sys.getsizeof`` and other memory analysis tools will report more
 
551
  accurate results. (Andrew Bennetts)
 
552
 
 
553
* The symbol_versioning module can now cleanup after itself -
 
554
  ``suppress_deprecation_warnings`` now returns a cleanup function.
 
555
  (Robert Collins)
 
556
 
 
557
Testing
 
558
*******
 
559
 
 
560
* Add ``bzrlib.tests.fixtures`` to hold code for setting up objects
 
561
  to test.  (Martin Pool)
 
562
 
 
563
* ``test_import_tariff`` now respects BZR_PLUGINS_AT and BZR_PLUGINS_DISABLE.
 
564
  (Vincent Ladeuil, #595587)
 
565
 
8
566
bzr 2.2b3
9
567
#########
10
568
 
11
 
:2.2b3: NOT RELEASED YET
 
569
:2.2b3: 2010-05-28
 
570
 
 
571
This third beta in the 2.2 series brings with it all the goodness of 2.1.2
 
572
and 2.0.6 (though it preceeds 2.0.6 slightly). Of particular note for
 
573
users are compatibility fixes with bzr 1.5 and below servers, a hopeful
 
574
end to the EINTR errors caused by SIGWINCH interactions, a shiny new
 
575
bash completion script and bzr will no longer guess at identity details -
 
576
it was too unreliable in reality. Use ``bzr whoami`` on every new install.
 
577
For developers we have some API changes which may impact plugins as well
 
578
as a bunch of our regular improvements to internal clarity and test
 
579
support.
12
580
 
13
581
Compatibility Breaks
14
582
********************
15
583
 
 
584
* An API break has been made to the lock_write method of ``Branch`` and
 
585
  ``Repository`` objects; they now return ``branch.BranchWriteLockResult``
 
586
  and ``repository.RepositoryWriteLockResult`` objects. This makes
 
587
  changing the API in future easier and permits some cleaner calling code.
 
588
  The lock_read method has also changed from having no defined return
 
589
  value to returning ``LogicalLockResult`` objects.
 
590
  (Robert Collins)
 
591
 
 
592
* ``bzr`` does not try to guess the username as ``username@hostname``
 
593
  and requires it to be explictly set. This can be set using ``bzr
 
594
  whoami``. (Parth Malwankar, #549310)
 
595
 
 
596
* ``bzrlib.commands.Command`` will now raise ValueError during
 
597
  construction if there is no __doc__ set. (Note, this will be reverted in
 
598
  2.2b4) (Robert Collins)
 
599
 
 
600
* The source tree no longer contains a contrib/zsh/_bzr completion
 
601
  script. The new file contrib/zsh/README suggests alternatives.
 
602
  (Martin von Gagern, #560030)
 
603
 
16
604
New Features
17
605
************
18
606
 
30
618
  pack operation.
31
619
  (Parth Malwankar, #304320)
32
620
 
 
621
* New command line option ``--authors`` to ``bzr log`` allows users to
 
622
  select which of the apparent authors and committer should be
 
623
  included in the log. Defaults depend on format. (Martin von Gagern, #513322)
 
624
 
 
625
* Support ``--directory`` option for a number of additional commands:
 
626
  added, annotate, bind, cat, cat-revision, clean-tree, deleted,
 
627
  export, ignore, ignored, lookup-revision, ls, modified, nick,
 
628
  re-sign, unbind, unknowns.
 
629
  (Martin von Gagern, #527878)
 
630
 
 
631
* The bash_completion plugin from the bzr-bash-completion project has
 
632
  been merged into the tree. It provides a bash-completion command and
 
633
  replaces the outdated ``contrib/bash/bzr`` script with a version
 
634
  using the plugin. (Martin von Gagern, #560030)
 
635
 
 
636
* A new transport based on GIO (the gnome i/o library) provides access to
 
637
  samba shares, webdav using gio+smb and gio+dav. It is also possible to
 
638
  use gio for some already existing transport methods as gio+file,
 
639
  gio+sftp, gio+ftp. 
 
640
  (Mattias Eriksson)
 
641
 
33
642
Bug Fixes
34
643
*********
35
644
 
 
645
* Alias information shown by ``bzr help`` is now accurate. This
 
646
  was showing an internal object name for some plugin aliases.
 
647
  (Parth Malwankar, #584650)
 
648
 
36
649
* ``.bazaar``, ``.bazaar/bazaar.conf`` and ``.bzr.log`` inherit user and
37
650
  group ownership from the containing directory. This allow bzr to work
38
651
  better with sudo.
39
652
  (Martin <gzlist@googlemail.com>, Parth Malwankar, #376388)
40
653
 
 
654
* ``bzr clean-tree`` should not delete nested bzrdirs. Required for proper
 
655
  support of bzr-externals and scmproj plugins.
 
656
  (Alexander Belchenko, bug #572098)
 
657
 
 
658
* ``bzr ignore`` will no longer add duplicate patterns to .bzrignore.
 
659
  (Gordon Tyler, #572092)
 
660
 
41
661
* ``bzr log --exclude-common-ancestry -r X..Y`` displays the revisions that
42
662
  are part of Y ancestry but not part of X ancestry (aka the graph
43
663
  difference).
44
664
  (Vincent Ladeuil, #320119)
45
665
 
 
666
* ``bzr lp-propose`` which was switched to use production Launchpad API
 
667
  servers a few commits ago has been reverted to use edge: there is a
 
668
  problem with using production which isn't trivially obvious, so we've
 
669
  filed a bug to track it, and until thats fixed will be using edge.
 
670
  (Robert Collins, #583667)
 
671
 
 
672
* ``bzr rm`` should not refuse to delete directories which contained a file
 
673
  which has been moved elsewhere in the tree after the previous commit.
 
674
  (Marius Kruger, Daniel Watkins, #129880)
 
675
 
46
676
* ``bzr selftest --parallel=fork`` wait for its children avoiding zombies.
47
677
  (Vincent Ladeuil, #566670)
48
678
 
49
679
* ``bzr selftest`` should not use ui.note() since it's not unicode safe.
50
680
  (Vincent Ladeuil, #563997)
51
681
 
 
682
* CommitBuilder refuses to create revisions whose trees have no root.
 
683
  (Aaron Bentley)
 
684
 
 
685
* Do not register a SIGWINCH signal handler, instead just poll for the
 
686
  terminal width as needed.  This avoids the "Interrupted System Call"
 
687
  problems that occur on POSIX with all currently released versions of
 
688
  Python.
 
689
  (Andrew Bennetts, #583941)
 
690
 
52
691
* Don't mention --no-strict when we just issue the warning about unclean trees.
53
692
  (Vincent Ladeuil, #401599)
54
693
 
56
695
  versions before 1.6.
57
696
  (Andrew Bennetts, #528041)
58
697
 
 
698
* Improved progress bar for fetch (2a format only). Bazaar now shows an
 
699
  estimate of the number of records to be fetched vs actually fetched.
 
700
  (Parth Malwankar, #374740, #538868)
 
701
 
59
702
* Reduce peak memory by one copy of compressed text.
60
703
  (John Arbash Meinel, #566940)
61
704
 
 
705
* ``RemoteBranch.lock_write`` raises ``ReadOnlyError`` if called during a
 
706
  read lock, rather than causing an ``AttributeError``.
 
707
  (Andrew Bennetts, Данило Шеган, #582781)
 
708
 
 
709
* Selftest was failing with testtools 0.9.3, which caused an
 
710
  AssertionError raised from a cleanUp to be reported as a Failure, not an
 
711
  Error, breaking on of our test hygiene tests.
 
712
  (Robert Collins, Vincent Ladeuil).
 
713
 
 
714
* ``set_user_option`` with a dict on remote branches no longer fails with
 
715
  an AttributeError.  There is a new ``Branch.set_config_option_dict`` RPC
 
716
  to support this efficiently.
 
717
  (Andrew Bennetts, #430382)
 
718
  
62
719
* Show the filenames when a file rename fails so that the error will be
63
720
  more comprehensible.
64
721
  (Martin Pool, #491763)
65
722
 
 
723
* Support Pyrex 0.9.9, required changing how we handle exceptions in Pyrex.
 
724
  (John Arbash Meinel, #582656)
 
725
 
 
726
* Unicode characters in aliases are now handled correctly and do not cause
 
727
  UnicodeEncodeError exception. (Parth Malwankar, #529930)
 
728
 
 
729
* Unicode commit messages that are the same as a file name no longer cause
 
730
  UnicodeEncodeError. ``ui.text.show_warning`` now handles unicode
 
731
  messages.
 
732
  (Parth Malwankar, #563646)
 
733
 
 
734
* Using bzr with `lp:` urls behind an http proxy should work.
 
735
  (Robert Collins, #558343)
 
736
 
 
737
* When passing a file to ``UTF8DirReader`` make sure to close the current
 
738
  directory file handle after the chdir fails. Otherwise when passing many
 
739
  filenames into a command line ``bzr status`` we would leak descriptors.
 
740
  (John Arbash Meinel, #583486)
 
741
 
66
742
Improvements
67
743
************
68
744
 
74
750
  (case-sensitive) as false.
75
751
  (Brian de Alwis, Vincent Ladeuil)
76
752
 
 
753
* ``bzr ls`` now supports short options for existing long options.
 
754
  ``-k/--kind``, ``-i/--ignored``, ``-u/--unknown`` and ``-0/--null``.
 
755
  (Parth Malwankar, #181124)
 
756
 
77
757
* ``Config.get_user_option_as_bool`` will now warn if a value cannot
78
758
  be interpreted as a boolean.
79
759
  (Vincent Ladeuil)
80
760
 
81
 
Documentation
82
 
*************
 
761
* The all-in-one Windows installer will now be built with docstrings stripped
 
762
  from the library zip, reducing the size and slightly improving cold startup
 
763
  time. Bundled plugins are unchanged for the moment, but if adding other new
 
764
  plugins to an all-in-one installation, ensure they are compiled and
 
765
  installed with -O1 or help may not work. (Martin [gz])
83
766
 
84
767
API Changes
85
768
***********
96
779
  implementations.
97
780
  (Martin Pool)
98
781
 
 
782
* Lock methods on ``Tree``, ``Branch`` and ``Repository`` are now
 
783
  expected to return an object which can be used to unlock them. This reduces
 
784
  duplicate code when using cleanups. The previous 'tokens's returned by
 
785
  ``Branch.lock_write`` and ``Repository.lock_write`` are now attributes
 
786
  on the result of the lock_write. ``repository.RepositoryWriteLockResult``
 
787
  and ``branch.BranchWriteLockResult`` document this. (Robert Collins)
 
788
 
 
789
* ``Repository.refresh_data`` may now be called in a write group on
 
790
  pack-based repositories.  Older repositories will still raise an error
 
791
  in this case.  Subclasses of ``Repository`` can still override
 
792
  ``Repository._refresh_data``, but are now responsible for raising
 
793
  ``bzrlib.repository.IsInWriteGroupError`` if they do not support
 
794
  ``refresh_data`` during a write group.
 
795
  (Andrew Bennetts, #574236)
 
796
 
99
797
Internals
100
798
*********
101
799
 
 
800
* ``chk_map._bytes_to_text_key`` is now an optimized function to extract
 
801
  the (file-id, revision-id) key from a CHKInventory entry. This can
 
802
  potentially shave 5-10% time off during a large fetch. Related to bug
 
803
  #562666. (John Arbash Meinel)
 
804
 
 
805
* ``log._get_info_for_log_files`` now takes an add_cleanup callable.
 
806
  (Robert Collins)
 
807
 
102
808
* ``_remember_remote_is_before`` no longer raises AssertionError when
103
809
  suboptimal network behaviour is noticed; instead it just mutters to the
104
810
  log file (and warns the user if they have set the ``hpss`` debug flag).
111
817
  stripped, the prefix ``__doc__ =`` should now be used.
112
818
  (Martin <gzlist@googlemail.com>)
113
819
 
 
820
* No longer require zlib headers to build extensions, and remove the need
 
821
  for seperate copy of zlib library on windows.
 
822
  (John Arbash Meinel, Martin <gzlist@googlemail.com>, #566923)
 
823
 
114
824
Testing
115
825
*******
116
826
 
125
835
  failures on Lucid, FreeBSD and gentoo.  
126
836
  (Vincent Ladeuil, #528436)
127
837
 
 
838
* New class ``ExecutableFeature`` for checking the availability of
 
839
  executables on the ``PATH``. Migrated from bash_completion plugin.
 
840
  (Martin von Gagern)
 
841
 
128
842
bzr 2.2b2
129
843
#########
130
844
 
184
898
* Reset ``siginterrupt`` flag to False every time we handle a signal
185
899
  installed with ``set_signal_handler(..., restart_syscall=True)`` (from
186
900
  ``bzrlib.osutils``.  Reduces the likelihood of "Interrupted System Call"
187
 
  errors after two window resizes.
 
901
  errors compared to registering ``signal.signal`` directly.
188
902
  (Andrew Bennetts)
189
903
 
190
904
* When invoked with a range revision, ``bzr log`` doesn't show revisions
193
907
  (Vincent Ladeuil, #474807)
194
908
 
195
909
* Properly handle ``param_name`` attribute for ``ListOption``.
196
 
  (Martin von Gagern, 387117)
 
910
  (Martin von Gagern, #387117)
197
911
 
198
912
Improvements
199
913
************
232
946
* ``bzrlib.diff.get_trees_and_branches_to_diff`` is deprecated.  Use
233
947
  ``get_trees_and_branches_to_diff_locked`` instead.
234
948
  (Andrew Bennetts)
 
949
 
 
950
* ``TreeTransform.commit`` supports the full set of commit parameters, and
 
951
  auto-determines branch nick if not supplied.  (Aaron Bentley)
235
952
  
236
953
Internals
237
954
*********
242
959
  Command is now transient and only exists for the duration of ``run()``.
243
960
  (Robert Collins)
244
961
 
245
 
bzr 2.2.0b1
246
 
###########
247
 
 
248
 
:2.2.0b1: 2010-04-01
 
962
bzr 2.2b1
 
963
#########
 
964
 
 
965
:2.2b1: 2010-04-01
 
966
 
 
967
This is the first beta of the 2.2 series, leading up to a 2.2.0
 
968
release in July or August.  Beta releases are suitable for everyday use
 
969
but may cause some incompatibilities with plugins.  Some plugins may need
 
970
small updates to work with 2.2b1.
 
971
 
 
972
2.2b1 includes some changes to make merge conflicts easier to understand
 
973
and resolve.  It also removes some old unnecessary code, and loads
 
974
somewhat less code at startup.  It starts adding a common infrastructure
 
975
for dealing with colocated named branches, which can be implemented in
 
976
various ways in either bzr native or foreign formats.   On Ubuntu and
 
977
other platforms with the apport bug-reporting library, there's an easier
 
978
path to report problems with bzr.  We plan to continue with these themes
 
979
through the 2.2 series.
 
980
 
 
981
Over thirty bugs have been fixed, including in the log command, exporting
 
982
to tarballs, restarting interrupted system calls, portability of compiled
 
983
extensions, making backups during upgrade, and locking on ftp.
249
984
 
250
985
Compatibility Breaks
251
986
********************
292
1027
 
293
1028
* Parsing of command lines, for example in ``diff --using``, no longer
294
1029
  treats backslash as an escape character on Windows.   (Gordon Tyler,
295
 
  #392248)
 
1030
  #392428)
296
1031
 
297
1032
* Plugins can be disabled by defining ``BZR_DISABLE_PLUGINS`` as
298
1033
  a list of plugin names separated by ':' (';' on windows).
527
1262
  happens, and another warning will be written if the log file could not
528
1263
  be closed after retrying 100 times.  (Andrew Bennetts, #531746)
529
1264
 
 
1265
bzr 2.1.3
 
1266
#########
 
1267
 
 
1268
:Codename: Do run run
 
1269
:2.1.3: NOT RELEASED YET
 
1270
 
 
1271
Compatibility Breaks
 
1272
********************
 
1273
 
 
1274
New Features
 
1275
************
 
1276
 
 
1277
Bug Fixes
 
1278
*********
 
1279
 
 
1280
* ``bzr add SYMLINK/FILE`` now works properly when the symlink points to a
 
1281
  previously-unversioned directory within the tree: the directory is
 
1282
  marked versioned too.  
 
1283
  (Martin Pool, #192859)
 
1284
 
 
1285
* Configuration files in ``${BZR_HOME}`` are now written in an atomic
 
1286
  way which should help avoid problems with concurrent writers.
 
1287
  (Vincent Ladeuil, #525571)
 
1288
 
 
1289
* Don't traceback trying to unversion children files of an already
 
1290
  unversioned directory.  (Vincent Ladeuil, #494221)
 
1291
 
 
1292
* Fix ``AttributeError on parent.children`` when adding a file under a 
 
1293
  directory that was a symlink in the previous commit.
 
1294
  (Martin Pool, #192859)
 
1295
 
 
1296
* Prevent ``CHKMap.apply_delta`` from generating non-canonical CHK maps,
 
1297
  which can result in "missing referenced chk root keys" errors when
 
1298
  fetching from repositories with affected revisions.
 
1299
  (Andrew Bennetts, #522637)
 
1300
 
 
1301
* Progress bars prefer to truncate the text message rather than the
 
1302
  counters.  The spinner is shown between the network transfer indicator
 
1303
  and the progress message.  (Martin Pool)
 
1304
 
 
1305
* Raise ValueError instead of a string exception.
 
1306
  (John Arbash Meinel, #586926)
 
1307
 
 
1308
* Recursive binding for checkouts is now detected by bzr. A clear error
 
1309
  message is shown to the user. (Parth Malwankar, #405192)
 
1310
 
 
1311
Improvements
 
1312
************
 
1313
 
 
1314
* Add ``bzrlib.merge.MergeIntoMerger``, which can merge part or all of a
 
1315
  tree, and works with unrelated branches.  (Andrew Bennetts)
 
1316
 
 
1317
Documentation
 
1318
*************
 
1319
 
 
1320
* ``bzr help patterns`` now explains case insensitive patterns and
 
1321
  points to Python regular expression documentation.
 
1322
  (Parth Malwankar, #594386)
 
1323
 
 
1324
API Changes
 
1325
***********
 
1326
 
 
1327
* Delete ``ProgressTask.note``, which was deprecated in 2.1.
 
1328
 
 
1329
Internals
 
1330
*********
 
1331
 
 
1332
Testing
 
1333
*******
 
1334
 
 
1335
* Unit test added to ensure that "message" is not uses as a format variable
 
1336
  name in BzrError subclasses as this conflicts with some Python versions.
 
1337
  (Parth Malwankar, #603461)
 
1338
 
530
1339
bzr 2.1.2
531
1340
#########
532
1341
 
533
 
:2.1.2: NOT RELEASED YET
 
1342
:2.1.2: 2010-05-28
 
1343
 
 
1344
This release fixes two critical networking issues with older servers and
 
1345
with interrupted system call errors when pushing or pulling.  We recommend
 
1346
upgrading to anyone running a 2.1.x version of bzr.
534
1347
 
535
1348
Bug Fixes
536
1349
*********
537
1350
 
 
1351
* ``bzr clean-tree`` should not delete nested bzrdirs. Required for proper
 
1352
  support of bzr-externals and scmproj plugins.
 
1353
  (Alexander Belchenko, bug #572098)
 
1354
 
538
1355
* ``bzr switch`` does not die if a ConfigurableFileMerger is used.
539
1356
  (Aaron Bentley, #559436)
540
1357
 
 
1358
* Do not register a SIGWINCH signal handler, instead just poll for the
 
1359
  terminal width as needed.  This avoids the "Interrupted System Call"
 
1360
  problems that occur on POSIX with all currently released versions of
 
1361
  Python.
 
1362
  (Andrew Bennetts, #583941)
 
1363
 
541
1364
* Fixed ``AssertionError`` when accessing smart servers running Bazaar
542
1365
  versions before 1.6.
543
1366
  (Andrew Bennetts, #528041)
545
1368
* Reset ``siginterrupt`` flag to False every time we handle a signal
546
1369
  installed with ``set_signal_handler(..., restart_syscall=True)`` (from
547
1370
  ``bzrlib.osutils``.  Reduces the likelihood of "Interrupted System Call"
548
 
  errors after two window resizes.
 
1371
  errors compared to registering ``signal.signal`` directly.
549
1372
  (Andrew Bennetts)
550
1373
 
 
1374
* Reduce peak memory by one copy of compressed text.
 
1375
  (John Arbash Meinel, #566940)
 
1376
 
 
1377
* Support Pyrex 0.9.9, required changing how we handle exceptions in Pyrex.
 
1378
  (John Arbash Meinel, #582656)
 
1379
 
 
1380
* When passing a file to ``UTF8DirReader`` make sure to close the current
 
1381
  directory file handle after the chdir fails. Otherwise when passing many
 
1382
  filenames into a command line ``bzr status`` we would leak descriptors.
 
1383
  (John Arbash Meinel, #583486)
 
1384
 
551
1385
Internals
552
1386
*********
553
1387
 
989
1823
  history no longer crash when deleted files are involved.
990
1824
  (Vincent Ladeuil, John Arbash Meinel, #375898)
991
1825
 
 
1826
* ``bzr add SYMLINK/FILE`` now works properly when the symlink points to a
 
1827
  previously-unversioned directory within the tree: the directory is
 
1828
  marked versioned too.  
 
1829
  (Martin Pool, #192859)
 
1830
 
 
1831
* ``bzr commit SYMLINK`` now works, rather than trying to commit the
 
1832
  target of the symlink.
 
1833
  (Martin Pool, John Arbash Meinel, #128562)
 
1834
 
992
1835
* ``bzr revert`` now only takes write lock on working tree, instead of on 
993
1836
  both working tree and branch.
994
1837
  (Danny van Heumen, #498409)
997
1840
  permissions as ``.bzr`` directory on a POSIX OS.
998
1841
  (Parth Malwankar, #262450)
999
1842
 
 
1843
* Don't traceback trying to unversion children files of an already
 
1844
  unversioned directory.  (Vincent Ladeuil, #494221)
 
1845
 
 
1846
* Fix ``AttributeError on parent.children`` when adding a file under a 
 
1847
  directory that was a symlink in the previous commit.
 
1848
  (Martin Pool, #192859)
 
1849
 
 
1850
* Prevent ``CHKMap.apply_delta`` from generating non-canonical CHK maps,
 
1851
  which can result in "missing referenced chk root keys" errors when
 
1852
  fetching from repositories with affected revisions.
 
1853
  (Andrew Bennetts, #522637)
 
1854
 
 
1855
* Raise ValueError instead of a string exception.
 
1856
  (John Arbash Meinel, #586926)
 
1857
 
 
1858
* Reduce peak memory by one copy of compressed text.
 
1859
  (John Arbash Meinel, #566940)
 
1860
 
1000
1861
* Repositories accessed via a smart server now reject being stacked on a
1001
1862
  repository in an incompatible format, as is the case when accessing them
1002
1863
  via other methods.  This was causing fetches from those repositories via
1003
1864
  a smart server (e.g. using ``bzr branch``) to receive invalid data.
1004
1865
  (Andrew Bennetts, #562380)
1005
1866
 
 
1867
* Selftest with versions of subunit that support ``stopTestRun`` will no longer
 
1868
  error. This error was caused by 2.0 not being updated when upstream
 
1869
  python merged the end of run patch, which chose ``stopTestRun`` rather than
 
1870
  ``done``. (Robert Collins, #571437)
 
1871
 
 
1872
* When passing a file to ``UTF8DirReader`` make sure to close the current
 
1873
  directory file handle after the chdir fails. Otherwise when passing many
 
1874
  filenames into a command line ``bzr status`` we would leak descriptors.
 
1875
  (John Arbash Meinel, #583486)
 
1876
 
 
1877
 
 
1878
Testing
 
1879
*******
 
1880
 
 
1881
* ``build_tree_contents`` can create symlinks.
 
1882
  (Martin Pool, John Arbash Meinel)
 
1883
 
 
1884
 
1006
1885
bzr 2.0.5
1007
1886
#########
1008
1887
 
3702
4581
  can have a large effect on ``bzr checkout`` times. (John Arbash Meinel)
3703
4582
 
3704
4583
* selftest now supports a --parallel option, with values of 'fork' or
3705
 
  'subprocess' to run the test suite in parallel. Currently only linux
3706
 
  machine work, other platforms need patches submitted. (Robert Collins,
 
4584
  'subprocess' to run the test suite in parallel. Currently only Linux
 
4585
  machines work, other platforms need patches submitted. (Robert Collins,
3707
4586
  Vincent Ladeuil)
3708
4587
 
3709
4588
* ``tests.run_suite`` has a new parameter ``suite_decorators``, a list of 
6457
7336
 
6458
7337
* bzr main script cannot be imported (Benjamin Peterson)
6459
7338
 
6460
 
* On Linux bzr additionally looks for plugins in arch-independent site
 
7339
* On GNU/Linux bzr additionally looks for plugins in arch-independent site
6461
7340
  directory. (Toshio Kuratomi)
6462
7341
 
6463
7342
* The ``set_rh`` branch hook is now deprecated. Please migrate
6800
7679
 
6801
7680
* BZR_LOG environment variable controls location of .bzr.log trace file.
6802
7681
  User can suppress writing messages to .bzr.log by using '/dev/null'
6803
 
  filename (on Linux) or 'NUL' (on Windows). If BZR_LOG variable
 
7682
  filename (on Unix) or 'NUL' (on Windows). If BZR_LOG variable
6804
7683
  is not defined but BZR_HOME is defined then default location
6805
7684
  for .bzr.log trace file is ``$BZR_HOME/.bzr.log``.
6806
7685
  (Alexander Belchenko, #106117)
12543
13422
 
12544
13423
 
12545
13424
..
12546
 
   vim: tw=74 ft=rst ff=unix encoding=utf-8
 
13425
   vim: tw=74 ft=rst ff=unix