/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

Get rid of useless code in transform.py.

* bzrlib/transform.py:
(TreeTransformBase._parent_type_conflicts): Delete useless code.
(TreeTransformBase._any_contents): Slightly simplify.

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