/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: Canonical.com Patch Queue Manager
  • Date: 2010-08-21 17:09:54 UTC
  • mfrom: (5385.1.1 trivial-NEWS-fileencoding)
  • Revision ID: pqm@pqm.ubuntu.com-20100821170954-efrj80bvw56s5mzc
(parthm) Remove 'encoding' option from NEWS modeline as its an error in Vim
 7.3+ (Parth Malwankar)

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