/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: Alexander Belchenko
  • Date: 2010-06-17 08:53:15 UTC
  • mfrom: (5300 +trunk)
  • mto: (5303.2.1 integration)
  • mto: This revision was merged to the branch mainline in revision 5305.
  • Revision ID: bialix@ukr.net-20100617085315-hr8186zck57zn35s
merge bzr.dev; fix NEWS

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