/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: Jelmer Vernooij
  • Date: 2010-08-23 20:37:18 UTC
  • mto: This revision was merged to the branch mainline in revision 5389.
  • Revision ID: jelmer@samba.org-20100823203718-1fj7rrjsiaxedkp7
Provide bzrlib.bzrdir.format_registry.

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