/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: Martin Pool
  • Date: 2010-08-20 06:49:00 UTC
  • mfrom: (5349.1.5 234708-diff)
  • mto: This revision was merged to the branch mainline in revision 5384.
  • Revision ID: mbp@sourcefrog.net-20100820064900-hhbu782e4vi06v6d
resolve news conflicts in diff --using --diff-options branch

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