/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-10-12 15:50:39 UTC
  • mto: This revision was merged to the branch mainline in revision 5491.
  • Revision ID: v.ladeuil+lp@free.fr-20101012155039-mkar8mft788azp7i
More updates following list discussion.

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.3b2
 
9
#########
 
10
 
 
11
:2.3.b2: NOT RELEASED YET
 
12
 
 
13
Compatibility Breaks
 
14
********************
 
15
 
 
16
New Features
 
17
************
 
18
 
 
19
* Add ``mainline`` revision specifier, which selects the revision that
 
20
  merged a specified revision into the mainline.  (Aaron Bentley)
 
21
 
 
22
* Add ``annotate`` revision specifier, which selects the revision that
 
23
  introduced a specified line of a file.  (Aaron Bentley)
 
24
 
 
25
* ``bzr status`` now displays a summary of existing shelves after
 
26
  the other status information. This is done using a ``post_status``
 
27
  hook.
 
28
  (Parth Malwankar, #403687)
 
29
 
 
30
Bug Fixes
 
31
*********
 
32
 
 
33
Improvements
 
34
************
 
35
 
 
36
Documentation
 
37
*************
 
38
 
 
39
API Changes
 
40
***********
 
41
 
 
42
Internals
 
43
*********
 
44
 
 
45
* When running ``bzr selftest --subunit`` the subunit stream will no
 
46
  longer include the "log" information for tests which are considered to
 
47
  be 'successes' (success, xfail, skip, etc) (John Arbash Meinel)
 
48
 
 
49
Testing
 
50
*******
 
51
 
 
52
 
 
53
 
 
54
bzr 2.3b1
 
55
#########
 
56
 
 
57
:2.3b1: 2010-09-20
 
58
 
 
59
This is the first beta of the 2.3 series, leading up to a 2.3.0
 
60
release in January or February.  Beta releases are suitable for everyday use
 
61
but may cause some incompatibilities with plugins.  Some plugins may need
 
62
small updates to work with 2.3b1.
 
63
 
 
64
2.3b1 includes some performance improvements in both speed and memory
 
65
consumption, some preliminary support for generating a texinfo version of
 
66
the doc and better support for launchpad.  Many changes were made to make
 
67
our test suite more robust as well as numerous documentation fixes.  It
 
68
improves the common infrastructure for dealing with colocated named
 
69
branches and foreign branches.  We plan to continue with these themes
 
70
through the 2.3 series.
 
71
 
 
72
It also includes bug fixes for 2.0.6, 2.1.3 and 2.2.1 and over 40 fixes of
 
73
its own.
 
74
 
 
75
 
 
76
Compatibility Breaks
 
77
********************
 
78
 
 
79
* BzrError subclasses no longer support the name "message" to be used
 
80
  as an argument for __init__ or in _fmt format specification as this
 
81
  breaks in some Python versions. errors.LockError.__init__ argument
 
82
  is now named "msg" instead of earlier "message".
 
83
  (Parth Malwankar, #603461)
 
84
 
 
85
* Additional merges after an unrelated branch has been merged with its
 
86
  history no longer crash when deleted files are involved.
 
87
  (Vincent Ladeuil, John Arbash Meinel, #375898)
 
88
 
 
89
* ``bzr add SYMLINK/FILE`` now works properly when the symlink points to a
 
90
  previously-unversioned directory within the tree: the directory is
 
91
  marked versioned too.
 
92
  (Martin Pool, #192859)
 
93
 
 
94
* ``bzr commit SYMLINK`` now works, rather than trying to commit the
 
95
  target of the symlink.
 
96
  (Martin Pool, John Arbash Meinel, #128562)
 
97
 
 
98
* ``bzr upgrade`` now creates the ``backup.bzr`` directory with the same
 
99
  permissions as ``.bzr`` directory on a POSIX OS.
 
100
  (Parth Malwankar, #262450)
 
101
 
 
102
* ``bzrlib.transform.TreeTransformBase.final_kind``,
 
103
  ``bzrlib.transform.TreeTransform.tree_kind`` and
 
104
  ``bzrlib.transform.TransformPreview.tree_kind`` now return None instead
 
105
  of raising NoSuchFile.  (Vincent Ladeuil)
 
106
 
 
107
* CommitBuilder now uses the committer instead of _config.username to generate
 
108
  the revision-id.  (Aaron Bentley, #614404)
 
109
 
 
110
* Configuration files in ``${BZR_HOME}`` are now written in an atomic
 
111
  way which should help avoid problems with concurrent writers.
 
112
  (Vincent Ladeuil, #525571)
 
113
 
 
114
* `ControlDirFormat` and  `ControlDir` have been split out of `BzrDirFormat`
 
115
  and `BzrDir`, respectively. `ControlDirFormat`
 
116
  and `ControlDir` should be used as the base classes for new non-.bzr
 
117
  implementations.
 
118
 
 
119
  `BzrDirFormat.register_control_format` has been renamed to
 
120
  `ControlDirFormat.register_format`.
 
121
 
 
122
  `BzrDirFormat.register_server_control_format` has been removed.
 
123
 
 
124
  Probing for control directories is now done by separate objects derived
 
125
  from `bzrlib.controldir.Prober` and registered using
 
126
  `bzrlib.controldir.ControlDirFormat.register_prober` or
 
127
  `bzrlib.controldir.ControlDirFormat.register_server_prober`.
 
128
  `BzrDirFormat.probe_transport` has been moved onto `Prober`.
 
129
 
 
130
  `BzrDirFormat.register_format` has been renamed to
 
131
  `BzrProber.register_bzrdir_format`.
 
132
 
 
133
  `bzrlib.bzrdir.network_format_registry` has been moved to
 
134
  `bzrlib.controldir`.
 
135
 
 
136
  (Jelmer Vernooij)
 
137
 
 
138
* Cope with Microsoft FTP server that returns reply '250 Directory
 
139
  created' when mkdir succeeds.  (Martin Pool, #224373)
 
140
 
 
141
* Don't traceback when a lockdir's ``held/info`` file is corrupt (e.g.
 
142
  contains only NUL bytes).  Instead warn the user, and allow ``bzr
 
143
  break-lock`` to remove it.  (Andrew Bennetts, #619872)
 
144
  
 
145
* `decode` parameter to get() method in FtpTransport and GioTransport classes
 
146
  is deprecated. (Alexander Belchenko)
 
147
 
 
148
* `FileInWrongBranch` is deprecated in favour of `PathNotChild` and no
 
149
  longer raised.
 
150
  (Martin Pool)
 
151
 
 
152
* Fix ``AttributeError on parent.children`` when adding a file under a
 
153
  directory that was a symlink in the previous commit.
 
154
  (Martin Pool, #192859)
 
155
 
 
156
* Fix ``AttributeError: 'NoneType' object has no attribute 'close'`` in
 
157
  ``_close_ssh_proc`` when using ``bzr+ssh://``.  This was causing
 
158
  connections to pre-1.6 bzr+ssh servers to fail, and causing warnings on
 
159
  stderr in some other circumstances.  (Andrew Bennetts, #633745)
 
160
 
 
161
* Only call ``setlocale`` in the bzr startup script on posix systems. This
 
162
  avoids an issue with the newer windows C runtimes used by Python 2.6 and
 
163
  later which can mangle bytestrings printed to the console.
 
164
  (Martin [gz], #631350)
 
165
 
 
166
* Prevent ``CHKMap.apply_delta`` from generating non-canonical CHK maps,
 
167
  which can result in "missing referenced chk root keys" errors when
 
168
  fetching from repositories with affected revisions.
 
169
  (Andrew Bennetts, #522637)
 
170
 
 
171
* Raise ValueError instead of a string exception.
 
172
  (John Arbash Meinel, #586926)
 
173
 
 
174
* Reduce peak memory by one copy of compressed text.
 
175
  (John Arbash Meinel, #566940)
 
176
 
 
177
* Repositories accessed via a smart server now reject being stacked on a
 
178
  repository in an incompatible format, as is the case when accessing them
 
179
  via other methods.  This was causing fetches from those repositories via
 
180
  a smart server (e.g. using ``bzr branch``) to receive invalid data.
 
181
  (Andrew Bennetts, #562380)
 
182
 
 
183
* Selftest with versions of subunit that support ``stopTestRun`` will no longer
 
184
  error. This error was caused by 2.0 not being updated when upstream
 
185
  python merged the end of run patch, which chose ``stopTestRun`` rather than
 
186
  ``done``. (Robert Collins, #571437)
 
187
 
 
188
* Stop ``AttributeError: 'module' object has no attribute 'ElementTree'``
 
189
  being thrown from ``xml_serializer`` on certain cElementTree setups.
 
190
  (Martin [gz], #254278)
 
191
 
 
192
* The old ``bzr selftest --benchmark`` option has been removed.
 
193
  <https://launchpad.net/bzr-usertest> is an actively-maintained
 
194
  macrobenchmark suite.
 
195
  (Martin Pool)
 
196
 
 
197
* `tree_files` and `internal_tree_files` are now deprecated in favor of
 
198
  `WorkingTree.open_containing_paths`.
 
199
  (Martin Pool)
 
200
 
 
201
* Upgrading or fetching from a non-rich-root repository to a rich-root
 
202
  repository (e.g. from pack-0.92 to 2a) no longer fails with
 
203
  ``'Inter1and2Helper' object has no attribute 'source_repo'``.  This was
 
204
  a regression from Bazaar 2.1.  (Andrew Bennetts, #636930)
 
205
  
 
206
* When passing a file to ``UTF8DirReader`` make sure to close the current
 
207
  directory file handle after the chdir fails. Otherwise when passing many
 
208
  filenames into a command line ``bzr status`` we would leak descriptors.
 
209
  (John Arbash Meinel, #583486)
 
210
 
 
211
New Features
 
212
************
 
213
 
 
214
* Added ``pre_status`` and ``post_status`` hooks. This allows plugins
 
215
  to register custom handlers which will be invoked before/after the
 
216
  standard status output is displayed. (Parth Malwankar)
 
217
 
 
218
* ``bzr break-lock --config [location]`` can now break config files
 
219
  locks. (Vincent Ladeuil, #525571)
 
220
 
 
221
* ``bzrlib.config.LockableConfig`` is a base class for config files that
 
222
  needs to be protected against multiple writers. All methods that
 
223
  change a configuration variable value must be decorated with
 
224
  @needs_write_lock (set_option() for example).
 
225
  (Vincent Ladeuil,  #525571)
 
226
 
 
227
* The ``lp:`` prefix will now use your known username (from
 
228
  ``bzr launchpad-login``) to expand ``~`` to your username.  For example:
 
229
  ``bzr launchpad-login user && bzr push lp:~/project/branch`` will now
 
230
  push to ``lp:~user/project/branch``.  (John Arbash Meinel)
 
231
 
 
232
* New development format ``development8-subtree`` which is similar to the 
 
233
  ``2a`` format and adds subtree support. (Jelmer Vernooij)
 
234
 
 
235
Bug Fixes
 
236
*********
 
237
 
 
238
* Fix traceback with python-2.7's xmlrpclib
 
239
  (Toshio Kuratomi, #612096)
 
240
 
 
241
* Allow using both --using and --diff-options. 
 
242
  (Matthäus G. Chajdas, #234708)
 
243
 
 
244
* Allow using non-integer bug ID with generic bug trackers.
 
245
  (Alexandre Garnier, #440472)
 
246
 
 
247
* ``bzr add SYMLINK/FILE`` now works properly when the symlink points to a
 
248
  previously-unversioned directory within the tree: the directory is
 
249
  marked versioned too.  
 
250
  (Martin Pool, #192859)
 
251
 
 
252
* ``bzr ignore PATTERNS`` exits with error if a bad pattern is supplied.
 
253
  ``InvalidPattern`` exception error message now shows faulting
 
254
  regular expression.
 
255
  (Parth Malwankar #300062)
 
256
 
 
257
* ``clean-tree`` issues a warning if it is unable to delete a file
 
258
  due to ``errno.EACCES`` instead of exiting with an error on Windows.
 
259
  (Parth Malwankar, #430785)
 
260
 
 
261
* CommitBuilder now uses the committer instead of _config.username to generate
 
262
  the revision-id.  (Aaron Bentley, #614404)
 
263
 
 
264
* Configuration files in ``${BZR_HOME}`` are now protected against
 
265
  concurrent writers by using a lock. (Vincent Ladeuil, #525571)
 
266
 
 
267
* Cope with Microsoft FTP Server and VSFTPd that return reply '250
 
268
  Directory created' when mkdir succeeds.  (Martin Pool, #224373)
 
269
 
 
270
* Decrease peak memory during ``bzr send``. The old code was caching all
 
271
  text content and all inventory strings for all revisions before
 
272
  computing the diffs. Now we only cache as long as there is a child that
 
273
  will need them. Sending 2000 bzr revisions drops from 1.2GB peak to
 
274
  256MB peak. (John Arbash Meinel, #614576)
 
275
 
 
276
* Don't print internal object name when print an invalid revision spec
 
277
  error.  (Neil Martinsen-Burrell, #598701)
 
278
 
 
279
* Don't traceback when a lockdir's ``held/info`` file is corrupt (e.g.
 
280
  contains only NUL bytes).  Instead warn the user, and allow ``bzr
 
281
  break-lock`` to remove it.  (Andrew Bennetts, #619872)
 
282
  
 
283
* ``EPIPE`` can be raised during test server shutdown. This happened on
 
284
  gentoo only so far. (Vincent Ladeuil, #627277)
 
285
 
 
286
* Errors occurring during http(s) test server starts should now be
 
287
  handled cleanly. (Vincent Ladeuil, #392402)
 
288
 
 
289
* Fix ``AttributeError on parent.children`` when adding a file under a 
 
290
  directory that was a symlink in the previous commit.
 
291
  (Martin Pool, #192859)
 
292
 
 
293
* Fix ``AttributeError: 'NoneType' object has no attribute 'close'`` in
 
294
  ``_close_ssh_proc`` when using ``bzr+ssh://``.  This was causing
 
295
  connections to pre-1.6 bzr+ssh servers to fail, and causing warnings on
 
296
  stderr in some other circumstances.  (Andrew Bennetts, #633745)
 
297
 
 
298
* Fix spurious paramiko warning on hardy by ensuring that ``selftest``
 
299
  properly remove its warning filter. (Vincent Ladeuil, #625686)
 
300
 
 
301
* ``HTTP/1.1`` test servers now set a ``Content-Length`` header to comply
 
302
  with pedantic ``HTTP/1.1`` clients. (Vincent Ladeuil, #568421)
 
303
 
 
304
* Most of the leaked threads during selftest are now fixed, allowing the
 
305
  full test suite to pass on gentoo.
 
306
  (Vincent Ladeuil, #392127)
 
307
 
 
308
* Only call ``setlocale`` in the bzr startup script on posix systems. This
 
309
  avoids an issue with the newer windows C runtimes used by Python 2.6 and
 
310
  later which can mangle bytestrings printed to the console.
 
311
  (Martin [gz], #631350)
 
312
 
 
313
* `PathNotChild` should not give a traceback.
 
314
  (Martin Pool, #98735)
 
315
 
 
316
* ``PQM`` will no longer ignore syntax errors in submissions.
 
317
  (Vincent Ladeuil, #626667)
 
318
 
 
319
* Prevent ``CHKMap.apply_delta`` from generating non-canonical CHK maps,
 
320
  which can result in "missing referenced chk root keys" errors when
 
321
  fetching from repositories with affected revisions.
 
322
  (Andrew Bennetts, #522637)
 
323
 
 
324
* strace test-helper tests cope with the new Ubuntu policy of not allowing
 
325
  users to attach to their own processes by default.
 
326
  (Martin Pool, #626679)
 
327
 
 
328
* Test classes like ``TestCase``, ``TestLoader``, and ``TestSuite`` should
 
329
  be available from ``bzrlib.tests.*``. They used to be, but were
 
330
  accidentally removed. (John Arbash Meinel, #627438)
 
331
 
 
332
* Treat all IO, OS, and socket errors consistently when establishing
 
333
  SSH/SFTP connections via a subprocess.  (Andrew Bennetts)
 
334
 
 
335
* ``Transport.stat`` on a symlink, including a transport pointing directly
 
336
  to a symlink, now returns information about the symlink.
 
337
  (Martin Pool)
 
338
 
 
339
* Upgrading or fetching from a non-rich-root repository to a rich-root
 
340
  repository (e.g. from pack-0.92 to 2a) no longer fails with
 
341
  ``'Inter1and2Helper' object has no attribute 'source_repo'``.
 
342
  (Andrew Bennetts, #636930)
 
343
  
 
344
* Wait for the SSH server to actually finish, rather than just waiting for
 
345
  it to negotiate the key exchange. (John Arbash Meinel, #626876)
 
346
 
 
347
Improvements
 
348
************
 
349
 
 
350
* ``bzr remove`` now just backs up changed files instead of exiting,
 
351
  forcing you to choose to either keep or delete them. Bazaar will now delete
 
352
  the files if they can easily be recovered using revert, otherwise they
 
353
  will be backed up (adding an extention of the form .~#~).
 
354
  (Marius Kruger, #400554)
 
355
 
 
356
* ``bzr revert`` and ``bzr status`` are up to 15% faster on large trees
 
357
  with many changes by not repeatedly building a list of all file-ids.
 
358
  (Andrew Bennetts)
 
359
 
 
360
* Decrease memory consumption when many chk index pages are loaded. (Such
 
361
  as during ``bzr co`` or ``bzr ls -R`` of a large tree.) Often we need to
 
362
  read many chk pages because the individual chk map nodes will be spread
 
363
  randomly. Peak memory for 'bzr ls -R' on a large tree dropped from 396MB
 
364
  down to 247MB, expect even more significant savings on 64-bit platforms.
 
365
  (John Arbash Meinel)
 
366
 
 
367
* ``DirState`` internals use a little bit less memory. For bzr.dev it
 
368
  drops the memory from 1MB down to about 800kB. And replaces a few
 
369
  thousand tuples and sets with StaticTuple.  (John Arbash Meinel)
 
370
 
 
371
* Inventory entries now consume less memory (on 32-bit Ubuntu file entries
 
372
  have dropped from 68 bytes to 40, and directory entries from 120 bytes
 
373
  to 48).  (Andrew Bennetts)
 
374
 
 
375
* When building new working trees, default to reading from the repository
 
376
  rather than the source tree unless explicitly requested. (via
 
377
  ``--files-from`` and ``--hardlink`` for ``bzr branch`` and
 
378
  ``bzr checkout``. Generally, 2a format repositories extract
 
379
  content faster than seeking and reading content from another tree,
 
380
  especially in cold-cache situations. (John Arbash Meinel, #607298)
 
381
 
 
382
* Add ``__pycache__`` to the default ``ignores`` file. Future releases of
 
383
  Python will use this directory to store bytecodes.
 
384
  (Andrea Corbellini, #626687)
 
385
 
 
386
Documentation
 
387
*************
 
388
 
 
389
* Added a builder/writer sphinx extension that can generate texinfo files. The
 
390
  generated files are syntactically correct but the info navigation nodes
 
391
  needs more work. (Vincent Ladeuil, #219334)
 
392
 
 
393
* First tests defined for sphinx, including a new bzrlib.tests.features.sphinx
 
394
  to make the tests conditional.
 
395
  (Vincent Ladeuil)
 
396
 
 
397
* Fix a lot of references in the docs to the old http://bazaar-vcs.org to
 
398
  the new http://bazaar.canonical.com or http://wiki.bazaar.canonical.com
 
399
  (John Arbash Meinel, #617503)
 
400
 
 
401
* Suggest ``bzr revert`` for restoring locally deleted files in help text
 
402
  for ``bzr update``.  (John C Barstow, #191466)
 
403
 
 
404
API Changes
 
405
***********
 
406
 
 
407
* Configuration files should now use the ``from_string`` constructor rather
 
408
  than the ``file`` parameter of the ``_get_parser`` method. The later has
 
409
  been deprecated. ``from_string`` also accept a ``save=True`` parameter to
 
410
  have the configuration file immediately written to disk. 
 
411
  (Vincent Ladeuil)
 
412
 
 
413
* Deprecate treating a `PushResult` and `PullResult` as an integer for the
 
414
  relative change in revno.
 
415
  (Martin Pool)
 
416
  `
 
417
* ``IniBaseConfig`` objects should now use the ``from_string`` constructor
 
418
  the rather than the ``file`` parameter of the ``_get_parser`` method. The
 
419
  later has been deprecated. (Vincent Ladeuil)
 
420
 
 
421
* InventoryEntry instances now raise AttributeError if you try to assign
 
422
  to attributes that are irrelevant to that kind of entry.  e.g. setting
 
423
  ``symlink_target`` on an InventoryFile will fail.  It is still okay to
 
424
  read those attributes on any kind of InventoryEntry.  The complete list
 
425
  of affected attributes is: ``executable``, ``text_id``, ``text_sha1``,
 
426
  ``text_size`` (only valid for kind == file); ``symlink_target`` (only
 
427
  valid for kind == link); and ``reference_revision`` (only valid for kind
 
428
  == tree-reference).  (Andrew Bennetts)
 
429
 
 
430
* InventoryEntry objects no longer have ``_put_in_tar`` or
 
431
  ``_put_on_disk`` methods.  (Andrew Bennetts)
 
432
 
 
433
* The ``get_filename`` parameter in the ``config.IniBaseConfig``
 
434
  constructor has been deprecated, use the ``file_name`` parameter instead.
 
435
  (Vincent Ladeuil)
 
436
 
 
437
Internals
 
438
*********
 
439
 
 
440
* Remove used and broken code path in ``BranchInitHookParams.__repr__``.
 
441
  (Andrew Bennetts)
 
442
 
 
443
Testing
 
444
*******
 
445
 
 
446
* ``build_tree_contents`` can create symlinks.
 
447
  (Martin Pool, John Arbash Meinel)
 
448
 
 
449
* Catch socket errors to avoid
 
450
  bt.test_sftp_transport.SSHVendorBadConnection.test_bad_connection_ssh
 
451
  random failures. (Vincent Ladeuil, #601804)
 
452
 
 
453
* HTTP test servers will leak less threads (and sockets) and will not hang on
 
454
  AIX anymore. (Vincent Ladeuil, #405745)
 
455
 
 
456
* On platforms that don't support forking give a nice error message saying so
 
457
  when ``bzr selftest --parallel=fork`` is used. (Martin [gz], #528730)
 
458
 
 
459
* Rearrange thread leak detection code to eliminate global state and make it
 
460
  possible to extend the reporting. (Marting [gz], #633462)
 
461
 
 
462
* Suppress the "maximum recursion depth exceeded in __subclasscheck__"
 
463
  warning on stderr emitted during ``test_dict_deepnested`` in
 
464
  ``bzrlib/tests/test__bencode.py``.  (Andrew Bennetts)
 
465
 
 
466
* The test suite now simply holds log files in memory, rather than writing them
 
467
  out to disk and then reading them back in and deleting them.
 
468
  (Andrew Bennetts)
 
469
 
 
470
* The way ``bzr selftest --parallel`` generates N partitions of tests to
 
471
  run in parallel has changed.  Instead of splitting the list of tests at
 
472
  N-1 points, it distributes the tests one-by-one into the partitions in a
 
473
  round robin fashion.  This reduces the total time to run the tests in
 
474
  parallel because a series of slow tests in the test suite will be
 
475
  distributed evenly among the parallel test suites, rather than slowing
 
476
  down just one suite.  (Andrew Bennetts)
 
477
 
 
478
* Tracebacks from a parameterized test are no longer reported against every
 
479
  parameterization of that test.  This was done by adding a hack to
 
480
  ``bzrlib.tests.clone_test`` so that it no longer causes
 
481
  testtools.TestCase instances to share a details dict.
 
482
  (Andrew Bennetts, #625574)
 
483
 
 
484
 
 
485
bzr 2.2.2
 
486
#########
 
487
 
 
488
:2.2.2: NOT RELEASED YET
 
489
 
 
490
Compatibility Breaks
 
491
********************
 
492
 
 
493
New Features
 
494
************
 
495
 
 
496
Bug Fixes
 
497
*********
 
498
 
 
499
Improvements
 
500
************
 
501
 
 
502
Documentation
 
503
*************
 
504
 
 
505
API Changes
 
506
***********
 
507
 
 
508
Internals
 
509
*********
 
510
 
 
511
Testing
 
512
*******
 
513
 
 
514
* Fix tests that failed when run under ``LANG=C``.
 
515
  (Andrew Bennetts, #632387)
 
516
 
 
517
 
 
518
bzr 2.2.1
 
519
#########
 
520
 
 
521
:2.2.1: 2010-09-17
 
522
 
 
523
This is a bugfix release which also includes bugfixes from 2.0.6 and
 
524
2.1.3. None are critical, but upgrading is recommended for all users on
 
525
earlier 2.2 releases.
 
526
 
 
527
Bug Fixes
 
528
*********
 
529
 
 
530
* Additional merges after an unrelated branch has been merged with its
 
531
  history no longer crash when deleted files are involved.
 
532
  (Vincent Ladeuil, John Arbash Meinel, #375898)
 
533
 
 
534
* ``bzr add SYMLINK/FILE`` now works properly when the symlink points to a
 
535
  previously-unversioned directory within the tree: the directory is
 
536
  marked versioned too.
 
537
  (Martin Pool, #192859)
 
538
 
 
539
* ``bzr commit SYMLINK`` now works, rather than trying to commit the
 
540
  target of the symlink.
 
541
  (Martin Pool, John Arbash Meinel, #128562)
 
542
 
 
543
* ``bzr upgrade`` now creates the ``backup.bzr`` directory with the same
 
544
  permissions as ``.bzr`` directory on a POSIX OS.
 
545
  (Parth Malwankar, #262450)
 
546
 
 
547
* CommitBuilder now uses the committer instead of _config.username to generate
 
548
  the revision-id.  (Aaron Bentley, #614404)
 
549
 
 
550
* Configuration files in ``${BZR_HOME}`` are now written in an atomic
 
551
  way which should help avoid problems with concurrent writers.
 
552
  (Vincent Ladeuil, #525571)
 
553
 
 
554
* Cope with Microsoft FTP server that returns reply '250 Directory
 
555
  created' when mkdir succeeds.  (Martin Pool, #224373)
 
556
 
 
557
* Don't traceback trying to unversion children files of an already
 
558
  unversioned directory.  (Vincent Ladeuil, #494221)
 
559
 
 
560
* Don't traceback when a lockdir's ``held/info`` file is corrupt (e.g.
 
561
  contains only NUL bytes).  Instead warn the user, and allow ``bzr
 
562
  break-lock`` to remove it.  (Andrew Bennetts, #619872)
 
563
  
 
564
* Fix ``AttributeError on parent.children`` when adding a file under a
 
565
  directory that was a symlink in the previous commit.
 
566
  (Martin Pool, #192859)
 
567
 
 
568
* Fix ``AttributeError: 'NoneType' object has no attribute 'close'`` in
 
569
  ``_close_ssh_proc`` when using ``bzr+ssh://``.  This was causing
 
570
  connections to pre-1.6 bzr+ssh servers to fail, and causing warnings on
 
571
  stderr in some other circumstances.  (Andrew Bennetts, #633745)
 
572
 
 
573
* Only call ``setlocale`` in the bzr startup script on posix systems. This
 
574
  avoids an issue with the newer windows C runtimes used by Python 2.6 and
 
575
  later which can mangle bytestrings printed to the console.
 
576
  (Martin [gz], #631350)
 
577
 
 
578
* Prevent ``CHKMap.apply_delta`` from generating non-canonical CHK maps,
 
579
  which can result in "missing referenced chk root keys" errors when
 
580
  fetching from repositories with affected revisions.
 
581
  (Andrew Bennetts, #522637)
 
582
 
 
583
* Raise ValueError instead of a string exception.
 
584
  (John Arbash Meinel, #586926)
 
585
 
 
586
* Reduce peak memory by one copy of compressed text.
 
587
  (John Arbash Meinel, #566940)
 
588
 
 
589
* Repositories accessed via a smart server now reject being stacked on a
 
590
  repository in an incompatible format, as is the case when accessing them
 
591
  via other methods.  This was causing fetches from those repositories via
 
592
  a smart server (e.g. using ``bzr branch``) to receive invalid data.
 
593
  (Andrew Bennetts, #562380)
 
594
 
 
595
* Selftest with versions of subunit that support ``stopTestRun`` will no longer
 
596
  error. This error was caused by 2.0 not being updated when upstream
 
597
  python merged the end of run patch, which chose ``stopTestRun`` rather than
 
598
  ``done``. (Robert Collins, #571437)
 
599
 
 
600
* Stop ``AttributeError: 'module' object has no attribute 'ElementTree'``
 
601
  being thrown from ``xml_serializer`` on certain cElementTree setups.
 
602
  (Martin [gz], #254278)
 
603
 
 
604
* Upgrading or fetching from a non-rich-root repository to a rich-root
 
605
  repository (e.g. from pack-0.92 to 2a) no longer fails with
 
606
  ``'Inter1and2Helper' object has no attribute 'source_repo'``.  This was
 
607
  a regression from Bazaar 2.1.  (Andrew Bennetts, #636930)
 
608
  
 
609
* When passing a file to ``UTF8DirReader`` make sure to close the current
 
610
  directory file handle after the chdir fails. Otherwise when passing many
 
611
  filenames into a command line ``bzr status`` we would leak descriptors.
 
612
  (John Arbash Meinel, #583486)
 
613
 
 
614
Documentation
 
615
*************
 
616
 
 
617
* Fix a lot of references in the docs to the old http://bazaar-vcs.org to
 
618
  the new http://bazaar.canonical.com or http://wiki.bazaar.canonical.com
 
619
  (John Arbash Meinel, #617503)
 
620
 
 
621
Internals
 
622
*********
 
623
 
 
624
* Remove used and broken code path in ``BranchInitHookParams.__repr__``.
 
625
  (Andrew Bennetts)
 
626
 
 
627
Testing
 
628
*******
 
629
 
 
630
* ``build_tree_contents`` can create symlinks.
 
631
  (Martin Pool, John Arbash Meinel)
 
632
 
 
633
* Tracebacks from a parameterized test are no longer reported against every
 
634
  parameterization of that test.  This was done by adding a hack to
 
635
  ``bzrlib.tests.clone_test`` so that it no longer causes
 
636
  testtools.TestCase instances to share a details dict.
 
637
  (Andrew Bennetts, #625574)
 
638
 
 
639
 
 
640
bzr 2.2
 
641
#######
 
642
 
 
643
:Codename: La Hulpe
 
644
:2.2: 2010-08-06
 
645
 
 
646
This release marks the start of another long-term-stable series. From
 
647
here, we will only make bugfix releases on the 2.2 series (2.2.1, etc),
 
648
while 2.3 will become our new development series. The 2.0 and 2.1 series
 
649
will also continue to get bugfixes. (Currently 2.0 is planned to be
 
650
supported for another 6 months.)
 
651
 
 
652
This is primarily a bugfix and polish release over the 2.1 series, with
 
653
a large number of bugs fixed (>120), and some performance improvements.
 
654
 
 
655
There are some compatibility changes in this release.  For users of bzrlib
 
656
as a library, we now request that they call ``bzrlib.initialize`` and use
 
657
the returned context manager appropriately. For commandline users we no
 
658
longer guess user identity for ``bzr commit``, users must specify their
 
659
identity using ``bzr whoami`` (you don't need to specify your identity for
 
660
readonly operations).
 
661
 
 
662
Users are encouraged to upgrade from the other stable series.
 
663
 
 
664
Compatibility Breaks
 
665
********************
 
666
 
 
667
* BzrError subclasses no longer support the name "message" to be used
 
668
  as an argument for __init__ or in _fmt format specification as this
 
669
  breaks in some Python versions. errors.LockError.__init__ argument
 
670
  is now named "msg" instead of earlier "message".
 
671
  (Parth Malwankar, #603461)
 
672
 
 
673
* The old ``bzr selftest --benchmark`` option has been removed.
 
674
  <https://launchpad.net/bzr-usertest> is an actively-maintained
 
675
  macrobenchmark suite.
 
676
  (Martin Pool)
 
677
 
 
678
Bug Fixes
 
679
*********
 
680
 
 
681
* ``bzr ignore PATTERNS`` exits with error if a bad pattern is supplied.
 
682
  ``InvalidPattern`` exception error message now shows faulting
 
683
  regular expression.
 
684
  (Parth Malwankar #300062)
 
685
 
 
686
* Configuration files in ``${BZR_HOME}`` are now written in an atomic
 
687
  way which should help avoid problems with concurrent writers.
 
688
  (Vincent Ladeuil, #525571)
 
689
 
 
690
* Don't traceback trying to unversion children files of an already
 
691
  unversioned directory.  (Vincent Ladeuil, #494221)
 
692
 
 
693
* ``HTTP/1.1`` test servers now set a ``Content-Length`` header to comply
 
694
  with pedantic ``HTTP/1.1`` clients. (Vincent Ladeuil, #568421)
 
695
 
 
696
* Progress bars prefer to truncate the text message rather than the
 
697
  counters.  The spinner is shown between the network transfer indicator
 
698
  and the progress message.  Progress bars are correctly cleared off when 
 
699
  they finish.  (Martin Pool, #611127)
 
700
 
 
701
* Recursive binding for checkouts is now detected by bzr. A clear error
 
702
  message is shown to the user. (Parth Malwankar, #405192)
 
703
 
 
704
Improvements
 
705
************
 
706
 
 
707
* Add ``bzrlib.merge.MergeIntoMerger``, which can merge part or all of a
 
708
  tree, and works with unrelated branches.  (Andrew Bennetts)
 
709
 
 
710
* Add py2exe windows target ``bzrw.exe``. This allow for starting a Bazaar
 
711
  GUI with out have a console open in the background.
 
712
  (Gary van der Merwe, #433781)
 
713
 
 
714
Documentation
 
715
*************
 
716
 
 
717
* ``bzr help patterns`` now explains case insensitive patterns and
 
718
  points to Python regular expression documentation.
 
719
  (Parth Malwankar, #594386)
 
720
 
 
721
API Changes
 
722
***********
 
723
 
 
724
* Delete ``ProgressTask.note``, which was deprecated in 2.1.
 
725
 
 
726
Testing
 
727
*******
 
728
 
 
729
* Unit test added to ensure that "message" is not uses as a format variable
 
730
  name in BzrError subclasses as this conflicts with some Python versions.
 
731
  (Parth Malwankar, #603461)
 
732
 
 
733
bzr 2.2b4
 
734
#########
 
735
 
 
736
:Codename: Monkey Magic
 
737
:2.2b4: 2004-07-09
 
738
 
 
739
 
 
740
This fourth and final beta in the 2.2 series now stabilizes the internal
 
741
APIs. Plugin authors are recommended to ensure their releases are
 
742
compatible, so that 2.2rc1 can be a true release candidate, containing
 
743
stable and compatible plugin versions. 
 
744
 
 
745
For users of bzrlib as a library, one of the primary changes is to request
 
746
that they call ``bzrlib.initialize`` and use the returned context manager
 
747
appropriately.
 
748
 
 
749
Better interaction with ``bzr-loom`` to make sure branching from a loom
 
750
even over a smart server still yields a local loom. Not to mention lots of
 
751
bugfixes over 2.2b3.
 
752
 
 
753
Compatibility Breaks
 
754
********************
 
755
 
 
756
* bzrlib library users now need to call ``__enter__`` and ``__exit__`` on
 
757
  the result of ``bzrlib.initialize``. This change was made when fixing
 
758
  the bad habit recent bzr versions have had of leaving progress bars 
 
759
  behind on the screen. That required calling another function before
 
760
  exiting the program, and it made sense to provide a full context
 
761
  manager at the same time. (Robert Collins)
 
762
 
 
763
* The ``bzr`` front end now requires a ``bzrlib.ui.ui_factory`` which is a
 
764
  context manager in the Python 2.5 and above sense. The bzrlib base class
 
765
  is such a manager, but third party UI factories which do not derive from
 
766
  ``bzrlib.ui.UIFactory`` will be incompatible with the command line front
 
767
  end.
 
768
 
 
769
* URLs like ``foo:bar/baz`` are now always parsed as a URL with scheme "foo"
 
770
  and path "bar/baz", even if bzr does not recognize "foo" as a known URL
 
771
  scheme.  Previously these URLs would be treated as local paths.
 
772
  (Gordon Tyler)
 
773
 
 
774
 
 
775
New Features
 
776
************
 
777
 
 
778
* Support ``--directory`` option for a number of additional commands:
 
779
  conflicts, merge-directive, missing, resolve, shelve, switch,
 
780
  unshelve, whoami. (Martin von Gagern, #527878)
 
781
 
 
782
Bug Fixes
 
783
*********
 
784
 
 
785
* ``bzr branch`` to a new repository with a default stacking policy no
 
786
  longer transfers the full history unnecessarily.
 
787
  (Andrew Bennetts, #597942)
 
788
 
 
789
* ``bzr init`` does not recursively scan directory contents anymore
 
790
  leading to faster init for directories with existing content.
 
791
  (Martin [gz], Parth Malwankar, #501307)
 
792
 
 
793
* ``bzr log --exclude-common-ancestry`` is now taken into account for
 
794
  linear ancetries. (Vincent Ladeuil, #575631)
 
795
 
 
796
* ``bzr log -r branch:REMOTE`` can now properly log the remote branch,
 
797
  rather than trying to fetch the data locally and failing because of a
 
798
  readonly error. (Martin von Gagern, #149270)
 
799
 
 
800
* ``bzr pull`` now works when a lp: URL is explicitly defined as the parent
 
801
  or pull location in locations.conf or branch.conf.
 
802
  (Gordon Tyler, #534787)
 
803
 
 
804
* ``bzr reconfigure --unstacked`` now works with branches accessed via a
 
805
  smart server. (Andrew Bennetts, #551525)
 
806
 
 
807
* ``BzrDir.find_branches`` should ignore branches with missing repositories.
 
808
  (Marius Kruger, Robert Collins)
 
809
 
 
810
* ``BzrDir.find_bzrdirs`` should ignore dirs that raises PermissionDenied.
 
811
  (Marius Kruger, Robert Collins)
 
812
 
 
813
* Ensure that wrong path specifications in ``BZR_PLUGINS_AT`` display
 
814
  proper error messages. (Vincent Ladeuil, #591215)
 
815
 
 
816
* Explicitly removing ``--profile-imports`` option from parsed command-line
 
817
  arguments on Windows, because bzr script does the same.
 
818
  (Alexander Belchenko, #588277)
 
819
 
 
820
* Fetching was slightly confused about the best code to use and was
 
821
  using a new code path for all branches, resulting in more lookups than
 
822
  necessary on old branches. (Robert Collins, #593515)
 
823
 
 
824
* Final fix for 'no help for command' issue. We now show a clean message
 
825
  when a command has no help, document how to set help more clearly, and
 
826
  test that all commands available to the test suite have help.
 
827
  (Robert Collins, #177500)
 
828
 
 
829
* Invalid patterns supplied to ``Globster`` or ``lazy_regex`` now raise
 
830
  ``InvalidPattern`` exception showing clear error message to the user.
 
831
  (Parth Malwankar #300062)
 
832
 
 
833
* Progress output is cleaned up when exiting.  (Aaron Bentley)
 
834
 
 
835
* Raise ValueError instead of a string exception.
 
836
  (John Arbash Meinel, #586926)
 
837
 
 
838
* Relative imports in plugins are now handled correctly when using
 
839
  BZR_PLUGINS_AT. (Vincent Ladeuil, #588959)
 
840
 
 
841
* ``ScriptRunner`` now strips off leading indentation from test scripts,
 
842
  which previously caused "SyntaxError: No command for line".
 
843
  (Martin Pool)
 
844
 
 
845
* Show unicode filenames in diff headers using terminal encoding. 
 
846
  (Alexander Belchenko, Bug #382699)
 
847
  NOTE for Windows users: If user need to save diff to file then user need to
 
848
  change encoding of the terminal to ANSI encoding with command ``chcp XXX``
 
849
  (e.g. ``chcp 1251`` for Russian Windows).
 
850
 
 
851
* URL displayed for use with ``break-lock`` when smart server sees lock
 
852
  contention are now valid. Default timeout for lock contention retry is
 
853
  now 30 seconds instead of 300 seconds.
 
854
  (Parth Malwankar, #250451)
 
855
 
 
856
* ``walkdirs`` now raises a useful message when the filenames are not using
 
857
  the filesystem encoding. (Eric Moritz, #488519)
 
858
 
 
859
* Enable debugging of bzr on windows with pdb and other tools. This was 
 
860
  broken because we call GetCommandLineW on windows. The fix adjusts the 
 
861
  command line we get to be the same length as sys.argv.
 
862
  (Jason Spashett, Alexander Belchenko, #587868)
 
863
 
 
864
Improvements
 
865
************
 
866
 
 
867
* Bazaar now reads data from SSH connections more efficiently on platforms
 
868
  that provide the ``socketpair`` function, and when using paramiko.
 
869
  (Andrew Bennetts, #590637)
 
870
 
 
871
* ``Branch.copy_content_into`` is now a convenience method dispatching to
 
872
  a ``InterBranch`` multi-method. This permits ``bzr-loom`` and other
 
873
  plugins to intercept this even when a ``RemoteBranch`` proxy is in use.
 
874
  (Robert Collins, #201613)
 
875
 
 
876
* ``Branch`` formats can now be loaded lazily by registering a
 
877
  ``MetaDirBranchFormatFactory`` rather than an actual format. This will
 
878
  cause the named format class to be loaded only when an enumeration of
 
879
  formats is needed or when the format string for the object is
 
880
  encountered. (Robert Collins, Jelmer Vernooij)
 
881
 
 
882
* The encoding that bzr uses to output things other than file content can
 
883
  now be overridden via the output_encoding configuration option.
 
884
  (Martin Pool, #340394)
 
885
 
 
886
* Use lazy imports in ``bzrlib/merge.py`` so that plugins like ``news_merge``
 
887
  do not cause modules to be loaded unnecessarily just because the plugin
 
888
  registers a merge hook.  This improves ``bzr rocks`` time by about 25%
 
889
  in a default installation (with just the core plugins).
 
890
  (Andrew Bennetts)
 
891
 
 
892
Documentation
 
893
*************
 
894
 
 
895
* Added ``regression`` tag to our tags list. (Robert Collins)
 
896
 
 
897
* Improved our release checklist to have a bit less churn and leave things
 
898
  ready-to-go for the next action (including other people doing
 
899
  development). (Robert Collins)
 
900
 
 
901
* Remove obsolete discussion of PQM in documentation about how to
 
902
  contribute to Bazaar.  (Martin Pool, #588444)
 
903
 
 
904
API Changes
 
905
***********
 
906
 
 
907
* ``bzrlib.branch.InterBranch._get_branch_formats_to_test`` now returns
 
908
  an iterable of format pairs, rather than just a single pair, permitting
 
909
  InterBranch objects that work with multiple permutations to be
 
910
  comprehensively tested. (Robert Collins)
 
911
 
 
912
* ``bzrlib.lsprof.profile`` will no longer silently generate bad threaded
 
913
  profiles when concurrent profile requests are made. Instead the profile
 
914
  requests will be serialised. Reentrant requests will now deadlock.
 
915
  (Robert Collins)
 
916
 
 
917
* ``bzrlib.knit.KnitSequenceMatcher``, which has been deprecated since
 
918
  2007, has been deleted.  Use ``PatienceSequenceMatcher`` from
 
919
  ``bzrlib.patiencediff`` instead. (Andrew Bennetts)
 
920
 
 
921
* ``bzrlib.re_compile_checked`` is now deprecated. Caller should handle
 
922
  ``bzrlib.errors.InvalidPattern`` exception thrown by ``re.match`` in
 
923
  case the default error message not suitable for the use case.
 
924
  (Parth Malwankar)
 
925
 
 
926
* ``bzrlib.tests.blackbox.ExternalBase`` is deprecated.  It provided only
 
927
  one method ``check_output``, and we now recommend checking command
 
928
  output using ``run_script``. (Martin Pool)
 
929
 
 
930
* ``bzrlib.transport.ssh.SSHVendor.connect_ssh`` now returns an object
 
931
  that implements the interface of ``bzrlib.transport.ssh.SSHConnection``.
 
932
  Third-party implementations of ``SSHVendor`` may need to be updated
 
933
  accordingly.  Similarly, any code using ``SSHConnection`` directly will
 
934
  need to be updated.  (Andrew Bennetts)
 
935
 
 
936
* The constructor of ``bzrilb.smart.medium.SmartSSHClientMedium`` has
 
937
  changed to take an ``SSHParams`` instance (replacing many individual
 
938
  values).  (Andrew Bennetts)
 
939
 
 
940
Internals
 
941
*********
 
942
 
 
943
* ``bzrlib.osutils.get_terminal_encoding`` will now only mutter its
 
944
  selection when explicitly requested; this avoids many duplicate calls
 
945
  being logged when helpers, wrappers and older code that manually calls
 
946
  it are executed it is now logged deliberately by the ui setup code.
 
947
  (Robert Collins)
 
948
 
 
949
* Improved ``bzrlib.urlutils`` to handle lp:foo/bar URLs. (Gordon Tyler)
 
950
 
 
951
* ``bzrlib._c_static_tuple.StaticTuple`` now implements ``__sizeof__``, so
 
952
  that ``sys.getsizeof`` and other memory analysis tools will report more
 
953
  accurate results. (Andrew Bennetts)
 
954
 
 
955
* The symbol_versioning module can now cleanup after itself -
 
956
  ``suppress_deprecation_warnings`` now returns a cleanup function.
 
957
  (Robert Collins)
 
958
 
 
959
Testing
 
960
*******
 
961
 
 
962
* Add ``bzrlib.tests.fixtures`` to hold code for setting up objects
 
963
  to test.  (Martin Pool)
 
964
 
 
965
* ``test_import_tariff`` now respects BZR_PLUGINS_AT and BZR_PLUGINS_DISABLE.
 
966
  (Vincent Ladeuil, #595587)
 
967
 
8
968
bzr 2.2b3
9
969
#########
10
970
 
11
 
:2.2b3: NOT RELEASED YET
 
971
:2.2b3: 2010-05-28
 
972
 
 
973
This third beta in the 2.2 series brings with it all the goodness of 2.1.2
 
974
and 2.0.6 (though it preceeds 2.0.6 slightly). Of particular note for
 
975
users are compatibility fixes with bzr 1.5 and below servers, a hopeful
 
976
end to the EINTR errors caused by SIGWINCH interactions, a shiny new
 
977
bash completion script and bzr will no longer guess at identity details -
 
978
it was too unreliable in reality. Use ``bzr whoami`` on every new install.
 
979
For developers we have some API changes which may impact plugins as well
 
980
as a bunch of our regular improvements to internal clarity and test
 
981
support.
12
982
 
13
983
Compatibility Breaks
14
984
********************
15
985
 
 
986
* An API break has been made to the lock_write method of ``Branch`` and
 
987
  ``Repository`` objects; they now return ``branch.BranchWriteLockResult``
 
988
  and ``repository.RepositoryWriteLockResult`` objects. This makes
 
989
  changing the API in future easier and permits some cleaner calling code.
 
990
  The lock_read method has also changed from having no defined return
 
991
  value to returning ``LogicalLockResult`` objects.
 
992
  (Robert Collins)
 
993
 
 
994
* ``bzr`` does not try to guess the username as ``username@hostname``
 
995
  and requires it to be explictly set. This can be set using ``bzr
 
996
  whoami``. (Parth Malwankar, #549310)
 
997
 
 
998
* ``bzrlib.commands.Command`` will now raise ValueError during
 
999
  construction if there is no __doc__ set. (Note, this will be reverted in
 
1000
  2.2b4) (Robert Collins)
 
1001
 
 
1002
* The source tree no longer contains a contrib/zsh/_bzr completion
 
1003
  script. The new file contrib/zsh/README suggests alternatives.
 
1004
  (Martin von Gagern, #560030)
 
1005
 
16
1006
New Features
17
1007
************
18
1008
 
30
1020
  pack operation.
31
1021
  (Parth Malwankar, #304320)
32
1022
 
 
1023
* New command line option ``--authors`` to ``bzr log`` allows users to
 
1024
  select which of the apparent authors and committer should be
 
1025
  included in the log. Defaults depend on format. (Martin von Gagern, #513322)
 
1026
 
 
1027
* Support ``--directory`` option for a number of additional commands:
 
1028
  added, annotate, bind, cat, cat-revision, clean-tree, deleted,
 
1029
  export, ignore, ignored, lookup-revision, ls, modified, nick,
 
1030
  re-sign, unbind, unknowns.
 
1031
  (Martin von Gagern, #527878)
 
1032
 
 
1033
* The bash_completion plugin from the bzr-bash-completion project has
 
1034
  been merged into the tree. It provides a bash-completion command and
 
1035
  replaces the outdated ``contrib/bash/bzr`` script with a version
 
1036
  using the plugin. (Martin von Gagern, #560030)
 
1037
 
 
1038
* A new transport based on GIO (the gnome i/o library) provides access to
 
1039
  samba shares, webdav using gio+smb and gio+dav. It is also possible to
 
1040
  use gio for some already existing transport methods as gio+file,
 
1041
  gio+sftp, gio+ftp. 
 
1042
  (Mattias Eriksson)
 
1043
 
33
1044
Bug Fixes
34
1045
*********
35
1046
 
 
1047
* Alias information shown by ``bzr help`` is now accurate. This
 
1048
  was showing an internal object name for some plugin aliases.
 
1049
  (Parth Malwankar, #584650)
 
1050
 
36
1051
* ``.bazaar``, ``.bazaar/bazaar.conf`` and ``.bzr.log`` inherit user and
37
1052
  group ownership from the containing directory. This allow bzr to work
38
1053
  better with sudo.
39
1054
  (Martin <gzlist@googlemail.com>, Parth Malwankar, #376388)
40
1055
 
 
1056
* ``bzr clean-tree`` should not delete nested bzrdirs. Required for proper
 
1057
  support of bzr-externals and scmproj plugins.
 
1058
  (Alexander Belchenko, bug #572098)
 
1059
 
 
1060
* ``bzr ignore`` will no longer add duplicate patterns to .bzrignore.
 
1061
  (Gordon Tyler, #572092)
 
1062
 
41
1063
* ``bzr log --exclude-common-ancestry -r X..Y`` displays the revisions that
42
1064
  are part of Y ancestry but not part of X ancestry (aka the graph
43
1065
  difference).
44
1066
  (Vincent Ladeuil, #320119)
45
1067
 
 
1068
* ``bzr lp-propose`` which was switched to use production Launchpad API
 
1069
  servers a few commits ago has been reverted to use edge: there is a
 
1070
  problem with using production which isn't trivially obvious, so we've
 
1071
  filed a bug to track it, and until thats fixed will be using edge.
 
1072
  (Robert Collins, #583667)
 
1073
 
 
1074
* ``bzr rm`` should not refuse to delete directories which contained a file
 
1075
  which has been moved elsewhere in the tree after the previous commit.
 
1076
  (Marius Kruger, Daniel Watkins, #129880)
 
1077
 
46
1078
* ``bzr selftest --parallel=fork`` wait for its children avoiding zombies.
47
1079
  (Vincent Ladeuil, #566670)
48
1080
 
49
1081
* ``bzr selftest`` should not use ui.note() since it's not unicode safe.
50
1082
  (Vincent Ladeuil, #563997)
51
1083
 
 
1084
* CommitBuilder refuses to create revisions whose trees have no root.
 
1085
  (Aaron Bentley)
 
1086
 
 
1087
* Do not register a SIGWINCH signal handler, instead just poll for the
 
1088
  terminal width as needed.  This avoids the "Interrupted System Call"
 
1089
  problems that occur on POSIX with all currently released versions of
 
1090
  Python.
 
1091
  (Andrew Bennetts, #583941)
 
1092
 
52
1093
* Don't mention --no-strict when we just issue the warning about unclean trees.
53
1094
  (Vincent Ladeuil, #401599)
54
1095
 
56
1097
  versions before 1.6.
57
1098
  (Andrew Bennetts, #528041)
58
1099
 
 
1100
* Improved progress bar for fetch (2a format only). Bazaar now shows an
 
1101
  estimate of the number of records to be fetched vs actually fetched.
 
1102
  (Parth Malwankar, #374740, #538868)
 
1103
 
59
1104
* Reduce peak memory by one copy of compressed text.
60
1105
  (John Arbash Meinel, #566940)
61
1106
 
 
1107
* ``RemoteBranch.lock_write`` raises ``ReadOnlyError`` if called during a
 
1108
  read lock, rather than causing an ``AttributeError``.
 
1109
  (Andrew Bennetts, Данило Шеган, #582781)
 
1110
 
 
1111
* Selftest was failing with testtools 0.9.3, which caused an
 
1112
  AssertionError raised from a cleanUp to be reported as a Failure, not an
 
1113
  Error, breaking on of our test hygiene tests.
 
1114
  (Robert Collins, Vincent Ladeuil).
 
1115
 
 
1116
* ``set_user_option`` with a dict on remote branches no longer fails with
 
1117
  an AttributeError.  There is a new ``Branch.set_config_option_dict`` RPC
 
1118
  to support this efficiently.
 
1119
  (Andrew Bennetts, #430382)
 
1120
  
62
1121
* Show the filenames when a file rename fails so that the error will be
63
1122
  more comprehensible.
64
1123
  (Martin Pool, #491763)
65
1124
 
 
1125
* Support Pyrex 0.9.9, required changing how we handle exceptions in Pyrex.
 
1126
  (John Arbash Meinel, #582656)
 
1127
 
 
1128
* Unicode characters in aliases are now handled correctly and do not cause
 
1129
  UnicodeEncodeError exception. (Parth Malwankar, #529930)
 
1130
 
 
1131
* Unicode commit messages that are the same as a file name no longer cause
 
1132
  UnicodeEncodeError. ``ui.text.show_warning`` now handles unicode
 
1133
  messages.
 
1134
  (Parth Malwankar, #563646)
 
1135
 
 
1136
* Using bzr with `lp:` urls behind an http proxy should work.
 
1137
  (Robert Collins, #558343)
 
1138
 
 
1139
* When passing a file to ``UTF8DirReader`` make sure to close the current
 
1140
  directory file handle after the chdir fails. Otherwise when passing many
 
1141
  filenames into a command line ``bzr status`` we would leak descriptors.
 
1142
  (John Arbash Meinel, #583486)
 
1143
 
66
1144
Improvements
67
1145
************
68
1146
 
74
1152
  (case-sensitive) as false.
75
1153
  (Brian de Alwis, Vincent Ladeuil)
76
1154
 
 
1155
* ``bzr ls`` now supports short options for existing long options.
 
1156
  ``-k/--kind``, ``-i/--ignored``, ``-u/--unknown`` and ``-0/--null``.
 
1157
  (Parth Malwankar, #181124)
 
1158
 
77
1159
* ``Config.get_user_option_as_bool`` will now warn if a value cannot
78
1160
  be interpreted as a boolean.
79
1161
  (Vincent Ladeuil)
80
1162
 
81
 
Documentation
82
 
*************
 
1163
* The all-in-one Windows installer will now be built with docstrings stripped
 
1164
  from the library zip, reducing the size and slightly improving cold startup
 
1165
  time. Bundled plugins are unchanged for the moment, but if adding other new
 
1166
  plugins to an all-in-one installation, ensure they are compiled and
 
1167
  installed with -O1 or help may not work. (Martin [gz])
83
1168
 
84
1169
API Changes
85
1170
***********
96
1181
  implementations.
97
1182
  (Martin Pool)
98
1183
 
 
1184
* Lock methods on ``Tree``, ``Branch`` and ``Repository`` are now
 
1185
  expected to return an object which can be used to unlock them. This reduces
 
1186
  duplicate code when using cleanups. The previous 'tokens's returned by
 
1187
  ``Branch.lock_write`` and ``Repository.lock_write`` are now attributes
 
1188
  on the result of the lock_write. ``repository.RepositoryWriteLockResult``
 
1189
  and ``branch.BranchWriteLockResult`` document this. (Robert Collins)
 
1190
 
 
1191
* ``Repository.refresh_data`` may now be called in a write group on
 
1192
  pack-based repositories.  Older repositories will still raise an error
 
1193
  in this case.  Subclasses of ``Repository`` can still override
 
1194
  ``Repository._refresh_data``, but are now responsible for raising
 
1195
  ``bzrlib.repository.IsInWriteGroupError`` if they do not support
 
1196
  ``refresh_data`` during a write group.
 
1197
  (Andrew Bennetts, #574236)
 
1198
 
99
1199
Internals
100
1200
*********
101
1201
 
 
1202
* ``chk_map._bytes_to_text_key`` is now an optimized function to extract
 
1203
  the (file-id, revision-id) key from a CHKInventory entry. This can
 
1204
  potentially shave 5-10% time off during a large fetch. Related to bug
 
1205
  #562666. (John Arbash Meinel)
 
1206
 
 
1207
* ``log._get_info_for_log_files`` now takes an add_cleanup callable.
 
1208
  (Robert Collins)
 
1209
 
102
1210
* ``_remember_remote_is_before`` no longer raises AssertionError when
103
1211
  suboptimal network behaviour is noticed; instead it just mutters to the
104
1212
  log file (and warns the user if they have set the ``hpss`` debug flag).
111
1219
  stripped, the prefix ``__doc__ =`` should now be used.
112
1220
  (Martin <gzlist@googlemail.com>)
113
1221
 
 
1222
* No longer require zlib headers to build extensions, and remove the need
 
1223
  for seperate copy of zlib library on windows.
 
1224
  (John Arbash Meinel, Martin <gzlist@googlemail.com>, #566923)
 
1225
 
114
1226
Testing
115
1227
*******
116
1228
 
125
1237
  failures on Lucid, FreeBSD and gentoo.  
126
1238
  (Vincent Ladeuil, #528436)
127
1239
 
 
1240
* New class ``ExecutableFeature`` for checking the availability of
 
1241
  executables on the ``PATH``. Migrated from bash_completion plugin.
 
1242
  (Martin von Gagern)
 
1243
 
128
1244
bzr 2.2b2
129
1245
#########
130
1246
 
184
1300
* Reset ``siginterrupt`` flag to False every time we handle a signal
185
1301
  installed with ``set_signal_handler(..., restart_syscall=True)`` (from
186
1302
  ``bzrlib.osutils``.  Reduces the likelihood of "Interrupted System Call"
187
 
  errors after two window resizes.
 
1303
  errors compared to registering ``signal.signal`` directly.
188
1304
  (Andrew Bennetts)
189
1305
 
190
1306
* When invoked with a range revision, ``bzr log`` doesn't show revisions
193
1309
  (Vincent Ladeuil, #474807)
194
1310
 
195
1311
* Properly handle ``param_name`` attribute for ``ListOption``.
196
 
  (Martin von Gagern, 387117)
 
1312
  (Martin von Gagern, #387117)
197
1313
 
198
1314
Improvements
199
1315
************
232
1348
* ``bzrlib.diff.get_trees_and_branches_to_diff`` is deprecated.  Use
233
1349
  ``get_trees_and_branches_to_diff_locked`` instead.
234
1350
  (Andrew Bennetts)
 
1351
 
 
1352
* ``TreeTransform.commit`` supports the full set of commit parameters, and
 
1353
  auto-determines branch nick if not supplied.  (Aaron Bentley)
235
1354
  
236
1355
Internals
237
1356
*********
242
1361
  Command is now transient and only exists for the duration of ``run()``.
243
1362
  (Robert Collins)
244
1363
 
245
 
bzr 2.2.0b1
246
 
###########
247
 
 
248
 
:2.2.0b1: 2010-04-01
 
1364
bzr 2.2b1
 
1365
#########
 
1366
 
 
1367
:2.2b1: 2010-04-01
 
1368
 
 
1369
This is the first beta of the 2.2 series, leading up to a 2.2.0
 
1370
release in July or August.  Beta releases are suitable for everyday use
 
1371
but may cause some incompatibilities with plugins.  Some plugins may need
 
1372
small updates to work with 2.2b1.
 
1373
 
 
1374
2.2b1 includes some changes to make merge conflicts easier to understand
 
1375
and resolve.  It also removes some old unnecessary code, and loads
 
1376
somewhat less code at startup.  It starts adding a common infrastructure
 
1377
for dealing with colocated named branches, which can be implemented in
 
1378
various ways in either bzr native or foreign formats.   On Ubuntu and
 
1379
other platforms with the apport bug-reporting library, there's an easier
 
1380
path to report problems with bzr.  We plan to continue with these themes
 
1381
through the 2.2 series.
 
1382
 
 
1383
Over thirty bugs have been fixed, including in the log command, exporting
 
1384
to tarballs, restarting interrupted system calls, portability of compiled
 
1385
extensions, making backups during upgrade, and locking on ftp.
249
1386
 
250
1387
Compatibility Breaks
251
1388
********************
291
1428
  without specific permission from the user.  (Martin Pool, #515052)
292
1429
 
293
1430
* Parsing of command lines, for example in ``diff --using``, no longer
294
 
  treats backslash as an escape character on Windows.   (Gordon Tyler,
295
 
  #392248)
 
1431
  treats backslash as an escape character on Windows.
 
1432
  (Gordon Tyler, #392428)
296
1433
 
297
1434
* Plugins can be disabled by defining ``BZR_DISABLE_PLUGINS`` as
298
1435
  a list of plugin names separated by ':' (';' on windows).
527
1664
  happens, and another warning will be written if the log file could not
528
1665
  be closed after retrying 100 times.  (Andrew Bennetts, #531746)
529
1666
 
 
1667
bzr 2.1.3
 
1668
#########
 
1669
 
 
1670
:Codename: Do run run
 
1671
:2.1.3: 2010-09-17
 
1672
 
 
1673
The third release in our 2.1 series addresses several user-inconvenience bugs
 
1674
(and includes the fixes done in 2.0.6).  None are critical, but upgrading is
 
1675
recommended for all users on earlier 2.1 releases.
 
1676
 
 
1677
Bug Fixes
 
1678
*********
 
1679
 
 
1680
* Additional merges after an unrelated branch has been merged with its
 
1681
  history no longer crash when deleted files are involved.
 
1682
  (Vincent Ladeuil, John Arbash Meinel, #375898)
 
1683
 
 
1684
* ``bzr add SYMLINK/FILE`` now works properly when the symlink points to a
 
1685
  previously-unversioned directory within the tree: the directory is
 
1686
  marked versioned too.  
 
1687
  (Martin Pool, #192859)
 
1688
 
 
1689
* ``bzr commit SYMLINK`` now works, rather than trying to commit the
 
1690
  target of the symlink.
 
1691
  (Martin Pool, John Arbash Meinel, #128562)
 
1692
 
 
1693
* ``bzr upgrade`` now creates the ``backup.bzr`` directory with the same
 
1694
  permissions as ``.bzr`` directory on a POSIX OS.
 
1695
  (Parth Malwankar, #262450)
 
1696
 
 
1697
* Configuration files in ``${BZR_HOME}`` are now written in an atomic
 
1698
  way which should help avoid problems with concurrent writers.
 
1699
  (Vincent Ladeuil, #525571)
 
1700
 
 
1701
* Don't traceback trying to unversion children files of an already
 
1702
  unversioned directory.  (Vincent Ladeuil, #494221)
 
1703
 
 
1704
* Don't traceback when a lockdir's ``held/info`` file is corrupt (e.g.
 
1705
  contains only NUL bytes).  Instead warn the user, and allow ``bzr
 
1706
  break-lock`` to remove it.  (Andrew Bennetts, #619872)
 
1707
  
 
1708
* Fix ``AttributeError on parent.children`` when adding a file under a 
 
1709
  directory that was a symlink in the previous commit.
 
1710
  (Martin Pool, #192859)
 
1711
 
 
1712
* Prevent ``CHKMap.apply_delta`` from generating non-canonical CHK maps,
 
1713
  which can result in "missing referenced chk root keys" errors when
 
1714
  fetching from repositories with affected revisions.
 
1715
  (Andrew Bennetts, #522637)
 
1716
 
 
1717
* Progress bars prefer to truncate the text message rather than the
 
1718
  counters.  The spinner is shown between the network transfer indicator
 
1719
  and the progress message.  (Martin Pool)
 
1720
 
 
1721
* Raise ValueError instead of a string exception.
 
1722
  (John Arbash Meinel, #586926)
 
1723
 
 
1724
* Reduce peak memory by one copy of compressed text.
 
1725
  (John Arbash Meinel, #566940)
 
1726
 
 
1727
* Repositories accessed via a smart server now reject being stacked on a
 
1728
  repository in an incompatible format, as is the case when accessing them
 
1729
  via other methods.  This was causing fetches from those repositories via
 
1730
  a smart server (e.g. using ``bzr branch``) to receive invalid data.
 
1731
  (Andrew Bennetts, #562380)
 
1732
 
 
1733
* Selftest with versions of subunit that support ``stopTestRun`` will no longer
 
1734
  error. This error was caused by 2.0 not being updated when upstream
 
1735
  python merged the end of run patch, which chose ``stopTestRun`` rather than
 
1736
  ``done``. (Robert Collins, #571437)
 
1737
 
 
1738
* Stop ``AttributeError: 'module' object has no attribute 'ElementTree'``
 
1739
  being thrown from ``xml_serializer`` on certain cElementTree setups.
 
1740
  (Martin [gz], #254278)
 
1741
 
 
1742
* When passing a file to ``UTF8DirReader`` make sure to close the current
 
1743
  directory file handle after the chdir fails. Otherwise when passing many
 
1744
  filenames into a command line ``bzr status`` we would leak descriptors.
 
1745
  (John Arbash Meinel, #583486)
 
1746
 
 
1747
Testing
 
1748
*******
 
1749
 
 
1750
* ``build_tree_contents`` can create symlinks.
 
1751
  (Martin Pool, John Arbash Meinel)
 
1752
 
530
1753
bzr 2.1.2
531
1754
#########
532
1755
 
533
 
:2.1.2: NOT RELEASED YET
 
1756
:2.1.2: 2010-05-28
 
1757
 
 
1758
This release fixes two critical networking issues with older servers and
 
1759
with interrupted system call errors when pushing or pulling.  We recommend
 
1760
upgrading to anyone running a 2.1.x version of bzr.
534
1761
 
535
1762
Bug Fixes
536
1763
*********
537
1764
 
 
1765
* ``bzr clean-tree`` should not delete nested bzrdirs. Required for proper
 
1766
  support of bzr-externals and scmproj plugins.
 
1767
  (Alexander Belchenko, bug #572098)
 
1768
 
538
1769
* ``bzr switch`` does not die if a ConfigurableFileMerger is used.
539
1770
  (Aaron Bentley, #559436)
540
1771
 
 
1772
* Do not register a SIGWINCH signal handler, instead just poll for the
 
1773
  terminal width as needed.  This avoids the "Interrupted System Call"
 
1774
  problems that occur on POSIX with all currently released versions of
 
1775
  Python.
 
1776
  (Andrew Bennetts, #583941)
 
1777
 
541
1778
* Fixed ``AssertionError`` when accessing smart servers running Bazaar
542
1779
  versions before 1.6.
543
1780
  (Andrew Bennetts, #528041)
545
1782
* Reset ``siginterrupt`` flag to False every time we handle a signal
546
1783
  installed with ``set_signal_handler(..., restart_syscall=True)`` (from
547
1784
  ``bzrlib.osutils``.  Reduces the likelihood of "Interrupted System Call"
548
 
  errors after two window resizes.
 
1785
  errors compared to registering ``signal.signal`` directly.
549
1786
  (Andrew Bennetts)
550
1787
 
 
1788
* Reduce peak memory by one copy of compressed text.
 
1789
  (John Arbash Meinel, #566940)
 
1790
 
 
1791
* Support Pyrex 0.9.9, required changing how we handle exceptions in Pyrex.
 
1792
  (John Arbash Meinel, #582656)
 
1793
 
 
1794
* When passing a file to ``UTF8DirReader`` make sure to close the current
 
1795
  directory file handle after the chdir fails. Otherwise when passing many
 
1796
  filenames into a command line ``bzr status`` we would leak descriptors.
 
1797
  (John Arbash Meinel, #583486)
 
1798
 
551
1799
Internals
552
1800
*********
553
1801
 
980
2228
bzr 2.0.6
981
2229
#########
982
2230
 
983
 
:2.0.6: NOT RELEASED YET
 
2231
:2.0.6: 2010-09-17
 
2232
 
 
2233
The sixth release in our 2.0 series addresses several user-inconvenience
 
2234
bugs.  None are critical, but upgrading is recommended for all users on
 
2235
earlier 2.0 releases.
984
2236
 
985
2237
Bug Fixes
986
2238
*********
989
2241
  history no longer crash when deleted files are involved.
990
2242
  (Vincent Ladeuil, John Arbash Meinel, #375898)
991
2243
 
 
2244
* ``bzr add SYMLINK/FILE`` now works properly when the symlink points to a
 
2245
  previously-unversioned directory within the tree: the directory is
 
2246
  marked versioned too.  
 
2247
  (Martin Pool, #192859)
 
2248
 
 
2249
* ``bzr commit SYMLINK`` now works, rather than trying to commit the
 
2250
  target of the symlink.
 
2251
  (Martin Pool, John Arbash Meinel, #128562)
 
2252
 
992
2253
* ``bzr revert`` now only takes write lock on working tree, instead of on 
993
2254
  both working tree and branch.
994
2255
  (Danny van Heumen, #498409)
997
2258
  permissions as ``.bzr`` directory on a POSIX OS.
998
2259
  (Parth Malwankar, #262450)
999
2260
 
 
2261
* Don't traceback trying to unversion children files of an already
 
2262
  unversioned directory.  (Vincent Ladeuil, #494221)
 
2263
 
 
2264
* Don't traceback when a lockdir's ``held/info`` file is corrupt (e.g.
 
2265
  contains only NUL bytes).  Instead warn the user, and allow ``bzr
 
2266
  break-lock`` to remove it.  (Andrew Bennetts, #619872)
 
2267
  
 
2268
* Fix ``AttributeError on parent.children`` when adding a file under a 
 
2269
  directory that was a symlink in the previous commit.
 
2270
  (Martin Pool, #192859)
 
2271
 
 
2272
* Prevent ``CHKMap.apply_delta`` from generating non-canonical CHK maps,
 
2273
  which can result in "missing referenced chk root keys" errors when
 
2274
  fetching from repositories with affected revisions.
 
2275
  (Andrew Bennetts, #522637)
 
2276
 
 
2277
* Raise ValueError instead of a string exception.
 
2278
  (John Arbash Meinel, #586926)
 
2279
 
 
2280
* Reduce peak memory by one copy of compressed text.
 
2281
  (John Arbash Meinel, #566940)
 
2282
 
1000
2283
* Repositories accessed via a smart server now reject being stacked on a
1001
2284
  repository in an incompatible format, as is the case when accessing them
1002
2285
  via other methods.  This was causing fetches from those repositories via
1003
2286
  a smart server (e.g. using ``bzr branch``) to receive invalid data.
1004
2287
  (Andrew Bennetts, #562380)
1005
2288
 
 
2289
* Selftest with versions of subunit that support ``stopTestRun`` will no longer
 
2290
  error. This error was caused by 2.0 not being updated when upstream
 
2291
  python merged the end of run patch, which chose ``stopTestRun`` rather than
 
2292
  ``done``. (Robert Collins, #571437)
 
2293
 
 
2294
* When passing a file to ``UTF8DirReader`` make sure to close the current
 
2295
  directory file handle after the chdir fails. Otherwise when passing many
 
2296
  filenames into a command line ``bzr status`` we would leak descriptors.
 
2297
  (John Arbash Meinel, #583486)
 
2298
 
 
2299
 
 
2300
Testing
 
2301
*******
 
2302
 
 
2303
* ``build_tree_contents`` can create symlinks.
 
2304
  (Martin Pool, John Arbash Meinel)
 
2305
 
 
2306
 
1006
2307
bzr 2.0.5
1007
2308
#########
1008
2309
 
3702
5003
  can have a large effect on ``bzr checkout`` times. (John Arbash Meinel)
3703
5004
 
3704
5005
* 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,
 
5006
  'subprocess' to run the test suite in parallel. Currently only Linux
 
5007
  machines work, other platforms need patches submitted. (Robert Collins,
3707
5008
  Vincent Ladeuil)
3708
5009
 
3709
5010
* ``tests.run_suite`` has a new parameter ``suite_decorators``, a list of 
5299
6600
  when the path to the root of the tree has been given. Users of
5300
6601
  the internal ``show_tree_status`` function should be aware that
5301
6602
  the show_pending flag is now authoritative for showing pending
5302
 
  merges, as it was originally. (Robert Collins, #225204)
 
6603
  merges, as it was originally. (Robert Collins, #255204)
5303
6604
 
5304
6605
* Set valid default _param_name for Option so that ListOption can embed
5305
6606
  '-' in names. (Vincent Ladeuil, #263249)
6457
7758
 
6458
7759
* bzr main script cannot be imported (Benjamin Peterson)
6459
7760
 
6460
 
* On Linux bzr additionally looks for plugins in arch-independent site
 
7761
* On GNU/Linux bzr additionally looks for plugins in arch-independent site
6461
7762
  directory. (Toshio Kuratomi)
6462
7763
 
6463
7764
* The ``set_rh`` branch hook is now deprecated. Please migrate
6800
8101
 
6801
8102
* BZR_LOG environment variable controls location of .bzr.log trace file.
6802
8103
  User can suppress writing messages to .bzr.log by using '/dev/null'
6803
 
  filename (on Linux) or 'NUL' (on Windows). If BZR_LOG variable
 
8104
  filename (on Unix) or 'NUL' (on Windows). If BZR_LOG variable
6804
8105
  is not defined but BZR_HOME is defined then default location
6805
8106
  for .bzr.log trace file is ``$BZR_HOME/.bzr.log``.
6806
8107
  (Alexander Belchenko, #106117)
9215
10516
  hyphen. (``'abc'`` versus ``'abc-2'``). The WT4._iter_changes
9216
10517
  iterator was using direct comparison and ``'abc/a'`` sorts after
9217
10518
  ``'abc-2'``, but ``('abc', 'a')`` sorts before ``('abc-2',)``.
9218
 
  (John Arbash Meinel, #111227)
 
10519
  (John Arbash Meinel, #111127)
9219
10520
 
9220
10521
* Handle when someone renames a file on disk without telling bzr.
9221
10522
  Previously we would report the first file as missing, but not show
10499
11800
* ``Branch.bind(other_branch)`` no longer takes a write lock on the
10500
11801
  other branch, and will not push or pull between the two branches.
10501
11802
  API users will need to perform a push or pull or update operation if they
10502
 
  require branch synchronisation to take place. (Robert Collins, #47344)
 
11803
  require branch synchronisation to take place. (Robert Collins, #43744)
10503
11804
 
10504
11805
* When creating a tarball or zipfile export, export unicode names as utf-8
10505
11806
  paths. This may not work perfectly on all platforms, but has the best
10506
 
  chance of working in the common case. (John Arbash Meinel, #56816)
 
11807
  chance of working in the common case. (John Arbash Meinel, #56815)
10507
11808
 
10508
11809
* When committing, only files that exist in working tree or basis tree
10509
11810
  may be specified (Aaron Bentley, #50793)
12543
13844
 
12544
13845
 
12545
13846
..
12546
 
   vim: tw=74 ft=rst ff=unix encoding=utf-8
 
13847
   vim: tw=74 ft=rst ff=unix