/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: Andrew Bennetts
  • Date: 2009-10-13 05:20:50 UTC
  • mfrom: (4634.52.16 2.0)
  • mto: This revision was merged to the branch mainline in revision 4738.
  • Revision ID: andrew.bennetts@canonical.com-20091013052050-u1w6tv0z7kqhn8d0
Merge 2.0 into lp:bzr, resolving conflicts in NEWS and releasing.txt.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
####################
 
2
Bazaar Release Notes
 
3
####################
 
4
 
 
5
.. contents:: List of Releases
 
6
   :depth: 1
 
7
 
 
8
 
 
9
2.1.0 series (not released yet)
 
10
###############################
 
11
 
 
12
Compatibility Breaks
 
13
********************
 
14
 
 
15
New Features
 
16
************
 
17
 
 
18
* Bazaar can now send mail through Apple OS X Mail.app. 
 
19
  (Brian de Alwis)
 
20
 
 
21
* ``bzr+ssh`` and ``bzr`` paths can now be relative to home directories
 
22
  specified in the URL.  Paths starting with a path segment of ``~`` are
 
23
  relative to the home directory of the user running the server, and paths
 
24
  starting with ``~user`` are relative to the home directory of the named
 
25
  user.  For example, for a user "bob" with a home directory of
 
26
  ``/home/bob``, these URLs are all equivalent:
 
27
 
 
28
  * ``bzr+ssh://bob@host/~/repo``
 
29
  * ``bzr+ssh://bob@host/~bob/repo``
 
30
  * ``bzr+ssh://bob@host/home/bob/repo``
 
31
 
 
32
  If ``bzr serve`` was invoked with a ``--directory`` argument, then no
 
33
  home directories outside that directory will be accessible via this
 
34
  method.
 
35
 
 
36
  This is a feature of ``bzr serve``, so pre-2.1 clients will
 
37
  automatically benefit from this feature when ``bzr`` on the server is
 
38
  upgraded.  (Andrew Bennetts, #109143)
 
39
 
 
40
* Extensions can now be compiled if either Cython or Pyrex is available.
 
41
  Currently Pyrex is preferred, but that may change in the future.
 
42
  (Arkanes)
 
43
 
 
44
* Give more control on BZR_PLUGIN_PATH by providing a way to refer to or
 
45
  disable the user, site and core plugin directories.
 
46
  (Vincent Ladeuil, #412930, #316192, #145612)
 
47
 
 
48
Bug Fixes
 
49
*********
 
50
 
 
51
* Bazaar's native protocol code now correctly handles EINTR, which most
 
52
  noticeably occurs if you break in to the debugger while connected to a
 
53
  bzr+ssh server.  You can now can continue from the debugger (by typing
 
54
  'c') and the process continues.  However, note that pressing C-\ in the
 
55
  shell may still kill the SSH process, which is bug 162509, so you must
 
56
  sent a signal to the bzr process specifically, for example by typing
 
57
  ``kill -QUIT PID`` in another shell.  (Martin Pool, #341535)
 
58
 
 
59
* ``bzr add`` in a tree that has files with ``\r`` or ``\n`` in the
 
60
  filename will issue a warning and skip over those files.
 
61
  (Robert Collins, #3918)
 
62
 
 
63
* ``bzr check`` in pack-0.92, 1.6 and 1.9 format repositories will no
 
64
  longer report incorrect errors about ``Missing inventory ('TREE_ROOT', ...)``
 
65
  (Robert Collins, #416732)
 
66
 
 
67
* ``bzr dpush`` now aborts if uncommitted changes (including pending merges)
 
68
  are present in the working tree. The configuration option ``dpush_strict``
 
69
  can be used to set the default for this behavior.
 
70
  (Vincent Ladeuil, #438158)
 
71
 
 
72
* ``bzr info -v`` on a 2a format still claimed that it was a "Development
 
73
  format" (John Arbash Meinel, #424392)
 
74
 
 
75
* ``bzr merge`` and ``bzr remove-tree`` now requires --force if pending
 
76
  merges are present in the working tree.
 
77
  (Vincent Ladeuil, #426344)
 
78
 
 
79
* bzr will attempt to authenticate with SSH servers that support
 
80
  ``keyboard-interactive`` auth but not ``password`` auth when using
 
81
  Paramiko.   (Andrew Bennetts, #433846)
 
82
 
 
83
* Clearer message when Bazaar runs out of memory, instead of a ``MemoryError``
 
84
  traceback.  (Martin Pool, #109115)
 
85
 
 
86
* Conversion to 2a will create a single pack for all the new revisions (as
 
87
  long as it ran without interruption). This improves both ``bzr upgrade``
 
88
  and ``bzr pull`` or ``bzr merge`` from local branches in older formats.
 
89
  The autopack logic that occurs every 100 revisions during local
 
90
  conversions was not returning that pack's identifier, which resulted in
 
91
  the partial packs created during the conversion not being consolidated
 
92
  at the end of the conversion process. (Robert Collins, #423818)
 
93
 
 
94
* Don't give a warning on Windows when failing to import ``_readdir_pyx``
 
95
  as it is never built. (John Arbash Meinel, #430645)
 
96
 
 
97
* Don't restrict the command name used to run the test suite.
 
98
  (Vincent Ladeuil, #419950)
 
99
 
 
100
* Fetches from 2a to 2a are now again requested in 'groupcompress' order.
 
101
  Groups that are seen as 'underutilized' will be repacked on-the-fly.
 
102
  This means that when the source is fully packed, there is minimal
 
103
  overhead during the fetch, but if the source is poorly packed the result
 
104
  is a fairly well packed repository (not as good as 'bzr pack' but
 
105
  good-enough.) (Robert Collins, John Arbash Meinel, #402652)
 
106
 
 
107
* Fixed fetches from a stacked branch on a smart server that were failing
 
108
  with some combinations of remote and local formats.  This was causing
 
109
  "unknown object type identifier 60" errors.  (Andrew Bennetts, #427736)
 
110
 
 
111
* Fixed ``ObjectNotLocked`` errors when doing some log and diff operations
 
112
  on branches via a smart server.  (Andrew Bennetts, #389413)
 
113
 
 
114
* ftp transports were built differently when the kerberos python module was
 
115
  present leading to obscure failures related to ASCII/BINARY modes.
 
116
  (Vincent Ladeuil, #443041)
 
117
 
 
118
* Handle things like ``bzr add foo`` and ``bzr rm foo`` when the tree is
 
119
  at the root of a drive. ``osutils._cicp_canonical_relpath`` always
 
120
  assumed that ``abspath()`` returned a path that did not have a trailing
 
121
  ``/``, but that is not true when working at the root of the filesystem.
 
122
  (John Arbash Meinel, Jason Spashett, #322807)
 
123
 
 
124
* Improve the time for ``bzr log DIR`` for 2a format repositories.
 
125
  We had been using the same code path as for <2a formats, which required
 
126
  iterating over all objects in all revisions.
 
127
  (John Arbash Meinel, #374730)
 
128
 
 
129
* Make sure that we unlock the tree if we fail to create a TreeTransform
 
130
  object when doing a merge, and there is limbo, or pending-deletions
 
131
  directory.  (Gary van der Merwe, #427773)
 
132
 
 
133
* Network streams now decode adjacent records of the same type into a
 
134
  single stream, reducing layering churn. (Robert Collins)
 
135
 
 
136
* Occasional IndexError on renamed files have been fixed. Operations that
 
137
  set a full inventory in the working tree will now go via the
 
138
  apply_inventory_delta code path which is simpler and easier to
 
139
  understand than dirstates set_state_from_inventory method. This may
 
140
  have a small performance impact on operations built on _write_inventory,
 
141
  but such operations are already doing full tree scans, so no radical
 
142
  performance change should be observed. (Robert Collins, #403322)
 
143
 
 
144
* Prevent some kinds of incomplete data from being committed to a 2a
 
145
  repository, such as revisions without inventories or inventories without
 
146
  chk_bytes root records.
 
147
  (Andrew Bennetts, #423506)
 
148
 
 
149
* PreviewTree behaves correctly when get_file_mtime is invoked on an unmodified
 
150
  file. (Aaron Bentley, #251532)
 
151
 
 
152
* Registry objects should not use iteritems() when asked to use items().
 
153
  (Vincent Ladeuil, #430510)
 
154
 
 
155
* Retrieving file text or mtime from a _PreviewTree has good performance when
 
156
  there are many changes.  (Aaron Bentley)
 
157
 
 
158
* The CHK index pages now use an unlimited cache size. With a limited
 
159
  cache and a large project, the random access of chk pages could cause us
 
160
  to download the entire cix file many times.
 
161
  (John Arbash Meinel, #402623)
 
162
 
 
163
* Weave based repositories couldn't be cloned when committers were using
 
164
  domains or user ids embedding '.sig'. Now they can.
 
165
  (Matthew Fuller, Vincent Ladeuil, #430868)
 
166
 
 
167
* When a file kind becomes unversionable after being added, a sensible
 
168
  error will be shown instead of a traceback. (Robert Collins, #438569)
 
169
 
 
170
Improvements
 
171
************
 
172
 
 
173
* Bazaar gives a warning before exiting, and writes into ``.bzr.log``, if 
 
174
  compiled extensions can't be loaded.  This typically indicates a
 
175
  packaging or installation problem.  In this case Bazaar will keep
 
176
  running using pure-Python versions, but this may be substantially
 
177
  slower.  The warning can be disabled by setting
 
178
  ``ignore_missing_extensions = True`` in ``bazaar.conf``.
 
179
  See also <https://answers.launchpad.net/bzr/+faq/703>.
 
180
  (Martin Pool, #406113, #430529)
 
181
 
 
182
* Secondary errors that occur during Branch.unlock and Repository.unlock
 
183
  no longer obscure the original error.  These methods now use a new
 
184
  decorator, ``only_raises``.  This fixes many causes of
 
185
  ``TooManyConcurrentRequests`` and similar errors.
 
186
  (Andrew Bennetts, #429747)
 
187
 
 
188
 
 
189
Documentation
 
190
*************
 
191
 
 
192
* Describe the new shell-like test feature. (Vincent Ladeuil)
 
193
 
 
194
* Help on hooks no longer says 'Not deprecated' for hooks that are
 
195
  currently supported. (Ian Clatworthy, #422415)
 
196
 
 
197
* Improved README. (Ian Clatworthy)
 
198
 
 
199
* Improved upgrade documentation for Launchpad branches.
 
200
  (Barry Warsaw)
 
201
 
 
202
 
 
203
API Changes
 
204
***********
 
205
 
 
206
* ``bzrlib.user_encoding`` has been removed; use
 
207
  ``bzrlib.osutils.get_user_encoding`` instead.  (Martin Pool)
 
208
 
 
209
* ``bzrlib.tests`` now uses ``stopTestRun`` for its ``TestResult``
 
210
  subclasses - the same as python's unittest module. (Robert Collins)
 
211
  
 
212
* ``diff._get_trees_to_diff`` has been renamed to 
 
213
  ``diff.get_trees_and_branches_to_diff``. It is now a public API, and it 
 
214
  returns the old and new branches. (Gary van der Merwe)
 
215
 
 
216
* ``bzrlib.trace.log_error``, ``error`` and ``info`` have been deprecated.
 
217
  (Martin Pool)
 
218
 
 
219
* ``MutableTree.has_changes()`` does not require a tree parameter anymore. It
 
220
  now defaults to comparing to the basis tree. It now checks for pending
 
221
  merges too.  ``Merger.check_basis`` has been deprecated and replaced by the
 
222
  corresponding has_changes() calls. ``Merge.compare_basis``,
 
223
  ``Merger.file_revisions`` and ``Merger.ensure_revision_trees`` have also
 
224
  been deprecated.
 
225
  (Vincent Ladeuil, #440631)
 
226
 
 
227
* ``ProgressTask.note`` is deprecated.
 
228
  (Martin Pool)
 
229
 
 
230
Internals
 
231
*********
 
232
 
 
233
* Added ``-Drelock`` debug flag.  It will ``note`` a message every time a
 
234
  repository or branch object is unlocked then relocked the same way.
 
235
  (Andrew Bennetts)
 
236
  
 
237
* Added ``bzrlib._simple_set_pyx``. This is a hybrid between a Set and a
 
238
  Dict (it only holds keys, but you can lookup the object located at a
 
239
  given key). It has significantly reduced memory consumption versus the
 
240
  builtin objects (1/2 the size of Set, 1/3rd the size of Dict). This is
 
241
  used as the interning structure for StaticTuple objects.
 
242
  (John Arbash Meinel)
 
243
 
 
244
* ``BTreeLeafParser.extract_key`` has been tweaked slightly to reduce
 
245
  mallocs while parsing the index (approx 3=>1 mallocs per key read).
 
246
  This results in a 10% speedup while reading an index.
 
247
  (John Arbash Meinel)
 
248
 
 
249
* ``bzrlib._static_tuple_pyx.StaticTuple`` is now available. This class
 
250
  functions similarly to ``tuple`` objects. However, it can only point at
 
251
  other ``StaticTuple`` instances or strings. This allows us to remove it
 
252
  from the garbage collector (it cannot be in a cycle), it also allows us
 
253
  to intern the objects. In testing, this can reduce peak memory by
 
254
  20-40%, and significantly improve performance by removing objects from
 
255
  being inspected by the garbage collector. (John Arbash Meinel)
 
256
 
 
257
* The ``bzrlib.lsprof`` module has a new class ``BzrProfiler`` which makes
 
258
  profiling in some situations like callbacks and generators easier.
 
259
  (Robert Collins)
 
260
 
 
261
Testing
 
262
*******
 
263
 
 
264
* Passing ``--lsprof-tests -v`` to bzr selftest will cause lsprof output to
 
265
  be output for every test. Note that this is very verbose! (Robert Collins)
 
266
 
 
267
* Setting ``BZR_TEST_PDB=1`` when running selftest will cause a pdb
 
268
  post_mortem to be triggered when a test failure occurs. (Robert Collins)
 
269
 
 
270
* Shell-like tests can now be written. Code in ``bzrlib/tests/script.py`` ,
 
271
  documentation in ``developers/testing.txt`` for details.
 
272
  (Vincent Ladeuil)
 
273
 
 
274
* Some tests could end up with the same id, that was dormant for
 
275
  a long time.
 
276
  (Vincent Ladeuil, #442980)
 
277
 
 
278
* Stop showing the number of tests due to missing features in the test
 
279
  progress bar.  (Martin Pool)
 
280
 
 
281
* Test parameterisation now does a shallow copy, not a deep copy of the test
 
282
  to be parameterised. This is not expected to break external use of test
 
283
  parameterisation, and is substantially faster. (Robert Collins)
 
284
 
 
285
* Tests that try to open a bzr dir on an arbitrary transport will now
 
286
  fail unless they have explicitly permitted the transport via
 
287
  ``self.permit_url``. The standard test factories such as ``self.get_url``
 
288
  will permit the urls they provide automatically, so only exceptional
 
289
  tests should need to do this. (Robert Collins)
 
290
 
 
291
* The break-in test no longer cares about clean shutdown of the child,
 
292
  instead it is happy if the debugger starts up. (Robert  Collins)
 
293
 
 
294
* The full test suite is expected to pass when the C extensions are not
 
295
  present. (Vincent Ladeuil, #430749)
 
296
 
 
297
 
 
298
bzr 2.0.1 (Not Released Yet)
 
299
############################
 
300
 
 
301
Bug Fixes
 
302
*********
 
303
 
 
304
* ``bzr add`` in a tree that has files with ``\r`` or ``\n`` in the
 
305
  filename will issue a warning and skip over those files.
 
306
  (Robert Collins, #3918)
 
307
 
 
308
* bzr will attempt to authenticate with SSH servers that support
 
309
  ``keyboard-interactive`` auth but not ``password`` auth when using
 
310
  Paramiko.   (Andrew Bennetts, #433846)
 
311
 
 
312
* Fixed fetches from a stacked branch on a smart server that were failing
 
313
  with some combinations of remote and local formats.  This was causing
 
314
  "unknown object type identifier 60" errors.  (Andrew Bennetts, #427736)
 
315
 
 
316
* Fixed ``ObjectNotLocked`` errors when doing some log and diff operations
 
317
  on branches via a smart server.  (Andrew Bennetts, #389413)
 
318
 
 
319
* Handle things like ``bzr add foo`` and ``bzr rm foo`` when the tree is
 
320
  at the root of a drive. ``osutils._cicp_canonical_relpath`` always
 
321
  assumed that ``abspath()`` returned a path that did not have a trailing
 
322
  ``/``, but that is not true when working at the root of the filesystem.
 
323
  (John Arbash Meinel, Jason Spashett, #322807)
 
324
 
 
325
* Improve the time for ``bzr log DIR`` for 2a format repositories.
 
326
  We had been using the same code path as for <2a formats, which required
 
327
  iterating over all objects in all revisions.
 
328
  (John Arbash Meinel, #374730)
 
329
 
 
330
* Make sure that we unlock the tree if we fail to create a TreeTransform
 
331
  object when doing a merge, and there is limbo, or pending-deletions
 
332
  directory.  (Gary van der Merwe, #427773)
 
333
 
 
334
* Occasional IndexError on renamed files have been fixed. Operations that
 
335
  set a full inventory in the working tree will now go via the
 
336
  apply_inventory_delta code path which is simpler and easier to
 
337
  understand than dirstates set_state_from_inventory method. This may
 
338
  have a small performance impact on operations built on _write_inventory,
 
339
  but such operations are already doing full tree scans, so no radical
 
340
  performance change should be observed. (Robert Collins, #403322)
 
341
 
 
342
* Retrieving file text or mtime from a _PreviewTree has good performance when
 
343
  there are many changes.  (Aaron Bentley)
 
344
 
 
345
* The CHK index pages now use an unlimited cache size. With a limited
 
346
  cache and a large project, the random access of chk pages could cause us
 
347
  to download the entire cix file many times.
 
348
  (John Arbash Meinel, #402623)
 
349
 
 
350
* When a file kind becomes unversionable after being added, a sensible
 
351
  error will be shown instead of a traceback. (Robert Collins, #438569)
 
352
 
 
353
 
 
354
Documentation
 
355
*************
 
356
 
 
357
* Improved README. (Ian Clatworthy)
 
358
 
 
359
* Improved upgrade documentation for Launchpad branches.
 
360
  (Barry Warsaw)
 
361
 
 
362
 
 
363
bzr 2.0.0
 
364
#########
 
365
 
 
366
:2.0.0: 2009-09-22
 
367
:Codename: Instant Karma
 
368
 
 
369
This release of Bazaar makes the 2a (previously 'brisbane-core') format
 
370
the default when new branches or repositories are created.  This format is
 
371
substantially smaller and faster for many operations.  Most of the work in
 
372
this release focuses on bug fixes and stabilization, covering both 2a and
 
373
previous formats.  (See the Upgrade Guide for information on migrating
 
374
existing projects.)
 
375
 
 
376
This release also improves the documentation content and presentation,
 
377
including adding Windows HtmlHelp manuals.
 
378
 
 
379
The Bazaar team decided that 2.0 will be a long-term supported release,
 
380
with bugfix-only 2.0.x releases based on it, continuing for at least six
 
381
months or until the following stable release.
 
382
 
 
383
Changes from 2.0.0rc2 to final
 
384
******************************
 
385
 
 
386
* Officially branded as 2.0.0 rather than 2.0 to clarify between things
 
387
  that "want to happen on the 2.0.x stable series" versus things that want
 
388
  to "land in 2.0.0". (Changes how bzrlib._format_version_tuple() handles
 
389
  micro = 0.) (John Arbash Meinel)
 
390
 
 
391
 
 
392
bzr 2.0.0rc2
 
393
############
 
394
 
 
395
:2.0.0rc2: 2009-09-10
 
396
 
 
397
New Features
 
398
************
 
399
 
 
400
* Added post_commit hook for mutable trees. This allows the keywords
 
401
  plugin to expand keywords on files changed by the commit.
 
402
  (Ian Clatworthy, #408841)
 
403
 
 
404
Bug Fixes
 
405
*********
 
406
 
 
407
* Bazaar's native protocol code now correctly handles EINTR, which most
 
408
  noticeably occurs if you break in to the debugger while connected to a
 
409
  bzr+ssh server.  You can now can continue from the debugger (by typing
 
410
  'c') and the process continues.  However, note that pressing C-\ in the
 
411
  shell may still kill the SSH process, which is bug 162509, so you must
 
412
  sent a signal to the bzr process specifically, for example by typing
 
413
  ``kill -QUIT PID`` in another shell.  (Martin Pool, #341535)
 
414
 
 
415
* ``bzr check`` in pack-0.92, 1.6 and 1.9 format repositories will no
 
416
  longer report incorrect errors about ``Missing inventory ('TREE_ROOT', ...)``
 
417
  (Robert Collins, #416732)
 
418
 
 
419
* ``bzr info -v`` on a 2a format still claimed that it was a "Development
 
420
  format" (John Arbash Meinel, #424392)
 
421
 
 
422
* ``bzr log stacked-branch`` shows the full log including
 
423
  revisions that are in the fallback repository. (Regressed in 2.0rc1).
 
424
  (John Arbash Meinel, #419241)
 
425
 
 
426
* Clearer message when Bazaar runs out of memory, instead of a ``MemoryError``
 
427
  traceback.  (Martin Pool, #109115)
 
428
 
 
429
* Conversion to 2a will create a single pack for all the new revisions (as
 
430
  long as it ran without interruption). This improves both ``bzr upgrade``
 
431
  and ``bzr pull`` or ``bzr merge`` from local branches in older formats.
 
432
  The autopack logic that occurs every 100 revisions during local
 
433
  conversions was not returning that pack's identifier, which resulted in
 
434
  the partial packs created during the conversion not being consolidated
 
435
  at the end of the conversion process. (Robert Collins, #423818)
 
436
 
 
437
* Fetches from 2a to 2a are now again requested in 'groupcompress' order.
 
438
  Groups that are seen as 'underutilized' will be repacked on-the-fly.
 
439
  This means that when the source is fully packed, there is minimal
 
440
  overhead during the fetch, but if the source is poorly packed the result
 
441
  is a fairly well packed repository (not as good as 'bzr pack' but
 
442
  good-enough.) (Robert Collins, John Arbash Meinel, #402652)
 
443
 
 
444
* Fix a potential segmentation fault when doing 'log' of a branch that had
 
445
  ghosts in its mainline.  (Evaluating None as a tuple is bad.)
 
446
  (John Arbash Meinel, #419241)
 
447
 
 
448
* ``groupcompress`` sort order is now more stable, rather than relying on
 
449
  ``topo_sort`` ordering. The implementation is now
 
450
  ``KnownGraph.gc_sort``. (John Arbash Meinel)
 
451
 
 
452
* Local data conversion will generate correct deltas. This is a critical
 
453
  bugfix vs 2.0rc1, and all 2.0rc1 users should upgrade to 2.0rc2 before
 
454
  converting repositories. (Robert Collins, #422849)
 
455
 
 
456
* Network streams now decode adjacent records of the same type into a
 
457
  single stream, reducing layering churn. (Robert Collins)
 
458
 
 
459
* Prevent some kinds of incomplete data from being committed to a 2a
 
460
  repository, such as revisions without inventories, a missing chk_bytes
 
461
  record for an inventory, or a missing text referenced by an inventory.
 
462
  (Andrew Bennetts, #423506, #406687)
 
463
  
 
464
Documentation
 
465
*************
 
466
 
 
467
* Fix assertion error about "_remember_remote_is_before" when pushing to
 
468
  older smart servers.
 
469
  (Andrew Bennetts, #418931)
 
470
 
 
471
* Help on hooks no longer says 'Not deprecated' for hooks that are
 
472
  currently supported. (Ian Clatworthy, #422415)
 
473
 
 
474
* PDF and CHM (Windows HtmlHelp) formats are now supported for the
 
475
  user documentation. The HTML documentation is better broken up into
 
476
  topics. (Ian Clatworthy)
 
477
 
 
478
* The developer and foreign language documents are now separated
 
479
  out so that searching in the HTML and CHM files produces more
 
480
  useful results. (Ian Clatworthy)
 
481
 
 
482
* The main table of contents now provides links to the new Migration Docs
 
483
  and Plugins Guide. (Ian Clatworthy)
 
484
 
 
485
 
 
486
bzr 2.0.0rc1
 
487
############
 
488
 
 
489
:Codename: no worries
 
490
:2.0.0rc1: 2009-08-26
 
491
 
 
492
Compatibility Breaks
 
493
********************
 
494
 
 
495
* The default format for bzr is now ``2a``. This format brings many
 
496
  significant performance and size improvements. bzr can pull from
 
497
  any existing repository into a ``2a`` one, but can only transfer
 
498
  from ``2a`` into ``rich-root`` repositories. The Upgrade guide
 
499
  has more information about this change. (Robert Collins)
 
500
 
 
501
* On Windows auto-detection of Putty's plink.exe is disabled.
 
502
  Default SSH client for Windows is paramiko. User still can force
 
503
  usage of plink if explicitly set environment variable BZR_SSH=plink.
 
504
  (#414743, Alexander Belchenko)
 
505
 
 
506
New Features
 
507
************
 
508
 
 
509
* ``bzr branch --switch`` can now switch the checkout in the current directory
 
510
  to the newly created branch. (Lukáš Lalinský)
 
511
 
 
512
Bug Fixes
 
513
*********
 
514
 
 
515
* Further tweaks to handling of ``bzr add`` messages about ignored files.
 
516
  (Jason Spashett, #76616)
 
517
 
 
518
* Fetches were being requested in 'groupcompress' order, but weren't
 
519
  recombining the groups. Thus they would 'fragment' to get the correct
 
520
  order, but not 'recombine' to actually benefit from it. Until we get
 
521
  recombining to work, switching to 'unordered' fetches avoids the
 
522
  fragmentation. (John Arbash Meinel, #402645)
 
523
 
 
524
* Fix a pycurl related test failure on karmic by recognizing an error
 
525
  raised by newer versions of pycurl.
 
526
  (Vincent Ladeuil, #306264)
 
527
 
 
528
* Fix a test failure on karmic by making a locale test more robust.
 
529
  (Vincent Ladeuil, #413514)
 
530
 
 
531
* Fix IndexError printing CannotBindAddress errors.
 
532
  (Martin Pool, #286871)
 
533
 
 
534
* Fix "Revision ... not present" errors when upgrading stacked branches,
 
535
  or when doing fetches from a stacked source to a stacked target.
 
536
  (Andrew Bennetts, #399140)
 
537
 
 
538
* ``bzr branch`` of 2a repositories over HTTP is much faster.  bzr now
 
539
  batches together small fetches from 2a repositories, rather than
 
540
  fetching only a few hundred bytes at a time.
 
541
  (Andrew Bennetts, #402657)
 
542
 
 
543
Improvements
 
544
************
 
545
 
 
546
* A better description of the platform is shown in crash tracebacks, ``bzr
 
547
  --version`` and ``bzr selftest``.
 
548
  (Martin Pool, #409137)
 
549
 
 
550
* bzr can now (again) capture crash data through the apport library, 
 
551
  so that a single human-readable file can be attached to bug reports.
 
552
  This can be disabled by using ``-Dno_apport`` on the command line, or by
 
553
  putting ``no_apport`` into the ``debug_flags`` section of
 
554
  ``bazaar.conf``.
 
555
  (Martin Pool, Robert Collins, #389328)
 
556
 
 
557
* ``bzr push`` locally on windows will no longer give a locking error with
 
558
  dirstate based formats. (Robert Collins)
 
559
 
 
560
* ``bzr shelve`` and ``bzr unshelve`` now work on windows.
 
561
  (Robert Collins, #305006)
 
562
 
 
563
* Commit of specific files no longer prevents using the the iter_changes
 
564
  codepath. On 2a repositories, commit of specific files should now be as
 
565
  fast, or slightly faster, than a full commit. (Robert Collins)
 
566
 
 
567
* The internal core code that handles specific file operations like
 
568
  ``bzr st FILENAME`` or ``bzr commit FILENAME`` has been changed to
 
569
  include the parent directories if they have altered, and when a
 
570
  directory stops being a directory its children are always included. This
 
571
  fixes a number of causes for ``InconsistentDelta`` errors, and permits
 
572
  faster commit of specific paths. (Robert Collins, #347649)
 
573
 
 
574
Documentation
 
575
*************
 
576
 
 
577
* New developer documentation for content filtering.
 
578
  (Martin Pool)
 
579
 
 
580
API Changes
 
581
***********
 
582
 
 
583
* ``bzrlib.shelf_ui`` has had the ``from_args`` convenience methods of its
 
584
  classes changed to manage lock lifetime of the trees they open in a way
 
585
  consistent with reader-exclusive locks. (Robert Collins, #305006)
 
586
 
 
587
Testing
 
588
*******
 
589
 
 
590
bzr 1.18.1
 
591
##########
 
592
 
 
593
:Codename:     nein nein nein!
 
594
:1.18.1:       2009-09-09
 
595
 
 
596
This release fixes two small but worthwhile bugs relevant to users on
 
597
Microsoft Windows: some commands that failed on with locking errors will
 
598
now work, and a bug that caused poor performance after committing a file
 
599
with line-ending conversion has now been fixed.  It also fixes a bug in
 
600
pushing to older servers.
 
601
 
 
602
Bug Fixes
 
603
*********
 
604
 
 
605
* Fixed a problem where using content filtering and especially end-of-line
 
606
  conversion will commit too many copies a file.
 
607
  (Martin Pool, #415508)
 
608
 
 
609
* Fix assertion error about ``_remember_remote_is_before`` in
 
610
  ``set_tags_bytes`` when pushing to older smart servers.  
 
611
  (Andrew Bennetts, Alexander Belchenko, #418931)
 
612
 
 
613
Improvements
 
614
************
 
615
 
 
616
* ``bzr push`` locally on Windows will no longer give a locking error with
 
617
  dirstate based formats. (Robert Collins)
 
618
 
 
619
* ``bzr shelve`` and ``bzr unshelve`` now work on Windows.
 
620
  (Robert Collins, #305006)
 
621
 
 
622
API Changes
 
623
***********
 
624
 
 
625
* ``bzrlib.shelf_ui`` has had the ``from_args`` convenience methods of its
 
626
  classes changed to manage lock lifetime of the trees they open in a way
 
627
  consistent with reader-exclusive locks. (Robert Collins, #305006)
 
628
 
 
629
* ``Tree.path_content_summary`` may return a size of None, when called on
 
630
  a tree with content filtering where the size of the canonical form
 
631
  cannot be cheaply determined.  (Martin Pool)
 
632
 
 
633
* When manually creating transport servers in test cases, a new helper
 
634
  ``TestCase.start_server`` that registers a cleanup and starts the server
 
635
  should be used. (Robert Collins)
 
636
 
 
637
bzr 1.18
 
638
########
 
639
 
 
640
Compatibility Breaks
 
641
********************
 
642
 
 
643
* Committing directly to a stacked branch from a lightweight checkout will
 
644
  no longer work. In previous versions this would appear to work but would
 
645
  generate repositories with insufficient data to create deltas, leading
 
646
  to later errors when branching or reading from the repository.
 
647
  (Robert Collins, bug #375013)
 
648
 
 
649
New Features
 
650
************
 
651
 
 
652
Bug Fixes
 
653
*********
 
654
 
 
655
* Fetching from 2a branches from a version-2 bzr protocol would fail to
 
656
  copy the internal inventory pages from the CHK store. This cannot happen
 
657
  in normal use as all 2a compatible clients and servers support the
 
658
  version-3 protocol, but it does cause test suite failures when testing
 
659
  downlevel protocol behaviour. (Robert Collins)
 
660
 
 
661
* Fix a test failure on karmic by making a locale test more robust.
 
662
  (Vincent Ladeuil, #413514)
 
663
 
 
664
* Fixed "Pack ... already exists" error when running ``bzr pack`` on a
 
665
  fully packed 2a repository.  (Andrew Bennetts, #382463)
 
666
 
 
667
* Further tweaks to handling of ``bzr add`` messages about ignored files.
 
668
  (Jason Spashett, #76616)
 
669
 
 
670
* Properly handle fetching into a stacked branch while converting the
 
671
  data, especially when there are also ghosts. The code was filling in
 
672
  parent inventories incorrectly, and also not handling when one of the
 
673
  parents was a ghost. (John Arbash Meinel, #402778, #412198)
 
674
 
 
675
* ``RemoteStreamSource.get_stream_for_missing_keys`` will fetch CHK
 
676
  inventory pages when appropriate (by falling back to the vfs stream
 
677
  source).  (Andrew Bennetts, #406686)
 
678
 
 
679
* StreamSource generates rich roots from non-rich root sources correctly
 
680
  now.  (Andrew Bennetts, #368921)
 
681
 
 
682
* When deciding whether a repository was compatible for upgrading or
 
683
  fetching, we previously incorrectly checked the default repository
 
684
  format for the bzrdir format, rather than the format that was actually
 
685
  present on disk.  (Martin Pool, #408824)
 
686
 
 
687
Improvements
 
688
************
 
689
 
 
690
* A better description of the platform is shown in crash tracebacks, ``bzr
 
691
  --version`` and ``bzr selftest``.
 
692
  (Martin Pool, #409137)
 
693
 
 
694
* Cross-format fetches (such as between 1.9-rich-root and 2a) via the
 
695
  smart server are more efficient now.  They send inventory deltas rather
 
696
  than full inventories.  The smart server has two new requests,
 
697
  ``Repository.get_stream_1.19`` and ``Repository.insert_stream_1.19`` to
 
698
  support this.  (Andrew Bennetts, #374738, #385826)
 
699
 
 
700
* Extracting the full ancestry and computing the ``merge_sort`` is now
 
701
  significantly faster. This effects things like ``bzr log -n0``. (For
 
702
  example, ``bzr log -r -10..-1 -n0 bzr.dev`` is 2.5s down to 1.0s.
 
703
  (John Arbash Meinel)
 
704
 
 
705
Documentation
 
706
*************
 
707
 
 
708
API Changes
 
709
***********
 
710
 
 
711
Internals
 
712
*********
 
713
 
 
714
* ``-Dstrict_locks`` can now be used to check that read and write locks
 
715
  are treated properly w.r.t. exclusivity. (We don't try to take an OS
 
716
  read lock on a file that we already have an OS write lock on.) This is
 
717
  now set by default for all tests, if you have a test which cannot be
 
718
  fixed, you can use ``self.thisFailsStrictLockCheck()`` as a
 
719
  compatibility knob. (John Arbash Meinel)
 
720
 
 
721
* InterDifferingSerializer is now only used locally.  Other fetches that
 
722
  would have used InterDifferingSerializer now use the more network
 
723
  friendly StreamSource, which now automatically does the same
 
724
  transformations as InterDifferingSerializer.  (Andrew Bennetts)
 
725
 
 
726
* ``KnownGraph`` now has a ``.topo_sort`` and ``.merge_sort`` member which
 
727
  are implemented in pyrex and significantly faster. This is exposed along
 
728
  with ``CombinedGraphIndex.find_ancestry()`` as
 
729
  ``VersionedFiles.get_known_graph_ancestry(keys)``.
 
730
  (John Arbash Meinel)
 
731
 
 
732
* RemoteBranch.open now honours ignore_fallbacks correctly on bzr-v2
 
733
  protocols. (Robert Collins)
 
734
 
 
735
* The index code now has some specialized routines to extract the full
 
736
  ancestry of a key in a more efficient manner.
 
737
  ``CombinedGraphIndex.find_ancestry()``. (Time to get ancestry for
 
738
  bzr.dev drops from 1.5s down to 300ms. For OOo from 33s => 10.5s) (John
 
739
  Arbash Meinel)
 
740
 
 
741
Testing
 
742
*******
 
743
 
 
744
* Install the test ssl certificate and key so that installed bzr
 
745
  can run the https tests. (Denys Duchier, #392401)
 
746
  
 
747
 
 
748
bzr 1.18rc1
 
749
###########
 
750
 
 
751
:Codename: little traveller
 
752
:1.18:    2009-08-20
 
753
:1.18rc1: 2009-08-10
 
754
 
 
755
This release of Bazaar marches on towards the 2.0 release in which the 2a
 
756
'brisbane-core' format becomes generally recommended.  Most of the work in
 
757
this release now focusses on bug fixes and stabilization, covering both 2a
 
758
and previous formats.  There is a new text-mode interactive merge feature,
 
759
a new guide to migration to 2a format in the user documentation, and
 
760
pushing branches to a smart server is now much faster.  
 
761
 
 
762
The Bazaar team decided that 2.0 will be a long-term supported release,
 
763
with bugfix-only releases based on it continuing for at least six months
 
764
or until the following stable release.
 
765
 
 
766
There are no changes from 1.18rc1 to 1.18.
 
767
 
 
768
New Features
 
769
************
 
770
 
 
771
* ``bzr merge --interactive`` applies a user-selected portion of the
 
772
  merge.  The UI is similar to ``shelve``.  (Aaron Bentley)
 
773
 
 
774
* ``bzr reconfigure`` now takes options ``--stacked-on URL`` and
 
775
  ``--unstacked`` to change stacking of a branch.
 
776
  (Martin Pool, #391411)
 
777
 
 
778
Bug Fixes
 
779
*********
 
780
 
 
781
* Annotating on a stacked branch will now succeed in simple scenarios.
 
782
  There are still some complex scenarios where it will fail (bug #399884)
 
783
  (John Arbash Meinel, #393366)
 
784
 
 
785
* A progress bar is no longer left dangling when ``bzr selftest``
 
786
  completes, and the progress bar updates with zero latency so the
 
787
  displayed test name is always the one that's actually running.
 
788
  (Martin Pool, #123688)
 
789
 
 
790
* Authenticating against an ssh server now uses ``auth_none`` to determine
 
791
  if password authentication is even supported. This fixes a bug where
 
792
  users would be prompted for a launchpad password, even though launchpad
 
793
  only supports publickey authentication. (John Arbash Meinel, #375867)
 
794
 
 
795
* BranchBuilder now accepts timezone to avoid test failures in countries far
 
796
  from GMT. (Vincent Ladeuil, #397716)
 
797
 
 
798
* ``bzr commit`` no longer saves the unversioning of missing files until
 
799
  the commit has completed on the branch. This means that aborting a
 
800
  commit that found a missing file will leave the tree unedited.
 
801
  (Robert Collins, #282402)
 
802
 
 
803
* ``bzr mv`` no longer takes out branch locks, which allows it to work
 
804
  when the branch is readonly. (Robert Collins, #216541)
 
805
 
 
806
* ``bzr revert .`` no longer generates an InconsistentDelta error when
 
807
  there are missing subtrees. (Robert Collins, #367632)
 
808
 
 
809
* ``bzr send`` now generates valid bundles with ``--2a`` formats. However,
 
810
  do to internal changes necessary to support this, older clients will
 
811
  fail when trying to insert them. For newer clients, the bundle can be
 
812
  used to apply the changes to any rich-root compatible format.
 
813
  (John Arbash Meinel, #393349)
 
814
 
 
815
* Cope with FTP servers that don't support restart/append by falling back
 
816
  to reading and then rewriting the whole file, such as TahoeLAFS.  (This
 
817
  fallback may be slow for some access patterns.)  (Nils Durner, #294709)
 
818
 
 
819
* Encode the paths in ``mbcs`` encoding on Windows when spawning an
 
820
  external diff client. This at least allows supporting filenames that are
 
821
  not ascii, but are present in the current locale. Ideally we would be
 
822
  able to pass the Unicode path, but that would be client dependent.
 
823
  (John Arbash Meinel, #382709)
 
824
 
 
825
* Fix a compile bug on Solaris having to do with const and
 
826
  pointer-to-pointers. (John Arbash Meinel, #408441)
 
827
 
 
828
* Fixed a NameError that occurs when merging or pulling from a URL that
 
829
  causes a redirection loop when bzr tries to read a URL as a bundle.
 
830
  (Andrew Bennetts, #400847)
 
831
 
 
832
* Fix ``AttributeError: 'TestUIFactory' object has no attribute 'tick'``
 
833
  running send and similar commands on 2a formats.
 
834
  (Martin Pool, #408201)
 
835
  
 
836
* Fix crash in some invocations of ``bzr status`` in format 2a.
 
837
  (Martin Pool, #403523)
 
838
 
 
839
* Fixed export to existing directory: if directory is empty then export 
 
840
  will succeed, otherwise it fails with error.
 
841
  (Alexander Belchenko, #406174)
 
842
 
 
843
* Fixed spurious "Source branch does not support stacking" warning when
 
844
  pushing. (Andrew Bennetts, #388908)
 
845
 
 
846
* Fixed spurious transport activity indicator appearing while tests are
 
847
  running.  (Martin Pool, #343532)
 
848
 
 
849
* Merge now correctly handles empty right-hand revision specs.
 
850
  (Aaron Bentley, #333961)
 
851
 
 
852
* Renames to lexographically lower basenames in trees that have never been
 
853
  committed to will no longer corrupt the dirstate. This was caused by an
 
854
  bug in the dirstate update_minimal method. (Robert Collins, #395556)
 
855
 
 
856
* Requests for unknown methods no longer cause the smart server to log
 
857
  lots of backtraces about ``UnknownSmartMethod``, ``do_chunk`` or
 
858
  ``do_end``.  (Andrew Bennetts, #338561)
 
859
 
 
860
* Shelve will not shelve the initial add of the tree root.  (Aaron Bentley)
 
861
 
 
862
* Streaming from bzr servers where there is a chain of stacked branches
 
863
  (A stacked on B stacked on C) will now work. (Robert Collins, #406597)
 
864
 
 
865
* The environment variable ``BZR_PROGRESS_BAR`` set to either ``text`` or ``none``
 
866
  always forces progress bars either on or off respectively.  Otherwise,
 
867
  they're turned on if ``TERM`` is not ``dumb`` and stderr is a terminal.
 
868
  bzr always uses the 'text' user interface when run as a command, so
 
869
  ``BZR_USE_TEXT_UI`` is no longer needed.
 
870
  (Martin Pool, #339385, #387717)
 
871
 
 
872
* The optional ``_knit_load_data_pyx`` C extension was never being
 
873
  imported.  This caused significant slowdowns when reading data from
 
874
  repositories.  (Andrew Bennetts, #405653)
 
875
  
 
876
* The ``--hardlink`` option to ``branch`` and ``checkout`` is not
 
877
  supported at the moment on workingtree formats that can do content
 
878
  filtering.  (See <https://bugs.edge.launchpad.net/bzr/+bug/408193>.)
 
879
  bzr now says so, rather than just ignoring the option.  (Martin Pool)
 
880
 
 
881
* There was a bug in ``osutils.relpath`` that was only triggered on
 
882
  Windows. Essentially if you were at the root of a drive, and did
 
883
  something to a branch/repo on another drive, we would go into an
 
884
  infinite loop while trying to find a 'relative path'.
 
885
  (John Arbash Meinel, #394227)
 
886
 
 
887
* ``WorkingTree4.unversion`` will no longer fail to unversion ids which
 
888
  were present in a parent tree but renamed in the working tree.
 
889
  (Robert Collins, #187207)
 
890
 
 
891
Improvements
 
892
************
 
893
 
 
894
* Can now rename/move files even if they have been removed from the inventory.
 
895
  (Marius Kruger)
 
896
 
 
897
* Pushing branches with tags via ``bzr://`` and ``bzr+ssh://`` is much
 
898
  faster, using a new ``Branch.set_tags_bytes`` smart server verb rather
 
899
  than VFS methods.  For example, pushes of small branches with tags take
 
900
  11 rather than 18 smart server requests.  (Andrew Bennetts, #398608)
 
901
 
 
902
* Sending Ctrl-Break on Windows will now drop you into the debugger, in
 
903
  the same way that sending Ctrl-\\ does on other platforms.
 
904
  (John Arbash Meinel)
 
905
 
 
906
Documentation
 
907
*************
 
908
 
 
909
* Added Bazaar 2.0 Upgrade Guide. (Ian Clatworthy)
 
910
 
 
911
API Changes
 
912
***********
 
913
 
 
914
* ``CLIUIFactory`` is deprecated; use ``TextUIFactory`` instead if you
 
915
  need to subclass or create a specific class, or better yet the existing
 
916
  ``make_ui_for_terminal``.  ``SilentUIFactory`` is clarified to do no
 
917
  user interaction at all, rather than trying to read from stdin but not
 
918
  writing any output, which would be strange if reading prompts or
 
919
  passwords.  (Martin Pool)
 
920
 
 
921
* New TransformPreview.commit() allows committing without a working tree.
 
922
  (Aaron Bentley)
 
923
 
 
924
* ``pb`` parameter to ``TextTestResult`` is deprecated and ignored.
 
925
  (Martin Pool)
 
926
 
 
927
* ProgressTasks now prefer to talk direct to their ProgressView not to the
 
928
  UIFactory. 
 
929
  (Martin Pool)
 
930
 
 
931
* ``WorkingTree._check`` now requires a references dict with keys matching
 
932
  those returned by ``WorkingTree._get_check_refs``. (Robert Collins)
 
933
 
 
934
Internals
 
935
*********
 
936
 
 
937
* ``CHKInventory.path2id`` uses the parent_id to basename hash to avoid
 
938
  reading the entries along the path, reducing work to lookup ids from
 
939
  paths. (Robert Collins)
 
940
 
 
941
* ``CHKMap.apply_delta`` now raises ``InconsistentDelta`` if a delta adds
 
942
  as new a key which was already mapped. (Robert Collins)
 
943
 
 
944
* Inventory delta application catches more cases of corruption and can
 
945
  prevent corrupt deltas from affecting consistency of data structures on
 
946
  disk. (Robert Collins)
 
947
 
 
948
* --subunit support now adds timestamps if the subunit version supports
 
949
  it. (Robert Collins)
 
950
 
 
951
* The Windows all-in-one installer now bundles the PyQt image format
 
952
  plugins, which allows previewing more images as part of 'qdiff'.
 
953
  (Alexander Belchenko)
 
954
 
 
955
 
 
956
Testing
 
957
*******
 
958
 
 
959
* Merge directive cherrypick tests must use the same root id.
 
960
  (Martin Pool, #409684)
 
961
 
 
962
* Spurious failure in ``check`` tests on rich-root formats fixed.
 
963
  (Martin Pool, #408199)
 
964
 
 
965
* The ``bzrlib.tests.TextTestRunner`` will no longer call
 
966
  ``countTestsCases`` on the test being run. Progress information is
 
967
  instead handled by having the test passed in call ``result.progress``
 
968
  before running its contents. This improves the behaviour when using
 
969
  ``TextTestRunner`` with test suites that don't support
 
970
  ``countTestsCases``. (Robert Collins)
 
971
 
 
972
 
 
973
bzr 1.17.1 (unreleased)
 
974
#######################
 
975
 
 
976
Bug Fixes
 
977
*********
 
978
 
 
979
* The optional ``_knit_load_data_pyx`` C extension was never being
 
980
  imported.  This caused significant slowdowns when reading data from
 
981
  knit format repositories.  (Andrew Bennetts, #405653)
 
982
  
 
983
 
 
984
bzr 1.17
 
985
########
 
986
:Codename: so-late-its-brunch
 
987
:1.17rc1: 2009-07-13
 
988
:1.17: 2009-07-20
 
989
 
 
990
 
 
991
Bazaar continues to blaze a straight and shining path to the 2.0 release and
 
992
the elevation of the ``2a`` beta format to the full glory of "supported and
 
993
stable".
 
994
 
 
995
Highlights in this release include greatly reduced memory consumption during
 
996
commits, faster ``ls``, faster ``annotate``, faster network operations if
 
997
you're specifying a revision number and the final destruction of those
 
998
annoying progress bar artifacts.
 
999
 
 
1000
 
 
1001
Changes from 1.17rc1 to 1.17final
 
1002
*********************************
 
1003
 
 
1004
* Change an extension to call the python ``frozenset()`` rather than the C
 
1005
  api ``PyFrozenSet_New``. It turns out that python2.4 did not expose the
 
1006
  C api. (John Arbash Meinel, #399366)
 
1007
 
 
1008
* Fixes for the Makefile and the rename of ``generate_docs.py`` to
 
1009
  ``tools/generate_docs.py`` to allow everything to be built on Windows.
 
1010
  (John Arbash Meinel, #399356)
 
1011
 
 
1012
* ``bzr serve`` once again applies a ``ChrootServer`` to the given
 
1013
  directory before serving it. (Andrew Bennetts, #400535)
 
1014
 
 
1015
 
 
1016
Compatibility Breaks
 
1017
********************
 
1018
 
 
1019
* ``bzr register-branch`` from the Launchpad plugin now refers to "project"
 
1020
  instead of "product" which is the correct Launchpad terminology.  The
 
1021
  --product option is deprecated and users should switch to using --project.
 
1022
  (Neil Martinsen-Burrell, #238764)
 
1023
 
 
1024
 
 
1025
New Features
 
1026
************
 
1027
 
 
1028
* ``bzr push`` now aborts if uncommitted changes (including pending merges)
 
1029
  are present in the working tree (if one is present) and no revision is
 
1030
  specified. The configuration option ``push_strict`` can be used to set the
 
1031
  default for this behavior.  (Vincent Ladeuil, #284038, #322808, #65286)
 
1032
 
 
1033
* ``bzr revno`` and ``bzr revision-info`` now have a ``--tree`` option to
 
1034
  show revision info for the working tree instead of the branch.
 
1035
  (Matthew Fuller, John Arbash Meinel)
 
1036
 
 
1037
* ``bzr send`` now aborts if uncommitted changes (including pending merges)
 
1038
  are present in the working tree and no revision is specified. The
 
1039
  configuration option ``send_strict`` can be used to set the default for this
 
1040
  behavior.
 
1041
  (Vincent Ladeuil, #206577)
 
1042
 
 
1043
* ``bzr switch --create-branch/-b`` can now be used to create and switch
 
1044
  to a new branch. Supplying a name without a ``/`` will create the branch
 
1045
  relative to the existing branch. (similar to how ``bzr switch name``
 
1046
  works when the branch already exists.) (John Arbash Meinel)
 
1047
 
 
1048
 
 
1049
Bug Fixes
 
1050
*********
 
1051
 
 
1052
* Accept uppercase "Y/N" to prompts such as from break lock. 
 
1053
  (#335182, Tim Powell, Martin Pool)
 
1054
 
 
1055
* Add documentation about diverged branches and how to fix them in the
 
1056
  centralized workflow with local commits.  Mention ``bzr help
 
1057
  diverged-branches`` when a push fails because the branches have
 
1058
  diverged.  (Neil Martinsen-Burrell, #269477)
 
1059
 
 
1060
* Annotate would sometimes 'latch on' to trivial lines, causing important
 
1061
  lines to be incorrectly annotated. (John Arbash Meinel, #387952)
 
1062
 
 
1063
* Automatic format upgrades triggered by default stacking policies on a
 
1064
  1.16rc1 (or later) smart server work again.
 
1065
  (Andrew Bennetts, #388675)
 
1066
 
 
1067
* Avoid progress bar artifacts being left behind on the screen.
 
1068
  (Martin Pool, #321935)
 
1069
 
 
1070
* Better message in ``bzr split`` error suggesting a rich root format.
 
1071
  (Neil Martinsen-Burrell, #220067)
 
1072
 
 
1073
* ``Branch.set_append_revisions_only`` now works with branches on a smart
 
1074
  server. (Andrew Bennetts, #365865)
 
1075
 
 
1076
* By default, ``bzr branch`` will fail if the target directory exists, but
 
1077
  does not already have a control directory.  The flag ``--use-existing-dir``
 
1078
  will allow operation to proceed.  (Alexander Belchenko, #307554)
 
1079
 
 
1080
* ``bzr ls DIR --from-root`` now shows only things in DIR, not everything.
 
1081
  (Ian Clatworthy)
 
1082
 
 
1083
* Fetch between repositories does not error if they have inconsistent data
 
1084
  that should be irrelevant to the fetch operation. (Aaron Bentley)
 
1085
 
 
1086
* Fix ``AttributeError`` exception when reconfiguring lightweight checkout 
 
1087
  of a remote repository.
 
1088
  (Jelmer Vernooij, #332194)
 
1089
 
 
1090
* Fix bug in decoding v3 smart server messages when receiving multiple
 
1091
  lots of excess bytes after an end-of-message.
 
1092
  (Andrew Bennetts)
 
1093
 
 
1094
* Force deletion of readonly files during merge, update and other tree
 
1095
  transforms.
 
1096
  (Craig Hewetson, Martin Pool, #218206)
 
1097
 
 
1098
* Force socket shutdown in threaded http test servers to avoid client hangs
 
1099
  (pycurl).  (Vincent Ladeuil, #383920).
 
1100
 
 
1101
* ``LRUCache`` will maintain the linked list pointers even if a nodes
 
1102
  cleanup function raises an exception. (John Arbash Meinel, #396838)
 
1103
 
 
1104
* Progress bars are now suppressed again when the environment variable
 
1105
  ``BZR_PROGRESS_BAR`` is set to ``none``.
 
1106
  (Martin Pool, #339385)
 
1107
 
 
1108
* Reduced memory consumption during ``bzr commit`` of large files. For
 
1109
  pre 2a formats, should be down to ~3x the size of a file.
 
1110
  For ``--2a`` format repositories, it is down to the size of the file
 
1111
  content plus the size of the compressed text.  Related to bug #109114.
 
1112
  (John Arbash Meinel)
 
1113
 
 
1114
* Set hidden attribute on .bzr directory below unicode path should never
 
1115
  fail with error. The operation should succeed even if bzr unable to set 
 
1116
  the attribute.  (Alexander Belchenko, related to bug #335362).
 
1117
  
 
1118
* Stacking will no longer accept requests to stack on the same
 
1119
  branch/repository. Existing branches that incorrectly reference the same
 
1120
  repository in a stacking configuration will now raise
 
1121
  UnstackableLocationError when the branch is opened. This can be fixed by
 
1122
  removing the stacking location inside ``.bzr/branch``.
 
1123
  (Robert Collins, #376243)
 
1124
 
 
1125
* The ``log+`` decorator, useful in debugging or profiling, could cause
 
1126
  "AttributeError: 'list' object has no attribute 'next'".  This is now
 
1127
  fixed.  The log decorator no longer shows the elapsed time or transfer
 
1128
  rate because they're available in the log prefixes and the transport
 
1129
  activity display respectively.
 
1130
  (Martin Pool, #340347)
 
1131
 
 
1132
* Unshelve works correctly when multiple zero-length files are present on
 
1133
  the shelf. (Aaron Bentley, #363444)
 
1134
 
 
1135
* Progress bars no longer show the network transport scheme or direction.
 
1136
  (Martin Pool)
 
1137
 
 
1138
* launchpad-login now respects the 'verbose' option.
 
1139
  (Jonathan Lange, #217031)
 
1140
 
 
1141
 
 
1142
Internals
 
1143
*********
 
1144
 
 
1145
* ``bzrlib.user_encoding`` is now officially deprecated. It is not
 
1146
  possible to write a deprecation wrapper, but the variable will be
 
1147
  removed in the near future. Use ``bzrlib.osutils.get_user_encoding()``
 
1148
  instead. (Alexander Belchenko)
 
1149
 
 
1150
* Command lookup has had hooks added. ``bzrlib.Command.hooks`` has
 
1151
  three new hook points: ``get_command``, ``get_missing_command`` and
 
1152
  ``list_commands``, which allow just-in-time command name provision
 
1153
  rather than requiring all command names be known a-priori.
 
1154
  (Robert Collins)
 
1155
 
 
1156
* ``get_app_path`` from win32utils.py now supports REG_EXPAND_SZ data type
 
1157
  and can read path to wordpad.exe. (Alexander Belchenko, #392046)
 
1158
 
 
1159
* ``graph.KnownGraph`` has been added. This is a class that can give
 
1160
  answers to ``heads()`` very quickly. However, it has the assumption that
 
1161
  the whole graph has already been loaded. This is true during
 
1162
  ``annotate`` so it is used there with good success (as much as 2x faster
 
1163
  for files with long ancestry and 'cherrypicked' changes.)
 
1164
  (John Arbash Meinel, Vincent Ladeuil)
 
1165
 
 
1166
* OS file locks are now taken out using ``CreateFile`` rather than
 
1167
  ``LockFileEx`` on Windows. The locking remains exclusive with
 
1168
  ``LockFileEx`` but now it also works on older versions of Windows (such
 
1169
  as Win98). (Martin <gzlist>)
 
1170
 
 
1171
* pack <=> pack fetching is now done via a ``PackStreamSource`` rather
 
1172
  than the ``Packer`` code. The user visible change is that we now
 
1173
  properly fetch the minimum number of texts for non-smart fetching.
 
1174
  (John Arbash Meinel)
 
1175
 
 
1176
 
 
1177
* ``VersionedFiles._add_text`` is a new api that lets us insert text into
 
1178
  the repository as a single string, rather than a list of lines. This can
 
1179
  improve memory overhead and performance of committing large files.
 
1180
  (Currently a private api, used only by commit). (John Arbash Meinel)
 
1181
 
 
1182
 
 
1183
Improvements
 
1184
************
 
1185
 
 
1186
* ``bzr annotate`` can now be significantly faster. The time for
 
1187
  ``bzr annotate NEWS`` is down to 7s from 22s in 1.16. Files with long
 
1188
  histories and lots of 'duplicate insertions' will be improved more than
 
1189
  others. (John Arbash Meinel, Vincent Ladeuil)
 
1190
 
 
1191
* ``bzr ls`` is now faster. On OpenOffice.org, the time drops from 2.4
 
1192
  to 1.1 seconds. The improvement for ``bzr ls -r-1`` is more
 
1193
  substantial dropping from 54.3 to 1.1 seconds. (Ian Clatworthy)
 
1194
 
 
1195
* Improve "Path(s) are not versioned" error reporting for some commands.
 
1196
  (Benoît PIERRE)
 
1197
 
 
1198
* Initial commit performance in ``--2a`` repositories has been improved by
 
1199
  making it cheaper to build the initial CHKMap. (John Arbash Meinel)
 
1200
 
 
1201
* Resolving a revno to a revision id on a branch accessed via ``bzr://``
 
1202
  or ``bzr+ssh://`` is now much faster and involves no VFS operations.
 
1203
  This speeds up commands like ``bzr pull -r 123``.  (Andrew Bennetts)
 
1204
 
 
1205
* ``revision-info`` now properly aligns the revnos/revids in the output
 
1206
  and doesn't traceback when given revisions not in the current branch.
 
1207
  Performance is also significantly improved when requesting multiple revs
 
1208
  at once.  (Matthew Fuller, John Arbash Meinel)
 
1209
 
 
1210
* Tildes are no longer escaped by Transports. (Andy Kilner)
 
1211
 
 
1212
 
 
1213
Documentation
 
1214
*************
 
1215
 
 
1216
* Avoid bad text wrapping in generated documentation.  Slightly better
 
1217
  formatting in the user reference.
 
1218
  (Martin Pool, #249908)
 
1219
 
 
1220
* Minor clarifications to the help for End-Of-Line conversions.
 
1221
  (Ian Clatworthy)
 
1222
 
 
1223
API Changes
 
1224
***********
 
1225
 
 
1226
* Removed overspecific error class ``InvalidProgressBarType``.
 
1227
  (Martin Pool)
 
1228
 
 
1229
* The method ``ProgressView._show_transport_activity`` is now
 
1230
  ``show_transport_activity`` because it's part of the contract between
 
1231
  this class and the UI.  (Martin Pool)
 
1232
 
 
1233
 
 
1234
bzr 1.16.1
 
1235
##########
 
1236
 
 
1237
:Released: 2009-06-26
 
1238
 
 
1239
End user testing of the 2a format revealed two serious bugs. The first,
 
1240
#365615, caused bzr to raise AbsentContentFactory errors when autopacking.
 
1241
This meant that commits or pushes to 2a-format repositories failed
 
1242
intermittently.
 
1243
 
 
1244
The second bug, #390563, caused the smart server to raise AbsentContentFactory
 
1245
when streaming 2a stacked 2a-format branches. This particularly affected
 
1246
branches stored on Launchpad in the 2a format.
 
1247
 
 
1248
Both of these bugs cause command failures only, neither of them cause data
 
1249
corruption or data loss. And, of course, both of these bugs are now fixed.
 
1250
 
 
1251
Bug Fixes
 
1252
*********
 
1253
 
 
1254
* We now properly request a more minimal set of file texts when fetching
 
1255
  multiple revisions. (Robert Collins, John Arbash Meinel, #390563)
 
1256
 
 
1257
* Repositories using CHK pages (which includes the new 2a format) will no
 
1258
  longer error during commit or push operations when an autopack operation
 
1259
  is triggered. (Robert Collins, #365615)
 
1260
 
 
1261
* ``chk_map.iter_interesting_nodes`` now properly uses the *intersection*
 
1262
  of referenced nodes rather than the *union* to determine what
 
1263
  uninteresting pages we still need to look at. Prior to this,
 
1264
  incrementally pushing to stacked branch would push the minimal data, but
 
1265
  fetching everything would request extra texts. There are some unhandled
 
1266
  cases wrt trees of different depths, but this fixes the common cases.
 
1267
  (Robert Collins, John Arbash Meinel, #390563)
 
1268
 
 
1269
* ``GroupCompress`` repositories now take advantage of the pack hints
 
1270
  parameter to permit cross-format fetching to incrementally pack the
 
1271
  converted data. (Robert Collins)
 
1272
 
 
1273
* ``Repository.commit_write_group`` now returns opaque data about what
 
1274
  was committed, for passing to the ``Repository.pack``. Repositories
 
1275
  without atomic commits will still return None. (Robert Collins)
 
1276
 
 
1277
* ``Repository.pack`` now takes an optional ``hint`` parameter
 
1278
  which will support doing partial packs for repositories that can do
 
1279
  that. (Robert Collins)
 
1280
 
 
1281
* RepositoryFormat has a new attribute 'pack_compresses' which is True
 
1282
  when doing a pack operation changes the compression of content in the
 
1283
  repository. (Robert Collins)
 
1284
 
 
1285
* ``StreamSink`` and ``InterDifferingSerialiser`` will call
 
1286
  ``Repository.pack`` with the hint returned by
 
1287
  ``Repository.commit_write_group`` if the formats were different and the
 
1288
  repository can increase compression by doing a pack operation.
 
1289
  (Robert Collins, #376748)
 
1290
 
 
1291
 
 
1292
bzr 1.16
 
1293
########
 
1294
:Codename: yesterday-in-california
 
1295
:1.16rc1: 2009-06-11
 
1296
:1.16: 2009-06-18
 
1297
 
 
1298
This version of Bazaar contains the beta release of the new ``2a`` repository
 
1299
format, suitable for testing by fearless, advanced users. This format or an
 
1300
updated version of it will become the default format in Bazaar 2.0. Please
 
1301
read the NEWS entry before even thinking about upgrading to the new format.
 
1302
 
 
1303
Also included are speedups for many operations on huge projects, a bug fix for
 
1304
pushing stacked new stacked branches to smart servers and the usual bevy of
 
1305
bug fixes and improvements.
 
1306
 
 
1307
 
 
1308
Changes from 1.16rc1 to 1.16final
 
1309
*********************************
 
1310
 
 
1311
* Fix the nested tree flag check so that upgrade from development formats to
 
1312
  2a can work correctly.
 
1313
  (Jelmer Vernooij, #388727)
 
1314
 
 
1315
* Automatic format upgrades triggered by default stacking policies on a
 
1316
  1.16rc1 (or later) smart server work again.
 
1317
  (Andrew Bennetts, #388675)
 
1318
 
 
1319
 
 
1320
Compatibility Breaks
 
1321
********************
 
1322
 
 
1323
* Display prompt on stderr (instead of stdout) when querying users so
 
1324
  that the output of commands can be safely redirected.
 
1325
  (Vincent Ladeuil, #376582)
 
1326
 
 
1327
 
 
1328
New Features
 
1329
************
 
1330
 
 
1331
* A new repository format ``2a`` has been added.  This is a beta release
 
1332
  of the the brisbane-core (aka group-compress) project.  This format now
 
1333
  suitable for wider testing by advanced users willing to deal with some
 
1334
  bugs.  We would appreciate test reports, either positive or negative.
 
1335
  Format 2a is substantially smaller and faster for many operations on
 
1336
  many trees.  This format or an updated version will become the default
 
1337
  in bzr 2.0.
 
1338
 
 
1339
  This is a rich-root format, so this repository format can be used with
 
1340
  bzr-svn.  Bazaar branches in previous non-rich-root formats can be
 
1341
  converted (including by merge, push and pull) to format 2a, but not vice
 
1342
  versa.  We recommend upgrading previous development formats to 2a.
 
1343
 
 
1344
  Upgrading to this format can take considerable time because it expands
 
1345
  and more concisely repacks the full history.
 
1346
 
 
1347
  If you use stacked branches, you must upgrade the stacked branches
 
1348
  before the stacked-on branches.  (See <https://bugs.launchpad.net/bugs/374735>)
 
1349
 
 
1350
* ``--development7-rich-root`` is a new dev format, similar to ``--dev6``
 
1351
  but using a Revision serializer using bencode rather than XML.
 
1352
  (Jelmer Vernooij, John Arbash Meinel)
 
1353
 
 
1354
* mail_client=claws now supports --body (and message body hooks).  Also uses
 
1355
  configured from address.  (Barry Warsaw)
 
1356
 
 
1357
Improvements
 
1358
************
 
1359
 
 
1360
 
 
1361
* ``--development6-rich-root`` can now stack. (Modulo some smart-server
 
1362
  bugs with stacking and non default formats.)
 
1363
  (John Arbash Meinel, #373455)
 
1364
 
 
1365
* ``--development6-rich-root`` delays generating a delta index for the
 
1366
  first object inserted into a group. This has a beneficial impact on
 
1367
  ``bzr commit`` since each committed texts goes to its own group. For
 
1368
  committing a 90MB file, it drops peak memory by about 200MB, and speeds
 
1369
  up commit from 7s => 4s. (John Arbash Meinel)
 
1370
 
 
1371
* Numerous operations are now faster for huge projects, i.e. those
 
1372
  with a large number of files and/or a large number of revisions,
 
1373
  particularly when the latest development format is used. These
 
1374
  operations (and improvements on OpenOffice.org) include:
 
1375
 
 
1376
  * branch in a shared repository (2X faster)
 
1377
  * branch --no-tree (100X faster)
 
1378
  * diff (2X faster)
 
1379
  * tags (70X faster)
 
1380
 
 
1381
  (Ian Clatworthy)
 
1382
 
 
1383
* Pyrex version of ``bencode`` support. This provides optimized support
 
1384
  for both encoding and decoding, and is now found at ``bzrlib.bencode``.
 
1385
  ``bzrlib.utils.bencode`` is now deprecated.
 
1386
  (Alexander Belchenko, Jelmer Vernooij, John Arbash Meinel)
 
1387
 
 
1388
 
 
1389
Bug Fixes
 
1390
*********
 
1391
 
 
1392
* Bazaar can now pass attachment files to the mutt email client.
 
1393
  (Edwin Grubbs, #384158)
 
1394
 
 
1395
* Better message in ``bzr add`` output suggesting using ``bzr ignored`` to
 
1396
  see which files can also be added.  (Jason Spashett, #76616)
 
1397
 
 
1398
* ``bzr pull -r 123`` from a stacked branch on a smart server no longer fails.
 
1399
  Also, the ``Branch.revision_history()`` API now works in the same
 
1400
  situation.  (Andrew Bennetts, #380314)
 
1401
  
 
1402
* ``bzr serve`` on Windows no longer displays a traceback simply because a
 
1403
  TCP client disconnected. (Andrew Bennetts)
 
1404
 
 
1405
* Clarify the rules for locking and fallback repositories. Fix bugs in how
 
1406
  ``RemoteRepository`` was handling fallbacks along with the
 
1407
  ``_real_repository``. (Andrew Bennetts, John Arbash Meinel, #375496)
 
1408
 
 
1409
* Fix a small bug with fetching revisions w/ ghosts into a new stacked
 
1410
  branch. Not often triggered, because it required ghosts to be part of
 
1411
  the fetched revisions, not in the stacked-on ancestry.
 
1412
  (John Arbash Meinel)
 
1413
 
 
1414
* Fix status and commit to work with content filtered trees, addressing
 
1415
  numerous bad bugs with line-ending support. (Ian Clatworthy, #362030)
 
1416
 
 
1417
* Fix problem of "directory not empty" when contending for a lock over
 
1418
  sftp.  (Martin Pool, #340352)
 
1419
 
 
1420
* Fix rule handling so that eol is optional, not mandatory.
 
1421
  (Ian Clatworthy, #379370)
 
1422
 
 
1423
* Pushing a new stacked branch to a 1.15 smart server was broken due to a
 
1424
  bug in the ``BzrDirFormat.initialize_ex`` smart verb.  This is fixed in
 
1425
  1.16, but required changes to the network protocol, so the
 
1426
  ``BzrDirFormat.initialize_ex`` verb has been removed and replaced with a
 
1427
  corrected ``BzrDirFormat.initialize_ex_1.16`` verb.  1.15 clients will
 
1428
  still work with a 1.16 server as they will fallback to slower (and
 
1429
  bug-free) methods.
 
1430
  (Jonathan Lange, Robert Collins, Andrew Bennetts, #385132)
 
1431
 
 
1432
* Reconcile can now deal with text revisions that originated in revisions 
 
1433
  that are ghosts. (Jelmer Vernooij, #336749)
 
1434
 
 
1435
* Support cloning of branches with ghosts in the left hand side history.
 
1436
  (Jelmer Vernooij, #248540)
 
1437
 
 
1438
* The ''bzr diff'' now catches OSError from osutils.rmtree and logs a
 
1439
  helpful message to the trace file, unless the temp directory really was
 
1440
  removed (which would be very strange).  Since the diff operation has
 
1441
  succeeded from the user's perspective, no output is written to stderr 
 
1442
  or stdout.  (Maritza Mendez, #363837)
 
1443
 
 
1444
* Translate errors received from a smart server in response to a
 
1445
  ``BzrDirFormat.initialize`` or ``BzrDirFormat.initialize_ex`` request.
 
1446
  This was causing tracebacks even for mundane errors like
 
1447
  ``PermissionDenied``.  (Andrew Bennetts, #381329)
 
1448
 
 
1449
Documentation
 
1450
*************
 
1451
 
 
1452
* Added directory structure and started translation of docs in Russian.
 
1453
  (Alexey Shtokalo, Alexander Iljin, Alexander Belchenko, Dmitry Vasiliev,
 
1454
  Volodymyr Kotulskyi)
 
1455
 
 
1456
API Changes
 
1457
***********
 
1458
 
 
1459
* Added osutils.parent_directories(). (Ian Clatworthy)
 
1460
 
 
1461
* ``bzrlib.progress.ProgressBar``, ``ChildProgress``, ``DotsProgressBar``,
 
1462
  ``TTYProgressBar`` and ``child_progress`` are now deprecated; use
 
1463
  ``ui_factory.nested_progress_bar`` instead.  (Martin Pool)
 
1464
 
 
1465
* ``graph.StackedParentsProvider`` is now a public API, replacing
 
1466
  ``graph._StackedParentsProvider``. The api is now considered stable and ready
 
1467
  for external users. (Gary van der Merwe)
 
1468
 
 
1469
* ``bzrlib.user_encoding`` is deprecated in favor of
 
1470
  ``get_user_encoding``.  (Alexander Belchenko)
 
1471
 
 
1472
* TreeTransformBase no longer assumes that limbo is provided via disk.
 
1473
  DiskTreeTransform now provides disk functionality.  (Aaron Bentley)
 
1474
 
 
1475
Internals
 
1476
*********
 
1477
 
 
1478
* Remove ``weave.py`` script for accessing internals of old weave-format
 
1479
  repositories.  (Martin Pool)
 
1480
 
 
1481
Testing
 
1482
*******
 
1483
 
 
1484
* ``make check`` no longer repeats the test run in ``LANG=C``.
 
1485
  (Martin Pool, #386180)
 
1486
 
 
1487
* The number of cores is now correctly detected on OSX. (John Szakmeister)
 
1488
 
 
1489
* The number of cores is also detected on Solaris and win32. (Vincent Ladeuil)
 
1490
 
 
1491
* The number of cores is also detected on FreeBSD. (Matthew Fuller)
 
1492
 
 
1493
 
 
1494
bzr 1.15
 
1495
########
 
1496
:1.15rc1: 2009-05-16
 
1497
:1.15: 2009-05-22
 
1498
:1.15.1: 2009-06-09
 
1499
 
 
1500
The smart server will no longer raise 'NoSuchRevision' when streaming content
 
1501
with a size mismatch in a reconstructed graph search. New command ``bzr
 
1502
dpush``. Plugins can now define their own annotation tie-breaker when two
 
1503
revisions introduce the exact same line.
 
1504
 
 
1505
Changes from 1.15.1 to 1.15.2
 
1506
*****************************
 
1507
 
 
1508
* Use zdll on Windows to build ``_chk_map_pyx`` extension.
 
1509
  (Alexander Belchenko)
 
1510
 
 
1511
Changes from 1.15final to 1.15.1
 
1512
*********************************
 
1513
 
 
1514
* Translate errors received from a smart server in response to a
 
1515
  ``BzrDirFormat.initialize`` or ``BzrDirFormat.initialize_ex`` request.
 
1516
  This was causing tracebacks even for mundane errors like
 
1517
  ``PermissionDenied``.  (Andrew Bennetts, #381329)
 
1518
 
 
1519
Changes from 1.15rc1 to 1.15final
 
1520
*********************************
 
1521
 
 
1522
* No changes
 
1523
 
 
1524
Compatibility Breaks
 
1525
********************
 
1526
 
 
1527
* ``bzr ls`` is no longer recursive by default. To recurse, use the
 
1528
  new ``-R`` option. The old ``--non-recursive`` option has been removed.
 
1529
  If you alias ``ls`` to ``ls -R``, you can disable recursion using
 
1530
  ``--no-recursive`` instead.  (Ian Clatworthy)
 
1531
 
 
1532
New Features
 
1533
************
 
1534
 
 
1535
* New command ``bzr dpush`` that can push changes to foreign 
 
1536
  branches (svn, git) without setting custom bzr-specific metadata.
 
1537
  (Jelmer Vernooij)
 
1538
 
 
1539
* The new development format ``--development6-rich-root`` now supports
 
1540
  stacking. We chose not to use a new format marker, since old clients
 
1541
  will just fail to open stacked branches, the same as if we used a new
 
1542
  format flag. (John Arbash Meinel, #373455)
 
1543
 
 
1544
* Plugins can now define their own annotation tie-breaker when two revisions
 
1545
  introduce the exact same line. See ``bzrlib.annotate._break_annotation_tie``
 
1546
  Be aware though that this is temporary, private (as indicated by the leading
 
1547
  '_') and a first step to address the problem. (Vincent Ladeuil, #348459)
 
1548
 
 
1549
* New command ``bzr dpush`` that can push changes to foreign 
 
1550
  branches (svn, git) without setting custom bzr-specific metadata.
 
1551
  (Jelmer Vernooij)
 
1552
 
 
1553
* ``bzr send`` will now check the ``child_submit_format`` setting in
 
1554
  the submit branch to determine what format to use, if none was 
 
1555
  specified on the command-line.  (Jelmer Vernooij)
 
1556
 
 
1557
Improvements
 
1558
************
 
1559
 
 
1560
* -Dhpss output now includes the number of VFS calls made to the remote
 
1561
  server. (Jonathan Lange)
 
1562
 
 
1563
* ``--coverage`` works for code running in threads too.
 
1564
  (Andrew Bennets, Vincent Ladeuil)
 
1565
 
 
1566
* ``bzr pull`` now has a ``--local`` option to only make changes to the
 
1567
  local branch, and not the bound master branch.
 
1568
  (Gary van der Merwe, #194716)
 
1569
 
 
1570
* ``bzr rm *`` is now as fast as ``bzr rm * --keep``. (Johan Walles, #180116)
 
1571
 
 
1572
Bug Fixes
 
1573
*********
 
1574
 
 
1575
* Adding now works properly when path contains a symbolic link.
 
1576
  (Geoff Bache, #183831)
 
1577
 
 
1578
* An error is now raised for unknown eol values. (Brian de Alwis, #358199)
 
1579
 
 
1580
* ``bzr merge --weave`` will now generate a conflict if one side deletes a
 
1581
  line, and the other side modifies the line. (John Arbash Meinel, #328171)
 
1582
 
 
1583
* ``bzr reconfigure --standalone`` no longer raises IncompatibleRepositories.
 
1584
  (Martin von Gagern, #248932)
 
1585
 
 
1586
* ``bzr send`` works to send emails again using MAPI.
 
1587
  (Neil Martinsen-Burrell, #346998)
 
1588
 
 
1589
* Check for missing parent inventories in StreamSink.  This prevents
 
1590
  incomplete stacked branches being created by 1.13 bzr:// and
 
1591
  bzr+ssh:// clients (which have bug #354036).  Instead, the server now
 
1592
  causes those clients to send the missing records.  (Andrew Bennetts)
 
1593
 
 
1594
* Correctly handle http servers proposing multiple authentication schemes.
 
1595
  (Vincent Ladeuil, #366107)
 
1596
 
 
1597
* End-Of-Line content filters are now loaded correctly.
 
1598
  (Ian Clatworthy, Brian de Alwis, #355280)
 
1599
 
 
1600
* Fix a bug in the pure-python ``GroupCompress`` code when handling copies
 
1601
  longer than 64KiB. (John Arbash Meinel, #364900)
 
1602
 
 
1603
* Fix TypeError in running ``bzr break-lock`` on some URLs.
 
1604
  (Alexander Belchenko, Martin Pool, #365891)
 
1605
 
 
1606
* Non-recursive ``bzr ls`` now works properly when a path is specified.
 
1607
  (Jelmer Vernooij, #357863)
 
1608
 
 
1609
* ssh usernames (defined in ~/.ssh/config) are honoured for bzr+ssh connections.
 
1610
  (Vincent Ladeuil, #367726)
 
1611
 
 
1612
* Several bugs related to unicode symlinks have been fixed and the test suite
 
1613
  enhanced to better catch regressions for them. (Vincent Ladeuil)
 
1614
 
 
1615
* The smart server will no longer raise 'NoSuchRevision' when streaming
 
1616
  content with a size mismatch in a reconstructed graph search: it assumes
 
1617
  that the client will make sure it is happy with what it got, and this
 
1618
  sort of mismatch is normal for stacked environments.
 
1619
  bzr 1.13.0/1 will stream from unstacked branches only - in that case not
 
1620
  getting all the content expected would be a bug. However the graph
 
1621
  search is how we figured out what we wanted, so a mismatch is both odd
 
1622
  and unrecoverable without starting over, and starting over will end up
 
1623
  with the same data as if we just permitted the mismatch. If data is
 
1624
  gc'd, doing a new search will find only the truncated data, so sending
 
1625
  only the truncated data seems reasonable. bzr versions newer than this
 
1626
  will stream from stacked branches and check the stream to find missing
 
1627
  content in the stacked-on branch, and thus will handle the situation
 
1628
  implicitly.  (Robert Collins, #360791)
 
1629
 
 
1630
* Upgrading to, or fetching into a 'rich-root' format will now correctly
 
1631
  set the root data the same way that reconcile does.
 
1632
  (Robert Collins, #368921)
 
1633
 
 
1634
* Using unicode Windows API to obtain command-line arguments.
 
1635
  (Alexander Belchenko, #375934)
 
1636
 
 
1637
Documentation
 
1638
*************
 
1639
 
 
1640
API Changes
 
1641
***********
 
1642
 
 
1643
* ``InterPackRepo.fetch`` and ``RepoFetcher`` now raise ``NoSuchRevision``
 
1644
  instead of ``InstallFailed`` when they detect a missing revision.
 
1645
  ``InstallFailed`` itself has been deleted. (Jonathan Lange)
 
1646
 
 
1647
* Not passing arguments to ``bzrlib.commands.main()`` will now grab the
 
1648
  arguments from ``osutils.get_unicode_argv()`` which has proper support
 
1649
  for unicode arguments on windows. Further, the supplied arguments are now 
 
1650
  required to be unicode strings, rather than user_encoded strings.
 
1651
  (Alexander Belchenko)
 
1652
 
 
1653
Internals
 
1654
*********
 
1655
 
 
1656
* ``bzrlib.branch.Branch.set_parent`` is now present on the base branch
 
1657
  class and will call ``_set_parent_location`` after doing unicode 
 
1658
  encoding. (Robert Collins)
 
1659
 
 
1660
* ``bzrlib.remote.RemoteBranch._set_parent_location`` will use a new verb
 
1661
  ``Branch.set_parent_location`` removing further VFS operations.
 
1662
  (Robert Collins)
 
1663
 
 
1664
* ``bzrlib.bzrdir.BzrDir._get_config`` now returns a ``TransportConfig``
 
1665
  or similar when the dir supports configuration settings. The base class
 
1666
  defaults to None. There is a matching new server verb
 
1667
  ``BzrDir.get-config_file`` to reduce roundtrips for getting BzrDir
 
1668
  configuration. (Robert Collins)
 
1669
 
 
1670
* ``bzrlib.tests.ExtendedTestResult`` has new methods ``startTests``
 
1671
  called before the first test is started, ``done`` called after the last
 
1672
  test completes, and a new parameter ``strict``. (Robert Collins)
 
1673
 
 
1674
* ``-Dhpss`` when passed to bzr will cause a backtrace to be printed when
 
1675
  VFS operations are started on a smart server repository. This should not
 
1676
  occur on regular push and pull operations, and is a key indicator for
 
1677
  performance regressions. (Robert Collins)
 
1678
 
 
1679
* ``-Dlock`` when passed to the selftest (e.g. ``bzr -Dlock selftest``) will
 
1680
  cause mismatched physical locks to cause test errors rather than just
 
1681
  reporting to the screen. (Robert Collins)
 
1682
 
 
1683
* -Dprogress will cause pdb to start up if a progress view jumps
 
1684
  backwards. (Robert Collins)
 
1685
 
 
1686
* Fallback ``CredentialStore`` instances registered with ``fallback=True``
 
1687
  are now be able to provide credentials if obtaining credentials 
 
1688
  via ~/.bazaar/authentication.conf fails. (Jelmer Vernooij, 
 
1689
  Vincent Ladeuil, #321918)
 
1690
 
 
1691
* New hook ``Lock.lock_broken`` which runs when a lock is
 
1692
  broken. This is mainly for testing that lock/unlock are
 
1693
  balanced in tests. (Vincent Ladeuil)
 
1694
 
 
1695
* New MergeDirective hook 'merge_request_body' allows hooks to supply or
 
1696
  alter a body for the message produced by ``bzr send``.
 
1697
 
 
1698
* New smart server verb ``BzrDir.initialize_ex`` which implements a
 
1699
  refactoring to the core of clone allowing less round trips on new
 
1700
  branches. (Robert Collins)
 
1701
 
 
1702
* New method ``Tags.rename_revisions`` that can rename revision ids tags
 
1703
  are pointing at. (Jelmer Vernooij)
 
1704
 
 
1705
* Updated the bundled ``ConfigObj`` library to 4.6.0 (Matt Nordhoff)
 
1706
 
 
1707
Testing
 
1708
*******
 
1709
 
 
1710
* ``bzr selftest`` will now fail if lock/unlock are not correctly balanced in
 
1711
  tests. Using ``-Dlock`` will turn the related failures into warnings.
 
1712
  (Vincent Ladeuil, Robert Collins)
 
1713
 
 
1714
bzr 1.14
 
1715
########
 
1716
:Codename: brisbane-core
 
1717
:1.14rc1: 2009-04-06
 
1718
:1.14rc2: 2009-04-19
 
1719
:1.14: 2009-04-28
 
1720
:1.14.1: 2009-05-01
 
1721
 
 
1722
New formats 1.14 and 1.14-rich-root supporting End-Of-Line (EOL) conversions,
 
1723
keyword templating (via the bzr-keywords plugin) and generic content filtering.
 
1724
End-of-line conversion is now supported for formats supporting content
 
1725
filtering.
 
1726
 
 
1727
Changes from 1.14final to 1.14.1
 
1728
********************************
 
1729
 
 
1730
* Change api_minimum_version back to api_minimum_version = (1, 13, 0)
 
1731
 
 
1732
Changes from 1.14rc2 to 1.14final
 
1733
*********************************
 
1734
 
 
1735
* Fix a bug in the pure-python ``GroupCompress`` code when handling copies
 
1736
  longer than 64KiB. (John Arbash Meinel, #364900)
 
1737
 
 
1738
Changes from 1.14rc1 to 1.14rc2
 
1739
*******************************
 
1740
 
 
1741
* Fix for bug 358037 Revision not in
 
1742
  bzrlib.groupcompress.GroupCompressVersionedFiles (Brian de Alwis, 
 
1743
  John A Meinel)
 
1744
 
 
1745
* Fix for bug 354036 ErrorFromSmartServer - AbsentContentFactory object has no
 
1746
  attribute 'get_bytes_as' exception while pulling from Launchpad 
 
1747
  (Jean-Francois Roy, Andrew Bennetts, Robert Collins)
 
1748
 
 
1749
* Fix for bug 355280 eol content filters are never loaded and thus never
 
1750
  applied (Brian de Alwis, Ian Clatworthy)
 
1751
 
 
1752
* bzr.dev -r4280  Change _fetch_uses_deltas = False for CHK repos until we can
 
1753
  write a better fix. (John Arbash Meinel, Robert Collins)
 
1754
 
 
1755
* Fix for bug 361574 uncommit recommends undefined --levels and -n options
 
1756
  (Marius Kruger, Ian Clatworthy)
 
1757
 
 
1758
* bzr.dev r4289 as cherrypicked at lp:~spiv/bzr/stacking-cherrypick-1.14 
 
1759
  (Andrew Bennetts, Robert Collins)
 
1760
 
 
1761
Compatibility Breaks
 
1762
********************
 
1763
 
 
1764
* A previously disabled code path to accelerate getting configuration
 
1765
  settings from a smart server has been reinstated. We think this *may*
 
1766
  cause a incompatibility with servers older than bzr 0.15. We intend
 
1767
  to issue a point release to address this if it turns out to be a
 
1768
  problem. (Robert Collins, Andrew Bennetts)
 
1769
 
 
1770
* bzr no longer autodetects nested trees as 'tree-references'.  They
 
1771
  must now be explicitly added tree references.  At the commandline, use
 
1772
  join --reference instead of add.  (Aaron Bentley)
 
1773
 
 
1774
* The ``--long`` log format (the default) no longer shows merged
 
1775
  revisions implicitly, making it consistent with the ``short`` and
 
1776
  ``line`` log formats.  To see merged revisions for just a given
 
1777
  revision, use ``bzr log -n0 -rX``. To see every merged revision,
 
1778
  use ``bzr log -n0``.  (Ian Clatworthy)
 
1779
 
 
1780
New Features
 
1781
************
 
1782
 
 
1783
* New formats ``1.14`` and ``1.14-rich-root`` supporting End-Of-Line
 
1784
  (EOL) conversions, keyword templating (via the bzr-keywords plugin)
 
1785
  and generic content filtering. These formats replace the experimental
 
1786
  ``development-wt5`` and ``development-wt5-rich-root`` formats
 
1787
  respectively, but have support for filtered views disabled.
 
1788
  (Ian Clatworthy)
 
1789
 
 
1790
* New ``mv --auto`` option recognizes renames after they occur.
 
1791
  (Aaron Bentley)
 
1792
 
 
1793
* ``bzr`` can now get passwords from stdin without requiring a controlling
 
1794
  terminal (i.e. by redirecting stdin). (Vincent Ladeuil)
 
1795
 
 
1796
* ``bzr log`` now supports filtering of multiple files and directories
 
1797
  and will show changes that touch any of them. Furthermore,
 
1798
  directory filtering now shows the changes to any children of that
 
1799
  directory, not just the directory object itself.
 
1800
  (Ian Clatworthy, #97715)
 
1801
 
 
1802
* ``bzr shelve`` can now apply changes without storing anything on the
 
1803
  shelf, via the new --destroy option.  (Aaron Bentley)
 
1804
 
 
1805
* ``bzr send`` now accepts --body to specify an initial message body.
 
1806
  (Aaron bentley)
 
1807
 
 
1808
* ``bzr xxx --usage`` where xxx is a command now shows a usage
 
1809
  message and the options without the descriptive help sections
 
1810
  (like Description and Examples). A message is also given
 
1811
  explaining how to see the complete help, i.e. ``bzr help xxx``.
 
1812
  (Ian Clatworthy)
 
1813
 
 
1814
* Content filters can now be used to provide custom conversion
 
1815
  between the canonical format of content (i.e. as stored) and
 
1816
  the convenience format of content (i.e. as created in working
 
1817
  trees). See ``bzr help content-filters`` for further details.
 
1818
  (Ian Clatworthy, Alexander Belchenko)
 
1819
 
 
1820
* End-of-line conversion is now supported for formats supporting
 
1821
  content filtering. See ``bzr help eol`` for details.
 
1822
  (Ian Clatworthy)
 
1823
 
 
1824
* Newly-blessed `join` command allows combining two trees into one.
 
1825
  (Aaron Bentley)
 
1826
 
 
1827
Improvements
 
1828
************
 
1829
 
 
1830
* A new format name alias ``default-rich-root`` has been added and
 
1831
  points at the closest relative of the default format that supports 
 
1832
  rich roots. (Jelmer Vernooij, #338061)
 
1833
 
 
1834
* Branching from a stacked branch using ``bzr*://`` will now stream
 
1835
  the data when the target repository does not need topological
 
1836
  ordering, reducing round trips and network overhead. This uses the
 
1837
  existing smart server methods added in 1.13, so will work on any
 
1838
  1.13 or newer server. (Robert Collins, Andrew Bennetts)
 
1839
 
 
1840
* ``bzr cat`` and ``bzr export`` now supports a ``--filters`` option
 
1841
  that displays/saves the content after content filters are applied.
 
1842
  (Ian Clatworthy)
 
1843
 
 
1844
* ``bzr ignore`` gives a more informative message when existing
 
1845
  version controlled files match the ignore pattern. (Neil
 
1846
  Martinsen-Burrell, #248895)
 
1847
 
 
1848
* ``bzr log`` now has ``--include-merges`` as an alias for ``--levels 0``.
 
1849
  (Ian Clatworthy)
 
1850
 
 
1851
* ``bzr send`` is faster on repositories with deep histories.
 
1852
  (Ian Clatworthy)
 
1853
 
 
1854
* IPv6 literals are accepted in URLs.
 
1855
  (stlman, Martin Pool, Jelmer Vernooij, #165014)
 
1856
 
 
1857
* Progress bars now show the rate of network activity for
 
1858
  ``bzr+ssh://`` and ``bzr://`` connections.  (Andrew Bennetts)
 
1859
 
 
1860
* Prompt for user names if they are not in the configuration. 
 
1861
  (Jelmer Vernooij, #256612)
 
1862
 
 
1863
* Pushing to a stacked pack-format branch on a 1.12 or older smart server
 
1864
  now takes many less round trips.  (Andrew Bennetts, Robert Collins,
 
1865
  #294479)
 
1866
  
 
1867
* Streaming push can be done to older repository formats.  This is
 
1868
  implemented using a new ``Repository.insert_stream_locked`` RPC.
 
1869
  (Andrew Bennetts, Robert Collins)
 
1870
 
 
1871
* The "ignoring files outside view: .." message has been re-worded
 
1872
  to "Ignoring files outside view. View is .." to reduce confusion
 
1873
  about what was being considered and what was being ignored.
 
1874
  (Ian Clatworthy)
 
1875
 
 
1876
* The ``long`` log formatter now shows [merge] indicators. If
 
1877
  only one level of revisions is displayed and merges are found,
 
1878
  the ``long`` and ``short`` log formatters now tell the user
 
1879
  how to see the hidden merged revisions.  (Ian Clatworthy)
 
1880
 
 
1881
* The ``brisbane-core`` project has delivered its beta format
 
1882
  ``development6-rich-root``. This format is suitable for judicious
 
1883
  testing by early adopters. In particular if you are benchmarking bzr
 
1884
  performance please be sure to test using this format. At this stage
 
1885
  more information is best obtained by contacting the Bazaar mailing list
 
1886
  or IRC channel if you are interested in using this format. We will make
 
1887
  end user documentation available closer to blessing the format as
 
1888
  production ready. (Robert Collins, John Arbash Meinel, Ian Clatworthy,
 
1889
  Vincent Ladeuil, Andrew Bennetts, Martin Pool)
 
1890
 
 
1891
* Tildes are no longer escaped. No more %7Euser/project/branch!
 
1892
  (Jonathan Lange)
 
1893
 
 
1894
Bug Fixes
 
1895
*********
 
1896
 
 
1897
* Pushing a new stacked branch will also push the parent inventories for
 
1898
  revisions at the stacking boundary.  This makes sure that the stacked
 
1899
  branch has enough data to calculate inventory deltas for all of its
 
1900
  revisions (without requiring the fallback branch).  This avoids
 
1901
  "'AbsentContentFactory' object has no attribute 'get_bytes_as'" errors
 
1902
  when fetching the stacked branch from a 1.13 (or later) smart server.
 
1903
  This partially fixes #354036.  (Andrew Bennetts, Robert Collins)
 
1904
 
 
1905
* End-Of-Line content filters are now loaded correctly.
 
1906
  (Ian Clatworthy, Brian de Alwis, #355280)
 
1907
 
 
1908
* Authentication plugins now receive all the parameters from the request
 
1909
  itself (aka host, port, realm, path, etc). Previously, only the 
 
1910
  authentication section name, username and encoded password were 
 
1911
  provided. (Jean-Francois Roy)
 
1912
 
 
1913
* bzr gives a better message if an invalid regexp is passed to ``bzr log
 
1914
  -m``.  (Anne Mohsen, Martin Pool)
 
1915
 
 
1916
* ``bzr split`` now says "See also: join" (Aaron Bentley, #335015)
 
1917
 
 
1918
* ``bzr version-info`` now works in empty branches. (Jelmer Vernooij,
 
1919
  #313028)
 
1920
 
 
1921
* Fix "is not a stackable format" error when pushing a
 
1922
  stackable-format branch with an unstackable-format repository to a
 
1923
  destination with a default stacking policy.  (Andrew Bennetts)
 
1924
 
 
1925
* Fixed incorrect "Source format does not support stacking" warning
 
1926
  when pushing to a smart server.  (Andrew Bennetts, #334114)
 
1927
 
 
1928
* Fix 'make check-dist-tarball' failure by converting paths to unicode when
 
1929
  needed. (Vincent Ladeuil, #355454)
 
1930
 
 
1931
* Fixed "Specified file 'x/y/z' is outside current view: " occurring
 
1932
  on ``bzr add x/y/z`` in formats supporting views when no view is
 
1933
  defined.  (Ian Clatworthy, #344708)
 
1934
 
 
1935
* It is no longer possible to fetch between repositories while the
 
1936
  target repository is in a write group. This prevents race conditions
 
1937
  that prevent the use of RPC's to perform fetch, and thus allows
 
1938
  optimising more operations. (Robert Collins, Andrew Bennetts)
 
1939
 
 
1940
* ``merge --force`` works again. (Robert Collins, #342105)
 
1941
 
 
1942
* No more warnings are issued about ``sha`` being deprecated under python-2.6.
 
1943
  (Vincent Ladeuil, #346593)
 
1944
 
 
1945
* Pushing a new branch to a server that has a stacking policy will now
 
1946
  upgrade from the local branch format when the stacking policy points at
 
1947
  a branch which is itself stackable, because we know the client can read
 
1948
  both branches, we know that the trunk for the project can be read too,
 
1949
  so the upgrade will not inconvenience users. (Robert Collins, #345169)
 
1950
 
 
1951
* Pushing a new stacked branch will also push the parent inventories for
 
1952
  revisions at the stacking boundary.  This makes sure that the stacked
 
1953
  branch has enough data to calculate inventory deltas for all of its
 
1954
  revisions (without requiring the fallback branch).  This avoids
 
1955
  "'AbsentContentFactory' object has no attribute 'get_bytes_as'" errors
 
1956
  when fetching the stacked branch from a 1.13 (or later) smart server.
 
1957
  This partially fixes #354036.  (Andrew Bennetts, Robert Collins)
 
1958
 
 
1959
* The full test suite is passing again on OSX. Several minor issues (mostly
 
1960
  test related) have been fixed. (Vincent Ladeuil, #355273).
 
1961
 
 
1962
* The GNU Changelog formatter is slightly improved in the case where
 
1963
  the delta is empty, and now correctly claims not to support tags.
 
1964
  (Andrea Bolognani)
 
1965
 
 
1966
* Shelve can now shelve changes to a symlink target.
 
1967
  (James Westby, #341558)
 
1968
 
 
1969
* The help for the ``info`` command has been corrected.
 
1970
  (Ian Clatworthy, #351931)
 
1971
 
 
1972
* Upgrade will now use a sensible default format if the source repository
 
1973
  uses rich roots.  (Jelmer Vernooij, #252908)
 
1974
 
 
1975
Documentation
 
1976
*************
 
1977
 
 
1978
* Expanded the index of the developer documentation. (Eric Siegerman)
 
1979
 
 
1980
* New topic `bzr help debug-flags`.  (Martin Pool)
 
1981
 
 
1982
* The generated manpage now explicitly lists aliases as commands.
 
1983
  (James Westby, #336998)
 
1984
 
 
1985
API Changes
 
1986
***********
 
1987
 
 
1988
* APIs deprecated in 1.6 and previous versions of bzr are now removed.
 
1989
  (Martin Pool)
 
1990
 
 
1991
* ``CommitReporter`` is no longer called with ``unchanged`` status during
 
1992
  commit - this was a full-tree overhead that bzr no longer performs.
 
1993
  (Robert Collins)
 
1994
 
 
1995
* New abstract ``UIFactory`` method ``get_username`` which will be called to 
 
1996
  obtain the username to use when connecting to remote machines. 
 
1997
  (Jelmer Vernooij)
 
1998
 
 
1999
* New API ``Inventory.filter()`` added that filters an inventory by
 
2000
  a set of file-ids so that only those fileids, their parents and
 
2001
  their children are included.  (Ian Clatworthy)
 
2002
 
 
2003
* New sort order for ``get_record_stream`` ``groupcompress`` which
 
2004
  sorts optimally for use with groupcompress compressors. (John Arbash
 
2005
  Meinel, Robert Collins)
 
2006
 
 
2007
* Repository APIs ``get_deltas_for_revisions()`` and
 
2008
  ``get_revision_delta()`` now support an optional ``specific_fileids``
 
2009
  parameter. If provided, the deltas are filtered so that only those
 
2010
  file-ids, their parents and their children are included.
 
2011
  (Ian Clatworthy)
 
2012
 
 
2013
* The ``get_credentials`` and ``set_credentials`` methods of 
 
2014
  ``AuthenticationConfig`` now accept an optional realm argument.
 
2015
  (Jean-Francois Roy)
 
2016
 
 
2017
* The ``pb`` argument to ``fetch()`` is deprecated.
 
2018
  (Martin Pool)
 
2019
 
 
2020
* The ``Serializer`` class and the serializer ``format registry`` have moved
 
2021
  from ``bzrlib.xml_serializer`` to ``bzrlib.serializer``. (Jelmer Vernooij)
 
2022
 
 
2023
* The smart server jail now hooks into BzrDir.open to prevent any BzrDir
 
2024
  that is not inside the backing transport from being opened.  See the
 
2025
  module documentation for ``bzrlib.smart.request`` for details.
 
2026
  (Andrew Bennetts, Robert Collins)
 
2027
 
 
2028
* ``Tree.get_symlink_target`` now always returns a unicode string result
 
2029
  or None. Previously it would return the bytes from reading the link
 
2030
  which could be in any arbitrary encoding. (Robert Collins)
 
2031
 
 
2032
Testing
 
2033
*******
 
2034
 
 
2035
* ``bzrlib.tests.TestCase`` now fails the test if its own ``setUp``
 
2036
  and ``tearDown`` weren't called.  This catches faulty tests that
 
2037
  forget to upcall when overriding ``setUp`` and ``tearDown``.  Those
 
2038
  faulty tests were not properly isolated.
 
2039
  (Andrew Bennetts, Robert Collins)
 
2040
 
 
2041
* Fix test_msgeditor.MsgEditorTest test isolation.
 
2042
  (Vincent Ladeuil, #347130)
 
2043
 
 
2044
* ``medusa`` is not used anymore as an FTP test server starting with
 
2045
  python2.6. A new FTP test server based on ``pyftplib`` can be used
 
2046
  instead. This new server is a soft dependency as medusa which is still
 
2047
  preferred if both are available (modulo python version).
 
2048
  (Vincent Ladeuil)
 
2049
 
 
2050
Internals
 
2051
*********
 
2052
 
 
2053
* Added ``chk_map`` for fast, trie-based storage of tuple to string maps.
 
2054
  (Robert Collins, John Arbash Meinel, Vincent Ladeuil)
 
2055
 
 
2056
* Added ``bzrlib.chk_map`` for fast, trie-based storage of tuple to string
 
2057
  maps.  (Robert Collins, John Arbash Meinel, Vincent Ladeuil)
 
2058
 
 
2059
* Added ``bzrlib.inventory_delta`` module.  This will be used for
 
2060
  serializing and deserializing inventory deltas for more efficient
 
2061
  streaming on the the network.  (Robert Collins, Andrew Bennetts)
 
2062
 
 
2063
* ``Branch._get_config`` has been added, which splits out access to the
 
2064
  specific config file from the branch. This is used to let RemoteBranch
 
2065
  avoid constructing real branch objects to access configuration settings.
 
2066
  (Robert Collins, Andrew Bennetts)
 
2067
 
 
2068
* ``Branch`` now implements ``set_stacked_on_url`` in the base class as
 
2069
  the implementation is generic and should impact foreign formats. This
 
2070
  helps performance for ``RemoteBranch`` push operations to new stacked
 
2071
  branches. (Robert Collins, Andrew Bennetts)
 
2072
 
 
2073
* ``BtreeIndex._spill_mem_keys_to_disk()`` now generates disk index with
 
2074
  optmizations turned off. This only has effect when processing > 100,000
 
2075
  keys during something like ``bzr pack``. (John Arbash Meinel)
 
2076
 
 
2077
* ``bzr selftest`` now accepts ``--subunit`` to run in subunit output
 
2078
  mode. Requires ``lp:subunit`` installed to work, but is not a hard
 
2079
  dependency. (Robert Collins)
 
2080
 
 
2081
* ``BzrDir.open_branch`` now takes an optional ``ignore_fallbacks``
 
2082
  parameter for controlling opening of stacked branches.
 
2083
  (Andrew Bennetts, Robert Collins)
 
2084
  
 
2085
* ``CommitBuilder`` has a new method, ``record_iter_changes`` which works
 
2086
  in terms of an iter_changes iterator rather than full tree scanning.
 
2087
  (Robert Collins)
 
2088
 
 
2089
* ``DirState`` can now be passed a custom ``SHA1Provider`` object
 
2090
  enabling it to store the SHA1 and stat of the canonical (post
 
2091
  content filtered) form. (Ian Clatworthy)
 
2092
 
 
2093
* New ``assertLength`` method based on one Martin has squirreled away
 
2094
  somewhere. (Robert Collins, Martin Pool)
 
2095
 
 
2096
* New hook ``BzrDir.pre_open`` which runs before opening ``BzrDir``
 
2097
  objects, allowing better enforcement of the smart server jail when
 
2098
  dealing with stacked branches. (Robert Collins, Andrew Bennetts)
 
2099
 
 
2100
* New hook ``RioVersionInfoBuilder.revision``, allowing extra entries 
 
2101
  to be added to the stanza that is printed for a particular revision.
 
2102
  (Jelmer Vernooij)
 
2103
 
 
2104
* New repository method ``refresh_data`` to cause any repository to
 
2105
  make visible data inserted into the repository by a smart server
 
2106
  fetch operation. (Robert Collins, Andrew Bennetts)
 
2107
 
 
2108
* ``register_filter_stack_map`` now takes an optional fallback parameter,
 
2109
  a callable to invoke if a preference has a value not in the map
 
2110
  of filter stacks. This enhancement allows, for example,  bzr-svn to
 
2111
  handle existing svn properties that define a list of keywords to be
 
2112
  expanded.  (Ian Clatworthy)
 
2113
 
 
2114
* ``RemoteBranchConfig`` will use a new verb ``Branch.set_config_option``
 
2115
  to write config settings to smart servers that support this, saving
 
2116
  5 round trips on the stacked streaming acceptance test.
 
2117
  (Robert Collins, Andrew Bennetts)
 
2118
 
 
2119
* ``RemoteBranch`` now provides ``_get_config`` for access to just the
 
2120
  branch specific configuration from a remote server, which uses the 
 
2121
  already existing ``Branch.get_config_file`` smart verb.
 
2122
  (Robert Collins, Andrew Bennetts)
 
2123
 
 
2124
* ``RemoteRepository`` will now negatively cache missing revisions during
 
2125
  ``get_parent_map`` while read-locked. Write-locks are unaffected.
 
2126
  (Robert Collins, Andrew Bennetts)
 
2127
 
 
2128
* Removed ``InterRemoteToOther``, ``InterOtherToRemote`` and
 
2129
  ``InterPackToRemotePack`` classes, as they are now unnecessary.
 
2130
  (Andrew Bennetts)
 
2131
 
 
2132
* ``RepositoryFormat`` as a new attribute ``fast_deltas`` to indicate
 
2133
  whether the repository can efficiently generate deltas between trees
 
2134
  regardless of tree size. (Robert Collins)
 
2135
 
 
2136
* ``Repository.iter_files_bytes()`` now properly returns an "iterable of
 
2137
  byte strings" (aka 'chunked') for the content. It previously was
 
2138
  returning a plain string, which worked, but performed very poorly when
 
2139
  building a working tree (file.writelines(str) is very inefficient). This
 
2140
  can have a large effect on ``bzr checkout`` times. (John Arbash Meinel)
 
2141
 
 
2142
* selftest now supports a --parallel option, with values of 'fork' or
 
2143
  'subprocess' to run the test suite in parallel. Currently only linux
 
2144
  machine work, other platforms need patches submitted. (Robert Collins,
 
2145
  Vincent Ladeuil)
 
2146
 
 
2147
* ``tests.run_suite`` has a new parameter ``suite_decorators``, a list of 
 
2148
  callables to use to decorate the test suite. Such decorators can add or
 
2149
  remove tests, or even remote the test suite to another machine if
 
2150
  desired. (Robert Collins)
 
2151
 
 
2152
* The smart server verb ``Repository.get_parent_map`` can now include
 
2153
  information about ghosts when the special revision ``include-missing:``
 
2154
  is in the requested parents map list. With this flag, ghosts are
 
2155
  included as ``missing:REVISION_ID``. (Robert Collins, Andrew Bennetts)
 
2156
 
 
2157
* ``_walk_to_common_revisions`` will now batch up at least 50
 
2158
  revisions before calling ``get_parent_map`` on the target,
 
2159
  regardless of ``InterRepository``.
 
2160
  (Andrew Bennetts, Robert Collins)
 
2161
 
 
2162
bzr 1.13
 
2163
########
 
2164
 
 
2165
:Codename: paraskavedekatriaphobia
 
2166
:1.13: 2009-03-14
 
2167
:1.13rc1: 2009-03-10
 
2168
:1.13.1: 2009-03-23
 
2169
:1.13.2: 2009-04-27
 
2170
 
 
2171
GNU Changelog output can now be produced by ``bzr log --gnu-changelog``.  Debug
 
2172
flags can now be set in ``~/.bazaar/bazaar.conf``.  Lightweight checkouts and
 
2173
stacked branches should both be much faster over remote connections.  
 
2174
 
 
2175
Changes From 1.13.1 to 1.13.2
 
2176
*****************************
 
2177
 
 
2178
A regression was found in the 1.13.1 release. When bzr 1.13.1 and earlier push
 
2179
a stacked branch they do not take care to push all the parent inventories for
 
2180
the transferred revisions. This means that a smart server serving that branch
 
2181
often cannot calculate inventory deltas for the branch (because smart server
 
2182
does not/cannot open fallback repositories). Prior to 1.13 the server did not
 
2183
have a verb to stream revisions out of a repository, so that's why this bug has
 
2184
appeared now.
 
2185
 
 
2186
Bug Fixes
 
2187
*********
 
2188
 
 
2189
* Fix for bug 354036 ErrorFromSmartServer - AbsentContentFactory object has no
 
2190
  attribute 'get_bytes_as' exception while pulling from Launchpad 
 
2191
  (Jean-Francois Roy, Andrew Bennetts, Robert Collins)
 
2192
 
 
2193
Changes From 1.13final to 1.13.1
 
2194
********************************
 
2195
 
 
2196
A couple regessions where found in the 1.13 release. The pyrex-generated C
 
2197
extensions are missing from the .tar.gz and .zip files.  Documentation on how
 
2198
to generate GNU ChangeLogs is wrong.
 
2199
 
 
2200
Bug Fixes
 
2201
*********
 
2202
 
 
2203
* Change ``./bzr``'s ``_script_version`` to match ./bzrlib/__init__.py
 
2204
  version_info. (Bob Tanner, Martin Pool, #345232)
 
2205
 
 
2206
* Distribution archives for 1.13 do not contain generated C extension modules
 
2207
  (Jean-Francois Roy, Bob Tanner, #344465)
 
2208
 
 
2209
* GNU ChangeLog output can now be produced by bzr log --format gnu-changelog is
 
2210
  incorrect (Deejay, Bob Tanner, Martin Pool, Robert Collins, #343928)
 
2211
 
 
2212
* ``merge --force`` works again. (Robert Collins, #342105)
 
2213
 
 
2214
Changes From 1.13rc1 to 1.13final
 
2215
*********************************
 
2216
 
 
2217
* Fix "is not a stackable format" error when pushing a
 
2218
  stackable-format branch with an unstackable-format repository to a
 
2219
  destination with a default stacking policy.  (Andrew Bennetts)
 
2220
 
 
2221
* Progress bars now show the rate of network activity for
 
2222
  ``bzr+ssh://`` and ``bzr://`` connections.  (Andrew Bennetts)
 
2223
 
 
2224
Compatibility Breaks
 
2225
********************
 
2226
 
 
2227
* ``bzr log --line`` now indicates which revisions are merges with
 
2228
  `[merge]` after the date.  Scripts which parse the output of this
 
2229
  command may need to be adjusted.
 
2230
  (Neil Martinsen-Burrell)
 
2231
 
 
2232
New Features
 
2233
************
 
2234
 
 
2235
* ``bzr reconfigure`` now supports --with-trees and --with-no-trees
 
2236
  options to change the default tree-creation policy of shared
 
2237
  repositories.  (Matthew Fuller, Marius Kruger, #145033)
 
2238
 
 
2239
* Debug flags can now be set in ``~/.bazaar/bazaar.conf``.
 
2240
  (Martin Pool)
 
2241
 
 
2242
* Filtered views provide a mask over the tree so that users can focus
 
2243
  on a subset of a tree when doing their work. See ``Filtered views``
 
2244
  in chapter 7 of the User Guide and ``bzr help view`` for details.
 
2245
  (Ian Clatworthy)
 
2246
 
 
2247
* GNU Changelog output can now be produced by ``bzr log --gnu-changelog``.
 
2248
  (Andrea Bolognani, Martin Pool)
 
2249
 
 
2250
* The ``-Dmemory`` flag now gives memory information on Windows.
 
2251
  (John Arbash Meinel)
 
2252
 
 
2253
* Multiple authors for a commit can now be recorded by using the "--author"
 
2254
  option multiple times. (James Westby, #185772)
 
2255
 
 
2256
* New clean-tree command, from bzrtools.  (Aaron Bentley, Jelmer Vernoij)
 
2257
 
 
2258
* New command ``bzr launchpad-open`` opens a Launchpad web page for that
 
2259
  branch in your web browser, as long as the branch is on Launchpad at all.
 
2260
  (Jonathan Lange)
 
2261
 
 
2262
* New API for getting bugs fixed by a revision: Revision.iter_bugs().
 
2263
  (Jonathan Lange)
 
2264
 
 
2265
Improvements
 
2266
************
 
2267
 
 
2268
* All bzr ``Hooks`` classes are now registered in
 
2269
  ``bzrlib.hooks.known_hooks``. This removes the separate list from
 
2270
  ``bzrlib.tests`` and ensures that all hooks registered there are
 
2271
  correctly isolated by the test suite (previously
 
2272
  ``MutableTreeHooks`` were not being isolated correctly). Further, 
 
2273
  documentation for hooks is now dynamically generated from the
 
2274
  present HookPoints. ``bzr hooks`` will now also report on all the
 
2275
  hooks present in the ``bzrlib.hooks.known_hooks`` registry.
 
2276
  (Robert Collins)
 
2277
 
 
2278
* ``bzr add`` no longer prints ``add completed`` on success. Failure
 
2279
  still prints an error message. (Robert Collins)
 
2280
 
 
2281
* ``bzr branch`` now has a ``--no-tree`` option which turns off the
 
2282
  generation of a working tree in the new branch.
 
2283
  (Daniel Watkins, John Klinger, #273993)
 
2284
 
 
2285
* Bazaar will now point out ``bzr+ssh://`` to the user when they 
 
2286
  use ssh://. (Jelmer Vernooij, #330535)
 
2287
 
 
2288
* ``bzr -v info`` now omits the number of committers branch statistic,
 
2289
  making it many times faster for large projects. To include that
 
2290
  statistic in the output, use ``bzr -vv info``.
 
2291
  (Ian Clatworthy)
 
2292
 
 
2293
* ``bzr push`` to a ``bzr`` url (``bzr://``, ``bzr+ssh://`` etc) will
 
2294
  stream if the server is version 1.13 or greater, reducing roundtrips
 
2295
  significantly. (Andrew Bennetts, Robert Collins)
 
2296
 
 
2297
* Lightweight Checkouts and Stacked Branches should both be much
 
2298
  faster over remote connections. Building the working tree now
 
2299
  batches up requests into approx 5MB requests, rather than a separate
 
2300
  request for each file. (John Arbash Meinel)
 
2301
 
 
2302
* Support for GSSAPI authentication when using HTTP or HTTPS. 
 
2303
  (Jelmer Vernooij)
 
2304
 
 
2305
* The ``bzr shelve`` prompt now includes a '?' help option to explain the
 
2306
  short options better. (Daniel Watkins, #327429)
 
2307
 
 
2308
* ``bzr lp-open`` now falls back to the push location if it cannot find a
 
2309
  public location. (Jonathan Lange, #332372)
 
2310
 
 
2311
* ``bzr lp-open`` will try to find the Launchpad URL for the location
 
2312
  passed on the command line. This makes ``bzr lp-open lp:foo`` work as
 
2313
  expected. (Jonathan Lange, #332705)
 
2314
 
 
2315
* ``bzr send`` now supports MH-E via ``emacsclient``. (Eric Gillespie)
 
2316
 
 
2317
Bug Fixes
 
2318
*********
 
2319
 
 
2320
* Allows ``bzr log <FILE>`` to be called in an empty branch without
 
2321
  backtracing. (Vincent Ladeuil, #346431)
 
2322
 
 
2323
* Bazaar now gives a better message including the filename if it's
 
2324
  unable to read a file in the working directory, for example because
 
2325
  of a permission error.  (Martin Pool, #338653)
 
2326
 
 
2327
* ``bzr cat -r<old> <path>`` doesn't traceback anymore when <path> has a
 
2328
  file id in the working tree different from the one in revision <old>.
 
2329
  (Vincent Ladeuil, #341517, #253806)
 
2330
 
 
2331
* ``bzr send`` help is more specific about how to apply merge
 
2332
  directives.  (Neil Martinsen-Burrell, #253470)
 
2333
 
 
2334
* ``bzr missing`` now uses ``Repository.get_revision_delta()`` rather
 
2335
  than fetching trees and determining a delta itself. (Jelmer
 
2336
  Vernooij, #315048)
 
2337
 
 
2338
* ``bzr push`` to a smart server no longer causes "Revision
 
2339
  {set([('null:',)])} not present ..." errors when the branch has
 
2340
  multiple root revisions. (Andrew Bennetts, #317654)
 
2341
 
 
2342
* ``bzr shelve`` now properly handle patches with no terminating newline.
 
2343
  (Benoît PIERRE, #303569)
 
2344
 
 
2345
* ``bzr unshelve`` gives a more palatable error if passed a non-integer
 
2346
  shelf id. (Daniel Watkins)
 
2347
 
 
2348
* Export now handles files that are not present in the tree.
 
2349
  (James Westby, #174539)
 
2350
 
 
2351
* Fixed incorrect "Source format does not support stacking" warning
 
2352
  when pushing to a smart server.  (Andrew Bennetts, #334114)
 
2353
  
 
2354
* Fixed "sprout() got an unexpected keyword argument 'source_branch'"
 
2355
  error branching from old repositories.
 
2356
  (Martin Pool, #321695)
 
2357
 
 
2358
* Make ``bzr push --quiet <non-local location>`` less chatty.
 
2359
  (Kent Gibson, #221461)
 
2360
 
 
2361
* Many Branch hooks would not fire with ``bzr://`` and ``bzr+ssh://``
 
2362
  branches, and this was not noticed due to a bug in the test logic
 
2363
  for branches. This is now fixed and a test added to prevent it
 
2364
  reoccuring. (Robert Collins, Andrew Bennetts)
 
2365
 
 
2366
* Restore the progress bar on Windows. We were disabling it when TERM
 
2367
  wasn't set, but Windows doesn't set TERM. (Alexander Belchenko,
 
2368
  #334808)
 
2369
 
 
2370
* ``setup.py build_ext`` now gives a proper error when an extension
 
2371
  fails to build. (John Arbash Meinel)
 
2372
 
 
2373
* Symlinks to non ascii file names are now supported.
 
2374
  (Robert Collins, Vincent Ladeuil, #339055, #272444)    
 
2375
 
 
2376
* Under rare circumstances (aka nobody reported a bug about it), the ftp
 
2377
  transport could revert to ascii mode. It now stays in binary mode except
 
2378
  when needed.  (Vincent Ladeuil)
 
2379
 
 
2380
* Unshelve does not generate warnings about progress bars.
 
2381
  (Aaron Bentley, #328148)
 
2382
 
 
2383
* shelve cleans up properly when unversioned files are specified.
 
2384
  (Benoît Pierre, Aaron Bentley)
 
2385
 
 
2386
Documentation
 
2387
*************
 
2388
 
 
2389
* Added ``Organizing your workspace`` to the User Guide appendices,
 
2390
  summarizing some common ways of organizing trees, branches and
 
2391
  repositories and the processes/workflows implied/enabled by each.
 
2392
  (Ian Clatworthy)
 
2393
 
 
2394
* Hooks can now be self documenting. ``bzrlib.hooks.Hooks.create_hook``
 
2395
  is the entry point for this feature. (Robert Collins)
 
2396
 
 
2397
* The documentation for ``shelve`` and ``unshelve`` has been clarified.
 
2398
  (Daniel Watkins, #327421, #327425)
 
2399
 
 
2400
API Changes
 
2401
***********
 
2402
 
 
2403
* ``bzr selftest`` now fails if the bazaar sources contain trailing
 
2404
  whitespace, non-unix style line endings and files not ending in a
 
2405
  newline. About 372 files and 3243 lines with trailing whitespace was
 
2406
  updated to comply with this. The code already complied with the other
 
2407
  criteria, but now it is enforced. (Marius Kruger)
 
2408
 
 
2409
* ``bzrlib.branch.PushResult`` was renamed to 
 
2410
  ``bzrlib.branch.BranchPushResult``. (Jelmer Vernooij)
 
2411
 
 
2412
* ``Branch.fetch`` and ``Repository.fetch`` now return None rather
 
2413
  than a count of copied revisions and failed revisions. A while back
 
2414
  we stopped ever reporting failed revisions because we started
 
2415
  erroring instead, and the copied revisions count is not used in the
 
2416
  UI at all - indeed it only reflects the repository status not
 
2417
  changes to the branch itself. (Robert Collins)
 
2418
 
 
2419
* ``Inventory.apply_delta`` now raises an AssertionError if a file-id
 
2420
  appears multiple times within the delta. (Ian Clatworthy)
 
2421
 
 
2422
* MutableTree.commit now favours the "authors" argument, with the old
 
2423
  "author" argument being deprecated.
 
2424
 
 
2425
* Remove deprecated EmptyTree.  (Martin Pool)
 
2426
 
 
2427
* ``Repository.fetch`` now accepts an optional ``fetch_spec``
 
2428
  parameter.  A ``SearchResult`` or ``MiniSearchResult`` may be passed
 
2429
  to ``fetch_spec`` instead of a ``last_revision`` to specify exactly
 
2430
  which revisions to fetch. (Andrew Bennetts)
 
2431
 
 
2432
* ``RepositoryAcquisitionPolicy.acquire_repository`` now returns a
 
2433
  tuple of ``(repository, is_new_flag)``, rather than just the
 
2434
  repository.  (Andrew Bennetts)
 
2435
 
 
2436
* Revision.get_apparent_author() is now deprecated, replaced by
 
2437
  Revision.get_apparent_authors(), which returns a list. The former
 
2438
  now returns the first item that would be returned from the second.
 
2439
 
 
2440
* The ``BranchBuilder`` test helper now accepts a ``timestamp``
 
2441
  parameter to ``build_commit`` and ``build_snapshot``.  (Martin Pool)
 
2442
 
 
2443
* The ``_fetch_*`` attributes on ``Repository`` are now on
 
2444
  ``RepositoryFormat``, more accurately reflecting their intent (they
 
2445
  describe a disk format capability, not state of a particular
 
2446
  repository of that format). (Robert Collins)
 
2447
 
 
2448
Internals
 
2449
*********
 
2450
 
 
2451
* Branching from a non-stacked branch on a smart protocol is now
 
2452
  free of virtual file system methods.
 
2453
  (Robert Collins, Andrew Bennetts)
 
2454
 
 
2455
* Branch and Repository creation on a bzr+ssh://server are now done
 
2456
  via RPC calls rather than VFS calls, reducing round trips for
 
2457
  pushing new branches substantially. (Robert Collins)
 
2458
 
 
2459
* ``Branch.clone`` now takes the ``repository_policy`` formerly used
 
2460
  inside ``BzrDir.clone_on_transport``, allowing stacking to be
 
2461
  configured before the branch tags and revision tip are set. This
 
2462
  fixes a race condition cloning stacked branches that would cause
 
2463
  plugins to have hooks called on non-stacked instances.
 
2464
  (Robert Collins, #334187)
 
2465
 
 
2466
* ``BzrDir.cloning_metadir`` now has a RPC call. (Robert Collins)
 
2467
 
 
2468
* ``BzrDirFormat.__str__`` now uses the human readable description
 
2469
  rather than the sometimes-absent disk label. (Robert Collins)
 
2470
 
 
2471
* ``bzrlib.fetch`` is now composed of a sender and a sink component
 
2472
  allowing for decoupling over a network connection. Fetching from
 
2473
  or into a RemoteRepository with a 1.13 server will use this to
 
2474
  stream the operation.
 
2475
  (Andrew Bennetts, Robert Collins)
 
2476
 
 
2477
* ``bzrlib.tests.run_suite`` accepts a runner_class parameter
 
2478
  supporting the use of different runners. (Robert Collins)
 
2479
 
 
2480
* Change how file_ids and revision_ids are interned as part of
 
2481
  inventory deserialization. Now we use the real ``intern()``, rather
 
2482
  than our own workaround that would also cache a Unicode copy of the
 
2483
  string, and never emptied the cache. This should slightly reduce
 
2484
  memory consumption. (John Arbash Meinel)
 
2485
 
 
2486
* New branch method ``create_clone_on_transport`` that returns a
 
2487
  branch object. (Robert Collins)
 
2488
 
 
2489
* New hook Commands['extend_command'] to allow plugins to access a
 
2490
  command object before the command is run (or help generated from
 
2491
  it), without overriding the command. (Robert Collins)
 
2492
 
 
2493
* New version of the ``BzrDir.find_repository`` verb supporting
 
2494
  ``_network_name`` to support removing more _ensure_real calls.
 
2495
  (Robert Collins)
 
2496
 
 
2497
* ``RemoteBranchFormat`` no longer claims to have a disk format string.
 
2498
  (Robert Collins)
 
2499
 
 
2500
* ``Repository`` objects now have ``suspend_write_group`` and
 
2501
  ``resume_write_group`` methods.  These are currently only useful
 
2502
  with pack repositories. (Andrew Bennetts, Robert Collins)
 
2503
 
 
2504
* ``BzrDirFormat``, ``BranchFormat`` and ``RepositoryFormat`` objects
 
2505
  now have a ``network_name`` for passing the format across RPC calls.
 
2506
  (Robert Collins, Andrew Bennetts)
 
2507
 
 
2508
* ``RepositoryFormat`` objects now all have a new attribute
 
2509
  ``_serializer`` used by fetch when reserialising is required.
 
2510
  (Robert Collins, Andrew Bennetts)
 
2511
 
 
2512
* Some methods have been pulled up from ``BzrBranch`` to ``Branch``
 
2513
  to aid branch types that are not bzr branch objects (like
 
2514
  RemoteBranch). (Robert Collins, Andrew Bennetts)
 
2515
 
 
2516
* Test adaptation has been made consistent throughout the built in
 
2517
  tests. ``TestScenarioApplier``, ``multiply_tests_from_modules``,
 
2518
  ``adapt_tests``, ``adapt_modules`` have all been deleted. Please
 
2519
  use ``multiply_tests``, or for lower level needs ``apply_scenarios``
 
2520
  and ``apply_scenario``. (Robert Collins)
 
2521
 
 
2522
* ``TestSkipped`` is now detected by TestCase and passed to the
 
2523
  ``TestResult`` by calling ``addSkip``. For older TestResult objects,
 
2524
  where ``addSkip`` is not available, ``addError`` is still called.
 
2525
  This permits test filtering in subunit to strip out skipped tests
 
2526
  resulting in a faster fix-shrink-list-run cycle. This is compatible
 
2527
  with the testtools protocol for skips. (Robert Collins)
 
2528
 
 
2529
* The ``_index`` of ``KnitVersionedFiles`` now supports the ability
 
2530
  to scan an underlying index that is going to be incorporated into
 
2531
  the ``KnitVersionedFiles`` object, to determine if it has missing
 
2532
  delta references. The method is ``scan_unvalidated_index``.
 
2533
  (Andrew Bennetts, Robert Collins)
 
2534
 
 
2535
* There is a RemoteSink object which handles pushing to smart servers.
 
2536
  (Andrew Bennetts, Robert Collins)
 
2537
 
 
2538
* ``TransportTraceDecorator`` now logs ``put_bytes_non_atomic`` and
 
2539
  ``rmdir`` calls. (Robert Collins)
 
2540
 
 
2541
* ``VersionedFiles`` record adapters have had their signature change
 
2542
  from ``(record, record.get_bytes_as(record.storage_kind))`` to
 
2543
  ``(record)`` reducing excess duplication and allowing adapters
 
2544
  to access private data in record to obtain content more
 
2545
  efficiently. (Robert Collins)
 
2546
 
 
2547
* We no longer probe to see if we should create a working tree during
 
2548
  clone if we cannot get a local_abspath for the new bzrdir.
 
2549
  (Robert Collins)
 
2550
 
 
2551
 
 
2552
bzr 1.12
 
2553
########
 
2554
 
 
2555
:Codename: 1234567890
 
2556
:1.12: 2009-02-13
 
2557
:1.12rc1: 2009-02-10
 
2558
 
 
2559
This release of Bazaar contains many improvements to the speed,
 
2560
documentation and functionality of ``bzr log`` and the display of logged
 
2561
revisions by ``bzr status``.  bzr now also gives a better indication of
 
2562
progress, both in the way operations are drawn onto a text terminal, and
 
2563
by showing the rate of network IO.
 
2564
 
 
2565
Changes from RC1 to Final
 
2566
*************************
 
2567
 
 
2568
* ``bzr init --development-wt5[-rich-root]`` would fail because of
 
2569
  circular import errors. (John Arbash Meinel, #328135)
 
2570
 
 
2571
* Expanded the help for log and added a new help topic called
 
2572
  ``log-formats``.  (Ian Clatworthy)
 
2573
 
 
2574
Compatibility Breaks
 
2575
********************
 
2576
 
 
2577
* By default, ``bzr status`` after a merge now shows just the pending
 
2578
  merge tip revisions. This improves the signal-to-noise ratio after
 
2579
  merging from trunk and completes much faster. To see all merged
 
2580
  revisions, use the new ``-v`` flag.  (Ian Clatworthy)
 
2581
 
 
2582
* ``bzr log --line`` now shows any tags after the date and before
 
2583
  the commit message. If you have scripts which parse the output
 
2584
  from this command, you may need to adjust them accordingly.
 
2585
  (Ian Clatworthy)
 
2586
 
 
2587
* ``bzr log --short`` now shows any additional revision properties
 
2588
  after the date and before the commit message.  Scripts that parse 
 
2589
  output of the log command in this situation may need to adjust.
 
2590
  (Neil Martinsen-Burrell)
 
2591
 
 
2592
* The experimental formats ``1.12-preview`` and ``1.12-preview-rich-root``
 
2593
  have been renamed ``development-wt5`` and ``development-wt5-rich-root``
 
2594
  respectively, given they are not ready for release in 1.12.
 
2595
  (Ian Clatworthy)
 
2596
 
 
2597
* ``read_bundle_from_url`` has been deprecated. (Vincent Ladeuil)
 
2598
 
 
2599
New Features
 
2600
************
 
2601
 
 
2602
* Add support for filtering ``bzr missing`` on revisions.  Remote revisions
 
2603
  can be filtered using ``bzr missing -r -20..-10`` and local revisions can
 
2604
  be filtered using ``bzr missing --my-revision -20..-10``.
 
2605
  (Marius Kruger)
 
2606
 
 
2607
* ``bzr log -p`` displays the patch diff for each revision.
 
2608
  When logging a file, the diff only includes changes to that file.
 
2609
  (Ian Clatworthy, #202331, #227335)
 
2610
 
 
2611
* ``bzr log`` supports a new option called ``-n N`` or ``--level N``.
 
2612
  A value of 0 (zero) means "show all nested merge revisions" while
 
2613
  a value of 1 (one) means "show just the top level". Values above
 
2614
  1 can be used to see a limited amount of nesting. That can be
 
2615
  useful for seeing the level or two below PQM submits for example.
 
2616
  To force the ``--short`` and ``--line`` formats to display all nested
 
2617
  merge revisions just like ``--long`` does by default, use a command
 
2618
  like ``bzr log --short -n0``. To display just the mainline using
 
2619
  ``--long`` format, ``bzr log --long -n1``.
 
2620
  (Ian Clatworthy)
 
2621
 
 
2622
Improvements
 
2623
************
 
2624
 
 
2625
* ``bzr add`` more clearly communicates success vs failure.
 
2626
  (Daniel Watkins)
 
2627
 
 
2628
* ``bzr init`` will now print a little less verbose output.
 
2629
  (Marius Kruger)
 
2630
 
 
2631
* ``bzr log`` is now much faster in many use cases, particularly
 
2632
  at incrementally displaying results and filtering by a
 
2633
  revision range. (Ian Clatworthy)
 
2634
 
 
2635
* ``bzr log --short`` and ``bzr log --line`` now show tags, if any,
 
2636
  for each revision. The tags are shown comma-separated inside
 
2637
  ``{}``. For short format, the tags appear at the end of line
 
2638
  before the optional ``[merge]`` indicator. For line format,
 
2639
  the tags appear after the date. (Ian Clatworthy)
 
2640
 
 
2641
* Progress bars now show the rate of activity for some sftp 
 
2642
  operations, and they are drawn different.  (Martin Pool, #172741)
 
2643
 
 
2644
* Progress bars now show the rate of activity for urllib and pycurl based
 
2645
  http client implementations. The operations are tracked at the socket
 
2646
  level for better precision.
 
2647
  (Vincent Ladeuil)
 
2648
 
 
2649
* Rule-based preferences can now accept multiple patterns for a set of
 
2650
  rules.  (Marius Kruger)
 
2651
 
 
2652
* The ``ancestor:`` revision spec will now default to referring to the
 
2653
  parent of the branch if no other location is given.
 
2654
  (Daniel Watkins, #198417)
 
2655
 
 
2656
* The debugger started as a result of setting ``$BZR_PDB`` works
 
2657
  around a bug in ``pdb``, http://bugs.python.org/issue4150.  The bug
 
2658
  can cause truncated tracebacks in Python versions before 2.6.
 
2659
  (Andrew Bennetts)
 
2660
 
 
2661
* VirtualVersionedFiles now implements
 
2662
  ``iter_lines_added_or_present_in_keys``. This allows the creation of 
 
2663
  new branches based on stacked bzr-svn branches. (#311997)
 
2664
 
 
2665
Bug Fixes
 
2666
*********
 
2667
 
 
2668
* ``bzr annotate --show-ids`` doesn't give a backtrace on empty files
 
2669
  anymore.
 
2670
  (Anne Mohsen, Vincent Ladeuil, #314525)
 
2671
 
 
2672
* ``bzr log FILE`` now correctly shows mainline revisions merging
 
2673
  a change to FILE when the ``--short`` and ``--line`` log formats
 
2674
  are used. (Ian Clatworthy, #317417)
 
2675
 
 
2676
* ``bzr log -rX..Y FILE`` now shows the history of FILE provided
 
2677
  it existed in Y or X, even if the file has since been deleted or
 
2678
  renamed. If no range is given, the current/basis tree and
 
2679
  initial tree are searched in that order. More generally, log
 
2680
  now interprets filenames in their historical context.
 
2681
  (Ian Clatworthy, #175520)
 
2682
 
 
2683
* ``bzr status`` now reports nonexistent files and continues, then
 
2684
  errors (with code 3) at the end.  (Karl Fogel, #306394)
 
2685
 
 
2686
* Don't require the present compression base in knits to be the same
 
2687
  when adding records in knits. (Jelmer Vernooij, #307394)
 
2688
 
 
2689
* Fix a problem with CIFS client/server lag on Windows colliding with
 
2690
  an invariant-per-process algorithm for generating AtomicFile names
 
2691
  (Adrian Wilkins, #304023)
 
2692
 
 
2693
* Many socket operations now handle EINTR by retrying the operation.
 
2694
  Previously EINTR was treated as an unrecoverable failure.  There is
 
2695
  a new ``until_no_eintr`` helper function in ``bzrlib.osutils``.
 
2696
  (Andrew Bennetts)
 
2697
 
 
2698
* Support symlinks with non-ascii characters in the symlink filename.
 
2699
  (Jelmer Vernooij, #319323)
 
2700
 
 
2701
* There was a bug in how we handled resolving when a file is deleted
 
2702
  in one branch, and modified in the other. If there was a criss-cross
 
2703
  merge, we would cause the deletion to conflict a second time.
 
2704
  (Vincent Ladeuil, John Arbash Meinel)
 
2705
 
 
2706
* There was another bug in how we chose the correct intermediate LCA in
 
2707
  criss-cross merges leading to several kind of changes be incorrectly
 
2708
  handled.
 
2709
  (John Arbash Meinel, Vincent Ladeuil)
 
2710
 
 
2711
* Unshelve now handles deleted paths without crashing. (Robert Collins)
 
2712
 
 
2713
Documentation
 
2714
*************
 
2715
 
 
2716
* Improved plugin developer documentation.  (Martin Pool)
 
2717
 
 
2718
API Changes
 
2719
***********
 
2720
 
 
2721
* ``ProgressBarStack`` is deprecated; instead use
 
2722
  ``ui_factory.nested_progress_bar`` to create new progress bars.
 
2723
  (Martin Pool)
 
2724
 
 
2725
* ForeignVcsMapping() now requires a ForeignVcs object as first
 
2726
  argument. (Jelmer Vernooij)
 
2727
 
 
2728
* ForeignVcsMapping.show_foreign_revid() has been moved to
 
2729
  ForeignVcs. (Jelmer Vernooij)
 
2730
 
 
2731
* ``read_bundle_from_url`` is deprecated in favor of
 
2732
  ``read_mergeable_from_url``.  (Vincent Ladeuil)
 
2733
 
 
2734
* Revision specifiers are now registered in
 
2735
  ``bzrlib.revisionspec.revspec_registry``, and the old list of 
 
2736
  revisionspec classes (``bzrlib.revisionspec.SPEC_TYPES``) has been
 
2737
  deprecated. (Jelmer Vernooij, #321183)
 
2738
 
 
2739
* The progress and UI classes have changed; the main APIs remain the
 
2740
  same but code that provides a new UI or progress bar class may
 
2741
  need to be updated.  (Martin Pool)
 
2742
 
 
2743
Internals
 
2744
*********
 
2745
 
 
2746
* Default User Interface (UI) is CLIUIFactory when bzr runs in a dumb
 
2747
  terminal. It is sometimes desirable do override this default by forcing
 
2748
  bzr to use TextUIFactory. This can be achieved by setting the
 
2749
  BZR_USE_TEXT_UI environment variable (emacs shells, as opposed to
 
2750
  compile buffers, are such an example).
 
2751
  (Vincent Ladeuil)
 
2752
 
 
2753
* New API ``Branch.iter_merge_sorted_revisions()`` that iterates over
 
2754
  ``(revision_id, depth, revno, end_of_merge)`` tuples.
 
2755
  (Ian Clatworthy)
 
2756
 
 
2757
* New ``Branch.dotted_revno_to_revision_id()`` and
 
2758
  ``Branch.revision_id_to_dotted_revno()`` APIs that pick the most
 
2759
  efficient way of doing the mapping.
 
2760
  (Ian Clatworthy)
 
2761
 
 
2762
* Refactor cmd_serve so that it's a little easier to build commands that
 
2763
  extend it, and perhaps even a bit easier to read.  (Jonathan Lange)
 
2764
 
 
2765
* ``TreeDelta.show()`` now accepts a ``filter`` parameter allowing log
 
2766
  formatters to retrict the output.
 
2767
  (Vincent Ladeuil)
 
2768
 
 
2769
 
 
2770
bzr 1.11
 
2771
########
 
2772
 
 
2773
:Codename: "Eyes up!"
 
2774
:Released: 2009-01-19
 
2775
 
 
2776
This first monthly release of Bazaar for 2009 improves Bazaar's operation
 
2777
in Windows, Mac OS X, and other situations where file names are matched
 
2778
without regard to capitalization: Bazaar tries to match the case of an
 
2779
existing file.  This release of Bazaar also improves the efficiency of
 
2780
Tortoise Windows Shell integration and lets it work on 64-bit platforms.
 
2781
 
 
2782
The UI through which Bazaar supports historic formats has been improved,
 
2783
so 'bzr help formats' now gives a simpler and shorter list, with clear
 
2784
advice.
 
2785
 
 
2786
This release also fixes a number of bugs, particularly a glitch that can
 
2787
occur when there are concurrent writes to a pack repository.
 
2788
 
 
2789
Bug Fixes
 
2790
*********
 
2791
 
 
2792
* Fix failing test when CompiledChunksToLines is not available.
 
2793
  (Vincent Ladeuil)
 
2794
 
 
2795
* Stacked branches don't repeatedly open their transport connection.
 
2796
  (John Arbash Meinel)
 
2797
 
 
2798
 
 
2799
 
 
2800
bzr 1.11rc1
 
2801
###########
 
2802
 
 
2803
:Codename: "Eyes up!"
 
2804
:Released: 2009-01-09
 
2805
 
 
2806
Changes
 
2807
*******
 
2808
 
 
2809
* Formats using Knit-based repository formats are now explicitly
 
2810
  marked as deprecated. (Ian Clatworthy)
 
2811
 
 
2812
New Features
 
2813
************
 
2814
 
 
2815
* Add support for `bzr tags -r 1..2`, that is we now support showing
 
2816
  tags applicable for a specified revision range. (Marius Kruger)
 
2817
 
 
2818
* ``authentication.conf`` now accepts pluggable read-only credential
 
2819
  stores. Such a plugin (``netrc_credential_store``) is now included,
 
2820
  handles the ``$HOME/.netrc`` file and can server as an example to
 
2821
  implement other plugins.
 
2822
  (Vincent Ladeuil)
 
2823
 
 
2824
* ``shelve --list`` can now be used to list shelved changes.
 
2825
  (Aaron Bentley)
 
2826
 
 
2827
Improvements
 
2828
************
 
2829
 
 
2830
* Add trailing slash to directories in all output of ``bzr ls``, except
 
2831
  ``bzr ls --null``. (Gordon P. Hemsley, #306424)
 
2832
 
 
2833
* ``bzr revision-info`` now supports a -d option to specify an
 
2834
  alternative branch. (Michael Hudson)
 
2835
 
 
2836
* Add connection to a C++ implementation of the Windows Shell Extension
 
2837
  which is able to fully replace the current Python implemented one.
 
2838
  Advantages include 64bit support and reduction in overhead for
 
2839
  processes which drag in shell extensions.
 
2840
  (Mark Hammond)
 
2841
 
 
2842
* Support the Claws mail client directly, rather than via
 
2843
  xdg-email. This prevents the display of an unnecessary modal
 
2844
  dialog in Claws, informing the user that a file has been
 
2845
  attached to the message, and works around bug #291847 in
 
2846
  xdg-utils which corrupts the destination address.
 
2847
 
 
2848
* When working on a case-insensitive case-preserving file-system, as
 
2849
  commonly found with Windows, bzr will often ignore the case of the
 
2850
  arguments specified by the user in preference to the case of an existing
 
2851
  item on the file-system or in the inventory to help prevent
 
2852
  counter-intuitive behaviour on Windows. (Mark Hammond)
 
2853
 
 
2854
Bug Fixes
 
2855
*********
 
2856
  
 
2857
* Allow BzrDir implementation to implement backing up of 
 
2858
  control directory. (#139691)
 
2859
 
 
2860
* ``bzr push`` creating a new stacked branch will now only open a
 
2861
  single connection to the target machine. (John Arbash Meinel)
 
2862
 
 
2863
* Don't call iteritems on transport_list_registry, because it may
 
2864
  change during iteration.  (Martin Pool, #277048)
 
2865
 
 
2866
* Don't make a broken branch when pushing an unstackable-format branch
 
2867
  that's in a stackable shared repository to a location with default
 
2868
  stack-on location.  (Andrew Bennetts, #291046)
 
2869
 
 
2870
* Don't require embedding user in HTTP(S) URLs do use authentication.conf.
 
2871
  (Ben Jansen, Vincent Ladeuil, #300347)
 
2872
 
 
2873
* Fix a problem with CIFS client/server lag on windows colliding with
 
2874
  an invariant-per-process algorithm for generating AtomicFile names
 
2875
  (Adrian Wilkins, #304023)
 
2876
 
 
2877
* Fix bogus setUp signature in UnavailableFTPServer.
 
2878
  (Gary van der Merwe, #313498)
 
2879
 
 
2880
* Fix compilation error in ``_dirstate_helpers_c`` on SunOS/Solaris.
 
2881
  (Jari Aalto)
 
2882
 
 
2883
* Fix SystemError in ``_patiencediff_c`` module by calling
 
2884
  PyErr_NoMemory() before returning NULL in PatienceSequenceMatcher_new.
 
2885
  (Andrew Bennetts, #303206)
 
2886
 
 
2887
* Give proper error message for diff with non-existent dotted revno.
 
2888
  (Marius Kruger, #301969)
 
2889
 
 
2890
* Handle EACCES (permission denied) errors when launching a message
 
2891
  editor, and emit warnings when a configured editor cannot be
 
2892
  started. (Andrew Bennetts)
 
2893
 
 
2894
* ``$HOME/.netrc`` file is now recognized as a read-only credential store
 
2895
  if configured in ``authentication.conf`` with 'password_encoding=netrc'
 
2896
  in the appropriate sections.
 
2897
  (Vincent Ladeuil, #103029)
 
2898
 
 
2899
* Opening a stacked branch now properly shares the connection, rather
 
2900
  than opening a new connection for the stacked-on branch.
 
2901
  (John Arbash meinel)
 
2902
 
 
2903
* Preserve transport decorators while following redirections.
 
2904
  (Vincent Ladeuil, #245964, #270863)
 
2905
 
 
2906
* Provides a finer and more robust filter for accepted redirections.
 
2907
  (Vincent Ladeuil, #303959, #265070)
 
2908
 
 
2909
* ``shelve`` paths are now interpreted relative to the current working
 
2910
  tree.  (Aaron Bentley)
 
2911
 
 
2912
* ``Transport.readv()`` defaults to not reading more than 100MB in a
 
2913
  single array. Further ``RemoteTransport.readv`` sets this to 5MB to
 
2914
  work better with how it splits its requests.
 
2915
  (John Arbash Meinel, #303538)
 
2916
 
 
2917
* Pack repositories are now able to reload the pack listing and retry
 
2918
  the current operation if another action causes the data to be
 
2919
  repacked.  (John Arbash Meinel, #153786)
 
2920
 
 
2921
* ``pull -v`` now respects the log_format configuration variable.
 
2922
  (Aaron Bentley)
 
2923
 
 
2924
* ``push -v`` now works on non-initial pushes.  (Aaron Bentley)
 
2925
 
 
2926
* Use the short status format when the short format is used for log.
 
2927
  (Vincent Ladeuil, #87179)
 
2928
 
 
2929
* Allow files to be renamed or moved via remove + add-by-id. (Charles
 
2930
  Duffy, #314251)
 
2931
 
 
2932
Documentation
 
2933
*************
 
2934
 
 
2935
* Improved the formats help topic to explain why multiple formats
 
2936
  exist and to provide guidelines in selecting one. Introduced
 
2937
  two new supporting help topics: current-formats and other-formats.
 
2938
  (Ian Clatworthy)
 
2939
 
 
2940
API Changes
 
2941
***********
 
2942
 
 
2943
* ``LRUCache(after_cleanup_size)`` was renamed to
 
2944
  ``after_cleanup_count`` and the old name deprecated. The new name is
 
2945
  used for clarity, and to avoid confusion with
 
2946
  ``LRUSizeCache(after_cleanup_size)``. (John Arbash Meinel)
 
2947
 
 
2948
* New ``ForeignRepository`` base class, to help with foreign branch 
 
2949
  support (e.g. svn).  (Jelmer Vernooij)
 
2950
 
 
2951
* ``node_distances`` and ``select_farthest`` can no longer be imported
 
2952
  from ``bzrlib.graph``.  They can still be imported from
 
2953
  ``bzrlib.deprecated_graph``, which has been the preferred way to
 
2954
  import them since before 1.0.  (Andrew Bennetts)
 
2955
  
 
2956
* The logic in commit now delegates inventory basis calculations to
 
2957
  the ``CommitBuilder`` object; this requires that the commit builder
 
2958
  in use has been updated to support the new ``recording_deletes`` and
 
2959
  ``record_delete`` methods. (Robert Collins)
 
2960
 
 
2961
Testing
 
2962
*******
 
2963
 
 
2964
* An HTTPS server is now available (it requires python-2.6). Future bzr
 
2965
  versions will allow the use of the python-2.6 ssl module that can be
 
2966
  installed for 2.5 and 2.4.
 
2967
 
 
2968
* ``bzr selftest`` now fails if new trailing white space is added to
 
2969
  the bazaar sources. It only checks changes not committed yet. This
 
2970
  means that PQM will now reject changes that introduce new trailing
 
2971
  whitespace. (Marius Kruger)
 
2972
 
 
2973
* Introduced new experimental formats called ``1.12-preview`` and
 
2974
  ``1.12-preview-rich-root`` to enable testing of related pending
 
2975
  features, namely content filtering and filtered views.
 
2976
  (Ian Clatworthy)
 
2977
 
 
2978
Internals
 
2979
*********
 
2980
 
 
2981
* Added an ``InventoryEntry`` cache when deserializing inventories.
 
2982
  Can cut the time to iterate over multiple RevisionsTrees in half.
 
2983
  (John Arbash Meinel)
 
2984
 
 
2985
* Added ``bzrlib.fifo_cache.FIFOCache`` which is designed to have
 
2986
  minimal overhead versus using a plain dict for cache hits, at the
 
2987
  cost of not preserving the 'active' set as well as an ``LRUCache``.
 
2988
  (John Arbash Meinel)
 
2989
 
 
2990
* ``bzrlib.patience_diff.unified_diff`` now properly uses a tab
 
2991
  character to separate the filename from the date stamp, and doesn't
 
2992
  add trailing whitespace when a date stamp is not supplied.
 
2993
  (Adeodato Simó, John Arbash Meinel)
 
2994
 
 
2995
* ``DirStateWorkingTree`` and ``DirStateWorkingTreeFormat`` added
 
2996
  as base classes of ``WorkingTree4`` and ``WorkingTreeFormat4``
 
2997
  respectively. (Ian Clatworthy)
 
2998
 
 
2999
* ``KnitVersionedFiles._check_should_delta()`` now uses the
 
3000
  ``get_build_details`` api to avoid multiple hits to the index, and
 
3001
  to properly follow the ``compression_parent`` rather than assuming
 
3002
  it is the left-hand parent. (John Arbash Meinel)
 
3003
 
 
3004
* ``KnitVersionedFiles.get_record_stream()`` will now chose a
 
3005
  more optimal ordering when the keys are requested 'unordered'.
 
3006
  Previously the order was fully random, now the records should be
 
3007
  returned from each pack in turn, in forward I/O order.
 
3008
  (John Arbash Meinel)
 
3009
    
 
3010
* ``mutter()`` will now flush the ``~/.bzr.log`` if it has been more
 
3011
  than 2s since the last time it flushed. (John Arbash Meinel)
 
3012
 
 
3013
* New method ``bzrlib.repository.Repository.add_inventory_by_delta``
 
3014
  allows adding an inventory via an inventory delta, which can be
 
3015
  more efficient for some repository types. (Robert Collins)
 
3016
 
 
3017
* Repository ``CommitBuilder`` objects can now accumulate an inventory
 
3018
  delta. To enable this functionality call ``builder.recording_deletes``
 
3019
  and additionally call ``builder.record_delete`` when a delete
 
3020
  against the basis occurs. (Robert Collins)
 
3021
 
 
3022
* The default http handler has been changed from pycurl to urllib.
 
3023
  The default is still pycurl for https connections. (The only
 
3024
  advantage of pycurl is that it checks ssl certificates.)
 
3025
  (John Arbash Meinel)
 
3026
 
 
3027
* ``VersionedFiles.get_record_stream()`` can now return objects with a
 
3028
  storage_kind of ``chunked``. This is a collection (list/tuple) of
 
3029
  strings. You can use ``osutils.chunks_to_lines()`` to turn them into
 
3030
  guaranteed 'lines' or you can use ``''.join(chunks)`` to turn it
 
3031
  into a fulltext. This allows for some very good memory savings when
 
3032
  asking for many texts that share ancestry, as the individual chunks
 
3033
  can be shared between versions of the file. (John Arbash Meinel)
 
3034
 
 
3035
* ``pull -v`` and ``push -v`` use new function
 
3036
  ``bzrlib.log.show_branch_change`` (Aaron Bentley)
 
3037
 
 
3038
 
 
3039
 
 
3040
bzr 1.10
 
3041
########
 
3042
 
 
3043
:Released: 2008-12-05
 
3044
 
 
3045
Bazaar 1.10 has several performance improvements for copying revisions
 
3046
(especially for small updates to large projects).  There has also been a
 
3047
significant amount of effort in polishing stacked branches.  The commands
 
3048
``shelve`` and ``unshelve`` have become core commands, with an improved
 
3049
implementation.
 
3050
 
 
3051
The only changes versus bzr-1.10rc1 are bugfixes for stacked branches.
 
3052
 
 
3053
bug Fixes
 
3054
*********
 
3055
 
 
3056
* Don't set a pack write cache size from RepoFetcher, because the
 
3057
  cache is not coherent with reads and causes ShortReadvErrors.
 
3058
  This reverses the change that fixed #294479.
 
3059
  (Martin Pool, #303856)
 
3060
 
 
3061
* Properly handle when a revision can be inserted as a delta versus
 
3062
  when it needs to be expanded to a fulltext for stacked branches.
 
3063
  There was a bug involving merge revisions. As a method to help
 
3064
  prevent future difficulties, also make stacked fetches sort
 
3065
  topologically. (John Arbash Meinel, #304841)
 
3066
 
 
3067
 
 
3068
bzr 1.10rc1
 
3069
###########
 
3070
 
 
3071
:Released: 2008-11-28
 
3072
 
 
3073
This release of Bazaar focuses on performance improvements when pushing
 
3074
and pulling revisions, both locally and to remote networks.  The popular
 
3075
``shelve`` and ``unshelve`` commands, used to interactively revert and
 
3076
restore work in progress, have been merged from bzrtools into the bzr
 
3077
core.  There are also bug fixes for portability, and for stacked branches.
 
3078
 
 
3079
New Features
 
3080
************
 
3081
 
 
3082
* New ``commit_message_template`` hook that is called by the commit
 
3083
  code to generate a template commit message. (Jelmer Vernooij)
 
3084
 
 
3085
* New `shelve` and `unshelve` commands allow undoing and redoing changes.
 
3086
  (Aaron Bentley)
 
3087
 
 
3088
Improvements
 
3089
************
 
3090
 
 
3091
* ``(Remote)Branch.copy_content_into`` no longer generates the full revision
 
3092
  history just to set the last revision info.
 
3093
  (Andrew Bennetts, John Arbash Meinel)
 
3094
 
 
3095
* Fetches between formats with different serializers (such as
 
3096
  pack-0.92-subtree and 1.9-rich-root) are faster now.  This is due to
 
3097
  operating on batches of 100 revisions at time rather than
 
3098
  one-by-one.  (Andrew Bennetts, John Arbash Meinel)
 
3099
 
 
3100
* Search index files corresponding to pack files we've already used
 
3101
  before searching others, because they are more likely to have the
 
3102
  keys we're looking for.  This reduces the number of iix and tix
 
3103
  files accessed when pushing 1 new revision, for instance.
 
3104
  (John Arbash Meinel)
 
3105
 
 
3106
* Signatures to transfer are calculated more efficiently in
 
3107
  ``item_keys_introduced_by``.  (Andrew Bennetts, John Arbash Meinel)
 
3108
 
 
3109
* The generic fetch code can once again copy revisions and signatures
 
3110
  without extracting them completely to fulltexts and then serializing
 
3111
  them back down into byte strings. This is a significant performance
 
3112
  improvement when fetching from a stacked branch.
 
3113
  (John Arbash Meinel, #300289)
 
3114
 
 
3115
* When making a large readv() request over ``bzr+ssh``, break up the
 
3116
  request into more manageable chunks. Because the RPC is not yet able
 
3117
  to stream, this helps keep us from buffering too much information at
 
3118
  once. (John Arbash Meinel)
 
3119
 
 
3120
Bug Fixes
 
3121
*********
 
3122
 
 
3123
* Better message when the user needs to set their Launchpad ID.
 
3124
  (Martin Pool, #289148)
 
3125
 
 
3126
* ``bzr commit --local`` doesn't access the master branch anymore.
 
3127
  This fixes a regression introduced in 1.9.  (Marius Kruger, #299313)
 
3128
 
 
3129
* Don't call the system ``chdir()`` with an empty path. Sun OS seems
 
3130
  to give an error in that case.  Also, don't count on ``getcwd()``
 
3131
  being able to allocate a new buffer, which is a gnu extension.
 
3132
  (John Arbash Meinel, Martin Pool, Harry Hirsch, #297831)
 
3133
 
 
3134
* Don't crash when requesting log --forward <file> for a revision range
 
3135
  starting with a dotted revno.
 
3136
  (Vincent Ladeuil, #300055)
 
3137
 
 
3138
* Don't create text deltas spanning stacked repositories; this could
 
3139
  cause "Revision X not present in Y" when later accessing them.
 
3140
  (Martin Pool, #288751)
 
3141
 
 
3142
* Pack repositories are now able to reload the pack listing and retry
 
3143
  the current operation if another action causes the data to be
 
3144
  repacked.  (John Arbash Meinel, #153786)
 
3145
 
 
3146
* PermissionDenied errors from smart servers no longer cause
 
3147
  "PermissionDenied: "None"" on the client.
 
3148
  (Andrew Bennetts, #299254)
 
3149
 
 
3150
* Pushing to a stacked pack repository now batches writes, the same
 
3151
  way writes are batched to ordinary pack repository.  This makes
 
3152
  pushing to a stacked branch over the network much faster.
 
3153
  (Andrew Bennetts, #294479)
 
3154
 
 
3155
* TooManyConcurrentRequests no longer occur when a fetch fails and
 
3156
  tries to abort a write group.  This allows the root cause (e.g. a
 
3157
  network interruption) to be reported.  (Andrew Bennetts, #297014)
 
3158
 
 
3159
* RemoteRepository.get_parent_map now uses fallback repositories.
 
3160
  (Aaron Bentley, #297991?, #293679?)
 
3161
 
 
3162
API Changes
 
3163
***********
 
3164
 
 
3165
* ``CommitBuilder`` now validates the strings it will be committing,
 
3166
  to ensure that they do not have characters that will not be properly
 
3167
  round-tripped. For now, it just checks for characters that are
 
3168
  invalid in the XML form. (John Arbash Meinel, #295161)
 
3169
 
 
3170
* Constructor parameters for NewPack (internal to pack repositories)
 
3171
  have changed incompatibly.
 
3172
 
 
3173
* ``Repository.abort_write_group`` now accepts an optional
 
3174
  ``suppress_errors`` flag.  Repository implementations that override
 
3175
  ``abort_write_group`` will need to be updated to accept the new
 
3176
  argument.  Subclasses that only override ``_abort_write_group``
 
3177
  don't need to change.
 
3178
 
 
3179
* Transport implementations must provide copy_tree_to_transport.  A default
 
3180
  implementation is provided for Transport subclasses.
 
3181
 
 
3182
Testing
 
3183
*******
 
3184
 
 
3185
* ``bzr selftest`` now fails if no doctests are found in a module
 
3186
  that's expected to have them.  (Martin Pool)
 
3187
 
 
3188
* Doctests now only report the first failure.  (Martin Pool)
 
3189
 
 
3190
 
 
3191
bzr 1.9
 
3192
#######
 
3193
 
 
3194
:Released: 2008-11-07
 
3195
 
 
3196
This release of Bazaar adds a new repository format, ``1.9``, with smaller
 
3197
and more efficient index files.  This format can be specified when
 
3198
creating a new repository, or used to losslessly upgrade an existing
 
3199
repository.  bzr 1.9 also speeds most operations over the smart server
 
3200
protocol, makes annotate faster, and uses less memory when making
 
3201
checkouts or pulling large amounts of data.
 
3202
 
 
3203
Bug Fixes
 
3204
*********
 
3205
 
 
3206
* Fix "invalid property value 'branch-nick' for None" regression with
 
3207
  branches bound to svn branches.  (Martin Pool, #293440)
 
3208
 
 
3209
* Fix SSL/https on Python2.6.  (Vincent Ladeuil, #293054)
 
3210
 
 
3211
* ``SFTPTransport.readv()`` had a bug when requests were out-of-order.
 
3212
  This only triggers some-of-the-time on Knit format repositories.
 
3213
  (John Arbash Meinel, #293746)
 
3214
 
 
3215
 
 
3216
bzr 1.9rc1
 
3217
##########
 
3218
 
 
3219
:Released: 2008-10-31
 
3220
 
 
3221
New Features
 
3222
************
 
3223
 
 
3224
* New Branch hook ``transform_fallback_location`` allows a function to
 
3225
  be called when looking up the stacked source. (Michael Hudson)
 
3226
 
 
3227
* New repository formats ``1.9`` and ``1.9-rich-root``. These have all
 
3228
  the functionality of ``1.6``, but use the new btree indexes.
 
3229
  These indexes are both smaller and faster for access to historical
 
3230
  information.  (John Arbash Meinel)
 
3231
 
 
3232
Improvements
 
3233
************
 
3234
 
 
3235
* ``BTreeIndex`` code now is able to prefetch extra pages to help tune
 
3236
  the tradeoff between bandwidth and latency. Should be tuned
 
3237
  appropriately to not impact commands which need minimal information,
 
3238
  but provide a significant boost to ones that need more context. Only
 
3239
  has a direct impact on the ``--development2`` format which uses
 
3240
  btree's for the indexes. (John Arbash Meinel)
 
3241
 
 
3242
* ``bzr dump-btree`` is a hidden command introduced to allow dumping
 
3243
  the contents of a compressed btree file.  (John Arbash Meinel)
 
3244
 
 
3245
* ``bzr pack`` now tells the index builders to optimize for size. For
 
3246
  btree index repositories, this can save 25% of the index size
 
3247
  (mostly in the text indexes). (John Arbash Meinel)
 
3248
 
 
3249
* ``bzr push`` to an existing branch or repository on a smart server
 
3250
  is faster, due to Bazaar making more use of the ``get_parent_map``
 
3251
  RPC when querying the remote branch's revision graph.
 
3252
  (Andrew Bennetts)
 
3253
 
 
3254
* default username for bzr+ssh and sftp can be configured in
 
3255
  authentication.conf. (Aaron Bentley)
 
3256
 
 
3257
* launchpad-login now provides a default username for bzr+ssh and sftp
 
3258
  URLs, allowing username-free URLs to work for everyone. (Aaron Bentley)
 
3259
 
 
3260
* ``lp:`` lookups no longer include usernames, making them shareable and
 
3261
  shorter. (Aaron Bentley)
 
3262
 
 
3263
* New ``PackRepository.autopack`` smart server RPC, which does
 
3264
  autopacking entirely on the server.  This is much faster than
 
3265
  autopacking via plain file methods, which downloads a large amount
 
3266
  of pack data and then re-uploads the same pack data into a single
 
3267
  file.  This fixes a major (although infrequent) cause of lengthy
 
3268
  delays when using a smart server.  For example, pushing the 10th
 
3269
  revision to a repository with 9 packs now takes 44 RPCs rather than
 
3270
  179, and much less bandwidth too.  This requires Bazaar 1.9 on both
 
3271
  the client and the server, otherwise the client will fallback to the
 
3272
  slower method.  (Andrew Bennetts)
 
3273
 
 
3274
Bug Fixes
 
3275
*********
 
3276
 
 
3277
* A failure to load a plugin due to an IncompatibleAPI exception is
 
3278
  now correctly reported. (Robert Collins, #279451)
 
3279
 
 
3280
* API versioning support now has a multiple-version checking api
 
3281
  ``require_any_api``. (Robert Collins, #279447)
 
3282
 
 
3283
* ``bzr branch --stacked`` from a smart server to a standalone branch
 
3284
  works again.  This fixes a regression in 1.7 and 1.8.
 
3285
  (Andrew Bennetts, #270397)
 
3286
 
 
3287
* ``bzr co`` uses less memory. It used to unpack the entire WT into
 
3288
  memory before writing it to disk. This was a little bit faster, but
 
3289
  consumed lots of memory. (John Arbash Meinel, #269456)
 
3290
 
 
3291
* ``bzr missing --quiet`` no longer prints messages about whether
 
3292
  there are missing revisions.  The exit code indicates whether there
 
3293
  were or not.  (Martin Pool, #284748)
 
3294
 
 
3295
* Fixes to the ``annotate`` code. The fast-path which re-used the
 
3296
  stored deltas was accidentally disabled all the time, instead of
 
3297
  only when a branch was stacked. Second, the code would accidentally
 
3298
  re-use a delta even if it wasn't against the left-parent, this
 
3299
  could only happen if ``bzr reconcile`` decided that the parent
 
3300
  ordering was incorrect in the file graph.  (John Arbash Meinel)
 
3301
 
 
3302
* "Permission denied" errors that occur when pushing a new branch to a
 
3303
  smart server no longer cause tracebacks.  (Andrew Bennetts, #278673)
 
3304
 
 
3305
* Some compatibility fixes for building the extensions with MSVC and
 
3306
  for python2.4. (John Arbash Meinel, #277484)
 
3307
 
 
3308
* The index logic is now able to reload the list of pack files if and
 
3309
  index ends up disappearing. We still don't reload if the pack data
 
3310
  itself goes missing after checking the index. This bug appears as a
 
3311
  transient failure (file not found) when another process is writing
 
3312
  to the repository.  (John Arbash Meinel, #153786)
 
3313
 
 
3314
* ``bzr switch`` and ``bzr bind`` will now update the branch nickname if
 
3315
  it was previously set. All checkouts will now refer to the bound branch
 
3316
  for a nickname if one was not explicitly set.
 
3317
  (Marius Kruger, #230903)
 
3318
 
 
3319
Documentation
 
3320
*************
 
3321
 
 
3322
* Improved hook documentation. (Michael Ernst)
 
3323
 
 
3324
API Changes
 
3325
***********
 
3326
 
 
3327
* commands.plugins_cmds is now a CommandRegistry, not a dict.
 
3328
 
 
3329
Internals
 
3330
*********
 
3331
 
 
3332
* New AuthenticationConfig.set_credentials method allows easy programmatic
 
3333
  configuration of authetication credentials.
 
3334
 
 
3335
 
 
3336
bzr 1.8
 
3337
#######
 
3338
 
 
3339
:Released: 2008-10-16
 
3340
 
 
3341
Bazaar 1.8 includes several fixes that improve working tree performance,
 
3342
display of revision logs, and merges.  The bzr testsuite now passes on OS
 
3343
X and Python 2.6, and almost completely passes on Windows.  The
 
3344
smartserver code has gained several bug fixes and performance
 
3345
improvements, and can now run server-side hooks within an http server.
 
3346
 
 
3347
Bug Fixes
 
3348
*********
 
3349
 
 
3350
* Fix "Must end write group" error when another error occurs during
 
3351
  ``bzr push``.  (Andrew Bennetts, #230902)
 
3352
 
 
3353
Portability
 
3354
***********
 
3355
 
 
3356
* Some Pyrex versions require the WIN32 macro defined to compile on
 
3357
  that platform.  (Alexander Belchenko, Martin Pool, #277481)
 
3358
 
 
3359
 
 
3360
bzr 1.8rc1
 
3361
##########
 
3362
 
 
3363
:Released: 2008-10-07
 
3364
 
 
3365
Changes
 
3366
*******
 
3367
 
 
3368
* ``bzr log file`` has been changed. It now uses a different method
 
3369
  for determining which revisions to show as merging the changes to
 
3370
  the file. It now only shows revisions which merged the change
 
3371
  towards your mainline. This simplifies the output, makes it faster,
 
3372
  and reduces memory consumption.  (John Arbash Meinel)
 
3373
 
 
3374
* ``bzr merge`` now defaults to having ``--reprocess`` set, whenever
 
3375
  ``--show-base`` is not supplied.  (John Arbash Meinel)
 
3376
 
 
3377
* ``bzr+http//`` will now optionally load plugins and write logs on the
 
3378
  server. (Marius Kruger)
 
3379
 
 
3380
* ``bzrlib._dirstate_helpers_c.pyx`` does not compile correctly with
 
3381
  Pyrex 0.9.4.1 (it generates C code which causes segfaults). We
 
3382
  explicitly blacklist that version of the compiler for that
 
3383
  extension. Packaged versions will include .c files created with
 
3384
  pyrex >= 0.9.6 so it doesn't effect releases, only users running
 
3385
  from the source tree. (John Arbash Meinel, #276868)
 
3386
 
 
3387
Features
 
3388
********
 
3389
 
 
3390
* bzr is now compatible with python-2.6. python-2.6 is not yet officially
 
3391
  supported (nor released, tests were conducted with the dev version of
 
3392
  python-2.6rc2), but all known problems have been fixed.  Feedback
 
3393
  welcome.
 
3394
  (Vincent Ladeuil, #269535)
 
3395
 
 
3396
Improvements
 
3397
************
 
3398
 
 
3399
* ``bzr annotate`` will now include uncommitted changes from the local
 
3400
  working tree by default. Such uncommitted changes are given the
 
3401
  revision number they would get if a commit was done, followed with a
 
3402
  ? to indicate that its not actually known. (Robert Collins, #3439)
 
3403
 
 
3404
* ``bzr branch`` now accepts a ``--standalone`` option, which creates a
 
3405
  standalone branch regardless of the presence of shared repositories.
 
3406
  (Daniel Watkins)
 
3407
 
 
3408
* ``bzr push`` is faster in the case there are no new revisions to
 
3409
  push.  It is also faster if there are no tags in the local branch.
 
3410
  (Andrew Bennetts)
 
3411
 
 
3412
* File changes during a commit will update the tree stat cache.
 
3413
  (Robert Collins)
 
3414
 
 
3415
* Location aliases can now accept a trailing path.  (Micheal Hudson)
 
3416
 
 
3417
* New hooks ``Lock.hooks`` when LockDirs are acquired and released.
 
3418
  (Robert Collins, MartinPool)
 
3419
 
 
3420
* Switching in heavyweight checkouts uses the master branch's context, not
 
3421
  the checkout's context.  (Adrian Wilkins)
 
3422
 
 
3423
* ``status`` on large trees is now faster, due to optimisations in the
 
3424
  walkdirs code. Of particular note, the walkdirs code now performs
 
3425
  a temporary ``chdir()`` while reading a single directory; if your
 
3426
  platform has non thread-local current working directories (and is
 
3427
  not windows which has its own implementation), this may introduce a
 
3428
  race condition during concurrent uses of bzrlib. The bzrlib CLI
 
3429
  will not encounter this as it is single threaded for working tree
 
3430
  operations. (Robert Collins)
 
3431
 
 
3432
* The C extensions now build on python 2.4 (Robert Collins, #271939)
 
3433
 
 
3434
* The ``-Dhpss`` debug flag now reports the number of smart server
 
3435
  calls per medium to stderr.  This is in addition to the existing
 
3436
  detailed logging to the .bzr.log trace file.  (Andrew Bennetts)
 
3437
 
 
3438
Bug Fixes
 
3439
*********
 
3440
 
 
3441
* Avoid random failures arising from misinterpreted ``errno`` values
 
3442
  in ``_readdir_pyx.read_dir``.
 
3443
  (Martin Pool, #279381)
 
3444
 
 
3445
* Branching from a shared repository on a smart server into a new
 
3446
  repository now preserves the repository format.
 
3447
  (Andrew Bennetts, #269214)
 
3448
 
 
3449
* ``bzr log`` now accepts a ``--change`` option.
 
3450
  (Vincent Ladeuil, #248427)
 
3451
 
 
3452
* ``bzr missing`` now accepts an ``--include-merges`` option.
 
3453
  (Vincent Ladeuil, #233817)
 
3454
 
 
3455
* Don't try to filter (internally) '.bzr' from the files to be deleted if
 
3456
  it's not there.
 
3457
  (Vincent Ladeuil, #272648)
 
3458
 
 
3459
* Fix '_in_buffer' AttributeError when using the -Dhpss debug flag.
 
3460
  (Andrew Bennetts)
 
3461
 
 
3462
* Fix TooManyConcurrentRequests errors caused by a connection failure
 
3463
  when doing ``bzr pull`` or ``bzr merge`` from a ``bzr+ssh`` URL.
 
3464
  (Andrew Bennetts, #246233)
 
3465
 
 
3466
* Fixed ``bzr st -r branch:PATH_TO_BRANCH`` where the other branch
 
3467
  is in a different repository than the current one.
 
3468
  (Lukáš Lalinský, #144421)
 
3469
 
 
3470
* Make the first line of the manpage preamble a comment again.
 
3471
  (David Futcher, #242106)
 
3472
 
 
3473
* Remove use of optional parameter in GSSAPI FTP support, since
 
3474
  it breaks newer versions of Python-Kerberos. (Jelmer Vernooij)
 
3475
 
 
3476
* The autopacking logic will now always create a single new pack from
 
3477
  all of the content which it deems is worth moving. This avoids the
 
3478
  'repack a single pack' bug and should result in better packing
 
3479
  overall.  (John Arbash Meinel, #242510, #172644)
 
3480
 
 
3481
* Trivial documentation fix.
 
3482
  (John Arbash Meinel, #270471)
 
3483
 
 
3484
* ``bzr switch`` and ``bzr bind`` will now update the branch nickname if
 
3485
  it was previously set. All checkouts will now refer to the bound branch
 
3486
  for a nickname if one was not explicitly set.
 
3487
  (Marius Kruger, #230903)
 
3488
 
 
3489
Documentation
 
3490
*************
 
3491
 
 
3492
* Explain revision/range identifiers. (Daniel Clemente)
 
3493
 
 
3494
API Changes
 
3495
***********
 
3496
 
 
3497
* ``CommitBuilder.record_entry_contents`` returns one more element in
 
3498
  its result tuple - an optional file system hash for the hash cache
 
3499
  to use. (Robert Collins)
 
3500
 
 
3501
* ``dirstate.DirState.update_entry`` will now only calculate the sha1
 
3502
  of a file if it is likely to be needed in determining the output
 
3503
  of iter_changes. (Robert Collins)
 
3504
 
 
3505
* The PackRepository, RepositoryPackCollection, NewPack classes have a
 
3506
  slightly changed interface to support different index types; as a
 
3507
  result other users of these classes need to supply the index types
 
3508
  they want. (Robert Collins)
 
3509
 
 
3510
Testing
 
3511
*******
 
3512
 
 
3513
* ``bzrlib.tests.repository_implementations`` has been renamed to
 
3514
  ``bzrlib.tests.per_repository`` so that we have a common structure
 
3515
  (and it is shorter). (John Arbash Meinel, #239343)
 
3516
 
 
3517
* ``LocalTransport.abspath()`` now returns a drive letter if the
 
3518
  transport has one, fixing numerous tests on Windows.
 
3519
  (Mark Hammond)
 
3520
 
 
3521
* PreviewTree is now tested via intertree_implementations.
 
3522
  (Aaron Bentley)
 
3523
 
 
3524
* The full test suite is passing again on OSX.
 
3525
  (Guillermo Gonzalez, Vincent Ladeuil)
 
3526
 
 
3527
* The full test suite passes when run with ``-Eallow_debug``.
 
3528
  (Andrew Bennetts)
 
3529
 
 
3530
Internals
 
3531
*********
 
3532
 
 
3533
* A new hook, ``Branch.open``, has been added, which is called when
 
3534
  branch objects are opened. (Robert Collins)
 
3535
 
 
3536
* ``bzrlib.osutils._walkdirs_utf8`` has been refactored into common
 
3537
  tree walking, and modular directory listing code to aid future
 
3538
  performance optimisations and refactoring. (Robert Collins)
 
3539
 
 
3540
* ``bzrlib.trace.debug_memory`` can be used to get a quick memory dump
 
3541
  in the middle of processing. It only reports memory if
 
3542
  ``/proc/PID/status`` is available. (John Arbash Meinel)
 
3543
 
 
3544
* New method ``RevisionSpec.as_tree`` for representing the revision
 
3545
  specifier as a revision tree object. (Lukáš Lalinský)
 
3546
 
 
3547
* New race-free method on MutableTree ``get_file_with_stat`` for use
 
3548
  when generating stat cache results. (Robert Collins)
 
3549
 
 
3550
* New win32utils.get_local_appdata_location() provides access to a local
 
3551
  directory for storing data.  (Mark Hammond)
 
3552
 
 
3553
* To be compatible with python-2.6 a few new rules should be
 
3554
  observed. 'message' attribute can't be used anymore in exception
 
3555
  classes, 'sha' and 'md5' modules have been deprecated (use
 
3556
  osutils.[md5|sha]), object__init__ and object.__new__ don't accept
 
3557
  parameters anymore.
 
3558
  (Vincent Ladeuil)
 
3559
 
 
3560
 
 
3561
bzr 1.7.1
 
3562
#########
 
3563
 
 
3564
:Released:  2008-10-01
 
3565
 
 
3566
No changes from 1.7.1rc1.
 
3567
 
 
3568
 
 
3569
bzr 1.7.1rc1
 
3570
############
 
3571
 
 
3572
:Released: 2008-09-24
 
3573
 
 
3574
This release just includes an update to how the merge algorithm handles
 
3575
file paths when we encounter complex history.
 
3576
 
 
3577
Features
 
3578
********
 
3579
 
 
3580
* If we encounter a criss-cross in history, use information from
 
3581
  direct Least Common Ancestors to resolve inventory shape (locations
 
3582
  of files, adds, deletes, etc). This is similar in concept to using
 
3583
  ``--lca`` for merging file texts, only applied to paths.
 
3584
  (John Arbash Meinel)
 
3585
 
 
3586
 
 
3587
bzr 1.7
 
3588
#######
 
3589
 
 
3590
:Released: 2008-09-23
 
3591
 
 
3592
This release includes many bug fixes and a few performance and feature
 
3593
improvements.  ``bzr rm`` will now scan for missing files and remove them,
 
3594
like how ``bzr add`` scans for unknown files and adds them. A bit more
 
3595
polish has been applied to the stacking code. The b-tree indexing code has
 
3596
been brought in, with an eye on using it in a future repository format.
 
3597
There are only minor installer changes since bzr-1.7rc2.
 
3598
 
 
3599
Features
 
3600
********
 
3601
 
 
3602
* Some small updates to the win32 installer. Include localization
 
3603
  files found in plugins, and include the builtin distutils as part of
 
3604
  packaging qbzr. (Mark Hammond)
 
3605
 
 
3606
 
 
3607
bzr 1.7rc2
 
3608
##########
 
3609
 
 
3610
:Released: 2008-09-17
 
3611
 
 
3612
A few bug fixes from 1.7rc1. The biggest change is a new
 
3613
``RemoteBranch.get_stacked_on_url`` rpc. This allows clients that are
 
3614
trying to access a Stacked branch over the smart protocol, to properly
 
3615
connect to the stacked-on location.
 
3616
 
 
3617
Bug Fixes
 
3618
*********
 
3619
 
 
3620
* Branching from a shared repository on a smart server into a new
 
3621
  repository now preserves the repository format.
 
3622
  (Andrew Bennetts, #269214)
 
3623
 
 
3624
* Branching from a stacked branch via ``bzr+ssh`` can properly connect
 
3625
  to the stacked-on branch.  (Martin Pool, #261315)
 
3626
 
 
3627
* ``bzr init`` no longer re-opens the BzrDir multiple times.
 
3628
  (Vincent Ladeuil)
 
3629
 
 
3630
* Fix '_in_buffer' AttributeError when using the -Dhpss debug flag.
 
3631
  (Andrew Bennetts)
 
3632
 
 
3633
 
 
3634
bzr 1.7rc1
 
3635
##########
 
3636
 
 
3637
:Released: 2008-09-09
 
3638
 
 
3639
This release candidate for bzr 1.7 has several bug fixes and a few
 
3640
performance and feature improvements.  ``bzr rm`` will now scan for
 
3641
missing files and remove them, like how ``bzr add`` scans for unknown
 
3642
files and adds them. A bit more polish has been applied to the stacking
 
3643
code. The b-tree indexing code has been brought in, with an eye on using
 
3644
it in a future repository format.
 
3645
 
 
3646
 
 
3647
Changes
 
3648
*******
 
3649
 
 
3650
* ``bzr export`` can now export a subdirectory of a project.
 
3651
  (Robert Collins)
 
3652
 
 
3653
* ``bzr remove-tree`` will now refuse to remove a tree with uncommitted
 
3654
  changes, unless the ``--force`` option is specified.
 
3655
  (Lukáš Lalinský, #74101)
 
3656
 
 
3657
* ``bzr rm`` will now scan for files that are missing and remove just
 
3658
  them automatically, much as ``bzr add`` scans for new files that
 
3659
  are not ignored and adds them automatically. (Robert Collins)
 
3660
 
 
3661
Features
 
3662
********
 
3663
 
 
3664
* Support for GSSAPI authentication when using FTP as documented in
 
3665
  RFC2228. (Jelmer Vernooij, #49623)
 
3666
 
 
3667
* Add support for IPv6 in the smart server. (Jelmer Vernooij, #165014)
 
3668
 
 
3669
Improvements
 
3670
************
 
3671
 
 
3672
* A url like ``log+file:///tmp`` will log all access to that Transport
 
3673
  to ``.bzr.log``, which may help in debugging or profiling.
 
3674
  (Martin Pool)
 
3675
 
 
3676
* ``bzr branch`` and ``bzr push`` use the default stacking policy if the
 
3677
  branch format supports it. (Aaron Bentley)
 
3678
 
 
3679
* ``bzr init`` and ``bzr init-repo`` will now print out the same as
 
3680
  ``bzr info`` if it completed successfully.
 
3681
  (Marius Kruger)
 
3682
 
 
3683
* ``bzr uncommit`` logs the old tip revision id, and displays how to
 
3684
  restore the branch to that tip using ``bzr pull``.  This allows you
 
3685
  to recover if you realize you uncommitted the wrong thing.
 
3686
  (John Arbash Meinel)
 
3687
 
 
3688
* Fix problems in accessing stacked repositories over ``bzr://``.
 
3689
  (Martin Pool, #261315)
 
3690
 
 
3691
* ``SFTPTransport.readv()`` was accidentally using ``list += string``,
 
3692
  which 'works', but adds each character separately to the list,
 
3693
  rather than using ``list.append(string)``. Fixing this makes the
 
3694
  SFTP transport a little bit faster (~20%) and use a bit less memory.
 
3695
  (John Arbash Meinel)
 
3696
 
 
3697
* When reading index files, if we happen to read the whole file in a
 
3698
  single request treat it as a ``_buffer_all`` request. This happens
 
3699
  most often on small indexes over remote transports, where we default
 
3700
  to reading 64kB. It saves a round trip for each small index during
 
3701
  fetch operations. Also, if we have read more than 50% of an index
 
3702
  file, trigger a ``_buffer_all`` on the next request. This works
 
3703
  around some inefficiencies because reads don't fall neatly on page
 
3704
  boundaries, so we would ignore those bytes, but request them again
 
3705
  later. This could trigger a total read size of more than the whole
 
3706
  file. (John Arbash Meinel)
 
3707
 
 
3708
Bug Fixes
 
3709
*********
 
3710
 
 
3711
* ``bzr rm`` is now aliased to ``bzr del`` for the convenience of svn
 
3712
  users. (Robert Collins, #205416)
 
3713
 
 
3714
* Catch the infamous "select/poll returned error" which occurs when
 
3715
  pycurl try to send a body request to an HTTP/1.0 server which has
 
3716
  already refused to handle the request. (Vincent Ladeuil, #225020)
 
3717
 
 
3718
* Fix ``ObjectNotLocked`` errors when using various commands
 
3719
  (including ``bzr cat`` and ``bzr annotate``) in combination with a
 
3720
  smart server URL.  (Andrew Bennetts, #237067)
 
3721
 
 
3722
* ``FTPTransport.stat()`` would return ``0000`` as the permission bits
 
3723
  for the containing ``.bzr/`` directory (it does not implement
 
3724
  permissions). This would cause us to set all subdirectories to
 
3725
  ``0700`` and files to ``0600`` rather than leaving them unmodified.
 
3726
  Now we ignore ``0000`` as the permissions and assume they are
 
3727
  invalid. (John Arbash Meinel, #259855)
 
3728
 
 
3729
* Merging from a previously joined branch will no longer cause
 
3730
  a traceback. (Jelmer Vernooij, #203376)
 
3731
 
 
3732
* Pack operations on windows network shares will work even with large
 
3733
  files. (Robert Collins, #255656)
 
3734
 
 
3735
* Running ``bzr st PATH_TO_TREE`` will no longer suppress merge
 
3736
  status. Status is also about 7% faster on mozilla sized trees
 
3737
  when the path to the root of the tree has been given. Users of
 
3738
  the internal ``show_tree_status`` function should be aware that
 
3739
  the show_pending flag is now authoritative for showing pending
 
3740
  merges, as it was originally. (Robert Collins, #225204)
 
3741
 
 
3742
* Set valid default _param_name for Option so that ListOption can embed
 
3743
  '-' in names. (Vincent Ladeuil, #263249)
 
3744
 
 
3745
* Show proper error rather than traceback when an unknown revision
 
3746
  id is specified to ``bzr cat-revision``. (Jelmer Vernooij, #175569)
 
3747
 
 
3748
* Trailing text in the dirstate file could cause the C dirstate parser
 
3749
  to try to allocate an invalid amount of memory. We now properly
 
3750
  check and test for parsing a dirstate with invalid trailing data.
 
3751
  (John Arbash Meinel, #186014)
 
3752
 
 
3753
* Unexpected error responses from a smart server no longer cause the
 
3754
  client to traceback.  (Andrew Bennetts, #263527)
 
3755
 
 
3756
* Use a Windows api function to get a Unicode host name, rather than
 
3757
  assuming the host name is ascii.
 
3758
  (Mark Hammond, John Arbash Meinel, #256550)
 
3759
 
 
3760
* ``WorkingTree4`` trees will now correctly report missing-and-new
 
3761
  paths in the output of ``iter_changes``. (Robert Collins)
 
3762
 
 
3763
Documentation
 
3764
*************
 
3765
 
 
3766
* Updated developer documentation.  (Martin Pool)
 
3767
 
 
3768
API Changes
 
3769
***********
 
3770
 
 
3771
* Exporters now take 4 parameters. (Robert Collins)
 
3772
 
 
3773
* ``Tree.iter_changes`` will now return False for the content change
 
3774
  field when a file is missing in the basis tree and not present in
 
3775
  the target tree. Previously it returned True unconditionally.
 
3776
  (Robert Collins)
 
3777
 
 
3778
* The deprecated ``Branch.abspath`` and unimplemented
 
3779
  ``Branch.rename_one`` and ``Branch.move`` were removed. (Jelmer Vernooij)
 
3780
 
 
3781
* BzrDir.clone_on_transport implementations must now accept a stacked_on
 
3782
  parameter.  (Aaron Bentley)
 
3783
 
 
3784
* BzrDir.cloning_metadir implementations must now take a require_stacking
 
3785
  parameter.  (Aaron Bentley)
 
3786
 
 
3787
Testing
 
3788
*******
 
3789
 
 
3790
* ``addCleanup`` now takes ``*arguments`` and ``**keyword_arguments``
 
3791
  which are then passed to the cleanup callable as it is run. In
 
3792
  addition, addCleanup no longer requires that the callables passed to
 
3793
  it be unique. (Jonathan Lange)
 
3794
 
 
3795
* Fix some tests that fail on Windows because files are deleted while
 
3796
  still in use.
 
3797
  (Mark Hammond)
 
3798
 
 
3799
* ``selftest``'s ``--starting-with`` option can now use predefined
 
3800
  prefixes so that one can say ``bzr selftest -s bp.loom`` instead of
 
3801
  ``bzr selftest -s bzrlib.plugins.loom``. (Vincent Ladeuil)
 
3802
 
 
3803
* ``selftest``'s ``--starting-with`` option now accepts multiple values.
 
3804
  (Vincent Ladeuil)
 
3805
 
 
3806
Internals
 
3807
*********
 
3808
 
 
3809
* A new plugin interface, ``bzrlib.log.log_adapters``, has been added.
 
3810
  This allows dynamic log output filtering by plugins.
 
3811
  (Robert Collins)
 
3812
 
 
3813
* ``bzrlib.btree_index`` is now available, providing a b-tree index
 
3814
  layer. The design is memory conservative (limited memory cache),
 
3815
  faster to seek (approx 100 nodes per page, gives 100-way fan out),
 
3816
  and stores compressed pages allowing more keys per page.
 
3817
  (Robert Collins, John Arbash Meinel)
 
3818
 
 
3819
* ``bzrlib.diff.DiffTree.show_diff`` now skips changes where the kind
 
3820
  is unknown in both source and target.
 
3821
  (Robert Collins, Aaron Bentley)
 
3822
 
 
3823
* ``GraphIndexBuilder.add_node`` and ``BTreeBuilder`` have been
 
3824
  streamlined a bit. This should make creating large indexes faster.
 
3825
  (In benchmarking, it now takes less time to create a BTree index than
 
3826
  it takes to read the GraphIndex one.) (John Arbash Meinel)
 
3827
 
 
3828
* Mail clients for `bzr send` are now listed in a registry.  This
 
3829
  allows plugins to add new clients by registering them with
 
3830
  ``bzrlib.mail_client.mail_client_registry``.  All of the built-in
 
3831
  clients now use this mechanism.  (Neil Martinsen-Burrell)
 
3832
 
 
3833
 
 
3834
bzr 1.6.1
 
3835
#########
 
3836
 
 
3837
:Released: 2008-09-05
 
3838
 
 
3839
A couple regressions were found in the 1.6 release. There was a
 
3840
performance issue when using ``bzr+ssh`` to branch large repositories,
 
3841
and some problems with stacking and ``rich-root`` capable repositories.
 
3842
 
 
3843
 
 
3844
bzr 1.6.1rc2
 
3845
############
 
3846
 
 
3847
:Released: 2008-09-03
 
3848
 
 
3849
Bug Fixes
 
3850
*********
 
3851
 
 
3852
* Copying between ``rich-root`` and ``rich-root-pack`` (and vice
 
3853
  versa) was accidentally using the inter-model fetcher, instead of
 
3854
  recognizing that both were 'rich root' formats.
 
3855
  (John Arbash Meinel, #264321)
 
3856
 
 
3857
 
 
3858
bzr 1.6.1rc1
 
3859
############
 
3860
 
 
3861
:Released: 2008-08-29
 
3862
 
 
3863
This release fixes a few regressions found in the 1.6 client. Fetching
 
3864
changes was using an O(N^2) buffering algorithm, so for large projects it
 
3865
would cause memory thrashing. There is also a specific problem with the
 
3866
``--1.6-rich-root`` format, which prevented stacking on top of
 
3867
``--rich-root-pack`` repositories, and could allow users to accidentally
 
3868
fetch experimental data (``-subtree``) without representing it properly.
 
3869
The ``--1.6-rich-root`` format has been deprecated and users are
 
3870
recommended to upgrade to ``--1.6.1-rich-root`` immediately.  Also we
 
3871
re-introduced a workaround for users who have repositories with incorrect
 
3872
nodes (not possible if you only used official releases).
 
3873
I should also clarify that none of this is data loss level issues, but
 
3874
still sufficient enough to warrant an updated release.
 
3875
 
 
3876
Bug Fixes
 
3877
*********
 
3878
 
 
3879
* ``RemoteTransport.readv()`` was being inefficient about how it
 
3880
  buffered the readv data and processed it. It would keep appending to
 
3881
  the same string (causing many copies) and then pop bytes out of the
 
3882
  start of the string (causing more copies).
 
3883
  With this patch "bzr+ssh://local" can improve dramatically,
 
3884
  especially for projects with large files.
 
3885
  (John Arbash Meinel)
 
3886
 
 
3887
* Revision texts were always meant to be stored as fulltexts. There
 
3888
  was a bug in a bzr.dev version that would accidentally create deltas
 
3889
  when copying from a Pack repo to a Knit repo. This has been fixed,
 
3890
  but to support those repositories, we know always request full texts
 
3891
  for Revision texts. (John Arbash Meinel, #261339)
 
3892
 
 
3893
* The previous ``--1.6-rich-root`` format used an incorrect xml
 
3894
  serializer, which would accidentally support fetching from a
 
3895
  repository that supported subtrees, even though the local one would
 
3896
  not. We deprecated that format, and introduced a new one that uses
 
3897
  the correct serializer ``--1.6.1-rich-root``.
 
3898
  (John Arbash Meinel, #262333)
 
3899
 
 
3900
 
 
3901
bzr 1.6
 
3902
#######
 
3903
 
 
3904
:Released: 2008-08-25
 
3905
 
 
3906
Finally, the long awaited bzr 1.6 has been released. This release includes
 
3907
new features like Stacked Branches, improved weave merge, and an updated
 
3908
server protocol (now on v3) which will allow for better cross version
 
3909
compatibility. With this release we have deprecated Knit format
 
3910
repositories, and recommend that users upgrade them, we will continue to
 
3911
support reading and writing them for the forseeable future, but we will
 
3912
not be tuning them for performance as pack repositories have proven to be
 
3913
better at scaling. This will also be the first release to bundle
 
3914
TortoiseBzr in the standalone Windows installer.
 
3915
 
 
3916
 
 
3917
bzr 1.6rc5
 
3918
##########
 
3919
 
 
3920
:Released: 2008-08-19
 
3921
 
 
3922
Bug Fixes
 
3923
*********
 
3924
 
 
3925
* Disable automatic detection of stacking based on a containing
 
3926
  directory of the target. It interacted badly with push, and needs a
 
3927
  bit more work to get the edges polished before it should happen
 
3928
  automatically. (John Arbash Meinel, #259275)
 
3929
  (This change was reverted when merged to bzr.dev)
 
3930
 
 
3931
 
 
3932
bzr 1.6rc4
 
3933
##########
 
3934
 
 
3935
:Released: 2008-08-18
 
3936
 
 
3937
Bug Fixes
 
3938
*********
 
3939
 
 
3940
* Fix a regression in knit => pack fetching.  We had a logic
 
3941
  inversion, causing the fetch to insert fulltexts in random order,
 
3942
  rather than preserving deltas.  (John Arbash Meinel, #256757)
 
3943
 
 
3944
 
 
3945
bzr 1.6rc3
 
3946
##########
 
3947
 
 
3948
:Released: 2008-08-14
 
3949
 
 
3950
Changes
 
3951
*******
 
3952
 
 
3953
* Disable reading ``.bzrrules`` as a per-branch rule preferences
 
3954
  file. The feature was not quite ready for a full release.
 
3955
  (Robert Collins)
 
3956
 
 
3957
Improvements
 
3958
************
 
3959
 
 
3960
* Update the windows installer to bundle TortoiseBzr and ``qbzr``
 
3961
  into the standalone installer. This will be the first official
 
3962
  windows release that installs Tortoise by default.
 
3963
  (Mark Hammond)
 
3964
 
 
3965
Bug Fixes
 
3966
*********
 
3967
 
 
3968
* Fix a regression in ``bzr+http`` support. There was a missing
 
3969
  function (``_read_line``) that needed to be carried over from
 
3970
  ``bzr+ssh`` support. (Andrew Bennetts)
 
3971
 
 
3972
* ``GraphIndex`` objects will internally read an entire index if more
 
3973
  than 1/20th of their keyspace is requested in a single operation.
 
3974
  This largely mitigates a performance regression in ``bzr log FILE``
 
3975
  and completely corrects the performance regression in ``bzr log``.
 
3976
  The regression was caused by removing an accomodation which had been
 
3977
  supporting the index format in use. A newer index format is in
 
3978
  development which is substantially faster. (Robert Collins)
 
3979
 
 
3980
 
 
3981
bzr 1.6rc2
 
3982
##########
 
3983
 
 
3984
:Released: 2008-08-13
 
3985
 
 
3986
This release candidate has a few minor bug fixes, and some regression
 
3987
fixes for Windows.
 
3988
 
 
3989
Bug Fixes
 
3990
*********
 
3991
 
 
3992
* ``bzr upgrade`` on remote branches accessed via bzr:// and
 
3993
  bzr+ssh:// now works.  (Andrew Bennetts)
 
3994
 
 
3995
* Change the ``get_format_description()`` strings for
 
3996
  ``RepositoryFormatKnitPack5`` et al to be single line messages.
 
3997
  (Aaron Bentley)
 
3998
 
 
3999
* Fix for a regression on Win32 where we would try to call
 
4000
  ``os.listdir()`` on a file and not catch the exception properly.
 
4001
  (Windows raises a different exception.) This would manifest in
 
4002
  places like ``bzr rm file`` or ``bzr switch``.
 
4003
  (Mark Hammond, John Arbash Meinel)
 
4004
 
 
4005
* ``Inventory.copy()`` was failing to set the revision property for
 
4006
  the root entry. (Jelmer Vernooij)
 
4007
 
 
4008
* sftp transport: added missing ``FileExists`` case to
 
4009
  ``_translate_io_exception`` (Christophe Troestler, #123475)
 
4010
 
 
4011
* The help for ``bzr ignored`` now suggests ``bzr ls --ignored`` for
 
4012
  scripting use. (Robert Collins, #3834)
 
4013
 
 
4014
* The default ``annotate`` logic will now always assign the
 
4015
  last-modified value of a line to one of the revisions that modified
 
4016
  it, rather than a merge revision. This would happen when both sides
 
4017
  claimed to have modified the line resulting in the same text. The
 
4018
  choice is arbitrary but stable, so merges in different directions
 
4019
  will get the same results.  (John Arbash Meinel, #232188)
 
4020
 
 
4021
 
 
4022
bzr 1.6rc1
 
4023
##########
 
4024
 
 
4025
:Released: 2008-08-06
 
4026
 
 
4027
This release candidate for bzr 1.6 solidifies the new branch stacking
 
4028
feature.  Bazaar now recommends that users upgrade all knit repositories,
 
4029
because later formats are much faster.  However, we plan to continue read/write and
 
4030
upgrade support for knit repostories for the forseeable future.  Several
 
4031
other bugs and performance issues were fixed.
 
4032
 
 
4033
Changes
 
4034
*******
 
4035
 
 
4036
* Knit format repositories are deprecated and bzr will now emit
 
4037
  warnings whenever it encounters one.  Use ``bzr upgrade`` to upgrade
 
4038
  knit repositories to pack format.  (Andrew Bennetts)
 
4039
 
 
4040
Improvements
 
4041
************
 
4042
 
 
4043
* ``bzr check`` can now be told which elements at a location it should
 
4044
  check.  (Daniel Watkins)
 
4045
 
 
4046
* Commit now supports ``--exclude`` (or ``-x``) to exclude some files
 
4047
  from the commit. (Robert Collins, #3117)
 
4048
 
 
4049
* Fetching data between repositories that have the same model but no
 
4050
  optimised fetcher will not reserialise all the revisions, increasing
 
4051
  performance. (Robert Collins, John Arbash Meinel)
 
4052
 
 
4053
* Give a more specific error when target branch is not reachable.
 
4054
  (James Westby)
 
4055
 
 
4056
* Implemented a custom ``walkdirs_utf8`` implementation for win32.
 
4057
  This uses a pyrex extension to get direct access to the
 
4058
  ``FindFirstFileW`` style apis, rather than using ``listdir`` +
 
4059
  ``lstat``. Shows a very strong improvement in commands like
 
4060
  ``status`` and ``diff`` which have to iterate the working tree.
 
4061
  Anywhere from 2x-6x faster depending on the size of the tree (bigger
 
4062
  trees, bigger benefit.) (John Arbash Meinel)
 
4063
 
 
4064
* New registry for log properties handles  and the method in
 
4065
  LongLogFormatter to display the custom properties returned by the
 
4066
  registered handlers. (Guillermo Gonzalez, #162469)
 
4067
 
 
4068
Bug Fixes
 
4069
*********
 
4070
 
 
4071
* Add more tests that stacking does not create deltas spanning
 
4072
  physical repository boundaries.
 
4073
  (Martin Pool, #252428)
 
4074
 
 
4075
* Better message about incompatible repositories.
 
4076
  (Martin Pool, #206258)
 
4077
 
 
4078
* ``bzr branch --stacked`` ensures the destination branch format can
 
4079
  support stacking, even if the origin does not.
 
4080
  (Martin Pool)
 
4081
 
 
4082
* ``bzr export`` no longer exports ``.bzrrules``.
 
4083
  (Ian Clatworthy)
 
4084
 
 
4085
* ``bzr serve --directory=/`` now correctly allows the whole
 
4086
  filesystem to be accessed on Windows, not just the root of the drive
 
4087
  that Python is running from.
 
4088
  (Adrian Wilkins, #240910)
 
4089
 
 
4090
* Deleting directories by hand before running ``bzr rm`` will not
 
4091
  cause subsequent errors in ``bzr st`` and ``bzr commit``.
 
4092
  (Robert Collins, #150438)
 
4093
 
 
4094
* Fix a test case that was failing if encoding wasn't UTF-8.
 
4095
  (John Arbash Meinel, #247585)
 
4096
 
 
4097
* Fix "no buffer space available" error when branching with the new
 
4098
  smart server protocol to or from Windows.
 
4099
  (Andrew Bennetts, #246180)
 
4100
 
 
4101
* Fixed problem in branching from smart server.
 
4102
  (#249256, Michael Hudson, Martin Pool)
 
4103
 
 
4104
* Handle a file turning in to a directory in TreeTransform.
 
4105
  (James Westby, #248448)
 
4106
 
 
4107
API Changes
 
4108
***********
 
4109
 
 
4110
* ``MutableTree.commit`` has an extra optional keywork parameter
 
4111
  ``exclude`` that will be unconditionally supplied by the command
 
4112
  line UI - plugins that add tree formats may need an update.
 
4113
  (Robert Collins)
 
4114
 
 
4115
* The API minimum version for plugin compatibility has been raised to
 
4116
  1.6 - there are significant changes throughout the code base.
 
4117
  (Robert Collins)
 
4118
 
 
4119
* The generic fetch code now uses three attributes on Repository objects
 
4120
  to control fetch. The streams requested are controlled via :
 
4121
  ``_fetch_order`` and ``_fetch_uses_deltas``. Setting these
 
4122
  appropriately allows different repository implementations to recieve
 
4123
  data in their optimial form. If the ``_fetch_reconcile`` is set then
 
4124
  a reconcile operation is triggered at the end of the fetch.
 
4125
  (Robert Collins)
 
4126
 
 
4127
* The ``put_on_disk`` and ``get_tar_item`` methods in
 
4128
  ``InventoryEntry`` were deprecated. (Ian Clatworthy)
 
4129
 
 
4130
* ``Repository.is_shared`` doesn't take a read lock. It didn't
 
4131
  need one in the first place (nobody cached the value, and
 
4132
  ``RemoteRepository`` wasn't taking one either). This saves a round
 
4133
  trip when probing Pack repositories, as they read the ``pack-names``
 
4134
  file when locked. And during probe, locking the repo isn't very
 
4135
  useful. (John Arbash Meinel)
 
4136
 
 
4137
Internals
 
4138
*********
 
4139
 
 
4140
* ``bzrlib.branchbuilder.BranchBuilder`` is now much more capable of
 
4141
  putting together a real history without having to create a full
 
4142
  WorkingTree. It is recommended that tests that are not directly
 
4143
  testing the WorkingTree use BranchBuilder instead.  See
 
4144
  ``BranchBuilder.build_snapshot`` or
 
4145
  ``TestCaseWithMemoryTree.make_branch_builder``.  (John Arbash Meinel)
 
4146
 
 
4147
* ``bzrlib.builtins.internal_tree_files`` broken into two giving a new
 
4148
  helper ``safe_relpath_files`` - used by the new ``exclude``
 
4149
  parameter to commit. (Robert Collins)
 
4150
 
 
4151
* Make it easier to introduce new WorkingTree formats.
 
4152
  (Ian Clatworthy)
 
4153
 
 
4154
* The code for exporting trees was refactored not to use the
 
4155
  deprecated ``InventoryEntry`` methods. (Ian Clatworthy)
 
4156
 
 
4157
* RuleSearchers return () instead of [] now when there are no matches.
 
4158
  (Ian Clatworthy)
 
4159
 
 
4160
 
 
4161
bzr 1.6beta3
 
4162
############
 
4163
 
 
4164
:Released: 2008-07-17
 
4165
 
 
4166
This release adds a new 'stacked branches' feature allowing branches to
 
4167
share storage without being in the same repository or on the same machine.
 
4168
(See the user guide for more details.)  It also adds a new hook, improved
 
4169
weaves, aliases for related locations, faster bzr+ssh push, and several
 
4170
bug fixes.
 
4171
 
 
4172
Features
 
4173
********
 
4174
 
 
4175
* New ``pre_change_branch_tip`` hook that is called before the
 
4176
  branch tip is moved, while the branch is write-locked.  See the User
 
4177
  Reference for signature details.  (Andrew Bennetts)
 
4178
 
 
4179
* Rule-based preferences can now be defined for selected files in
 
4180
  selected branches, allowing commands and plugins to provide
 
4181
  custom behaviour for files matching defined patterns.
 
4182
  See ``Rule-based preferences`` (part of ``Configuring Bazaar``)
 
4183
  in the User Guide and ``bzr help rules`` for more information.
 
4184
  (Ian Clatworthy)
 
4185
 
 
4186
* Sites may suggest a branch to stack new branches on.  (Aaron Bentley)
 
4187
 
 
4188
* Stacked branches are now supported. See ``bzr help branch`` and
 
4189
  ``bzr help push``.  Branches must be in the ``development1`` format
 
4190
  to stack, though the stacked-on branch can be of any format.
 
4191
  (Robert Collins)
 
4192
 
 
4193
Improvements
 
4194
************
 
4195
 
 
4196
* ``bzr export --format=tgz --root=NAME -`` to export a gzipped tarball
 
4197
  to stdout; also ``tar`` and ``tbz2``.
 
4198
  (Martin Pool)
 
4199
 
 
4200
* ``bzr (re)merge --weave`` will now use a standard Weave algorithm,
 
4201
  rather than the annotation-based merge it was using. It does so by
 
4202
  building up a Weave of the important texts, without needing to build
 
4203
  the full ancestry. (John Arbash Meinel, #238895)
 
4204
 
 
4205
* ``bzr send`` documents and better supports ``emacsclient`` (proper
 
4206
  escaping of mail headers and handling of the MUA Mew).
 
4207
  (Christophe Troestler)
 
4208
 
 
4209
* Remembered locations can be specified by aliases, e.g. :parent, :public,
 
4210
  :submit.  (Aaron Bentley)
 
4211
 
 
4212
* The smart protocol now has improved support for setting branches'
 
4213
  revision info directly.  This makes operations like push
 
4214
  faster.  The new request method name is
 
4215
  ``Branch.set_last_revision_ex``.  (Andrew Bennetts)
 
4216
 
 
4217
Bug Fixes
 
4218
*********
 
4219
 
 
4220
* Bazaar is now able to be a client to the web server of IIS 6 and 7.
 
4221
  The broken implementations of RFC822 in Python and RFC2046 in IIS
 
4222
  combined with boundary-line checking in Bazaar previously made this
 
4223
  impossible. (NB, IIS 5 does not suffer from this problem).
 
4224
  (Adrian Wilkins, #247585)
 
4225
 
 
4226
* ``bzr log --long`` with a ghost in your mainline now handles that
 
4227
  ghost properly. (John Arbash Meinel, #243536)
 
4228
 
 
4229
* ``check`` handles the split-up .bzr layout correctly, so no longer
 
4230
  requires a branch to be present.
 
4231
  (Daniel Watkins, #64783)
 
4232
 
 
4233
* Clearer message about how to set the PYTHONPATH if bzrlib can't be
 
4234
  loaded.
 
4235
  (Martin Pool, #205230)
 
4236
 
 
4237
* Errors about missing libraries are now shown without a traceback,
 
4238
  and with a suggestion to install the library.  The full traceback is
 
4239
  still in ``.bzr.log`` and can be shown with ``-Derror``.
 
4240
  (Martin Pool, #240161)
 
4241
 
 
4242
* Fetch from a stacked branch copies all required data.
 
4243
  (Aaron Bentley, #248506)
 
4244
 
 
4245
* Handle urls such as ftp://user@host.com@www.host.com where the user
 
4246
  name contains an @.
 
4247
  (Neil Martinsen-Burrell, #228058)
 
4248
 
 
4249
* ``needs_read_lock`` and ``needs_write_lock`` now suppress an error during
 
4250
  ``unlock`` if there was an error in the original function. This helps
 
4251
  most when there is a failure with a smart server action, since often the
 
4252
  connection closes and we cannot unlock.
 
4253
  (Andrew Bennetts, John Arbash Meinel, #125784)
 
4254
 
 
4255
* Obsolete hidden command ``bzr fetch`` removed.
 
4256
  (Martin Pool, #172870)
 
4257
 
 
4258
* Raise the correct exception when doing ``-rbefore:0`` or ``-c0``.
 
4259
  (John Arbash Meinel, #239933)
 
4260
 
 
4261
* You can now compare file revisions in Windows diff programs from
 
4262
  Cygwin Bazaar.
 
4263
  (Matt McClure, #209281)
 
4264
 
 
4265
* revision_history now tolerates mainline ghosts for Branch format 6.
 
4266
  (Aaron Bentley, #235055)
 
4267
 
 
4268
* Set locale from environment for third party libs.
 
4269
  (Martin von Gagern, #128496)
 
4270
 
 
4271
Documentation
 
4272
*************
 
4273
 
 
4274
* Added *Using stacked branches* to the User Guide.
 
4275
  (Ian Clatworthy)
 
4276
 
 
4277
* Updated developer documentation.
 
4278
  (Martin Pool)
 
4279
 
 
4280
Testing
 
4281
*******
 
4282
 
 
4283
* ``-Dmemory`` will cause /proc/PID/status to be catted before bzr
 
4284
  exits, allowing low-key analysis of peak memory use. (Robert Collins)
 
4285
 
 
4286
* ``TestCaseWithTransport.make_branch_and_tree`` tries harder to return
 
4287
  a tree with a ``branch`` attribute of the right format.  This was
 
4288
  preventing some ``RemoteBranch`` tests from actually running with
 
4289
  ``RemoteBranch`` instances.  (Andrew Bennetts)
 
4290
 
 
4291
API Changes
 
4292
***********
 
4293
 
 
4294
* Removed ``Repository.text_store``, ``control_store``, etc.  Instead,
 
4295
  there are new attributes ``texts, inventories, revisions,
 
4296
  signatures``, each of which is a ``VersionedFiles``.  See the
 
4297
  Repository docstring for more details.
 
4298
  (Robert Collins)
 
4299
 
 
4300
* ``Branch.pull`` now accepts an ``_override_hook_target`` optional
 
4301
  parameter.  If you have a subclass of ``Branch`` that overrides
 
4302
  ``pull`` then you should add this parameter.  (Andrew Bennetts)
 
4303
 
 
4304
* ``bzrlib.check.check()`` has been deprecated in favour of the more
 
4305
  aptly-named ``bzrlib.check.check_branch()``.
 
4306
  (Daniel Watkins)
 
4307
 
 
4308
* ``Tree.print_file`` and ``Repository.print_file`` are deprecated.
 
4309
  These methods are bad APIs because they write directly to sys.stdout.
 
4310
  bzrlib does not use them internally, and there are no direct tests
 
4311
  for them. (Alexander Belchenko)
 
4312
 
 
4313
Internals
 
4314
*********
 
4315
 
 
4316
* ``cat`` command no longer uses ``Tree.print_file()`` internally.
 
4317
  (Alexander Belchenko)
 
4318
 
 
4319
* New class method ``BzrDir.open_containing_tree_branch_or_repository``
 
4320
  which eases the discovery of the tree, the branch and the repository
 
4321
  containing a given location.
 
4322
  (Daniel Watkins)
 
4323
 
 
4324
* New ``versionedfile.KeyMapper`` interface to abstract out the access to
 
4325
  underlying .knit/.kndx etc files in repositories with partitioned
 
4326
  storage. (Robert Collins)
 
4327
 
 
4328
* Obsolete developer-use command ``weave-join`` has been removed.
 
4329
  (Robert Collins)
 
4330
 
 
4331
* ``RemoteToOtherFetcher`` and ``get_data_stream_for_search`` removed,
 
4332
  to support new ``VersionedFiles`` layering.
 
4333
  (Robert Collins)
 
4334
 
 
4335
 
 
4336
bzr 1.6beta2
 
4337
############
 
4338
 
 
4339
:Released: 2008-06-10
 
4340
 
 
4341
This release contains further progress towards our 1.6 goals of shallow
 
4342
repositories, and contains a fix for some user-affecting bugs in the
 
4343
repository layer.  Building working trees during checkout and branch is
 
4344
now faster.
 
4345
 
 
4346
Bug Fixes
 
4347
*********
 
4348
 
 
4349
* Avoid KnitCorrupt error extracting inventories from some repositories.
 
4350
  (The data is not corrupt; an internal check is detecting a problem
 
4351
  reading from the repository.)
 
4352
  (Martin Pool, Andrew Bennetts, Robert Collins, #234748)
 
4353
 
 
4354
* ``bzr status`` was breaking if you merged the same revision twice.
 
4355
  (John Arbash Meinel, #235407)
 
4356
 
 
4357
* Fix infinite loop consuming 100% CPU when a connection is lost while
 
4358
  reading a response body via the smart protocol v1 or v2.
 
4359
  (Andrew Bennetts)
 
4360
 
 
4361
* Inserting a bundle which changes the contents of a file with no trailing
 
4362
  end of line, causing a knit snapshot in a 'knits' repository will no longer
 
4363
  cause KnitCorrupt. (Robert Collins)
 
4364
 
 
4365
* ``RemoteBranch.pull`` needs to return the ``self._real_branch``'s
 
4366
  pull result. It was instead just returning None, which breaks ``bzr
 
4367
  pull``. (John Arbash Meinel, #238149)
 
4368
 
 
4369
* Sanitize branch nick before using it as an attachment filename in
 
4370
  ``bzr send``. (Lukáš Lalinský, #210218)
 
4371
 
 
4372
* Squash ``inv_entry.symlink_target`` to a plain string when
 
4373
  generating DirState details. This prevents from getting a
 
4374
  ``UnicodeError`` when you have symlinks and non-ascii filenames.
 
4375
  (John Arbash Meinel, #135320)
 
4376
 
 
4377
Improvements
 
4378
************
 
4379
 
 
4380
* Added the 'alias' command to set/unset and display aliases. (Tim Penhey)
 
4381
 
 
4382
* ``added``, ``modified``, and ``unknowns`` behaviour made consistent (all three
 
4383
  now quote paths where required). Added ``--null`` option to ``added`` and
 
4384
  ``modified`` (for null-separated unknowns, use ``ls --unknown --null``)
 
4385
  (Adrian Wilkins)
 
4386
 
 
4387
* Faster branching (1.09x) and lightweight checkouts (1.06x) on large trees.
 
4388
  (Ian Clatworthy, Aaron Bentley)
 
4389
 
 
4390
Documentation
 
4391
*************
 
4392
 
 
4393
* Added *Bazaar Zen* section to the User Guide. (Ian Clatworthy)
 
4394
 
 
4395
Testing
 
4396
*******
 
4397
 
 
4398
* Fix the test HTTPServer to be isolated from chdir calls made while it is
 
4399
  running, allowing it to be used in blackbox tests. (Robert Collins)
 
4400
 
 
4401
API Changes
 
4402
***********
 
4403
 
 
4404
* ``WorkingTree.set_parent_(ids/trees)`` will now filter out revisions
 
4405
  which are in the ancestry of other revisions. So if you merge the same
 
4406
  tree twice, or merge an ancestor of an existing merge, it will only
 
4407
  record the newest. (If you merge a descendent, it will replace its
 
4408
  ancestor). (John Arbash Meinel, #235407)
 
4409
 
 
4410
* ``RepositoryPolicy.__init__`` now requires stack_on and stack_on_pwd,
 
4411
  through the derived classes do not.  (Aaron Bentley)
 
4412
 
 
4413
Internals
 
4414
*********
 
4415
 
 
4416
* ``bzrlib.bzrdir.BzrDir.sprout`` now accepts ``stacked`` to control
 
4417
  creating stacked branches. (Robert Collins)
 
4418
 
 
4419
* Knit record serialisation is now stricter on what it will accept, to
 
4420
  guard against potential internal bugs, or broken input. (Robert Collins)
 
4421
 
 
4422
bzr 1.6beta1
 
4423
############
 
4424
 
 
4425
:Released: 2008-06-02
 
4426
 
 
4427
Commands that work on the revision history such as push, pull, missing,
 
4428
uncommit and log are now substantially faster.  This release adds a
 
4429
translation of some of the user documentation into Spanish.  (Contributions of
 
4430
other translations would be very welcome.)  Bazaar 1.6beta1 adds a new network
 
4431
protocol which is used by default and which allows for more efficient transfers
 
4432
and future extensions.
 
4433
 
 
4434
 
 
4435
Notes When Upgrading
 
4436
********************
 
4437
 
 
4438
* There is a new version of the network protocol used for bzr://, bzr+ssh://
 
4439
  and bzr+http:// connections.  This will allow more efficient requests and
 
4440
  responses, and more graceful fallback when a server is too old to
 
4441
  recognise a request from a more recent client.  Bazaar 1.6 will
 
4442
  interoperate with 0.16 and later versions, but servers should be upgraded
 
4443
  when possible.  Bazaar 1.6 no longer interoperates with 0.15 and earlier via
 
4444
  these protocols.  Use alternatives like SFTP or upgrade those servers.
 
4445
  (Andrew Bennetts, #83935)
 
4446
 
 
4447
Changes
 
4448
*******
 
4449
 
 
4450
* Deprecation warnings will not be suppressed when running ``bzr selftest``
 
4451
  so that developers can see if their code is using deprecated functions.
 
4452
  (John Arbash Meinel)
 
4453
 
 
4454
Features
 
4455
********
 
4456
 
 
4457
* Adding ``-Derror`` will now display a traceback when a plugin fails to
 
4458
  load. (James Westby)
 
4459
 
 
4460
Improvements
 
4461
************
 
4462
 
 
4463
* ``bzr branch/push/pull -r XXX`` now have a helper function for finding
 
4464
  the revno of the new revision (``Graph.find_distance_to_null``). This
 
4465
  should make something like ``bzr branch -r -100`` in a shared, no-trees
 
4466
  repository much snappier. (John Arbash Meinel)
 
4467
 
 
4468
* ``bzr log --short -r X..Y`` no longer needs to access the full revision
 
4469
  history. This makes it noticeably faster when logging the last few
 
4470
  revisions. (John Arbash Meinel)
 
4471
 
 
4472
* ``bzr ls`` now accepts ``-V`` as an alias for ``--versioned``.
 
4473
  (Jerad Cramp, #165086)
 
4474
 
 
4475
* ``bzr missing`` uses the new ``Graph.find_unique_ancestors`` and
 
4476
  ``Graph.find_differences`` to determine missing revisions without having
 
4477
  to search the whole ancestry. (John Arbash Meinel, #174625)
 
4478
 
 
4479
* ``bzr uncommit`` now uses partial history access, rather than always
 
4480
  extracting the full revision history for a branch. This makes it
 
4481
  resolve the appropriate revisions much faster (in testing it drops
 
4482
  uncommit from 1.5s => 0.4s). It also means ``bzr log --short`` is one
 
4483
  step closer to not using full revision history.
 
4484
  (John Arbash Meinel, #172649)
 
4485
 
 
4486
Bugfixes
 
4487
********
 
4488
 
 
4489
* ``bzr merge --lca`` should handle when two revisions have no common
 
4490
  ancestor other than NULL_REVISION. (John Arbash Meinel, #235715)
 
4491
 
 
4492
* ``bzr status`` was breaking if you merged the same revision twice.
 
4493
  (John Arbash Meinel, #235407)
 
4494
 
 
4495
* ``bzr push`` with both ``--overwrite`` and ``-r NNN`` options no longer
 
4496
  fails.  (Andrew Bennetts, #234229)
 
4497
 
 
4498
* Correctly track the base URL of a smart medium when using bzr+http://
 
4499
  URLs, which was causing spurious "No repository present" errors with
 
4500
  branches in shared repositories accessed over bzr+http.
 
4501
  (Andrew Bennetts, #230550)
 
4502
 
 
4503
* Define ``_remote_is_at_least_1_2`` on ``SmartClientMedium`` so that all
 
4504
  implementations have the attribute.  Fixes 'PyCurlTransport' object has no
 
4505
  attribute '_remote_is_at_least_1_2' attribute errors.
 
4506
  (Andrew Bennetts, #220806)
 
4507
 
 
4508
* Failure to delete an obsolete pack file should just give a warning
 
4509
  message, not a fatal error.  It may for example fail if the file is still
 
4510
  in use by another process.
 
4511
  (Martin Pool)
 
4512
 
 
4513
* Fix MemoryError during large fetches over HTTP by limiting the amount of
 
4514
  data we try to read per ``recv`` call.  The problem was observed with
 
4515
  Windows and a proxy, but might affect other environments as well.
 
4516
  (Eric Holmberg, #215426)
 
4517
 
 
4518
* Handle old merge directives correctly in Merger.from_mergeable.  Stricter
 
4519
  get_parent_map requirements exposed a latent bug here.  (Aaron Bentley)
 
4520
 
 
4521
* Issue a warning and ignore passwords declared in authentication.conf when
 
4522
  used for an ssh scheme (sftp or bzr+ssh).
 
4523
  (Vincent Ladeuil, #203186)
 
4524
 
 
4525
* Make both http implementations raise appropriate exceptions on 403
 
4526
  Forbidden when POSTing smart requests.
 
4527
  (Vincent Ladeuil, #230223)
 
4528
 
 
4529
* Properly *title* header names in http requests instead of capitalizing
 
4530
  them.
 
4531
  (Vincent Ladeuil, #229076)
 
4532
 
 
4533
* The "Unable to obtain lock" error message now also suggests using
 
4534
  ``bzr break-lock`` to fix it.  (Martin Albisetti, #139202)
 
4535
 
 
4536
* Treat an encoding of '' as ascii; this can happen when bzr is run
 
4537
  under vim on Mac OS X.
 
4538
  (Neil Martinsen-Burrell)
 
4539
 
 
4540
* ``VersionedFile.make_mpdiffs()`` was raising an exception that wasn't in
 
4541
  scope. (Daniel Fischer #235687)
 
4542
 
 
4543
Documentation
 
4544
*************
 
4545
 
 
4546
* Added directory structure and started translation of docs in spanish.
 
4547
  (Martin Albisetti, Lucio Albenga)
 
4548
 
 
4549
* Incorporate feedback from Jelmer Vernooij and Neil Martinsen-Burrell
 
4550
  on the plugin and integration chapters of the User Guide.
 
4551
  (Ian Clatworthy)
 
4552
 
 
4553
* More Bazaar developer documentation about packaging and release process,
 
4554
  and about use of Python reprs.
 
4555
  (Martin Pool, Martin Albisetti)
 
4556
 
 
4557
* Updated Tortise strategy document. (Mark Hammond)
 
4558
 
 
4559
Testing
 
4560
*******
 
4561
 
 
4562
* ``bzrlib.tests.adapt_tests`` was broken and unused - it has been fixed.
 
4563
  (Robert Collins)
 
4564
 
 
4565
* Fix the test HTTPServer to be isolated from chdir calls made while it is
 
4566
  running, allowing it to be used in blackbox tests. (Robert Collins)
 
4567
 
 
4568
* New helper function for splitting test suites
 
4569
  ``split_suite_by_condition``. (Robert Collins)
 
4570
 
 
4571
Internals
 
4572
*********
 
4573
 
 
4574
* ``Branch.missing_revisions`` has been deprecated. Similar functionality
 
4575
  can be obtained using ``bzrlib.missing.find_unmerged``. The api was
 
4576
  fairly broken, and the function was unused, so we are getting rid of it.
 
4577
  (John Arbash Meinel)
 
4578
 
 
4579
API Changes
 
4580
***********
 
4581
 
 
4582
* ``Branch.abspath`` is deprecated; use the Tree or Transport
 
4583
  instead.  (Martin Pool)
 
4584
 
 
4585
* ``Branch.update_revisions`` now takes an optional ``Graph``
 
4586
  object. This can be used by ``update_revisions`` when it is
 
4587
  checking ancestry, and allows callers to prefer request to go to a
 
4588
  local branch.  (John Arbash Meinel)
 
4589
 
 
4590
* Branch, Repository, Tree and BzrDir should expose a Transport as an
 
4591
  attribute if they have one, rather than having it indirectly accessible
 
4592
  as ``.control_files._transport``.  This doesn't add a requirement
 
4593
  to support a Transport in cases where it was not needed before;
 
4594
  it just simplifies the way it is reached.  (Martin Pool)
 
4595
 
 
4596
* ``bzr missing --mine-only`` will return status code 0 if you have no
 
4597
  new revisions, but the remote does. Similarly for ``--theirs-only``.
 
4598
  The new code only checks one side, so it doesn't know if the other
 
4599
  side has changes. This seems more accurate with the request anyway.
 
4600
  It also changes the output to print '[This|Other] branch is up to
 
4601
  date.' rather than displaying nothing.  (John Arbash Meinel)
 
4602
 
 
4603
* ``LockableFiles.put_utf8``, ``put_bytes`` and ``controlfilename``
 
4604
  are now deprecated in favor of using Transport operations.
 
4605
  (Martin Pool)
 
4606
 
 
4607
* Many methods on ``VersionedFile``, ``Repository`` and in
 
4608
  ``bzrlib.revision``  deprecated before bzrlib 1.5 have been removed.
 
4609
  (Robert Collins)
 
4610
 
 
4611
* ``RevisionSpec.wants_revision_history`` can be set to False for a given
 
4612
  ``RevisionSpec``. This will disable the existing behavior of passing in
 
4613
  the full revision history to ``self._match_on``. Useful for specs that
 
4614
  don't actually need access to the full history. (John Arbash Meinel)
 
4615
 
 
4616
* The constructors of ``SmartClientMedium`` and its subclasses now require a
 
4617
  ``base`` parameter.  ``SmartClientMedium`` implementations now also need
 
4618
  to provide a ``remote_path_from_transport`` method.  (Andrew Bennetts)
 
4619
 
 
4620
* The default permissions for creating new files and directories
 
4621
  should now be obtained from ``BzrDir._get_file_mode()`` and
 
4622
  ``_get_dir_mode()``, rather than from LockableFiles.  The ``_set_file_mode``
 
4623
  and ``_set_dir_mode`` variables on LockableFiles which were advertised
 
4624
  as a way for plugins to control this are no longer consulted.
 
4625
  (Martin Pool)
 
4626
 
 
4627
* ``VersionedFile.join`` is deprecated. This method required local
 
4628
  instances of both versioned file objects and was thus hostile to being
 
4629
  used for streaming from a smart server. The new get_record_stream and
 
4630
  insert_record_stream are meant to efficiently replace this method.
 
4631
  (Robert Collins)
 
4632
 
 
4633
* ``WorkingTree.set_parent_(ids/trees)`` will now filter out revisions
 
4634
  which are in the ancestry of other revisions. So if you merge the same
 
4635
  tree twice, or merge an ancestor of an existing merge, it will only
 
4636
  record the newest. (If you merge a descendent, it will replace its
 
4637
  ancestor). (John Arbash Meinel, #235407)
 
4638
 
 
4639
* ``WorkingTreeFormat2.stub_initialize_remote`` is now private.
 
4640
  (Martin Pool)
 
4641
 
 
4642
 
 
4643
bzr 1.5
 
4644
#######
 
4645
 
 
4646
:Released: 2008-05-16
 
4647
 
 
4648
This release of Bazaar includes several updates to the documentation, and fixes
 
4649
to prepare for making rich root support the default format. Many bugs have been
 
4650
squashed, including fixes to log, bzr+ssh inter-operation with older servers.
 
4651
 
 
4652
Changes
 
4653
*******
 
4654
 
 
4655
* Suppress deprecation warnings when bzrlib is a 'final' release. This way
 
4656
  users of packaged software won't be bothered with DeprecationWarnings,
 
4657
  but developers and testers will still see them. (John Arbash Meinel)
 
4658
 
 
4659
Documentation
 
4660
*************
 
4661
 
 
4662
* Incorporate feedback from Jelmer Vernooij and Neil Martinsen-Burrell
 
4663
  on the plugin and integration chapters of the User Guide.
 
4664
  (Ian Clatworthy)
 
4665
 
 
4666
 
 
4667
bzr 1.5rc1
 
4668
##########
 
4669
 
 
4670
:Released: 2008-05-09
 
4671
 
 
4672
Changes
 
4673
*******
 
4674
 
 
4675
* Broader support of GNU Emacs mail clients. Set
 
4676
  ``mail_client=emacsclient`` in your bazaar.conf and ``send`` will pop the
 
4677
  bundle in a mail buffer according to the value of ``mail-user-agent``
 
4678
  variable. (Xavier Maillard)
 
4679
 
 
4680
Improvements
 
4681
************
 
4682
 
 
4683
* Diff now handles revision specs like "branch:" and "submit:" more
 
4684
  efficiently.  (Aaron Bentley, #202928)
 
4685
 
 
4686
* More friendly error given when attempt to start the smart server
 
4687
  on an address already in use. (Andrea Corbellini, #200575)
 
4688
 
 
4689
* Pull completes much faster when there is nothing to pull.
 
4690
  (Aaron Bentley)
 
4691
 
 
4692
Bugfixes
 
4693
********
 
4694
 
 
4695
* Authentication.conf can define sections without password.
 
4696
  (Vincent Ladeuil, #199440)
 
4697
 
 
4698
* Avoid muttering every time a child update does not cause a progress bar
 
4699
  update. (John Arbash Meinel, #213771)
 
4700
 
 
4701
* ``Branch.reconcile()`` is now implemented. This allows ``bzr reconcile``
 
4702
  to fix when a Branch has a non-canonical mainline history. ``bzr check``
 
4703
  also detects this condition. (John Arbash Meinel, #177855)
 
4704
 
 
4705
* ``bzr log -r ..X bzr://`` was failing, because it was getting a request
 
4706
  for ``revision_id=None`` which was not a string.
 
4707
  (John Arbash Meinel, #211661)
 
4708
 
 
4709
* ``bzr commit`` now works with Microsoft's FTP service.
 
4710
  (Andreas Deininger)
 
4711
 
 
4712
* Catch definitions outside sections in authentication.conf.
 
4713
  (Vincent Ladeuil, #217650)
 
4714
 
 
4715
* Conversion from non-rich-root to rich-root(-pack) updates inventory
 
4716
  sha1s, even when bundles are used.  (Aaron Bentley, #181391)
 
4717
 
 
4718
* Conversion from non-rich-root to rich-root(-pack) works correctly even
 
4719
  though search keys are not topologically sorted.  (Aaron Bentley)
 
4720
 
 
4721
* Conversion from non-rich-root to rich-root(-pack) works even when a
 
4722
  parent revision has a different root id.  (Aaron Bentley, #177874)
 
4723
 
 
4724
* Disable strace testing until strace is fixed (see bug #103133) and emit a
 
4725
  warning when selftest ends to remind us of leaking tests.
 
4726
  (Vincent Ladeuil, #226769)
 
4727
 
 
4728
* Fetching all revisions from a repository does not cause pack collisions.
 
4729
  (Robert Collins, Aaron Bentley, #212908)
 
4730
 
 
4731
* Fix error about "attempt to add line-delta in non-delta knit".
 
4732
  (Andrew Bennetts, #217701)
 
4733
 
 
4734
* Pushing a branch in "dirstate" format (Branch5) over bzr+ssh would break
 
4735
  if the remote server was < version 1.2. This was due to a bug in the
 
4736
  RemoteRepository.get_parent_map() fallback code.
 
4737
  (John Arbash Meinel, #214894)
 
4738
 
 
4739
* Remove leftover code in ``bzr_branch`` that inappropriately creates
 
4740
  a ``branch-name`` file in the branch control directory.
 
4741
  (Martin Pool)
 
4742
 
 
4743
* Set SO_REUSEADDR on server sockets of ``bzr serve`` to avoid problems
 
4744
  rebinding the socket when starting the server a second time.
 
4745
  (John Arbash Meinel, Martin Pool, #164288)
 
4746
 
 
4747
* Severe performance degradation in fetching from knit repositories to
 
4748
  knits and packs due to parsing the entire revisions.kndx on every graph
 
4749
  walk iteration fixed by using the Repository.get_graph API.  There was
 
4750
  another regression in knit => knit fetching which re-read the index for
 
4751
  every revision each side had in common.
 
4752
  (Robert Collins, John Arbash Meinel)
 
4753
 
 
4754
* When logging the changes to a particular file, there was a bug if there
 
4755
  were ghosts in the revision ancestry. (John Arbash Meinel, #209948)
 
4756
 
 
4757
* xs4all's ftp server returns a temporary error when trying to list an
 
4758
  empty directory, rather than returning an empty list. Adding a
 
4759
  workaround so that we don't get spurious failures.
 
4760
  (John Arbash Meinel, #215522)
 
4761
 
 
4762
Documentation
 
4763
*************
 
4764
 
 
4765
* Expanded the User Guide to include new chapters on popular plugins and
 
4766
  integrating Bazaar into your environment. The *Best practices* chapter
 
4767
  was renamed to *Miscellaneous topics* as suggested by community
 
4768
  feedback as well. (Ian Clatworthy)
 
4769
 
 
4770
* Document outlining strategies for TortoiseBzr. (Mark Hammond)
 
4771
 
 
4772
* Improved the documentation on hooks. (Ian Clatworthy)
 
4773
 
 
4774
* Update authentication docs regarding ssh agents.
 
4775
  (Vincent Ladeuil, #183705)
 
4776
 
 
4777
Testing
 
4778
*******
 
4779
 
 
4780
* Add ``thread_name_suffix`` parameter to SmartTCPServer_for_testing, to
 
4781
  make it easy to identify which test spawned a thread with an unhandled
 
4782
  exception. (Andrew Bennetts)
 
4783
 
 
4784
* New ``--debugflag``/``-E`` option to ``bzr selftest`` for setting
 
4785
  options for debugging tests, these are complementary to the the -D
 
4786
  options.  The ``-Dselftest_debug`` global option has been replaced by the
 
4787
  ``-E=allow_debug`` option for selftest. (Andrew Bennetts)
 
4788
 
 
4789
* Parameterised test ids are preserved correctly to aid diagnosis of test
 
4790
  failures. (Robert Collins, Andrew Bennetts)
 
4791
 
 
4792
* selftest now accepts --starting-with <id> to load only the tests whose id
 
4793
  starts with the one specified. This greatly speeds up running the test
 
4794
  suite on a limited set of tests and can be used to run the tests for a
 
4795
  single module, a single class or even a single test.  (Vincent Ladeuil)
 
4796
 
 
4797
* The test suite modules have been modified to define load_tests() instead
 
4798
  of test_suite(). That speeds up selective loading (via --load-list)
 
4799
  significantly and provides many examples on how to migrate (grep for
 
4800
  load_tests).  (Vincent Ladeuil)
 
4801
 
 
4802
Internals
 
4803
*********
 
4804
 
 
4805
* ``Hooks.install_hook`` is now deprecated in favour of
 
4806
  ``Hooks.install_named_hook`` which adds a required ``name`` parameter, to
 
4807
  avoid having to call ``Hooks.name_hook``. (Daniel Watkins)
 
4808
 
 
4809
* Implement xml8 serializer.  (Aaron Bentley)
 
4810
 
 
4811
* New form ``@deprecated_method(deprecated_in(1, 5, 0))`` for making
 
4812
  deprecation wrappers.  (Martin Pool)
 
4813
 
 
4814
* ``Repository.revision_parents`` is now deprecated in favour of
 
4815
  ``Repository.get_parent_map([revid])[revid]``. (Jelmer Vernooij)
 
4816
 
 
4817
* The Python ``assert`` statement is no longer used in Bazaar source, and
 
4818
  a test checks this.  (Martin Pool)
 
4819
 
 
4820
API Changes
 
4821
***********
 
4822
 
 
4823
* ``bzrlib.status.show_pending_merges`` requires the repository to be
 
4824
  locked by the caller. Callers should have been doing it anyway, but it
 
4825
  will now raise an exception if they do not. (John Arbash Meinel)
 
4826
 
 
4827
* Repository.get_data_stream, Repository.get_data_stream_for_search(),
 
4828
  Repository.get_deltas_for_revsions(), Repository.revision_trees(),
 
4829
  Repository.item_keys_introduced_by() no longer take read locks.
 
4830
  (Aaron Bentley)
 
4831
 
 
4832
* ``LockableFiles.get_utf8`` and ``.get`` are deprecated, as a start
 
4833
  towards removing LockableFiles and ``.control_files`` entirely.
 
4834
  (Martin Pool)
 
4835
 
 
4836
* Methods deprecated prior to 1.1 have been removed.
 
4837
  (Martin Pool)
 
4838
 
 
4839
 
 
4840
bzr 1.4 
 
4841
#######
 
4842
 
 
4843
:Released: 2008-04-28
 
4844
 
 
4845
This release of Bazaar includes handy improvements to the speed of log and
 
4846
status, new options for several commands, improved documentation, and better
 
4847
hooks, including initial code for server-side hooks.  A number of bugs have
 
4848
been fixed, particularly in interoperability between different formats or
 
4849
different releases of Bazaar over there network.  There's been substantial
 
4850
internal work in both the repository and network code to enable new features
 
4851
and faster performance.
 
4852
 
 
4853
Bug Fixes
 
4854
*********
 
4855
 
 
4856
* Pushing a branch in "dirstate" format (Branch5) over bzr+ssh would break
 
4857
  if the remote server was < version 1.2.  This was due to a bug in the
 
4858
  RemoteRepository.get_parent_map() fallback code.
 
4859
  (John Arbash Meinel, Andrew Bennetts, #214894)
 
4860
 
 
4861
 
 
4862
bzr 1.4rc2
 
4863
##########
 
4864
 
 
4865
:Released: 2008-04-21
 
4866
 
 
4867
Bug Fixes
 
4868
*********
 
4869
 
 
4870
* ``bzr log -r ..X bzr://`` was failing, because it was getting a request
 
4871
  for ``revision_id=None`` which was not a string.
 
4872
  (John Arbash Meinel, #211661)
 
4873
 
 
4874
* Fixed a bug in handling ghost revisions when logging changes in a
 
4875
  particular file.  (John Arbash Meinel, #209948)
 
4876
 
 
4877
* Fix error about "attempt to add line-delta in non-delta knit".
 
4878
  (Andrew Bennetts, #205156)
 
4879
 
 
4880
* Fixed performance degradation in fetching from knit repositories to
 
4881
  knits and packs due to parsing the entire revisions.kndx on every graph
 
4882
  walk iteration fixed by using the Repository.get_graph API.  There was
 
4883
  another regression in knit => knit fetching which re-read the index for
 
4884
  every revision each side had in common.
 
4885
  (Robert Collins, John Arbash Meinel)
 
4886
 
 
4887
 
 
4888
bzr 1.4rc1
 
4889
##########
 
4890
 
 
4891
:Released: 2008-04-11
 
4892
 
 
4893
Changes
 
4894
*******
 
4895
 
 
4896
* bzr main script cannot be imported (Benjamin Peterson)
 
4897
 
 
4898
* On Linux bzr additionally looks for plugins in arch-independent site
 
4899
  directory. (Toshio Kuratomi)
 
4900
 
 
4901
* The ``set_rh`` branch hook is now deprecated. Please migrate
 
4902
  any plugins using this hook to use an alternative, e.g.
 
4903
  ``post_change_branch_tip``. (Ian Clatworthy)
 
4904
 
 
4905
* When a plugin cannot be loaded as the file path is not a valid
 
4906
  python module name bzr will now strip a ``bzr_`` prefix from the
 
4907
  front of the suggested name, as many plugins (e.g. bzr-svn)
 
4908
  want to be installed without this prefix. It is a common mistake
 
4909
  to have a folder named "bzr-svn" for that plugin, especially
 
4910
  as this is what bzr branch lp:bzr-svn will give you. (James Westby,
 
4911
  Andrew Cowie)
 
4912
 
 
4913
* UniqueIntegerBugTracker now appends bug-ids instead of joining
 
4914
  them to the base URL. Plugins that register bug trackers may
 
4915
  need a trailing / added to the base URL if one is not already there.
 
4916
  (James Wesby, Andrew Cowie)
 
4917
 
 
4918
Features
 
4919
********
 
4920
 
 
4921
* Added start_commit hook for mutable trees. (Jelmer Vernooij, #186422)
 
4922
 
 
4923
* ``status`` now accepts ``--no-pending`` to show the status without
 
4924
  listing pending merges, which speeds up the command a lot on large
 
4925
  histories.  (James Westby, #202830)
 
4926
 
 
4927
* New ``post_change_branch_tip`` hook that is called after the
 
4928
  branch tip is moved but while the branch is still write-locked.
 
4929
  See the User Reference for signature details.
 
4930
  (Ian Clatworthy, James Henstridge)
 
4931
 
 
4932
* Reconfigure can convert a branch to be standalone or to use a shared
 
4933
  repository.  (Aaron Bentley)
 
4934
 
 
4935
Improvements
 
4936
************
 
4937
 
 
4938
* The smart protocol now has support for setting branches' revision info
 
4939
  directly.  This should make operations like push slightly faster, and is a
 
4940
  step towards server-side hooks.  The new request method name is
 
4941
  ``Branch.set_last_revision_info``.  (Andrew Bennetts)
 
4942
 
 
4943
* ``bzr commit --fixes`` now recognises "gnome" as a tag by default.
 
4944
  (James Westby, Andrew Cowie)
 
4945
 
 
4946
* ``bzr switch`` will attempt to find branches to switch to relative to the
 
4947
  current branch. E.g. ``bzr switch branchname`` will look for
 
4948
  ``current_branch/../branchname``. (Robert Collins, Jelmer Vernooij,
 
4949
  Wouter van Heyst)
 
4950
 
 
4951
* Diff is now more specific about execute-bit changes it describes
 
4952
  (Chad Miller)
 
4953
 
 
4954
* Fetching data over HTTP is a bit faster when urllib is used.  This is done
 
4955
  by forcing it to recv 64k at a time when reading lines in HTTP headers,
 
4956
  rather than just 1 byte at a time.  (Andrew Bennetts)
 
4957
 
 
4958
* Log --short and --line are much faster when -r is not specified.
 
4959
  (Aaron Bentley)
 
4960
 
 
4961
* Merge is faster.  We no longer check a file's existence unnecessarily
 
4962
  when merging the execute bit.  (Aaron Bentley)
 
4963
 
 
4964
* ``bzr status`` on an explicit list of files no longer shows pending
 
4965
  merges, making it much faster on large trees. (John Arbash Meinel)
 
4966
 
 
4967
* The launchpad directory service now warns the user if they have not set
 
4968
  their launchpad login and are trying to resolve a URL using it, just
 
4969
  in case they want to do a write operation with it.  (James Westby)
 
4970
 
 
4971
* The smart protocol client is slightly faster, because it now only queries
 
4972
  the server for the protocol version once per connection.  Also, the HTTP
 
4973
  transport will now automatically probe for and use a smart server if
 
4974
  one is present.  You can use the new ``nosmart+`` transport decorator
 
4975
  to get the old behaviour.  (Andrew Bennetts)
 
4976
 
 
4977
* The ``version`` command takes a ``--short`` option to print just the
 
4978
  version number, for easier use in scripts.  (Martin Pool)
 
4979
 
 
4980
* Various operations with revision specs and commands that calculate
 
4981
  revnos and revision ids are faster.  (John A. Meinel, Aaron Bentley)
 
4982
 
 
4983
Bugfixes
 
4984
********
 
4985
 
 
4986
* Add ``root_client_path`` parameter to SmartWSGIApp and
 
4987
  SmartServerRequest.  This makes it possible to publish filesystem
 
4988
  locations that don't exactly match URL paths. SmartServerRequest
 
4989
  subclasses should use the new ``translate_client_path`` and
 
4990
  ``transport_from_client_path`` methods when dealing with paths received
 
4991
  from a client to take this into account.  (Andrew Bennetts, #124089)
 
4992
 
 
4993
* ``bzr mv a b`` can be now used also to rename previously renamed
 
4994
  directories, not only files. (Lukáš Lalinský, #107967)
 
4995
 
 
4996
* ``bzr uncommit --local`` can now remove revisions from the local
 
4997
  branch to be symmetric with ``bzr commit --local``.
 
4998
  (John Arbash Meinel, #93412)
 
4999
 
 
5000
* Don't ask for a password if there is no real terminal.
 
5001
  (Alexander Belchenko, #69851)
 
5002
 
 
5003
* Fix a bug causing a ValueError crash in ``parse_line_delta_iter`` when
 
5004
  fetching revisions from a knit to pack repository or vice versa using
 
5005
  bzr:// (including over http or ssh).
 
5006
  (#208418, Andrew Bennetts, Martin Pool, Robert Collins)
 
5007
 
 
5008
* Fixed ``_get_line`` in ``bzrlib.smart.medium``, which was buggy.  Also
 
5009
  fixed ``_get_bytes`` in the same module to use the push back buffer.
 
5010
  These bugs had no known impact in normal use, but were problematic for
 
5011
  developers working on the code, and were likely to cause real bugs sooner
 
5012
  or later.  (Andrew Bennetts)
 
5013
 
 
5014
* Implement handling of basename parameter for DefaultMail.  (James Westby)
 
5015
 
 
5016
* Incompatibility with Paramiko versions newer than 1.7.2 was fixed.
 
5017
  (Andrew Bennetts, #213425)
 
5018
 
 
5019
* Launchpad locations (lp: URLs) can be pulled.  (Aaron Bentley, #181945)
 
5020
 
 
5021
* Merges that add files to deleted root directories complete.  They
 
5022
  do create conflicts.  (Aaron Bentley, #210092)
 
5023
 
 
5024
* vsftp's return ``550 RNFR command failed.`` supported.
 
5025
  (Marcus Trautwig, #129786)
 
5026
 
 
5027
Documentation
 
5028
*************
 
5029
 
 
5030
* Improved documentation on send/merge relationship. (Peter Schuller)
 
5031
 
 
5032
* Minor fixes to the User Guide. (Matthew Fuller)
 
5033
 
 
5034
* Reduced the evangelism in the User Guide. (Ian Clatworthy)
 
5035
 
 
5036
* Added Integrating with Bazaar document for developers (Martin Albisetti)
 
5037
 
 
5038
API Breaks
 
5039
**********
 
5040
 
 
5041
* Attempting to pull data from a ghost aware repository (e.g. knits) into a
 
5042
  non-ghost aware repository such as weaves will now fail if there are
 
5043
  ghosts.  (Robert Collins)
 
5044
 
 
5045
* ``KnitVersionedFile`` no longer accepts an ``access_mode`` parameter, and
 
5046
  now requires the ``index`` and ``access_method`` parameters to be
 
5047
  supplied. A compatible shim has been kept in the new function
 
5048
  ``knit.make_file_knit``. (Robert Collins)
 
5049
 
 
5050
* Log formatters must now provide log_revision instead of show and
 
5051
  show_merge_revno methods. The latter had been deprecated since the 0.17
 
5052
  release. (James Westby)
 
5053
 
 
5054
* ``LoopbackSFTP`` is now called ``SocketAsChannelAdapter``.
 
5055
  (Andrew Bennetts)
 
5056
 
 
5057
* ``osutils.backup_file`` is removed. (Alexander Belchenko)
 
5058
 
 
5059
* ``Repository.get_revision_graph`` is deprecated, with no replacement
 
5060
  method. The method was size(history) and not desirable. (Robert Collins)
 
5061
 
 
5062
* ``revision.revision_graph`` is deprecated, with no replacement function.
 
5063
  The function was size(history) and not desirable. (Robert Collins)
 
5064
 
 
5065
* ``Transport.get_shared_medium`` is deprecated.  Use
 
5066
  ``Transport.get_smart_medium`` instead.  (Andrew Bennetts)
 
5067
 
 
5068
* ``VersionedFile`` factories now accept a get_scope parameter rather
 
5069
  than using a call to ``transaction_finished``, allowing the removal of
 
5070
  the fixed list of versioned files per repository. (Robert Collins)
 
5071
 
 
5072
* ``VersionedFile.annotate_iter`` is deprecated. While in principle this
 
5073
  allowed lower memory use, all users of annotations wanted full file
 
5074
  annotations, and there is no storage format suitable for incremental
 
5075
  line-by-line annotation. (Robert Collins)
 
5076
 
 
5077
* ``VersionedFile.clone_text`` is deprecated. This performance optimisation
 
5078
  is no longer used - reading the content of a file that is undergoing a
 
5079
  file level merge to identical state on two branches is rare enough, and
 
5080
  not expensive enough to special case. (Robert Collins)
 
5081
 
 
5082
* ``VersionedFile.clear_cache`` and ``enable_cache`` are deprecated.
 
5083
  These methods added significant complexity to the ``VersionedFile``
 
5084
  implementation, but were only used for optimising fetches from knits -
 
5085
  which can be done from outside the knit layer, or via a caching
 
5086
  decorator. As knits are not the default format, the complexity is no
 
5087
  longer worth paying. (Robert Collins)
 
5088
 
 
5089
* ``VersionedFile.create_empty`` is removed. This method presupposed a
 
5090
  sensible mapping to a transport for individual files, but pack backed
 
5091
  versioned files have no such mapping. (Robert Collins)
 
5092
 
 
5093
* ``VersionedFile.get_graph`` is deprecated, with no replacement method.
 
5094
  The method was size(history) and not desirable. (Robert Collins)
 
5095
 
 
5096
* ``VersionedFile.get_graph_with_ghosts`` is deprecated, with no
 
5097
  replacement method.  The method was size(history) and not desirable.
 
5098
  (Robert Collins)
 
5099
 
 
5100
* ``VersionedFile.get_parents`` is deprecated, please use
 
5101
  ``VersionedFile.get_parent_map``. (Robert Collins)
 
5102
 
 
5103
* ``VersionedFile.get_sha1`` is deprecated, please use
 
5104
  ``VersionedFile.get_sha1s``. (Robert Collins)
 
5105
 
 
5106
* ``VersionedFile.has_ghost`` is now deprecated, as it is both expensive
 
5107
  and unused outside of a single test. (Robert Collins)
 
5108
 
 
5109
* ``VersionedFile.iter_parents`` is now deprecated in favour of
 
5110
  ``get_parent_map`` which can be used to instantiate a Graph on a
 
5111
  VersionedFile. (Robert Collins)
 
5112
 
 
5113
* ``VersionedFileStore`` no longer uses the transaction parameter given
 
5114
  to most methods; amongst other things this means that the
 
5115
  get_weave_or_empty method no longer guarantees errors on a missing weave
 
5116
  in a readonly transaction, and no longer caches versioned file instances
 
5117
  which reduces memory pressure (but requires more careful management by
 
5118
  callers to preserve performance). (Robert Collins)
 
5119
 
 
5120
Testing
 
5121
*******
 
5122
 
 
5123
* New -Dselftest_debug flag disables clearing of the debug flags during
 
5124
  tests.  This is useful if you want to use e.g. -Dhpss to help debug a
 
5125
  failing test.  Be aware that using this feature is likely to cause
 
5126
  spurious test failures if used with the full suite. (Andrew Bennetts)
 
5127
 
 
5128
* selftest --load-list now uses a new more agressive test loader that will
 
5129
  avoid loading unneeded modules and building their tests. Plugins can use
 
5130
  this new loader by defining a load_tests function instead of a test_suite
 
5131
  function. (a forthcoming patch will provide many examples on how to
 
5132
  implement this).
 
5133
  (Vincent Ladeuil)
 
5134
 
 
5135
* selftest --load-list now does some sanity checks regarding duplicate test
 
5136
  IDs and tests present in the list but not found in the actual test suite.
 
5137
  (Vincent Ladeuil)
 
5138
 
 
5139
* Slightly more concise format for the selftest progress bar, so there's
 
5140
  more space to show the test name.  (Martin Pool) ::
 
5141
 
 
5142
    [2500/10884, 1fail, 3miss in 1m29s] test_revisionnamespaces.TestRev
 
5143
 
 
5144
* The test suite takes much less memory to run, and is a bit faster.  This
 
5145
  is done by clearing most attributes of TestCases after running them, if
 
5146
  they succeeded.  (Andrew Bennetts)
 
5147
 
 
5148
Internals
 
5149
*********
 
5150
 
 
5151
* Added ``_build_client_protocol`` to ``_SmartClient``.  (Andrew Bennetts)
 
5152
 
 
5153
* Added basic infrastructure for automatic plugin suggestion.
 
5154
  (Martin Albisetti)
 
5155
 
 
5156
* If a ``LockableFiles`` object is not explicitly unlocked (for example
 
5157
  because of a missing ``try/finally`` block, it will give a warning but
 
5158
  not automatically unlock itself.  (Previously they did.)  This
 
5159
  sometimes caused knock-on errors if for example the network connection
 
5160
  had already failed, and should not be relied upon by code.
 
5161
  (Martin Pool, #109520)
 
5162
 
 
5163
* ``make dist`` target to build a release tarball, and also
 
5164
  ``check-dist-tarball`` and ``dist-upload-escudero``.  (Martin Pool)
 
5165
 
 
5166
* The ``read_response_tuple`` method of ``SmartClientRequestProtocol*``
 
5167
  classes will now raise ``UnknownSmartMethod`` when appropriate, so that
 
5168
  callers don't need to try distinguish unknown request errors from other
 
5169
  errors.  (Andrew Bennetts)
 
5170
 
 
5171
* ``set_make_working_trees`` is now implemented provided on all repository
 
5172
  implementations (Aaron Bentley)
 
5173
 
 
5174
* ``VersionedFile`` now has a new method ``get_parent_map`` which, like
 
5175
  ``Graph.get_parent_map`` returns a dict of key:parents. (Robert Collins)
 
5176
 
 
5177
 
 
5178
bzr 1.3.1
 
5179
#########
 
5180
 
 
5181
:Released: 2008-04-09
 
5182
 
 
5183
No changes from 1.3.1rc1.
 
5184
 
 
5185
 
 
5186
bzr 1.3.1rc1
 
5187
############
 
5188
 
 
5189
:Released: 2008-04-04
 
5190
 
 
5191
Bug Fixes
 
5192
*********
 
5193
 
 
5194
* Fix a bug causing a ValueError crash in ``parse_line_delta_iter`` when
 
5195
  fetching revisions from a knit to pack repository or vice versa using
 
5196
  bzr:// (including over http or ssh).
 
5197
  (#208418, Andrew Bennetts, Martin Pool, Robert Collins)
 
5198
 
 
5199
 
 
5200
bzr 1.3
 
5201
#######
 
5202
 
 
5203
:Released: 2008-03-20
 
5204
 
 
5205
Bazaar has become part of the GNU project <http://www.gnu.org>
 
5206
 
 
5207
Many operations that act on history, including ``log`` and ``annotate`` are now
 
5208
substantially faster.  Several bugs have been fixed and several new options and
 
5209
features have been added.
 
5210
 
 
5211
Testing
 
5212
*******
 
5213
 
 
5214
* Avoid spurious failure of ``TestVersion.test_version`` matching
 
5215
  directory names.
 
5216
  (#202778, Martin Pool)
 
5217
 
 
5218
 
 
5219
bzr 1.3rc1
 
5220
##########
 
5221
 
 
5222
:Released: 2008-03-16
 
5223
 
 
5224
Notes When Upgrading
 
5225
********************
 
5226
 
 
5227
* The backup directory created by ``upgrade`` is now called
 
5228
  ``backup.bzr``, not ``.bzr.backup``. (Martin Albisetti)
 
5229
 
 
5230
Changes
 
5231
*******
 
5232
 
 
5233
* A new repository format 'development' has been added. This format will
 
5234
  represent the latest 'in-progress' format that the bzr developers are
 
5235
  interested in getting early-adopter testing and feedback on.
 
5236
  ``doc/developers/development-repo.txt`` has detailed information.
 
5237
  (Robert Collins)
 
5238
 
 
5239
* BZR_LOG environment variable controls location of .bzr.log trace file.
 
5240
  User can suppress writing messages to .bzr.log by using '/dev/null'
 
5241
  filename (on Linux) or 'NUL' (on Windows). If BZR_LOG variable
 
5242
  is not defined but BZR_HOME is defined then default location
 
5243
  for .bzr.log trace file is ``$BZR_HOME/.bzr.log``.
 
5244
  (Alexander Belchenko, #106117)
 
5245
 
 
5246
* ``launchpad`` builtin plugin now shipped as separate part in standalone
 
5247
  bzr.exe, installed to ``C:\Program Files\Bazaar\plugins`` directory,
 
5248
  and standalone installer allows user to skip installation of this plugin.
 
5249
  (Alexander Belchenko)
 
5250
 
 
5251
* Restore auto-detection of plink.exe on Windows. (Dmitry Vasiliev)
 
5252
 
 
5253
* Version number is now shown as "1.2" or "1.2pr2", without zeroed or
 
5254
  missing final fields.  (Martin Pool)
 
5255
 
 
5256
Features
 
5257
********
 
5258
 
 
5259
* ``branch`` and ``checkout`` can hard-link working tree files, which is
 
5260
  faster and saves space.  (Aaron Bentley)
 
5261
 
 
5262
* ``bzr send`` will now also look at the ``child_submit_to`` setting in
 
5263
  the submit branch to determine the email address to send to.
 
5264
  (Jelmer Vernooij)
 
5265
 
 
5266
Improvements
 
5267
************
 
5268
 
 
5269
* BzrBranch._lefthand_history is faster on pack repos.  (Aaron Bentley)
 
5270
 
 
5271
* Branch6.generate_revision_history is faster.  (Aaron Bentley)
 
5272
 
 
5273
* Directory services can now be registered, allowing special URLs to be
 
5274
  dereferenced into real URLs.  This is a generalization and cleanup of
 
5275
  the lp: transport lookup.  (Aaron Bentley)
 
5276
 
 
5277
* Merge directives that are automatically attached to emails have nicer
 
5278
  filenames, based on branch-nick + revno. (Aaron Bentley)
 
5279
 
 
5280
* ``push`` has a ``--revision`` option, to specify what revision to push up
 
5281
  to.  (Daniel Watkins)
 
5282
 
 
5283
* Significantly reducing execution time and network traffic for trivial
 
5284
  case of running ``bzr missing`` command for two identical branches.
 
5285
  (Alexander Belchenko)
 
5286
 
 
5287
* Speed up operations that look at the revision graph (such as 'bzr log').
 
5288
  ``KnitPackRepositor.get_revision_graph`` uses ``Graph.iter_ancestry`` to
 
5289
  extract the revision history. This allows filtering ghosts while
 
5290
  stepping instead of needing to peek ahead. (John Arbash Meinel)
 
5291
 
 
5292
* The ``hooks`` command lists installed hooks, to assist in debugging.
 
5293
  (Daniel Watkins)
 
5294
 
 
5295
* Updates to how ``annotate`` work. Should see a measurable improvement in
 
5296
  performance and memory consumption for file with a lot of merges.
 
5297
  Also, correctly handle when a line is introduced by both parents (it
 
5298
  should be attributed to the first merge which notices this, and not
 
5299
  to all subsequent merges.) (John Arbash Meinel)
 
5300
 
 
5301
Bugfixes
 
5302
********
 
5303
 
 
5304
* Autopacking no longer holds the full set of inventory lines in
 
5305
  memory while copying. For large repositories, this can amount to
 
5306
  hundreds of MB of ram consumption.
 
5307
  (Ian Clatworthy, John Arbash Meinel)
 
5308
 
 
5309
* Cherrypicking when using ``--format=merge3`` now explictly excludes
 
5310
  BASE lines. (John Arbash Meinel, #151731)
 
5311
 
 
5312
* Disable plink's interactive prompt for password.
 
5313
  (#107593, Dmitry Vasiliev)
 
5314
 
 
5315
* Encode command line arguments from unicode to user_encoding before
 
5316
  invoking external mail client in `bzr send` command.
 
5317
  (#139318, Alexander Belchenko)
 
5318
 
 
5319
* Fixed problem connecting to ``bzr+https://`` servers.
 
5320
  (#198793, John Ferlito)
 
5321
 
 
5322
* Improved error reporting in the Launchpad plugin. (Daniel Watkins,
 
5323
  #196618)
 
5324
 
 
5325
* Include quick-start-summary.svg file to python-based installer(s)
 
5326
  for Windows. (#192924, Alexander Belchenko)
 
5327
 
 
5328
* lca merge now respects specified files. (Aaron Bentley)
 
5329
 
 
5330
* Make version-info --custom imply --all. (#195560, James Westby)
 
5331
 
 
5332
* ``merge --preview`` now works for merges that add or modify
 
5333
  symlinks (James Henstridge)
 
5334
 
 
5335
* Redirecting the output from ``bzr merge`` (when the remembered
 
5336
  location is used) now works. (John Arbash Meinel)
 
5337
 
 
5338
* setup.py script explicitly checks for Python version.
 
5339
  (Jari Aalto, Alexander Belchenko, #200569)
 
5340
 
 
5341
* UnknownFormatErrors no longer refer to branches regardless of kind of
 
5342
  unknown format. (Daniel Watkins, #173980)
 
5343
 
 
5344
* Upgrade bundled ConfigObj to version 4.5.2, which properly quotes #
 
5345
  signs, among other small improvements. (Matt Nordhoff, #86838)
 
5346
 
 
5347
* Use correct indices when emitting LCA conflicts.  This fixes IndexError
 
5348
  errors.  (Aaron Bentley, #196780)
 
5349
 
 
5350
Documentation
 
5351
*************
 
5352
 
 
5353
* Explained how to use ``version-info --custom`` in the User Guide.
 
5354
  (Neil Martinsen-Burrell)
 
5355
 
 
5356
API Breaks
 
5357
**********
 
5358
 
 
5359
* Support for loading plugins from zip files and
 
5360
  ``bzrlib.plugin.load_from_zip()`` function are deprecated.
 
5361
  (Alexander Belchenko)
 
5362
 
 
5363
Testing
 
5364
*******
 
5365
 
 
5366
* Added missing blackbox tests for ``modified`` (Adrian Wilkins)
 
5367
 
 
5368
* The branch interface tests were invalid for branches using rich-root
 
5369
  repositories because the empty string is not a valid file-id.
 
5370
  (Robert Collins)
 
5371
 
 
5372
Internals
 
5373
*********
 
5374
 
 
5375
* ``Graph.iter_ancestry`` returns the ancestry of revision ids. Similar to
 
5376
  ``Repository.get_revision_graph()`` except it includes ghosts and you can
 
5377
  stop part-way through. (John Arbash Meinel)
 
5378
 
 
5379
* New module ``tools/package_mf.py`` provide custom module finder for
 
5380
  python packages (improves standard python library's modulefinder.py)
 
5381
  used by ``setup.py`` script while building standalone bzr.exe.
 
5382
  (Alexander Belchenko)
 
5383
 
 
5384
* New remote method ``RemoteBzrDir.find_repositoryV2`` adding support for
 
5385
  detecting external lookup support on remote repositories. This method is
 
5386
  now attempted first when lookup up repositories, leading to an extra
 
5387
  round trip on older bzr smart servers. (Robert Collins)
 
5388
 
 
5389
* Repository formats have a new supported-feature attribute
 
5390
  ``supports_external_lookups`` used to indicate repositories which support
 
5391
  falling back to other repositories when they have partial data.
 
5392
  (Robert Collins)
 
5393
 
 
5394
* ``Repository.get_revision_graph_with_ghosts`` and
 
5395
  ``bzrlib.revision.(common_ancestor,MultipleRevisionSources,common_graph)``
 
5396
  have been deprecated.  (John Arbash Meinel)
 
5397
 
 
5398
* ``Tree.iter_changes`` is now a public API, replacing the work-in-progress
 
5399
  ``Tree._iter_changes``. The api is now considered stable and ready for
 
5400
  external users.  (Aaron Bentley)
 
5401
 
 
5402
* The bzrdir format registry now accepts an ``alias`` keyword to
 
5403
  register_metadir, used to indicate that a format name is an alias for
 
5404
  some other format and thus should not be reported when describing the
 
5405
  format. (Robert Collins)
 
5406
 
 
5407
 
 
5408
bzr 1.2
 
5409
#######
 
5410
 
 
5411
:Released: 2008-02-15
 
5412
 
 
5413
Bug Fixes
 
5414
*********
 
5415
 
 
5416
* Fix failing test in Launchpad plugin. (Martin Pool)
 
5417
 
 
5418
 
 
5419
bzr 1.2rc1
 
5420
##########
 
5421
 
 
5422
:Released: 2008-02-13
 
5423
 
 
5424
Notes When Upgrading
 
5425
********************
 
5426
 
 
5427
* Fetching via the smart protocol may need to reconnect once during a fetch
 
5428
  if the remote server is running Bazaar 1.1 or earlier, because the client
 
5429
  attempts to use more efficient requests that confuse older servers.  You
 
5430
  may be required to re-enter a password or passphrase when this happens.
 
5431
  This won't happen if the server is upgraded to Bazaar 1.2.
 
5432
  (Andrew Bennetts)
 
5433
 
 
5434
Changes
 
5435
*******
 
5436
 
 
5437
* Fetching via bzr+ssh will no longer fill ghosts by default (this is
 
5438
  consistent with pack-0.92 fetching over SFTP). (Robert Collins)
 
5439
 
 
5440
* Formatting of ``bzr plugins`` output is changed to be more human-
 
5441
  friendly. Full path of plugins locations will be shown only with
 
5442
  ``--verbose`` command-line option. (Alexander Belchenko)
 
5443
 
 
5444
* ``merge`` now prefers to use the submit branch, but will fall back to
 
5445
  parent branch.  For many users, this has no effect.  But some users who
 
5446
  pull and merge on the same branch will notice a change.  This change
 
5447
  makes it easier to work on a branch on two different machines, pulling
 
5448
  between the machines, while merging from the upstream.
 
5449
  ``merge --remember`` can now be used to set the submit_branch.
 
5450
  (Aaron Bentley)
 
5451
 
 
5452
Features
 
5453
********
 
5454
 
 
5455
* ``merge --preview`` produces a diff of the changes merge would make,
 
5456
  but does not actually perform the merge.  (Aaron Bentley)
 
5457
 
 
5458
* New smart method ``Repository.get_parent_map`` for getting revision
 
5459
  parent data. This returns additional parent information topologically
 
5460
  adjacent to the requested data to reduce round trip latency impacts.
 
5461
  (Robert Collins)
 
5462
 
 
5463
* New smart method, ``Repository.stream_revisions_chunked``, for fetching
 
5464
  revision data that streams revision data via a chunked encoding.  This
 
5465
  avoids buffering large amounts of revision data on the server and on the
 
5466
  client, and sends less data to the server to request the revisions.
 
5467
  (Andrew Bennetts, Robert Collins, #178353)
 
5468
 
 
5469
* The launchpad plugin now handles lp urls of the form
 
5470
  ``lp://staging/``, ``lp://demo/``, ``lp://dev/`` to use the appropriate
 
5471
  launchpad instance to do the resolution of the branch identities.
 
5472
  This is primarily of use to Launchpad developers, but can also
 
5473
  be used by other users who want to try out Launchpad as
 
5474
  a branch location without messing up their public Launchpad
 
5475
  account.  Branches that are pushed to the staging environment
 
5476
  have an expected lifetime of one day. (Tim Penhey)
 
5477
 
 
5478
Improvements
 
5479
************
 
5480
 
 
5481
* Creating a new branch no longer tries to read the entire revision-history
 
5482
  unnecessarily over smart server operations. (Robert Collins)
 
5483
 
 
5484
* Fetching between different repository formats with compatible models now
 
5485
  takes advantage of the smart method to stream revisions.  (Andrew Bennetts)
 
5486
 
 
5487
* The ``--coverage`` option is now global, rather specific to ``bzr
 
5488
  selftest``.  (Andrew Bennetts)
 
5489
 
 
5490
* The ``register-branch`` command will now use the public url of the branch
 
5491
  containing the current directory, if one has been set and no explicit
 
5492
  branch is provided.  (Robert Collins)
 
5493
 
 
5494
* Tweak the ``reannotate`` code path to optimize the 2-parent case.
 
5495
  Speeds up ``bzr annotate`` with a pack repository by approx 3:2.
 
5496
  (John Arbash Meinel)
 
5497
 
 
5498
Bugfixes
 
5499
********
 
5500
 
 
5501
* Calculate remote path relative to the shared medium in _SmartClient.  This
 
5502
  is related to the problem in bug #124089.  (Andrew Bennetts)
 
5503
 
 
5504
* Cleanly handle connection errors in smart protocol version two, the same
 
5505
  way as they are handled by version one.  (Andrew Bennetts)
 
5506
 
 
5507
* Clearer error when ``version-info --custom`` is used without
 
5508
  ``--template`` (Lukáš Lalinský)
 
5509
 
 
5510
* Don't raise UnavailableFeature during test setup when medusa is not
 
5511
  available or tearDown is never called leading to nasty side effects.
 
5512
  (#137823, Vincent Ladeuil)
 
5513
 
 
5514
* If a plugin's test suite cannot be loaded, for example because of a syntax
 
5515
  error in the tests, then ``selftest`` fails, rather than just printing
 
5516
  a warning.  (Martin Pool, #189771)
 
5517
 
 
5518
* List possible values for BZR_SSH environment variable in env-variables
 
5519
  help topic. (Alexander Belchenko, #181842)
 
5520
 
 
5521
* New methods ``push_log_file`` and ``pop_log_file`` to intercept messages:
 
5522
  popping the log redirection now precisely restores the previous state,
 
5523
  which makes it easier to use bzr log output from other programs.
 
5524
  TestCaseInTempDir no longer depends on a log redirection being established
 
5525
  by the test framework, which lets bzr tests cleanly run from a normal
 
5526
  unittest runner.
 
5527
  (#124153, #124849, Martin Pool, Jonathan Lange)
 
5528
 
 
5529
* ``pull --quiet`` is now more quiet, in particular a message is no longer
 
5530
  printed when the remembered pull location is used. (James Westby,
 
5531
  #185907)
 
5532
 
 
5533
* ``reconfigure`` can safely be interrupted while fetching.
 
5534
  (Aaron Bentley, #179316)
 
5535
 
 
5536
* ``reconfigure`` preserves tags when converting to and from lightweight
 
5537
  checkouts.  (Aaron Bentley, #182040)
 
5538
 
 
5539
* Stop polluting /tmp when running selftest.
 
5540
  (Vincent Ladeuil, #123363)
 
5541
 
 
5542
* Switch from NFKC => NFC for normalization checks. NFC allows a few
 
5543
  more characters which should be considered valid.
 
5544
  (John Arbash Meinel, #185458)
 
5545
 
 
5546
* The launchpad plugin now uses the ``edge`` xmlrpc server to avoid
 
5547
  interacting badly with a bug on the launchpad side. (Robert Collins)
 
5548
 
 
5549
* Unknown hostnames when connecting to a ``bzr://`` URL no longer cause
 
5550
  tracebacks.  (Andrew Bennetts, #182849)
 
5551
 
 
5552
API Breaks
 
5553
**********
 
5554
 
 
5555
* Classes implementing Merge types like Merge3Merger must now accept (and
 
5556
  honour) a do_merge flag in their constructor.  (Aaron Bentley)
 
5557
 
 
5558
* ``Repository.add_inventory`` and ``add_revision`` now require the caller
 
5559
  to previously take a write lock (and start a write group.)
 
5560
  (Martin Pool)
 
5561
 
 
5562
Testing
 
5563
*******
 
5564
 
 
5565
* selftest now accepts --load-list <file> to load a test id list. This
 
5566
  speeds up running the test suite on a limited set of tests.
 
5567
  (Vincent Ladeuil)
 
5568
 
 
5569
Internals
 
5570
*********
 
5571
 
 
5572
* Add a new method ``get_result`` to graph search objects. The resulting
 
5573
  ``SearchResult`` can be used to recreate the search later, which will
 
5574
  be useful in reducing network traffic. (Robert Collins)
 
5575
 
 
5576
* Use convenience function to check whether two repository handles
 
5577
  are referring to the same repository in ``Repository.get_graph``.
 
5578
  (Jelmer Vernooij, #187162)
 
5579
 
 
5580
* Fetching now passes the find_ghosts flag through to the
 
5581
  ``InterRepository.missing_revision_ids`` call consistently for all
 
5582
  repository types. This will enable faster missing revision discovery with
 
5583
  bzr+ssh. (Robert Collins)
 
5584
 
 
5585
* Fix error handling in Repository.insert_data_stream. (Lukas Lalinsky)
 
5586
 
 
5587
* ``InterRepository.missing_revision_ids`` is now deprecated in favour of
 
5588
  ``InterRepository.search_missing_revision_ids`` which returns a
 
5589
  ``bzrlib.graph.SearchResult`` suitable for making requests from the smart
 
5590
  server. (Robert Collins)
 
5591
 
 
5592
* New error ``NoPublicBranch`` for commands that need a public branch to
 
5593
  operate. (Robert Collins)
 
5594
 
 
5595
* New method ``iter_inventories`` on Repository for access to many
 
5596
  inventories. This is primarily used by the ``revision_trees`` method, as
 
5597
  direct access to inventories is discouraged. (Robert Collins)
 
5598
 
 
5599
* New method ``next_with_ghosts`` on the Graph breadth-first-search objects
 
5600
  which will split out ghosts and present parents into two separate sets,
 
5601
  useful for code which needs to be aware of ghosts (e.g. fetching data
 
5602
  cares about ghosts during revision selection). (Robert Collins)
 
5603
 
 
5604
* Record a timestamp against each mutter to the trace file, relative to the
 
5605
  first import of bzrlib.  (Andrew Bennetts)
 
5606
 
 
5607
* ``Repository.get_data_stream`` is now deprecated in favour of
 
5608
  ``Repository.get_data_stream_for_search`` which allows less network
 
5609
  traffic when requesting data streams over a smart server. (Robert Collins)
 
5610
 
 
5611
* ``RemoteBzrDir._get_tree_branch`` no longer triggers ``_ensure_real``,
 
5612
  removing one round trip on many network operations. (Robert Collins)
 
5613
 
 
5614
* RemoteTransport's ``recommended_page_size`` method now returns 64k, like
 
5615
  SFTPTransport and HttpTransportBase.  (Andrew Bennetts)
 
5616
 
 
5617
* Repository has a new method ``has_revisions`` which signals the presence
 
5618
  of many revisions by returning a set of the revisions listed which are
 
5619
  present. This can be done by index queries without reading data for parent
 
5620
  revision names etc. (Robert Collins)
 
5621
 
 
5622
 
 
5623
bzr 1.1
 
5624
#######
 
5625
 
 
5626
:Released: 2008-01-15
 
5627
 
 
5628
(no changes from 1.1rc1)
 
5629
 
 
5630
bzr 1.1rc1
 
5631
##########
 
5632
 
 
5633
:Released: 2008-01-05
 
5634
 
 
5635
Changes
 
5636
*******
 
5637
 
 
5638
* Dotted revision numbers have been revised. Instead of growing longer with
 
5639
  nested branches the branch number just increases. (eg instead of 1.1.1.1.1
 
5640
  we now report 1.2.1.) This helps scale long lived branches which have many
 
5641
  feature branches merged between them. (John Arbash Meinel)
 
5642
 
 
5643
* The syntax ``bzr diff branch1 branch2`` is no longer supported.
 
5644
  Use ``bzr diff branch1 --new branch2`` instead. This change has
 
5645
  been made to remove the ambiguity where ``branch2`` is in fact a
 
5646
  specific file to diff within ``branch1``.
 
5647
 
 
5648
Features
 
5649
********
 
5650
 
 
5651
* New option to use custom template-based formats in  ``bzr version-info``.
 
5652
  (Lukáš Lalinský)
 
5653
 
 
5654
* diff '--using' allows an external diff tool to be used for files.
 
5655
  (Aaron Bentley)
 
5656
 
 
5657
* New "lca" merge-type for fast everyday merging that also supports
 
5658
  criss-cross merges.  (Aaron Bentley)
 
5659
 
 
5660
Improvements
 
5661
************
 
5662
 
 
5663
* ``annotate`` now doesn't require a working tree. (Lukáš Lalinský,
 
5664
  #90049)
 
5665
 
 
5666
* ``branch`` and ``checkout`` can now use files from a working tree to
 
5667
  to speed up the process.  For checkout, this requires the new
 
5668
  --files-from flag.  (Aaron Bentley)
 
5669
 
 
5670
* ``bzr diff`` now sorts files in alphabetical order.  (Aaron Bentley)
 
5671
 
 
5672
* ``bzr diff`` now works on branches without working trees. Tree-less
 
5673
  branches can also be compared to each other and to working trees using
 
5674
  the new diff options ``--old`` and ``--new``. Diffing between branches,
 
5675
  with or without trees, now supports specific file filtering as well.
 
5676
  (Ian Clatworthy, #6700)
 
5677
 
 
5678
* ``bzr pack`` now orders revision texts in topological order, with newest
 
5679
  at the start of the file, promoting linear reads for ``bzr log`` and the
 
5680
  like. This partially fixes #154129. (Robert Collins)
 
5681
 
 
5682
* Merge directives now fetch prerequisites from the target branch if
 
5683
  needed.  (Aaron Bentley)
 
5684
 
 
5685
* pycurl now handles digest authentication.
 
5686
  (Vincent Ladeuil)
 
5687
 
 
5688
* ``reconfigure`` can now convert from repositories.  (Aaron Bentley)
 
5689
 
 
5690
* ``-l`` is now a short form for ``--limit`` in ``log``.  (Matt Nordhoff)
 
5691
 
 
5692
* ``merge`` now warns when merge directives cause cherrypicks.
 
5693
  (Aaron Bentley)
 
5694
 
 
5695
* ``split`` now supported, to enable splitting large trees into smaller
 
5696
  pieces.  (Aaron Bentley)
 
5697
 
 
5698
Bugfixes
 
5699
********
 
5700
 
 
5701
* Avoid AttributeError when unlocking a pack repository when an error occurs.
 
5702
  (Martin Pool, #180208)
 
5703
 
 
5704
* Better handle short reads when processing multiple range requests.
 
5705
  (Vincent Ladeuil, #179368)
 
5706
 
 
5707
* build_tree acceleration uses the correct path when a file has been moved.
 
5708
  (Aaron Bentley)
 
5709
 
 
5710
* ``commit`` now succeeds when a checkout and its master branch share a
 
5711
  repository.  (Aaron Bentley, #177592)
 
5712
 
 
5713
* Fixed error reporting of unsupported timezone format in
 
5714
  ``log --timezone``. (Lukáš Lalinský, #178722)
 
5715
 
 
5716
* Fixed Unicode encoding error in ``ignored`` when the output is
 
5717
  redirected to a pipe. (Lukáš Lalinský)
 
5718
 
 
5719
* Fix traceback when sending large response bodies over the smart protocol
 
5720
  on Windows. (Andrew Bennetts, #115781)
 
5721
 
 
5722
* Fix ``urlutils.relative_url`` for the case of two ``file:///`` URLs
 
5723
  pointed to different logical drives on Windows.
 
5724
  (Alexander Belchenko, #90847)
 
5725
 
 
5726
* HTTP test servers are now compatible with the http protocol version 1.1.
 
5727
  (Vincent Ladeuil, #175524)
 
5728
 
 
5729
* _KnitParentsProvider.get_parent_map now handles requests for ghosts
 
5730
  correctly, instead of erroring or attributing incorrect parents to ghosts.
 
5731
  (Aaron Bentley)
 
5732
 
 
5733
* ``merge --weave --uncommitted`` now works.  (Aaron Bentley)
 
5734
 
 
5735
* pycurl authentication handling was broken and incomplete. Fix handling of
 
5736
  user:pass embedded in the urls.
 
5737
  (Vincent Ladeuil, #177643)
 
5738
 
 
5739
* Files inside non-directories are now handled like other conflict types.
 
5740
  (Aaron Bentley, #177390)
 
5741
 
 
5742
* ``reconfigure`` is able to convert trees into lightweight checkouts.
 
5743
  (Aaron Bentley)
 
5744
 
 
5745
* Reduce lockdir timeout to 0 when running ``bzr serve``.  (Andrew Bennetts,
 
5746
  #148087)
 
5747
 
 
5748
* Test that the old ``version_info_format`` functions still work, even
 
5749
  though they are deprecated. (John Arbash Meinel, ShenMaq, #177872)
 
5750
 
 
5751
* Transform failures no longer cause ImmortalLimbo errors (Aaron Bentley,
 
5752
  #137681)
 
5753
 
 
5754
* ``uncommit`` works even when the commit messages of revisions to be
 
5755
  removed use characters not supported in the terminal encoding.
 
5756
  (Aaron Bentley)
 
5757
 
 
5758
* When dumb http servers return whole files instead of the requested ranges,
 
5759
  read the remaining bytes by chunks to avoid overflowing network buffers.
 
5760
  (Vincent Ladeuil, #175886)
 
5761
 
 
5762
Documentation
 
5763
*************
 
5764
 
 
5765
* Minor tweaks made to the bug tracker integration documentation.
 
5766
  (Ian Clatworthy)
 
5767
 
 
5768
* Reference material has now be moved out of the User Guide and added
 
5769
  to the User Reference. The User Reference has gained 4 sections as
 
5770
  a result: Authenication Settings, Configuration Settings, Conflicts
 
5771
  and Hooks. All help topics are now dumped into text format in the
 
5772
  doc/en/user-reference directory for those who like browsing that
 
5773
  information in their editor. (Ian Clatworthy)
 
5774
 
 
5775
* *Using Bazaar with Launchpad* tutorial added. (Ian Clatworthy)
 
5776
 
 
5777
Internals
 
5778
*********
 
5779
 
 
5780
* find_* methods available for BzrDirs, Branches and WorkingTrees.
 
5781
  (Aaron Bentley)
 
5782
 
 
5783
* Help topics can now be loaded from files.
 
5784
  (Ian Clatworthy, Alexander Belchenko)
 
5785
 
 
5786
* get_parent_map now always provides tuples as its output.  (Aaron Bentley)
 
5787
 
 
5788
* Parent Providers should now implement ``get_parent_map`` returning a
 
5789
  dictionary instead of ``get_parents`` returning a list.
 
5790
  ``Graph.get_parents`` is now deprecated. (John Arbash Meinel,
 
5791
  Robert Collins)
 
5792
 
 
5793
* Patience Diff now supports arbitrary python objects, as long as they
 
5794
  support ``hash()``. (John Arbash Meinel)
 
5795
 
 
5796
* Reduce selftest overhead to establish test names by memoization.
 
5797
  (Vincent Ladeuil)
 
5798
 
 
5799
API Breaks
 
5800
**********
 
5801
 
 
5802
Testing
 
5803
*******
 
5804
 
 
5805
* Modules can now customise their tests by defining a ``load_tests``
 
5806
  attribute. ``pydoc bzrlib.tests.TestUtil.TestLoader.loadTestsFromModule``
 
5807
  for the documentation on this attribute. (Robert Collins)
 
5808
 
 
5809
* New helper function ``bzrlib.tests.condition_id_re`` which helps
 
5810
  filter tests based on a regular expression search on the tests id.
 
5811
  (Robert Collins)
 
5812
 
 
5813
* New helper function ``bzrlib.tests.condition_isinstance`` which helps
 
5814
  filter tests based on class. (Robert Collins)
 
5815
 
 
5816
* New helper function ``bzrlib.tests.exclude_suite_by_condition`` which
 
5817
  generalises the ``exclude_suite_by_re`` function. (Robert Collins)
 
5818
 
 
5819
* New helper function ``bzrlib.tests.filter_suite_by_condition`` which
 
5820
  generalises the ``filter_suite_by_re`` function. (Robert Collins)
 
5821
 
 
5822
* New helper method ``bzrlib.tests.exclude_tests_by_re`` which gives a new
 
5823
  TestSuite that does not contain tests from the input that matched a
 
5824
  regular expression. (Robert Collins)
 
5825
 
 
5826
* New helper method ``bzrlib.tests.randomize_suite`` which returns a
 
5827
  randomized copy of the input suite. (Robert Collins)
 
5828
 
 
5829
* New helper method ``bzrlib.tests.split_suite_by_re`` which splits a test
 
5830
  suite into two according to a regular expression. (Robert Collins)
 
5831
 
 
5832
* Parametrize all http tests for the transport implementations, the http
 
5833
  protocol versions (1.0 and 1.1) and the authentication schemes.
 
5834
  (Vincent Ladeuil)
 
5835
 
 
5836
* The ``exclude_pattern`` and ``random_order`` parameters to the function
 
5837
  ``bzrlib.tests.filter_suite_by_re`` have been deprecated. (Robert Collins)
 
5838
 
 
5839
* The method ``bzrlib.tests.sort_suite_by_re`` has been deprecated. It is
 
5840
  replaced by the new helper methods added in this release. (Robert Collins)
 
5841
 
 
5842
 
 
5843
bzr 1.0
 
5844
#######
 
5845
 
 
5846
:Released: 2007-12-14
 
5847
 
 
5848
Documentation
 
5849
*************
 
5850
 
 
5851
* More improvements and fixes to the User Guide.  (Ian Clatworthy)
 
5852
 
 
5853
* Add information on cherrypicking/rebasing to the User Guide.
 
5854
  (Ian Clatworthy)
 
5855
 
 
5856
* Improve bug tracker integration documentation. (Ian Clatworthy)
 
5857
 
 
5858
* Minor edits to ``Bazaar in five minutes`` from David Roberts and
 
5859
  to the rebasing section of the User Guide from Aaron Bentley.
 
5860
  (Ian Clatworthy)
 
5861
 
 
5862
 
 
5863
bzr 1.0rc3
 
5864
##########
 
5865
 
 
5866
:Released: 2007-12-11
 
5867
 
 
5868
Changes
 
5869
*******
 
5870
 
 
5871
* If a traceback occurs, users are now asked to report the bug
 
5872
  through Launchpad (https://bugs.launchpad.net/bzr/), rather than
 
5873
  by mail to the mailing list.
 
5874
  (Martin Pool)
 
5875
 
 
5876
Bugfixes
 
5877
********
 
5878
 
 
5879
* Fix Makefile rules for doc generation. (Ian Clatworthy, #175207)
 
5880
 
 
5881
* Give more feedback during long http downloads by making readv deliver data
 
5882
  as it arrives for urllib, and issue more requests for pycurl. High latency
 
5883
  networks are better handled by urllib, the pycurl implementation give more
 
5884
  feedback but also incur more latency.
 
5885
  (Vincent Ladeuil, #173010)
 
5886
 
 
5887
* Implement _make_parents_provider on RemoteRepository, allowing generating
 
5888
  bundles against branches on a smart server.  (Andrew Bennetts, #147836)
 
5889
 
 
5890
Documentation
 
5891
*************
 
5892
 
 
5893
* Improved user guide.  (Ian Clatworthy)
 
5894
 
 
5895
* The single-page quick reference guide is now available as a PDF.
 
5896
  (Ian Clatworthy)
 
5897
 
 
5898
Internals
 
5899
*********
 
5900
 
 
5901
* readv urllib http implementation is now a real iterator above the
 
5902
  underlying socket and deliver data as soon as it arrives. 'get' still
 
5903
  wraps its output in a StringIO.
 
5904
  (Vincent Ladeuil)
 
5905
 
 
5906
 
 
5907
bzr 1.0rc2
 
5908
##########
 
5909
 
 
5910
:Released: 2007-12-07
 
5911
 
 
5912
Improvements
 
5913
************
 
5914
 
 
5915
* Added a --coverage option to selftest. (Andrew Bennetts)
 
5916
 
 
5917
* Annotate merge (merge-type=weave) now supports cherrypicking.
 
5918
  (Aaron Bentley)
 
5919
 
 
5920
* ``bzr commit`` now doesn't print the revision number twice. (Matt
 
5921
  Nordhoff, #172612)
 
5922
 
 
5923
* New configuration option ``bugtracker_<tracker_abbrevation>_url`` to
 
5924
  define locations of bug trackers that are not directly supported by
 
5925
  bzr or a plugin. The URL will be treated as a template and ``{id}``
 
5926
  placeholders will be replaced by specific bug IDs.  (Lukáš Lalinský)
 
5927
 
 
5928
* Support logging single merge revisions with short and line log formatters.
 
5929
  (Kent Gibson)
 
5930
 
 
5931
* User Guide enhanced with suggested readability improvements from
 
5932
  Matt Revell and corrections from John Arbash Meinel. (Ian Clatworthy)
 
5933
 
 
5934
* Quick Start Guide renamed to Quick Start Card, moved down in
 
5935
  the catalog, provided in pdf and png format and updated to refer
 
5936
  to ``send`` instead of ``bundle``. (Ian Clatworthy, #165080)
 
5937
 
 
5938
* ``switch`` can now be used on heavyweight checkouts as well as
 
5939
  lightweight ones. After switching a heavyweight checkout, the
 
5940
  local branch is a mirror/cache of the new bound branch and
 
5941
  uncommitted changes in the working tree are merged. As a safety
 
5942
  check, if there are local commits in a checkout which have not
 
5943
  been committed to the previously bound branch, then ``switch``
 
5944
  fails unless the ``--force`` option is given. This option is
 
5945
  now also required if the branch a lightweight checkout is pointing
 
5946
  to has been moved. (Ian Clatworthy)
 
5947
 
 
5948
Internals
 
5949
*********
 
5950
 
 
5951
* New -Dhttp debug option reports http connections, requests and responses.
 
5952
  (Vincent Ladeuil)
 
5953
 
 
5954
* New -Dmerge debug option, which emits merge plans for merge-type=weave.
 
5955
 
 
5956
Bugfixes
 
5957
********
 
5958
 
 
5959
* Better error message when running ``bzr cat`` on a non-existant branch.
 
5960
  (Lukáš Lalinský, #133782)
 
5961
 
 
5962
* Catch OSError 17 (file exists) in final phase of tree transform and show
 
5963
  filename to user.
 
5964
  (Alexander Belchenko, #111758)
 
5965
 
 
5966
* Catch ShortReadvErrors while using pycurl. Also make readv more robust by
 
5967
  allowing multiple GET requests to be issued if too many ranges are
 
5968
  required.
 
5969
  (Vincent Ladeuil, #172701)
 
5970
 
 
5971
* Check for missing basis texts when fetching from packs to packs.
 
5972
  (John Arbash Meinel, #165290)
 
5973
 
 
5974
* Fall back to showing e-mail in ``log --short/--line`` if the
 
5975
  committer/author has only e-mail. (Lukáš Lalinský, #157026)
 
5976
 
 
5977
API Breaks
 
5978
**********
 
5979
 
 
5980
* Deprecate not passing a ``location`` argument to commit reporters'
 
5981
  ``started`` methods. (Matt Nordhoff)
 
5982
 
 
5983
 
 
5984
bzr 1.0rc1
 
5985
##########
 
5986
 
 
5987
:Released: 2007-11-30
 
5988
 
 
5989
Notes When Upgrading
 
5990
********************
 
5991
 
 
5992
* The default repository format is now ``pack-0.92``.  This
 
5993
  default is used when creating new repositories with ``init`` and
 
5994
  ``init-repo``, and when branching over bzr+ssh or bzr+hpss.
 
5995
  (See https://bugs.launchpad.net/bugs/164626)
 
5996
 
 
5997
  This format can be read and written by Bazaar 0.92 and later, and
 
5998
  data can be transferred to and from older formats.
 
5999
 
 
6000
  To upgrade, please reconcile your repository (``bzr reconcile``), and then
 
6001
  upgrade (``bzr upgrade``).
 
6002
 
 
6003
  ``pack-0.92`` offers substantially better scaling and performance than the
 
6004
  previous knits format. Some operations are slower where the code already
 
6005
  had bad scaling characteristics under knits, the pack format makes such
 
6006
  operations more visible as part of being more scalable overall. We will
 
6007
  correct such operations over the coming releases and encourage the filing
 
6008
  of bugs on any operation which you observe to be slower in a packs
 
6009
  repository. One particular case that we do not intend to fix is pulling
 
6010
  data from a pack repository into a knit repository over a high latency
 
6011
  link;  downgrading such data requires reinsertion of the file texts, and
 
6012
  this is a classic space/time tradeoff. The current implementation is
 
6013
  conservative on memory usage because we need to support converting data
 
6014
  from any tree without problems.
 
6015
  (Robert Collins, Martin Pool, #164476)
 
6016
 
 
6017
Changes
 
6018
*******
 
6019
 
 
6020
* Disable detection of plink.exe as possible ssh vendor. Plink vendor
 
6021
  still available if user selects it explicitly with BZR_SSH environment
 
6022
  variable. (Alexander Belchenko, workaround for bug #107593)
 
6023
 
 
6024
* The pack format is now accessible as "pack-0.92", or "pack-0.92-subtree"
 
6025
  to enable the subtree functions (for example, for bzr-svn).
 
6026
  (Martin Pool)
 
6027
 
 
6028
Features
 
6029
********
 
6030
 
 
6031
* New ``authentication.conf`` file holding the password or other credentials
 
6032
  for remote servers. This can be used for ssh, sftp, smtp and other
 
6033
  supported transports.
 
6034
  (Vincent Ladeuil)
 
6035
 
 
6036
* New rich-root and rich-root-pack formats, recording the same data about
 
6037
  tree roots that's recorded for all other directories.
 
6038
  (Aaron Bentley, #164639)
 
6039
 
 
6040
* ``pack-0.92`` repositories can now be reconciled.
 
6041
  (Robert Collins, #154173)
 
6042
 
 
6043
* ``switch`` command added for changing the branch a lightweight checkout
 
6044
  is associated with and updating the tree to reflect the latest content
 
6045
  accordingly. This command was previously part of the BzrTools plug-in.
 
6046
  (Ian Clatworthy, Aaron Bentley, David Allouche)
 
6047
 
 
6048
* ``reconfigure`` command can now convert branches, trees, or checkouts to
 
6049
  lightweight checkouts.  (Aaron Bentley)
 
6050
 
 
6051
Performance
 
6052
***********
 
6053
 
 
6054
* Commit updates the state of the working tree via a delta rather than
 
6055
  supplying entirely new basis trees. For commit of a single specified file
 
6056
  this reduces the wall clock time for commit by roughly a 30%.
 
6057
  (Robert Collins, Martin Pool)
 
6058
 
 
6059
* Commit with many automatically found deleted paths no longer performs
 
6060
  linear scanning for the children of those paths during inventory
 
6061
  iteration. This should fix commit performance blowing out when many such
 
6062
  paths occur during commit. (Robert Collins, #156491)
 
6063
 
 
6064
* Fetch with pack repositories will no longer read the entire history graph.
 
6065
  (Robert Collins, #88319)
 
6066
 
 
6067
* Revert takes out an appropriate lock when reverting to a basis tree, and
 
6068
  does not read the basis inventory twice. (Robert Collins)
 
6069
 
 
6070
* Diff does not require an inventory to be generated on dirstate trees.
 
6071
  (Aaron Bentley, #149254)
 
6072
 
 
6073
* New annotate merge (--merge-type=weave) implementation is fast on
 
6074
  versionedfiles withough cached annotations, e.g. pack-0.92.
 
6075
  (Aaron Bentley)
 
6076
 
 
6077
Improvements
 
6078
************
 
6079
 
 
6080
* ``bzr merge`` now warns when it encounters a criss-cross merge.
 
6081
  (Aaron Bentley)
 
6082
 
 
6083
* ``bzr send`` now doesn't require the target e-mail address to be
 
6084
  specified on the command line if an interactive e-mail client is used.
 
6085
  (Lukáš Lalinský)
 
6086
 
 
6087
* ``bzr tags`` now prints the revision number for each tag, instead of
 
6088
  the revision id, unless --show-ids is passed. In addition, tags can be
 
6089
  sorted chronologically instead of lexicographically with --sort=time.
 
6090
  (Adeodato Simó, #120231)
 
6091
 
 
6092
* Windows standalone version of bzr is able to load system-wide plugins from
 
6093
  "plugins" subdirectory in installation directory. In addition standalone
 
6094
  installer write to the registry (HKLM\SOFTWARE\Bazaar) useful info
 
6095
  about paths and bzr version. (Alexander Belchenko, #129298)
 
6096
 
 
6097
Documentation
 
6098
*************
 
6099
 
 
6100
Bug Fixes
 
6101
*********
 
6102
 
 
6103
* A progress bar has been added for knitpack -> knitpack fetching.
 
6104
  (Robert Collins, #157789, #159147)
 
6105
 
 
6106
* Branching from a branch via smart server now preserves the repository
 
6107
  format. (Andrew Bennetts,  #164626)
 
6108
 
 
6109
* ``commit`` is now able to invoke an external editor in a non-ascii
 
6110
  directory. (Daniel Watkins, #84043)
 
6111
 
 
6112
* Catch connection errors for ftp.
 
6113
  (Vincent Ladeuil, #164567)
 
6114
 
 
6115
* ``check`` no longer reports spurious unreferenced text versions.
 
6116
  (Robert Collins, John A Meinel, #162931, #165071)
 
6117
 
 
6118
* Conflicts are now resolved recursively by ``revert``.
 
6119
  (Aaron Bentley, #102739)
 
6120
 
 
6121
* Detect invalid transport reuse attempts by catching invalid URLs.
 
6122
  (Vincent Ladeuil, #161819)
 
6123
 
 
6124
* Deleting a file without removing it shows a correct diff, not a traceback.
 
6125
  (Aaron Bentley)
 
6126
 
 
6127
* Do no use timeout in HttpServer anymore.
 
6128
  (Vincent Ladeuil, #158972).
 
6129
 
 
6130
* Don't catch the exceptions related to the http pipeline status before
 
6131
  retrying an http request or some programming errors may be masked.
 
6132
  (Vincent Ladeuil, #160012)
 
6133
 
 
6134
* Fix ``bzr rm`` to not delete modified and ignored files.
 
6135
  (Lukáš Lalinský, #172598)
 
6136
 
 
6137
* Fix exception when revisionspec contains merge revisons but log
 
6138
  formatter doesn't support merge revisions. (Kent Gibson, #148908)
 
6139
 
 
6140
* Fix exception when ScopeReplacer is assigned to before any members have
 
6141
  been retrieved.  (Aaron Bentley)
 
6142
 
 
6143
* Fix multiple connections during checkout --lightweight.
 
6144
  (Vincent Ladeuil, #159150)
 
6145
 
 
6146
* Fix possible error in insert_data_stream when copying between
 
6147
  pack repositories over bzr+ssh or bzr+http.
 
6148
  KnitVersionedFile.get_data_stream now makes sure that requested
 
6149
  compression parents are sent before any delta hunks that depend
 
6150
  on them.
 
6151
  (Martin Pool, #164637)
 
6152
 
 
6153
* Fix typo in limiting offsets coalescing for http, leading to
 
6154
  whole files being downloaded instead of parts.
 
6155
  (Vincent Ladeuil, #165061)
 
6156
 
 
6157
* FTP server errors don't error in the error handling code.
 
6158
  (Robert Collins, #161240)
 
6159
 
 
6160
* Give a clearer message when a pull fails because the source needs
 
6161
  to be reconciled.
 
6162
  (Martin Pool, #164443)
 
6163
 
 
6164
* It is clearer when a plugin cannot be loaded because of its name, and a
 
6165
  suggestion for an acceptable name is given. (Daniel Watkins, #103023)
 
6166
 
 
6167
* Leave port as None in transport objects if user doesn't
 
6168
  specify a port in urls.
 
6169
  (vincent Ladeuil, #150860)
 
6170
 
 
6171
* Make sure Repository.fetch(self) is properly a no-op for all
 
6172
  Repository implementations. (John Arbash Meinel, #158333)
 
6173
 
 
6174
* Mark .bzr directories as "hidden" on Windows.
 
6175
  (Alexander Belchenko, #71147)
 
6176
 
 
6177
* ``merge --uncommitted`` can now operate on a single file.
 
6178
  (Aaron Bentley, Lukáš Lalinský, #136890)
 
6179
 
 
6180
* Obsolete packs are now cleaned up by pack and autopack operations.
 
6181
  (Robert Collins, #153789)
 
6182
 
 
6183
* Operations pulling data from a smart server where the underlying
 
6184
  repositories are not both annotated/both unannotated will now work.
 
6185
  (Robert Collins, #165304).
 
6186
 
 
6187
* Reconcile now shows progress bars. (Robert Collins, #159351)
 
6188
 
 
6189
* ``RemoteBranch`` was not initializing ``self._revision_id_to_revno_map``
 
6190
  properly. (John Arbash Meinel, #162486)
 
6191
 
 
6192
* Removing an already-removed file reports the file does not exist. (Daniel
 
6193
  Watkins, #152811)
 
6194
 
 
6195
* Rename on Windows is able to change filename case.
 
6196
  (Alexander Belchenko, #77740)
 
6197
 
 
6198
* Return error instead of a traceback for ``bzr log -r0``.
 
6199
  (Kent Gibson, #133751)
 
6200
 
 
6201
* Return error instead of a traceback when bzr is unable to create
 
6202
  symlink on some platforms (e.g. on Windows).
 
6203
  (Alexander Belchenko, workaround for #81689)
 
6204
 
 
6205
* Revert doesn't crash when restoring a single file from a deleted
 
6206
  directory. (Aaron Bentley)
 
6207
 
 
6208
* Stderr output via logging mechanism now goes through encoded wrapper
 
6209
  and no more uses utf-8, but terminal encoding instead. So all unicode
 
6210
  strings now should be readable in non-utf-8 terminal.
 
6211
  (Alexander Belchenko, #54173)
 
6212
 
 
6213
* The error message when ``move --after`` should be used makes how to do so
 
6214
  clearer. (Daniel Watkins, #85237)
 
6215
 
 
6216
* Unicode-safe output from ``bzr info``. The output will be encoded
 
6217
  using the terminal encoding and unrepresentable characters will be
 
6218
  replaced by '?'. (Lukáš Lalinský, #151844)
 
6219
 
 
6220
* Working trees are no longer created when pushing into a local no-trees
 
6221
  repo. (Daniel Watkins, #50582)
 
6222
 
 
6223
* Upgrade util/configobj to version 4.4.0.
 
6224
  (Vincent Ladeuil, #151208).
 
6225
 
 
6226
* Wrap medusa ftp test server as an FTPServer feature.
 
6227
  (Vincent Ladeuil, #157752)
 
6228
 
 
6229
API Breaks
 
6230
**********
 
6231
 
 
6232
* ``osutils.backup_file`` is deprecated. Actually it's not used in bzrlib
 
6233
  during very long time. (Alexander Belchenko)
 
6234
 
 
6235
* The return value of
 
6236
  ``VersionedFile.iter_lines_added_or_present_in_versions`` has been
 
6237
  changed. Previously it was an iterator of lines, now it is an iterator of
 
6238
  (line, version_id) tuples. This change has been made to aid reconcile and
 
6239
  fetch operations. (Robert Collins)
 
6240
 
 
6241
* ``bzrlib.repository.get_versioned_file_checker`` is now private.
 
6242
  (Robert Collins)
 
6243
 
 
6244
* The Repository format registry default has been removed; it was previously
 
6245
  obsoleted by the bzrdir format default, which implies a default repository
 
6246
  format.
 
6247
  (Martin Pool)
 
6248
 
 
6249
Internals
 
6250
*********
 
6251
 
 
6252
* Added ``ContainerSerialiser`` and ``ContainerPushParser`` to
 
6253
  ``bzrlib.pack``.  These classes provide more convenient APIs for generating
 
6254
  and parsing containers from streams rather than from files.  (Andrew
 
6255
  Bennetts)
 
6256
 
 
6257
* New module ``lru_cache`` providing a cache for use by tasks that need
 
6258
  semi-random access to large amounts of data. (John A Meinel)
 
6259
 
 
6260
* InventoryEntry.diff is now deprecated.  Please use diff.DiffTree instead.
 
6261
 
 
6262
 
 
6263
bzr 0.92
 
6264
########
 
6265
 
 
6266
:Released: 2007-11-05
 
6267
 
 
6268
Changes
 
6269
*******
 
6270
 
 
6271
  * New uninstaller on Win32.  (Alexander Belchenko)
 
6272
 
 
6273
 
 
6274
bzr 0.92rc1
 
6275
###########
 
6276
 
 
6277
:Released: 2007-10-29
 
6278
 
 
6279
Changes
 
6280
*******
 
6281
 
 
6282
* ``bzr`` now returns exit code 4 if an internal error occurred, and
 
6283
  3 if a normal error occurred.  (Martin Pool)
 
6284
 
 
6285
* ``pull``, ``merge`` and ``push`` will no longer silently correct some
 
6286
  repository index errors that occured as a result of the Weave disk format.
 
6287
  Instead the ``reconcile`` command needs to be run to correct those
 
6288
  problems if they exist (and it has been able to fix most such problems
 
6289
  since bzr 0.8). Some new problems have been identified during this release
 
6290
  and you should run ``bzr check`` once on every repository to see if you
 
6291
  need to reconcile. If you cannot ``pull`` or ``merge`` from a remote
 
6292
  repository due to mismatched parent errors - a symptom of index errors -
 
6293
  you should simply take a full copy of that remote repository to a clean
 
6294
  directory outside any local repositories, then run reconcile on it, and
 
6295
  finally pull from it locally. (And naturally email the repositories owner
 
6296
  to ask them to upgrade and run reconcile).
 
6297
  (Robert Collins)
 
6298
 
 
6299
Features
 
6300
********
 
6301
 
 
6302
* New ``knitpack-experimental`` repository format. This is interoperable with
 
6303
  the ``dirstate-tags`` format but uses a smarter storage design that greatly
 
6304
  speeds up many operations, both local and remote. This new format can be
 
6305
  used as an option to the ``init``, ``init-repository`` and ``upgrade``
 
6306
  commands. (Robert Collins)
 
6307
 
 
6308
* For users of bzr-svn (and those testing the prototype subtree support) that
 
6309
  wish to try packs, a new ``knitpack-subtree-experimental`` format has also
 
6310
  been added. This is interoperable with the ``dirstate-subtrees`` format.
 
6311
  (Robert Collins)
 
6312
 
 
6313
* New ``reconfigure`` command. (Aaron Bentley)
 
6314
 
 
6315
* New ``revert --forget-merges`` command, which removes the record of a pending
 
6316
  merge without affecting the working tree contents.  (Martin Pool)
 
6317
 
 
6318
* New ``bzr_remote_path`` configuration variable allows finer control of
 
6319
  remote bzr locations than BZR_REMOTE_PATH environment variable.
 
6320
  (Aaron Bentley)
 
6321
 
 
6322
* New ``launchpad-login`` command to tell Bazaar your Launchpad
 
6323
  user ID.  This can then be used by other functions of the
 
6324
  Launchpad plugin. (James Henstridge)
 
6325
 
 
6326
Performance
 
6327
***********
 
6328
 
 
6329
* Commit in quiet mode is now slightly faster as the information to
 
6330
  output is no longer calculated. (Ian Clatworthy)
 
6331
 
 
6332
* Commit no longer checks for new text keys during insertion when the
 
6333
  revision id was deterministically unique. (Robert Collins)
 
6334
 
 
6335
* Committing a change which is not a merge and does not change the number of
 
6336
  files in the tree is faster by utilising the data about whether files are
 
6337
  changed to determine if the tree is unchanged rather than recalculating
 
6338
  it at the end of the commit process. (Robert Collins)
 
6339
 
 
6340
* Inventory serialisation no longer double-sha's the content.
 
6341
  (Robert Collins)
 
6342
 
 
6343
* Knit text reconstruction now avoids making copies of the lines list for
 
6344
  interim texts when building a single text. The new ``apply_delta`` method
 
6345
  on ``KnitContent`` aids this by allowing modification of the revision id
 
6346
  such objects represent. (Robert Collins)
 
6347
 
 
6348
* Pack indices are now partially parsed for specific key lookup using a
 
6349
  bisection approach. (Robert Collins)
 
6350
 
 
6351
* Partial commits are now approximately 40% faster by walking over the
 
6352
  unselected current tree more efficiently. (Robert Collins)
 
6353
 
 
6354
* XML inventory serialisation takes 20% less time while being stricter about
 
6355
  the contents. (Robert Collins)
 
6356
 
 
6357
* Graph ``heads()`` queries have been fixed to no longer access all history
 
6358
  unnecessarily. (Robert Collins)
 
6359
 
 
6360
Improvements
 
6361
************
 
6362
 
 
6363
* ``bzr+https://`` smart server across https now supported.
 
6364
  (John Ferlito, Martin Pool, #128456)
 
6365
 
 
6366
* Mutt is now a supported mail client; set ``mail_client=mutt`` in your
 
6367
  bazaar.conf and ``send`` will use mutt. (Keir Mierle)
 
6368
 
 
6369
* New option ``-c``/``--change`` for ``merge`` command for cherrypicking
 
6370
  changes from one revision. (Alexander Belchenko, #141368)
 
6371
 
 
6372
* Show encodings, locale and list of plugins in the traceback message.
 
6373
  (Martin Pool, #63894)
 
6374
 
 
6375
* Experimental directory formats can now be marked with
 
6376
  ``experimental = True`` during registration. (Ian Clatworthy)
 
6377
 
 
6378
Documentation
 
6379
*************
 
6380
 
 
6381
* New *Bazaar in Five Minutes* guide.  (Matthew Revell)
 
6382
 
 
6383
* The hooks reference documentation is now converted to html as expected.
 
6384
  (Ian Clatworthy)
 
6385
 
 
6386
Bug Fixes
 
6387
*********
 
6388
 
 
6389
* Connection error reporting for the smart server has been fixed to
 
6390
  display a user friendly message instead of a traceback.
 
6391
  (Ian Clatworthy, #115601)
 
6392
 
 
6393
* Make sure to use ``O_BINARY`` when opening files to check their
 
6394
  sha1sum. (Alexander Belchenko, John Arbash Meinel, #153493)
 
6395
 
 
6396
* Fix a problem with Win32 handling of the executable bit.
 
6397
  (John Arbash Meinel, #149113)
 
6398
 
 
6399
* ``bzr+ssh://`` and ``sftp://`` URLs that do not specify ports explicitly
 
6400
  no longer assume that means port 22.  This allows people using OpenSSH to
 
6401
  override the default port in their ``~/.ssh/config`` if they wish.  This
 
6402
  fixes a bug introduced in bzr 0.91.  (Andrew Bennetts, #146715)
 
6403
 
 
6404
* Commands reporting exceptions can now be profiled and still have their
 
6405
  data correctly dumped to a file. For example, a ``bzr commit`` with
 
6406
  no changes still reports the operation as pointless but doing so no
 
6407
  longer throws away the profiling data if this command is run with
 
6408
  ``--lsprof-file callgrind.out.ci`` say. (Ian Clatworthy)
 
6409
 
 
6410
* Fallback to ftp when paramiko is not installed and sftp can't be used for
 
6411
  ``tests/commands`` so that the test suite is still usable without
 
6412
  paramiko.
 
6413
  (Vincent Ladeuil, #59150)
 
6414
 
 
6415
* Fix commit ordering in corner case. (Aaron Bentley, #94975)
 
6416
 
 
6417
* Fix long standing bug in partial commit when there are renames
 
6418
  left in tree. (Robert Collins, #140419)
 
6419
 
 
6420
* Fix selftest semi-random noise during http related tests.
 
6421
  (Vincent Ladeuil, #140614)
 
6422
 
 
6423
* Fix typo in ftp.py making the reconnection fail on temporary errors.
 
6424
  (Vincent Ladeuil, #154259)
 
6425
 
 
6426
* Fix failing test by comparing real paths to cover the case where the TMPDIR
 
6427
  contains a symbolic link.
 
6428
  (Vincent Ladeuil, #141382).
 
6429
 
 
6430
* Fix log against smart server branches that don't support tags.
 
6431
  (James Westby, #140615)
 
6432
 
 
6433
* Fix pycurl http implementation by defining error codes from
 
6434
  pycurl instead of relying on an old curl definition.
 
6435
  (Vincent Ladeuil, #147530)
 
6436
 
 
6437
* Fix 'unprintable error' message when displaying BzrCheckError and
 
6438
  some other exceptions on Python 2.5.
 
6439
  (Martin Pool, #144633)
 
6440
 
 
6441
* Fix ``Inventory.copy()`` and add test for it. (Jelmer Vernooij)
 
6442
 
 
6443
* Handles default value for ListOption in cmd_commit.
 
6444
  (Vincent Ladeuil, #140432)
 
6445
 
 
6446
* HttpServer and FtpServer need to be closed properly or a listening socket
 
6447
  will remain opened.
 
6448
  (Vincent Ladeuil, #140055)
 
6449
 
 
6450
* Monitor the .bzr directory created in the top level test
 
6451
  directory to detect leaking tests.
 
6452
  (Vincent Ladeuil, #147986)
 
6453
 
 
6454
* The basename, not the full path, is now used when checking whether
 
6455
  the profiling dump file begins with ``callgrind.out`` or not. This
 
6456
  fixes a bug reported by Aaron Bentley on IRC. (Ian Clatworthy)
 
6457
 
 
6458
* Trivial fix for invoking command ``reconfigure`` without arguments.
 
6459
  (Rob Weir, #141629)
 
6460
 
 
6461
* ``WorkingTree.rename_one`` will now raise an error if normalisation of the
 
6462
  new path causes bzr to be unable to access the file. (Robert Collins)
 
6463
 
 
6464
* Correctly detect a NoSuchFile when using a filezilla server. (Gary van der
 
6465
  Merwe)
 
6466
 
 
6467
API Breaks
 
6468
**********
 
6469
 
 
6470
* ``bzrlib.index.GraphIndex`` now requires a size parameter to the
 
6471
  constructor, for enabling bisection searches. (Robert Collins)
 
6472
 
 
6473
* ``CommitBuilder.record_entry_contents`` now requires the root entry of a
 
6474
  tree be supplied to it, previously failing to do so would trigger a
 
6475
  deprecation warning. (Robert Collins)
 
6476
 
 
6477
* ``KnitVersionedFile.add*`` will no longer cache added records even when
 
6478
  enable_cache() has been called - the caching feature is now exclusively for
 
6479
  reading existing data. (Robert Collins)
 
6480
 
 
6481
* ``ReadOnlyLockError`` is deprecated; ``LockFailed`` is usually more
 
6482
  appropriate.  (Martin Pool)
 
6483
 
 
6484
* Removed ``bzrlib.transport.TransportLogger`` - please see the new
 
6485
  ``trace+`` transport instead. (Robert Collins)
 
6486
 
 
6487
* Removed previously deprecated varargs interface to ``TestCase.run_bzr`` and
 
6488
  deprecated methods ``TestCase.capture`` and ``TestCase.run_bzr_captured``.
 
6489
  (Martin Pool)
 
6490
 
 
6491
* Removed previous deprecated ``basis_knit`` parameter to the
 
6492
  ``KnitVersionedFile`` constructor. (Robert Collins)
 
6493
 
 
6494
* Special purpose method ``TestCase.run_bzr_decode`` is moved to the test_non_ascii
 
6495
  class that needs it.
 
6496
  (Martin Pool)
 
6497
 
 
6498
* The class ``bzrlib.repofmt.knitrepo.KnitRepository3`` has been folded into
 
6499
  ``KnitRepository`` by parameters to the constructor. (Robert Collins)
 
6500
 
 
6501
* The ``VersionedFile`` interface now allows content checks to be bypassed
 
6502
  by supplying check_content=False.  This saves nearly 30% of the minimum
 
6503
  cost to store a version of a file. (Robert Collins)
 
6504
 
 
6505
* Tree's with bad state such as files with no length or sha will no longer
 
6506
  be silently accepted by the repository XML serialiser. To serialise
 
6507
  inventories without such data, pass working=True to write_inventory.
 
6508
  (Robert Collins)
 
6509
 
 
6510
* ``VersionedFile.fix_parents`` has been removed as a harmful API.
 
6511
  ``VersionedFile.join`` will no longer accept different parents on either
 
6512
  side of a join - it will either ignore them, or error, depending on the
 
6513
  implementation. See notes when upgrading for more information.
 
6514
  (Robert Collins)
 
6515
 
 
6516
Internals
 
6517
*********
 
6518
 
 
6519
* ``bzrlib.transport.Transport.put_file`` now returns the number of bytes
 
6520
  put by the method call, to allow avoiding stat-after-write or
 
6521
  housekeeping in callers. (Robert Collins)
 
6522
 
 
6523
* ``bzrlib.xml_serializer.Serializer`` is now responsible for checking that
 
6524
  mandatory attributes are present on serialisation and deserialisation.
 
6525
  This fixes some holes in API usage and allows better separation between
 
6526
  physical storage and object serialisation. (Robert Collins)
 
6527
 
 
6528
* New class ``bzrlib.errors.InternalBzrError`` which is just a convenient
 
6529
  shorthand for deriving from BzrError and setting internal_error = True.
 
6530
  (Robert Collins)
 
6531
 
 
6532
* New method ``bzrlib.mutabletree.update_to_one_parent_via_delta`` for
 
6533
  moving the state of a parent tree to a new version via a delta rather than
 
6534
  a complete replacement tree. (Robert Collins)
 
6535
 
 
6536
* New method ``bzrlib.osutils.minimum_path_selection`` useful for removing
 
6537
  duplication from user input, when a user mentions both a path and an item
 
6538
  contained within that path. (Robert Collins)
 
6539
 
 
6540
* New method ``bzrlib.repository.Repository.is_write_locked`` useful for
 
6541
  determining if a repository is write locked. (Robert Collins)
 
6542
 
 
6543
* New method on ``bzrlib.tree.Tree`` ``path_content_summary`` provides a
 
6544
  tuple containing the key information about a path for commit processing
 
6545
  to complete. (Robert Collins)
 
6546
 
 
6547
* New method on xml serialisers, write_inventory_to_lines, which matches the
 
6548
  API used by knits for adding content. (Robert Collins)
 
6549
 
 
6550
* New module ``bzrlib.bisect_multi`` with generic multiple-bisection-at-once
 
6551
  logic, currently only available for byte-based lookup
 
6552
  (``bisect_multi_bytes``). (Robert Collins)
 
6553
 
 
6554
* New helper ``bzrlib.tuned_gzip.bytes_to_gzip`` which takes a byte string
 
6555
  and returns a gzipped version of the same. This is used to avoid a bunch
 
6556
  of api friction during adding of knit hunks. (Robert Collins)
 
6557
 
 
6558
* New parameter on ``bzrlib.transport.Transport.readv``
 
6559
  ``adjust_for_latency`` which changes readv from returning strictly the
 
6560
  requested data to inserted return larger ranges and in forward read order
 
6561
  to reduce the effect of network latency. (Robert Collins)
 
6562
 
 
6563
* New parameter yield_parents on ``Inventory.iter_entries_by_dir`` which
 
6564
  causes the parents of a selected id to be returned recursively, so all the
 
6565
  paths from the root down to each element of selected_file_ids are
 
6566
  returned. (Robert Collins)
 
6567
 
 
6568
* Knit joining has been enhanced to support plain to annotated conversion
 
6569
  and annotated to plain conversion. (Ian Clatworthy)
 
6570
 
 
6571
* The CommitBuilder method ``record_entry_contents`` now returns summary
 
6572
  information about the effect of the commit on the repository. This tuple
 
6573
  contains an inventory delta item if the entry changed from the basis, and a
 
6574
  boolean indicating whether a new file graph node was recorded.
 
6575
  (Robert Collins)
 
6576
 
 
6577
* The python path used in the Makefile can now be overridden.
 
6578
  (Andrew Bennetts, Ian Clatworthy)
 
6579
 
 
6580
Testing
 
6581
*******
 
6582
 
 
6583
* New transport implementation ``trace+`` which is useful for testing,
 
6584
  logging activity taken to its _activity attribute. (Robert Collins)
 
6585
 
 
6586
* When running bzr commands within the test suite, internal exceptions are
 
6587
  not caught and reported in the usual way, but rather allowed to propagate
 
6588
  up and be visible to the test suite.  A new API ``run_bzr_catch_user_errors``
 
6589
  makes this behavior available to other users.
 
6590
  (Martin Pool)
 
6591
 
 
6592
* New method ``TestCase.call_catch_warnings`` for testing methods that
 
6593
  raises a Python warning.  (Martin Pool)
 
6594
 
 
6595
 
 
6596
bzr 0.91
 
6597
########
 
6598
 
 
6599
:Released: 2007-09-26
 
6600
 
 
6601
Bug Fixes
 
6602
*********
 
6603
 
 
6604
* Print a warning instead of aborting the ``python setup.py install``
 
6605
  process if building of a C extension is not possible.
 
6606
  (Lukáš Lalinský, Alexander Belchenko)
 
6607
 
 
6608
* Fix commit ordering in corner case (Aaron Bentley, #94975)
 
6609
 
 
6610
* Fix ''bzr info bzr://host/'' and other operations on ''bzr://' URLs with
 
6611
  an implicit port.  We were incorrectly raising PathNotChild due to
 
6612
  inconsistent treatment of the ''_port'' attribute on the Transport object.
 
6613
  (Andrew Bennetts, #133965)
 
6614
 
 
6615
* Make RemoteRepository.sprout cope gracefully with servers that don't
 
6616
  support the ``Repository.tarball`` request.
 
6617
  (Andrew Bennetts)
 
6618
 
 
6619
 
 
6620
bzr 0.91rc2
 
6621
###########
 
6622
 
 
6623
:Released: 2007-09-11
 
6624
 
 
6625
* Replaced incorrect tarball for previous release; a debug statement was left
 
6626
  in bzrlib/remote.py.
 
6627
 
 
6628
 
 
6629
bzr 0.91rc1
 
6630
###########
 
6631
 
 
6632
:Released: 2007-09-11
 
6633
 
 
6634
Changes
 
6635
*******
 
6636
 
 
6637
* The default branch and repository format has changed to
 
6638
  ``dirstate-tags``, so tag commands are active by default.
 
6639
  This format is compatible with Bazaar 0.15 and later.
 
6640
  This incidentally fixes bug #126141.
 
6641
  (Martin Pool)
 
6642
 
 
6643
* ``--quiet`` or ``-q`` is no longer a global option. If present, it
 
6644
  must now appear after the command name. Scripts doing things like
 
6645
  ``bzr -q missing`` need to be rewritten as ``bzr missing -q``.
 
6646
  (Ian Clatworthy)
 
6647
 
 
6648
Features
 
6649
********
 
6650
 
 
6651
* New option ``--author`` in ``bzr commit`` to specify the author of the
 
6652
  change, if it's different from the committer. ``bzr log`` and
 
6653
  ``bzr annotate`` display the author instead of the committer.
 
6654
  (Lukáš Lalinský)
 
6655
 
 
6656
* In addition to global options and command specific options, a set of
 
6657
  standard options are now supported. Standard options are legal for
 
6658
  all commands. The initial set of standard options are:
 
6659
 
 
6660
  * ``--help`` or ``-h`` - display help message
 
6661
  * ``--verbose`` or ``-v`` - display additional information
 
6662
  * ``--quiet``  or ``-q`` - only output warnings and errors.
 
6663
 
 
6664
  Unlike global options, standard options can be used in aliases and
 
6665
  may have command-specific help. (Ian Clatworthy)
 
6666
 
 
6667
* Verbosity level processing has now been unified. If ``--verbose``
 
6668
  or ``-v`` is specified on the command line multiple times, the
 
6669
  verbosity level is made positive the first time then increased.
 
6670
  If ``--quiet`` or ``-q`` is specified on the command line
 
6671
  multiple times, the verbosity level is made negative the first
 
6672
  time then decreased. To get the default verbosity level of zero,
 
6673
  either specify none of the above , ``--no-verbose`` or ``--no-quiet``.
 
6674
  Note that most commands currently ignore the magnitude of the
 
6675
  verbosity level but do respect *quiet vs normal vs verbose* when
 
6676
  generating output. (Ian Clatworthy)
 
6677
 
 
6678
* ``Branch.hooks`` now supports ``pre_commit`` hook. The hook's signature
 
6679
  is documented in BranchHooks constructor. (Nam T. Nguyen, #102747)
 
6680
 
 
6681
* New ``Repository.stream_knit_data_for_revisions`` request added to the
 
6682
  network protocol for greatly reduced roundtrips when retrieving a set of
 
6683
  revisions. (Andrew Bennetts)
 
6684
 
 
6685
Bug Fixes
 
6686
*********
 
6687
 
 
6688
* ``bzr plugins`` now lists the version number for each plugin in square
 
6689
  brackets after the path. (Robert Collins, #125421)
 
6690
 
 
6691
* Pushing, pulling and branching branches with subtree references was not
 
6692
  copying the subtree weave, preventing the file graph from being accessed
 
6693
  and causing errors in commits in clones. (Robert Collins)
 
6694
 
 
6695
* Suppress warning "integer argument expected, got float" from Paramiko,
 
6696
  which sometimes caused false test failures.  (Martin Pool)
 
6697
 
 
6698
* Fix bug in bundle 4 that could cause attempts to write data to wrong
 
6699
  versionedfile.  (Aaron Bentley)
 
6700
 
 
6701
* Diffs generated using "diff -p" no longer break the patch parser.
 
6702
  (Aaron Bentley)
 
6703
 
 
6704
* get_transport treats an empty possible_transports list the same as a non-
 
6705
  empty one.  (Aaron Bentley)
 
6706
 
 
6707
* patch verification for merge directives is reactivated, and works with
 
6708
  CRLF and CR files.  (Aaron Bentley)
 
6709
 
 
6710
* Accept ..\ as a path in revision specifiers. This fixes for example
 
6711
  "-r branch:..\other-branch" on Windows.  (Lukáš Lalinský)
 
6712
 
 
6713
* ``BZR_PLUGIN_PATH`` may now contain trailing slashes.
 
6714
  (Blake Winton, #129299)
 
6715
 
 
6716
* man page no longer lists hidden options (#131667, Aaron Bentley)
 
6717
 
 
6718
* ``uncommit --help`` now explains the -r option adequately.  (Daniel
 
6719
  Watkins, #106726)
 
6720
 
 
6721
* Error messages are now better formatted with parameters (such as
 
6722
  filenames) quoted when necessary. This avoids confusion when directory
 
6723
  names ending in a '.' at the end of messages were confused with a
 
6724
  full stop that may or not have been there. (Daniel Watkins, #129791)
 
6725
 
 
6726
* Fix ``status FILE -r X..Y``. (Lukáš Lalinský)
 
6727
 
 
6728
* If a particular command is an alias, ``help`` will show the alias
 
6729
  instead of claiming there is no help for said alias. (Daniel Watkins,
 
6730
  #133548)
 
6731
 
 
6732
* TreeTransform-based operations, like pull, merge, revert, and branch,
 
6733
  now roll back if they encounter an error.  (Aaron Bentley, #67699)
 
6734
 
 
6735
* ``bzr commit`` now exits cleanly if a character unsupported by the
 
6736
  current encoding is used in the commit message.  (Daniel Watkins,
 
6737
  #116143)
 
6738
 
 
6739
* bzr send uses default values for ranges when only half of an elipsis
 
6740
  is specified ("-r..5" or "-r5..").  (#61685, Aaron Bentley)
 
6741
 
 
6742
* Avoid trouble when Windows ssh calls itself 'plink' but no plink
 
6743
  binary is present.  (Martin Albisetti, #107155)
 
6744
 
 
6745
* ``bzr remove`` should remove clean subtrees.  Now it will remove (without
 
6746
  needing ``--force``) subtrees that contain no files with text changes or
 
6747
  modified files.  With ``--force`` it removes the subtree regardless of
 
6748
  text changes or unknown files. Directories with renames in or out (but
 
6749
  not changed otherwise) will now be removed without needing ``--force``.
 
6750
  Unknown ignored files will be deleted without needing ``--force``.
 
6751
  (Marius Kruger, #111665)
 
6752
 
 
6753
* When two plugins conflict, the source of both the losing and now the
 
6754
  winning definition is shown.  (Konstantin Mikhaylov, #5454)
 
6755
 
 
6756
* When committing to a branch, the location being committed to is
 
6757
  displayed.  (Daniel Watkins, #52479)
 
6758
 
 
6759
* ``bzr --version`` takes care about encoding of stdout, especially
 
6760
  when output is redirected. (Alexander Belchenko, #131100)
 
6761
 
 
6762
* Prompt for an ftp password if none is provided.
 
6763
  (Vincent Ladeuil, #137044)
 
6764
 
 
6765
* Reuse bound branch associated transport to avoid multiple
 
6766
  connections.
 
6767
  (Vincent Ladeuil, #128076, #131396)
 
6768
 
 
6769
* Overwrite conflicting tags by ``push`` and ``pull`` if the
 
6770
  ``--overwrite`` option is specified.  (Lukáš Lalinský, #93947)
 
6771
 
 
6772
* In checkouts, tags are copied into the master branch when created,
 
6773
  changed or deleted, and are copied into the checkout when it is
 
6774
  updated.  (Martin Pool, #93856, #93860)
 
6775
 
 
6776
* Print a warning instead of aborting the ``python setup.py install``
 
6777
  process if building of a C extension is not possible.
 
6778
  (Lukáš Lalinský, Alexander Belchenko)
 
6779
 
 
6780
Improvements
 
6781
************
 
6782
 
 
6783
* Add the option "--show-diff" to the commit command in order to display
 
6784
  the diff during the commit log creation. (Goffredo Baroncelli)
 
6785
 
 
6786
* ``pull`` and ``merge`` are much faster at installing bundle format 4.
 
6787
  (Aaron Bentley)
 
6788
 
 
6789
* ``pull -v`` no longer includes deltas, making it much faster.
 
6790
  (Aaron Bentley)
 
6791
 
 
6792
* ``send`` now sends the directive as an attachment by default.
 
6793
  (Aaron Bentley, Lukáš Lalinský, Alexander Belchenko)
 
6794
 
 
6795
* Documentation updates (Martin Albisetti)
 
6796
 
 
6797
* Help on debug flags is now included in ``help global-options``.
 
6798
  (Daniel Watkins, #124853)
 
6799
 
 
6800
* Parameters passed on the command line are checked to ensure they are
 
6801
  supported by the encoding in use. (Daniel Watkins)
 
6802
 
 
6803
* The compression used within the bzr repository has changed from zlib
 
6804
  level 9 to the zlib default level. This improves commit performance with
 
6805
  only a small increase in space used (and in some cases a reduction in
 
6806
  space). (Robert Collins)
 
6807
 
 
6808
* Initial commit no longer SHAs files twice and now reuses the path
 
6809
  rather than looking it up again, making it faster.
 
6810
  (Ian Clatworthy)
 
6811
 
 
6812
* New option ``-c``/``--change`` for ``diff`` and ``status`` to show
 
6813
  changes in one revision.  (Lukáš Lalinský)
 
6814
 
 
6815
* If versioned files match a given ignore pattern, a warning is now
 
6816
  given. (Daniel Watkins, #48623)
 
6817
 
 
6818
* ``bzr status`` now has -S as a short name for --short and -V as a
 
6819
  short name for --versioned. These have been added to assist users
 
6820
  migrating from Subversion: ``bzr status -SV`` is now like
 
6821
  ``svn status -q``.  (Daniel Watkins, #115990)
 
6822
 
 
6823
* Added C implementation of  ``PatienceSequenceMatcher``, which is about
 
6824
  10x faster than the Python version. This speeds up commands that
 
6825
  need file diffing, such as ``bzr commit`` or ``bzr diff``.
 
6826
  (Lukáš Lalinský)
 
6827
 
 
6828
* HACKING has been extended with a large section on core developer tasks.
 
6829
  (Ian Clatworthy)
 
6830
 
 
6831
* Add ``branches`` and ``standalone-trees`` as online help topics and
 
6832
  include them as Concepts within the User Reference.
 
6833
  (Paul Moore, Ian Clatworthy)
 
6834
 
 
6835
* ``check`` can detect versionedfile parent references that are
 
6836
  inconsistent with revision and inventory info, and ``reconcile`` can fix
 
6837
  them.  These faulty references were generated by 0.8-era releases,
 
6838
  so repositories which were manipulated by old bzrs should be
 
6839
  checked, and possibly reconciled ASAP.  (Aaron Bentley, Andrew Bennetts)
 
6840
 
 
6841
API Breaks
 
6842
**********
 
6843
 
 
6844
* ``Branch.append_revision`` is removed altogether; please use
 
6845
  ``Branch.set_last_revision_info`` instead.  (Martin Pool)
 
6846
 
 
6847
* CommitBuilder now advertises itself as requiring the root entry to be
 
6848
  supplied. This only affects foreign repository implementations which reuse
 
6849
  CommitBuilder directly and have changed record_entry_contents to require
 
6850
  that the root not be supplied. This should be precisely zero plugins
 
6851
  affected. (Robert Collins)
 
6852
 
 
6853
* The ``add_lines`` methods on ``VersionedFile`` implementations has changed
 
6854
  its return value to include the sha1 and length of the inserted text. This
 
6855
  allows the avoidance of double-sha1 calculations during commit.
 
6856
  (Robert Collins)
 
6857
 
 
6858
* ``Transport.should_cache`` has been removed.  It was not called in the
 
6859
  previous release.  (Martin Pool)
 
6860
 
 
6861
Testing
 
6862
*******
 
6863
 
 
6864
* Tests may now raise TestNotApplicable to indicate they shouldn't be
 
6865
  run in a particular scenario.  (Martin Pool)
 
6866
 
 
6867
* New function multiply_tests_from_modules to give a simpler interface
 
6868
  to test parameterization.  (Martin Pool, Robert Collins)
 
6869
 
 
6870
* ``Transport.should_cache`` has been removed.  It was not called in the
 
6871
  previous release.  (Martin Pool)
 
6872
 
 
6873
* NULL_REVISION is returned to indicate the null revision, not None.
 
6874
  (Aaron Bentley)
 
6875
 
 
6876
* Use UTF-8 encoded StringIO for log tests to avoid failures on
 
6877
  non-ASCII committer names.  (Lukáš Lalinský)
 
6878
 
 
6879
Internals
 
6880
*********
 
6881
 
 
6882
* ``bzrlib.plugin.all_plugins`` has been deprecated in favour of
 
6883
  ``bzrlib.plugin.plugins()`` which returns PlugIn objects that provide
 
6884
  useful functionality for determining the path of a plugin, its tests, and
 
6885
  its version information. (Robert Collins)
 
6886
 
 
6887
* Add the option user_encoding to the function 'show_diff_trees()'
 
6888
  in order to move the user encoding at the UI level. (Goffredo Baroncelli)
 
6889
 
 
6890
* Add the function make_commit_message_template_encoded() and the function
 
6891
  edit_commit_message_encoded() which handle encoded strings.
 
6892
  This is done in order to mix the commit messages (which is a unicode
 
6893
  string), and the diff which is a raw string. (Goffredo Baroncelli)
 
6894
 
 
6895
* CommitBuilder now defaults to using add_lines_with_ghosts, reducing
 
6896
  overhead on non-weave repositories which don't require all parents to be
 
6897
  present. (Robert Collins)
 
6898
 
 
6899
* Deprecated method ``find_previous_heads`` on
 
6900
  ``bzrlib.inventory.InventoryEntry``. This has been superseded by the use
 
6901
  of ``parent_candidates`` and a separate heads check via the repository
 
6902
  API. (Robert Collins)
 
6903
 
 
6904
* New trace function ``mutter_callsite`` will print out a subset of the
 
6905
  stack to the log, which can be useful for gathering debug details.
 
6906
  (Robert Collins)
 
6907
 
 
6908
* ``bzrlib.pack.ContainerWriter`` now tracks how many records have been
 
6909
  added via a public attribute records_written. (Robert Collins)
 
6910
 
 
6911
* New method ``bzrlib.transport.Transport.get_recommended_page_size``.
 
6912
  This provides a hint to users of transports as to the reasonable
 
6913
  minimum data to read. In principle this can take latency and
 
6914
  bandwidth into account on a per-connection basis, but for now it
 
6915
  just has hard coded values based on the url. (e.g. http:// has a large
 
6916
  page size, file:// has a small one.) (Robert Collins)
 
6917
 
 
6918
* New method on ``bzrlib.transport.Transport`` ``open_write_stream`` allows
 
6919
  incremental addition of data to a file without requiring that all the
 
6920
  data be buffered in memory. (Robert Collins)
 
6921
 
 
6922
* New methods on ``bzrlib.knit.KnitVersionedFile``:
 
6923
  ``get_data_stream(versions)``, ``insert_data_stream(stream)`` and
 
6924
  ``get_format_signature()``.  These provide some infrastructure for
 
6925
  efficiently streaming the knit data for a set of versions over the smart
 
6926
  protocol.
 
6927
 
 
6928
* Knits with no annotation cache still produce correct annotations.
 
6929
  (Aaron Bentley)
 
6930
 
 
6931
* Three new methods have been added to ``bzrlib.trace``:
 
6932
  ``set_verbosity_level``, ``get_verbosity_level`` and ``is_verbose``.
 
6933
  ``set_verbosity_level`` expects a numeric value: negative for quiet,
 
6934
  zero for normal, positive for verbose. The size of the number can be
 
6935
  used to determine just how quiet or verbose the application should be.
 
6936
  The existing ``be_quiet`` and ``is_quiet`` routines have been
 
6937
  integrated into this new scheme. (Ian Clatworthy)
 
6938
 
 
6939
* Options can now be delcared with a ``custom_callback`` parameter. If
 
6940
  set, this routine is called after the option is processed. This feature
 
6941
  is now used by the standard options ``verbose`` and ``quiet`` so that
 
6942
  setting one implicitly resets the other. (Ian Clatworthy)
 
6943
 
 
6944
* Rather than declaring a new option from scratch in order to provide
 
6945
  custom help, a centrally registered option can be decorated using the
 
6946
  new ``bzrlib.Option.custom_help`` routine. In particular, this routine
 
6947
  is useful when declaring better help for the ``verbose`` and ``quiet``
 
6948
  standard options as the base definition of these is now more complex
 
6949
  than before thanks to their use of a custom callback. (Ian Clatworthy)
 
6950
 
 
6951
* Tree._iter_changes(specific_file=[]) now iterates through no files,
 
6952
  instead of iterating through all files.  None is used to iterate through
 
6953
  all files.  (Aaron Bentley)
 
6954
 
 
6955
* WorkingTree.revert() now accepts None to revert all files.  The use of
 
6956
  [] to revert all files is deprecated.  (Aaron Bentley)
 
6957
 
 
6958
 
 
6959
bzr 0.90
 
6960
########
 
6961
 
 
6962
:Released: 2007-08-28
 
6963
 
 
6964
Improvements
 
6965
************
 
6966
 
 
6967
* Documentation is now organized into multiple directories with a level
 
6968
  added for different languages or locales. Added the Mini Tutorial
 
6969
  and Quick Start Summary (en) documents from the Wiki, improving the
 
6970
  content and readability of the former. Formatted NEWS as Release Notes
 
6971
  complete with a Table of Conents, one heading per release. Moved the
 
6972
  Developer Guide into the main document catalog and provided a link
 
6973
  from the developer document catalog back to the main one.
 
6974
  (Ian Clatworthy, Sabin Iacob, Alexander Belchenko)
 
6975
 
 
6976
 
 
6977
API Changes
 
6978
***********
 
6979
 
 
6980
* The static convenience method ``BzrDir.create_repository``
 
6981
  is deprecated.  Callers should instead create a ``BzrDir`` instance
 
6982
  and call ``create_repository`` on that.  (Martin Pool)
 
6983
 
 
6984
 
 
6985
bzr 0.90rc1
 
6986
###########
 
6987
 
 
6988
:Released: 2007-08-14
 
6989
 
 
6990
Bugfixes
 
6991
********
 
6992
 
 
6993
* ``bzr init`` should connect to the remote location one time only.  We
 
6994
  have been connecting several times because we forget to pass around the
 
6995
  Transport object. This modifies ``BzrDir.create_branch_convenience``,
 
6996
  so that we can give it the Transport we already have.
 
6997
  (John Arbash Meinel, Vincent Ladeuil, #111702)
 
6998
 
 
6999
* Get rid of sftp connection cache (get rid of the FTP one too).
 
7000
  (Vincent Ladeuil, #43731)
 
7001
 
 
7002
* bzr branch {local|remote} remote don't try to create a working tree
 
7003
  anymore.
 
7004
  (Vincent Ladeuil, #112173)
 
7005
 
 
7006
* All identified multiple connections for a single bzr command have been
 
7007
  fixed. See bzrlib/tests/commands directory.
 
7008
  (Vincent Ladeuil)
 
7009
 
 
7010
* ``bzr rm`` now does not insist on ``--force`` to delete files that
 
7011
  have been renamed but not otherwise modified.  (Marius Kruger,
 
7012
  #111664)
 
7013
 
 
7014
* ``bzr selftest --bench`` no longer emits deprecation warnings
 
7015
  (Lukáš Lalinský)
 
7016
 
 
7017
* ``bzr status`` now honours FILE parameters for conflict lists
 
7018
  (Aaron Bentley, #127606)
 
7019
 
 
7020
* ``bzr checkout`` now honours -r when reconstituting a working tree.
 
7021
  It also honours -r 0.  (Aaron Bentley, #127708)
 
7022
 
 
7023
* ``bzr add *`` no more fails on Windows if working tree contains
 
7024
  non-ascii file names. (Kuno Meyer, #127361)
 
7025
 
 
7026
* allow ``easy_install bzr`` runs without fatal errors.
 
7027
  (Alexander Belchenko, #125521)
 
7028
 
 
7029
* Graph._filter_candidate_lca does not raise KeyError if a candidate
 
7030
  is eliminated just before it would normally be examined.  (Aaron Bentley)
 
7031
 
 
7032
* SMTP connection failures produce a nice message, not a traceback.
 
7033
  (Aaron Bentley)
 
7034
 
 
7035
Improvements
 
7036
************
 
7037
 
 
7038
* Don't show "dots" progress indicators when run non-interactively, such
 
7039
  as from cron.  (Martin Pool)
 
7040
 
 
7041
* ``info`` now formats locations more nicely and lists "submit" and
 
7042
  "public" branches (Aaron Bentley)
 
7043
 
 
7044
* New ``pack`` command that will trigger database compression within
 
7045
  the repository (Robert Collins)
 
7046
 
 
7047
* Implement ``_KnitIndex._load_data`` in a pyrex extension. The pyrex
 
7048
  version is approximately 2-3x faster at parsing a ``.kndx`` file.
 
7049
  Which yields a measurable improvement for commands which have to
 
7050
  read from the repository, such as a 1s => 0.75s improvement in
 
7051
  ``bzr diff`` when there are changes to be shown.  (John Arbash Meinel)
 
7052
 
 
7053
* Merge is now faster.  Depending on the scenario, it can be more than 2x
 
7054
  faster. (Aaron Bentley)
 
7055
 
 
7056
* Give a clearer warning, and allow ``python setup.py install`` to
 
7057
  succeed even if pyrex is not available.
 
7058
  (John Arbash Meinel)
 
7059
 
 
7060
* ``DirState._read_dirblocks`` now has an optional Pyrex
 
7061
  implementation. This improves the speed of any command that has to
 
7062
  read the entire DirState. (``diff``, ``status``, etc, improve by
 
7063
  about 10%).
 
7064
  ``bisect_dirblocks`` has also been improved, which helps all
 
7065
  ``_get_entry`` type calls (whenever we are searching for a
 
7066
  particular entry in the in-memory DirState).
 
7067
  (John Arbash Meinel)
 
7068
 
 
7069
* ``bzr pull`` and ``bzr push`` no longer do a complete walk of the
 
7070
  branch revision history for ui display unless -v is supplied.
 
7071
  (Robert Collins)
 
7072
 
 
7073
* ``bzr log -rA..B`` output shifted to the left margin if the log only
 
7074
  contains merge revisions. (Kent Gibson)
 
7075
 
 
7076
* The ``plugins`` command is now public with improved help.
 
7077
  (Ian Clatworthy)
 
7078
 
 
7079
* New bundle and merge directive formats are faster to generate, and
 
7080
 
 
7081
* Annotate merge now works when there are local changes. (Aaron Bentley)
 
7082
 
 
7083
* Commit now only shows the progress in terms of directories instead of
 
7084
  entries. (Ian Clatworthy)
 
7085
 
 
7086
* Fix ``KnitRepository.get_revision_graph`` to not request the graph 2
 
7087
  times. This makes ``get_revision_graph`` 2x faster. (John Arbash
 
7088
  Meinel)
 
7089
 
 
7090
* Fix ``VersionedFile.get_graph()`` to avoid using
 
7091
  ``set.difference_update(other)``, which has bad scaling when
 
7092
  ``other`` is large. This improves ``VF.get_graph([version_id])`` for
 
7093
  a 12.5k graph from 2.9s down to 200ms. (John Arbash Meinel)
 
7094
 
 
7095
* The ``--lsprof-file`` option now generates output for KCacheGrind if
 
7096
  the file starts with ``callgrind.out``. This matches the default file
 
7097
  filtering done by KCacheGrind's Open Dialog. (Ian Clatworthy)
 
7098
 
 
7099
* Fix ``bzr update`` to avoid an unnecessary
 
7100
  ``branch.get_master_branch`` call, which avoids 1 extra connection
 
7101
  to the remote server. (Partial fix for #128076, John Arbash Meinel)
 
7102
 
 
7103
* Log errors from the smart server in the trace file, to make debugging
 
7104
  test failures (and live failures!) easier.  (Andrew Bennetts)
 
7105
 
 
7106
* The HTML version of the man page has been superceded by a more
 
7107
  comprehensive manual called the Bazaar User Reference. This manual
 
7108
  is completed generated from the online help topics. As part of this
 
7109
  change, limited reStructuredText is now explicitly supported in help
 
7110
  topics and command help with 'unnatural' markup being removed prior
 
7111
  to display by the online help or inclusion in the man page.
 
7112
  (Ian Clatworthy)
 
7113
 
 
7114
* HTML documentation now use files extension ``*.html``
 
7115
  (Alexander Belchenko)
 
7116
 
 
7117
* The cache of ignore definitions is now cleared in WorkingTree.unlock()
 
7118
  so that changes to .bzrignore aren't missed. (#129694, Daniel Watkins)
 
7119
 
 
7120
* ``bzr selftest --strict`` fails if there are any missing features or
 
7121
  expected test failures. (Daniel Watkins, #111914)
 
7122
 
 
7123
* Link to registration survey added to README. (Ian Clatworthy)
 
7124
 
 
7125
* Windows standalone installer show link to registration survey
 
7126
  when installation finished. (Alexander Belchenko)
 
7127
 
 
7128
Library API Breaks
 
7129
******************
 
7130
 
 
7131
* Deprecated dictionary ``bzrlib.option.SHORT_OPTIONS`` removed.
 
7132
  Options are now required to provide a help string and it must
 
7133
  comply with the style guide by being one or more sentences with an
 
7134
  initial capital and final period. (Martin Pool)
 
7135
 
 
7136
* KnitIndex.get_parents now returns tuples. (Robert Collins)
 
7137
 
 
7138
* Ancient unused ``Repository.text_store`` attribute has been removed.
 
7139
  (Robert Collins)
 
7140
 
 
7141
* The ``bzrlib.pack`` interface has changed to use tuples of bytestrings
 
7142
  rather than just bytestrings, making it easier to represent multiple
 
7143
  element names. As this interface was not used by any internal facilities
 
7144
  since it was introduced in 0.18 no API compatibility is being preserved.
 
7145
  The serialised form of these packs is identical with 0.18 when a single
 
7146
  element tuple is in use. (Robert Collins)
 
7147
 
 
7148
Internals
 
7149
*********
 
7150
 
 
7151
* merge now uses ``iter_changes`` to calculate changes, which makes room for
 
7152
  future performance increases.  It is also more consistent with other
 
7153
  operations that perform comparisons, and reduces reliance on
 
7154
  Tree.inventory.  (Aaron Bentley)
 
7155
 
 
7156
* Refactoring of transport classes connected to a remote server.
 
7157
  ConnectedTransport is a new class that serves as a basis for all
 
7158
  transports needing to connect to a remote server.  transport.split_url
 
7159
  have been deprecated, use the static method on the object instead. URL
 
7160
  tests have been refactored too.
 
7161
  (Vincent Ladeuil)
 
7162
 
 
7163
* Better connection sharing for ConnectedTransport objects.
 
7164
  transport.get_transport() now accepts a 'possible_transports' parameter.
 
7165
  If a newly requested transport can share a connection with one of the
 
7166
  list, it will.
 
7167
  (Vincent Ladeuil)
 
7168
 
 
7169
* Most functions now accept ``bzrlib.revision.NULL_REVISION`` to indicate
 
7170
  the null revision, and consider using ``None`` for this purpose
 
7171
  deprecated.  (Aaron Bentley)
 
7172
 
 
7173
* New ``index`` module with abstract index functionality. This will be
 
7174
  used during the planned changes in the repository layer. Currently the
 
7175
  index layer provides a graph aware immutable index, a builder for the
 
7176
  same index type to allow creating them, and finally a composer for
 
7177
  such indices to allow the use of many indices in a single query. The
 
7178
  index performance is not optimised, however the API is stable to allow
 
7179
  development on top of the index. (Robert Collins)
 
7180
 
 
7181
* ``bzrlib.dirstate.cmp_by_dirs`` can be used to compare two paths by
 
7182
  their directory sections. This is equivalent to comparing
 
7183
  ``path.split('/')``, only without having to split the paths.
 
7184
  This has a Pyrex implementation available.
 
7185
  (John Arbash Meinel)
 
7186
 
 
7187
* New transport decorator 'unlistable+' which disables the list_dir
 
7188
  functionality for testing.
 
7189
 
 
7190
* Deprecated ``change_entry`` in transform.py. (Ian Clatworthy)
 
7191
 
 
7192
* RevisionTree.get_weave is now deprecated.  Tree.plan_merge is now used
 
7193
  for performing annotate-merge.  (Aaron Bentley)
 
7194
 
 
7195
* New EmailMessage class to create email messages. (Adeodato Simó)
 
7196
 
 
7197
* Unused functions on the private interface KnitIndex have been removed.
 
7198
  (Robert Collins)
 
7199
 
 
7200
* New ``knit.KnitGraphIndex`` which provides a ``KnitIndex`` layered on top
 
7201
  of a ``index.GraphIndex``. (Robert Collins)
 
7202
 
 
7203
* New ``knit.KnitVersionedFile.iter_parents`` method that allows querying
 
7204
  the parents of many knit nodes at once, reducing round trips to the
 
7205
  underlying index. (Robert Collins)
 
7206
 
 
7207
* Graph now has an is_ancestor method, various bits use it.
 
7208
  (Aaron Bentley)
 
7209
 
 
7210
* The ``-Dhpss`` flag now includes timing information. As well as
 
7211
  logging when a new connection is opened. (John Arbash Meinel)
 
7212
 
 
7213
* ``bzrlib.pack.ContainerWriter`` now returns an offset, length tuple to
 
7214
  callers when inserting data, allowing generation of readv style access
 
7215
  during pack creation, without needing a separate pass across the output
 
7216
  pack to gather such details. (Robert Collins)
 
7217
 
 
7218
* ``bzrlib.pack.make_readv_reader`` allows readv based access to pack
 
7219
  files that are stored on a transport. (Robert Collins)
 
7220
 
 
7221
* New ``Repository.has_same_location`` method that reports if two
 
7222
  repository objects refer to the same repository (although with some risk
 
7223
  of false negatives).  (Andrew Bennetts)
 
7224
 
 
7225
* InterTree.compare now passes require_versioned on correctly.
 
7226
  (Marius Kruger)
 
7227
 
 
7228
* New methods on Repository - ``start_write_group``,
 
7229
  ``commit_write_group``, ``abort_write_group`` and ``is_in_write_group`` -
 
7230
  which provide a clean hook point for transactional Repositories - ones
 
7231
  where all the data for a fetch or commit needs to be made atomically
 
7232
  available in one step. This allows the write lock to remain while making
 
7233
  a series of data insertions.  (e.g. data conversion). (Robert Collins)
 
7234
 
 
7235
* In ``bzrlib.knit`` the internal interface has been altered to use
 
7236
  3-tuples (index, pos, length) rather than two-tuples (pos, length) to
 
7237
  describe where data in a knit is, allowing knits to be split into
 
7238
  many files. (Robert Collins)
 
7239
 
 
7240
* ``bzrlib.knit._KnitData`` split into cache management and physical access
 
7241
  with two access classes - ``_PackAccess`` and ``_KnitAccess`` defined.
 
7242
  The former provides access into a .pack file, and the latter provides the
 
7243
  current production repository form of .knit files. (Robert Collins)
 
7244
 
 
7245
Testing
 
7246
*******
 
7247
 
 
7248
* Remove selftest ``--clean-output``, ``--numbered-dirs`` and
 
7249
  ``--keep-output`` options, which are obsolete now that tests
 
7250
  are done within directories in $TMPDIR.  (Martin Pool)
 
7251
 
 
7252
* The SSH_AUTH_SOCK environment variable is now reset to avoid
 
7253
  interaction with any running ssh agents.  (Jelmer Vernooij, #125955)
 
7254
 
 
7255
* run_bzr_subprocess handles parameters the same way as run_bzr:
 
7256
  either a string or a list of strings should be passed as the first
 
7257
  parameter.  Varargs-style parameters are deprecated. (Aaron Bentley)
 
7258
 
 
7259
 
 
7260
bzr 0.18
 
7261
########
 
7262
 
 
7263
:Released:  2007-07-17
 
7264
 
 
7265
Bugfixes
 
7266
********
 
7267
 
 
7268
* Fix 'bzr add' crash under Win32 (Kuno Meyer)
 
7269
 
 
7270
 
 
7271
bzr 0.18rc1
 
7272
###########
 
7273
 
 
7274
:Released:  2007-07-10
 
7275
 
 
7276
Bugfixes
 
7277
********
 
7278
 
 
7279
* Do not suppress pipe errors, etc. in non-display commands
 
7280
  (Alexander Belchenko, #87178)
 
7281
 
 
7282
* Display a useful error message when the user requests to annotate
 
7283
  a file that is not present in the specified revision.
 
7284
  (James Westby, #122656)
 
7285
 
 
7286
* Commands that use status flags now have a reference to 'help
 
7287
  status-flags'.  (Daniel Watkins, #113436)
 
7288
 
 
7289
* Work around python-2.4.1 inhability to correctly parse the
 
7290
  authentication header.
 
7291
  (Vincent Ladeuil, #121889)
 
7292
 
 
7293
* Use exact encoding for merge directives. (Adeodato Simó, #120591)
 
7294
 
 
7295
* Fix tempfile permissions error in smart server tar bundling under
 
7296
  Windows. (Martin _, #119330)
 
7297
 
 
7298
* Fix detection of directory entries in the inventory. (James Westby)
 
7299
 
 
7300
* Fix handling of http code 400: Bad Request When issuing too many ranges.
 
7301
  (Vincent Ladeuil, #115209)
 
7302
 
 
7303
* Issue a CONNECT request when connecting to an https server
 
7304
  via a proxy to enable SSL tunneling.
 
7305
  (Vincent Ladeuil, #120678)
 
7306
 
 
7307
* Fix ``bzr log -r`` to support selecting merge revisions, both
 
7308
  individually and as part of revision ranges.
 
7309
  (Kent Gibson, #4663)
 
7310
 
 
7311
* Don't leave cruft behind when failing to acquire a lockdir.
 
7312
  (Martin Pool, #109169)
 
7313
 
 
7314
* Don't use the '-f' strace option during tests.
 
7315
  (Vincent Ladeuil, #102019).
 
7316
 
 
7317
* Warn when setting ``push_location`` to a value that will be masked by
 
7318
  locations.conf.  (Aaron Bentley, #122286)
 
7319
 
 
7320
* Fix commit ordering in corner case (Aaron Bentley, #94975)
 
7321
 
 
7322
*  Make annotate behave in a non-ASCII world (Adeodato Simó).
 
7323
 
 
7324
Improvements
 
7325
************
 
7326
 
 
7327
* The --lsprof-file option now dumps a text rendering of the profiling
 
7328
  information if the filename ends in ".txt". It will also convert the
 
7329
  profiling information to a format suitable for KCacheGrind if the
 
7330
  output filename ends in ".callgrind". Fixes to the lsprofcalltree
 
7331
  conversion process by Jean Paul Calderone and Itamar were also merged.
 
7332
  See http://ddaa.net/blog/python/lsprof-calltree. (Ian Clatworthy)
 
7333
 
 
7334
* ``info`` now defaults to non-verbose mode, displaying only paths and
 
7335
  abbreviated format info.  ``info -v`` displays all the information
 
7336
  formerly displayed by ``info``.  (Aaron Bentley, Adeodato Simó)
 
7337
 
 
7338
* ``bzr missing`` now has better option names ``--this`` and ``--other``.
 
7339
  (Elliot Murphy)
 
7340
 
 
7341
* The internal ``weave-list`` command has become ``versionedfile-list``,
 
7342
  and now lists knits as well as weaves.  (Aaron Bentley)
 
7343
 
 
7344
* Automatic merge base selection uses a faster algorithm that chooses
 
7345
  better bases in criss-cross merge situations (Aaron Bentley)
 
7346
 
 
7347
* Progress reporting in ``commit`` has been improved. The various logical
 
7348
  stages are now reported on as follows, namely:
 
7349
 
 
7350
  * Collecting changes [Entry x/y] - Stage n/m
 
7351
  * Saving data locally - Stage n/m
 
7352
  * Uploading data to master branch - Stage n/m
 
7353
  * Updating the working tree - Stage n/m
 
7354
  * Running post commit hooks - Stage n/m
 
7355
 
 
7356
  If there is no master branch, the 3rd stage is omitted and the total
 
7357
  number of stages is adjusted accordingly.
 
7358
 
 
7359
  Each hook that is run after commit is listed with a name (as hooks
 
7360
  can be slow it is useful feedback).
 
7361
  (Ian Clatworthy, Robert Collins)
 
7362
 
 
7363
* Various operations that are now faster due to avoiding unnecessary
 
7364
  topological sorts. (Aaron Bentley)
 
7365
 
 
7366
* Make merge directives robust against broken bundles. (Aaron Bentley)
 
7367
 
 
7368
* The lsprof filename note is emitted via trace.note(), not standard
 
7369
  output.  (Aaron Bentley)
 
7370
 
 
7371
* ``bzrlib`` now exports explicit API compatibility information to assist
 
7372
  library users and plugins. See the ``bzrlib.api`` module for details.
 
7373
  (Robert Collins)
 
7374
 
 
7375
* Remove unnecessary lock probes when acquiring a lockdir.
 
7376
  (Martin Pool)
 
7377
 
 
7378
* ``bzr --version`` now shows the location of the bzr log file, which
 
7379
  is especially useful on Windows.  (Martin Pool)
 
7380
 
 
7381
* -D now supports hooks to get debug tracing of hooks (though its currently
 
7382
  minimal in nature). (Robert Collins)
 
7383
 
 
7384
* Long log format reports deltas on merge revisions.
 
7385
  (John Arbash Meinel, Kent Gibson)
 
7386
 
 
7387
* Make initial push over ftp more resilient. (John Arbash Meinel)
 
7388
 
 
7389
* Print a summary of changes for update just like pull does.
 
7390
  (Daniel Watkins, #113990)
 
7391
 
 
7392
* Add a -Dhpss option to trace smart protocol requests and responses.
 
7393
  (Andrew Bennetts)
 
7394
 
 
7395
Library API Breaks
 
7396
******************
 
7397
 
 
7398
* Testing cleanups -
 
7399
  ``bzrlib.repository.RepositoryTestProviderAdapter`` has been moved
 
7400
  to ``bzrlib.tests.repository_implementations``;
 
7401
  ``bzrlib.repository.InterRepositoryTestProviderAdapter`` has been moved
 
7402
  to ``bzrlib.tests.interrepository_implementations``;
 
7403
  ``bzrlib.transport.TransportTestProviderAdapter`` has moved to
 
7404
  ``bzrlib.tests.test_transport_implementations``.
 
7405
  ``bzrlib.branch.BranchTestProviderAdapter`` has moved to
 
7406
  ``bzrlib.tests.branch_implementations``.
 
7407
  ``bzrlib.bzrdir.BzrDirTestProviderAdapter`` has moved to
 
7408
  ``bzrlib.tests.bzrdir_implementations``.
 
7409
  ``bzrlib.versionedfile.InterVersionedFileTestProviderAdapter`` has moved
 
7410
  to ``bzrlib.tests.interversionedfile_implementations``.
 
7411
  ``bzrlib.store.revision.RevisionStoreTestProviderAdapter`` has moved to
 
7412
  ``bzrlib.tests.revisionstore_implementations``.
 
7413
  ``bzrlib.workingtree.WorkingTreeTestProviderAdapter`` has moved to
 
7414
  ``bzrlib.tests.workingtree_implementations``.
 
7415
  These changes are an API break in the testing infrastructure only.
 
7416
  (Robert Collins)
 
7417
 
 
7418
* Relocate TestCaseWithRepository to be more central. (Robert Collins)
 
7419
 
 
7420
* ``bzrlib.add.smart_add_tree`` will no longer perform glob expansion on
 
7421
  win32. Callers of the function should do this and use the new
 
7422
  ``MutableTree.smart_add`` method instead. (Robert Collins)
 
7423
 
 
7424
* ``bzrlib.add.glob_expand_for_win32`` is now
 
7425
  ``bzrlib.win32utils.glob_expand``.  (Robert Collins)
 
7426
 
 
7427
* ``bzrlib.add.FastPath`` is now private and moved to
 
7428
  ``bzrlib.mutabletree._FastPath``. (Robert Collins, Martin Pool)
 
7429
 
 
7430
* ``LockDir.wait`` removed.  (Martin Pool)
 
7431
 
 
7432
* The ``SmartServer`` hooks API has changed for the ``server_started`` and
 
7433
  ``server_stopped`` hooks. The first parameter is now an iterable of
 
7434
  backing URLs rather than a single URL. This is to reflect that many
 
7435
  URLs may map to the external URL of the server. E.g. the server interally
 
7436
  may have a chrooted URL but also the local file:// URL will be at the
 
7437
  same location. (Robert Collins)
 
7438
 
 
7439
Internals
 
7440
*********
 
7441
 
 
7442
* New SMTPConnection class to unify email handling.  (Adeodato Simó)
 
7443
 
 
7444
* Fix documentation of BzrError. (Adeodato Simó)
 
7445
 
 
7446
* Make BzrBadParameter an internal error. (Adeodato Simó)
 
7447
 
 
7448
* Remove use of 'assert False' to raise an exception unconditionally.
 
7449
  (Martin Pool)
 
7450
 
 
7451
* Give a cleaner error when failing to decode knit index entry.
 
7452
  (Martin Pool)
 
7453
 
 
7454
* TreeConfig would mistakenly search the top level when asked for options
 
7455
  from a section. It now respects the section argument and only
 
7456
  searches the specified section. (James Westby)
 
7457
 
 
7458
* Improve ``make api-docs`` output. (John Arbash Meinel)
 
7459
 
 
7460
* Use os.lstat rather than os.stat for osutils.make_readonly and
 
7461
  osutils.make_writeable. This makes the difftools plugin more
 
7462
  robust when dangling symlinks are found. (Elliot Murphy)
 
7463
 
 
7464
* New ``-Dlock`` option to log (to ~/.bzr.log) information on when
 
7465
  lockdirs are taken or released.  (Martin Pool)
 
7466
 
 
7467
* ``bzrlib`` Hooks are now nameable using ``Hooks.name_hook``. This
 
7468
  allows a nicer UI when hooks are running as the current hook can
 
7469
  be displayed. (Robert Collins)
 
7470
 
 
7471
* ``Transport.get`` has had its interface made more clear for ease of use.
 
7472
  Retrieval of a directory must now fail with either 'PathError' at open
 
7473
  time, or raise 'ReadError' on a read. (Robert Collins)
 
7474
 
 
7475
* New method ``_maybe_expand_globs`` on the ``Command`` class for
 
7476
  dealing with unexpanded glob lists - e.g. on the win32 platform. This
 
7477
  was moved from ``bzrlib.add._prepare_file_list``. (Robert Collins)
 
7478
 
 
7479
* ``bzrlib.add.smart_add`` and ``bzrlib.add.smart_add_tree`` are now
 
7480
  deprecated in favour of ``MutableTree.smart_add``. (Robert Collins,
 
7481
  Martin Pool)
 
7482
 
 
7483
* New method ``external_url`` on Transport for obtaining the url to
 
7484
  hand to external processes. (Robert Collins)
 
7485
 
 
7486
* Teach windows installers to build pyrex/C extensions.
 
7487
  (Alexander Belchenko)
 
7488
 
 
7489
Testing
 
7490
*******
 
7491
 
 
7492
* Removed the ``--keep-output`` option from selftest and clean up test
 
7493
  directories as they're used.  This reduces the IO load from
 
7494
  running the test suite and cuts the time by about half.
 
7495
  (Andrew Bennetts, Martin Pool)
 
7496
 
 
7497
* Add scenarios as a public attribute on the TestAdapter classes to allow
 
7498
  modification of the generated scenarios before adaption and easier
 
7499
  testing. (Robert Collins)
 
7500
 
 
7501
* New testing support class ``TestScenarioApplier`` which multiplies
 
7502
  out a single teste by a list of supplied scenarios. (RobertCollins)
 
7503
 
 
7504
* Setting ``repository_to_test_repository`` on a repository_implementations
 
7505
  test will cause it to be called during repository creation, allowing the
 
7506
  testing of repository classes which are not based around the Format
 
7507
  concept. For example a repository adapter can be tested in this manner,
 
7508
  by altering the repository scenarios to include a scenario that sets this
 
7509
  attribute during the test parameterisation in
 
7510
  ``bzrlib.tests.repository.repository_implementations``. (Robert Collins)
 
7511
 
 
7512
* Clean up many of the APIs for blackbox testing of Bazaar.  The standard
 
7513
  interface is now self.run_bzr.  The command to run can be passed as
 
7514
  either a list of parameters, a string containing the command line, or
 
7515
  (deprecated) varargs parameters.  (Martin Pool)
 
7516
 
 
7517
* The base TestCase now isolates tests from -D parameters by clearing
 
7518
  ``debug.debug_flags`` and restores it afterwards. (Robert Collins)
 
7519
 
 
7520
* Add a relpath parameter to get_transport methods in test framework to
 
7521
  avoid useless cloning.
 
7522
  (Vincent Ladeuil, #110448)
 
7523
 
 
7524
 
 
7525
bzr 0.17
 
7526
########
 
7527
 
 
7528
:Released:  2007-06-18
 
7529
 
 
7530
Bugfixes
 
7531
********
 
7532
 
 
7533
* Fix crash of commit due to wrong lookup of filesystem encoding.
 
7534
  (Colin Watson, #120647)
 
7535
 
 
7536
* Revert logging just to stderr in commit as broke unicode filenames.
 
7537
  (Aaron Bentley, Ian Clatworthy, #120930)
 
7538
 
 
7539
 
 
7540
bzr 0.17rc1
 
7541
###########
 
7542
 
 
7543
:Released:  2007-06-12
 
7544
 
 
7545
Notes When Upgrading
 
7546
********************
 
7547
 
 
7548
* The kind() and is_executable() APIs on the WorkingTree interface no
 
7549
  longer implicitly (read) locks and unlocks the tree. This *might*
 
7550
  impact some plug-ins and tools using this part of the API. If you find
 
7551
  an issue that may be caused by this change, please let us know,
 
7552
  particularly the plug-in/tool maintainer. If encountered, the API
 
7553
  fix is to surround kind() and is_executable() calls with lock_read()
 
7554
  and unlock() like so::
 
7555
 
 
7556
    work_tree.lock_read()
 
7557
    try:
 
7558
        kind = work_tree.kind(...)
 
7559
    finally:
 
7560
        work_tree.unlock()
 
7561
 
 
7562
Internals
 
7563
*********
 
7564
* Rework of LogFormatter API to provide beginning/end of log hooks and to
 
7565
  encapsulate the details of the revision to be logged in a LogRevision
 
7566
  object.
 
7567
  In long log formats, merge revision ids are only shown when --show-ids
 
7568
  is specified, and are labelled "revision-id:", as per mainline
 
7569
  revisions, instead of "merged:". (Kent Gibson)
 
7570
 
 
7571
* New ``BranchBuilder`` API which allows the construction of particular
 
7572
  histories quickly. Useful for testing and potentially other applications
 
7573
  too. (Robert Collins)
 
7574
 
 
7575
Improvements
 
7576
************
 
7577
 
 
7578
* There are two new help topics, working-trees and repositories that
 
7579
  attempt to explain these concepts. (James Westby, John Arbash Meinel,
 
7580
  Aaron Bentley)
 
7581
 
 
7582
* Added ``bzr log --limit`` to report a limited number of revisions.
 
7583
  (Kent Gibson, #3659)
 
7584
 
 
7585
* Revert does not try to preserve file contents that were originally
 
7586
  produced by reverting to a historical revision.  (Aaron Bentley)
 
7587
 
 
7588
* ``bzr log --short`` now includes ``[merge]`` for revisions which
 
7589
  have more than one parent. This is a small improvement to help
 
7590
  understanding what changes have occurred
 
7591
  (John Arbash Meinel, #83887)
 
7592
 
 
7593
* TreeTransform avoids many renames when contructing large trees,
 
7594
  improving speed.  3.25x speedups have been observed for construction of
 
7595
  kernel-sized-trees, and checkouts are 1.28x faster.  (Aaron Bentley)
 
7596
 
 
7597
* Commit on large trees is now faster. In my environment, a commit of
 
7598
  a small change to the Mozilla tree (55k files) has dropped from
 
7599
  66 seconds to 32 seconds. For a small tree of 600 files, commit of a
 
7600
  small change is 33% faster. (Ian Clatworthy)
 
7601
 
 
7602
* New --create-prefix option to bzr init, like for push.  (Daniel Watkins,
 
7603
  #56322)
 
7604
 
 
7605
Bugfixes
 
7606
********
 
7607
 
 
7608
* ``bzr push`` should only connect to the remote location one time.
 
7609
  We have been connecting 3 times because we forget to pass around
 
7610
  the Transport object. This adds ``BzrDir.clone_on_transport()``, so
 
7611
  that we can pass in the Transport that we already have.
 
7612
  (John Arbash Meinel, #75721)
 
7613
 
 
7614
* ``DirState.set_state_from_inventory()`` needs to properly order
 
7615
  based on split paths, not just string paths.
 
7616
  (John Arbash Meinel, #115947)
 
7617
 
 
7618
* Let TestUIFactoy encode the password prompt with its own stdout.
 
7619
  (Vincent Ladeuil, #110204)
 
7620
 
 
7621
* pycurl should take use the range header that takes the range hint
 
7622
  into account.
 
7623
  (Vincent Ladeuil, #112719)
 
7624
 
 
7625
* WorkingTree4.get_file_sha1 no longer raises an exception when invoked
 
7626
  on a missing file.  (Aaron Bentley, #118186)
 
7627
 
 
7628
* WorkingTree.remove works correctly with tree references, and when pwd is
 
7629
  not the tree root. (Aaron Bentley)
 
7630
 
 
7631
* Merge no longer fails when a file is renamed in one tree and deleted
 
7632
  in the other. (Aaron Bentley, #110279)
 
7633
 
 
7634
* ``revision-info`` now accepts dotted revnos, doesn't require a tree,
 
7635
  and defaults to the last revision (Matthew Fuller, #90048)
 
7636
 
 
7637
* Tests no longer fail when BZR_REMOTE_PATH is set in the environment.
 
7638
  (Daniel Watkins, #111958)
 
7639
 
 
7640
* ``bzr branch -r revid:foo`` can be used to branch any revision in
 
7641
  your repository. (Previously Branch6 only supported revisions in your
 
7642
  mainline). (John Arbash Meinel, #115343)
 
7643
 
 
7644
bzr 0.16
 
7645
########
 
7646
 
 
7647
:Released:  2007-05-07
 
7648
 
 
7649
Bugfixes
 
7650
********
 
7651
 
 
7652
* Handle when you have 2 directories with similar names, but one has a
 
7653
  hyphen. (``'abc'`` versus ``'abc-2'``). The WT4._iter_changes
 
7654
  iterator was using direct comparison and ``'abc/a'`` sorts after
 
7655
  ``'abc-2'``, but ``('abc', 'a')`` sorts before ``('abc-2',)``.
 
7656
  (John Arbash Meinel, #111227)
 
7657
 
 
7658
* Handle when someone renames a file on disk without telling bzr.
 
7659
  Previously we would report the first file as missing, but not show
 
7660
  the new unknown file. (John Arbash Meinel, #111288)
 
7661
 
 
7662
* Avoid error when running hooks after pulling into or pushing from
 
7663
  a branch bound to a smartserver branch.  (Martin Pool, #111968)
 
7664
 
 
7665
Improvements
 
7666
************
 
7667
 
 
7668
* Move developer documentation to doc/developers/. This reduces clutter in
 
7669
  the root of the source tree and allows HACKING to be split into multiple
 
7670
  files. (Robert Collins, Alexander Belchenko)
 
7671
 
 
7672
* Clean up the ``WorkingTree4._iter_changes()`` internal loops as well as
 
7673
  ``DirState.update_entry()``. This optimizes the core logic for ``bzr
 
7674
  diff`` and ``bzr status`` significantly improving the speed of
 
7675
  both. (John Arbash Meinel)
 
7676
 
 
7677
bzr 0.16rc2
 
7678
###########
 
7679
 
 
7680
:Released:  2007-04-30
 
7681
 
 
7682
Bugfixes
 
7683
********
 
7684
 
 
7685
* Handle the case when you delete a file, and then rename another file
 
7686
  on top of it. Also handle the case of ``bzr rm --keep foo``. ``bzr
 
7687
  status`` should show the removed file and an unknown file in its
 
7688
  place. (John Arbash Meinel, #109993)
 
7689
 
 
7690
* Bundles properly read and write revision properties that have an
 
7691
  empty value. And when the value is not ASCII.
 
7692
  (John Arbash Meinel, #109613)
 
7693
 
 
7694
* Fix the bzr commit message to be in text mode.
 
7695
  (Alexander Belchenko, #110901)
 
7696
 
 
7697
* Also handle when you rename a file and create a file where it used
 
7698
  to be. (John Arbash Meinel, #110256)
 
7699
 
 
7700
* ``WorkingTree4._iter_changes`` should not descend into unversioned
 
7701
  directories. (John Arbash Meinel, #110399)
 
7702
 
 
7703
bzr 0.16rc1
 
7704
###########
 
7705
 
 
7706
:Released:  2007-04-26
 
7707
 
 
7708
Notes When Upgrading
 
7709
********************
 
7710
 
 
7711
* ``bzr remove`` and ``bzr rm`` will now remove the working file, if
 
7712
  it could be recovered again.
 
7713
  This has been done for consistency with svn and the unix rm command.
 
7714
  The old ``remove`` behaviour has been retained in the new option
 
7715
  ``bzr remove --keep``, which will just stop versioning the file,
 
7716
  but not delete it.
 
7717
  ``bzr remove --force`` have been added which will always delete the
 
7718
  files.
 
7719
  ``bzr remove`` is also more verbose.
 
7720
  (Marius Kruger, #82602)
 
7721
 
 
7722
Improvements
 
7723
************
 
7724
 
 
7725
* Merge directives can now be supplied as input to `merge` and `pull`,
 
7726
  like bundles can.  (Aaron Bentley)
 
7727
 
 
7728
* Sending the SIGQUIT signal to bzr, which can be done on Unix by
 
7729
  pressing Control-Backslash, drops bzr into a debugger.  Type ``'c'``
 
7730
  to continue.  This can be disabled by setting the environment variable
 
7731
  ``BZR_SIGQUIT_PDB=0``.  (Martin Pool)
 
7732
 
 
7733
* selftest now supports --list-only to list tests instead of running
 
7734
  them. (Ian Clatworthy)
 
7735
 
 
7736
* selftest now supports --exclude PATTERN (or -x PATTERN) to exclude
 
7737
  tests with names that match that regular expression.
 
7738
  (Ian Clatworthy, #102679)
 
7739
 
 
7740
* selftest now supports --randomize SEED to run tests in a random order.
 
7741
  SEED is typically the value 'now' meaning 'use the current time'.
 
7742
  (Ian Clatworthy, #102686)
 
7743
 
 
7744
* New option ``--fixes`` to commit, which stores bug fixing annotations as
 
7745
  revision properties. Built-in support for Launchpad, Debian, Trac and
 
7746
  Bugzilla bug trackers. (Jonathan Lange, James Henstridge, Robert Collins)
 
7747
 
 
7748
* New API, ``bzrlib.bugtracker.tracker_registry``, for adding support for
 
7749
  other bug trackers to ``fixes``. (Jonathan Lange, James Henstridge,
 
7750
  Robert Collins)
 
7751
 
 
7752
* ``selftest`` has new short options ``-f`` and ``-1``.  (Martin
 
7753
  Pool)
 
7754
 
 
7755
* ``bzrlib.tsort.MergeSorter`` optimizations. Change the inner loop
 
7756
  into using local variables instead of going through ``self._var``.
 
7757
  Improves the time to ``merge_sort`` a 10k revision graph by
 
7758
  approximately 40% (~700->400ms).  (John Arbash Meinel)
 
7759
 
 
7760
* ``make docs`` now creates a man page at ``man1/bzr.1`` fixing bug 107388.
 
7761
  (Robert Collins)
 
7762
 
 
7763
* ``bzr help`` now provides cross references to other help topics using
 
7764
  the _see_also facility on command classes. Likewise the bzr_man
 
7765
  documentation, and the bzr.1 man page also include this information.
 
7766
  (Robert Collins)
 
7767
 
 
7768
* Tags are now included in logs, that use the long log formatter.
 
7769
  (Erik Bågfors, Alexander Belchenko)
 
7770
 
 
7771
* ``bzr help`` provides a clearer message when a help topic cannot be
 
7772
  found. (Robert Collins, #107656)
 
7773
 
 
7774
* ``bzr help`` now accepts optional prefixes for command help. The help
 
7775
  for all commands can now be found at ``bzr help commands/COMMANDNAME``
 
7776
  as well as ``bzr help COMMANDNAME`` (which only works for commands
 
7777
  where the name is not the same as a more general help topic).
 
7778
  (Robert Collins)
 
7779
 
 
7780
* ``bzr help PLUGINNAME`` will now return the module docstring from the
 
7781
  plugin PLUGINNAME. (Robert Collins, #50408)
 
7782
 
 
7783
* New help topic ``urlspec`` which lists the availables transports.
 
7784
  (Goffredo Baroncelli)
 
7785
 
 
7786
* doc/server.txt updated to document the default bzr:// port
 
7787
  and also update the blurb about the hpss' current status.
 
7788
  (Robert Collins, #107125).
 
7789
 
 
7790
* ``bzr serve`` now listens on interface 0.0.0.0 by default, making it
 
7791
  serve out to the local LAN (and anyone in the world that can reach the
 
7792
  machine running ``bzr serve``. (Robert Collins, #98918)
 
7793
 
 
7794
* A new smart server protocol version has been added.  It prefixes requests
 
7795
  and responses with an explicit version identifier so that future protocol
 
7796
  revisions can be dealt with gracefully.  (Andrew Bennetts, Robert Collins)
 
7797
 
 
7798
* The bzr protocol version 2 indicates success or failure in every response
 
7799
  without depending on particular commands encoding that consistently,
 
7800
  allowing future client refactorings to be much more robust about error
 
7801
  handling. (Robert Collins, Martin Pool, Andrew Bennetts)
 
7802
 
 
7803
* The smart protocol over HTTP client has been changed to always post to the
 
7804
  same ``.bzr/smart`` URL under the original location when it can.  This allows
 
7805
  HTTP servers to only have to pass URLs ending in .bzr/smart to the smart
 
7806
  server handler, and not arbitrary ``.bzr/*/smart`` URLs.  (Andrew Bennetts)
 
7807
 
 
7808
* digest authentication is now supported for proxies and HTTP by the urllib
 
7809
  based http implementation. Tested against Apache 2.0.55 and Squid
 
7810
  2.6.5. Basic and digest authentication are handled coherently for HTTP
 
7811
  and proxy: if the user is provided in the url (bzr command line for HTTP,
 
7812
  proxy environment variables for proxies), the password is prompted for
 
7813
  (only once). If the password is provided, it is taken into account. Once
 
7814
  the first authentication is successful, all further authentication
 
7815
  roundtrips are avoided by preventively setting the right authentication
 
7816
  header(s).
 
7817
  (Vincent Ladeuil).
 
7818
 
 
7819
Internals
 
7820
*********
 
7821
 
 
7822
* bzrlib API compatability with 0.8 has been dropped, cleaning up some
 
7823
  code paths. (Robert Collins)
 
7824
 
 
7825
* Change the format of chroot urls so that they can be safely manipulated
 
7826
  by generic url utilities without causing the resulting urls to have
 
7827
  escaped the chroot. A side effect of this is that creating a chroot
 
7828
  requires an explicit action using a ChrootServer.
 
7829
  (Robert Collins, Andrew Bennetts)
 
7830
 
 
7831
* Deprecate ``Branch.get_root_id()`` because branches don't have root ids,
 
7832
  rather than fixing bug #96847.  (Aaron Bentley)
 
7833
 
 
7834
* ``WorkingTree.apply_inventory_delta`` provides a better alternative to
 
7835
  ``WorkingTree._write_inventory``.  (Aaron Bentley)
 
7836
 
 
7837
* Convenience method ``TestCase.expectFailure`` ensures that known failures
 
7838
  do not silently pass.  (Aaron Bentley)
 
7839
 
 
7840
* ``Transport.local_abspath`` now raises ``NotLocalUrl`` rather than
 
7841
  ``TransportNotPossible``. (Martin Pool, Ian Clatworthy)
 
7842
 
 
7843
* New SmartServer hooks facility. There are two initial hooks documented
 
7844
  in ``bzrlib.transport.smart.SmartServerHooks``. The two initial hooks allow
 
7845
  plugins to execute code upon server startup and shutdown.
 
7846
  (Robert Collins).
 
7847
 
 
7848
* SmartServer in standalone mode will now close its listening socket
 
7849
  when it stops, rather than waiting for garbage collection. This primarily
 
7850
  fixes test suite hangs when a test tries to connect to a shutdown server.
 
7851
  It may also help improve behaviour when dealing with a server running
 
7852
  on a specific port (rather than dynamically assigned ports).
 
7853
  (Robert Collins)
 
7854
 
 
7855
* Move most SmartServer code into a new package, bzrlib/smart.
 
7856
  bzrlib/transport/remote.py contains just the Transport classes that used
 
7857
  to be in bzrlib/transport/smart.py.  (Andrew Bennetts)
 
7858
 
 
7859
* urllib http implementation avoid roundtrips associated with
 
7860
  401 (and 407) errors once the authentication succeeds.
 
7861
  (Vincent Ladeuil).
 
7862
 
 
7863
* urlib http now supports querying the user for a proxy password if
 
7864
  needed. Realm is shown in the prompt for both HTTP and proxy
 
7865
  authentication when the user is required to type a password.
 
7866
  (Vincent Ladeuil).
 
7867
 
 
7868
* Renamed SmartTransport (and subclasses like SmartTCPTransport) to
 
7869
  RemoteTransport (and subclasses to RemoteTCPTransport, etc).  This is more
 
7870
  consistent with its new home in ``bzrlib/transport/remote.py``, and because
 
7871
  it's not really a "smart" transport, just one that does file operations
 
7872
  via remote procedure calls.  (Andrew Bennetts)
 
7873
 
 
7874
* The ``lock_write`` method of ``LockableFiles``, ``Repository`` and
 
7875
  ``Branch`` now accept a ``token`` keyword argument, so that separate
 
7876
  instances of those objects can share a lock if it has the right token.
 
7877
  (Andrew Bennetts, Robert Collins)
 
7878
 
 
7879
* New method ``get_branch_reference`` on ``BzrDir`` allows the detection of
 
7880
  branch references - which the smart server component needs.
 
7881
 
 
7882
* The Repository API ``make_working_trees`` is now permitted to return
 
7883
  False when ``set_make_working_trees`` is not implemented - previously
 
7884
  an unimplemented ``set_make_working_trees`` implied the result True
 
7885
  from ``make_working_trees``. This has been changed to accomodate the
 
7886
  smart server, where it does not make sense (at this point) to ever
 
7887
  make working trees by default. (Robert Collins)
 
7888
 
 
7889
* Command objects can now declare related help topics by having _see_also
 
7890
  set to a list of related topic. (Robert Collins)
 
7891
 
 
7892
* ``bzrlib.help`` now delegates to the Command class for Command specific
 
7893
  help. (Robert Collins)
 
7894
 
 
7895
* New class ``TransportListRegistry``, derived from the Registry class, which
 
7896
  simplifies tracking the available Transports. (Goffredo Baroncelli)
 
7897
 
 
7898
* New function ``Branch.get_revision_id_to_revno_map`` which will
 
7899
  return a dictionary mapping revision ids to dotted revnos. Since
 
7900
  dotted revnos are defined in the context of the branch tip, it makes
 
7901
  sense to generate them from a ``Branch`` object.
 
7902
  (John Arbash Meinel)
 
7903
 
 
7904
* Fix the 'Unprintable error' message display to use the repr of the
 
7905
  exception that prevented printing the error because the str value
 
7906
  for it is often not useful in debugging (e.g. KeyError('foo') has a
 
7907
  str() of 'foo' but a repr of 'KeyError('foo')' which is much more
 
7908
  useful. (Robert Collins)
 
7909
 
 
7910
* ``urlutils.normalize_url`` now unescapes unreserved characters, such as "~".
 
7911
  (Andrew Bennetts)
 
7912
 
 
7913
Bugfixes
 
7914
********
 
7915
 
 
7916
* Don't fail bundle selftest if email has 'two' embedded.
 
7917
  (Ian Clatworthy, #98510)
 
7918
 
 
7919
* Remove ``--verbose`` from ``bzr bundle``. It didn't work anyway.
 
7920
  (Robert Widhopf-Fenk, #98591)
 
7921
 
 
7922
* Remove ``--basis`` from the checkout/branch commands - it didn't work
 
7923
  properly and is no longer beneficial.
 
7924
  (Robert Collins, #53675, #43486)
 
7925
 
 
7926
* Don't produce encoding error when adding duplicate files.
 
7927
  (Aaron Bentley)
 
7928
 
 
7929
* Fix ``bzr log <file>`` so it only logs the revisions that changed
 
7930
  the file, and does it faster.
 
7931
  (Kent Gibson, John Arbash Meinel, #51980, #69477)
 
7932
 
 
7933
* Fix ``InterDirstateTre._iter_changes`` to handle when we come across
 
7934
  an empty versioned directory, which now has files in it.
 
7935
  (John Arbash Meinel, #104257)
 
7936
 
 
7937
* Teach ``common_ancestor`` to shortcut when the tip of one branch is
 
7938
  inside the ancestry of the other. Saves a lot of graph processing
 
7939
  (with an ancestry of 16k revisions, ``bzr merge ../already-merged``
 
7940
  changes from 2m10s to 13s).  (John Arbash Meinel, #103757)
 
7941
 
 
7942
* Fix ``show_diff_trees`` to handle the case when a file is modified,
 
7943
  and the containing directory is renamed. (The file path is different
 
7944
  in this versus base, but it isn't marked as a rename).
 
7945
  (John Arbash Meinel, #103870)
 
7946
 
 
7947
* FTP now works even when the FTP server does not support atomic rename.
 
7948
  (Aaron Bentley, #89436)
 
7949
 
 
7950
* Correct handling in bundles and merge directives of timezones with
 
7951
  that are not an integer number of hours offset from UTC.  Always
 
7952
  represent the epoch time in UTC to avoid problems with formatting
 
7953
  earlier times on win32.  (Martin Pool, Alexander Belchenko, John
 
7954
  Arbash Meinel)
 
7955
 
 
7956
* Typo in the help for ``register-branch`` fixed. (Robert Collins, #96770)
 
7957
 
 
7958
* "dirstate" and "dirstate-tags" formats now produce branches compatible
 
7959
  with old versions of bzr. (Aaron Bentley, #107168))
 
7960
 
 
7961
* Handle moving a directory when children have been added, removed,
 
7962
  and renamed. (John Arbash Meinel, #105479)
 
7963
 
 
7964
* Don't preventively use basic authentication for proxy before receiving a
 
7965
  407 error. Otherwise people willing to use other authentication schemes
 
7966
  may expose their password in the clear (or nearly). This add one
 
7967
  roundtrip in case basic authentication should be used, but plug the
 
7968
  security hole.
 
7969
  (Vincent Ladeuil)
 
7970
 
 
7971
* Handle http and proxy digest authentication.
 
7972
  (Vincent Ladeuil, #94034).
 
7973
 
 
7974
Testing
 
7975
*******
 
7976
 
 
7977
* Added ``bzrlib.strace.strace`` which will strace a single callable and
 
7978
  return a StraceResult object which contains just the syscalls involved
 
7979
  in running it. (Robert Collins)
 
7980
 
 
7981
* New test method ``reduceLockdirTimeout`` to drop the default (ui-centric)
 
7982
  default time down to one suitable for tests. (Andrew Bennetts)
 
7983
 
 
7984
* Add new ``vfs_transport_factory`` attribute on tests which provides the
 
7985
  common vfs backing for both the readonly and readwrite transports.
 
7986
  This allows the RemoteObject tests to back onto local disk or memory,
 
7987
  and use the existing ``transport_server`` attribute all tests know about
 
7988
  to be the smart server transport. This in turn allows tests to
 
7989
  differentiate between 'transport to access the branch', and
 
7990
  'transport which is a VFS' - which matters in Remote* tests.
 
7991
  (Robert Collins, Andrew Bennetts)
 
7992
 
 
7993
* The ``make_branch_and_tree`` method for tests will now create a
 
7994
  lightweight checkout for the tree if the ``vfs_transport_factory`` is not
 
7995
  a LocalURLServer. (Robert Collins, Andrew Bennetts)
 
7996
 
 
7997
* Branch implementation tests have been audited to ensure that all urls
 
7998
  passed to Branch APIs use proper urls, except when local-disk paths
 
7999
  are intended. This is so that tests correctly access the test transport
 
8000
  which is often not equivalent to local disk in Remote* tests. As part
 
8001
  of this many tests were adjusted to remove dependencies on local disk
 
8002
  access.
 
8003
  (Robert Collins, Andrew Bennetts)
 
8004
 
 
8005
* Mark bzrlib.tests and bzrlib.tests.TestUtil as providing assertFOO helper
 
8006
  functions by adding a ``__unittest`` global attribute. (Robert Collins,
 
8007
  Andrew Bennetts, Martin Pool, Jonathan Lange)
 
8008
 
 
8009
* Refactored proxy and authentication handling to simplify the
 
8010
  implementation of new auth schemes for both http and proxy.
 
8011
  (Vincent Ladeuil)
 
8012
 
 
8013
bzr 0.15
 
8014
########
 
8015
 
 
8016
:Released: 2007-04-01
 
8017
 
 
8018
Bugfixes
 
8019
********
 
8020
 
 
8021
* Handle incompatible repositories as a user issue when fetching.
 
8022
  (Aaron Bentley)
 
8023
 
 
8024
* Don't give a recommendation to upgrade when branching or
 
8025
  checking out a branch that contains an old-format working tree.
 
8026
  (Martin Pool)
 
8027
 
 
8028
bzr 0.15rc3
 
8029
###########
 
8030
 
 
8031
:Released:  2007-03-26
 
8032
 
 
8033
Changes
 
8034
*******
 
8035
 
 
8036
* A warning is now displayed when opening working trees in older
 
8037
  formats, to encourage people to upgrade to WorkingTreeFormat4.
 
8038
  (Martin Pool)
 
8039
 
 
8040
Improvements
 
8041
************
 
8042
 
 
8043
* HTTP redirections are now taken into account when a branch (or a
 
8044
  bundle) is accessed for the first time. A message is issued at each
 
8045
  redirection to inform the user. In the past, http redirections were
 
8046
  silently followed for each request which significantly degraded the
 
8047
  performances. The http redirections are not followed anymore by
 
8048
  default, instead a RedirectRequested exception is raised. For bzrlib
 
8049
  users needing to follow http redirections anyway,
 
8050
  ``bzrlib.transport.do_catching_redirections`` provide an easy transition
 
8051
  path.  (vila)
 
8052
 
 
8053
Internals
 
8054
*********
 
8055
 
 
8056
* Added ``ReadLock.temporary_write_lock()`` to allow upgrading an OS read
 
8057
  lock to an OS write lock. Linux can do this without unlocking, Win32
 
8058
  needs to unlock in between. (John Arbash Meinel)
 
8059
 
 
8060
* New parameter ``recommend_upgrade`` to ``BzrDir.open_workingtree``
 
8061
  to silence (when false) warnings about opening old formats.
 
8062
  (Martin Pool)
 
8063
 
 
8064
* Fix minor performance regression with bzr-0.15 on pre-dirstate
 
8065
  trees. (We were reading the working inventory too many times).
 
8066
  (John Arbash Meinel)
 
8067
 
 
8068
* Remove ``Branch.get_transaction()`` in favour of a simple cache of
 
8069
  ``revision_history``.  Branch subclasses should override
 
8070
  ``_gen_revision_history`` rather than ``revision_history`` to make use of
 
8071
  this cache, and call ``_clear_revision_history_cache`` and
 
8072
  ``_cache_revision_history`` at appropriate times. (Andrew Bennetts)
 
8073
 
 
8074
Bugfixes
 
8075
********
 
8076
 
 
8077
* Take ``smtp_server`` from user config into account.
 
8078
  (vila, #92195)
 
8079
 
 
8080
* Restore Unicode filename handling for versioned and unversioned files.
 
8081
  (John Arbash Meinel, #92608)
 
8082
 
 
8083
* Don't fail during ``bzr commit`` if a file is marked removed, and
 
8084
  the containing directory is auto-removed.  (John Arbash Meinel, #93681)
 
8085
 
 
8086
* ``bzr status FILENAME`` failed on Windows because of an uncommon
 
8087
  errno. (``ERROR_DIRECTORY == 267 != ENOTDIR``).
 
8088
  (Wouter van Heyst, John Arbash Meinel, #90819)
 
8089
 
 
8090
* ``bzr checkout source`` should create a local branch in the same
 
8091
  format as source. (John Arbash Meinel, #93854)
 
8092
 
 
8093
* ``bzr commit`` with a kind change was failing to update the
 
8094
  last-changed-revision for directories.  The
 
8095
  InventoryDirectory._unchanged only looked at the ``parent_id`` and name,
 
8096
  ignoring the fact that the kind could have changed, too.
 
8097
  (John Arbash Meinel, #90111)
 
8098
 
 
8099
* ``bzr mv dir/subdir other`` was incorrectly updating files inside
 
8100
  the directory. So that there was a chance it would break commit,
 
8101
  etc. (John Arbash Meinel, #94037)
 
8102
 
 
8103
* Correctly handles mutiple permanent http redirections.
 
8104
  (vila, #88780)
 
8105
 
 
8106
bzr 0.15rc2
 
8107
###########
 
8108
 
 
8109
:Released:  2007-03-14
 
8110
 
 
8111
Notes When Upgrading
 
8112
********************
 
8113
 
 
8114
* Release 0.15rc2 of bzr changes the ``bzr init-repo`` command to
 
8115
  default to ``--trees`` instead of ``--no-trees``.
 
8116
  Existing shared repositories are not affected.
 
8117
 
 
8118
Improvements
 
8119
************
 
8120
 
 
8121
* New ``merge-directive`` command to generate machine- and human-readable
 
8122
  merge requests.  (Aaron Bentley)
 
8123
 
 
8124
* New ``submit:`` revision specifier makes it easy to diff against the
 
8125
  common ancestor with the submit location (Aaron Bentley)
 
8126
 
 
8127
* Added support for Putty's SSH implementation. (Dmitry Vasiliev)
 
8128
 
 
8129
* Added ``bzr status --versioned`` to report only versioned files,
 
8130
  not unknowns. (Kent Gibson)
 
8131
 
 
8132
* Merge now autodetects the correct line-ending style for its conflict
 
8133
  markers.  (Aaron Bentley)
 
8134
 
 
8135
Internals
 
8136
*********
 
8137
 
 
8138
* Refactored SSH vendor registration into SSHVendorManager class.
 
8139
  (Dmitry Vasiliev)
 
8140
 
 
8141
Bugfixes
 
8142
********
 
8143
 
 
8144
* New ``--numbered-dirs`` option to ``bzr selftest`` to use
 
8145
  numbered dirs for TestCaseInTempDir. This is default behavior
 
8146
  on Windows. Anyone can force named dirs on Windows
 
8147
  with ``--no-numbered-dirs``. (Alexander Belchenko)
 
8148
 
 
8149
* Fix ``RevisionSpec_revid`` to handle the Unicode strings passed in
 
8150
  from the command line. (Marien Zwart, #90501)
 
8151
 
 
8152
* Fix ``TreeTransform._iter_changes`` when both the source and
 
8153
  destination are missing. (Aaron Bentley, #88842)
 
8154
 
 
8155
* Fix commit of merges with symlinks in dirstate trees.
 
8156
  (Marien Zwart)
 
8157
 
 
8158
* Switch the ``bzr init-repo`` default from --no-trees to --trees.
 
8159
  (Wouter van Heyst, #53483)
 
8160
 
 
8161
 
 
8162
bzr 0.15rc1
 
8163
###########
 
8164
 
 
8165
:Released:  2007-03-07
 
8166
 
 
8167
Surprises
 
8168
*********
 
8169
 
 
8170
* The default disk format has changed. Please run 'bzr upgrade' in your
 
8171
  working trees to upgrade. This new default is compatible for network
 
8172
  operations, but not for local operations. That is, if you have two
 
8173
  versions of bzr installed locally, after upgrading you can only use the
 
8174
  bzr 0.15 version. This new default does not enable tags or nested-trees
 
8175
  as they are incompatible with bzr versions before 0.15 over the network.
 
8176
 
 
8177
* For users of bzrlib: Two major changes have been made to the working tree
 
8178
  api in bzrlib. The first is that many methods and attributes, including
 
8179
  the inventory attribute, are no longer valid for use until one of
 
8180
  ``lock_read``/``lock_write``/``lock_tree_write`` has been called,
 
8181
  and become invalid again after unlock is called. This has been done
 
8182
  to improve performance and correctness as part of the dirstate
 
8183
  development.
 
8184
  (Robert Collins, John A Meinel, Martin Pool, and others).
 
8185
 
 
8186
* For users of bzrlib: The attribute 'tree.inventory' should be considered
 
8187
  readonly. Previously it was possible to directly alter this attribute, or
 
8188
  its contents, and have the tree notice this. This has been made
 
8189
  unsupported - it may work in some tree formats, but in the newer dirstate
 
8190
  format such actions will have no effect and will be ignored, or even
 
8191
  cause assertions. All operations possible can still be carried out by a
 
8192
  combination of the tree API, and the bzrlib.transform API. (Robert
 
8193
  Collins, John A Meinel, Martin Pool, and others).
 
8194
 
 
8195
Improvements
 
8196
************
 
8197
 
 
8198
* Support for OS Windows 98. Also .bzr.log on any windows system
 
8199
  saved in My Documents folder. (Alexander Belchenko)
 
8200
 
 
8201
* ``bzr mv`` enhanced to support already moved files.
 
8202
  In the past the mv command would have failed if the source file doesn't
 
8203
  exist. In this situation ``bzr mv`` would now detect that the file has
 
8204
  already moved and update the repository accordingly, if the target file
 
8205
  does exist.
 
8206
  A new option ``--after`` has been added so that if two files already
 
8207
  exist, you could notify Bazaar that you have moved a (versioned) file
 
8208
  and replaced it with another. Thus in this case ``bzr move --after``
 
8209
  will only update the Bazaar identifier.
 
8210
  (Steffen Eichenberg, Marius Kruger)
 
8211
 
 
8212
* ``ls`` now works on treeless branches and remote branches.
 
8213
  (Aaron Bentley)
 
8214
 
 
8215
* ``bzr help global-options`` describes the global options.
 
8216
  (Aaron Bentley)
 
8217
 
 
8218
* ``bzr pull --overwrite`` will now correctly overwrite checkouts.
 
8219
  (Robert Collins)
 
8220
 
 
8221
* Files are now allowed to change kind (e.g. from file to symlink).
 
8222
  Supported by ``commit``, ``revert`` and ``status``
 
8223
  (Aaron Bentley)
 
8224
 
 
8225
* ``inventory`` and ``unknowns`` hidden in favour of ``ls``
 
8226
  (Aaron Bentley)
 
8227
 
 
8228
* ``bzr help checkouts`` descibes what checkouts are and some possible
 
8229
  uses of them. (James Westby, Aaron Bentley)
 
8230
 
 
8231
* A new ``-d`` option to push, pull and merge overrides the default
 
8232
  directory.  (Martin Pool)
 
8233
 
 
8234
* Branch format 6: smaller, and potentially faster than format 5.  Supports
 
8235
  ``append_history_only`` mode, where the log view and revnos do not change,
 
8236
  except by being added to.  Stores policy settings in
 
8237
  ".bzr/branch/branch.conf".
 
8238
 
 
8239
* ``append_only`` branches:  Format 6 branches may be configured so that log
 
8240
  view and revnos are always consistent.  Either create the branch using
 
8241
  "bzr init --append-revisions-only" or edit the config file as descriped
 
8242
  in docs/configuration.txt.
 
8243
 
 
8244
* rebind: Format 6 branches retain the last-used bind location, so if you
 
8245
  "bzr unbind", you can "bzr bind" to bind to the previously-selected
 
8246
  bind location.
 
8247
 
 
8248
* Builtin tags support, created and deleted by the ``tag`` command and
 
8249
  stored in the branch.  Tags can be accessed with the revisionspec
 
8250
  ``-rtag:``, and listed with ``bzr tags``.  Tags are not versioned
 
8251
  at present. Tags require a network incompatible upgrade. To perform this
 
8252
  upgrade, run ``bzr upgrade --dirstate-tags`` in your branch and
 
8253
  repositories. (Martin Pool)
 
8254
 
 
8255
* The ``bzr://`` transport now has a well-known port number, 4155,
 
8256
  which it will use by default.  (Andrew Bennetts, Martin Pool)
 
8257
 
 
8258
* Bazaar now looks for user-installed plugins before looking for site-wide
 
8259
  plugins. (Jonathan Lange)
 
8260
 
 
8261
* ``bzr resolve`` now detects and marks resolved text conflicts.
 
8262
  (Aaron Bentley)
 
8263
 
 
8264
Internals
 
8265
*********
 
8266
 
 
8267
* Internally revision ids and file ids are now passed around as utf-8
 
8268
  bytestrings, rather than treating them as Unicode strings. This has
 
8269
  performance benefits for Knits, since we no longer need to decode the
 
8270
  revision id for each line of content, nor for each entry in the index.
 
8271
  This will also help with the future dirstate format.
 
8272
  (John Arbash Meinel)
 
8273
 
 
8274
* Reserved ids (any revision-id ending in a colon) are rejected by
 
8275
  versionedfiles, repositories, branches, and working trees
 
8276
  (Aaron Bentley)
 
8277
 
 
8278
* Minor performance improvement by not creating a ProgressBar for
 
8279
  every KnitIndex we create. (about 90ms for a bzr.dev tree)
 
8280
  (John Arbash Meinel)
 
8281
 
 
8282
* New easier to use Branch hooks facility. There are five initial hooks,
 
8283
  all documented in bzrlib.branch.BranchHooks.__init__ - ``'set_rh'``,
 
8284
  ``'post_push'``, ``'post_pull'``, ``'post_commit'``,
 
8285
  ``'post_uncommit'``. These hooks fire after the matching operation
 
8286
  on a branch has taken place, and were originally added for the
 
8287
  branchrss plugin. (Robert Collins)
 
8288
 
 
8289
* New method ``Branch.push()`` which should be used when pushing from a
 
8290
  branch as it makes performance and policy decisions to match the UI
 
8291
  level command ``push``. (Robert Collins).
 
8292
 
 
8293
* Add a new method ``Tree.revision_tree`` which allows access to cached
 
8294
  trees for arbitrary revisions. This allows the in development dirstate
 
8295
  tree format to provide access to the callers to cached copies of
 
8296
  inventory data which are cheaper to access than inventories from the
 
8297
  repository.
 
8298
  (Robert Collins, Martin Pool)
 
8299
 
 
8300
* New ``Branch.last_revision_info`` method, this is being done to allow
 
8301
  optimization of requests for both the number of revisions and the last
 
8302
  revision of a branch with smartservers and potentially future branch
 
8303
  formats. (Wouter van Heyst, Robert Collins)
 
8304
 
 
8305
* Allow ``'import bzrlib.plugins.NAME'`` to work when the plugin NAME has not
 
8306
  yet been loaded by ``load_plugins()``. This allows plugins to depend on each
 
8307
  other for code reuse without requiring users to perform file-renaming
 
8308
  gymnastics. (Robert Collins)
 
8309
 
 
8310
* New Repository method ``'gather_stats'`` for statistic data collection.
 
8311
  This is expected to grow to cover a number of related uses mainly
 
8312
  related to bzr info. (Robert Collins)
 
8313
 
 
8314
* Log formatters are now managed with a registry.
 
8315
  ``log.register_formatter`` continues to work, but callers accessing
 
8316
  the FORMATTERS dictionary directly will not.
 
8317
 
 
8318
* Allow a start message to be passed to the ``edit_commit_message``
 
8319
  function.  This will be placed in the message offered to the user
 
8320
  for editing above the separator. It allows a template commit message
 
8321
  to be used more easily. (James Westby)
 
8322
 
 
8323
* ``GPGStrategy.sign()`` will now raise ``BzrBadParameterUnicode`` if
 
8324
  you pass a Unicode string rather than an 8-bit string. Callers need
 
8325
  to be updated to encode first. (John Arbash Meinel)
 
8326
 
 
8327
* Branch.push, pull, merge now return Result objects with information
 
8328
  about what happened, rather than a scattering of various methods.  These
 
8329
  are also passed to the post hooks.  (Martin Pool)
 
8330
 
 
8331
* File formats and architecture is in place for managing a forest of trees
 
8332
  in bzr, and splitting up existing trees into smaller subtrees, and
 
8333
  finally joining trees to make a larger tree. This is the first iteration
 
8334
  of this support, and the user-facing aspects still require substantial
 
8335
  work.  If you wish to experiment with it, use ``bzr upgrade
 
8336
  --dirstate-with-subtree`` in your working trees and repositories.
 
8337
  You can use the hidden commands ``split`` and ``join`` and to create
 
8338
  and manipulate nested trees, but please consider using the nested-trees
 
8339
  branch, which contains substantial UI improvements, instead.
 
8340
  http://code.aaronbentley.com/bzr/bzrrepo/nested-trees/
 
8341
  (Aaron Bentley, Martin Pool, Robert Collins).
 
8342
 
 
8343
Bugfixes
 
8344
********
 
8345
 
 
8346
* ``bzr annotate`` now uses dotted revnos from the viewpoint of the
 
8347
  branch, rather than the last changed revision of the file.
 
8348
  (John Arbash Meinel, #82158)
 
8349
 
 
8350
* Lock operations no longer hang if they encounter a permission problem.
 
8351
  (Aaron Bentley)
 
8352
 
 
8353
* ``bzr push`` can resume a push that was canceled before it finished.
 
8354
  Also, it can push even if the target directory exists if you supply
 
8355
  the ``--use-existing-dir`` flag.
 
8356
  (John Arbash Meinel, #30576, #45504)
 
8357
 
 
8358
* Fix http proxy authentication when user and an optional
 
8359
  password appears in the ``*_proxy`` vars. (Vincent Ladeuil,
 
8360
  #83954).
 
8361
 
 
8362
* ``bzr log branch/file`` works for local treeless branches
 
8363
  (Aaron Bentley, #84247)
 
8364
 
 
8365
* Fix problem with UNC paths on Windows 98. (Alexander Belchenko, #84728)
 
8366
 
 
8367
* Searching location of CA bundle for PyCurl in env variable
 
8368
  (``CURL_CA_BUNDLE``), and on win32 along the PATH.
 
8369
  (Alexander Belchenko, #82086)
 
8370
 
 
8371
* ``bzr init`` works with unicode argument LOCATION.
 
8372
  (Alexander Belchenko, #85599)
 
8373
 
 
8374
* Raise ``DependencyNotPresent`` if pycurl do not support https.
 
8375
  (Vincent Ladeuil, #85305)
 
8376
 
 
8377
* Invalid proxy env variables should not cause a traceback.
 
8378
  (Vincent Ladeuil, #87765)
 
8379
 
 
8380
* Ignore patterns normalised to use '/' path separator.
 
8381
  (Kent Gibson, #86451)
 
8382
 
 
8383
* bzr rocks. It sure does! Fix case. (Vincent Ladeuil, #78026)
 
8384
 
 
8385
* Fix bzrtools shelve command for removed lines beginning with "--"
 
8386
  (Johan Dahlberg, #75577)
 
8387
 
 
8388
Testing
 
8389
*******
 
8390
 
 
8391
* New ``--first`` option to ``bzr selftest`` to run specified tests
 
8392
  before the rest of the suite.  (Martin Pool)
 
8393
 
 
8394
 
 
8395
bzr 0.14
 
8396
########
 
8397
 
 
8398
:Released:  2007-01-23
 
8399
 
 
8400
Improvements
 
8401
************
 
8402
 
 
8403
* ``bzr help global-options`` describes the global options. (Aaron Bentley)
 
8404
 
 
8405
Bug Fixes
 
8406
*********
 
8407
 
 
8408
* Skip documentation generation tests if the tools to do so are not
 
8409
  available. Fixes running selftest for installled copies of bzr.
 
8410
  (John Arbash Meinel, #80330)
 
8411
 
 
8412
* Fix the code that discovers whether bzr is being run from it's
 
8413
  working tree to handle the case when it isn't but the directory
 
8414
  it is in is below a repository. (James Westby, #77306)
 
8415
 
 
8416
 
 
8417
bzr 0.14rc1
 
8418
###########
 
8419
 
 
8420
:Released:  2007-01-16
 
8421
 
 
8422
Improvements
 
8423
************
 
8424
 
 
8425
* New connection: ``bzr+http://`` which supports tunnelling the smart
 
8426
  protocol over an HTTP connection. If writing is enabled on the bzr
 
8427
  server, then you can write over the http connection.
 
8428
  (Andrew Bennetts, John Arbash Meinel)
 
8429
 
 
8430
* Aliases now support quotation marks, so they can contain whitespace
 
8431
  (Marius Kruger)
 
8432
 
 
8433
* PyCurlTransport now use a single curl object. By specifying explicitly
 
8434
  the 'Range' header, we avoid the need to use two different curl objects
 
8435
  (and two connections to the same server). (Vincent Ladeuil)
 
8436
 
 
8437
* ``bzr commit`` does not prompt for a message until it is very likely to
 
8438
  succeed.  (Aaron Bentley)
 
8439
 
 
8440
* ``bzr conflicts`` now takes --text to list pathnames of text conflicts
 
8441
  (Aaron Bentley)
 
8442
 
 
8443
* Fix ``iter_lines_added_or_present_in_versions`` to use a set instead
 
8444
  of a list while checking if a revision id was requested. Takes 10s
 
8445
  off of the ``fileids_affected_by_revision_ids`` time, which is 10s
 
8446
  of the ``bzr branch`` time. Also improve ``fileids_...`` time by
 
8447
  filtering lines with a regex rather than multiple ``str.find()``
 
8448
  calls. (saves another 300ms) (John Arbash Meinel)
 
8449
 
 
8450
* Policy can be set for each configuration key. This allows keys to be
 
8451
  inherited properly across configuration entries. For example, this
 
8452
  should enable you to do::
 
8453
 
 
8454
    [/home/user/project]
 
8455
    push_location = sftp://host/srv/project/
 
8456
    push_location:policy = appendpath
 
8457
 
 
8458
  And then a branch like ``/home/user/project/mybranch`` should get an
 
8459
  automatic push location of ``sftp://host/srv/project/mybranch``.
 
8460
  (James Henstridge)
 
8461
 
 
8462
* Added ``bzr status --short`` to make status report svn style flags
 
8463
  for each file.  For example::
 
8464
 
 
8465
    $ bzr status --short
 
8466
    A  foo
 
8467
    A  bar
 
8468
    D  baz
 
8469
    ?  wooley
 
8470
 
 
8471
* 'bzr selftest --clean-output' allows easily clean temporary tests
 
8472
  directories without running tests. (Alexander Belchenko)
 
8473
 
 
8474
* ``bzr help hidden-commands`` lists all hidden commands. (Aaron Bentley)
 
8475
 
 
8476
* ``bzr merge`` now has an option ``--pull`` to fall back to pull if
 
8477
  local is fully merged into remote. (Jan Hudec)
 
8478
 
 
8479
* ``bzr help formats`` describes available directory formats. (Aaron Bentley)
 
8480
 
 
8481
Internals
 
8482
*********
 
8483
 
 
8484
* A few tweaks directly to ``fileids_affected_by_revision_ids`` to
 
8485
  help speed up processing, as well allowing to extract unannotated
 
8486
  lines. Between the two ``fileids_affected_by_revision_ids`` is
 
8487
  improved by approx 10%. (John Arbash Meinel)
 
8488
 
 
8489
* Change Revision serialization to only write out millisecond
 
8490
  resolution. Rather than expecting floating point serialization to
 
8491
  preserve more resolution than we need. (Henri Weichers, Martin Pool)
 
8492
 
 
8493
* Test suite ends cleanly on Windows.  (Vincent Ladeuil)
 
8494
 
 
8495
* When ``encoding_type`` attribute of class Command is equal to 'exact',
 
8496
  force sys.stdout to be a binary stream on Windows, and therefore
 
8497
  keep exact line-endings (without LF -> CRLF conversion).
 
8498
  (Alexander Belchenko)
 
8499
 
 
8500
* Single-letter short options are no longer globally declared.  (Martin
 
8501
  Pool)
 
8502
 
 
8503
* Before using detected user/terminal encoding bzr should check
 
8504
  that Python has corresponding codec. (Alexander Belchenko)
 
8505
 
 
8506
* Formats for end-user selection are provided via a FormatRegistry (Aaron Bentley)
 
8507
 
 
8508
Bug Fixes
 
8509
*********
 
8510
 
 
8511
* ``bzr missing --verbose`` was showing adds/removals in the wrong
 
8512
  direction. (John Arbash Meinel)
 
8513
 
 
8514
* ``bzr annotate`` now defaults to showing dotted revnos for merged
 
8515
  revisions. It cuts them off at a depth of 12 characters, but you can
 
8516
  supply ``--long`` to see the full number. You can also use
 
8517
  ``--show-ids`` to display the original revision ids, rather than
 
8518
  revision numbers and committer names. (John Arbash Meinel, #75637)
 
8519
 
 
8520
* bzr now supports Win32 UNC path (e.g. ``\HOST\path``.
 
8521
  (Alexander Belchenko, #57869)
 
8522
 
 
8523
* Win32-specific: output of cat, bundle and diff commands don't mangle
 
8524
  line-endings (Alexander Belchenko, #55276)
 
8525
 
 
8526
* Replace broken fnmatch based ignore pattern matching with custom pattern
 
8527
  matcher.
 
8528
  (Kent Gibson, Jan Hudec #57637)
 
8529
 
 
8530
* pycurl and urllib can detect short reads at different places. Update
 
8531
  the test suite to test more cases. Also detect http error code 416
 
8532
  which was raised for that specific bug. Also enhance the urllib
 
8533
  robustness by detecting invalid ranges (and pycurl's one by detecting
 
8534
  short reads during the initial GET). (Vincent Ladeuil, #73948)
 
8535
 
 
8536
* The urllib connection sharing interacts badly with urllib2
 
8537
  proxy setting (the connections didn't go thru the proxy
 
8538
  anymore). Defining a proper ProxyHandler solves the
 
8539
  problem.  (Vincent Ladeuil, #74759)
 
8540
 
 
8541
* Use urlutils to generate relative URLs, not osutils
 
8542
  (Aaron Bentley, #76229)
 
8543
 
 
8544
* ``bzr status`` in a readonly directory should work without giving
 
8545
  lots of errors. (John Arbash Meinel, #76299)
 
8546
 
 
8547
* Mention the revisionspec topic for the revision option help.
 
8548
  (Wouter van Heyst, #31663)
 
8549
 
 
8550
* Allow plugins import from zip archives.
 
8551
  (Alexander Belchenko, #68124)
 
8552
 
 
8553
 
 
8554
bzr 0.13
 
8555
########
 
8556
 
 
8557
:Released:  2006-12-05
 
8558
 
 
8559
No changes from 0.13rc
 
8560
 
 
8561
 
 
8562
bzr 0.13rc1
 
8563
###########
 
8564
 
 
8565
:Released:  2006-11-27
 
8566
 
 
8567
Improvements
 
8568
************
 
8569
 
 
8570
* New command ``bzr remove-tree`` allows the removal of the working
 
8571
  tree from a branch.
 
8572
  (Daniel Silverstone)
 
8573
 
 
8574
* urllib uses shared keep-alive connections, so http
 
8575
  operations are substantially faster.
 
8576
  (Vincent Ladeuil, #53654)
 
8577
 
 
8578
* ``bzr export`` allows an optional branch parameter, to export a bzr
 
8579
  tree from some other url. For example:
 
8580
  ``bzr export bzr.tar.gz http://bazaar-vcs.org/bzr/bzr.dev``
 
8581
  (Daniel Silverstone)
 
8582
 
 
8583
* Added ``bzr help topics`` to the bzr help system. This gives a
 
8584
  location for general information, outside of a specific command.
 
8585
  This includes updates for ``bzr help revisionspec`` the first topic
 
8586
  included. (Goffredo Baroncelli, John Arbash Meinel, #42714)
 
8587
 
 
8588
* WSGI-compatible HTTP smart server.  See ``doc/http_smart_server.txt``.
 
8589
  (Andrew Bennetts)
 
8590
 
 
8591
* Knit files will now cache full texts only when the size of the
 
8592
  deltas is as large as the size of the fulltext. (Or after 200
 
8593
  deltas, whichever comes first). This has the most benefit on large
 
8594
  files with small changes, such as the inventory for a large project.
 
8595
  (eg For a project with 2500 files, and 7500 revisions, it changes
 
8596
  the size of inventory.knit from 11MB to 5.4MB) (John Arbash Meinel)
 
8597
 
 
8598
Internals
 
8599
*********
 
8600
 
 
8601
* New -D option given before the command line turns on debugging output
 
8602
  for particular areas.  -Derror shows tracebacks on all errors.
 
8603
  (Martin Pool)
 
8604
 
 
8605
* Clean up ``bzr selftest --benchmark bundle`` to correct an import,
 
8606
  and remove benchmarks that take longer than 10min to run.
 
8607
  (John Arbash Meinel)
 
8608
 
 
8609
* Use ``time.time()`` instead of ``time.clock()`` to decide on
 
8610
  progress throttling. Because ``time.clock()`` is actually CPU time,
 
8611
  so over a high-latency connection, too many updates get throttled.
 
8612
  (John Arbash Meinel)
 
8613
 
 
8614
* ``MemoryTransport.list_dir()`` would strip the first character for
 
8615
  files or directories in root directory. (John Arbash Meinel)
 
8616
 
 
8617
* New method ``get_branch_reference`` on 'BzrDir' allows the detection of
 
8618
  branch references - which the smart server component needs.
 
8619
 
 
8620
* New ``ChrootTransportDecorator``, accessible via the ``chroot+`` url
 
8621
  prefix.  It disallows any access to locations above a set URL.  (Andrew
 
8622
  Bennetts)
 
8623
 
 
8624
Bug Fixes
 
8625
*********
 
8626
 
 
8627
* Now ``_KnitIndex`` properly decode revision ids when loading index data.
 
8628
  And optimize the knit index parsing code.
 
8629
  (Dmitry Vasiliev, John Arbash Meinel)
 
8630
 
 
8631
* ``bzrlib/bzrdir.py`` was directly referencing ``bzrlib.workingtree``,
 
8632
  without importing it. This prevented ``bzr upgrade`` from working
 
8633
  unless a plugin already imported ``bzrlib.workingtree``
 
8634
  (John Arbash Meinel, #70716)
 
8635
 
 
8636
* Suppress the traceback on invalid URLs (Vincent Ladeuil, #70803).
 
8637
 
 
8638
* Give nicer error message when an http server returns a 403
 
8639
  error code. (Vincent Ladeuil, #57644).
 
8640
 
 
8641
* When a multi-range http GET request fails, try a single
 
8642
  range one. If it fails too, forget about ranges. Remember that until
 
8643
  the death of the transport and propagates that to the clones.
 
8644
  (Vincent Ladeuil, #62276, #62029).
 
8645
 
 
8646
* Handles user/passwords supplied in url from command
 
8647
  line (for the urllib implementation). Don't request already
 
8648
  known passwords (Vincent Ladeuil, #42383, #44647, #48527)
 
8649
 
 
8650
* ``_KnitIndex.add_versions()`` dictionary compresses revision ids as they
 
8651
  are added. This fixes bug where fetching remote revisions records
 
8652
  them as full references rather than integers.
 
8653
  (John Arbash Meinel, #64789)
 
8654
 
 
8655
* ``bzr ignore`` strips trailing slashes in patterns.
 
8656
  Also ``bzr ignore`` rejects absolute paths. (Kent Gibson, #4559)
 
8657
 
 
8658
* ``bzr ignore`` takes multiple arguments. (Cheuksan Edward Wang, #29488)
 
8659
 
 
8660
* mv correctly handles paths that traverse symlinks.
 
8661
  (Aaron Bentley, #66964)
 
8662
 
 
8663
* Give nicer looking error messages when failing to connect over ssh.
 
8664
  (John Arbash Meinel, #49172)
 
8665
 
 
8666
* Pushing to a remote branch does not currently update the remote working
 
8667
  tree. After a remote push, ``bzr status`` and ``bzr diff`` on the remote
 
8668
  machine now show that the working tree is out of date.
 
8669
  (Cheuksan Edward Wang #48136)
 
8670
 
 
8671
* Use patiencediff instead of difflib for determining deltas to insert
 
8672
  into knits. This avoids the O(N^3) behavior of difflib. Patience
 
8673
  diff should be O(N^2). (Cheuksan Edward Wang, #65714)
 
8674
 
 
8675
* Running ``bzr log`` on nonexistent file gives an error instead of the
 
8676
  entire log history. (Cheuksan Edward Wang #50793)
 
8677
 
 
8678
* ``bzr cat`` can look up contents of removed or renamed files. If the
 
8679
  pathname is ambiguous, i.e. the files in the old and new trees have
 
8680
  different id's, the default is the file in the new tree. The user can
 
8681
  use "--name-from-revision" to select the file in the old tree.
 
8682
  (Cheuksan Edward Wang, #30190)
 
8683
 
 
8684
Testing
 
8685
*******
 
8686
 
 
8687
* TestingHTTPRequestHandler really handles the Range header
 
8688
  (previously it was ignoring it and returning the whole file,).
 
8689
 
 
8690
bzr 0.12
 
8691
########
 
8692
 
 
8693
:Released:  2006-10-30
 
8694
 
 
8695
Internals
 
8696
*********
 
8697
 
 
8698
* Clean up ``bzr selftest --benchmark bundle`` to correct an import,
 
8699
  and remove benchmarks that take longer than 10min to run.
 
8700
  (John Arbash Meinel)
 
8701
 
 
8702
bzr 0.12rc1
 
8703
###########
 
8704
 
 
8705
:Released:  2006-10-23
 
8706
 
 
8707
Improvements
 
8708
************
 
8709
 
 
8710
* ``bzr log`` now shows dotted-decimal revision numbers for all revisions,
 
8711
  rather than just showing a decimal revision number for revisions on the
 
8712
  mainline. These revision numbers are not yet accepted as input into bzr
 
8713
  commands such as log, diff etc. (Robert Collins)
 
8714
 
 
8715
* revisions can now be specified using dotted-decimal revision numbers.
 
8716
  For instance, ``bzr diff -r 1.2.1..1.2.3``. (Robert Collins)
 
8717
 
 
8718
* ``bzr help commands`` output is now shorter (Aaron Bentley)
 
8719
 
 
8720
* ``bzr`` now uses lazy importing to reduce the startup time. This has
 
8721
  a moderate effect on lots of actions, especially ones that have
 
8722
  little to do. For example ``bzr rocks`` time is down to 116ms from
 
8723
  283ms. (John Arbash Meinel)
 
8724
 
 
8725
* New Registry class to provide name-to-object registry-like support,
 
8726
  for example for schemes where plugins can register new classes to
 
8727
  do certain tasks (e.g. log formatters). Also provides lazy registration
 
8728
  to allow modules to be loaded on request.
 
8729
  (John Arbash Meinel, Adeodato Simó)
 
8730
 
 
8731
API Incompatability
 
8732
*******************
 
8733
 
 
8734
* LogFormatter subclasses show now expect the 'revno' parameter to
 
8735
  show() to be a string rather than an int. (Robert Collins)
 
8736
 
 
8737
Internals
 
8738
*********
 
8739
 
 
8740
* ``TestCase.run_bzr``, ``run_bzr_captured``, and ``run_bzr_subprocess``
 
8741
  can take a ``working_dir='foo'`` parameter, which will change directory
 
8742
  for the command. (John Arbash Meinel)
 
8743
 
 
8744
* ``bzrlib.lazy_regex.lazy_compile`` can be used to create a proxy
 
8745
  around a regex, which defers compilation until first use.
 
8746
  (John Arbash Meinel)
 
8747
 
 
8748
* ``TestCase.run_bzr_subprocess`` defaults to supplying the
 
8749
  ``--no-plugins`` parameter to ensure test reproducability, and avoid
 
8750
  problems with system-wide installed plugins. (John Arbash Meinel)
 
8751
 
 
8752
* Unique tree root ids are now supported. Newly created trees still
 
8753
  use the common root id for compatibility with bzr versions before 0.12.
 
8754
  (Aaron Bentley)
 
8755
 
 
8756
* ``WorkingTree.set_root_id(None)`` is now deprecated. Please
 
8757
  pass in ``inventory.ROOT_ID`` if you want the default root id value.
 
8758
  (Robert Collins, John Arbash Meinel)
 
8759
 
 
8760
* New method ``WorkingTree.flush()`` which will write the current memory
 
8761
  inventory out to disk. At the same time, ``read_working_inventory`` will
 
8762
  no longer trash the current tree inventory if it has been modified within
 
8763
  the current lock, and the tree will now ``flush()`` automatically on
 
8764
  ``unlock()``. ``WorkingTree.set_root_id()`` has been updated to take
 
8765
  advantage of this functionality. (Robert Collins, John Arbash Meinel)
 
8766
 
 
8767
* ``bzrlib.tsort.merge_sorted`` now accepts ``generate_revnos``. This
 
8768
  parameter will cause it to add another column to its output, which
 
8769
  contains the dotted-decimal revno for each revision, as a tuple.
 
8770
  (Robert Collins)
 
8771
 
 
8772
* ``LogFormatter.show_merge`` is deprecated in favour of
 
8773
  ``LogFormatter.show_merge_revno``. (Robert Collins)
 
8774
 
 
8775
Bug Fixes
 
8776
*********
 
8777
 
 
8778
* Avoid circular imports by creating a deprecated function for
 
8779
  ``bzrlib.tree.RevisionTree``. Callers should have been using
 
8780
  ``bzrlib.revisontree.RevisionTree`` anyway. (John Arbash Meinel,
 
8781
  #66349)
 
8782
 
 
8783
* Don't use ``socket.MSG_WAITALL`` as it doesn't exist on all
 
8784
  platforms. (Martin Pool, #66356)
 
8785
 
 
8786
* Don't require ``Content-Type`` in range responses. Assume they are a
 
8787
  single range if ``Content-Type`` does not exist.
 
8788
  (John Arbash Meinel, #62473)
 
8789
 
 
8790
* bzr branch/pull no longer complain about progress bar cleanup when
 
8791
  interrupted during fetch.  (Aaron Bentley, #54000)
 
8792
 
 
8793
* ``WorkingTree.set_parent_trees()`` uses the trees to directly write
 
8794
  the basis inventory, rather than going through the repository. This
 
8795
  allows us to have 1 inventory read, and 2 inventory writes when
 
8796
  committing a new tree. (John Arbash Meinel)
 
8797
 
 
8798
* When reverting, files that are not locally modified that do not exist
 
8799
  in the target are deleted, not just unversioned (Aaron Bentley)
 
8800
 
 
8801
* When trying to acquire a lock, don't fail immediately. Instead, try
 
8802
  a few times (up to 1 hour) before timing out. Also, report why the
 
8803
  lock is unavailable (John Arbash Meinel, #43521, #49556)
 
8804
 
 
8805
* Leave HttpTransportBase daughter classes decides how they
 
8806
  implement cloning. (Vincent Ladeuil, #61606)
 
8807
 
 
8808
* diff3 does not indicate conflicts on clean merge. (Aaron Bentley)
 
8809
 
 
8810
* If a commit fails, the commit message is stored in a file at the root of
 
8811
  the tree for later commit. (Cheuksan Edward Wang, Stefan Metzmacher,
 
8812
  #32054)
 
8813
 
 
8814
Testing
 
8815
*******
 
8816
 
 
8817
* New test base class TestCaseWithMemoryTransport offers memory-only
 
8818
  testing facilities: its not suitable for tests that need to mutate disk
 
8819
  state, but most tests should not need that and should be converted to
 
8820
  TestCaseWithMemoryTransport. (Robert Collins)
 
8821
 
 
8822
* ``TestCase.make_branch_and_memory_tree`` now takes a format
 
8823
  option to set the BzrDir, Repository and Branch formats of the
 
8824
  created objects. (Robert Collins, John Arbash Meinel)
 
8825
 
 
8826
bzr 0.11
 
8827
########
 
8828
 
 
8829
:Released:  2006-10-02
 
8830
 
 
8831
* Smart server transport test failures on windows fixed. (Lukáš Lalinský).
 
8832
 
 
8833
bzr 0.11rc2
 
8834
###########
 
8835
 
 
8836
:Released:  2006-09-27
 
8837
 
 
8838
Bug Fixes
 
8839
*********
 
8840
 
 
8841
* Test suite hangs on windows fixed. (Andrew Bennets, Alexander Belchenko).
 
8842
 
 
8843
* Commit performance regression fixed. (Aaron Bentley, Robert Collins, John
 
8844
  Arbash Meinel).
 
8845
 
 
8846
bzr 0.11rc1
 
8847
###########
 
8848
 
 
8849
:Released:  2006-09-25
 
8850
 
 
8851
Improvements
 
8852
************
 
8853
 
 
8854
* Knit files now wait to create their contents until the first data is
 
8855
  added. The old code used to create an empty .knit and a .kndx with just
 
8856
  the header. However, this caused a lot of extra round trips over sftp.
 
8857
  This can change the time for ``bzr push`` to create a new remote branch
 
8858
  from 160s down to 100s. This also affects ``bzr commit`` performance when
 
8859
  adding new files, ``bzr commit`` on a new kernel-like tree drops from 50s
 
8860
  down to 40s (John Arbash Meinel, #44692)
 
8861
 
 
8862
* When an entire subtree has been deleted, commit will now report that
 
8863
  just the top of the subtree has been deleted, rather than reporting
 
8864
  all the individual items. (Robert Collins)
 
8865
 
 
8866
* Commit performs one less XML parse. (Robert Collins)
 
8867
 
 
8868
* ``bzr checkout`` now operates on readonly branches as well
 
8869
  as readwrite branches. This fixes bug #39542. (Robert Collins)
 
8870
 
 
8871
* ``bzr bind`` no longer synchronises history with the master branch.
 
8872
  Binding should be followed by an update or push to synchronise the
 
8873
  two branches. This is closely related to the fix for bug #39542.
 
8874
  (Robert Collins)
 
8875
 
 
8876
* ``bzrlib.lazy_import.lazy_import`` function to create on-demand
 
8877
  objects.  This allows all imports to stay at the global scope, but
 
8878
  modules will not actually be imported if they are not used.
 
8879
  (John Arbash Meinel)
 
8880
 
 
8881
* Support ``bzr://`` and ``bzr+ssh://`` urls to work with the new RPC-based
 
8882
  transport which will be used with the upcoming high-performance smart
 
8883
  server. The new command ``bzr serve`` will invoke bzr in server mode,
 
8884
  which processes these requests. (Andrew Bennetts, Robert Collins, Martin
 
8885
  Pool)
 
8886
 
 
8887
* New command ``bzr version-info`` which can be used to get a summary
 
8888
  of the current state of the tree. This is especially useful as part
 
8889
  of a build commands. See ``doc/version_info.txt`` for more information
 
8890
  (John Arbash Meinel)
 
8891
 
 
8892
Bug Fixes
 
8893
*********
 
8894
 
 
8895
* ``'bzr inventory [FILE...]'`` allows restricting the file list to a
 
8896
  specific set of files. (John Arbash Meinel, #3631)
 
8897
 
 
8898
* Don't abort when annotating empty files (John Arbash Meinel, #56814)
 
8899
 
 
8900
* Add ``Stanza.to_unicode()`` which can be passed to another Stanza
 
8901
  when nesting stanzas. Also, add ``read_stanza_unicode`` to handle when
 
8902
  reading a nested Stanza. (John Arbash Meinel)
 
8903
 
 
8904
* Transform._set_mode() needs to stat the right file.
 
8905
  (John Arbash Meinel, #56549)
 
8906
 
 
8907
* Raise WeaveFormatError rather than StopIteration when trying to read
 
8908
  an empty Weave file. (John Arbash Meinel, #46871)
 
8909
 
 
8910
* Don't access e.code for generic URLErrors, only HTTPErrors have .code.
 
8911
  (Vincent Ladeuil, #59835)
 
8912
 
 
8913
* Handle boundary="" lines properly to allow access through a Squid proxy.
 
8914
  (John Arbash Meinel, #57723)
 
8915
 
 
8916
* revert now removes newly-added directories (Aaron Bentley, #54172)
 
8917
 
 
8918
* ``bzr upgrade sftp://`` shouldn't fail to upgrade v6 branches if there
 
8919
  isn't a working tree. (David Allouche, #40679)
 
8920
 
 
8921
* Give nicer error messages when a user supplies an invalid --revision
 
8922
  parameter. (John Arbash Meinel, #55420)
 
8923
 
 
8924
* Handle when LANG is not recognized by python. Emit a warning, but
 
8925
  just revert to using 'ascii'. (John Arbash Meinel, #35392)
 
8926
 
 
8927
* Don't use ``preexec_fn`` on win32, as it is not supported by subprocess.
 
8928
  (John Arbash Meinel)
 
8929
 
 
8930
* Skip specific tests when the dependencies aren't met. This includes
 
8931
  some ``setup.py`` tests when ``python-dev`` is not available, and
 
8932
  some tests that depend on paramiko. (John Arbash Meinel, Mattheiu Moy)
 
8933
 
 
8934
* Fallback to Paramiko properly, if no ``ssh`` executable exists on
 
8935
  the system. (Andrew Bennetts, John Arbash Meinel)
 
8936
 
 
8937
* ``Branch.bind(other_branch)`` no longer takes a write lock on the
 
8938
  other branch, and will not push or pull between the two branches.
 
8939
  API users will need to perform a push or pull or update operation if they
 
8940
  require branch synchronisation to take place. (Robert Collins, #47344)
 
8941
 
 
8942
* When creating a tarball or zipfile export, export unicode names as utf-8
 
8943
  paths. This may not work perfectly on all platforms, but has the best
 
8944
  chance of working in the common case. (John Arbash Meinel, #56816)
 
8945
 
 
8946
* When committing, only files that exist in working tree or basis tree
 
8947
  may be specified (Aaron Bentley, #50793)
 
8948
 
 
8949
Portability
 
8950
***********
 
8951
 
 
8952
* Fixes to run on Python 2.5 (Brian M. Carlson, Martin Pool, Marien Zwart)
 
8953
 
 
8954
Internals
 
8955
*********
 
8956
 
 
8957
* TestCaseInTempDir now creates a separate directory for HOME, rather
 
8958
  than having HOME set to the same location as the working directory.
 
8959
  (John Arbash Meinel)
 
8960
 
 
8961
* ``run_bzr_subprocess()`` can take an optional ``env_changes={}`` parameter,
 
8962
  which will update os.environ inside the spawned child. It also can
 
8963
  take a ``universal_newlines=True``, which helps when checking the output
 
8964
  of the command. (John Arbash Meinel)
 
8965
 
 
8966
* Refactor SFTP vendors to allow easier re-use when ssh is used.
 
8967
  (Andrew Bennetts)
 
8968
 
 
8969
* ``Transport.list_dir()`` and ``Transport.iter_files_recursive()`` should always
 
8970
  return urlescaped paths. This is now tested (there were bugs in a few
 
8971
  of the transports) (Andrew Bennetts, David Allouche, John Arbash Meinel)
 
8972
 
 
8973
* New utility function ``symbol_versioning.deprecation_string``. Returns the
 
8974
  formatted string for a callable, deprecation format pair. (Robert Collins)
 
8975
 
 
8976
* New TestCase helper applyDeprecated. This allows you to call a callable
 
8977
  which is deprecated without it spewing to the screen, just by supplying
 
8978
  the deprecation format string issued for it. (Robert Collins)
 
8979
 
 
8980
* Transport.append and Transport.put have been deprecated in favor of
 
8981
  ``.append_bytes``, ``.append_file``, ``.put_bytes``, and
 
8982
  ``.put_file``. This removes the ambiguity in what type of object the
 
8983
  functions take.  ``Transport.non_atomic_put_{bytes,file}`` has also
 
8984
  been added. Which works similarly to ``Transport.append()`` except for
 
8985
  SFTP, it doesn't have a round trip when opening the file. Also, it
 
8986
  provides functionality for creating a parent directory when trying
 
8987
  to create a file, rather than raise NoSuchFile and forcing the
 
8988
  caller to repeat their request.
 
8989
  (John Arbash Meinel)
 
8990
 
 
8991
* WorkingTree has a new api ``unversion`` which allow the unversioning of
 
8992
  entries by their file id. (Robert Collins)
 
8993
 
 
8994
* ``WorkingTree.pending_merges`` is deprecated.  Please use the
 
8995
  ``get_parent_ids`` (introduced in 0.10) method instead. (Robert Collins)
 
8996
 
 
8997
* WorkingTree has a new ``lock_tree_write`` method which locks the branch for
 
8998
  read rather than write. This is appropriate for actions which only need
 
8999
  the branch data for reference rather than mutation. A new decorator
 
9000
  ``needs_tree_write_lock`` is provided in the workingtree module. Like the
 
9001
  ``needs_read_lock`` and ``needs_write_lock`` decorators this allows static
 
9002
  declaration of the locking requirements of a function to ensure that
 
9003
  a lock is taken out for casual scripts. (Robert Collins, #54107)
 
9004
 
 
9005
* All WorkingTree methods which write to the tree, but not to the branch
 
9006
  have been converted to use ``needs_tree_write_lock`` rather than
 
9007
  ``needs_write_lock``. Also converted is the revert, conflicts and tree
 
9008
  transform modules. This provides a modest performance improvement on
 
9009
  metadir style trees, due to the reduce lock-acquisition, and a more
 
9010
  significant performance improvement on lightweight checkouts from
 
9011
  remote branches, where trivial operations used to pay a significant
 
9012
  penalty. It also provides the basis for allowing readonly checkouts.
 
9013
  (Robert Collins)
 
9014
 
 
9015
* Special case importing the standard library 'copy' module. This shaves
 
9016
  off 40ms of startup time, while retaining compatibility. See:
 
9017
  ``bzrlib/inspect_for_copy.py`` for more details. (John Arbash Meinel)
 
9018
 
 
9019
* WorkingTree has a new parent class MutableTree which represents the
 
9020
  specialisations of Tree which are able to be altered. (Robert Collins)
 
9021
 
 
9022
* New methods mkdir and ``put_file_bytes_non_atomic`` on MutableTree that
 
9023
  mutate the tree and its contents. (Robert Collins)
 
9024
 
 
9025
* Transport behaviour at the root of the URL is now defined and tested.
 
9026
  (Andrew Bennetts, Robert Collins)
 
9027
 
 
9028
Testing
 
9029
*******
 
9030
 
 
9031
* New test helper classs MemoryTree. This is typically accessed via
 
9032
  ``self.make_branch_and_memory_tree()`` in test cases. (Robert Collins)
 
9033
 
 
9034
* Add ``start_bzr_subprocess`` and ``stop_bzr_subprocess`` to allow test
 
9035
  code to continue running concurrently with a subprocess of bzr.
 
9036
  (Andrew Bennetts, Robert Collins)
 
9037
 
 
9038
* Add a new method ``Transport.get_smart_client()``. This is provided to
 
9039
  allow upgrades to a richer interface than the VFS one provided by
 
9040
  Transport. (Andrew Bennetts, Martin Pool)
 
9041
 
 
9042
bzr 0.10
 
9043
########
 
9044
 
 
9045
:Released:  2006-08-29
 
9046
 
 
9047
Improvements
 
9048
************
 
9049
* 'merge' now takes --uncommitted, to apply uncommitted changes from a
 
9050
  tree.  (Aaron Bentley)
 
9051
 
 
9052
* 'bzr add --file-ids-from' can be used to specify another path to use
 
9053
  for creating file ids, rather than generating all new ones. Internally,
 
9054
  the 'action' passed to ``smart_add_tree()`` can return ``file_ids`` that
 
9055
  will be used, rather than having bzrlib generate new ones.
 
9056
  (John Arbash Meinel, #55781)
 
9057
 
 
9058
* ``bzr selftest --benchmark`` now allows a ``--cache-dir`` parameter.
 
9059
  This will cache some of the intermediate trees, and decrease the
 
9060
  setup time for benchmark tests. (John Arbash Meinel)
 
9061
 
 
9062
* Inverse forms are provided for all boolean options.  For example,
 
9063
  --strict has --no-strict, --no-recurse has --recurse (Aaron Bentley)
 
9064
 
 
9065
* Serialize out Inventories directly, rather than using ElementTree.
 
9066
  Writing out a kernel sized inventory drops from 2s down to ~350ms.
 
9067
  (Robert Collins, John Arbash Meinel)
 
9068
 
 
9069
Bug Fixes
 
9070
*********
 
9071
 
 
9072
* Help diffutils 2.8.4 get along with binary tests (Marien Zwart: #57614)
 
9073
 
 
9074
* Change LockDir so that if the lock directory doesn't exist when
 
9075
  ``lock_write()`` is called, an attempt will be made to create it.
 
9076
  (John Arbash Meinel, #56974)
 
9077
 
 
9078
* ``bzr uncommit`` preserves pending merges. (John Arbash Meinel, #57660)
 
9079
 
 
9080
* Active FTP transport now works as intended. (ghozzy, #56472)
 
9081
 
 
9082
* Really fix mutter() so that it won't ever raise a UnicodeError.
 
9083
  It means it is possible for ~/.bzr.log to contain non UTF-8 characters.
 
9084
  But it is a debugging log, not a real user file.
 
9085
  (John Arbash Meinel, #56947, #53880)
 
9086
 
 
9087
* Change Command handle to allow Unicode command and options.
 
9088
  At present we cannot register Unicode command names, so we will get
 
9089
  BzrCommandError('unknown command'), or BzrCommandError('unknown option')
 
9090
  But that is better than a UnicodeError + a traceback.
 
9091
  (John Arbash Meinel, #57123)
 
9092
 
 
9093
* Handle TZ=UTC properly when reading/writing revisions.
 
9094
  (John Arbash Meinel, #55783, #56290)
 
9095
 
 
9096
* Use ``GPG_TTY`` to allow gpg --cl to work with gpg-agent in a pipeline,
 
9097
  (passing text to sign in on stdin). (John Arbash Meinel, #54468)
 
9098
 
 
9099
* External diff does the right thing for binaries even in foreign
 
9100
  languages. (John Arbash Meinel, #56307)
 
9101
 
 
9102
* Testament handles more cases when content is unicode. Specific bug was
 
9103
  in handling of revision properties.
 
9104
  (John Arbash Meinel, Holger Krekel, #54723)
 
9105
 
 
9106
* The bzr selftest was failing on installed versions due to a bug in a new
 
9107
  test helper. (John Arbash Meinel, Robert Collins, #58057)
 
9108
 
 
9109
Internals
 
9110
*********
 
9111
 
 
9112
* ``bzrlib.cache_utf8`` contains ``encode()`` and ``decode()`` functions
 
9113
  which can be used to cache the conversion between utf8 and Unicode.
 
9114
  Especially helpful for some of the knit annotation code, which has to
 
9115
  convert revision ids to utf8 to annotate lines in storage.
 
9116
  (John Arbash Meinel)
 
9117
 
 
9118
* ``setup.py`` now searches the filesystem to find all packages which
 
9119
  need to be installed. This should help make the life of packagers
 
9120
  easier. (John Arbash Meinel)
 
9121
 
 
9122
bzr 0.9.0
 
9123
#########
 
9124
 
 
9125
:Released:  2006-08-11
 
9126
 
 
9127
Surprises
 
9128
*********
 
9129
 
 
9130
* The hard-coded built-in ignore rules have been removed. There are
 
9131
  now two rulesets which are enforced. A user global one in
 
9132
  ``~/.bazaar/ignore`` which will apply to every tree, and the tree
 
9133
  specific one '.bzrignore'.
 
9134
  ``~/.bazaar/ignore`` will be created if it does not exist, but with
 
9135
  a more conservative list than the old default.
 
9136
  This fixes bugs with default rules being enforced no matter what.
 
9137
  The old list of ignore rules from bzr is available by
 
9138
  running 'bzr ignore --old-default-rules'.
 
9139
  (Robert Collins, Martin Pool, John Arbash Meinel)
 
9140
 
 
9141
* 'branches.conf' has been changed to 'locations.conf', since it can apply
 
9142
  to more locations than just branch locations.
 
9143
  (Aaron Bentley)
 
9144
 
 
9145
Improvements
 
9146
************
 
9147
 
 
9148
* The revision specifier "revno:" is extended to accept the syntax
 
9149
  revno:N:branch. For example,
 
9150
  revno:42:http://bazaar-vcs.org/bzr/bzr.dev/ means revision 42 in
 
9151
  bzr.dev.  (Matthieu Moy)
 
9152
 
 
9153
* Tests updates to ensure proper URL handling, UNICODE support, and
 
9154
  proper printing when the user's terminal encoding cannot display
 
9155
  the path of a file that has been versioned.
 
9156
  ``bzr branch`` can take a target URL rather than only a local directory.
 
9157
  ``Branch.get_parent()/set_parent()`` now save a relative path if possible,
 
9158
  and normalize the parent based on root, allowing access across
 
9159
  different transports. (John Arbash Meinel, Wouter van Heyst, Martin Pool)
 
9160
  (Malone #48906, #42699, #40675, #5281, #3980, #36363, #43689,
 
9161
  #42517, #42514)
 
9162
 
 
9163
* On Unix, detect terminal width using an ioctl not just $COLUMNS.
 
9164
  Use terminal width for single-line logs from ``bzr log --line`` and
 
9165
  pending-merge display.  (Robert Widhopf-Fenk, Gustavo Niemeyer)
 
9166
  (Malone #3507)
 
9167
 
 
9168
* On Windows, detect terminal width using GetConsoleScreenBufferInfo.
 
9169
  (Alexander Belchenko)
 
9170
 
 
9171
* Speedup improvement for 'date:'-revision search. (Guillaume Pinot).
 
9172
 
 
9173
* Show the correct number of revisions pushed when pushing a new branch.
 
9174
  (Robert Collins).
 
9175
 
 
9176
* 'bzr selftest' now shows a progress bar with the number of tests, and
 
9177
  progress made. 'make check' shows tests in -v mode, to be more useful
 
9178
  for the PQM status window. (Robert Collins).
 
9179
  When using a progress bar, failed tests are printed out, rather than
 
9180
  being overwritten by the progress bar until the suite finishes.
 
9181
  (John Arbash Meinel)
 
9182
 
 
9183
* 'bzr selftest --benchmark' will run a new benchmarking selftest.
 
9184
  'bzr selftest --benchmark --lsprof-timed' will use lsprofile to generate
 
9185
  profile data for the individual profiled calls, allowing for fine
 
9186
  grained analysis of performance.
 
9187
  (Robert Collins, Martin Pool).
 
9188
 
 
9189
* 'bzr commit' shows a progress bar. This is useful for commits over sftp
 
9190
  where commit can take an appreciable time. (Robert Collins)
 
9191
 
 
9192
* 'bzr add' is now less verbose in telling you what ignore globs were
 
9193
  matched by files being ignored. Instead it just tells you how many
 
9194
  were ignored (because you might reasonably be expecting none to be
 
9195
  ignored). 'bzr add -v' is unchanged and will report every ignored
 
9196
  file. (Robert Collins).
 
9197
 
 
9198
* ftp now has a test server if medusa is installed. As part of testing,
 
9199
  ftp support has been improved, including support for supplying a
 
9200
  non-standard port. (John Arbash Meinel).
 
9201
 
 
9202
* 'bzr log --line' shows the revision number, and uses only the
 
9203
  first line of the log message (#5162, Alexander Belchenko;
 
9204
  Matthieu Moy)
 
9205
 
 
9206
* 'bzr status' has had the --all option removed. The 'bzr ls' command
 
9207
  should be used to retrieve all versioned files. (Robert Collins)
 
9208
 
 
9209
* 'bzr bundle OTHER/BRANCH' will create a bundle which can be sent
 
9210
  over email, and applied on the other end, while maintaining ancestry.
 
9211
  This bundle can be applied with either 'bzr merge' or 'bzr pull',
 
9212
  the same way you would apply another branch.
 
9213
  (John Arbash Meinel, Aaron Bentley)
 
9214
 
 
9215
* 'bzr whoami' can now be used to set your identity from the command line,
 
9216
  for a branch or globally.  (Robey Pointer)
 
9217
 
 
9218
* 'bzr checkout' now aliased to 'bzr co', and 'bzr annotate' to 'bzr ann'.
 
9219
  (Michael Ellerman)
 
9220
 
 
9221
* 'bzr revert DIRECTORY' now reverts the contents of the directory as well.
 
9222
  (Aaron Bentley)
 
9223
 
 
9224
* 'bzr get sftp://foo' gives a better error when paramiko is not present.
 
9225
  Also updates things like 'http+pycurl://' if pycurl is not present.
 
9226
  (John Arbash Meinel) (Malone #47821, #52204)
 
9227
 
 
9228
* New env variable ``BZR_PROGRESS_BAR``, sets the default progress bar type.
 
9229
  Can be set to 'none' or 'dummy' to disable the progress bar, 'dots' or
 
9230
  'tty' to create the respective type. (John Arbash Meinel, #42197, #51107)
 
9231
 
 
9232
* Improve the help text for 'bzr diff' to explain what various options do.
 
9233
  (John Arbash Meinel, #6391)
 
9234
 
 
9235
* 'bzr uncommit -r 10' now uncommits revisions 11.. rather than uncommitting
 
9236
  revision 10. This makes -r10 more in line with what other commands do.
 
9237
  'bzr uncommit' also now saves the pending merges of the revisions that
 
9238
  were removed. So it is safe to uncommit after a merge, fix something,
 
9239
  and commit again. (John Arbash Meinel, #32526, #31426)
 
9240
 
 
9241
* 'bzr init' now also works on remote locations.
 
9242
  (Wouter van Heyst, #48904)
 
9243
 
 
9244
* HTTP support has been updated. When using pycurl we now support
 
9245
  connection keep-alive, which reduces dns requests and round trips.
 
9246
  And for both urllib and pycurl we support multi-range requests,
 
9247
  which decreases the number of round-trips. Performance results for
 
9248
  ``bzr branch http://bazaar-vcs.org/bzr/bzr.dev/`` indicate
 
9249
  http branching is now 2-3x faster, and ``bzr pull`` in an existing
 
9250
  branch is as much as 4x faster.
 
9251
  (Michael Ellerman, Johan Rydberg, John Arbash Meinel, #46768)
 
9252
 
 
9253
* Performance improvements for sftp. Branching and pulling are now up to
 
9254
  2x faster. Utilize paramiko.readv() support for async requests if it
 
9255
  is available (paramiko > 1.6) (John Arbash Meinel)
 
9256
 
 
9257
Bug Fixes
 
9258
*********
 
9259
 
 
9260
* Fix shadowed definition of TestLocationConfig that caused some
 
9261
  tests not to run.
 
9262
  (Erik Bågfors, Michael Ellerman, Martin Pool, #32587)
 
9263
 
 
9264
* Fix unnecessary requirement of sign-my-commits that it be run from
 
9265
  a working directory.  (Martin Pool, Robert Collins)
 
9266
 
 
9267
* 'bzr push location' will only remember the push location if it succeeds
 
9268
  in connecting to the remote location. (John Arbash Meinel, #49742)
 
9269
 
 
9270
* 'bzr revert' no longer toggles the executable bit on win32
 
9271
  (John Arbash Meinel, #45010)
 
9272
 
 
9273
* Handle broken pipe under win32 correctly. (John Arbash Meinel)
 
9274
 
 
9275
* sftp tests now work correctly on win32 if you have a newer paramiko
 
9276
  (John Arbash Meinel)
 
9277
 
 
9278
* Cleanup win32 test suite, and general cleanup of places where
 
9279
  file handles were being held open. (John Arbash Meinel)
 
9280
 
 
9281
* When specifying filenames for 'diff -r x..y', the name of the file in the
 
9282
  working directory can be used, even if its name is different in both x
 
9283
  and y.
 
9284
 
 
9285
* File-ids containing single- or double-quotes are handled correctly by
 
9286
  push. (Aaron Bentley, #52227)
 
9287
 
 
9288
* Normalize unicode filenames to ensure cross-platform consistency.
 
9289
  (John Arbash Meinel, #43689)
 
9290
 
 
9291
* The argument parser can now handle '-' as an argument. Currently
 
9292
  no code interprets it specially (it is mostly handled as a file named
 
9293
  '-'). But plugins, and future operations can use it.
 
9294
  (John Arbash meinel, #50984)
 
9295
 
 
9296
* Bundles can properly read binary files with a plain '\r' in them.
 
9297
  (John Arbash Meinel, #51927)
 
9298
 
 
9299
* Tuning ``iter_entries()`` to be more efficient (John Arbash Meinel, #5444)
 
9300
 
 
9301
* Lots of win32 fixes (the test suite passes again).
 
9302
  (John Arbash Meinel, #50155)
 
9303
 
 
9304
* Handle openbsd returning None for sys.getfilesystemencoding() (#41183)
 
9305
 
 
9306
* Support ftp APPE (append) to allow Knits to be used over ftp (#42592)
 
9307
 
 
9308
* Removals are only committed if they match the filespec (or if there is
 
9309
  no filespec).  (#46635, Aaron Bentley)
 
9310
 
 
9311
* smart-add recurses through all supplied directories
 
9312
  (John Arbash Meinel, #52578)
 
9313
 
 
9314
* Make the bundle reader extra lines before and after the bundle text.
 
9315
  This allows you to parse an email with the bundle inline.
 
9316
  (John Arbash Meinel, #49182)
 
9317
 
 
9318
* Change the file id generator to squash a little bit more. Helps when
 
9319
  working with long filenames on windows. (Also helps for unicode filenames
 
9320
  not generating hidden files). (John Arbash Meinel, #43801)
 
9321
 
 
9322
* Restore terminal mode on C-c while reading sftp password.  (#48923,
 
9323
  Nicholas Allen, Martin Pool)
 
9324
 
 
9325
* Timestamps are rounded to 1ms, and revision entries can be recreated
 
9326
  exactly. (John Arbash Meinel, Jamie Wilkinson, #40693)
 
9327
 
 
9328
* Branch.base has changed to a URL, but ~/.bazaar/locations.conf should
 
9329
  use local paths, since it is user visible (John Arbash Meinel, #53653)
 
9330
 
 
9331
* ``bzr status foo`` when foo was unversioned used to cause a full delta
 
9332
  to be generated (John Arbash Meinel, #53638)
 
9333
 
 
9334
* When reading revision properties, an empty value should be considered
 
9335
  the empty string, not None (John Arbash Meinel, #47782)
 
9336
 
 
9337
* ``bzr diff --diff-options`` can now handle binary files being changed.
 
9338
  Also, the output is consistent when --diff-options is not supplied.
 
9339
  (John Arbash Meinel, #54651, #52930)
 
9340
 
 
9341
* Use the right suffixes for loading plugins (John Arbash Meinel, #51810)
 
9342
 
 
9343
* Fix ``Branch.get_parent()`` to handle the case when the parent is not
 
9344
  accessible (John Arbash Meinel, #52976)
 
9345
 
 
9346
Internals
 
9347
*********
 
9348
 
 
9349
* Combine the ignore rules into a single regex rather than looping over
 
9350
  them to reduce the threshold where  N^2 behaviour occurs in operations
 
9351
  like status. (Jan Hudec, Robert Collins).
 
9352
 
 
9353
* Appending to ``bzrlib.DEFAULT_IGNORE`` is now deprecated. Instead, use
 
9354
  one of the add functions in bzrlib.ignores. (John Arbash Meinel)
 
9355
 
 
9356
* 'bzr push' should only push the ancestry of the current revision, not
 
9357
  all of the history in the repository. This is especially important for
 
9358
  shared repositories. (John Arbash Meinel)
 
9359
 
 
9360
* ``bzrlib.delta.compare_trees`` now iterates in alphabetically sorted order,
 
9361
  rather than randomly walking the inventories. (John Arbash Meinel)
 
9362
 
 
9363
* Doctests are now run in temporary directories which are cleaned up when
 
9364
  they finish, rather than using special ScratchDir/ScratchBranch objects.
 
9365
  (Martin Pool)
 
9366
 
 
9367
* Split ``check`` into separate methods on the branch and on the repository,
 
9368
  so that it can be specialized in ways that are useful or efficient for
 
9369
  different formats.  (Martin Pool, Robert Collins)
 
9370
 
 
9371
* Deprecate ``Repository.all_revision_ids``; most methods don't really need
 
9372
  the global revision graph but only that part leading up to a particular
 
9373
  revision.  (Martin Pool, Robert Collins)
 
9374
 
 
9375
* Add a BzrDirFormat ``control_formats`` list which allows for control formats
 
9376
  that do not use '.bzr' to store their data - i.e. '.svn', '.hg' etc.
 
9377
  (Robert Collins, Jelmer Vernooij).
 
9378
 
 
9379
* ``bzrlib.diff.external_diff`` can be redirected to any file-like object.
 
9380
  Uses subprocess instead of spawnvp.
 
9381
  (James Henstridge, John Arbash Meinel, #4047, #48914)
 
9382
 
 
9383
* New command line option '--profile-imports', which will install a custom
 
9384
  importer to log time to import modules and regex compilation time to
 
9385
  sys.stderr (John Arbash Meinel)
 
9386
 
 
9387
* 'EmptyTree' is now deprecated, please use ``repository.revision_tree(None)``
 
9388
  instead. (Robert Collins)
 
9389
 
 
9390
* "RevisionTree" is now in bzrlib/revisiontree.py. (Robert Collins)
 
9391
 
 
9392
bzr 0.8.2
 
9393
#########
 
9394
 
 
9395
:Released:  2006-05-17
 
9396
 
 
9397
Bug Fixes
 
9398
*********
 
9399
 
 
9400
* setup.py failed to install launchpad plugin.  (Martin Pool)
 
9401
 
 
9402
bzr 0.8.1
 
9403
#########
 
9404
 
 
9405
:Released:  2006-05-16
 
9406
 
 
9407
Bug Fixes
 
9408
*********
 
9409
 
 
9410
* Fix failure to commit a merge in a checkout.  (Martin Pool,
 
9411
  Robert Collins, Erik Bågfors, #43959)
 
9412
 
 
9413
* Nicer messages from 'commit' in the case of renames, and correct
 
9414
  messages when a merge has occured. (Robert Collins, Martin Pool)
 
9415
 
 
9416
* Separate functionality from assert statements as they are skipped in
 
9417
  optimized mode of python. Add the same check to pending merges.
 
9418
  (Olaf Conradi, #44443)
 
9419
 
 
9420
Changes
 
9421
*******
 
9422
 
 
9423
* Do not show the None revision in output of bzr ancestry. (Olaf Conradi)
 
9424
 
 
9425
* Add info on standalone branches without a working tree.
 
9426
  (Olaf Conradi, #44155)
 
9427
 
 
9428
* Fix bug in knits when raising InvalidRevisionId. (Olaf Conradi, #44284)
 
9429
 
 
9430
Changes
 
9431
*******
 
9432
 
 
9433
* Make editor invocation comply with Debian Policy. First check
 
9434
  environment variables VISUAL and EDITOR, then try editor from
 
9435
  alternatives system. If that all fails, fall back to the pre-defined
 
9436
  list of editors. (Olaf Conradi, #42904)
 
9437
 
 
9438
New Features
 
9439
************
 
9440
 
 
9441
* New 'register-branch' command registers a public branch into
 
9442
  Launchpad.net, where it can be associated with bugs, etc.
 
9443
  (Martin Pool, Bjorn Tillenius, Robert Collins)
 
9444
 
 
9445
Internals
 
9446
*********
 
9447
 
 
9448
* New public api in InventoryEntry - ``describe_change(old, new)`` which
 
9449
  provides a human description of the changes between two old and
 
9450
  new. (Robert Collins, Martin Pool)
 
9451
 
 
9452
Testing
 
9453
*******
 
9454
 
 
9455
* Fix test case for bzr info in upgrading a standalone branch to metadir,
 
9456
  uses bzrlib api now. (Olaf Conradi)
 
9457
 
 
9458
bzr 0.8
 
9459
#######
 
9460
 
 
9461
:Released:  2006-05-08
 
9462
 
 
9463
Notes When Upgrading
 
9464
********************
 
9465
 
 
9466
Release 0.8 of bzr introduces a new format for history storage, called
 
9467
'knit', as an evolution of to the 'weave' format used in 0.7.  Local
 
9468
and remote operations are faster using knits than weaves.  Several
 
9469
operations including 'init', 'init-repo', and 'upgrade' take a
 
9470
--format option that controls this.  Branching from an existing branch
 
9471
will keep the same format.
 
9472
 
 
9473
It is possible to merge, pull and push between branches of different
 
9474
formats but this is slower than moving data between homogenous
 
9475
branches.  It is therefore recommended (but not required) that you
 
9476
upgrade all branches for a project at the same time.  Information on
 
9477
formats is shown by 'bzr info'.
 
9478
 
 
9479
bzr 0.8 now allows creation of 'repositories', which hold the history
 
9480
of files and revisions for several branches.  Previously bzr kept all
 
9481
the history for a branch within the .bzr directory at the root of the
 
9482
branch, and this is still the default.  To create a repository, use
 
9483
the new 'bzr init-repo' command.  Branches exist as directories under
 
9484
the repository and contain just a small amount of information
 
9485
indicating the current revision of the branch.
 
9486
 
 
9487
bzr 0.8 also supports 'checkouts', which are similar to in cvs and
 
9488
subversion.  Checkouts are associated with a branch (optionally in a
 
9489
repository), which contains all the historical information.  The
 
9490
result is that a checkout can be deleted without losing any
 
9491
already-committed revisions.  A new 'update' command is also available.
 
9492
 
 
9493
Repositories and checkouts are not supported with the 0.7 storage
 
9494
format.  To use them you must upgrad to either knits, or to the
 
9495
'metaweave' format, which uses weaves but changes the .bzr directory
 
9496
arrangement.
 
9497
 
 
9498
 
 
9499
Improvements
 
9500
************
 
9501
 
 
9502
* sftp paths can now be relative, or local, according to the lftp
 
9503
  convention. Paths now take the form::
 
9504
 
 
9505
      sftp://user:pass@host:port/~/relative/path
 
9506
      or
 
9507
      sftp://user:pass@host:port/absolute/path
 
9508
 
 
9509
* The FTP transport now tries to reconnect after a temporary
 
9510
  failure. ftp put is made atomic. (Matthieu Moy)
 
9511
 
 
9512
* The FTP transport now maintains a pool of connections, and
 
9513
  reuses them to avoid multiple connections to the same host (like
 
9514
  sftp did). (Daniel Silverstone)
 
9515
 
 
9516
* The ``bzr_man.py`` file has been removed. To create the man page now,
 
9517
  use ``./generate_docs.py man``. The new program can also create other files.
 
9518
  Run ``python generate_docs.py --help`` for usage information.
 
9519
  (Hans Ulrich Niedermann & James Blackwell).
 
9520
 
 
9521
* Man Page now gives full help (James Blackwell).
 
9522
  Help also updated to reflect user config now being stored in .bazaar
 
9523
  (Hans Ulrich Niedermann)
 
9524
 
 
9525
* It's now possible to set aliases in bazaar.conf (Erik Bågfors)
 
9526
 
 
9527
* Pull now accepts a --revision argument (Erik Bågfors)
 
9528
 
 
9529
* ``bzr re-sign`` now allows multiple revisions to be supplied on the command
 
9530
  line. You can now use the following command to sign all of your old
 
9531
  commits::
 
9532
 
 
9533
    find .bzr/revision-store// -name my@email-* \
 
9534
      | sed 's/.*\/\/..\///' \
 
9535
      | xargs bzr re-sign
 
9536
 
 
9537
* Upgrade can now upgrade over the network. (Robert Collins)
 
9538
 
 
9539
* Two new commands 'bzr checkout' and 'bzr update' allow for CVS/SVN-alike
 
9540
  behaviour.  By default they will cache history in the checkout, but
 
9541
  with --lightweight almost all data is kept in the master branch.
 
9542
  (Robert Collins)
 
9543
 
 
9544
* 'revert' unversions newly-versioned files, instead of deleting them.
 
9545
 
 
9546
* 'merge' is more robust.  Conflict messages have changed.
 
9547
 
 
9548
* 'merge' and 'revert' no longer clobber existing files that end in '~' or
 
9549
  '.moved'.
 
9550
 
 
9551
* Default log format can be set in configuration and plugins can register
 
9552
  their own formatters. (Erik Bågfors)
 
9553
 
 
9554
* New 'reconcile' command will check branch consistency and repair indexes
 
9555
  that can become out of sync in pre 0.8 formats. (Robert Collins,
 
9556
  Daniel Silverstone)
 
9557
 
 
9558
* New 'bzr init --format' and 'bzr upgrade --format' option to control
 
9559
  what storage format is created or produced.  (Robert Collins,
 
9560
  Martin Pool)
 
9561
 
 
9562
* Add parent location to 'bzr info', if there is one.  (Olaf Conradi)
 
9563
 
 
9564
* New developer commands 'weave-list' and 'weave-join'.  (Martin Pool)
 
9565
 
 
9566
* New 'init-repository' command, plus support for repositories in 'init'
 
9567
  and 'branch' (Aaron Bentley, Erik Bågfors, Robert Collins)
 
9568
 
 
9569
* Improve output of 'info' command. Show all relevant locations related to
 
9570
  working tree, branch and repository. Use kibibytes for binary quantities.
 
9571
  Fix off-by-one error in missing revisions of working tree.  Make 'info'
 
9572
  work on branches, repositories and remote locations.  Show locations
 
9573
  relative to the shared repository, if applicable.  Show locking status
 
9574
  of locations.  (Olaf Conradi)
 
9575
 
 
9576
* Diff and merge now safely handle binary files. (Aaron Bentley)
 
9577
 
 
9578
* 'pull' and 'push' now normalise the revision history, so that any two
 
9579
  branches with the same tip revision will have the same output from 'log'.
 
9580
  (Robert Collins)
 
9581
 
 
9582
* 'merge' accepts --remember option to store parent location, like 'push'
 
9583
  and 'pull'. (Olaf Conradi)
 
9584
 
 
9585
* bzr status and diff when files given as arguments do not exist
 
9586
  in the relevant trees.  (Martin Pool, #3619)
 
9587
 
 
9588
* Add '.hg' to the default ignore list.  (Martin Pool)
 
9589
 
 
9590
* 'knit' is now the default disk format. This improves disk performance and
 
9591
  utilization, increases incremental pull performance, robustness with SFTP
 
9592
  and allows checkouts over SFTP to perform acceptably.
 
9593
  The initial Knit code was contributed by Johan Rydberg based on a
 
9594
  specification by Martin Pool.
 
9595
  (Robert Collins, Aaron Bentley, Johan Rydberg, Martin Pool).
 
9596
 
 
9597
* New tool to generate all-in-one html version of the manual.  (Alexander
 
9598
  Belchenko)
 
9599
 
 
9600
* Hitting CTRL-C while doing an SFTP push will no longer cause stale locks
 
9601
  to be left in the SFTP repository. (Robert Collins, Martin Pool).
 
9602
 
 
9603
* New option 'diff --prefix' to control how files are named in diff
 
9604
  output, with shortcuts '-p0' and '-p1' corresponding to the options for
 
9605
  GNU patch.  (Alexander Belchenko, Goffredo Baroncelli, Martin Pool)
 
9606
 
 
9607
* Add --revision option to 'annotate' command.  (Olaf Conradi)
 
9608
 
 
9609
* If bzr shows an unexpected revision-history after pulling (perhaps due
 
9610
  to a reweave) it can now be corrected by 'bzr reconcile'.
 
9611
  (Robert Collins)
 
9612
 
 
9613
Changes
 
9614
*******
 
9615
 
 
9616
* Commit is now verbose by default, and shows changed filenames and the
 
9617
  new revision number.  (Robert Collins, Martin Pool)
 
9618
 
 
9619
* Unify 'mv', 'move', 'rename'.  (Matthew Fuller, #5379)
 
9620
 
 
9621
* 'bzr -h' shows help.  (Martin Pool, Ian Bicking, #35940)
 
9622
 
 
9623
* Make 'pull' and 'push' remember location on failure using --remember.
 
9624
  (Olaf Conradi)
 
9625
 
 
9626
* For compatibility, make old format for using weaves inside metadir
 
9627
  available as 'metaweave' format.  Rename format 'metadir' to 'default'.
 
9628
  Clean up help for option --format in commands 'init', 'init-repo' and
 
9629
  'upgrade'.  (Olaf Conradi)
 
9630
 
 
9631
Internals
 
9632
*********
 
9633
 
 
9634
* The internal storage of history, and logical branch identity have now
 
9635
  been split into Branch, and Repository. The common locking and file
 
9636
  management routines are now in bzrlib.lockablefiles.
 
9637
  (Aaron Bentley, Robert Collins, Martin Pool)
 
9638
 
 
9639
* Transports can now raise DependencyNotPresent if they need a library
 
9640
  which is not installed, and then another implementation will be
 
9641
  tried.  (Martin Pool)
 
9642
 
 
9643
* Remove obsolete (and no-op) `decode` parameter to `Transport.get`.
 
9644
  (Martin Pool)
 
9645
 
 
9646
* Using Tree Transform for merge, revert, tree-building
 
9647
 
 
9648
* WorkingTree.create, Branch.create, ``WorkingTree.create_standalone``,
 
9649
  Branch.initialize are now deprecated. Please see ``BzrDir.create_*`` for
 
9650
  replacement API's. (Robert Collins)
 
9651
 
 
9652
* New BzrDir class represents the .bzr control directory and manages
 
9653
  formatting issues. (Robert Collins)
 
9654
 
 
9655
* New repository.InterRepository class encapsulates Repository to
 
9656
  Repository actions and allows for clean selection of optimised code
 
9657
  paths. (Robert Collins)
 
9658
 
 
9659
* ``bzrlib.fetch.fetch`` and ``bzrlib.fetch.greedy_fetch`` are now
 
9660
  deprecated, please use ``branch.fetch`` or ``repository.fetch``
 
9661
  depending on your needs. (Robert Collins)
 
9662
 
 
9663
* deprecated methods now have a ``is_deprecated`` flag on them that can
 
9664
  be checked, if you need to determine whether a given callable is
 
9665
  deprecated at runtime. (Robert Collins)
 
9666
 
 
9667
* Progress bars are now nested - see
 
9668
  ``bzrlib.ui.ui_factory.nested_progress_bar``.
 
9669
  (Robert Collins, Robey Pointer)
 
9670
 
 
9671
* New API call ``get_format_description()`` for each type of format.
 
9672
  (Olaf Conradi)
 
9673
 
 
9674
* Changed ``branch.set_parent()`` to accept None to remove parent.
 
9675
  (Olaf Conradi)
 
9676
 
 
9677
* Deprecated BzrError AmbiguousBase.  (Olaf Conradi)
 
9678
 
 
9679
* WorkingTree.branch is now a read only property.  (Robert Collins)
 
9680
 
 
9681
* bzrlib.ui.text.TextUIFactory now accepts a ``bar_type`` parameter which
 
9682
  can be None or a factory that will create a progress bar. This is
 
9683
  useful for testing or for overriding the bzrlib.progress heuristic.
 
9684
  (Robert Collins)
 
9685
 
 
9686
* New API method ``get_physical_lock_status()`` to query locks present on a
 
9687
  transport.  (Olaf Conradi)
 
9688
 
 
9689
* Repository.reconcile now takes a thorough keyword parameter to allow
 
9690
  requesting an indepth reconciliation, rather than just a data-loss
 
9691
  check. (Robert Collins)
 
9692
 
 
9693
* ``bzrlib.ui.ui_factory protocol`` now supports ``get_boolean`` to prompt
 
9694
  the user for yes/no style input. (Robert Collins)
 
9695
 
 
9696
Testing
 
9697
*******
 
9698
 
 
9699
* SFTP tests now shortcut the SSH negotiation, reducing test overhead
 
9700
  for testing SFTP protocol support. (Robey Pointer)
 
9701
 
 
9702
* Branch formats are now tested once per implementation (see ``bzrlib.
 
9703
  tests.branch_implementations``. This is analagous to the transport
 
9704
  interface tests, and has been followed up with working tree,
 
9705
  repository and BzrDir tests. (Robert Collins)
 
9706
 
 
9707
* New test base class TestCaseWithTransport provides a transport aware
 
9708
  test environment, useful for testing any transport-interface using
 
9709
  code. The test suite option --transport controls the transport used
 
9710
  by this class (when its not being used as part of implementation
 
9711
  contract testing). (Robert Collins)
 
9712
 
 
9713
* Close logging handler on disabling the test log. This will remove the
 
9714
  handler from the internal list inside python's logging module,
 
9715
  preventing shutdown from closing it twice.  (Olaf Conradi)
 
9716
 
 
9717
* Move test case for uncommit to blackbox tests.  (Olaf Conradi)
 
9718
 
 
9719
* ``run_bzr`` and ``run_bzr_captured`` now accept a 'stdin="foo"'
 
9720
  parameter which will provide String("foo") to the command as its stdin.
 
9721
 
 
9722
bzr 0.7
 
9723
#######
 
9724
 
 
9725
:Released: 2006-01-09
 
9726
 
 
9727
Changes
 
9728
*******
 
9729
 
 
9730
* .bzrignore is excluded from exports, on the grounds that it's a bzr
 
9731
  internal-use file and may not be wanted.  (Jamie Wilkinson)
 
9732
 
 
9733
* The "bzr directories" command were removed in favor of the new
 
9734
  --kind option to the "bzr inventory" command.  To list all
 
9735
  versioned directories, now use "bzr inventory --kind directory".
 
9736
  (Johan Rydberg)
 
9737
 
 
9738
* Under Windows configuration directory is now ``%APPDATA%\bazaar\2.0``
 
9739
  by default. (John Arbash Meinel)
 
9740
 
 
9741
* The parent of Bzr configuration directory can be set by ``BZR_HOME``
 
9742
  environment variable. Now the path for it is searched in ``BZR_HOME``,
 
9743
  then in HOME. Under Windows the order is: ``BZR_HOME``, ``APPDATA``
 
9744
  (usually points to ``C:\Documents and Settings\User Name\Application Data``),
 
9745
  ``HOME``. (John Arbash Meinel)
 
9746
 
 
9747
* Plugins with the same name in different directories in the bzr plugin
 
9748
  path are no longer loaded: only the first successfully loaded one is
 
9749
  used. (Robert Collins)
 
9750
 
 
9751
* Use systems' external ssh command to open connections if possible.
 
9752
  This gives better integration with user settings such as ProxyCommand.
 
9753
  (James Henstridge)
 
9754
 
 
9755
* Permissions on files underneath .bzr/ are inherited from the .bzr
 
9756
  directory. So for a shared repository, simply doing 'chmod -R g+w .bzr/'
 
9757
  will mean that future file will be created with group write permissions.
 
9758
 
 
9759
* configure.in and config.guess are no longer in the builtin default
 
9760
  ignore list.
 
9761
 
 
9762
* '.sw[nop]' pattern ignored, to ignore vim swap files for nameless
 
9763
  files.  (John Arbash Meinel, Martin Pool)
 
9764
 
 
9765
Improvements
 
9766
************
 
9767
 
 
9768
* "bzr INIT dir" now initializes the specified directory, and creates
 
9769
  it if it does not exist.  (John Arbash Meinel)
 
9770
 
 
9771
* New remerge command (Aaron Bentley)
 
9772
 
 
9773
* Better zsh completion script.  (Steve Borho)
 
9774
 
 
9775
* 'bzr diff' now returns 1 when there are changes in the working
 
9776
  tree. (Robert Collins)
 
9777
 
 
9778
* 'bzr push' now exists and can push changes to a remote location.
 
9779
  This uses the transport infrastructure, and can store the remote
 
9780
  location in the ~/.bazaar/branches.conf configuration file.
 
9781
  (Robert Collins)
 
9782
 
 
9783
* Test directories are only kept if the test fails and the user requests
 
9784
  that they be kept.
 
9785
 
 
9786
* Tweaks to short log printing
 
9787
 
 
9788
* Added branch nicks, new nick command, printing them in log output.
 
9789
  (Aaron Bentley)
 
9790
 
 
9791
* If ``$BZR_PDB`` is set, pop into the debugger when an uncaught exception
 
9792
  occurs.  (Martin Pool)
 
9793
 
 
9794
* Accept 'bzr resolved' (an alias for 'bzr resolve'), as this is
 
9795
  the same as Subversion.  (Martin Pool)
 
9796
 
 
9797
* New ftp transport support (on ftplib), for ftp:// and aftp://
 
9798
  URLs.  (Daniel Silverstone)
 
9799
 
 
9800
* Commit editor temporary files now start with ``bzr_log.``, to allow
 
9801
  text editors to match the file name and set up appropriate modes or
 
9802
  settings.  (Magnus Therning)
 
9803
 
 
9804
* Improved performance when integrating changes from a remote weave.
 
9805
  (Goffredo Baroncelli)
 
9806
 
 
9807
* Sftp will attempt to cache the connection, so it is more likely that
 
9808
  a connection will be reused, rather than requiring multiple password
 
9809
  requests.
 
9810
 
 
9811
* bzr revno now takes an optional argument indicating the branch whose
 
9812
  revno should be printed.  (Michael Ellerman)
 
9813
 
 
9814
* bzr cat defaults to printing the last version of the file.
 
9815
  (Matthieu Moy, #3632)
 
9816
 
 
9817
* New global option 'bzr --lsprof COMMAND' runs bzr under the lsprof
 
9818
  profiler.  (Denys Duchier)
 
9819
 
 
9820
* Faster commits by reading only the headers of affected weave files.
 
9821
  (Denys Duchier)
 
9822
 
 
9823
* 'bzr add' now takes a --dry-run parameter which shows you what would be
 
9824
  added, but doesn't actually add anything. (Michael Ellerman)
 
9825
 
 
9826
* 'bzr add' now lists how many files were ignored per glob.  add --verbose
 
9827
  lists the specific files.  (Aaron Bentley)
 
9828
 
 
9829
* 'bzr missing' now supports displaying changes in diverged trees and can
 
9830
  be limited to show what either end of the comparison is missing.
 
9831
  (Aaron Bently, with a little prompting from Daniel Silverstone)
 
9832
 
 
9833
Bug Fixes
 
9834
*********
 
9835
 
 
9836
* SFTP can walk up to the root path without index errors. (Robert Collins)
 
9837
 
 
9838
* Fix bugs in running bzr with 'python -O'.  (Martin Pool)
 
9839
 
 
9840
* Error when run with -OO
 
9841
 
 
9842
* Fix bug in reporting http errors that don't have an http error code.
 
9843
  (Martin Pool)
 
9844
 
 
9845
* Handle more cases of pipe errors in display commands
 
9846
 
 
9847
* Change status to 3 for all errors
 
9848
 
 
9849
* Files that are added and unlinked before committing are completely
 
9850
  ignored by diff and status
 
9851
 
 
9852
* Stores with some compressed texts and some uncompressed texts are now
 
9853
  able to be used. (John A Meinel)
 
9854
 
 
9855
* Fix for bzr pull failing sometimes under windows
 
9856
 
 
9857
* Fix for sftp transport under windows when using interactive auth
 
9858
 
 
9859
* Show files which are both renamed and modified as such in 'bzr
 
9860
  status' output.  (Daniel Silverstone, #4503)
 
9861
 
 
9862
* Make annotate cope better with revisions committed without a valid
 
9863
  email address.  (Marien Zwart)
 
9864
 
 
9865
* Fix representation of tab characters in commit messages.
 
9866
  (Harald Meland)
 
9867
 
 
9868
* List of plugin directories in ``BZR_PLUGIN_PATH`` environment variable is
 
9869
  now parsed properly under Windows. (Alexander Belchenko)
 
9870
 
 
9871
* Show number of revisions pushed/pulled/merged. (Robey Pointer)
 
9872
 
 
9873
* Keep a cached copy of the basis inventory to speed up operations
 
9874
  that need to refer to it.  (Johan Rydberg, Martin Pool)
 
9875
 
 
9876
* Fix bugs in bzr status display of non-ascii characters.
 
9877
  (Martin Pool)
 
9878
 
 
9879
* Remove Makefile.in from default ignore list.
 
9880
  (Tollef Fog Heen, Martin Pool, #6413)
 
9881
 
 
9882
* Fix failure in 'bzr added'.  (Nathan McCallum, Martin Pool)
 
9883
 
 
9884
Testing
 
9885
*******
 
9886
 
 
9887
* Fix selftest asking for passwords when there are no SFTP keys.
 
9888
  (Robey Pointer, Jelmer Vernooij)
 
9889
 
 
9890
* Fix selftest run with 'python -O'.  (Martin Pool)
 
9891
 
 
9892
* Fix HTTP tests under Windows. (John Arbash Meinel)
 
9893
 
 
9894
* Make tests work even if HOME is not set (Aaron Bentley)
 
9895
 
 
9896
* Updated ``build_tree`` to use fixed line-endings for tests which read
 
9897
  the file cotents and compare. Make some tests use this to pass under
 
9898
  Windows. (John Arbash Meinel)
 
9899
 
 
9900
* Skip stat and symlink tests under Windows. (Alexander Belchenko)
 
9901
 
 
9902
* Delay in selftest/testhashcash is now issued under win32 and Cygwin.
 
9903
  (John Arbash Meinel)
 
9904
 
 
9905
* Use terminal width to align verbose test output.  (Martin Pool)
 
9906
 
 
9907
* Blackbox tests are maintained within the bzrlib.tests.blackbox directory.
 
9908
  If adding a new test script please add that to
 
9909
  ``bzrlib.tests.blackbox.__init__``. (Robert Collins)
 
9910
 
 
9911
* Much better error message if one of the test suites can't be
 
9912
  imported.  (Martin Pool)
 
9913
 
 
9914
* Make check now runs the test suite twice - once with the default locale,
 
9915
  and once with all locales forced to C, to expose bugs. This is not
 
9916
  trivially done within python, so for now its only triggered by running
 
9917
  Make check. Integrators and packagers who wish to check for full
 
9918
  platform support should run 'make check' to test the source.
 
9919
  (Robert Collins)
 
9920
 
 
9921
* Tests can now run TestSkipped if they can't execute for any reason.
 
9922
  (Martin Pool) (NB: TestSkipped should only be raised for correctable
 
9923
  reasons - see the wiki spec ImprovingBzrTestSuite).
 
9924
 
 
9925
* Test sftp with relative, absolute-in-homedir and absolute-not-in-homedir
 
9926
  paths for the transport tests. Introduce blackbox remote sftp tests that
 
9927
  test the same permutations. (Robert Collins, Robey Pointer)
 
9928
 
 
9929
* Transport implementation tests are now independent of the local file
 
9930
  system, which allows tests for esoteric transports, and for features
 
9931
  not available in the local file system. They also repeat for variations
 
9932
  on the URL scheme that can introduce issues in the transport code,
 
9933
  see bzrlib.transport.TransportTestProviderAdapter() for this.
 
9934
  (Robert Collins).
 
9935
 
 
9936
* ``TestCase.build_tree`` uses the transport interface to build trees,
 
9937
  pass in a transport parameter to give it an existing connection.
 
9938
  (Robert Collins).
 
9939
 
 
9940
Internals
 
9941
*********
 
9942
 
 
9943
* WorkingTree.pull has been split across Branch and WorkingTree,
 
9944
  to allow Branch only pulls. (Robert Collins)
 
9945
 
 
9946
* ``commands.display_command`` now returns the result of the decorated
 
9947
  function. (Robert Collins)
 
9948
 
 
9949
* LocationConfig now has a ``set_user_option(key, value)`` call to save
 
9950
  a setting in its matching location section (a new one is created
 
9951
  if needed). (Robert Collins)
 
9952
 
 
9953
* Branch has two new methods, ``get_push_location`` and
 
9954
  ``set_push_location`` to respectively, get and set the push location.
 
9955
  (Robert Collins)
 
9956
 
 
9957
* ``commands.register_command`` now takes an optional flag to signal that
 
9958
  the registrant is planning to decorate an existing command. When
 
9959
  given multiple plugins registering a command is not an error, and
 
9960
  the original command class (whether built in or a plugin based one) is
 
9961
  returned to the caller. There is a new error 'MustUseDecorated' for
 
9962
  signalling when a wrapping command should switch to the original
 
9963
  version. (Robert Collins)
 
9964
 
 
9965
* Some option parsing errors will raise 'BzrOptionError', allowing
 
9966
  granular detection for decorating commands. (Robert Collins).
 
9967
 
 
9968
* ``Branch.read_working_inventory`` has moved to
 
9969
  ``WorkingTree.read_working_inventory``. This necessitated changes to
 
9970
  ``Branch.get_root_id``, and a move of ``Branch.set_inventory`` to
 
9971
  WorkingTree as well. To make it clear that a WorkingTree cannot always
 
9972
  be obtained ``Branch.working_tree()`` will raise
 
9973
  ``errors.NoWorkingTree`` if one cannot be obtained. (Robert Collins)
 
9974
 
 
9975
* All pending merges operations from Branch are now on WorkingTree.
 
9976
  (Robert Collins)
 
9977
 
 
9978
* The follow operations from Branch have moved to WorkingTree::
 
9979
 
 
9980
      add()
 
9981
      commit()
 
9982
      move()
 
9983
      rename_one()
 
9984
      unknowns()
 
9985
 
 
9986
  (Robert Collins)
 
9987
 
 
9988
* ``bzrlib.add.smart_add_branch`` is now ``smart_add_tree``. (Robert Collins)
 
9989
 
 
9990
* New "rio" serialization format, similar to rfc-822. (Martin Pool)
 
9991
 
 
9992
* Rename selftests to ``bzrlib.tests.test_foo``.  (John A Meinel, Martin
 
9993
  Pool)
 
9994
 
 
9995
* ``bzrlib.plugin.all_plugins`` has been changed from an attribute to a
 
9996
  query method. (Robert Collins)
 
9997
 
 
9998
* New options to read only the table-of-contents of a weave.
 
9999
  (Denys Duchier)
 
10000
 
 
10001
* Raise NoSuchFile when someone tries to add a non-existant file.
 
10002
  (Michael Ellerman)
 
10003
 
 
10004
* Simplify handling of DivergedBranches in ``cmd_pull()``.
 
10005
  (Michael Ellerman)
 
10006
 
 
10007
* Branch.controlfile* logic has moved to lockablefiles.LockableFiles, which
 
10008
  is exposed as ``Branch().control_files``. Also this has been altered with the
 
10009
  controlfile pre/suffix replaced by simple method names like 'get' and
 
10010
  'put'. (Aaron Bentley, Robert Collins).
 
10011
 
 
10012
* Deprecated functions and methods can now be marked as such using the
 
10013
  ``bzrlib.symbol_versioning`` module. Marked method have their docstring
 
10014
  updated and will issue a DeprecationWarning using the warnings module
 
10015
  when they are used. (Robert Collins)
 
10016
 
 
10017
* ``bzrlib.osutils.safe_unicode`` now exists to provide parameter coercion
 
10018
  for functions that need unicode strings. (Robert Collins)
 
10019
 
 
10020
bzr 0.6
 
10021
#######
 
10022
 
 
10023
:Released: 2005-10-28
 
10024
 
 
10025
Improvements
 
10026
************
 
10027
 
 
10028
* pull now takes --verbose to show you what revisions are added or removed
 
10029
  (John A Meinel)
 
10030
 
 
10031
* merge now takes a --show-base option to include the base text in
 
10032
  conflicts.
 
10033
  (Aaron Bentley)
 
10034
 
 
10035
* The config files are now read using ConfigObj, so '=' should be used as
 
10036
  a separator, not ':'.
 
10037
  (Aaron Bentley)
 
10038
 
 
10039
* New 'bzr commit --strict' option refuses to commit if there are
 
10040
  any unknown files in the tree.  To commit, make sure all files are
 
10041
  either ignored, added, or deleted.  (Michael Ellerman)
 
10042
 
 
10043
* The config directory is now ~/.bazaar, and there is a single file
 
10044
  ~/.bazaar/bazaar.conf storing email, editor and other preferences.
 
10045
  (Robert Collins)
 
10046
 
 
10047
* 'bzr add' no longer takes a --verbose option, and a --quiet option
 
10048
  has been added that suppresses all output.
 
10049
 
 
10050
* Improved zsh completion support in contrib/zsh, from Clint
 
10051
  Adams.
 
10052
 
 
10053
* Builtin 'bzr annotate' command, by Martin Pool with improvements from
 
10054
  Goffredo Baroncelli.
 
10055
 
 
10056
* 'bzr check' now accepts -v for verbose reporting, and checks for
 
10057
  ghosts in the branch. (Robert Collins)
 
10058
 
 
10059
* New command 're-sign' which will regenerate the gpg signature for
 
10060
  a revision. (Robert Collins)
 
10061
 
 
10062
* If you set ``check_signatures=require`` for a path in
 
10063
  ``~/.bazaar/branches.conf`` then bzr will invoke your
 
10064
  ``gpg_signing_command`` (defaults to gpg) and record a digital signature
 
10065
  of your commit. (Robert Collins)
 
10066
 
 
10067
* New sftp transport, based on Paramiko.  (Robey Pointer)
 
10068
 
 
10069
* 'bzr pull' now accepts '--clobber' which will discard local changes
 
10070
  and make this branch identical to the source branch. (Robert Collins)
 
10071
 
 
10072
* Just give a quieter warning if a plugin can't be loaded, and
 
10073
  put the details in .bzr.log.  (Martin Pool)
 
10074
 
 
10075
* 'bzr branch' will now set the branch-name to the last component of the
 
10076
  output directory, if one was supplied.
 
10077
 
 
10078
* If the option ``post_commit`` is set to one (or more) python function
 
10079
  names (must be in the bzrlib namespace), then they will be invoked
 
10080
  after the commit has completed, with the branch and ``revision_id`` as
 
10081
  parameters. (Robert Collins)
 
10082
 
 
10083
* Merge now has a retcode of 1 when conflicts occur. (Robert Collins)
 
10084
 
 
10085
* --merge-type weave is now supported for file contents.  Tree-shape
 
10086
  changes are still three-way based.  (Martin Pool, Aaron Bentley)
 
10087
 
 
10088
* 'bzr check' allows the first revision on revision-history to have
 
10089
  parents - something that is expected for cheap checkouts, and occurs
 
10090
  when conversions from baz do not have all history.  (Robert Collins).
 
10091
 
 
10092
* 'bzr merge' can now graft unrelated trees together, if your specify
 
10093
  0 as a base. (Aaron Bentley)
 
10094
 
 
10095
* 'bzr commit branch' and 'bzr commit branch/file1 branch/file2' now work
 
10096
  (Aaron Bentley)
 
10097
 
 
10098
* Add '.sconsign*' to default ignore list.  (Alexander Belchenko)
 
10099
 
 
10100
* 'bzr merge --reprocess' minimizes conflicts
 
10101
 
 
10102
Testing
 
10103
*******
 
10104
 
 
10105
* The 'bzr selftest --pattern' option for has been removed, now
 
10106
  test specifiers on the command line can be simple strings, or
 
10107
  regexps, or both. (Robert Collins)
 
10108
 
 
10109
* Passing -v to selftest will now show the time each test took to
 
10110
  complete, which will aid in analysing performance regressions and
 
10111
  related questions. (Robert Collins)
 
10112
 
 
10113
* 'bzr selftest' runs all tests, even if one fails, unless '--one'
 
10114
  is given. (Martin Pool)
 
10115
 
 
10116
* There is a new method for TestCaseInTempDir, assertFileEqual, which
 
10117
  will check that a given content is equal to the content of the named
 
10118
  file. (Robert Collins)
 
10119
 
 
10120
* Fix test suite's habit of leaving many temporary log files in $TMPDIR.
 
10121
  (Martin Pool)
 
10122
 
 
10123
Internals
 
10124
*********
 
10125
 
 
10126
* New 'testament' command and concept for making gpg-signatures
 
10127
  of revisions that are not tied to a particular internal
 
10128
  representation.  (Martin Pool).
 
10129
 
 
10130
* Per-revision properties ('revprops') as key-value associated
 
10131
  strings on each revision created when the revision is committed.
 
10132
  Intended mainly for the use of external tools.  (Martin Pool).
 
10133
 
 
10134
* Config options have moved from bzrlib.osutils to bzrlib.config.
 
10135
  (Robert Collins)
 
10136
 
 
10137
* Improved command line option definitions allowing explanations
 
10138
  for individual options, among other things.  Contributed by
 
10139
  Magnus Therning.
 
10140
 
 
10141
* Config options have moved from bzrlib.osutils to bzrlib.config.
 
10142
  Configuration is now done via the config.Config interface:
 
10143
  Depending on whether you have a Branch, a Location or no information
 
10144
  available, construct a ``*Config``, and use its ``signature_checking``,
 
10145
  ``username`` and ``user_email`` methods. (Robert Collins)
 
10146
 
 
10147
* Plugins are now loaded under bzrlib.plugins, not bzrlib.plugin, and
 
10148
  they are made available for other plugins to use. You should not
 
10149
  import other plugins during the ``__init__`` of your plugin though, as
 
10150
  no ordering is guaranteed, and the plugins directory is not on the
 
10151
  python path. (Robert Collins)
 
10152
 
 
10153
* Branch.relpath has been moved to WorkingTree.relpath. WorkingTree no
 
10154
  no longer takes an inventory, rather it takes an option branch
 
10155
  parameter, and if None is given will open the branch at basedir
 
10156
  implicitly. (Robert Collins)
 
10157
 
 
10158
* Cleaner exception structure and error reporting.  Suggested by
 
10159
  Scott James Remnant.  (Martin Pool)
 
10160
 
 
10161
* Branch.remove has been moved to WorkingTree, which has also gained
 
10162
  ``lock_read``, ``lock_write`` and ``unlock`` methods for convenience.
 
10163
  (Robert Collins)
 
10164
 
 
10165
* Two decorators, ``needs_read_lock`` and ``needs_write_lock`` have been
 
10166
  added to the branch module. Use these to cause a function to run in a
 
10167
  read or write lock respectively. (Robert Collins)
 
10168
 
 
10169
* ``Branch.open_containing`` now returns a tuple (Branch, relative-path),
 
10170
  which allows direct access to the common case of 'get me this file
 
10171
  from its branch'. (Robert Collins)
 
10172
 
 
10173
* Transports can register using ``register_lazy_transport``, and they
 
10174
  will be loaded when first used.  (Martin Pool)
 
10175
 
 
10176
* 'pull' has been factored out of the command as ``WorkingTree.pull()``.
 
10177
  A new option to WorkingTree.pull has been added, clobber, which will
 
10178
  ignore diverged history and pull anyway.
 
10179
  (Robert Collins)
 
10180
 
 
10181
* config.Config has a ``get_user_option`` call that accepts an option name.
 
10182
  This will be looked up in branches.conf and bazaar.conf as normal.
 
10183
  It is intended that this be used by plugins to support options -
 
10184
  options of built in programs should have specific methods on the config.
 
10185
  (Robert Collins)
 
10186
 
 
10187
* ``merge.merge_inner`` now has tempdir as an optional parameter.
 
10188
  (Robert Collins)
 
10189
 
 
10190
* Tree.kind is not recorded at the top level of the hierarchy, as it was
 
10191
  missing on EmptyTree, leading to a bug with merge on EmptyTrees.
 
10192
  (Robert Collins)
 
10193
 
 
10194
* ``WorkingTree.__del__`` has been removed, it was non deterministic and not
 
10195
  doing what it was intended to. See ``WorkingTree.__init__`` for a comment
 
10196
  about future directions. (Robert Collins/Martin Pool)
 
10197
 
 
10198
* bzrlib.transport.http has been modified so that only 404 urllib errors
 
10199
  are returned as NoSuchFile. Other exceptions will propagate as normal.
 
10200
  This allows debuging of actual errors. (Robert Collins)
 
10201
 
 
10202
* bzrlib.transport.Transport now accepts *ONLY* url escaped relative paths
 
10203
  to apis like 'put', 'get' and 'has'. This is to provide consistent
 
10204
  behaviour - it operates on url's only. (Robert Collins)
 
10205
 
 
10206
* Transports can register using ``register_lazy_transport``, and they
 
10207
  will be loaded when first used.  (Martin Pool)
 
10208
 
 
10209
* ``merge_flex`` no longer calls ``conflict_handler.finalize()``, instead that
 
10210
  is called by ``merge_inner``. This is so that the conflict count can be
 
10211
  retrieved (and potentially manipulated) before returning to the caller
 
10212
  of ``merge_inner``. Likewise 'merge' now returns the conflict count to the
 
10213
  caller. (Robert Collins)
 
10214
 
 
10215
* ``revision.revision_graph`` can handle having only partial history for
 
10216
  a revision - that is no revisions in the graph with no parents.
 
10217
  (Robert Collins).
 
10218
 
 
10219
* New ``builtins.branch_files`` uses the standard ``file_list`` rules to
 
10220
  produce a branch and a list of paths, relative to that branch
 
10221
  (Aaron Bentley)
 
10222
 
 
10223
* New TestCase.addCleanup facility.
 
10224
 
 
10225
* New ``bzrlib.version_info`` tuple (similar to ``sys.version_info``),
 
10226
  which can be used by programs importing bzrlib.
 
10227
 
 
10228
Bug Fixes
 
10229
*********
 
10230
 
 
10231
* Better handling of branches in directories with non-ascii names.
 
10232
  (Joel Rosdahl, Panagiotis Papadakos)
 
10233
 
 
10234
* Upgrades of trees with no commits will not fail due to accessing
 
10235
  [-1] in the revision-history. (Andres Salomon)
 
10236
 
 
10237
 
 
10238
bzr 0.1.1
 
10239
#########
 
10240
 
 
10241
:Released: 2005-10-12
 
10242
 
 
10243
Bug Fixes
 
10244
*********
 
10245
 
 
10246
* Fix problem in pulling over http from machines that do not
 
10247
  allow directories to be listed.
 
10248
 
 
10249
* Avoid harmless warning about invalid hash cache after
 
10250
  upgrading branch format.
 
10251
 
 
10252
Performance
 
10253
***********
 
10254
 
 
10255
* Avoid some unnecessary http operations in branch and pull.
 
10256
 
 
10257
 
 
10258
bzr 0.1
 
10259
#######
 
10260
 
 
10261
:Released: 2005-10-11
 
10262
 
 
10263
Notes
 
10264
*****
 
10265
 
 
10266
* 'bzr branch' over http initially gives a very high estimate
 
10267
  of completion time but it should fall as the first few
 
10268
  revisions are pulled in.  branch is still slow on
 
10269
  high-latency connections.
 
10270
 
 
10271
Bug Fixes
 
10272
*********
 
10273
 
 
10274
* bzr-man.py has been updated to work again. Contributed by
 
10275
  Rob Weir.
 
10276
 
 
10277
* Locking is now done with fcntl.lockf which works with NFS
 
10278
  file systems. Contributed by Harald Meland.
 
10279
 
 
10280
* When a merge encounters a file that has been deleted on
 
10281
  one side and modified on the other, the old contents are
 
10282
  written out to foo.BASE and foo.SIDE, where SIDE is this
 
10283
  or OTHER. Contributed by Aaron Bentley.
 
10284
 
 
10285
* Export was choosing incorrect file paths for the content of
 
10286
  the tarball, this has been fixed by Aaron Bentley.
 
10287
 
 
10288
* Commit will no longer commit without a log message, an
 
10289
  error is returned instead. Contributed by Jelmer Vernooij.
 
10290
 
 
10291
* If you commit a specific file in a sub directory, any of its
 
10292
  parent directories that are added but not listed will be
 
10293
  automatically included. Suggested by Michael Ellerman.
 
10294
 
 
10295
* bzr commit and upgrade did not correctly record new revisions
 
10296
  for files with only a change to their executable status.
 
10297
  bzr will correct this when it encounters it. Fixed by
 
10298
  Robert Collins
 
10299
 
 
10300
* HTTP tests now force off the use of ``http_proxy`` for the duration.
 
10301
  Contributed by Gustavo Niemeyer.
 
10302
 
 
10303
* Fix problems in merging weave-based branches that have
 
10304
  different partial views of history.
 
10305
 
 
10306
* Symlink support: working with symlinks when not in the root of a
 
10307
  bzr tree was broken, patch from Scott James Remnant.
 
10308
 
 
10309
Improvements
 
10310
************
 
10311
 
 
10312
* 'branch' now accepts a --basis parameter which will take advantage
 
10313
  of local history when making a new branch. This allows faster
 
10314
  branching of remote branches. Contributed by Aaron Bentley.
 
10315
 
 
10316
* New tree format based on weave files, called version 5.
 
10317
  Existing branches can be upgraded to this format using
 
10318
  'bzr upgrade'.
 
10319
 
 
10320
* Symlinks are now versionable. Initial patch by
 
10321
  Erik Toubro Nielsen, updated to head by Robert Collins.
 
10322
 
 
10323
* Executable bits are tracked on files. Patch from Gustavo
 
10324
  Niemeyer.
 
10325
 
 
10326
* 'bzr status' now shows unknown files inside a selected directory.
 
10327
  Patch from Heikki Paajanen.
 
10328
 
 
10329
* Merge conflicts are recorded in .bzr. Two new commands 'conflicts'
 
10330
  and 'resolve' have needed added, which list and remove those
 
10331
  merge conflicts respectively. A conflicted tree cannot be committed
 
10332
  in. Contributed by Aaron Bentley.
 
10333
 
 
10334
* 'rm' is now an alias for 'remove'.
 
10335
 
 
10336
* Stores now split out their content in a single byte prefixed hash,
 
10337
  dropping the density of files per directory by 256. Contributed by
 
10338
  Gustavo Niemeyer.
 
10339
 
 
10340
* 'bzr diff -r branch:URL' will now perform a diff between two branches.
 
10341
  Contributed by Robert Collins.
 
10342
 
 
10343
* 'bzr log' with the default formatter will show merged revisions,
 
10344
  indented to the right. Initial implementation contributed by Gustavo
 
10345
  Niemeyer, made incremental by Robert Collins.
 
10346
 
 
10347
 
 
10348
Internals
 
10349
*********
 
10350
 
 
10351
* Test case failures have the exception printed after the log
 
10352
  for your viewing pleasure.
 
10353
 
 
10354
* InventoryEntry is now an abstract base class, use one of the
 
10355
  concrete InventoryDirectory etc classes instead.
 
10356
 
 
10357
* Branch raises an UnsupportedFormatError when it detects a
 
10358
  bzr branch it cannot understand. This allows for precise
 
10359
  handling of such circumstances.
 
10360
 
 
10361
* Remove RevisionReference class; ``Revision.parent_ids`` is now simply a
 
10362
  list of their ids and ``parent_sha1s`` is a list of their corresponding
 
10363
  sha1s (for old branches only at the moment.)
 
10364
 
 
10365
* New method-object style interface for Commit() and Fetch().
 
10366
 
 
10367
* Renamed ``Branch.last_patch()`` to ``Branch.last_revision()``, since
 
10368
  we call them revisions not patches.
 
10369
 
 
10370
* Move ``copy_branch`` to ``bzrlib.clone.copy_branch``.  The destination
 
10371
  directory is created if it doesn't exist.
 
10372
 
 
10373
* Inventories now identify the files which were present by
 
10374
  giving the revision *of that file*.
 
10375
 
 
10376
* Inventory and Revision XML contains a version identifier.
 
10377
  This must be consistent with the overall branch version
 
10378
  but allows for more flexibility in future upgrades.
 
10379
 
 
10380
Testing
 
10381
*******
 
10382
 
 
10383
* Removed testsweet module so that tests can be run after
 
10384
  bzr installed by 'bzr selftest'.
 
10385
 
 
10386
* 'bzr selftest' command-line arguments can now be partial ids
 
10387
  of tests to run, e.g. ``bzr selftest test_weave``
 
10388
 
 
10389
 
 
10390
bzr 0.0.9
 
10391
#########
 
10392
 
 
10393
:Released: 2005-09-23
 
10394
 
 
10395
Bug Fixes
 
10396
*********
 
10397
 
 
10398
* Fixed "branch -r" option.
 
10399
 
 
10400
* Fix remote access to branches containing non-compressed history.
 
10401
  (Robert Collins).
 
10402
 
 
10403
* Better reliability of http server tests.  (John Arbash-Meinel)
 
10404
 
 
10405
* Merge graph maximum distance calculation fix.  (Aaron Bentley)
 
10406
 
 
10407
* Various minor bug in windows support have been fixed, largely in the
 
10408
  test suite. Contributed by Alexander Belchenko.
 
10409
 
 
10410
Improvements
 
10411
************
 
10412
 
 
10413
* Status now accepts a -r argument to give status between chosen
 
10414
  revisions. Contributed by Heikki Paajanen.
 
10415
 
 
10416
* Revision arguments no longer use +/-/= to control ranges, instead
 
10417
  there is a 'before' namespace, which limits the successive namespace.
 
10418
  For example '$ bzr log -r date:yesterday..before:date:today' will
 
10419
  select everything from yesterday and before today. Contributed by
 
10420
  Robey Pointer
 
10421
 
 
10422
* There is now a bzr.bat file created by distutils when building on
 
10423
  Windows. Contributed by Alexander Belchenko.
 
10424
 
 
10425
Internals
 
10426
*********
 
10427
 
 
10428
* Removed uuid() as it was unused.
 
10429
 
 
10430
* Improved 'fetch' code for pulling revisions from one branch into
 
10431
  another (used by pull, merged, etc.)
 
10432
 
 
10433
 
 
10434
bzr 0.0.8
 
10435
#########
 
10436
 
 
10437
:Released: 2005-09-20
 
10438
 
 
10439
 
 
10440
Improvements
 
10441
************
 
10442
 
 
10443
* Adding a file whose parent directory is not versioned will
 
10444
  implicitly add the parent, and so on up to the root. This means
 
10445
  you should never need to explictly add a directory, they'll just
 
10446
  get added when you add a file in the directory.  Contributed by
 
10447
  Michael Ellerman.
 
10448
 
 
10449
* Ignore ``.DS_Store`` (contains Mac metadata) by default.
 
10450
  (Nir Soffer)
 
10451
 
 
10452
* If you set ``BZR_EDITOR`` in the environment, it is checked in
 
10453
  preference to EDITOR and the config file for the interactive commit
 
10454
  editing program. Related to this is a bugfix where a missing program
 
10455
  set in EDITOR would cause editing to fail, now the fallback program
 
10456
  for the operating system is still tried.
 
10457
 
 
10458
* Files that are not directories/symlinks/regular files will no longer
 
10459
  cause bzr to fail, it will just ignore them by default. You cannot add
 
10460
  them to the tree though - they are not versionable.
 
10461
 
 
10462
 
 
10463
Internals
 
10464
*********
 
10465
 
 
10466
* Refactor xml packing/unpacking.
 
10467
 
 
10468
Bug Fixes
 
10469
*********
 
10470
 
 
10471
* Fixed 'bzr mv' by Ollie Rutherfurd.
 
10472
 
 
10473
* Fixed strange error when trying to access a nonexistent http
 
10474
  branch.
 
10475
 
 
10476
* Make sure that the hashcache gets written out if it can't be
 
10477
  read.
 
10478
 
 
10479
 
 
10480
Portability
 
10481
***********
 
10482
 
 
10483
* Various Windows fixes from Ollie Rutherfurd.
 
10484
 
 
10485
* Quieten warnings about locking; patch from Matt Lavin.
 
10486
 
 
10487
 
 
10488
bzr-0.0.7
 
10489
#########
 
10490
 
 
10491
:Released: 2005-09-02
 
10492
 
 
10493
New Features
 
10494
************
 
10495
 
 
10496
* ``bzr shell-complete`` command contributed by Clint Adams to
 
10497
  help with intelligent shell completion.
 
10498
 
 
10499
* New expert command ``bzr find-merge-base`` for debugging merges.
 
10500
 
 
10501
 
 
10502
Enhancements
 
10503
************
 
10504
 
 
10505
* Much better merge support.
 
10506
 
 
10507
* merge3 conflicts are now reported with markers like '<<<<<<<'
 
10508
  (seven characters) which is the same as CVS and pleases things
 
10509
  like emacs smerge.
 
10510
 
 
10511
 
 
10512
Bug Fixes
 
10513
*********
 
10514
 
 
10515
* ``bzr upgrade`` no longer fails when trying to fix trees that
 
10516
  mention revisions that are not present.
 
10517
 
 
10518
* Fixed bugs in listing plugins from ``bzr plugins``.
 
10519
 
 
10520
* Fix case of $EDITOR containing options for the editor.
 
10521
 
 
10522
* Fix log -r refusing to show the last revision.
 
10523
  (Patch from Goffredo Baroncelli.)
 
10524
 
 
10525
 
 
10526
Changes
 
10527
*******
 
10528
 
 
10529
* ``bzr log --show-ids`` shows the revision ids of all parents.
 
10530
 
 
10531
* Externally provided commands on your $BZRPATH no longer need
 
10532
  to recognize --bzr-usage to work properly, and can just handle
 
10533
  --help themselves.
 
10534
 
 
10535
 
 
10536
Library
 
10537
*******
 
10538
 
 
10539
* Changed trace messages to go through the standard logging
 
10540
  framework, so that they can more easily be redirected by
 
10541
  libraries.
 
10542
 
 
10543
 
 
10544
 
 
10545
bzr-0.0.6
 
10546
#########
 
10547
 
 
10548
:Released: 2005-08-18
 
10549
 
 
10550
New Features
 
10551
************
 
10552
 
 
10553
* Python plugins, automatically loaded from the directories on
 
10554
  ``BZR_PLUGIN_PATH`` or ``~/.bzr.conf/plugins`` by default.
 
10555
 
 
10556
* New 'bzr mkdir' command.
 
10557
 
 
10558
* Commit mesage is fetched from an editor if not given on the
 
10559
  command line; patch from Torsten Marek.
 
10560
 
 
10561
* ``bzr log -m FOO`` displays commits whose message matches regexp
 
10562
  FOO.
 
10563
 
 
10564
* ``bzr add`` with no arguments adds everything under the current directory.
 
10565
 
 
10566
* ``bzr mv`` does move or rename depending on its arguments, like
 
10567
  the Unix command.
 
10568
 
 
10569
* ``bzr missing`` command shows a summary of the differences
 
10570
  between two trees.  (Merged from John Arbash-Meinel.)
 
10571
 
 
10572
* An email address for commits to a particular tree can be
 
10573
  specified by putting it into .bzr/email within a branch.  (Based
 
10574
  on a patch from Heikki Paajanen.)
 
10575
 
 
10576
 
 
10577
Enhancements
 
10578
************
 
10579
 
 
10580
* Faster working tree operations.
 
10581
 
 
10582
 
 
10583
Changes
 
10584
*******
 
10585
 
 
10586
* 3rd-party modules shipped with bzr are copied within the bzrlib
 
10587
  python package, so that they can be installed by the setup
 
10588
  script without clashing with anything already existing on the
 
10589
  system.  (Contributed by Gustavo Niemeyer.)
 
10590
 
 
10591
* Moved plugins directory to bzrlib/, so that there's a standard
 
10592
  plugin directory which is not only installed with bzr itself but
 
10593
  is also available when using bzr from the development tree.
 
10594
  ``BZR_PLUGIN_PATH`` and ``DEFAULT_PLUGIN_PATH`` are then added to the
 
10595
  standard plugins directory.
 
10596
 
 
10597
* When exporting to a tarball with ``bzr export --format tgz``, put
 
10598
  everything under a top directory rather than dumping it into the
 
10599
  current directory.   This can be overridden with the ``--root``
 
10600
  option.  Patch from William Dodé and John Meinel.
 
10601
 
 
10602
* New ``bzr upgrade`` command to upgrade the format of a branch,
 
10603
  replacing ``bzr check --update``.
 
10604
 
 
10605
* Files within store directories are no longer marked readonly on
 
10606
  disk.
 
10607
 
 
10608
* Changed ``bzr log`` output to a more compact form suggested by
 
10609
  John A Meinel.  Old format is available with the ``--long`` or
 
10610
  ``-l`` option, patched by William Dodé.
 
10611
 
 
10612
* By default the commit command refuses to record a revision with
 
10613
  no changes unless the ``--unchanged`` option is given.
 
10614
 
 
10615
* The ``--no-plugins``, ``--profile`` and ``--builtin`` command
 
10616
  line options must come before the command name because they
 
10617
  affect what commands are available; all other options must come
 
10618
  after the command name because their interpretation depends on
 
10619
  it.
 
10620
 
 
10621
* ``branch`` and ``clone`` added as aliases for ``branch``.
 
10622
 
 
10623
* Default log format is back to the long format; the compact one
 
10624
  is available with ``--short``.
 
10625
 
 
10626
 
 
10627
Bug Fixes
 
10628
*********
 
10629
 
 
10630
* Fix bugs in committing only selected files or within a subdirectory.
 
10631
 
 
10632
 
 
10633
bzr-0.0.5
 
10634
#########
 
10635
 
 
10636
:Released:  2005-06-15
 
10637
 
 
10638
Changes
 
10639
*******
 
10640
 
 
10641
* ``bzr`` with no command now shows help rather than giving an
 
10642
  error.  Suggested by Michael Ellerman.
 
10643
 
 
10644
* ``bzr status`` output format changed, because svn-style output
 
10645
  doesn't really match the model of bzr.  Now files are grouped by
 
10646
  status and can be shown with their IDs.  ``bzr status --all``
 
10647
  shows all versioned files and unknown files but not ignored files.
 
10648
 
 
10649
* ``bzr log`` runs from most-recent to least-recent, the reverse
 
10650
  of the previous order.  The previous behaviour can be obtained
 
10651
  with the ``--forward`` option.
 
10652
 
 
10653
* ``bzr inventory`` by default shows only filenames, and also ids
 
10654
  if ``--show-ids`` is given, in which case the id is the second
 
10655
  field.
 
10656
 
 
10657
 
 
10658
Enhancements
 
10659
************
 
10660
 
 
10661
* New 'bzr whoami --email' option shows only the email component
 
10662
  of the user identification, from Jo Vermeulen.
 
10663
 
 
10664
* New ``bzr ignore PATTERN`` command.
 
10665
 
 
10666
* Nicer error message for broken pipe, interrupt and similar
 
10667
  conditions that don't indicate an internal error.
 
10668
 
 
10669
* Add ``.*.sw[nop] .git .*.tmp *,v`` to default ignore patterns.
 
10670
 
 
10671
* Per-branch locks keyed on ``.bzr/branch-lock``, available in
 
10672
  either read or write mode.
 
10673
 
 
10674
* New option ``bzr log --show-ids`` shows revision and file ids.
 
10675
 
 
10676
* New usage ``bzr log FILENAME`` shows only revisions that
 
10677
  affected that file.
 
10678
 
 
10679
* Changed format for describing changes in ``bzr log -v``.
 
10680
 
 
10681
* New option ``bzr commit --file`` to take a message from a file,
 
10682
  suggested by LarstiQ.
 
10683
 
 
10684
* New syntax ``bzr status [FILE...]`` contributed by Bartosz
 
10685
  Oler.  File may be in a branch other than the working directory.
 
10686
 
 
10687
* ``bzr log`` and ``bzr root`` can be given an http URL instead of
 
10688
  a filename.
 
10689
 
 
10690
* Commands can now be defined by external programs or scripts
 
10691
  in a directory on $BZRPATH.
 
10692
 
 
10693
* New "stat cache" avoids reading the contents of files if they
 
10694
  haven't changed since the previous time.
 
10695
 
 
10696
* If the Python interpreter is too old, try to find a better one
 
10697
  or give an error.  Based on a patch from Fredrik Lundh.
 
10698
 
 
10699
* New optional parameter ``bzr info [BRANCH]``.
 
10700
 
 
10701
* New form ``bzr commit SELECTED`` to commit only selected files.
 
10702
 
 
10703
* New form ``bzr log -r FROM:TO`` shows changes in selected
 
10704
  range; contributed by John A Meinel.
 
10705
 
 
10706
* New option ``bzr diff --diff-options 'OPTS'`` allows passing
 
10707
  options through to an external GNU diff.
 
10708
 
 
10709
* New option ``bzr add --no-recurse`` to add a directory but not
 
10710
  their contents.
 
10711
 
 
10712
* ``bzr --version`` now shows more information if bzr is being run
 
10713
  from a branch.
 
10714
 
 
10715
 
 
10716
Bug Fixes
 
10717
*********
 
10718
 
 
10719
* Fixed diff format so that added and removed files will be
 
10720
  handled properly by patch.  Fix from Lalo Martins.
 
10721
 
 
10722
* Various fixes for files whose names contain spaces or other
 
10723
  metacharacters.
 
10724
 
 
10725
 
 
10726
Testing
 
10727
*******
 
10728
 
 
10729
* Converted black-box test suites from Bourne shell into Python;
 
10730
  now run using ``./testbzr``.  Various structural improvements to
 
10731
  the tests.
 
10732
 
 
10733
* testbzr by default runs the version of bzr found in the same
 
10734
  directory as the tests, or the one given as the first parameter.
 
10735
 
 
10736
* testbzr also runs the internal tests, so the only command
 
10737
  required to check is just ``./testbzr``.
 
10738
 
 
10739
* testbzr requires python2.4, but can be used to test bzr running
 
10740
  under a different version.
 
10741
 
 
10742
* Tests added for many other changes in this release.
 
10743
 
 
10744
 
 
10745
Internal
 
10746
********
 
10747
 
 
10748
* Included ElementTree library upgraded to 1.2.6 by Fredrik Lundh.
 
10749
 
 
10750
* Refactor command functions into Command objects based on HCT by
 
10751
  Scott James Remnant.
 
10752
 
 
10753
* Better help messages for many commands.
 
10754
 
 
10755
* Expose ``bzrlib.open_tracefile()`` to start the tracefile; until
 
10756
  this is called trace messages are just discarded.
 
10757
 
 
10758
* New internal function ``find_touching_revisions()`` and hidden
 
10759
  command touching-revisions trace the changes to a given file.
 
10760
 
 
10761
* Simpler and faster ``compare_inventories()`` function.
 
10762
 
 
10763
* ``bzrlib.open_tracefile()`` takes a tracefilename parameter.
 
10764
 
 
10765
* New AtomicFile class.
 
10766
 
 
10767
* New developer commands ``added``, ``modified``.
 
10768
 
 
10769
 
 
10770
Portability
 
10771
***********
 
10772
 
 
10773
* Cope on Windows on python2.3 by using the weaker random seed.
 
10774
  2.4 is now only recommended.
 
10775
 
 
10776
 
 
10777
bzr-0.0.4
 
10778
#########
 
10779
 
 
10780
:Released:  2005-04-22
 
10781
 
 
10782
Enhancements
 
10783
************
 
10784
 
 
10785
* 'bzr diff' optionally takes a list of files to diff.  Still a bit
 
10786
  basic.  Patch from QuantumG.
 
10787
 
 
10788
* More default ignore patterns.
 
10789
 
 
10790
* New 'bzr log --verbose' shows a list of files changed in the
 
10791
  changeset.  Patch from Sebastian Cote.
 
10792
 
 
10793
* Roll over ~/.bzr.log if it gets too large.
 
10794
 
 
10795
* Command abbreviations 'ci', 'st', 'stat', '?' based on a patch
 
10796
  by Jason Diamon.
 
10797
 
 
10798
* New 'bzr help commands' based on a patch from Denys Duchier.
 
10799
 
 
10800
 
 
10801
Changes
 
10802
*******
 
10803
 
 
10804
* User email is determined by looking at $BZREMAIL or ~/.bzr.email
 
10805
  or $EMAIL.  All are decoded by the locale preferred encoding.
 
10806
  If none of these are present user@hostname is used.  The host's
 
10807
  fully-qualified name is not used because that tends to fail when
 
10808
  there are DNS problems.
 
10809
 
 
10810
* New 'bzr whoami' command instead of username user-email.
 
10811
 
 
10812
 
 
10813
Bug Fixes
 
10814
*********
 
10815
 
 
10816
* Make commit safe for hardlinked bzr trees.
 
10817
 
 
10818
* Some Unicode/locale fixes.
 
10819
 
 
10820
* Partial workaround for ``difflib.unified_diff`` not handling
 
10821
  trailing newlines properly.
 
10822
 
 
10823
 
 
10824
Internal
 
10825
********
 
10826
 
 
10827
* Allow docstrings for help to be in PEP0257 format.  Patch from
 
10828
  Matt Brubeck.
 
10829
 
 
10830
* More tests in test.sh.
 
10831
 
 
10832
* Write profile data to a temporary file not into working
 
10833
  directory and delete it when done.
 
10834
 
 
10835
* Smaller .bzr.log with process ids.
 
10836
 
 
10837
 
 
10838
Portability
 
10839
***********
 
10840
 
 
10841
* Fix opening of ~/.bzr.log on Windows.  Patch from Andrew
 
10842
  Bennetts.
 
10843
 
 
10844
* Some improvements in handling paths on Windows, based on a patch
 
10845
  from QuantumG.
 
10846
 
 
10847
 
 
10848
bzr-0.0.3
 
10849
#########
 
10850
 
 
10851
:Released:  2005-04-06
 
10852
 
 
10853
Enhancements
 
10854
************
 
10855
 
 
10856
* New "directories" internal command lists versioned directories
 
10857
  in the tree.
 
10858
 
 
10859
* Can now say "bzr commit --help".
 
10860
 
 
10861
* New "rename" command to rename one file to a different name
 
10862
  and/or directory.
 
10863
 
 
10864
* New "move" command to move one or more files into a different
 
10865
  directory.
 
10866
 
 
10867
* New "renames" command lists files renamed since base revision.
 
10868
 
 
10869
* New cat command contributed by janmar.
 
10870
 
 
10871
Changes
 
10872
*******
 
10873
 
 
10874
* .bzr.log is placed in $HOME (not pwd) and is always written in
 
10875
  UTF-8.  (Probably not a completely good long-term solution, but
 
10876
  will do for now.)
 
10877
 
 
10878
Portability
 
10879
***********
 
10880
 
 
10881
* Workaround for difflib bug in Python 2.3 that causes an
 
10882
  exception when comparing empty files.  Reported by Erik Toubro
 
10883
  Nielsen.
 
10884
 
 
10885
Internal
 
10886
********
 
10887
 
 
10888
* Refactored inventory storage to insert a root entry at the top.
 
10889
 
 
10890
Testing
 
10891
*******
 
10892
 
 
10893
* Start of shell-based black-box testing in test.sh.
 
10894
 
 
10895
 
 
10896
bzr-0.0.2.1
 
10897
###########
 
10898
 
 
10899
Portability
 
10900
***********
 
10901
 
 
10902
* Win32 fixes from Steve Brown.
 
10903
 
 
10904
 
 
10905
bzr-0.0.2
 
10906
#########
 
10907
 
 
10908
:Codename: "black cube"
 
10909
:Released: 2005-03-31
 
10910
 
 
10911
Enhancements
 
10912
************
 
10913
 
 
10914
* Default ignore list extended (see bzrlib/__init__.py).
 
10915
 
 
10916
* Patterns in .bzrignore are now added to the default ignore list,
 
10917
  rather than replacing it.
 
10918
 
 
10919
* Ignore list isn't reread for every file.
 
10920
 
 
10921
* More help topics.
 
10922
 
 
10923
* Reinstate the 'bzr check' command to check invariants of the
 
10924
  branch.
 
10925
 
 
10926
* New 'ignored' command lists which files are ignored and why;
 
10927
  'deleted' lists files deleted in the current working tree.
 
10928
 
 
10929
* Performance improvements.
 
10930
 
 
10931
* New global --profile option.
 
10932
 
 
10933
* Ignore patterns like './config.h' now correctly match files in
 
10934
  the root directory only.
 
10935
 
 
10936
 
 
10937
bzr-0.0.1
 
10938
#########
 
10939
 
 
10940
:Released:  2005-03-26
 
10941
 
 
10942
Enhancements
 
10943
************
 
10944
 
 
10945
* More information from info command.
 
10946
 
 
10947
* Can now say "bzr help COMMAND" for more detailed help.
 
10948
 
 
10949
* Less file flushing and faster performance when writing logs and
 
10950
  committing to stores.
 
10951
 
 
10952
* More useful verbose output from some commands.
 
10953
 
 
10954
Bug Fixes
 
10955
*********
 
10956
 
 
10957
* Fix inverted display of 'R' and 'M' during 'commit -v'.
 
10958
 
 
10959
Portability
 
10960
***********
 
10961
 
 
10962
* Include a subset of ElementTree-1.2.20040618 to make
 
10963
  installation easier.
 
10964
 
 
10965
* Fix time.localtime call to work with Python 2.3 (the minimum
 
10966
  supported).
 
10967
 
 
10968
 
 
10969
bzr-0.0.0.69
 
10970
############
 
10971
 
 
10972
:Released:  2005-03-22
 
10973
 
 
10974
Enhancements
 
10975
************
 
10976
 
 
10977
* First public release.
 
10978
 
 
10979
* Storage of local versions: init, add, remove, rm, info, log,
 
10980
  diff, status, etc.
 
10981
 
 
10982
..
 
10983
   vim: tw=74 ft=rst ff=unix