/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: Vincent Ladeuil
  • Date: 2010-06-17 16:54:26 UTC
  • mto: This revision was merged to the branch mainline in revision 5306.
  • Revision ID: v.ladeuil+lp@free.fr-20100617165426-741tbmgwi62a9zub
Pass BZR_PLUGINS_AT and BZR_DISABLE_PLINGS to the subprocess fpr test_import_tariff

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.2b4
 
9
#########
 
10
 
 
11
:Codename: Monkey Magic
 
12
:2.2b4: NOT RELEASED YET
 
13
 
 
14
Compatibility Breaks
 
15
********************
 
16
 
 
17
* URLs like ``foo:bar/baz`` are now always parsed as a URL with scheme "foo"
 
18
  and path "bar/baz", even if bzr does not recognize "foo" as a known URL
 
19
  scheme.  Previously these URLs would be treated as local paths.
 
20
  (Gordon Tyler)
 
21
 
 
22
New Features
 
23
************
 
24
 
 
25
* Support ``--directory`` option for a number of additional commands:
 
26
  conflicts, merge-directive, missing, resolve, shelve, switch,
 
27
  unshelve, whoami. (Martin von Gagern, #527878)
 
28
 
 
29
Bug Fixes
 
30
*********
 
31
 
 
32
* ``bzr init`` does not recursively scan directory contents anymore
 
33
  leading to faster init for directories with existing content.
 
34
  (Martin [gz], Parth Malwankar, #501307)
 
35
 
 
36
* ``bzr log --exclude-common-ancestry`` is now taken into account for
 
37
  linear ancetries. (Vincent Ladeuil, #575631)
 
38
 
 
39
* ``bzr pull`` now works when a lp: URL is explicitly defined as the parent
 
40
  or pull location in locations.conf or branch.conf.
 
41
  (Gordon Tyler, #534787)
 
42
 
 
43
* Ensure that wrong path specifications in ``BZR_PLUGINS_AT`` display
 
44
  proper error messages. (Vincent Ladeuil, #591215)
 
45
 
 
46
* Explicitly removing ``--profile-imports`` option from parsed command-line
 
47
  arguments on Windows, because bzr script does the same.
 
48
  (Alexander Belchenko, #588277)
 
49
 
 
50
* Fetching was slightly confused about the best code to use and was
 
51
  using a new code path for all branches, resulting in more lookups than
 
52
  necessary on old branches. (Robert Collins, #593515)
 
53
 
 
54
* Final fix for 'no help for command' issue. We now show a clean message
 
55
  when a command has no help, document how to set help more clearly, and
 
56
  test that all commands available to the test suite have help.
 
57
  (Robert Collins, #177500)
 
58
 
 
59
* Raise ValueError instead of a string exception.
 
60
  (John Arbash Meinel, #586926)
 
61
 
 
62
* Relative imports in plugins are now handled correctly when using
 
63
  BZR_PLUGINS_AT. (Vincent Ladeuil, #588959)
 
64
 
 
65
* ``ScriptRunner`` now strips off leading indentation from test scripts,
 
66
  which previously caused "SyntaxError: No command for line".
 
67
  (Martin Pool)
 
68
 
 
69
* ``walkdirs`` now raises a useful message when the filenames are not using
 
70
  the filesystem encoding. (Eric Moritz, #488519)
 
71
 
 
72
* URL displayed for use with ``break-lock`` when smart server sees lock
 
73
  contention are now valid. Default timeout for lock contention retry is
 
74
  now 30 seconds instead of 300 seconds.
 
75
  (Parth Malwankar, #250451)
 
76
 
 
77
Improvements
 
78
************
 
79
 
 
80
* Bazaar now reads data from SSH connections more efficiently on platforms
 
81
  that provide the ``socketpair`` function, and when using paramiko.
 
82
  (Andrew Bennetts, #590637)
 
83
 
 
84
* ``Branch.copy_content_into`` is now a convenience method dispatching to
 
85
  a ``InterBranch`` multi-method. This permits ``bzr-loom`` and other
 
86
  plugins to intercept this even when a ``RemoteBranch`` proxy is in use.
 
87
  (Robert Collins, #201613)
 
88
 
 
89
* Use lazy imports in ``bzrlib/merge.py`` so that plugins like ``news_merge``
 
90
  do not cause modules to be loaded unnecessarily just because the plugin
 
91
  registers a merge hook.  This improves ``bzr rocks`` time by about 25%
 
92
  in a default installation (with just the core plugins).
 
93
  (Andrew Bennetts)
 
94
 
 
95
Documentation
 
96
*************
 
97
 
 
98
* Added ``regression`` tag to our tags list. (Robert Collins)
 
99
 
 
100
* Improved our release checklist to have a bit less churn and leave things
 
101
  ready-to-go for the next action (including other people doing
 
102
  development). (Robert Collins)
 
103
 
 
104
API Changes
 
105
***********
 
106
 
 
107
* ``bzrlib.branch.InterBranch._get_branch_formats_to_test`` now returns
 
108
  an iterable of format pairs, rather than just a single pair, permitting
 
109
  InterBranch objects that work with multiple permutations to be
 
110
  comprehensively tested. (Robert Collins)
 
111
 
 
112
* ``bzrlib.knit.KnitSequenceMatcher``, which has been deprecated since
 
113
  2007, has been deleted.  Use ``PatienceSequenceMatcher`` from
 
114
  ``bzrlib.patiencediff`` instead. (Andrew Bennetts)
 
115
 
 
116
* ``bzrlib.transport.ssh.SSHVendor.connect_ssh`` now returns an object
 
117
  that implements the interface of ``bzrlib.transport.ssh.SSHConnection``.
 
118
  Third-party implementations of ``SSHVendor`` may need to be updated
 
119
  accordingly.  Similarly, any code using ``SSHConnection`` directly will
 
120
  need to be updated.  (Andrew Bennetts)
 
121
 
 
122
* The constructor of ``bzrilb.smart.medium.SmartSSHClientMedium`` has
 
123
  changed to take an ``SSHParams`` instance (replacing many individual
 
124
  values).  (Andrew Bennetts)
 
125
 
 
126
Internals
 
127
*********
 
128
 
 
129
* Improved ``bzrlib.urlutils`` to handle lp:foo/bar URLs. (Gordon Tyler)
 
130
 
 
131
Testing
 
132
*******
 
133
 
 
134
* ``test_import_tariff`` now respects BZR_PLUGINS_AT and BZR_PLUGINS_DISABLE.
 
135
  (Vincent Ladeuil, #595587)
 
136
 
8
137
bzr 2.2b3
9
138
#########
10
139
 
11
 
:2.2b3: NOT RELEASED YET
 
140
:2.2b3: 2010-05-28
 
141
 
 
142
This third beta in the 2.2 series brings with it all the goodness of 2.1.2
 
143
and 2.0.6 (though it preceeds 2.0.6 slightly). Of particular note for
 
144
users are compatibility fixes with bzr 1.5 and below servers, a hopeful
 
145
end to the EINTR errors caused by SIGWINCH interactions, a shiny new
 
146
bash completion script and bzr will no longer guess at identity details -
 
147
it was too unreliable in reality. Use ``bzr whoami`` on every new install.
 
148
For developers we have some API changes which may impact plugins as well
 
149
as a bunch of our regular improvements to internal clarity and test
 
150
support.
12
151
 
13
152
Compatibility Breaks
14
153
********************
15
154
 
 
155
* An API break has been made to the lock_write method of ``Branch`` and
 
156
  ``Repository`` objects; they now return ``branch.BranchWriteLockResult``
 
157
  and ``repository.RepositoryWriteLockResult`` objects. This makes
 
158
  changing the API in future easier and permits some cleaner calling code.
 
159
  The lock_read method has also changed from having no defined return
 
160
  value to returning ``LogicalLockResult`` objects.
 
161
  (Robert Collins)
 
162
 
 
163
* ``bzr`` does not try to guess the username as ``username@hostname``
 
164
  and requires it to be explictly set. This can be set using ``bzr
 
165
  whoami``.
 
166
  (Parth Malwankar, #549310)
 
167
 
 
168
* ``bzrlib.commands.Command`` will now raise ValueError during
 
169
  construction if there is no __doc__ set. (Note, this will be reverted in
 
170
  2.2b4) (Robert Collins)
 
171
 
 
172
* The source tree no longer contains a contrib/zsh/_bzr completion
 
173
  script. The new file contrib/zsh/README suggests alternatives.
 
174
  (Martin von Gagern, #560030)
 
175
 
16
176
New Features
17
177
************
18
178
 
30
190
  pack operation.
31
191
  (Parth Malwankar, #304320)
32
192
 
 
193
* New command line option ``--authors`` to ``bzr log`` allows users to
 
194
  select which of the apparent authors and committer should be
 
195
  included in the log. Defaults depend on format. (Martin von Gagern, #513322)
 
196
 
 
197
* Support ``--directory`` option for a number of additional commands:
 
198
  added, annotate, bind, cat, cat-revision, clean-tree, deleted,
 
199
  export, ignore, ignored, lookup-revision, ls, modified, nick,
 
200
  re-sign, unbind, unknowns.
 
201
  (Martin von Gagern, #527878)
 
202
 
 
203
* The bash_completion plugin from the bzr-bash-completion project has
 
204
  been merged into the tree. It provides a bash-completion command and
 
205
  replaces the outdated ``contrib/bash/bzr`` script with a version
 
206
  using the plugin. (Martin von Gagern, #560030)
 
207
 
 
208
* A new transport based on GIO (the gnome i/o library) provides access to
 
209
  samba shares, webdav using gio+smb and gio+dav. It is also possible to
 
210
  use gio for some already existing transport methods as gio+file,
 
211
  gio+sftp, gio+ftp. 
 
212
  (Mattias Eriksson)
 
213
 
33
214
Bug Fixes
34
215
*********
35
216
 
 
217
* Alias information shown by ``bzr help`` is now accurate. This
 
218
  was showing an internal object name for some plugin aliases.
 
219
  (Parth Malwankar, #584650)
 
220
 
36
221
* ``.bazaar``, ``.bazaar/bazaar.conf`` and ``.bzr.log`` inherit user and
37
222
  group ownership from the containing directory. This allow bzr to work
38
223
  better with sudo.
39
224
  (Martin <gzlist@googlemail.com>, Parth Malwankar, #376388)
40
225
 
 
226
* ``bzr clean-tree`` should not delete nested bzrdirs. Required for proper
 
227
  support of bzr-externals and scmproj plugins.
 
228
  (Alexander Belchenko, bug #572098)
 
229
 
 
230
* ``bzr ignore`` will no longer add duplicate patterns to .bzrignore.
 
231
  (Gordon Tyler, #572092)
 
232
 
41
233
* ``bzr log --exclude-common-ancestry -r X..Y`` displays the revisions that
42
234
  are part of Y ancestry but not part of X ancestry (aka the graph
43
235
  difference).
44
236
  (Vincent Ladeuil, #320119)
45
237
 
 
238
* ``bzr lp-propose`` which was switched to use production Launchpad API
 
239
  servers a few commits ago has been reverted to use edge: there is a
 
240
  problem with using production which isn't trivially obvious, so we've
 
241
  filed a bug to track it, and until thats fixed will be using edge.
 
242
  (Robert Collins, #583667)
 
243
 
 
244
* ``bzr rm`` should not refuse to delete directories which contained a file
 
245
  which has been moved elsewhere in the tree after the previous commit.
 
246
  (Marius Kruger, Daniel Watkins, #129880)
 
247
 
46
248
* ``bzr selftest --parallel=fork`` wait for its children avoiding zombies.
47
249
  (Vincent Ladeuil, #566670)
48
250
 
49
251
* ``bzr selftest`` should not use ui.note() since it's not unicode safe.
50
252
  (Vincent Ladeuil, #563997)
51
253
 
 
254
* CommitBuilder refuses to create revisions whose trees have no root.
 
255
  (Aaron Bentley)
 
256
 
 
257
* Do not register a SIGWINCH signal handler, instead just poll for the
 
258
  terminal width as needed.  This avoids the "Interrupted System Call"
 
259
  problems that occur on POSIX with all currently released versions of
 
260
  Python.
 
261
  (Andrew Bennetts, #583941)
 
262
 
52
263
* Don't mention --no-strict when we just issue the warning about unclean trees.
53
264
  (Vincent Ladeuil, #401599)
54
265
 
56
267
  versions before 1.6.
57
268
  (Andrew Bennetts, #528041)
58
269
 
 
270
* Improved progress bar for fetch (2a format only). Bazaar now shows an
 
271
  estimate of the number of records to be fetched vs actually fetched.
 
272
  (Parth Malwankar, #374740, #538868)
 
273
 
59
274
* Reduce peak memory by one copy of compressed text.
60
275
  (John Arbash Meinel, #566940)
61
276
 
 
277
* ``RemoteBranch.lock_write`` raises ``ReadOnlyError`` if called during a
 
278
  read lock, rather than causing an ``AttributeError``.
 
279
  (Andrew Bennetts, Данило Шеган, #582781)
 
280
 
 
281
* Selftest was failing with testtools 0.9.3, which caused an
 
282
  AssertionError raised from a cleanUp to be reported as a Failure, not an
 
283
  Error, breaking on of our test hygiene tests.
 
284
  (Robert Collins, Vincent Ladeuil).
 
285
 
 
286
* ``set_user_option`` with a dict on remote branches no longer fails with
 
287
  an AttributeError.  There is a new ``Branch.set_config_option_dict`` RPC
 
288
  to support this efficiently.
 
289
  (Andrew Bennetts, #430382)
 
290
  
62
291
* Show the filenames when a file rename fails so that the error will be
63
292
  more comprehensible.
64
293
  (Martin Pool, #491763)
65
294
 
 
295
* Support Pyrex 0.9.9, required changing how we handle exceptions in Pyrex.
 
296
  (John Arbash Meinel, #582656)
 
297
 
 
298
* Unicode characters in aliases are now handled correctly and do not cause
 
299
  UnicodeEncodeError exception. (Parth Malwankar, #529930)
 
300
 
 
301
* Unicode commit messages that are the same as a file name no longer cause
 
302
  UnicodeEncodeError. ``ui.text.show_warning`` now handles unicode
 
303
  messages.
 
304
  (Parth Malwankar, #563646)
 
305
 
 
306
* Using bzr with `lp:` urls behind an http proxy should work.
 
307
  (Robert Collins, #558343)
 
308
 
 
309
* When passing a file to ``UTF8DirReader`` make sure to close the current
 
310
  directory file handle after the chdir fails. Otherwise when passing many
 
311
  filenames into a command line ``bzr status`` we would leak descriptors.
 
312
  (John Arbash Meinel, #583486)
 
313
 
66
314
Improvements
67
315
************
68
316
 
74
322
  (case-sensitive) as false.
75
323
  (Brian de Alwis, Vincent Ladeuil)
76
324
 
 
325
* ``bzr ls`` now supports short options for existing long options.
 
326
  ``-k/--kind``, ``-i/--ignored``, ``-u/--unknown`` and ``-0/--null``.
 
327
  (Parth Malwankar, #181124)
 
328
 
77
329
* ``Config.get_user_option_as_bool`` will now warn if a value cannot
78
330
  be interpreted as a boolean.
79
331
  (Vincent Ladeuil)
80
332
 
 
333
* The all-in-one Windows installer will now be built with docstrings stripped
 
334
  from the library zip, reducing the size and slightly improving cold startup
 
335
  time. Bundled plugins are unchanged for the moment, but if adding other new
 
336
  plugins to an all-in-one installation, ensure they are compiled and
 
337
  installed with -O1 or help may not work. (Martin [gz])
 
338
 
81
339
Documentation
82
340
*************
83
341
 
96
354
  implementations.
97
355
  (Martin Pool)
98
356
 
 
357
* Lock methods on ``Tree``, ``Branch`` and ``Repository`` are now
 
358
  expected to return an object which can be used to unlock them. This reduces
 
359
  duplicate code when using cleanups. The previous 'tokens's returned by
 
360
  ``Branch.lock_write`` and ``Repository.lock_write`` are now attributes
 
361
  on the result of the lock_write. ``repository.RepositoryWriteLockResult``
 
362
  and ``branch.BranchWriteLockResult`` document this. (Robert Collins)
 
363
 
 
364
* ``Repository.refresh_data`` may now be called in a write group on
 
365
  pack-based repositories.  Older repositories will still raise an error
 
366
  in this case.  Subclasses of ``Repository`` can still override
 
367
  ``Repository._refresh_data``, but are now responsible for raising
 
368
  ``bzrlib.repository.IsInWriteGroupError`` if they do not support
 
369
  ``refresh_data`` during a write group.
 
370
  (Andrew Bennetts, #574236)
 
371
 
99
372
Internals
100
373
*********
101
374
 
 
375
* ``chk_map._bytes_to_text_key`` is now an optimized function to extract
 
376
  the (file-id, revision-id) key from a CHKInventory entry. This can
 
377
  potentially shave 5-10% time off during a large fetch. Related to bug
 
378
  #562666. (John Arbash Meinel)
 
379
 
 
380
* ``log._get_info_for_log_files`` now takes an add_cleanup callable.
 
381
  (Robert Collins)
 
382
 
102
383
* ``_remember_remote_is_before`` no longer raises AssertionError when
103
384
  suboptimal network behaviour is noticed; instead it just mutters to the
104
385
  log file (and warns the user if they have set the ``hpss`` debug flag).
111
392
  stripped, the prefix ``__doc__ =`` should now be used.
112
393
  (Martin <gzlist@googlemail.com>)
113
394
 
 
395
* No longer require zlib headers to build extensions, and remove the need
 
396
  for seperate copy of zlib library on windows.
 
397
  (John Arbash Meinel, Martin <gzlist@googlemail.com>, #66923)
 
398
 
114
399
Testing
115
400
*******
116
401
 
 
402
* Added ``bzrlib.tests.matchers`` as a place to put matchers, along with
 
403
  our first in-tree matcher. See the module docstring for details.
 
404
  (Robert Collins)
 
405
 
117
406
* ``bzr selftest --parallel=subprocess`` now works correctly on win32.
118
407
   (Gordon Tyler, #551332)
119
408
 
121
410
  failures on Lucid, FreeBSD and gentoo.  
122
411
  (Vincent Ladeuil, #528436)
123
412
 
 
413
* New class ``ExecutableFeature`` for checking the availability of
 
414
  executables on the ``PATH``. Migrated from bash_completion plugin.
 
415
  (Martin von Gagern)
 
416
 
124
417
bzr 2.2b2
125
418
#########
126
419
 
180
473
* Reset ``siginterrupt`` flag to False every time we handle a signal
181
474
  installed with ``set_signal_handler(..., restart_syscall=True)`` (from
182
475
  ``bzrlib.osutils``.  Reduces the likelihood of "Interrupted System Call"
183
 
  errors after two window resizes.
 
476
  errors compared to registering ``signal.signal`` directly.
184
477
  (Andrew Bennetts)
185
478
 
186
479
* When invoked with a range revision, ``bzr log`` doesn't show revisions
228
521
* ``bzrlib.diff.get_trees_and_branches_to_diff`` is deprecated.  Use
229
522
  ``get_trees_and_branches_to_diff_locked`` instead.
230
523
  (Andrew Bennetts)
 
524
 
 
525
* ``TreeTransform.commit`` supports the full set of commit parameters, and
 
526
  auto-determines branch nick if not supplied.  (Aaron Bentley)
231
527
  
232
528
Internals
233
529
*********
238
534
  Command is now transient and only exists for the duration of ``run()``.
239
535
  (Robert Collins)
240
536
 
241
 
bzr 2.2.0b1
242
 
###########
243
 
 
244
 
:2.2.0b1: 2010-04-01
 
537
bzr 2.2b1
 
538
#########
 
539
 
 
540
:2.2b1: 2010-04-01
 
541
 
 
542
This is the first beta of the 2.2 series, leading up to a 2.2.0
 
543
release in July or August.  Beta releases are suitable for everyday use
 
544
but may cause some incompatibilities with plugins.  Some plugins may need
 
545
small updates to work with 2.2b1.
 
546
 
 
547
2.2b1 includes some changes to make merge conflicts easier to understand
 
548
and resolve.  It also removes some old unnecessary code, and loads
 
549
somewhat less code at startup.  It starts adding a common infrastructure
 
550
for dealing with colocated named branches, which can be implemented in
 
551
various ways in either bzr native or foreign formats.   On Ubuntu and
 
552
other platforms with the apport bug-reporting library, there's an easier
 
553
path to report problems with bzr.  We plan to continue with these themes
 
554
through the 2.2 series.
 
555
 
 
556
Over thirty bugs have been fixed, including in the log command, exporting
 
557
to tarballs, restarting interrupted system calls, portability of compiled
 
558
extensions, making backups during upgrade, and locking on ftp.
245
559
 
246
560
Compatibility Breaks
247
561
********************
523
837
  happens, and another warning will be written if the log file could not
524
838
  be closed after retrying 100 times.  (Andrew Bennetts, #531746)
525
839
 
 
840
bzr 2.1.3
 
841
#########
 
842
 
 
843
:Codename: Do run run
 
844
:2.1.3: NOT RELEASED YET
 
845
 
 
846
Compatibility Breaks
 
847
********************
 
848
 
 
849
New Features
 
850
************
 
851
 
 
852
Bug Fixes
 
853
*********
 
854
 
 
855
* Raise ValueError instead of a string exception.
 
856
  (John Arbash Meinel, #586926)
 
857
 
 
858
Improvements
 
859
************
 
860
 
 
861
Documentation
 
862
*************
 
863
 
 
864
API Changes
 
865
***********
 
866
 
 
867
Internals
 
868
*********
 
869
 
 
870
Testing
 
871
*******
 
872
 
526
873
bzr 2.1.2
527
874
#########
528
875
 
529
 
:2.1.2: NOT RELEASED YET
 
876
:2.1.2: 2010-05-28
 
877
 
 
878
This release fixes two critical networking issues with older servers and
 
879
with interrupted system call errors when pushing or pulling.  We recommend
 
880
upgrading to anyone running a 2.1.x version of bzr.
530
881
 
531
882
Bug Fixes
532
883
*********
533
884
 
 
885
* ``bzr clean-tree`` should not delete nested bzrdirs. Required for proper
 
886
  support of bzr-externals and scmproj plugins.
 
887
  (Alexander Belchenko, bug #572098)
 
888
 
534
889
* ``bzr switch`` does not die if a ConfigurableFileMerger is used.
535
890
  (Aaron Bentley, #559436)
536
891
 
 
892
* Do not register a SIGWINCH signal handler, instead just poll for the
 
893
  terminal width as needed.  This avoids the "Interrupted System Call"
 
894
  problems that occur on POSIX with all currently released versions of
 
895
  Python.
 
896
  (Andrew Bennetts, #583941)
 
897
 
537
898
* Fixed ``AssertionError`` when accessing smart servers running Bazaar
538
899
  versions before 1.6.
539
900
  (Andrew Bennetts, #528041)
541
902
* Reset ``siginterrupt`` flag to False every time we handle a signal
542
903
  installed with ``set_signal_handler(..., restart_syscall=True)`` (from
543
904
  ``bzrlib.osutils``.  Reduces the likelihood of "Interrupted System Call"
544
 
  errors after two window resizes.
 
905
  errors compared to registering ``signal.signal`` directly.
545
906
  (Andrew Bennetts)
546
907
 
 
908
* Reduce peak memory by one copy of compressed text.
 
909
  (John Arbash Meinel, #566940)
 
910
 
 
911
* Support Pyrex 0.9.9, required changing how we handle exceptions in Pyrex.
 
912
  (John Arbash Meinel, #582656)
 
913
 
 
914
* When passing a file to ``UTF8DirReader`` make sure to close the current
 
915
  directory file handle after the chdir fails. Otherwise when passing many
 
916
  filenames into a command line ``bzr status`` we would leak descriptors.
 
917
  (John Arbash Meinel, #583486)
 
918
 
547
919
Internals
548
920
*********
549
921
 
993
1365
  permissions as ``.bzr`` directory on a POSIX OS.
994
1366
  (Parth Malwankar, #262450)
995
1367
 
 
1368
* Raise ValueError instead of a string exception.
 
1369
  (John Arbash Meinel, #586926)
 
1370
 
 
1371
* Reduce peak memory by one copy of compressed text.
 
1372
  (John Arbash Meinel, #566940)
 
1373
 
996
1374
* Repositories accessed via a smart server now reject being stacked on a
997
1375
  repository in an incompatible format, as is the case when accessing them
998
1376
  via other methods.  This was causing fetches from those repositories via
999
1377
  a smart server (e.g. using ``bzr branch``) to receive invalid data.
1000
1378
  (Andrew Bennetts, #562380)
1001
1379
 
 
1380
* Selftest with versions of subunit that support ``stopTestRun`` will no longer
 
1381
  error. This error was caused by 2.0 not being updated when upstream
 
1382
  python merged the end of run patch, which chose ``stopTestRun`` rather than
 
1383
  ``done``. (Robert Collins, #571437)
 
1384
 
 
1385
* When passing a file to ``UTF8DirReader`` make sure to close the current
 
1386
  directory file handle after the chdir fails. Otherwise when passing many
 
1387
  filenames into a command line ``bzr status`` we would leak descriptors.
 
1388
  (John Arbash Meinel, #583486)
 
1389
 
 
1390
 
1002
1391
bzr 2.0.5
1003
1392
#########
1004
1393
 
3698
4087
  can have a large effect on ``bzr checkout`` times. (John Arbash Meinel)
3699
4088
 
3700
4089
* selftest now supports a --parallel option, with values of 'fork' or
3701
 
  'subprocess' to run the test suite in parallel. Currently only linux
3702
 
  machine work, other platforms need patches submitted. (Robert Collins,
 
4090
  'subprocess' to run the test suite in parallel. Currently only Linux
 
4091
  machines work, other platforms need patches submitted. (Robert Collins,
3703
4092
  Vincent Ladeuil)
3704
4093
 
3705
4094
* ``tests.run_suite`` has a new parameter ``suite_decorators``, a list of 
6453
6842
 
6454
6843
* bzr main script cannot be imported (Benjamin Peterson)
6455
6844
 
6456
 
* On Linux bzr additionally looks for plugins in arch-independent site
 
6845
* On GNU/Linux bzr additionally looks for plugins in arch-independent site
6457
6846
  directory. (Toshio Kuratomi)
6458
6847
 
6459
6848
* The ``set_rh`` branch hook is now deprecated. Please migrate
6796
7185
 
6797
7186
* BZR_LOG environment variable controls location of .bzr.log trace file.
6798
7187
  User can suppress writing messages to .bzr.log by using '/dev/null'
6799
 
  filename (on Linux) or 'NUL' (on Windows). If BZR_LOG variable
 
7188
  filename (on Unix) or 'NUL' (on Windows). If BZR_LOG variable
6800
7189
  is not defined but BZR_HOME is defined then default location
6801
7190
  for .bzr.log trace file is ``$BZR_HOME/.bzr.log``.
6802
7191
  (Alexander Belchenko, #106117)