~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Robert Collins
  • Date: 2007-04-30 05:13:58 UTC
  • mfrom: (2470 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2471.
  • Revision ID: robertc@robertcollins.net-20070430051358-8cp7kvp1q0tqhxx0
Merge Johns fix for bug 110399.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
IN DEVELOPMENT
2
2
 
3
 
  IMPROVEMENTS:
 
3
  BUGFIXES:
 
4
 
 
5
    * Handle the case when you delete a file, and then rename another file
 
6
      on top of it. Also handle the case of ``bzr rm --keep foo``. ``bzr
 
7
      status`` should show the removed file and an unknown file in its
 
8
      place. (John Arbash Meinel, #109993)
 
9
 
 
10
    * Bundles properly read and write revision properties that have an
 
11
      empty value. And when the value is not ASCII.
 
12
      (John Arbash Meinel, #109613)
 
13
 
 
14
    * Fix the bzr commit message to be in text mode.
 
15
      (Alexander Belchenko, #110901)
 
16
 
 
17
    * Also handle when you rename a file and create a file where it used
 
18
      to be. (John Arbash Meinel, #110256)
 
19
 
 
20
    * ``WorkingTree4._iter_changes`` should not descend into unversioned
 
21
      directories. (John Arbash Meinel, #110399)
 
22
 
 
23
bzr 0.16rc1  2007-04-26
 
24
 
 
25
  NOTES WHEN UPGRADING:
 
26
 
 
27
    * ``bzr remove`` and ``bzr rm`` will now remove the working file, if
 
28
      it could be recovered again.
 
29
      This has been done for consistency with svn and the unix rm command.
 
30
      The old ``remove`` behaviour has been retained in the new option
 
31
      ``bzr remove --keep``, which will just stop versioning the file,
 
32
      but not delete it.
 
33
      ``bzr remove --force`` have been added which will always delete the
 
34
      files.
 
35
      ``bzr remove`` is also more verbose.
 
36
      (Marius Kruger, #82602)
 
37
 
 
38
  IMPROVEMENTS:
 
39
 
 
40
    * Merge directives can now be supplied as input to `merge` and `pull`,
 
41
      like bundles can.  (Aaron Bentley)
 
42
 
 
43
    * Sending the SIGQUIT signal to bzr, which can be done on Unix by
 
44
      pressing Control-Backslash, drops bzr into a debugger.  Type ``'c'``
 
45
      to continue.  This can be disabled by setting the environment variable
 
46
      ``BZR_SIGQUIT_PDB=0``.  (Martin Pool)
 
47
 
 
48
    * selftest now supports --list-only to list tests instead of running
 
49
      them. (Ian Clatworthy)
 
50
 
 
51
    * selftest now supports --exclude PATTERN (or -x PATTERN) to exclude
 
52
      tests with names that match that regular expression.
 
53
      (Ian Clatworthy, #102679)
 
54
 
 
55
    * selftest now supports --randomize SEED to run tests in a random order.
 
56
      SEED is typically the value 'now' meaning 'use the current time'.
 
57
      (Ian Clatworthy, #102686)
 
58
 
 
59
    * New option ``--fixes`` to commit, which stores bug fixing annotations as
 
60
      revision properties. Built-in support for Launchpad, Debian, Trac and
 
61
      Bugzilla bug trackers. (Jonathan Lange, James Henstridge, Robert Collins)
 
62
 
 
63
    * New API, ``bzrlib.bugtracker.tracker_registry``, for adding support for
 
64
      other bug trackers to ``fixes``. (Jonathan Lange, James Henstridge,
 
65
      Robert Collins)
 
66
 
 
67
    * ``selftest`` has new short options ``-f`` and ``-1``.  (Martin
 
68
      Pool)
 
69
 
 
70
    * ``bzrlib.tsort.MergeSorter`` optimizations. Change the inner loop
 
71
      into using local variables instead of going through ``self._var``.
 
72
      Improves the time to ``merge_sort`` a 10k revision graph by
 
73
      approximately 40% (~700->400ms).  (John Arbash Meinel)
 
74
 
 
75
    * ``make docs`` now creates a man page at ``man1/bzr.1`` fixing bug 107388.
 
76
      (Robert Collins)
 
77
 
 
78
    * ``bzr help`` now provides cross references to other help topics using
 
79
      the _see_also facility on command classes. Likewise the bzr_man
 
80
      documentation, and the bzr.1 man page also include this information.
 
81
      (Robert Collins)
 
82
 
 
83
    * Tags are now included in logs, that use the long log formatter. 
 
84
      (Erik Bågfors, Alexander Belchenko)
 
85
 
 
86
    * ``bzr help`` provides a clearer message when a help topic cannot be
 
87
      found. (Robert Collins, #107656)
 
88
 
 
89
    * ``bzr help`` now accepts optional prefixes for command help. The help
 
90
      for all commands can now be found at ``bzr help commands/COMMANDNAME``
 
91
      as well as ``bzr help COMMANDNAME`` (which only works for commands 
 
92
      where the name is not the same as a more general help topic). 
 
93
      (Robert Collins)
 
94
 
 
95
    * ``bzr help PLUGINNAME`` will now return the module docstring from the
 
96
      plugin PLUGINNAME. (Robert Collins, #50408)
 
97
 
 
98
    * New help topic ``urlspec`` which lists the availables transports.
 
99
      (Goffredo Baroncelli)
 
100
 
 
101
    * doc/server.txt updated to document the default bzr:// port
 
102
      and also update the blurb about the hpss' current status.
 
103
      (Robert Collins, #107125).
 
104
 
 
105
    * ``bzr serve`` now listens on interface 0.0.0.0 by default, making it
 
106
      serve out to the local LAN (and anyone in the world that can reach the
 
107
      machine running ``bzr serve``. (Robert Collins, #98918)
 
108
 
 
109
    * A new smart server protocol version has been added.  It prefixes requests
 
110
      and responses with an explicit version identifier so that future protocol
 
111
      revisions can be dealt with gracefully.  (Andrew Bennetts, Robert Collins)
 
112
 
 
113
    * The bzr protocol version 2 indicates success or failure in every response
 
114
      without depending on particular commands encoding that consistently,
 
115
      allowing future client refactorings to be much more robust about error
 
116
      handling. (Robert Collins, Martin Pool, Andrew Bennetts)
 
117
 
 
118
    * The smart protocol over HTTP client has been changed to always post to the
 
119
      same ``.bzr/smart`` URL under the original location when it can.  This allows
 
120
      HTTP servers to only have to pass URLs ending in .bzr/smart to the smart
 
121
      server handler, and not arbitrary ``.bzr/*/smart`` URLs.  (Andrew Bennetts)
 
122
 
 
123
    * digest authentication is now supported for proxies and HTTP by the urllib
 
124
      based http implementation. Tested against Apache 2.0.55 and Squid
 
125
      2.6.5. Basic and digest authentication are handled coherently for HTTP
 
126
      and proxy: if the user is provided in the url (bzr command line for HTTP,
 
127
      proxy environment variables for proxies), the password is prompted for
 
128
      (only once). If the password is provided, it is taken into account. Once
 
129
      the first authentication is successful, all further authentication
 
130
      roundtrips are avoided by preventively setting the right authentication
 
131
      header(s).
 
132
      (Vincent Ladeuil).
 
133
 
 
134
  INTERNALS:
 
135
 
 
136
    * bzrlib API compatability with 0.8 has been dropped, cleaning up some
 
137
      code paths. (Robert Collins)
 
138
 
 
139
    * Change the format of chroot urls so that they can be safely manipulated
 
140
      by generic url utilities without causing the resulting urls to have
 
141
      escaped the chroot. A side effect of this is that creating a chroot
 
142
      requires an explicit action using a ChrootServer.
 
143
      (Robert Collins, Andrew Bennetts)
 
144
 
 
145
    * Deprecate ``Branch.get_root_id()`` because branches don't have root ids,
 
146
      rather than fixing bug #96847.  (Aaron Bentley)
 
147
 
 
148
    * ``WorkingTree.apply_inventory_delta`` provides a better alternative to
 
149
      ``WorkingTree._write_inventory``.  (Aaron Bentley)
 
150
 
 
151
    * Convenience method ``TestCase.expectFailure`` ensures that known failures
 
152
      do not silently pass.  (Aaron Bentley)
 
153
 
 
154
    * ``Transport.local_abspath`` now raises ``NotLocalUrl`` rather than 
 
155
      ``TransportNotPossible``. (Martin Pool, Ian Clatworthy)
 
156
 
 
157
    * New SmartServer hooks facility. There are two initial hooks documented
 
158
      in ``bzrlib.transport.smart.SmartServerHooks``. The two initial hooks allow
 
159
      plugins to execute code upon server startup and shutdown.
 
160
      (Robert Collins).
 
161
 
 
162
    * SmartServer in standalone mode will now close its listening socket
 
163
      when it stops, rather than waiting for garbage collection. This primarily
 
164
      fixes test suite hangs when a test tries to connect to a shutdown server.
 
165
      It may also help improve behaviour when dealing with a server running
 
166
      on a specific port (rather than dynamically assigned ports).
 
167
      (Robert Collins)
 
168
 
 
169
    * Move most SmartServer code into a new package, bzrlib/smart.
 
170
      bzrlib/transport/remote.py contains just the Transport classes that used
 
171
      to be in bzrlib/transport/smart.py.  (Andrew Bennetts)
 
172
 
 
173
    * urllib http implementation avoid roundtrips associated with
 
174
      401 (and 407) errors once the authentication succeeds.
 
175
      (Vincent Ladeuil).
 
176
 
 
177
    * urlib http now supports querying the user for a proxy password if
 
178
      needed. Realm is shown in the prompt for both HTTP and proxy
 
179
      authentication when the user is required to type a password. 
 
180
      (Vincent Ladeuil).
 
181
 
 
182
    * Renamed SmartTransport (and subclasses like SmartTCPTransport) to
 
183
      RemoteTransport (and subclasses to RemoteTCPTransport, etc).  This is more
 
184
      consistent with its new home in ``bzrlib/transport/remote.py``, and because
 
185
      it's not really a "smart" transport, just one that does file operations
 
186
      via remote procedure calls.  (Andrew Bennetts)
 
187
 
 
188
    * The ``lock_write`` method of ``LockableFiles``, ``Repository`` and
 
189
      ``Branch`` now accept a ``token`` keyword argument, so that separate
 
190
      instances of those objects can share a lock if it has the right token.
 
191
      (Andrew Bennetts, Robert Collins)
 
192
 
 
193
    * New method ``get_branch_reference`` on ``BzrDir`` allows the detection of
 
194
      branch references - which the smart server component needs.
 
195
 
 
196
    * The Repository API ``make_working_trees`` is now permitted to return
 
197
      False when ``set_make_working_trees`` is not implemented - previously
 
198
      an unimplemented ``set_make_working_trees`` implied the result True
 
199
      from ``make_working_trees``. This has been changed to accomodate the
 
200
      smart server, where it does not make sense (at this point) to ever
 
201
      make working trees by default. (Robert Collins)
 
202
 
 
203
    * Command objects can now declare related help topics by having _see_also
 
204
      set to a list of related topic. (Robert Collins)
 
205
 
 
206
    * ``bzrlib.help`` now delegates to the Command class for Command specific
 
207
      help. (Robert Collins)
 
208
 
 
209
    * New class ``TransportListRegistry``, derived from the Registry class, which 
 
210
      simplifies tracking the available Transports. (Goffredo Baroncelli)
 
211
 
 
212
    * New function ``Branch.get_revision_id_to_revno_map`` which will
 
213
      return a dictionary mapping revision ids to dotted revnos. Since
 
214
      dotted revnos are defined in the context of the branch tip, it makes
 
215
      sense to generate them from a ``Branch`` object.
 
216
      (John Arbash Meinel)
 
217
 
 
218
    * Fix the 'Unprintable error' message display to use the repr of the 
 
219
      exception that prevented printing the error because the str value
 
220
      for it is often not useful in debugging (e.g. KeyError('foo') has a
 
221
      str() of 'foo' but a repr of 'KeyError('foo')' which is much more
 
222
      useful. (Robert Collins)
 
223
 
 
224
    * ``urlutils.normalize_url`` now unescapes unreserved characters, such as "~".
 
225
      (Andrew Bennetts)
 
226
 
 
227
  BUGFIXES:
 
228
 
 
229
    * Don't fail bundle selftest if email has 'two' embedded.  
 
230
      (Ian Clatworthy, #98510)
 
231
 
 
232
    * Remove ``--verbose`` from ``bzr bundle``. It didn't work anyway.
 
233
      (Robert Widhopf-Fenk, #98591)
 
234
 
 
235
    * Remove ``--basis`` from the checkout/branch commands - it didn't work
 
236
      properly and is no longer beneficial.
 
237
      (Robert Collins, #53675, #43486)
 
238
 
 
239
    * Don't produce encoding error when adding duplicate files.
 
240
      (Aaron Bentley)
 
241
 
 
242
    * Fix ``bzr log <file>`` so it only logs the revisions that changed
 
243
      the file, and does it faster.
 
244
      (Kent Gibson, John Arbash Meinel, #51980, #69477)
 
245
 
 
246
    * Fix ``InterDirstateTre._iter_changes`` to handle when we come across
 
247
      an empty versioned directory, which now has files in it.
 
248
      (John Arbash Meinel, #104257)
 
249
 
 
250
    * Teach ``common_ancestor`` to shortcut when the tip of one branch is
 
251
      inside the ancestry of the other. Saves a lot of graph processing
 
252
      (with an ancestry of 16k revisions, ``bzr merge ../already-merged``
 
253
      changes from 2m10s to 13s).  (John Arbash Meinel, #103757)
 
254
 
 
255
    * Fix ``show_diff_trees`` to handle the case when a file is modified,
 
256
      and the containing directory is renamed. (The file path is different
 
257
      in this versus base, but it isn't marked as a rename).
 
258
      (John Arbash Meinel, #103870)
 
259
 
 
260
    * FTP now works even when the FTP server does not support atomic rename.
 
261
      (Aaron Bentley, #89436)
 
262
 
 
263
    * Correct handling in bundles and merge directives of timezones with
 
264
      that are not an integer number of hours offset from UTC.  Always 
 
265
      represent the epoch time in UTC to avoid problems with formatting 
 
266
      earlier times on win32.  (Martin Pool, Alexander Belchenko, John
 
267
      Arbash Meinel)
 
268
 
 
269
    * Typo in the help for ``register-branch`` fixed. (Robert Collins, #96770)
 
270
 
 
271
    * "dirstate" and "dirstate-tags" formats now produce branches compatible
 
272
      with old versions of bzr. (Aaron Bentley, #107168))
 
273
 
 
274
    * Handle moving a directory when children have been added, removed,
 
275
      and renamed. (John Arbash Meinel, #105479)
 
276
 
 
277
    * Don't preventively use basic authentication for proxy before receiving a
 
278
      407 error. Otherwise people willing to use other authentication schemes
 
279
      may expose their password in the clear (or nearly). This add one
 
280
      roundtrip in case basic authentication should be used, but plug the
 
281
      security hole.
 
282
      (Vincent Ladeuil)
 
283
 
 
284
    * Handle http and proxy digest authentication.
 
285
      (Vincent Ladeuil, #94034).
 
286
 
 
287
  TESTING:
 
288
 
 
289
    * Added ``bzrlib.strace.strace`` which will strace a single callable and
 
290
      return a StraceResult object which contains just the syscalls involved
 
291
      in running it. (Robert Collins)
 
292
 
 
293
    * New test method ``reduceLockdirTimeout`` to drop the default (ui-centric)
 
294
      default time down to one suitable for tests. (Andrew Bennetts)
 
295
 
 
296
    * Add new ``vfs_transport_factory`` attribute on tests which provides the 
 
297
      common vfs backing for both the readonly and readwrite transports.
 
298
      This allows the RemoteObject tests to back onto local disk or memory,
 
299
      and use the existing ``transport_server`` attribute all tests know about
 
300
      to be the smart server transport. This in turn allows tests to 
 
301
      differentiate between 'transport to access the branch', and 
 
302
      'transport which is a VFS' - which matters in Remote* tests.
 
303
      (Robert Collins, Andrew Bennetts)
 
304
 
 
305
    * The ``make_branch_and_tree`` method for tests will now create a 
 
306
      lightweight checkout for the tree if the ``vfs_transport_factory`` is not
 
307
      a LocalURLServer. (Robert Collins, Andrew Bennetts)
 
308
 
 
309
    * Branch implementation tests have been audited to ensure that all urls 
 
310
      passed to Branch APIs use proper urls, except when local-disk paths
 
311
      are intended. This is so that tests correctly access the test transport
 
312
      which is often not equivalent to local disk in Remote* tests. As part
 
313
      of this many tests were adjusted to remove dependencies on local disk
 
314
      access.
 
315
      (Robert Collins, Andrew Bennetts)
 
316
 
 
317
    * Mark bzrlib.tests and bzrlib.tests.TestUtil as providing assertFOO helper
 
318
      functions by adding a ``__unittest`` global attribute. (Robert Collins,
 
319
      Andrew Bennetts, Martin Pool, Jonathan Lange)
 
320
 
 
321
    * Refactored proxy and authentication handling to simplify the
 
322
      implementation of new auth schemes for both http and proxy. 
 
323
      (Vincent Ladeuil)
 
324
 
 
325
bzr 0.15 2007-04-01
 
326
 
 
327
  BUGFIXES:
 
328
 
 
329
    * Handle incompatible repositories as a user issue when fetching.
 
330
      (Aaron Bentley)
 
331
 
 
332
    * Don't give a recommendation to upgrade when branching or 
 
333
      checking out a branch that contains an old-format working tree.
 
334
      (Martin Pool)
 
335
 
 
336
bzr 0.15rc3  2007-03-26
 
337
 
 
338
  CHANGES:
 
339
 
 
340
    * A warning is now displayed when opening working trees in older 
 
341
      formats, to encourage people to upgrade to WorkingTreeFormat4.
 
342
      (Martin Pool)
 
343
 
 
344
  IMPROVEMENTS:
 
345
 
 
346
    * HTTP redirections are now taken into account when a branch (or a
 
347
      bundle) is accessed for the first time. A message is issued at each
 
348
      redirection to inform the user. In the past, http redirections were
 
349
      silently followed for each request which significantly degraded the
 
350
      performances. The http redirections are not followed anymore by
 
351
      default, instead a RedirectRequested exception is raised. For bzrlib
 
352
      users needing to follow http redirections anyway,
 
353
      ``bzrlib.transport.do_catching_redirections`` provide an easy transition
 
354
      path.  (vila)
 
355
 
 
356
  INTERNALS:
 
357
 
 
358
    * Added ``ReadLock.temporary_write_lock()`` to allow upgrading an OS read
 
359
      lock to an OS write lock. Linux can do this without unlocking, Win32
 
360
      needs to unlock in between. (John Arbash Meinel)
 
361
 
 
362
    * New parameter ``recommend_upgrade`` to ``BzrDir.open_workingtree``
 
363
      to silence (when false) warnings about opening old formats.
 
364
      (Martin Pool)
 
365
 
 
366
    * Fix minor performance regression with bzr-0.15 on pre-dirstate
 
367
      trees. (We were reading the working inventory too many times).
 
368
      (John Arbash Meinel)
 
369
 
 
370
    * Remove ``Branch.get_transaction()`` in favour of a simple cache of
 
371
      ``revision_history``.  Branch subclasses should override
 
372
      ``_gen_revision_history`` rather than ``revision_history`` to make use of
 
373
      this cache, and call ``_clear_revision_history_cache`` and
 
374
      ``_cache_revision_history`` at appropriate times. (Andrew Bennetts)
 
375
 
 
376
  BUGFIXES:
 
377
 
 
378
    * Take ``smtp_server`` from user config into account.
 
379
      (vila, #92195)
 
380
 
 
381
    * Restore Unicode filename handling for versioned and unversioned files.
 
382
      (John Arbash Meinel, #92608)
 
383
 
 
384
    * Don't fail during ``bzr commit`` if a file is marked removed, and
 
385
      the containing directory is auto-removed.  (John Arbash Meinel, #93681)
 
386
 
 
387
    * ``bzr status FILENAME`` failed on Windows because of an uncommon
 
388
      errno. (``ERROR_DIRECTORY == 267 != ENOTDIR``).
 
389
      (Wouter van Heyst, John Arbash Meinel, #90819)
 
390
 
 
391
    * ``bzr checkout source`` should create a local branch in the same
 
392
      format as source. (John Arbash Meinel, #93854)
 
393
 
 
394
    * ``bzr commit`` with a kind change was failing to update the
 
395
      last-changed-revision for directories.  The
 
396
      InventoryDirectory._unchanged only looked at the ``parent_id`` and name,
 
397
      ignoring the fact that the kind could have changed, too.
 
398
      (John Arbash Meinel, #90111)
 
399
 
 
400
    * ``bzr mv dir/subdir other`` was incorrectly updating files inside
 
401
      the directory. So that there was a chance it would break commit,
 
402
      etc. (John Arbash Meinel, #94037)
 
403
 
 
404
    * Correctly handles mutiple permanent http redirections.
 
405
      (vila, #88780)
 
406
 
 
407
bzr 0.15rc2  2007-03-14
 
408
 
 
409
  NOTES WHEN UPGRADING:
 
410
        
 
411
    * Release 0.15rc2 of bzr changes the ``bzr init-repo`` command to
 
412
      default to ``--trees`` instead of ``--no-trees``.
 
413
      Existing shared repositories are not affected.
 
414
 
 
415
  IMPROVEMENTS:
 
416
 
 
417
    * New ``merge-directive`` command to generate machine- and human-readable
 
418
      merge requests.  (Aaron Bentley)
 
419
 
 
420
    * New ``submit:`` revision specifier makes it easy to diff against the
 
421
      common ancestor with the submit location (Aaron Bentley)
 
422
 
 
423
    * Added support for Putty's SSH implementation. (Dmitry Vasiliev)
 
424
 
 
425
    * Added ``bzr status --versioned`` to report only versioned files, 
 
426
      not unknowns. (Kent Gibson)
 
427
 
 
428
    * Merge now autodetects the correct line-ending style for its conflict
 
429
      markers.  (Aaron Bentley)
 
430
 
 
431
  INTERNALS:
 
432
 
 
433
    * Refactored SSH vendor registration into SSHVendorManager class.
 
434
      (Dmitry Vasiliev)
 
435
 
 
436
  BUGFIXES:
 
437
 
 
438
    * New ``--numbered-dirs`` option to ``bzr selftest`` to use
 
439
      numbered dirs for TestCaseInTempDir. This is default behavior
 
440
      on Windows. Anyone can force named dirs on Windows
 
441
      with ``--no-numbered-dirs``. (Alexander Belchenko)
 
442
 
 
443
    * Fix ``RevisionSpec_revid`` to handle the Unicode strings passed in
 
444
      from the command line. (Marien Zwart, #90501)
 
445
 
 
446
    * Fix ``TreeTransform._iter_changes`` when both the source and
 
447
      destination are missing. (Aaron Bentley, #88842)
 
448
 
 
449
    * Fix commit of merges with symlinks in dirstate trees.
 
450
      (Marien Zwart)
 
451
    
 
452
    * Switch the ``bzr init-repo`` default from --no-trees to --trees. 
 
453
      (Wouter van Heyst, #53483)
 
454
 
 
455
 
 
456
bzr 0.15rc1  2007-03-07
 
457
 
 
458
  SURPRISES:
 
459
 
 
460
    * The default disk format has changed. Please run 'bzr upgrade' in your
 
461
      working trees to upgrade. This new default is compatible for network
 
462
      operations, but not for local operations. That is, if you have two
 
463
      versions of bzr installed locally, after upgrading you can only use the
 
464
      bzr 0.15 version. This new default does not enable tags or nested-trees
 
465
      as they are incompatible with bzr versions before 0.15 over the network.
 
466
 
 
467
    * For users of bzrlib: Two major changes have been made to the working tree
 
468
      api in bzrlib. The first is that many methods and attributes, including
 
469
      the inventory attribute, are no longer valid for use until one of
 
470
      ``lock_read``/``lock_write``/``lock_tree_write`` has been called,
 
471
      and become invalid again after unlock is called. This has been done
 
472
      to improve performance and correctness as part of the dirstate
 
473
      development.
 
474
      (Robert Collins, John A Meinel, Martin Pool, and others).
 
475
 
 
476
    * For users of bzrlib: The attribute 'tree.inventory' should be considered
 
477
      readonly. Previously it was possible to directly alter this attribute, or
 
478
      its contents, and have the tree notice this. This has been made
 
479
      unsupported - it may work in some tree formats, but in the newer dirstate
 
480
      format such actions will have no effect and will be ignored, or even
 
481
      cause assertions. All operations possible can still be carried out by a
 
482
      combination of the tree API, and the bzrlib.transform API. (Robert
 
483
      Collins, John A Meinel, Martin Pool, and others).
 
484
 
 
485
  IMPROVEMENTS:
 
486
 
 
487
    * Support for OS Windows 98. Also .bzr.log on any windows system
 
488
      saved in My Documents folder. (Alexander Belchenko)
 
489
 
 
490
    * ``bzr mv`` enhanced to support already moved files.
 
491
      In the past the mv command would have failed if the source file doesn't
 
492
      exist. In this situation ``bzr mv`` would now detect that the file has
 
493
      already moved and update the repository accordingly, if the target file
 
494
      does exist.
 
495
      A new option ``--after`` has been added so that if two files already
 
496
      exist, you could notify Bazaar that you have moved a (versioned) file
 
497
      and replaced it with another. Thus in this case ``bzr move --after``
 
498
      will only update the Bazaar identifier.
 
499
      (Steffen Eichenberg, Marius Kruger)
 
500
 
 
501
    * ``ls`` now works on treeless branches and remote branches.
 
502
      (Aaron Bentley)
 
503
 
 
504
    * ``bzr help global-options`` describes the global options.
 
505
      (Aaron Bentley)
 
506
 
 
507
    * ``bzr pull --overwrite`` will now correctly overwrite checkouts.
 
508
      (Robert Collins)
 
509
 
 
510
    * Files are now allowed to change kind (e.g. from file to symlink).
 
511
      Supported by ``commit``, ``revert`` and ``status``
 
512
      (Aaron Bentley)
 
513
 
 
514
    * ``inventory`` and ``unknowns`` hidden in favour of ``ls``
 
515
      (Aaron Bentley)
 
516
 
 
517
    * ``bzr help checkouts`` descibes what checkouts are and some possible
 
518
      uses of them. (James Westby, Aaron Bentley)
 
519
 
 
520
    * A new ``-d`` option to push, pull and merge overrides the default 
 
521
      directory.  (Martin Pool)
 
522
 
 
523
    * Branch format 6: smaller, and potentially faster than format 5.  Supports
 
524
      ``append_history_only`` mode, where the log view and revnos do not change,
 
525
      except by being added to.  Stores policy settings in
 
526
      ".bzr/branch/branch.conf".
 
527
 
 
528
    * ``append_only`` branches:  Format 6 branches may be configured so that log
 
529
      view and revnos are always consistent.  Either create the branch using
 
530
      "bzr init --append-revisions-only" or edit the config file as descriped
 
531
      in docs/configuration.txt.
 
532
 
 
533
    * rebind: Format 6 branches retain the last-used bind location, so if you
 
534
      "bzr unbind", you can "bzr bind" to bind to the previously-selected
 
535
      bind location.
 
536
 
 
537
    * Builtin tags support, created and deleted by the ``tag`` command and
 
538
      stored in the branch.  Tags can be accessed with the revisionspec
 
539
      ``-rtag:``, and listed with ``bzr tags``.  Tags are not versioned 
 
540
      at present. Tags require a network incompatible upgrade. To perform this
 
541
      upgrade, run ``bzr upgrade --dirstate-tags`` in your branch and
 
542
      repositories. (Martin Pool)
 
543
 
 
544
    * The ``bzr://`` transport now has a well-known port number, 4155,
 
545
      which it will use by default.  (Andrew Bennetts, Martin Pool)
 
546
 
 
547
    * Bazaar now looks for user-installed plugins before looking for site-wide
 
548
      plugins. (Jonathan Lange)
 
549
 
 
550
    * ``bzr resolve`` now detects and marks resolved text conflicts.
 
551
      (Aaron Bentley)
 
552
 
 
553
  INTERNALS:
 
554
 
 
555
    * Internally revision ids and file ids are now passed around as utf-8
 
556
      bytestrings, rather than treating them as Unicode strings. This has
 
557
      performance benefits for Knits, since we no longer need to decode the
 
558
      revision id for each line of content, nor for each entry in the index.
 
559
      This will also help with the future dirstate format.
 
560
      (John Arbash Meinel)
 
561
 
 
562
    * Reserved ids (any revision-id ending in a colon) are rejected by
 
563
      versionedfiles, repositories, branches, and working trees
 
564
      (Aaron Bentley)
 
565
 
 
566
    * Minor performance improvement by not creating a ProgressBar for
 
567
      every KnitIndex we create. (about 90ms for a bzr.dev tree)
 
568
      (John Arbash Meinel)
 
569
 
 
570
    * New easier to use Branch hooks facility. There are five initial hooks,
 
571
      all documented in bzrlib.branch.BranchHooks.__init__ - ``'set_rh'``,
 
572
      ``'post_push'``, ``'post_pull'``, ``'post_commit'``,
 
573
      ``'post_uncommit'``. These hooks fire after the matching operation
 
574
      on a branch has taken place, and were originally added for the
 
575
      branchrss plugin. (Robert Collins)
 
576
 
 
577
    * New method ``Branch.push()`` which should be used when pushing from a
 
578
      branch as it makes performance and policy decisions to match the UI
 
579
      level command ``push``. (Robert Collins).
 
580
 
 
581
    * Add a new method ``Tree.revision_tree`` which allows access to cached
 
582
      trees for arbitrary revisions. This allows the in development dirstate
 
583
      tree format to provide access to the callers to cached copies of 
 
584
      inventory data which are cheaper to access than inventories from the
 
585
      repository.
 
586
      (Robert Collins, Martin Pool)
 
587
 
 
588
    * New ``Branch.last_revision_info`` method, this is being done to allow
 
589
      optimization of requests for both the number of revisions and the last
 
590
      revision of a branch with smartservers and potentially future branch
 
591
      formats. (Wouter van Heyst, Robert Collins)
 
592
 
 
593
    * Allow ``'import bzrlib.plugins.NAME'`` to work when the plugin NAME has not
 
594
      yet been loaded by ``load_plugins()``. This allows plugins to depend on each
 
595
      other for code reuse without requiring users to perform file-renaming
 
596
      gymnastics. (Robert Collins)
 
597
 
 
598
    * New Repository method ``'gather_stats'`` for statistic data collection.
 
599
      This is expected to grow to cover a number of related uses mainly
 
600
      related to bzr info. (Robert Collins)
 
601
 
 
602
    * Log formatters are now managed with a registry.
 
603
      ``log.register_formatter`` continues to work, but callers accessing
 
604
      the FORMATTERS dictionary directly will not.
 
605
 
 
606
    * Allow a start message to be passed to the ``edit_commit_message``
 
607
      function.  This will be placed in the message offered to the user
 
608
      for editing above the separator. It allows a template commit message
 
609
      to be used more easily. (James Westby)
 
610
 
 
611
    * ``GPGStrategy.sign()`` will now raise ``BzrBadParameterUnicode`` if
 
612
      you pass a Unicode string rather than an 8-bit string. Callers need
 
613
      to be updated to encode first. (John Arbash Meinel)
 
614
 
 
615
    * Branch.push, pull, merge now return Result objects with information
 
616
      about what happened, rather than a scattering of various methods.  These
 
617
      are also passed to the post hooks.  (Martin Pool)
 
618
 
 
619
    * File formats and architecture is in place for managing a forest of trees
 
620
      in bzr, and splitting up existing trees into smaller subtrees, and
 
621
      finally joining trees to make a larger tree. This is the first iteration
 
622
      of this support, and the user-facing aspects still require substantial
 
623
      work.  If you wish to experiment with it, use ``bzr upgrade
 
624
      --dirstate-with-subtree`` in your working trees and repositories.
 
625
      You can use the hidden commands ``split`` and ``join`` and to create
 
626
      and manipulate nested trees, but please consider using the nested-trees
 
627
      branch, which contains substantial UI improvements, instead.
 
628
      http://code.aaronbentley.com/bzr/bzrrepo/nested-trees/
 
629
      (Aaron Bentley, Martin Pool, Robert Collins).
 
630
 
 
631
  BUGFIXES:
 
632
 
 
633
    * ``bzr annotate`` now uses dotted revnos from the viewpoint of the
 
634
      branch, rather than the last changed revision of the file.
 
635
      (John Arbash Meinel, #82158)
 
636
 
 
637
    * Lock operations no longer hang if they encounter a permission problem.
 
638
      (Aaron Bentley)
 
639
 
 
640
    * ``bzr push`` can resume a push that was canceled before it finished.
 
641
      Also, it can push even if the target directory exists if you supply
 
642
      the ``--use-existing-dir`` flag.
 
643
      (John Arbash Meinel, #30576, #45504)
 
644
 
 
645
    * Fix http proxy authentication when user and an optional
 
646
      password appears in the ``*_proxy`` vars. (Vincent Ladeuil,
 
647
      #83954).
 
648
 
 
649
    * ``bzr log branch/file`` works for local treeless branches
 
650
      (Aaron Bentley, #84247)
 
651
 
 
652
    * Fix problem with UNC paths on Windows 98. (Alexander Belchenko, #84728)
 
653
 
 
654
    * Searching location of CA bundle for PyCurl in env variable
 
655
      (``CURL_CA_BUNDLE``), and on win32 along the PATH.
 
656
      (Alexander Belchenko, #82086)
 
657
 
 
658
    * ``bzr init`` works with unicode argument LOCATION.
 
659
      (Alexander Belchenko, #85599)
 
660
 
 
661
    * Raise ``DependencyNotPresent`` if pycurl do not support https. 
 
662
      (Vincent Ladeuil, #85305)
 
663
 
 
664
    * Invalid proxy env variables should not cause a traceback.
 
665
      (Vincent Ladeuil, #87765)
 
666
 
 
667
    * Ignore patterns normalised to use '/' path separator.
 
668
      (Kent Gibson, #86451)
 
669
 
 
670
    * bzr rocks. It sure does! Fix case. (Vincent Ladeuil, #78026)
 
671
 
 
672
    * Fix bzrtools shelve command for removed lines beginning with "--"
 
673
      (Johan Dahlberg, #75577)
 
674
 
 
675
  TESTING:
 
676
 
 
677
    * New ``--first`` option to ``bzr selftest`` to run specified tests
 
678
      before the rest of the suite.  (Martin Pool)
 
679
 
 
680
 
 
681
bzr 0.14  2007-01-23
 
682
 
 
683
  IMPROVEMENTS:
 
684
 
 
685
    * ``bzr help global-options`` describes the global options. (Aaron Bentley)
 
686
 
 
687
  BUG FIXES:
 
688
    
 
689
    * Skip documentation generation tests if the tools to do so are not
 
690
      available. Fixes running selftest for installled copies of bzr. 
 
691
      (John Arbash Meinel, #80330)
 
692
 
 
693
    * Fix the code that discovers whether bzr is being run from it's
 
694
      working tree to handle the case when it isn't but the directory
 
695
      it is in is below a repository. (James Westby, #77306)
 
696
 
 
697
 
 
698
bzr 0.14rc1  2007-01-16
 
699
 
 
700
  IMPROVEMENTS:
 
701
 
 
702
    * New connection: ``bzr+http://`` which supports tunnelling the smart
 
703
      protocol over an HTTP connection. If writing is enabled on the bzr
 
704
      server, then you can write over the http connection.
 
705
      (Andrew Bennetts, John Arbash Meinel)
 
706
 
 
707
    * Aliases now support quotation marks, so they can contain whitespace
 
708
      (Marius Kruger)
 
709
 
 
710
    * PyCurlTransport now use a single curl object. By specifying explicitly
 
711
      the 'Range' header, we avoid the need to use two different curl objects
 
712
      (and two connections to the same server). (Vincent Ladeuil)
 
713
 
 
714
    * ``bzr commit`` does not prompt for a message until it is very likely to
 
715
      succeed.  (Aaron Bentley)
 
716
 
 
717
    * ``bzr conflicts`` now takes --text to list pathnames of text conflicts
 
718
      (Aaron Bentley)
 
719
 
 
720
    * Fix ``iter_lines_added_or_present_in_versions`` to use a set instead
 
721
      of a list while checking if a revision id was requested. Takes 10s
 
722
      off of the ``fileids_affected_by_revision_ids`` time, which is 10s
 
723
      of the ``bzr branch`` time. Also improve ``fileids_...`` time by
 
724
      filtering lines with a regex rather than multiple ``str.find()``
 
725
      calls. (saves another 300ms) (John Arbash Meinel)
 
726
 
 
727
    * Policy can be set for each configuration key. This allows keys to be
 
728
      inherited properly across configuration entries. For example, this
 
729
      should enable you to do::
 
730
        
 
731
        [/home/user/project]
 
732
        push_location = sftp://host/srv/project/
 
733
        push_location:policy = appendpath
 
734
 
 
735
      And then a branch like ``/home/user/project/mybranch`` should get an
 
736
      automatic push location of ``sftp://host/srv/project/mybranch``.
 
737
      (James Henstridge)
 
738
 
 
739
    * Added ``bzr status --short`` to make status report svn style flags
 
740
      for each file.  For example::
 
741
 
 
742
        $ bzr status --short
 
743
        A  foo
 
744
        A  bar
 
745
        D  baz
 
746
        ?  wooley
 
747
 
 
748
    * 'bzr selftest --clean-output' allows easily clean temporary tests 
 
749
      directories without running tests. (Alexander Belchenko)
 
750
 
 
751
    * ``bzr help hidden-commands`` lists all hidden commands. (Aaron Bentley)
 
752
 
 
753
    * ``bzr merge`` now has an option ``--pull`` to fall back to pull if
 
754
      local is fully merged into remote. (Jan Hudec)
 
755
 
 
756
    * ``bzr help formats`` describes available directory formats. (Aaron Bentley)
 
757
 
 
758
  INTERNALS:
 
759
 
 
760
    * A few tweaks directly to ``fileids_affected_by_revision_ids`` to
 
761
      help speed up processing, as well allowing to extract unannotated
 
762
      lines. Between the two ``fileids_affected_by_revision_ids`` is
 
763
      improved by approx 10%. (John Arbash Meinel)
 
764
 
 
765
    * Change Revision serialization to only write out millisecond
 
766
      resolution. Rather than expecting floating point serialization to
 
767
      preserve more resolution than we need. (Henri Weichers, Martin Pool)
 
768
 
 
769
    * Test suite ends cleanly on Windows.  (Vincent Ladeuil)
 
770
 
 
771
    * When ``encoding_type`` attribute of class Command is equal to 'exact', 
 
772
      force sys.stdout to be a binary stream on Windows, and therefore
 
773
      keep exact line-endings (without LF -> CRLF conversion).
 
774
      (Alexander Belchenko)
 
775
 
 
776
    * Single-letter short options are no longer globally declared.  (Martin
 
777
      Pool)
 
778
 
 
779
    * Before using detected user/terminal encoding bzr should check
 
780
      that Python has corresponding codec. (Alexander Belchenko)
 
781
 
 
782
    * Formats for end-user selection are provided via a FormatRegistry (Aaron Bentley)
 
783
 
 
784
  BUG FIXES:
 
785
 
 
786
    * ``bzr missing --verbose`` was showing adds/removals in the wrong
 
787
      direction. (John Arbash Meinel)
 
788
 
 
789
    * ``bzr annotate`` now defaults to showing dotted revnos for merged
 
790
      revisions. It cuts them off at a depth of 12 characters, but you can
 
791
      supply ``--long`` to see the full number. You can also use
 
792
      ``--show-ids`` to display the original revision ids, rather than
 
793
      revision numbers and committer names. (John Arbash Meinel, #75637)
 
794
 
 
795
    * bzr now supports Win32 UNC path (e.g. ``\HOST\path``. 
 
796
      (Alexander Belchenko, #57869)
 
797
 
 
798
    * Win32-specific: output of cat, bundle and diff commands don't mangle
 
799
      line-endings (Alexander Belchenko, #55276)
 
800
 
 
801
    * Replace broken fnmatch based ignore pattern matching with custom pattern
 
802
      matcher.
 
803
      (Kent Gibson, Jan Hudec #57637)
 
804
 
 
805
    * pycurl and urllib can detect short reads at different places. Update
 
806
      the test suite to test more cases. Also detect http error code 416
 
807
      which was raised for that specific bug. Also enhance the urllib
 
808
      robustness by detecting invalid ranges (and pycurl's one by detecting
 
809
      short reads during the initial GET). (Vincent Ladeuil, #73948)
 
810
 
 
811
    * The urllib connection sharing interacts badly with urllib2
 
812
      proxy setting (the connections didn't go thru the proxy
 
813
      anymore). Defining a proper ProxyHandler solves the
 
814
      problem.  (Vincent Ladeuil, #74759)
 
815
 
 
816
    * Use urlutils to generate relative URLs, not osutils 
 
817
      (Aaron Bentley, #76229)
 
818
 
 
819
    * ``bzr status`` in a readonly directory should work without giving
 
820
      lots of errors. (John Arbash Meinel, #76299)
 
821
 
 
822
    * Mention the revisionspec topic for the revision option help.
 
823
      (Wouter van Heyst, #31663)
 
824
 
 
825
    * Allow plugins import from zip archives.
 
826
      (Alexander Belchenko, #68124)
 
827
 
 
828
 
 
829
bzr 0.13  2006-12-05
 
830
    
 
831
  No changes from 0.13rc1
 
832
    
 
833
bzr 0.13rc1  2006-11-27
 
834
 
 
835
  IMPROVEMENTS:
 
836
 
 
837
    * New command ``bzr remove-tree`` allows the removal of the working
 
838
      tree from a branch.
 
839
      (Daniel Silverstone)
 
840
 
 
841
    * urllib uses shared keep-alive connections, so http 
 
842
      operations are substantially faster.
 
843
      (Vincent Ladeuil, #53654)
 
844
 
 
845
    * ``bzr export`` allows an optional branch parameter, to export a bzr
 
846
      tree from some other url. For example:
 
847
      ``bzr export bzr.tar.gz http://bazaar-vcs.org/bzr/bzr.dev``
 
848
      (Daniel Silverstone)
 
849
 
 
850
    * Added ``bzr help topics`` to the bzr help system. This gives a
 
851
      location for general information, outside of a specific command.
 
852
      This includes updates for ``bzr help revisionspec`` the first topic
 
853
      included. (Goffredo Baroncelli, John Arbash Meinel, #42714)
 
854
 
 
855
    * WSGI-compatible HTTP smart server.  See ``doc/http_smart_server.txt``.
 
856
      (Andrew Bennetts)
 
857
 
 
858
    * Knit files will now cache full texts only when the size of the
 
859
      deltas is as large as the size of the fulltext. (Or after 200
 
860
      deltas, whichever comes first). This has the most benefit on large
 
861
      files with small changes, such as the inventory for a large project.
 
862
      (eg For a project with 2500 files, and 7500 revisions, it changes
 
863
      the size of inventory.knit from 11MB to 5.4MB) (John Arbash Meinel)
 
864
 
 
865
  INTERNALS:
 
866
 
 
867
    * New -D option given before the command line turns on debugging output
 
868
      for particular areas.  -Derror shows tracebacks on all errors.
 
869
      (Martin Pool)
 
870
 
 
871
    * Clean up ``bzr selftest --benchmark bundle`` to correct an import,
 
872
      and remove benchmarks that take longer than 10min to run.
 
873
      (John Arbash Meinel)
 
874
 
 
875
    * Use ``time.time()`` instead of ``time.clock()`` to decide on
 
876
      progress throttling. Because ``time.clock()`` is actually CPU time,
 
877
      so over a high-latency connection, too many updates get throttled.
 
878
      (John Arbash Meinel)
 
879
 
 
880
    * ``MemoryTransport.list_dir()`` would strip the first character for
 
881
      files or directories in root directory. (John Arbash Meinel)
 
882
 
 
883
    * New method ``get_branch_reference`` on 'BzrDir' allows the detection of 
 
884
      branch references - which the smart server component needs.
 
885
  
 
886
    * New ``ChrootTransportDecorator``, accessible via the ``chroot+`` url
 
887
      prefix.  It disallows any access to locations above a set URL.  (Andrew
 
888
      Bennetts)
 
889
 
 
890
  BUG FIXES:
 
891
 
 
892
    * Now ``_KnitIndex`` properly decode revision ids when loading index data.
 
893
      And optimize the knit index parsing code. 
 
894
      (Dmitry Vasiliev, John Arbash Meinel)
 
895
 
 
896
    * ``bzrlib/bzrdir.py`` was directly referencing ``bzrlib.workingtree``,
 
897
      without importing it. This prevented ``bzr upgrade`` from working
 
898
      unless a plugin already imported ``bzrlib.workingtree``
 
899
      (John Arbash Meinel, #70716)
 
900
 
 
901
    * Suppress the traceback on invalid URLs (Vincent Ladeuil, #70803).
 
902
 
 
903
    * Give nicer error message when an http server returns a 403
 
904
      error code. (Vincent Ladeuil, #57644).
 
905
 
 
906
    * When a multi-range http GET request fails, try a single
 
907
      range one. If it fails too, forget about ranges. Remember that until 
 
908
      the death of the transport and propagates that to the clones.
 
909
      (Vincent Ladeuil, #62276, #62029).
 
910
 
 
911
    * Handles user/passwords supplied in url from command
 
912
      line (for the urllib implementation). Don't request already
 
913
      known passwords (Vincent Ladeuil, #42383, #44647, #48527)
 
914
 
 
915
    * ``_KnitIndex.add_versions()`` dictionary compresses revision ids as they
 
916
      are added. This fixes bug where fetching remote revisions records
 
917
      them as full references rather than integers.
 
918
      (John Arbash Meinel, #64789)
 
919
 
 
920
    * ``bzr ignore`` strips trailing slashes in patterns.
 
921
      Also ``bzr ignore`` rejects absolute paths. (Kent Gibson, #4559)
 
922
 
 
923
    * ``bzr ignore`` takes multiple arguments. (Cheuksan Edward Wang, #29488)
 
924
 
 
925
    * mv correctly handles paths that traverse symlinks. 
 
926
      (Aaron Bentley, #66964)
 
927
 
 
928
    * Give nicer looking error messages when failing to connect over ssh.
 
929
      (John Arbash Meinel, #49172)
 
930
 
 
931
    * Pushing to a remote branch does not currently update the remote working
 
932
      tree. After a remote push, ``bzr status`` and ``bzr diff`` on the remote
 
933
      machine now show that the working tree is out of date.
 
934
      (Cheuksan Edward Wang #48136)
 
935
 
 
936
    * Use patiencediff instead of difflib for determining deltas to insert
 
937
      into knits. This avoids the O(N^3) behavior of difflib. Patience
 
938
      diff should be O(N^2). (Cheuksan Edward Wang, #65714)
 
939
 
 
940
    * Running ``bzr log`` on nonexistent file gives an error instead of the
 
941
      entire log history. (Cheuksan Edward Wang #50793)
 
942
 
 
943
    * ``bzr cat`` can look up contents of removed or renamed files. If the
 
944
      pathname is ambiguous, i.e. the files in the old and new trees have
 
945
      different id's, the default is the file in the new tree. The user can
 
946
      use "--name-from-revision" to select the file in the old tree.
 
947
      (Cheuksan Edward Wang, #30190)
 
948
 
 
949
  TESTING:
 
950
 
 
951
    * TestingHTTPRequestHandler really handles the Range header
 
952
      (previously it was ignoring it and returning the whole file,).
 
953
 
 
954
bzr 0.12  2006-10-30
 
955
 
 
956
  INTERNALS:
 
957
 
 
958
    * Clean up ``bzr selftest --benchmark bundle`` to correct an import,
 
959
      and remove benchmarks that take longer than 10min to run.
 
960
      (John Arbash Meinel)
 
961
  
 
962
bzr 0.12rc1  2006-10-23
 
963
 
 
964
  IMPROVEMENTS:
 
965
 
 
966
    * ``bzr log`` now shows dotted-decimal revision numbers for all revisions,
 
967
      rather than just showing a decimal revision number for revisions on the
 
968
      mainline. These revision numbers are not yet accepted as input into bzr
 
969
      commands such as log, diff etc. (Robert Collins)
 
970
 
 
971
    * revisions can now be specified using dotted-decimal revision numbers.
 
972
      For instance, ``bzr diff -r 1.2.1..1.2.3``. (Robert Collins)
 
973
 
 
974
    * ``bzr help commands`` output is now shorter (Aaron Bentley)
 
975
 
 
976
    * ``bzr`` now uses lazy importing to reduce the startup time. This has
 
977
      a moderate effect on lots of actions, especially ones that have
 
978
      little to do. For example ``bzr rocks`` time is down to 116ms from
 
979
      283ms. (John Arbash Meinel)
 
980
 
 
981
    * New Registry class to provide name-to-object registry-like support,
 
982
      for example for schemes where plugins can register new classes to
 
983
      do certain tasks (e.g. log formatters). Also provides lazy registration
 
984
      to allow modules to be loaded on request.
 
985
      (John Arbash Meinel, Adeodato Simó)
 
986
 
 
987
  API INCOMPATABILITY:
 
988
  
 
989
    * LogFormatter subclasses show now expect the 'revno' parameter to 
 
990
      show() to be a string rather than an int. (Robert Collins)
 
991
 
 
992
  INTERNALS:
 
993
 
 
994
    * ``TestCase.run_bzr``, ``run_bzr_captured``, and ``run_bzr_subprocess``
 
995
      can take a ``working_dir='foo'`` parameter, which will change directory 
 
996
      for the command. (John Arbash Meinel)
 
997
 
 
998
    * ``bzrlib.lazy_regex.lazy_compile`` can be used to create a proxy
 
999
      around a regex, which defers compilation until first use. 
 
1000
      (John Arbash Meinel)
 
1001
 
 
1002
    * ``TestCase.run_bzr_subprocess`` defaults to supplying the
 
1003
      ``--no-plugins`` parameter to ensure test reproducability, and avoid
 
1004
      problems with system-wide installed plugins. (John Arbash Meinel)
 
1005
 
 
1006
    * Unique tree root ids are now supported. Newly created trees still
 
1007
      use the common root id for compatibility with bzr versions before 0.12.
 
1008
      (Aaron Bentley)
 
1009
 
 
1010
    * ``WorkingTree.set_root_id(None)`` is now deprecated. Please
 
1011
      pass in ``inventory.ROOT_ID`` if you want the default root id value.
 
1012
      (Robert Collins, John Arbash Meinel)
 
1013
 
 
1014
    * New method ``WorkingTree.flush()`` which will write the current memory
 
1015
      inventory out to disk. At the same time, ``read_working_inventory`` will
 
1016
      no longer trash the current tree inventory if it has been modified within
 
1017
      the current lock, and the tree will now ``flush()`` automatically on
 
1018
      ``unlock()``. ``WorkingTree.set_root_id()`` has been updated to take
 
1019
      advantage of this functionality. (Robert Collins, John Arbash Meinel)
 
1020
 
 
1021
    * ``bzrlib.tsort.merge_sorted`` now accepts ``generate_revnos``. This
 
1022
      parameter will cause it to add another column to its output, which
 
1023
      contains the dotted-decimal revno for each revision, as a tuple.
 
1024
      (Robert Collins)
 
1025
 
 
1026
    * ``LogFormatter.show_merge`` is deprecated in favour of
 
1027
      ``LogFormatter.show_merge_revno``. (Robert Collins)
 
1028
 
 
1029
  BUG FIXES:
 
1030
 
 
1031
    * Avoid circular imports by creating a deprecated function for
 
1032
      ``bzrlib.tree.RevisionTree``. Callers should have been using
 
1033
      ``bzrlib.revisontree.RevisionTree`` anyway. (John Arbash Meinel,
 
1034
      #63360, #66349)
 
1035
 
 
1036
    * Don't use ``socket.MSG_WAITALL`` as it doesn't exist on all
 
1037
      platforms. (Martin Pool, #66356)
 
1038
 
 
1039
    * Don't require ``Content-Type`` in range responses. Assume they are a
 
1040
      single range if ``Content-Type`` does not exist.
 
1041
      (John Arbash Meinel, #62473)
 
1042
 
 
1043
    * bzr branch/pull no longer complain about progress bar cleanup when
 
1044
      interrupted during fetch.  (Aaron Bentley, #54000)
 
1045
 
 
1046
    * ``WorkingTree.set_parent_trees()`` uses the trees to directly write
 
1047
      the basis inventory, rather than going through the repository. This
 
1048
      allows us to have 1 inventory read, and 2 inventory writes when
 
1049
      committing a new tree. (John Arbash Meinel)
 
1050
 
 
1051
    * When reverting, files that are not locally modified that do not exist
 
1052
      in the target are deleted, not just unversioned (Aaron Bentley)
 
1053
 
 
1054
    * When trying to acquire a lock, don't fail immediately. Instead, try
 
1055
      a few times (up to 1 hour) before timing out. Also, report why the
 
1056
      lock is unavailable (John Arbash Meinel, #43521, #49556)
 
1057
 
 
1058
    * Leave HttpTransportBase daughter classes decides how they
 
1059
      implement cloning. (Vincent Ladeuil, #61606)
 
1060
 
 
1061
    * diff3 does not indicate conflicts on clean merge. (Aaron Bentley)
 
1062
 
 
1063
    * If a commit fails, the commit message is stored in a file at the root of
 
1064
      the tree for later commit. (Cheuksan Edward Wang, Stefan Metzmacher,
 
1065
      #32054)
 
1066
 
 
1067
  TESTING:
 
1068
 
 
1069
    * New test base class TestCaseWithMemoryTransport offers memory-only
 
1070
      testing facilities: its not suitable for tests that need to mutate disk
 
1071
      state, but most tests should not need that and should be converted to
 
1072
      TestCaseWithMemoryTransport. (Robert Collins)
 
1073
 
 
1074
    * ``TestCase.make_branch_and_memory_tree`` now takes a format
 
1075
      option to set the BzrDir, Repository and Branch formats of the
 
1076
      created objects. (Robert Collins, John Arbash Meinel)
 
1077
 
 
1078
bzr 0.11  2006-10-02
 
1079
 
 
1080
    * Smart server transport test failures on windows fixed. (Lukáš Lalinský).
 
1081
 
 
1082
bzr 0.11rc2  2006-09-27
 
1083
 
 
1084
  BUG FIXES:
 
1085
 
 
1086
    * Test suite hangs on windows fixed. (Andrew Bennets, Alexander Belchenko).
 
1087
    
 
1088
    * Commit performance regression fixed. (Aaron Bentley, Robert Collins, John
 
1089
      Arbash Meinel).
 
1090
 
 
1091
bzr 0.11rc1  2006-09-25
 
1092
 
 
1093
  IMPROVEMENTS:
 
1094
 
 
1095
    * Knit files now wait to create their contents until the first data is
 
1096
      added. The old code used to create an empty .knit and a .kndx with just
 
1097
      the header. However, this caused a lot of extra round trips over sftp.
 
1098
      This can change the time for ``bzr push`` to create a new remote branch
 
1099
      from 160s down to 100s. This also affects ``bzr commit`` performance when
 
1100
      adding new files, ``bzr commit`` on a new kernel-like tree drops from 50s
 
1101
      down to 40s (John Arbash Meinel, #44692)
 
1102
 
 
1103
    * When an entire subtree has been deleted, commit will now report that
 
1104
      just the top of the subtree has been deleted, rather than reporting
 
1105
      all the individual items. (Robert Collins)
 
1106
 
 
1107
    * Commit performs one less XML parse. (Robert Collins)
 
1108
 
 
1109
    * ``bzr checkout`` now operates on readonly branches as well
 
1110
      as readwrite branches. This fixes bug #39542. (Robert Collins)
 
1111
 
 
1112
    * ``bzr bind`` no longer synchronises history with the master branch.
 
1113
      Binding should be followed by an update or push to synchronise the 
 
1114
      two branches. This is closely related to the fix for bug #39542.
 
1115
      (Robert Collins)
 
1116
 
 
1117
    * ``bzrlib.lazy_import.lazy_import`` function to create on-demand 
 
1118
      objects.  This allows all imports to stay at the global scope, but
 
1119
      modules will not actually be imported if they are not used.
 
1120
      (John Arbash Meinel)
 
1121
 
 
1122
    * Support ``bzr://`` and ``bzr+ssh://`` urls to work with the new RPC-based
 
1123
      transport which will be used with the upcoming high-performance smart
 
1124
      server. The new command ``bzr serve`` will invoke bzr in server mode,
 
1125
      which processes these requests. (Andrew Bennetts, Robert Collins, Martin
 
1126
      Pool)
 
1127
 
 
1128
    * New command ``bzr version-info`` which can be used to get a summary
 
1129
      of the current state of the tree. This is especially useful as part
 
1130
      of a build commands. See ``doc/version_info.txt`` for more information 
 
1131
      (John Arbash Meinel)
 
1132
 
 
1133
  BUG FIXES:
 
1134
 
 
1135
    * ``'bzr inventory [FILE...]'`` allows restricting the file list to a
 
1136
      specific set of files. (John Arbash Meinel, #3631)
 
1137
 
 
1138
    * Don't abort when annotating empty files (John Arbash Meinel, #56814)
 
1139
 
 
1140
    * Add ``Stanza.to_unicode()`` which can be passed to another Stanza
 
1141
      when nesting stanzas. Also, add ``read_stanza_unicode`` to handle when
 
1142
      reading a nested Stanza. (John Arbash Meinel)
 
1143
 
 
1144
    * Transform._set_mode() needs to stat the right file. 
 
1145
      (John Arbash Meinel, #56549)
 
1146
 
 
1147
    * Raise WeaveFormatError rather than StopIteration when trying to read
 
1148
      an empty Weave file. (John Arbash Meinel, #46871)
 
1149
 
 
1150
    * Don't access e.code for generic URLErrors, only HTTPErrors have .code.
 
1151
      (Vincent Ladeuil, #59835)
 
1152
 
 
1153
    * Handle boundary="" lines properly to allow access through a Squid proxy.
 
1154
      (John Arbash Meinel, #57723)
 
1155
 
 
1156
    * revert now removes newly-added directories (Aaron Bentley, #54172)
 
1157
 
 
1158
    * ``bzr upgrade sftp://`` shouldn't fail to upgrade v6 branches if there 
 
1159
      isn't a working tree. (David Allouche, #40679)
 
1160
 
 
1161
    * Give nicer error messages when a user supplies an invalid --revision
 
1162
      parameter. (John Arbash Meinel, #55420)
 
1163
 
 
1164
    * Handle when LANG is not recognized by python. Emit a warning, but
 
1165
      just revert to using 'ascii'. (John Arbash Meinel, #35392)
 
1166
 
 
1167
    * Don't use ``preexec_fn`` on win32, as it is not supported by subprocess.
 
1168
      (John Arbash Meinel)
 
1169
 
 
1170
    * Skip specific tests when the dependencies aren't met. This includes
 
1171
      some ``setup.py`` tests when ``python-dev`` is not available, and
 
1172
      some tests that depend on paramiko. (John Arbash Meinel, Mattheiu Moy)
 
1173
 
 
1174
    * Fallback to Paramiko properly, if no ``ssh`` executable exists on
 
1175
      the system. (Andrew Bennetts, John Arbash Meinel)
 
1176
 
 
1177
    * ``Branch.bind(other_branch)`` no longer takes a write lock on the
 
1178
      other branch, and will not push or pull between the two branches.
 
1179
      API users will need to perform a push or pull or update operation if they
 
1180
      require branch synchronisation to take place. (Robert Collins, #47344)
 
1181
 
 
1182
    * When creating a tarball or zipfile export, export unicode names as utf-8
 
1183
      paths. This may not work perfectly on all platforms, but has the best
 
1184
      chance of working in the common case. (John Arbash Meinel, #56816)
 
1185
 
 
1186
    * When committing, only files that exist in working tree or basis tree
 
1187
      may be specified (Aaron Bentley, #50793)
 
1188
 
 
1189
  PORTABILITY:
 
1190
 
 
1191
    * Fixes to run on Python 2.5 (Brian M. Carlson, Martin Pool, Marien Zwart)
 
1192
 
 
1193
  INTERNALS:
 
1194
 
 
1195
    * TestCaseInTempDir now creates a separate directory for HOME, rather
 
1196
      than having HOME set to the same location as the working directory.
 
1197
      (John Arbash Meinel)
 
1198
 
 
1199
    * ``run_bzr_subprocess()`` can take an optional ``env_changes={}`` parameter,
 
1200
      which will update os.environ inside the spawned child. It also can
 
1201
      take a ``universal_newlines=True``, which helps when checking the output
 
1202
      of the command. (John Arbash Meinel)
 
1203
 
 
1204
    * Refactor SFTP vendors to allow easier re-use when ssh is used. 
 
1205
      (Andrew Bennetts)
 
1206
 
 
1207
    * ``Transport.list_dir()`` and ``Transport.iter_files_recursive()`` should always
 
1208
      return urlescaped paths. This is now tested (there were bugs in a few
 
1209
      of the transports) (Andrew Bennetts, David Allouche, John Arbash Meinel)
 
1210
 
 
1211
    * New utility function ``symbol_versioning.deprecation_string``. Returns the
 
1212
      formatted string for a callable, deprecation format pair. (Robert Collins)
 
1213
 
 
1214
    * New TestCase helper applyDeprecated. This allows you to call a callable
 
1215
      which is deprecated without it spewing to the screen, just by supplying
 
1216
      the deprecation format string issued for it. (Robert Collins)
 
1217
 
 
1218
    * Transport.append and Transport.put have been deprecated in favor of
 
1219
      ``.append_bytes``, ``.append_file``, ``.put_bytes``, and
 
1220
      ``.put_file``. This removes the ambiguity in what type of object the
 
1221
      functions take.  ``Transport.non_atomic_put_{bytes,file}`` has also
 
1222
      been added. Which works similarly to ``Transport.append()`` except for
 
1223
      SFTP, it doesn't have a round trip when opening the file. Also, it
 
1224
      provides functionality for creating a parent directory when trying
 
1225
      to create a file, rather than raise NoSuchFile and forcing the
 
1226
      caller to repeat their request.
 
1227
      (John Arbash Meinel)
 
1228
 
 
1229
    * WorkingTree has a new api ``unversion`` which allow the unversioning of
 
1230
      entries by their file id. (Robert Collins)
 
1231
 
 
1232
    * ``WorkingTree.pending_merges`` is deprecated.  Please use the
 
1233
      ``get_parent_ids`` (introduced in 0.10) method instead. (Robert Collins)
 
1234
 
 
1235
    * WorkingTree has a new ``lock_tree_write`` method which locks the branch for
 
1236
      read rather than write. This is appropriate for actions which only need
 
1237
      the branch data for reference rather than mutation. A new decorator
 
1238
      ``needs_tree_write_lock`` is provided in the workingtree module. Like the
 
1239
      ``needs_read_lock`` and ``needs_write_lock`` decorators this allows static 
 
1240
      declaration of the locking requirements of a function to ensure that
 
1241
      a lock is taken out for casual scripts. (Robert Collins, #54107)
 
1242
 
 
1243
    * All WorkingTree methods which write to the tree, but not to the branch
 
1244
      have been converted to use ``needs_tree_write_lock`` rather than 
 
1245
      ``needs_write_lock``. Also converted is the revert, conflicts and tree
 
1246
      transform modules. This provides a modest performance improvement on 
 
1247
      metadir style trees, due to the reduce lock-acquisition, and a more
 
1248
      significant performance improvement on lightweight checkouts from 
 
1249
      remote branches, where trivial operations used to pay a significant 
 
1250
      penalty. It also provides the basis for allowing readonly checkouts.
 
1251
      (Robert Collins)
 
1252
 
 
1253
    * Special case importing the standard library 'copy' module. This shaves
 
1254
      off 40ms of startup time, while retaining compatibility. See:
 
1255
      ``bzrlib/inspect_for_copy.py`` for more details. (John Arbash Meinel)
 
1256
 
 
1257
    * WorkingTree has a new parent class MutableTree which represents the 
 
1258
      specialisations of Tree which are able to be altered. (Robert Collins)
 
1259
 
 
1260
    * New methods mkdir and ``put_file_bytes_non_atomic`` on MutableTree that
 
1261
      mutate the tree and its contents. (Robert Collins)
 
1262
 
 
1263
    * Transport behaviour at the root of the URL is now defined and tested.
 
1264
      (Andrew Bennetts, Robert Collins)
 
1265
 
 
1266
  TESTING:
 
1267
 
 
1268
    * New test helper classs MemoryTree. This is typically accessed via
 
1269
      ``self.make_branch_and_memory_tree()`` in test cases. (Robert Collins)
 
1270
      
 
1271
    * Add ``start_bzr_subprocess`` and ``stop_bzr_subprocess`` to allow test
 
1272
      code to continue running concurrently with a subprocess of bzr.
 
1273
      (Andrew Bennetts, Robert Collins)
 
1274
 
 
1275
    * Add a new method ``Transport.get_smart_client()``. This is provided to
 
1276
      allow upgrades to a richer interface than the VFS one provided by
 
1277
      Transport. (Andrew Bennetts, Martin Pool)
 
1278
 
 
1279
bzr 0.10  2006-08-29
 
1280
  
 
1281
  IMPROVEMENTS:
 
1282
    * 'merge' now takes --uncommitted, to apply uncommitted changes from a
 
1283
      tree.  (Aaron Bentley)
 
1284
  
 
1285
    * 'bzr add --file-ids-from' can be used to specify another path to use
 
1286
      for creating file ids, rather than generating all new ones. Internally,
 
1287
      the 'action' passed to ``smart_add_tree()`` can return ``file_ids`` that
 
1288
      will be used, rather than having bzrlib generate new ones.
 
1289
      (John Arbash Meinel, #55781)
 
1290
 
 
1291
    * ``bzr selftest --benchmark`` now allows a ``--cache-dir`` parameter.
 
1292
      This will cache some of the intermediate trees, and decrease the
 
1293
      setup time for benchmark tests. (John Arbash Meinel)
 
1294
 
 
1295
    * Inverse forms are provided for all boolean options.  For example,
 
1296
      --strict has --no-strict, --no-recurse has --recurse (Aaron Bentley)
 
1297
 
 
1298
    * Serialize out Inventories directly, rather than using ElementTree.
 
1299
      Writing out a kernel sized inventory drops from 2s down to ~350ms.
 
1300
      (Robert Collins, John Arbash Meinel)
 
1301
 
 
1302
  BUG FIXES:
 
1303
 
 
1304
    * Help diffutils 2.8.4 get along with binary tests (Marien Zwart: #57614)
 
1305
 
 
1306
    * Change LockDir so that if the lock directory doesn't exist when
 
1307
      ``lock_write()`` is called, an attempt will be made to create it.
 
1308
      (John Arbash Meinel, #56974)
 
1309
 
 
1310
    * ``bzr uncommit`` preserves pending merges. (John Arbash Meinel, #57660)
 
1311
 
 
1312
    * Active FTP transport now works as intended. (ghozzy, #56472)
 
1313
 
 
1314
    * Really fix mutter() so that it won't ever raise a UnicodeError.
 
1315
      It means it is possible for ~/.bzr.log to contain non UTF-8 characters.
 
1316
      But it is a debugging log, not a real user file.
 
1317
      (John Arbash Meinel, #56947, #53880)
 
1318
 
 
1319
    * Change Command handle to allow Unicode command and options.
 
1320
      At present we cannot register Unicode command names, so we will get
 
1321
      BzrCommandError('unknown command'), or BzrCommandError('unknown option')
 
1322
      But that is better than a UnicodeError + a traceback.
 
1323
      (John Arbash Meinel, #57123)
 
1324
 
 
1325
    * Handle TZ=UTC properly when reading/writing revisions.
 
1326
      (John Arbash Meinel, #55783, #56290)
 
1327
 
 
1328
    * Use ``GPG_TTY`` to allow gpg --cl to work with gpg-agent in a pipeline,
 
1329
      (passing text to sign in on stdin). (John Arbash Meinel, #54468)
 
1330
 
 
1331
    * External diff does the right thing for binaries even in foreign 
 
1332
      languages. (John Arbash Meinel, #56307)
 
1333
 
 
1334
    * Testament handles more cases when content is unicode. Specific bug was
 
1335
      in handling of revision properties.
 
1336
      (John Arbash Meinel, Holger Krekel, #54723)
 
1337
 
 
1338
    * The bzr selftest was failing on installed versions due to a bug in a new
 
1339
      test helper. (John Arbash Meinel, Robert Collins, #58057)
 
1340
 
 
1341
  INTERNALS:
 
1342
 
 
1343
    * ``bzrlib.cache_utf8`` contains ``encode()`` and ``decode()`` functions
 
1344
      which can be used to cache the conversion between utf8 and Unicode.
 
1345
      Especially helpful for some of the knit annotation code, which has to
 
1346
      convert revision ids to utf8 to annotate lines in storage.
 
1347
      (John Arbash Meinel)
 
1348
 
 
1349
    * ``setup.py`` now searches the filesystem to find all packages which
 
1350
      need to be installed. This should help make the life of packagers
 
1351
      easier. (John Arbash Meinel)
 
1352
 
 
1353
bzr 0.9.0  2006-08-11
 
1354
 
 
1355
  SURPRISES:
 
1356
 
 
1357
   * The hard-coded built-in ignore rules have been removed. There are
 
1358
     now two rulesets which are enforced. A user global one in 
 
1359
     ``~/.bazaar/ignore`` which will apply to every tree, and the tree
 
1360
     specific one '.bzrignore'.
 
1361
     ``~/.bazaar/ignore`` will be created if it does not exist, but with
 
1362
     a more conservative list than the old default.
 
1363
     This fixes bugs with default rules being enforced no matter what. 
 
1364
     The old list of ignore rules from bzr is available by
 
1365
     running 'bzr ignore --old-default-rules'.
 
1366
     (Robert Collins, Martin Pool, John Arbash Meinel)
 
1367
 
 
1368
   * 'branches.conf' has been changed to 'locations.conf', since it can apply
 
1369
     to more locations than just branch locations.
 
1370
     (Aaron Bentley)
 
1371
   
 
1372
  IMPROVEMENTS:
 
1373
 
 
1374
   * The revision specifier "revno:" is extended to accept the syntax
 
1375
     revno:N:branch. For example,
 
1376
     revno:42:http://bazaar-vcs.org/bzr/bzr.dev/ means revision 42 in
 
1377
     bzr.dev.  (Matthieu Moy)
 
1378
 
 
1379
   * Tests updates to ensure proper URL handling, UNICODE support, and
 
1380
     proper printing when the user's terminal encoding cannot display 
 
1381
     the path of a file that has been versioned.
 
1382
     ``bzr branch`` can take a target URL rather than only a local directory.
 
1383
     ``Branch.get_parent()/set_parent()`` now save a relative path if possible,
 
1384
     and normalize the parent based on root, allowing access across
 
1385
     different transports. (John Arbash Meinel, Wouter van Heyst, Martin Pool)
 
1386
     (Malone #48906, #42699, #40675, #5281, #3980, #36363, #43689,
 
1387
     #42517, #42514)
4
1388
 
5
1389
   * On Unix, detect terminal width using an ioctl not just $COLUMNS.
6
1390
     Use terminal width for single-line logs from ``bzr log --line`` and
18
1402
   * 'bzr selftest' now shows a progress bar with the number of tests, and 
19
1403
     progress made. 'make check' shows tests in -v mode, to be more useful
20
1404
     for the PQM status window. (Robert Collins).
 
1405
     When using a progress bar, failed tests are printed out, rather than
 
1406
     being overwritten by the progress bar until the suite finishes.
 
1407
     (John Arbash Meinel)
21
1408
 
22
1409
   * 'bzr selftest --benchmark' will run a new benchmarking selftest.
23
1410
     'bzr selftest --benchmark --lsprof-timed' will use lsprofile to generate
38
1425
     ftp support has been improved, including support for supplying a
39
1426
     non-standard port. (John Arbash Meinel).
40
1427
 
41
 
   * ``log --line`` shows the revision number.  (#5162, Alexander Belchenko)
 
1428
   * 'bzr log --line' shows the revision number, and uses only the
 
1429
     first line of the log message (#5162, Alexander Belchenko;
 
1430
     Matthieu Moy)
 
1431
 
 
1432
   * 'bzr status' has had the --all option removed. The 'bzr ls' command
 
1433
     should be used to retrieve all versioned files. (Robert Collins)
 
1434
 
 
1435
   * 'bzr bundle OTHER/BRANCH' will create a bundle which can be sent
 
1436
     over email, and applied on the other end, while maintaining ancestry.
 
1437
     This bundle can be applied with either 'bzr merge' or 'bzr pull',
 
1438
     the same way you would apply another branch.
 
1439
     (John Arbash Meinel, Aaron Bentley)
 
1440
  
 
1441
   * 'bzr whoami' can now be used to set your identity from the command line,
 
1442
     for a branch or globally.  (Robey Pointer)
 
1443
 
 
1444
   * 'bzr checkout' now aliased to 'bzr co', and 'bzr annotate' to 'bzr ann'.
 
1445
     (Michael Ellerman)
 
1446
 
 
1447
   * 'bzr revert DIRECTORY' now reverts the contents of the directory as well.
 
1448
     (Aaron Bentley)
 
1449
 
 
1450
   * 'bzr get sftp://foo' gives a better error when paramiko is not present.
 
1451
     Also updates things like 'http+pycurl://' if pycurl is not present.
 
1452
     (John Arbash Meinel) (Malone #47821, #52204)
 
1453
 
 
1454
   * New env variable ``BZR_PROGRESS_BAR``, sets the default progress bar type.
 
1455
     Can be set to 'none' or 'dummy' to disable the progress bar, 'dots' or 
 
1456
     'tty' to create the respective type. (John Arbash Meinel, #42197, #51107)
 
1457
 
 
1458
   * Improve the help text for 'bzr diff' to explain what various options do.
 
1459
     (John Arbash Meinel, #6391)
 
1460
 
 
1461
   * 'bzr uncommit -r 10' now uncommits revisions 11.. rather than uncommitting
 
1462
     revision 10. This makes -r10 more in line with what other commands do.
 
1463
     'bzr uncommit' also now saves the pending merges of the revisions that
 
1464
     were removed. So it is safe to uncommit after a merge, fix something,
 
1465
     and commit again. (John Arbash Meinel, #32526, #31426)
 
1466
 
 
1467
   * 'bzr init' now also works on remote locations.
 
1468
     (Wouter van Heyst, #48904)
 
1469
 
 
1470
   * HTTP support has been updated. When using pycurl we now support 
 
1471
     connection keep-alive, which reduces dns requests and round trips.
 
1472
     And for both urllib and pycurl we support multi-range requests, 
 
1473
     which decreases the number of round-trips. Performance results for
 
1474
     ``bzr branch http://bazaar-vcs.org/bzr/bzr.dev/`` indicate
 
1475
     http branching is now 2-3x faster, and ``bzr pull`` in an existing 
 
1476
     branch is as much as 4x faster.
 
1477
     (Michael Ellerman, Johan Rydberg, John Arbash Meinel, #46768)
 
1478
 
 
1479
   * Performance improvements for sftp. Branching and pulling are now up to
 
1480
     2x faster. Utilize paramiko.readv() support for async requests if it
 
1481
     is available (paramiko > 1.6) (John Arbash Meinel)
42
1482
 
43
1483
  BUG FIXES:
44
1484
 
45
1485
    * Fix shadowed definition of TestLocationConfig that caused some 
46
 
      tests not to run.  (#32587, Erik Bågfors, Michael Ellerman, 
47
 
      Martin Pool)
 
1486
      tests not to run.
 
1487
      (Erik Bågfors, Michael Ellerman, Martin Pool, #32587)
 
1488
 
 
1489
    * Fix unnecessary requirement of sign-my-commits that it be run from
 
1490
      a working directory.  (Martin Pool, Robert Collins)
 
1491
 
 
1492
    * 'bzr push location' will only remember the push location if it succeeds
 
1493
      in connecting to the remote location. (John Arbash Meinel, #49742)
 
1494
 
 
1495
    * 'bzr revert' no longer toggles the executable bit on win32
 
1496
      (John Arbash Meinel, #45010)
 
1497
 
 
1498
    * Handle broken pipe under win32 correctly. (John Arbash Meinel)
 
1499
    
 
1500
    * sftp tests now work correctly on win32 if you have a newer paramiko
 
1501
      (John Arbash Meinel)
 
1502
 
 
1503
    * Cleanup win32 test suite, and general cleanup of places where
 
1504
      file handles were being held open. (John Arbash Meinel)
 
1505
 
 
1506
    * When specifying filenames for 'diff -r x..y', the name of the file in the
 
1507
      working directory can be used, even if its name is different in both x
 
1508
      and y.
 
1509
 
 
1510
    * File-ids containing single- or double-quotes are handled correctly by
 
1511
      push. (Aaron Bentley, #52227)
 
1512
 
 
1513
    * Normalize unicode filenames to ensure cross-platform consistency.
 
1514
      (John Arbash Meinel, #43689)
 
1515
 
 
1516
    * The argument parser can now handle '-' as an argument. Currently
 
1517
      no code interprets it specially (it is mostly handled as a file named 
 
1518
      '-'). But plugins, and future operations can use it.
 
1519
      (John Arbash meinel, #50984)
 
1520
 
 
1521
    * Bundles can properly read binary files with a plain '\r' in them.
 
1522
      (John Arbash Meinel, #51927)
 
1523
 
 
1524
    * Tuning ``iter_entries()`` to be more efficient (John Arbash Meinel, #5444)
 
1525
 
 
1526
    * Lots of win32 fixes (the test suite passes again).
 
1527
      (John Arbash Meinel, #50155)
 
1528
 
 
1529
    * Handle openbsd returning None for sys.getfilesystemencoding() (#41183) 
 
1530
 
 
1531
    * Support ftp APPE (append) to allow Knits to be used over ftp (#42592)
 
1532
 
 
1533
    * Removals are only committed if they match the filespec (or if there is
 
1534
      no filespec).  (#46635, Aaron Bentley)
 
1535
 
 
1536
    * smart-add recurses through all supplied directories 
 
1537
      (John Arbash Meinel, #52578)
 
1538
 
 
1539
    * Make the bundle reader extra lines before and after the bundle text.
 
1540
      This allows you to parse an email with the bundle inline.
 
1541
      (John Arbash Meinel, #49182)
 
1542
 
 
1543
    * Change the file id generator to squash a little bit more. Helps when
 
1544
      working with long filenames on windows. (Also helps for unicode filenames
 
1545
      not generating hidden files). (John Arbash Meinel, #43801)
 
1546
 
 
1547
    * Restore terminal mode on C-c while reading sftp password.  (#48923, 
 
1548
      Nicholas Allen, Martin Pool)
 
1549
 
 
1550
    * Timestamps are rounded to 1ms, and revision entries can be recreated
 
1551
      exactly. (John Arbash Meinel, Jamie Wilkinson, #40693)
 
1552
 
 
1553
    * Branch.base has changed to a URL, but ~/.bazaar/locations.conf should
 
1554
      use local paths, since it is user visible (John Arbash Meinel, #53653)
 
1555
 
 
1556
    * ``bzr status foo`` when foo was unversioned used to cause a full delta
 
1557
      to be generated (John Arbash Meinel, #53638)
 
1558
 
 
1559
    * When reading revision properties, an empty value should be considered
 
1560
      the empty string, not None (John Arbash Meinel, #47782)
 
1561
 
 
1562
    * ``bzr diff --diff-options`` can now handle binary files being changed.
 
1563
      Also, the output is consistent when --diff-options is not supplied.
 
1564
      (John Arbash Meinel, #54651, #52930)
 
1565
 
 
1566
    * Use the right suffixes for loading plugins (John Arbash Meinel, #51810)
 
1567
 
 
1568
    * Fix ``Branch.get_parent()`` to handle the case when the parent is not 
 
1569
      accessible (John Arbash Meinel, #52976)
48
1570
 
49
1571
  INTERNALS:
50
1572
 
52
1574
      them to reduce the threshold where  N^2 behaviour occurs in operations
53
1575
      like status. (Jan Hudec, Robert Collins).
54
1576
 
 
1577
    * Appending to ``bzrlib.DEFAULT_IGNORE`` is now deprecated. Instead, use
 
1578
      one of the add functions in bzrlib.ignores. (John Arbash Meinel)
 
1579
 
55
1580
    * 'bzr push' should only push the ancestry of the current revision, not
56
1581
      all of the history in the repository. This is especially important for
57
1582
      shared repositories. (John Arbash Meinel)
58
1583
 
 
1584
    * ``bzrlib.delta.compare_trees`` now iterates in alphabetically sorted order,
 
1585
      rather than randomly walking the inventories. (John Arbash Meinel)
 
1586
 
 
1587
    * Doctests are now run in temporary directories which are cleaned up when
 
1588
      they finish, rather than using special ScratchDir/ScratchBranch objects.
 
1589
      (Martin Pool)
 
1590
 
 
1591
    * Split ``check`` into separate methods on the branch and on the repository,
 
1592
      so that it can be specialized in ways that are useful or efficient for
 
1593
      different formats.  (Martin Pool, Robert Collins)
 
1594
 
 
1595
    * Deprecate ``Repository.all_revision_ids``; most methods don't really need
 
1596
      the global revision graph but only that part leading up to a particular
 
1597
      revision.  (Martin Pool, Robert Collins)
 
1598
 
 
1599
    * Add a BzrDirFormat ``control_formats`` list which allows for control formats
 
1600
      that do not use '.bzr' to store their data - i.e. '.svn', '.hg' etc.
 
1601
      (Robert Collins, Jelmer Vernooij).
 
1602
 
 
1603
    * ``bzrlib.diff.external_diff`` can be redirected to any file-like object.
 
1604
      Uses subprocess instead of spawnvp.
 
1605
      (James Henstridge, John Arbash Meinel, #4047, #48914)
 
1606
 
 
1607
    * New command line option '--profile-imports', which will install a custom
 
1608
      importer to log time to import modules and regex compilation time to 
 
1609
      sys.stderr (John Arbash Meinel)
 
1610
 
 
1611
    * 'EmptyTree' is now deprecated, please use ``repository.revision_tree(None)``
 
1612
      instead. (Robert Collins)
 
1613
 
 
1614
    * "RevisionTree" is now in bzrlib/revisiontree.py. (Robert Collins)
 
1615
 
59
1616
bzr 0.8.2  2006-05-17
60
1617
  
61
1618
  BUG FIXES:
74
1631
 
75
1632
    * Separate functionality from assert statements as they are skipped in
76
1633
      optimized mode of python. Add the same check to pending merges.
77
 
      (#44443, Olaf Conradi)
 
1634
      (Olaf Conradi, #44443)
78
1635
 
79
1636
  CHANGES:
80
1637
 
81
1638
    * Do not show the None revision in output of bzr ancestry. (Olaf Conradi)
82
1639
 
83
1640
    * Add info on standalone branches without a working tree.
84
 
      (#44155, Olaf Conradi)
 
1641
      (Olaf Conradi, #44155)
85
1642
 
86
 
    * Fix bug in knits when raising InvalidRevisionId. (#44284, Olaf Conradi)
 
1643
    * Fix bug in knits when raising InvalidRevisionId. (Olaf Conradi, #44284)
87
1644
 
88
1645
  CHANGES:
89
1646
 
90
1647
    * Make editor invocation comply with Debian Policy. First check
91
1648
      environment variables VISUAL and EDITOR, then try editor from
92
1649
      alternatives system. If that all fails, fall back to the pre-defined
93
 
      list of editors. (#42904, Olaf Conradi)
 
1650
      list of editors. (Olaf Conradi, #42904)
94
1651
 
95
1652
  NEW FEATURES:
96
1653
 
100
1657
 
101
1658
  INTERNALS:
102
1659
 
103
 
    * New public api in InventoryEntry - 'describe_change(old, new)' which
 
1660
    * New public api in InventoryEntry - ``describe_change(old, new)`` which
104
1661
      provides a human description of the changes between two old and
105
1662
      new. (Robert Collins, Martin Pool)
106
1663
 
149
1706
  IMPROVEMENTS:
150
1707
 
151
1708
    * Sftp paths can now be relative, or local, according to the lftp
152
 
      convention. Paths now take the form:
153
 
      sftp://user:pass@host:port/~/relative/path
154
 
      or
155
 
      sftp://user:pass@host:port/absolute/path
 
1709
      convention. Paths now take the form::
 
1710
 
 
1711
          sftp://user:pass@host:port/~/relative/path
 
1712
          or
 
1713
          sftp://user:pass@host:port/absolute/path
156
1714
 
157
1715
    * The FTP transport now tries to reconnect after a temporary
158
1716
      failure. ftp put is made atomic. (Matthieu Moy)
161
1719
      reuses them to avoid multiple connections to the same host (like
162
1720
      sftp did). (Daniel Silverstone)
163
1721
 
164
 
    * The bzr_man.py file has been removed. To create the man page now,
165
 
      use ./generate_docs.py man. The new program can also create other files.
166
 
      Run "python generate_docs.py --help" for usage information. (Hans
167
 
      Ulrich Niedermann & James Blackwell).
 
1722
    * The ``bzr_man.py`` file has been removed. To create the man page now,
 
1723
      use ``./generate_docs.py man``. The new program can also create other files.
 
1724
      Run ``python generate_docs.py --help`` for usage information.
 
1725
      (Hans Ulrich Niedermann & James Blackwell).
168
1726
 
169
 
    * Man Page now gives full help (James Blackwell). Help also updated to 
170
 
      reflect user config now being stored in .bazaar (Hans Ulrich
171
 
      Niedermann)
 
1727
    * Man Page now gives full help (James Blackwell).
 
1728
      Help also updated to reflect user config now being stored in .bazaar
 
1729
      (Hans Ulrich Niedermann)
172
1730
 
173
1731
    * It's now possible to set aliases in bazaar.conf (Erik Bågfors)
174
1732
 
175
1733
    * Pull now accepts a --revision argument (Erik Bågfors)
176
1734
 
177
 
    * 'bzr re-sign' now allows multiple revisions to be supplied on the command
178
 
      line. You can now use the following command to sign all of your old commits.
 
1735
    * ``bzr re-sign`` now allows multiple revisions to be supplied on the command
 
1736
      line. You can now use the following command to sign all of your old
 
1737
      commits::
 
1738
 
179
1739
        find .bzr/revision-store// -name my@email-* \
180
1740
          | sed 's/.*\/\/..\///' \
181
1741
          | xargs bzr re-sign
252
1812
 
253
1813
    * Add --revision option to 'annotate' command.  (Olaf Conradi)
254
1814
 
255
 
    * Add --revision option to 'annotate' command.  (Olaf Conradi)
256
 
 
257
1815
    * If bzr shows an unexpected revision-history after pulling (perhaps due
258
1816
      to a reweave) it can now be corrected by 'bzr reconcile'.
259
1817
      (Robert Collins)
263
1821
    * Commit is now verbose by default, and shows changed filenames and the 
264
1822
      new revision number.  (Robert Collins, Martin Pool)
265
1823
 
266
 
    * Unify 'mv', 'move', 'rename'.  (#5379, Matthew Fuller)
 
1824
    * Unify 'mv', 'move', 'rename'.  (Matthew Fuller, #5379)
267
1825
 
268
 
    * 'bzr -h' shows help.  (#35940, Martin Pool, Ian Bicking)
 
1826
    * 'bzr -h' shows help.  (Martin Pool, Ian Bicking, #35940)
269
1827
 
270
1828
    * Make 'pull' and 'push' remember location on failure using --remember.
271
1829
      (Olaf Conradi)
291
1849
 
292
1850
    * Using Tree Transform for merge, revert, tree-building
293
1851
 
294
 
    * WorkingTree.create, Branch.create, WorkingTree.create_standalone,
295
 
      Branch.initialize are now deprecated. Please see BzrDir.create_* for
 
1852
    * WorkingTree.create, Branch.create, ``WorkingTree.create_standalone``,
 
1853
      Branch.initialize are now deprecated. Please see ``BzrDir.create_*`` for
296
1854
      replacement API's. (Robert Collins)
297
1855
 
298
1856
    * New BzrDir class represents the .bzr control directory and manages
302
1860
      Repository actions and allows for clean selection of optimised code
303
1861
      paths. (Robert Collins)
304
1862
 
305
 
    * bzrlib.fetch.fetch and bzrlib.fetch.greedy_fetch are now deprecated,
306
 
      please use 'branch.fetch' or 'repository.fetch' depending on your
307
 
      needs. (Robert Collins)
 
1863
    * ``bzrlib.fetch.fetch`` and ``bzrlib.fetch.greedy_fetch`` are now
 
1864
      deprecated, please use ``branch.fetch`` or ``repository.fetch``
 
1865
      depending on your needs. (Robert Collins)
308
1866
 
309
 
    * deprecated methods now have a 'is_deprecated' flag on them that can
 
1867
    * deprecated methods now have a ``is_deprecated`` flag on them that can
310
1868
      be checked, if you need to determine whether a given callable is 
311
1869
      deprecated at runtime. (Robert Collins)
312
1870
 
313
1871
    * Progress bars are now nested - see
314
 
      bzrlib.ui.ui_factory.nested_progress_bar. (Robert Collins, Robey Pointer)
 
1872
      ``bzrlib.ui.ui_factory.nested_progress_bar``.
 
1873
      (Robert Collins, Robey Pointer)
315
1874
 
316
 
    * New API call get_format_description() for each type of format.
 
1875
    * New API call ``get_format_description()`` for each type of format.
317
1876
      (Olaf Conradi)
318
1877
 
319
 
    * Changed branch.set_parent() to accept None to remove parent.
 
1878
    * Changed ``branch.set_parent()`` to accept None to remove parent.
320
1879
      (Olaf Conradi)
321
1880
 
322
1881
    * Deprecated BzrError AmbiguousBase.  (Olaf Conradi)
323
1882
 
324
1883
    * WorkingTree.branch is now a read only property.  (Robert Collins)
325
1884
 
326
 
    * bzrlib.ui.text.TextUIFactory now accepts a bar_type parameter which
 
1885
    * bzrlib.ui.text.TextUIFactory now accepts a ``bar_type`` parameter which
327
1886
      can be None or a factory that will create a progress bar. This is
328
1887
      useful for testing or for overriding the bzrlib.progress heuristic.
329
1888
      (Robert Collins)
330
1889
 
331
 
    * New API method get_physical_lock_status() to query locks present on a
 
1890
    * New API method ``get_physical_lock_status()`` to query locks present on a
332
1891
      transport.  (Olaf Conradi)
333
1892
 
334
1893
    * Repository.reconcile now takes a thorough keyword parameter to allow
335
1894
      requesting an indepth reconciliation, rather than just a data-loss 
336
1895
      check. (Robert Collins)
337
1896
 
338
 
    * bzrlib.ui.ui_factory protocol now supports 'get_boolean' to prompt
 
1897
    * ``bzrlib.ui.ui_factory protocol`` now supports ``get_boolean`` to prompt
339
1898
      the user for yes/no style input. (Robert Collins)
340
1899
 
341
1900
  TESTING:
343
1902
    * SFTP tests now shortcut the SSH negotiation, reducing test overhead
344
1903
      for testing SFTP protocol support. (Robey Pointer)
345
1904
 
346
 
    * Branch formats are now tested once per implementation (see bzrlib.
347
 
      tests.branch_implementations. This is analagous to the transport
 
1905
    * Branch formats are now tested once per implementation (see ``bzrlib.
 
1906
      tests.branch_implementations``. This is analagous to the transport
348
1907
      interface tests, and has been followed up with working tree,
349
1908
      repository and BzrDir tests. (Robert Collins)
350
1909
 
360
1919
 
361
1920
    * Move test case for uncommit to blackbox tests.  (Olaf Conradi)
362
1921
 
363
 
    * run_bzr and run_bzr_captured now accept a 'stdin="foo"' parameter which
364
 
      will provide String("foo") to the command as its stdin.
 
1922
    * ``run_bzr`` and ``run_bzr_captured`` now accept a 'stdin="foo"'
 
1923
      parameter which will provide String("foo") to the command as its stdin.
365
1924
 
366
1925
bzr 0.7 2006-01-09
367
1926
 
375
1934
      versioned directories, now use "bzr inventory --kind directory".  
376
1935
      (Johan Rydberg)
377
1936
 
378
 
    * Under Windows configuration directory is now %APPDATA%\bazaar\2.0
 
1937
    * Under Windows configuration directory is now ``%APPDATA%\bazaar\2.0``
379
1938
      by default. (John Arbash Meinel)
380
1939
 
381
 
    * The parent of Bzr configuration directory can be set by BZR_HOME
382
 
      environment variable. Now the path for it is searched in BZR_HOME, then
383
 
      in HOME. Under Windows the order is: BZR_HOME, APPDATA (usually
384
 
      points to C:\Documents and Settings\User Name\Application Data), HOME.
385
 
      (John Arbash Meinel)
 
1940
    * The parent of Bzr configuration directory can be set by ``BZR_HOME``
 
1941
      environment variable. Now the path for it is searched in ``BZR_HOME``,
 
1942
      then in HOME. Under Windows the order is: ``BZR_HOME``, ``APPDATA``
 
1943
      (usually points to ``C:\Documents and Settings\User Name\Application Data``),
 
1944
      ``HOME``. (John Arbash Meinel)
386
1945
 
387
1946
    * Plugins with the same name in different directories in the bzr plugin
388
1947
      path are no longer loaded: only the first successfully loaded one is
427
1986
    * Added branch nicks, new nick command, printing them in log output. 
428
1987
      (Aaron Bentley)
429
1988
 
430
 
    * If $BZR_PDB is set, pop into the debugger when an uncaught exception 
 
1989
    * If ``$BZR_PDB`` is set, pop into the debugger when an uncaught exception 
431
1990
      occurs.  (Martin Pool)
432
1991
 
433
1992
    * Accept 'bzr resolved' (an alias for 'bzr resolve'), as this is
436
1995
    * New ftp transport support (on ftplib), for ftp:// and aftp:// 
437
1996
      URLs.  (Daniel Silverstone)
438
1997
 
439
 
    * Commit editor temporary files now start with 'bzr_log.', to allow 
 
1998
    * Commit editor temporary files now start with ``bzr_log.``, to allow 
440
1999
      text editors to match the file name and set up appropriate modes or 
441
2000
      settings.  (Magnus Therning)
442
2001
 
451
2010
      revno should be printed.  (Michael Ellerman)
452
2011
 
453
2012
    * bzr cat defaults to printing the last version of the file.  
454
 
      (#3632, Matthieu Moy)
 
2013
      (Matthieu Moy, #3632)
455
2014
 
456
2015
    * New global option 'bzr --lsprof COMMAND' runs bzr under the lsprof 
457
2016
      profiler.  (Denys Duchier)
495
2054
    * Fix for sftp transport under windows when using interactive auth
496
2055
 
497
2056
    * Show files which are both renamed and modified as such in 'bzr 
498
 
      status' output.  (#4503, Daniel Silverstone)
 
2057
      status' output.  (Daniel Silverstone, #4503)
499
2058
 
500
2059
    * Make annotate cope better with revisions committed without a valid 
501
2060
      email address.  (Marien Zwart)
502
2061
 
503
 
    * Fix representation of tab characters in commit messages.  (Harald 
504
 
      Meland)
 
2062
    * Fix representation of tab characters in commit messages.
 
2063
      (Harald Meland)
505
2064
 
506
 
    * List of plugin directories in BZR_PLUGIN_PATH environment variable is
 
2065
    * List of plugin directories in ``BZR_PLUGIN_PATH`` environment variable is
507
2066
      now parsed properly under Windows. (Alexander Belchenko)
508
2067
 
509
2068
    * Show number of revisions pushed/pulled/merged. (Robey Pointer)
511
2070
    * Keep a cached copy of the basis inventory to speed up operations 
512
2071
      that need to refer to it.  (Johan Rydberg, Martin Pool)
513
2072
 
514
 
    * Fix bugs in bzr status display of non-ascii characters.  (Martin 
515
 
      Pool)
 
2073
    * Fix bugs in bzr status display of non-ascii characters.
 
2074
      (Martin Pool)
516
2075
 
517
 
    * Remove Makefile.in from default ignore list.  (#6413, Tollef Fog 
518
 
      Heen, Martin Pool)
 
2076
    * Remove Makefile.in from default ignore list.
 
2077
      (Tollef Fog Heen, Martin Pool, #6413)
519
2078
 
520
2079
    * Fix failure in 'bzr added'.  (Nathan McCallum, Martin Pool)
521
2080
 
530
2089
 
531
2090
    * Make tests work even if HOME is not set (Aaron Bentley)
532
2091
 
533
 
    * Updated build_tree to use fixed line-endings for tests which read 
 
2092
    * Updated ``build_tree`` to use fixed line-endings for tests which read 
534
2093
      the file cotents and compare. Make some tests use this to pass under
535
2094
      Windows. (John Arbash Meinel)
536
2095
 
543
2102
 
544
2103
    * Blackbox tests are maintained within the bzrlib.tests.blackbox directory.
545
2104
      If adding a new test script please add that to
546
 
      bzrlib.tests.blackbox.__init__. (Robert Collins)
 
2105
      ``bzrlib.tests.blackbox.__init__``. (Robert Collins)
547
2106
 
548
2107
    * Much better error message if one of the test suites can't be 
549
2108
      imported.  (Martin Pool)
570
2129
      see bzrlib.transport.TransportTestProviderAdapter() for this.
571
2130
      (Robert Collins).
572
2131
 
573
 
    * TestCase.build_tree uses the transport interface to build trees, pass
574
 
      in a transport parameter to give it an existing connection.
 
2132
    * ``TestCase.build_tree`` uses the transport interface to build trees,
 
2133
      pass in a transport parameter to give it an existing connection.
575
2134
      (Robert Collins).
576
2135
 
577
2136
  INTERNALS:
579
2138
    * WorkingTree.pull has been split across Branch and WorkingTree,
580
2139
      to allow Branch only pulls. (Robert Collins)
581
2140
 
582
 
    * commands.display_command now returns the result of the decorated 
 
2141
    * ``commands.display_command`` now returns the result of the decorated 
583
2142
      function. (Robert Collins)
584
2143
 
585
 
    * LocationConfig now has a set_user_option(key, value) call to save
 
2144
    * LocationConfig now has a ``set_user_option(key, value)`` call to save
586
2145
      a setting in its matching location section (a new one is created
587
2146
      if needed). (Robert Collins)
588
2147
 
589
 
    * Branch has two new methods, get_push_location and set_push_location
590
 
      to respectively, get and set the push location. (Robert Collins)
 
2148
    * Branch has two new methods, ``get_push_location`` and
 
2149
      ``set_push_location`` to respectively, get and set the push location.
 
2150
      (Robert Collins)
591
2151
 
592
 
    * commands.register_command now takes an optional flag to signal that
 
2152
    * ``commands.register_command`` now takes an optional flag to signal that
593
2153
      the registrant is planning to decorate an existing command. When 
594
2154
      given multiple plugins registering a command is not an error, and
595
2155
      the original command class (whether built in or a plugin based one) is
600
2160
    * Some option parsing errors will raise 'BzrOptionError', allowing 
601
2161
      granular detection for decorating commands. (Robert Collins).
602
2162
 
603
 
    * Branch.read_working_inventory has moved to
604
 
      WorkingTree.read_working_inventory. This necessitated changes to
605
 
      Branch.get_root_id, and a move of Branch.set_inventory to WorkingTree
606
 
      as well. To make it clear that a WorkingTree cannot always be obtained
607
 
      Branch.working_tree() will raise 'errors.NoWorkingTree' if one cannot
608
 
      be obtained. (Robert Collins)
 
2163
    * ``Branch.read_working_inventory`` has moved to
 
2164
      ``WorkingTree.read_working_inventory``. This necessitated changes to
 
2165
      ``Branch.get_root_id``, and a move of ``Branch.set_inventory`` to
 
2166
      WorkingTree as well. To make it clear that a WorkingTree cannot always
 
2167
      be obtained ``Branch.working_tree()`` will raise
 
2168
      ``errors.NoWorkingTree`` if one cannot be obtained. (Robert Collins)
609
2169
 
610
2170
    * All pending merges operations from Branch are now on WorkingTree.
611
2171
      (Robert Collins)
612
2172
 
613
 
    * The follow operations from Branch have moved to WorkingTree:
614
 
      add()
615
 
      commit()
616
 
      move()
617
 
      rename_one()
618
 
      unknowns()
 
2173
    * The follow operations from Branch have moved to WorkingTree::
 
2174
 
 
2175
          add()
 
2176
          commit()
 
2177
          move()
 
2178
          rename_one()
 
2179
          unknowns()
 
2180
 
619
2181
      (Robert Collins)
620
2182
 
621
 
    * bzrlib.add.smart_add_branch is now smart_add_tree. (Robert Collins)
 
2183
    * ``bzrlib.add.smart_add_branch`` is now ``smart_add_tree``. (Robert Collins)
622
2184
 
623
2185
    * New "rio" serialization format, similar to rfc-822. (Martin Pool)
624
2186
 
625
 
    * Rename selftests to `bzrlib.tests.test_foo`.  (John A Meinel, Martin 
 
2187
    * Rename selftests to ``bzrlib.tests.test_foo``.  (John A Meinel, Martin 
626
2188
      Pool)
627
2189
 
628
 
    * bzrlib.plugin.all_plugins has been changed from an attribute to a 
 
2190
    * ``bzrlib.plugin.all_plugins`` has been changed from an attribute to a 
629
2191
      query method. (Robert Collins)
630
2192
 
631
2193
    * New options to read only the table-of-contents of a weave.  
634
2196
    * Raise NoSuchFile when someone tries to add a non-existant file.
635
2197
      (Michael Ellerman)
636
2198
 
637
 
    * Simplify handling of DivergedBranches in cmd_pull().
 
2199
    * Simplify handling of DivergedBranches in ``cmd_pull()``.
638
2200
      (Michael Ellerman)
639
 
                   
640
2201
   
641
2202
    * Branch.controlfile* logic has moved to lockablefiles.LockableFiles, which
642
 
      is exposed as Branch().control_files. Also this has been altered with the
 
2203
      is exposed as ``Branch().control_files``. Also this has been altered with the
643
2204
      controlfile pre/suffix replaced by simple method names like 'get' and
644
2205
      'put'. (Aaron Bentley, Robert Collins).
645
2206
 
646
2207
    * Deprecated functions and methods can now be marked as such using the 
647
 
      bzrlib.symbol_versioning module. Marked method have their docstring
 
2208
      ``bzrlib.symbol_versioning`` module. Marked method have their docstring
648
2209
      updated and will issue a DeprecationWarning using the warnings module
649
2210
      when they are used. (Robert Collins)
650
2211
 
651
 
    * bzrlib.osutils.safe_unicode now exists to provide parameter coercion
 
2212
    * ``bzrlib.osutils.safe_unicode`` now exists to provide parameter coercion
652
2213
      for functions that need unicode strings. (Robert Collins)
653
2214
 
654
2215
bzr 0.6 2005-10-28
689
2250
    * New command 're-sign' which will regenerate the gpg signature for 
690
2251
      a revision. (Robert Collins)
691
2252
 
692
 
    * If you set check_signatures=require for a path in 
693
 
      ~/.bazaar/branches.conf then bzr will invoke your
694
 
      gpg_signing_command (defaults to gpg) and record a digital signature
 
2253
    * If you set ``check_signatures=require`` for a path in 
 
2254
      ``~/.bazaar/branches.conf`` then bzr will invoke your
 
2255
      ``gpg_signing_command`` (defaults to gpg) and record a digital signature
695
2256
      of your commit. (Robert Collins)
696
2257
 
697
2258
    * New sftp transport, based on Paramiko.  (Robey Pointer)
705
2266
    * 'bzr branch' will now set the branch-name to the last component of the
706
2267
      output directory, if one was supplied.
707
2268
 
708
 
    * If the option 'post_commit' is set to one (or more) python function
 
2269
    * If the option ``post_commit`` is set to one (or more) python function
709
2270
      names (must be in the bzrlib namespace), then they will be invoked
710
 
      after the commit has completed, with the branch and revision_id as
 
2271
      after the commit has completed, with the branch and ``revision_id`` as
711
2272
      parameters. (Robert Collins)
712
2273
 
713
2274
    * Merge now has a retcode of 1 when conflicts occur. (Robert Collins)
769
2330
    * Config options have moved from bzrlib.osutils to bzrlib.config.
770
2331
      Configuration is now done via the config.Config interface:
771
2332
      Depending on whether you have a Branch, a Location or no information
772
 
      available, construct a *Config, and use its signature_checking,
773
 
      username and user_email methods. (Robert Collins)
 
2333
      available, construct a ``*Config``, and use its ``signature_checking``,
 
2334
      ``username`` and ``user_email`` methods. (Robert Collins)
774
2335
 
775
2336
    * Plugins are now loaded under bzrlib.plugins, not bzrlib.plugin, and
776
2337
      they are made available for other plugins to use. You should not 
777
 
      import other plugins during the __init__ of your plugin though, as 
 
2338
      import other plugins during the ``__init__`` of your plugin though, as 
778
2339
      no ordering is guaranteed, and the plugins directory is not on the
779
2340
      python path. (Robert Collins)
780
2341
 
787
2348
      Scott James Remnant.  (Martin Pool)
788
2349
 
789
2350
    * Branch.remove has been moved to WorkingTree, which has also gained
790
 
      lock_read, lock_write and unlock methods for convenience. (Robert
791
 
      Collins)
 
2351
      ``lock_read``, ``lock_write`` and ``unlock`` methods for convenience.
 
2352
      (Robert Collins)
792
2353
 
793
 
    * Two decorators, needs_read_lock and needs_write_lock have been added
794
 
      to the branch module. Use these to cause a function to run in a
 
2354
    * Two decorators, ``needs_read_lock`` and ``needs_write_lock`` have been
 
2355
      added to the branch module. Use these to cause a function to run in a
795
2356
      read or write lock respectively. (Robert Collins)
796
2357
 
797
 
    * Branch.open_containing now returns a tuple (Branch, relative-path),
 
2358
    * ``Branch.open_containing`` now returns a tuple (Branch, relative-path),
798
2359
      which allows direct access to the common case of 'get me this file
799
2360
      from its branch'. (Robert Collins)
800
2361
 
801
 
    * Transports can register using register_lazy_transport, and they 
 
2362
    * Transports can register using ``register_lazy_transport``, and they 
802
2363
      will be loaded when first used.  (Martin Pool)
803
2364
 
804
 
    * 'pull' has been factored out of the command as WorkingTree.pull().
 
2365
    * 'pull' has been factored out of the command as ``WorkingTree.pull()``.
805
2366
      A new option to WorkingTree.pull has been added, clobber, which will
806
2367
      ignore diverged history and pull anyway.
807
2368
      (Robert Collins)
808
2369
 
809
 
    * config.Config has a 'get_user_option' call that accepts an option name.
 
2370
    * config.Config has a ``get_user_option`` call that accepts an option name.
810
2371
      This will be looked up in branches.conf and bazaar.conf as normal.
811
2372
      It is intended that this be used by plugins to support options - 
812
2373
      options of built in programs should have specific methods on the config.
813
2374
      (Robert Collins)
814
2375
 
815
 
    * merge.merge_inner now has tempdir as an optional parameter. (Robert
816
 
      Collins)
 
2376
    * ``merge.merge_inner`` now has tempdir as an optional parameter.
 
2377
      (Robert Collins)
817
2378
 
818
2379
    * Tree.kind is not recorded at the top level of the hierarchy, as it was
819
2380
      missing on EmptyTree, leading to a bug with merge on EmptyTrees.
820
2381
      (Robert Collins)
821
2382
 
822
 
    * WorkingTree.__del__ has been removed, it was non deterministic and not 
823
 
      doing what it was intended to. See WorkingTree.__init__ for a comment
 
2383
    * ``WorkingTree.__del__`` has been removed, it was non deterministic and not 
 
2384
      doing what it was intended to. See ``WorkingTree.__init__`` for a comment
824
2385
      about future directions. (Robert Collins/Martin Pool)
825
2386
 
826
2387
    * bzrlib.transport.http has been modified so that only 404 urllib errors
831
2392
      to apis like 'put', 'get' and 'has'. This is to provide consistent
832
2393
      behaviour - it operates on url's only. (Robert Collins)
833
2394
 
834
 
    * Transports can register using register_lazy_transport, and they 
 
2395
    * Transports can register using ``register_lazy_transport``, and they 
835
2396
      will be loaded when first used.  (Martin Pool)
836
2397
 
837
 
    * 'merge_flex' no longer calls conflict_handler.finalize(), instead that
838
 
      is called by merge_inner. This is so that the conflict count can be 
 
2398
    * ``merge_flex`` no longer calls ``conflict_handler.finalize()``, instead that
 
2399
      is called by ``merge_inner``. This is so that the conflict count can be 
839
2400
      retrieved (and potentially manipulated) before returning to the caller
840
 
      of merge_inner. Likewise 'merge' now returns the conflict count to the
 
2401
      of ``merge_inner``. Likewise 'merge' now returns the conflict count to the
841
2402
      caller. (Robert Collins)
842
2403
 
843
 
    * 'revision.revision_graph can handle having only partial history for
 
2404
    * ``revision.revision_graph`` can handle having only partial history for
844
2405
      a revision - that is no revisions in the graph with no parents.
845
2406
      (Robert Collins).
846
2407
 
847
 
    * New builtins.branch_files uses the standard file_list rules to produce
848
 
      a branch and a list of paths, relative to that branch (Aaron Bentley)
 
2408
    * New ``builtins.branch_files`` uses the standard ``file_list`` rules to
 
2409
      produce a branch and a list of paths, relative to that branch
 
2410
      (Aaron Bentley)
849
2411
 
850
2412
    * New TestCase.addCleanup facility.
851
2413
 
852
 
    * New bzrlib.version_info tuple (similar to sys.version_info), which can
853
 
      be used by programs importing bzrlib.
 
2414
    * New ``bzrlib.version_info`` tuple (similar to ``sys.version_info``),
 
2415
      which can be used by programs importing bzrlib.
854
2416
 
855
2417
  BUG FIXES:
856
2418
 
913
2475
      bzr will correct this when it encounters it. Fixed by
914
2476
      Robert Collins
915
2477
 
916
 
    * HTTP tests now force off the use of http_proxy for the duration.
 
2478
    * HTTP tests now force off the use of ``http_proxy`` for the duration.
917
2479
      Contributed by Gustavo Niemeyer.
918
2480
 
919
2481
    * Fix problems in merging weave-based branches that have 
922
2484
    * Symlink support: working with symlinks when not in the root of a 
923
2485
      bzr tree was broken, patch from Scott James Remnant.
924
2486
 
925
 
 
926
2487
  IMPROVEMENTS:
927
2488
 
928
2489
    * 'branch' now accepts a --basis parameter which will take advantage
973
2534
      bzr branch it cannot understand. This allows for precise
974
2535
      handling of such circumstances.
975
2536
 
 
2537
    * Remove RevisionReference class; ``Revision.parent_ids`` is now simply a
 
2538
      list of their ids and ``parent_sha1s`` is a list of their corresponding
 
2539
      sha1s (for old branches only at the moment.)
 
2540
 
 
2541
    * New method-object style interface for Commit() and Fetch().
 
2542
 
 
2543
    * Renamed ``Branch.last_patch()`` to ``Branch.last_revision()``, since
 
2544
      we call them revisions not patches.
 
2545
 
 
2546
    * Move ``copy_branch`` to ``bzrlib.clone.copy_branch``.  The destination
 
2547
      directory is created if it doesn't exist.
 
2548
 
 
2549
    * Inventories now identify the files which were present by 
 
2550
      giving the revision *of that file*.
 
2551
 
 
2552
    * Inventory and Revision XML contains a version identifier.  
 
2553
      This must be consistent with the overall branch version
 
2554
      but allows for more flexibility in future upgrades.
976
2555
 
977
2556
  TESTING:
978
2557
 
980
2559
      bzr installed by 'bzr selftest'.
981
2560
 
982
2561
    * 'bzr selftest' command-line arguments can now be partial ids
983
 
      of tests to run, e.g. 'bzr selftest test_weave'
 
2562
      of tests to run, e.g. ``bzr selftest test_weave``
984
2563
 
985
2564
      
986
2565
bzr 0.0.9 2005-09-23
1031
2610
      get added when you add a file in the directory.  Contributed by
1032
2611
      Michael Ellerman.
1033
2612
 
1034
 
    * Ignore .DS_Store (contains Mac metadata) by default.  Patch from
1035
 
      Nir Soffer.
 
2613
    * Ignore ``.DS_Store`` (contains Mac metadata) by default.
 
2614
      (Nir Soffer)
1036
2615
 
1037
 
    * If you set BZR_EDITOR in the environment, it is checked in
 
2616
    * If you set ``BZR_EDITOR`` in the environment, it is checked in
1038
2617
      preference to EDITOR and the config file for the interactive commit
1039
2618
      editing program. Related to this is a bugfix where a missing program
1040
2619
      set in EDITOR would cause editing to fail, now the fallback program
1121
2700
  NEW FEATURES:
1122
2701
 
1123
2702
    * Python plugins, automatically loaded from the directories on
1124
 
      BZR_PLUGIN_PATH or ~/.bzr.conf/plugins by default.
 
2703
      ``BZR_PLUGIN_PATH`` or ``~/.bzr.conf/plugins`` by default.
1125
2704
 
1126
2705
    * New 'bzr mkdir' command.
1127
2706
 
1159
2738
    * Moved plugins directory to bzrlib/, so that there's a standard
1160
2739
      plugin directory which is not only installed with bzr itself but
1161
2740
      is also available when using bzr from the development tree.
1162
 
      BZR_PLUGIN_PATH and DEFAULT_PLUGIN_PATH are then added to the
 
2741
      ``BZR_PLUGIN_PATH`` and ``DEFAULT_PLUGIN_PATH`` are then added to the
1163
2742
      standard plugins directory.
1164
2743
 
1165
2744
    * When exporting to a tarball with ``bzr export --format tgz``, put 
1311
2890
 
1312
2891
    * Better help messages for many commands.
1313
2892
 
1314
 
    * Expose bzrlib.open_tracefile() to start the tracefile; until
 
2893
    * Expose ``bzrlib.open_tracefile()`` to start the tracefile; until
1315
2894
      this is called trace messages are just discarded.
1316
2895
 
1317
 
    * New internal function find_touching_revisions() and hidden
 
2896
    * New internal function ``find_touching_revisions()`` and hidden
1318
2897
      command touching-revisions trace the changes to a given file.
1319
2898
 
1320
 
    * Simpler and faster compare_inventories() function.
 
2899
    * Simpler and faster ``compare_inventories()`` function.
1321
2900
 
1322
 
    * bzrlib.open_tracefile() takes a tracefilename parameter.
 
2901
    * ``bzrlib.open_tracefile()`` takes a tracefilename parameter.
1323
2902
 
1324
2903
    * New AtomicFile class.
1325
2904
 
1369
2948
 
1370
2949
    * Some Unicode/locale fixes.
1371
2950
 
1372
 
    * Partial workaround for difflib.unified_diff not handling
 
2951
    * Partial workaround for ``difflib.unified_diff`` not handling
1373
2952
      trailing newlines properly.
1374
2953
 
1375
2954