/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Martin Pool
  • Date: 2006-12-15 08:36:50 UTC
  • mto: (2193.3.1 short-options)
  • mto: This revision was merged to the branch mainline in revision 2203.
  • Revision ID: mbp@sourcefrog.net-20061215083650-14cbsfiijfq3kdf9
remove global registration of short options

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
IN DEVELOPMENT
 
2
 
 
3
  IMPROVEMENTS:
 
4
 
 
5
    * Aliases now support quotation marks, so they can contain whitespace
 
6
      (Marius Kruger)
 
7
 
 
8
    * PyCurlTransport now use a single curl object. By specifying explicitly
 
9
      the 'Range' header, we avoid the need to use two different curl objects
 
10
      (and two connections to the same server). (Vincent Ladeuil)
 
11
 
 
12
    * ``bzr commit`` does not prompt for a message until it is very likely to
 
13
      succeed.  (Aaron Bentley)
 
14
 
 
15
    * ``bzr conflicts`` now takes --text to list pathnames of text conflicts
 
16
      (Aaron Bentley)
 
17
 
 
18
    * Fix ``iter_lines_added_or_present_in_versions`` to use a set instead
 
19
      of a list while checking if a revision id was requested. Takes 10s
 
20
      off of the ``fileids_affected_by_revision_ids`` time, which is 10s
 
21
      of the ``bzr branch`` time. Also improve ``fileids_...`` time by
 
22
      filtering lines with a regex rather than multiple ``str.find()``
 
23
      calls. (saves another 300ms) (John Arbash Meinel)
 
24
 
 
25
    * Policy can be set for each configuration key. This allows keys to be
 
26
      inherited properly across configuration entries. For example, this
 
27
      should enable you to do::
 
28
        
 
29
        [/home/user/project]
 
30
        push_location = sftp://host/srv/project/
 
31
        push_location:policy = appendpath
 
32
 
 
33
      And then a branch like ``/home/user/project/mybranch`` should get an
 
34
      automatic push location of ``sftp://host/srv/project/mybranch``.
 
35
      (James Henstridge)
 
36
 
 
37
    * Added ``bzr status --short`` to make status report svn style flags
 
38
      for each file.  For example::
 
39
 
 
40
        $ bzr status --short
 
41
        A  foo
 
42
        A  bar
 
43
        D  baz
 
44
        ?  wooley
 
45
 
 
46
    * 'bzr selftest --clean-output' allows easily clean temporary tests 
 
47
      directories without running tests. (Alexander Belchenko)
 
48
 
 
49
    * ``bzr help hidden-commands`` lists all hidden commands. (Aaron Bentley)
 
50
 
 
51
    * New option ``bzr diff -C`` shows the changes in the specified revision
 
52
      (by default, the tip) relative to its primary parent.  So ``bzr diff
 
53
      -C -r 324`` shows the changes committed by 324, rather than the changes 
 
54
      from 324 to the working tree.
 
55
      (#56299, Martin Pool)
 
56
     
 
57
 
 
58
  INTERNALS:
 
59
 
 
60
    * Change Revision serialization to only write out millisecond
 
61
      resolution. Rather than expecting floating point serialization to
 
62
      preserve more resolution than we need. (Henri Weichers, Martin Pool)
 
63
 
 
64
    * Test suite ends cleanly on Windows.  (Vincent Ladeuil)
 
65
 
 
66
    * Single-letter short options are no longer globally declared.  (Martin
 
67
      Pool)
 
68
 
 
69
  BUG FIXES:
 
70
 
 
71
    * ``bzr annotate`` now defaults to showing dotted revnos for merged
 
72
      revisions. It cuts them off at a depth of 12 characters, but you can
 
73
      supply ``--long`` to see the full number. You can also use
 
74
      ``--show-ids`` to display the original revision ids, rather than
 
75
      revision numbers and committer names. (John Arbash Meinel, #75637)
 
76
 
 
77
    * bzr now supports Win32 UNC path (e.g. \\HOST\path). 
 
78
      (Alexander Belchenko, #57869)
 
79
 
 
80
    * Replace broken fnmatch based ignore pattern matching with custom pattern
 
81
      matcher.
 
82
      (Kent Gibson, Jan Hudec #57637)
 
83
 
 
84
    * pycurl and urllib can detect short reads at different places. Update
 
85
      the test suite to test more cases. Also detect http error code 416
 
86
      which was raised for that specific bug. Also enhance the urllib
 
87
      robustness by detecting invalid ranges (and pycurl's one by detecting
 
88
      short reads during the initial GET). (Vincent Ladeuil, #73948)
 
89
 
 
90
    * The urllib connection sharing interacts badly with urllib2
 
91
      proxy setting (the connections didn't go thru the proxy
 
92
      anymore). Defining a proper ProxyHandler solves the
 
93
      problem.  (Vincent Ladeuil, #74759)
 
94
 
 
95
 
 
96
bzr 0.13  2006-12-05
 
97
    
 
98
  No changes from 0.13rc1
 
99
    
 
100
bzr 0.13rc1  2006-11-27
 
101
 
 
102
  IMPROVEMENTS:
 
103
 
 
104
    * New command ``bzr remove-tree`` allows the removal of the working
 
105
      tree from a branch.
 
106
      (Daniel Silverstone)
 
107
 
 
108
    * urllib uses shared keep-alive connections, so http 
 
109
      operations are substantially faster.
 
110
      (Vincent Ladeuil, #53654)
 
111
 
 
112
    * ``bzr export`` allows an optional branch parameter, to export a bzr
 
113
      tree from some other url. For example:
 
114
      ``bzr export bzr.tar.gz http://bazaar-vcs.org/bzr/bzr.dev``
 
115
      (Daniel Silverstone)
 
116
 
 
117
    * Added ``bzr help topics`` to the bzr help system. This gives a
 
118
      location for general information, outside of a specific command.
 
119
      This includes updates for ``bzr help revisionspec`` the first topic
 
120
      included. (Goffredo Baroncelli, John Arbash Meinel, #42714)
 
121
 
 
122
    * WSGI-compatible HTTP smart server.  See ``doc/http_smart_server.txt``.
 
123
      (Andrew Bennetts)
 
124
 
 
125
    * Knit files will now cache full texts only when the size of the
 
126
      deltas is as large as the size of the fulltext. (Or after 200
 
127
      deltas, whichever comes first). This has the most benefit on large
 
128
      files with small changes, such as the inventory for a large project.
 
129
      (eg For a project with 2500 files, and 7500 revisions, it changes
 
130
      the size of inventory.knit from 11MB to 5.4MB) (John Arbash Meinel)
 
131
 
 
132
  INTERNALS:
 
133
 
 
134
    * New -D option given before the command line turns on debugging output
 
135
      for particular areas.  -Derror shows tracebacks on all errors.
 
136
      (Martin Pool)
 
137
 
 
138
    * Clean up ``bzr selftest --benchmark bundle`` to correct an import,
 
139
      and remove benchmarks that take longer than 10min to run.
 
140
      (John Arbash Meinel)
 
141
 
 
142
    * Use ``time.time()`` instead of ``time.clock()`` to decide on
 
143
      progress throttling. Because ``time.clock()`` is actually CPU time,
 
144
      so over a high-latency connection, too many updates get throttled.
 
145
      (John Arbash Meinel)
 
146
 
 
147
    * ``MemoryTransport.list_dir()`` would strip the first character for
 
148
      files or directories in root directory. (John Arbash Meinel)
 
149
  
 
150
    * New ``ChrootTransportDecorator``, accessible via the ``chroot+`` url
 
151
      prefix.  It disallows any access to locations above a set URL.  (Andrew
 
152
      Bennetts)
 
153
 
 
154
  BUG FIXES:
 
155
 
 
156
    * ``bzrlib/bzrdir.py`` was directly referencing ``bzrlib.workingtree``,
 
157
      without importing it. This prevented ``bzr upgrade`` from working
 
158
      unless a plugin already imported ``bzrlib.workingtree``
 
159
      (John Arbash Meinel, #70716)
 
160
 
 
161
    * Suppress the traceback on invalid URLs (Vincent Ladeuil, #70803).
 
162
 
 
163
    * Give nicer error message when an http server returns a 403
 
164
      error code. (Vincent Ladeuil, #57644).
 
165
 
 
166
    * When a multi-range http GET request fails, try a single
 
167
      range one. If it fails too, forget about ranges. Remember that until 
 
168
      the death of the transport and propagates that to the clones.
 
169
      (Vincent Ladeuil, #62276, #62029).
 
170
 
 
171
    * Handles user/passwords supplied in url from command
 
172
      line (for the urllib implementation). Don't request already
 
173
      known passwords (Vincent Ladeuil, #42383, #44647, #48527)
 
174
 
 
175
    * _KnitIndex.add_versions() dictionary compresses revision ids as they
 
176
      are added. This fixes bug where fetching remote revisions records
 
177
      them as full references rather than integers. (John Arbash Meinel,
 
178
      #64789)
 
179
 
 
180
    * ``bzr ignore`` strips trailing slashes in patterns.
 
181
      Also ``bzr ignore`` rejects absolute paths. (Kent Gibson, #4559)
 
182
 
 
183
    * ``bzr ignore`` takes multiple arguments. (Cheuksan Edward Wang, #29488)
 
184
 
 
185
    * mv correctly handles paths that traverse symlinks. 
 
186
      (Aaron Bentley, #66964)
 
187
 
 
188
    * Give nicer looking error messages when failing to connect over ssh.
 
189
      (John Arbash Meinel, #49172)
 
190
 
 
191
    * Pushing to a remote branch does not currently update the remote working
 
192
      tree. After a remote push, ``bzr status`` and ``bzr diff`` on the remote
 
193
      machine now show that the working tree is out of date.
 
194
      (Cheuksan Edward Wang #48136)
 
195
 
 
196
    * Use patiencediff instead of difflib for determining deltas to insert
 
197
      into knits. This avoids the O(N^3) behavior of difflib. Patience
 
198
      diff should be O(N^2). (Cheuksan Edward Wang, #65714)
 
199
 
 
200
    * Running ``bzr log`` on nonexistent file gives an error instead of the
 
201
      entire log history. (Cheuksan Edward Wang #50793)
 
202
 
 
203
    * ``bzr cat`` can look up contents of removed or renamed files. If the
 
204
      pathname is ambiguous, i.e. the files in the old and new trees have
 
205
      different id's, the default is the file in the new tree. The user can
 
206
      use "--name-from-revision" to select the file in the old tree.
 
207
      (Cheuksan Edward Wang, #30190)
 
208
 
 
209
  TESTING:
 
210
 
 
211
    * TestingHTTPRequestHandler really handles the Range header
 
212
      (previously it was ignoring it and returning the whole file,).
 
213
 
 
214
bzr 0.12  2006-10-30
 
215
 
 
216
  INTERNALS:
 
217
 
 
218
    * Clean up ``bzr selftest --benchmark bundle`` to correct an import,
 
219
      and remove benchmarks that take longer than 10min to run.
 
220
      (John Arbash Meinel)
 
221
  
 
222
bzr 0.12rc1  2006-10-23
 
223
 
 
224
  IMPROVEMENTS:
 
225
 
 
226
    * ``bzr log`` now shows dotted-decimal revision numbers for all revisions,
 
227
      rather than just showing a decimal revision number for revisions on the
 
228
      mainline. These revision numbers are not yet accepted as input into bzr
 
229
      commands such as log, diff etc. (Robert Collins)
 
230
 
 
231
    * revisions can now be specified using dotted-decimal revision numbers.
 
232
      For instance, ``bzr diff -r 1.2.1..1.2.3. (Robert Collins)
 
233
 
 
234
    * ``bzr help commands`` output is now shorter (Aaron Bentley)
 
235
 
 
236
    * New connection: ``bzr+http://`` which supports tunnelling the smart
 
237
      protocol over an HTTP connection. If writing is enabled on the bzr
 
238
      server, then you can write over the http connection.
 
239
      (Andrew Bennetts)
 
240
 
 
241
    * ``bzr`` now uses lazy importing to reduce the startup time. This has
 
242
      a moderate effect on lots of actions, especially ones that have
 
243
      little to do. For example ``bzr rocks`` time is down to 116ms from
 
244
      283ms. (John Arbash Meinel)
 
245
 
 
246
    * New Registry class to provide name-to-object registry-like support,
 
247
      for example for schemes where plugins can register new classes to
 
248
      do certain tasks (e.g. log formatters). Also provides lazy registration
 
249
      to allow modules to be loaded on request. (John Arbash Meinel, Adeodato
 
250
      Simó)
 
251
 
 
252
  API INCOMPATABILITY:
 
253
  
 
254
    * LogFormatter subclasses show now expect the 'revno' parameter to 
 
255
      show() to be a string rather than an int. (Robert Collins)
 
256
 
 
257
  INTERNALS:
 
258
 
 
259
    * ``TestCase.run_bzr``, ``run_bzr_captured``, and ``run_bzr_subprocess``
 
260
      can take a ``working_dir='foo'`` parameter, which will change directory 
 
261
      for the command. (John Arbash Meinel)
 
262
 
 
263
    * ``bzrlib.lazy_regex.lazy_compile`` can be used to create a proxy
 
264
      around a regex, which defers compilation until first use. 
 
265
      (John Arbash Meinel)
 
266
 
 
267
    * ``TestCase.run_bzr_subprocess`` defaults to supplying the
 
268
      ``--no-plugins`` parameter to ensure test reproducability, and avoid
 
269
      problems with system-wide installed plugins. (John Arbash Meinel)
 
270
 
 
271
    * Unique tree root ids are now supported. Newly created trees still
 
272
      use the common root id for compatibility with bzr versions before 0.12.
 
273
      (Aaron Bentley)
 
274
 
 
275
    * ``WorkingTree.set_root_id(None)`` is now deprecated. Please
 
276
      pass in inventory.ROOT_ID if you want the default root id value.
 
277
      (Robert Collins, John Arbash Meinel)
 
278
 
 
279
    * New method ``WorkingTree.flush()`` which will write the current memory
 
280
      inventory out to disk. At the same time, read_working_inventory will
 
281
      no longer trash the current tree inventory if it has been modified within
 
282
      the current lock, and the tree will now ``flush()`` automatically on
 
283
      ``unlock()``. ``WorkingTree.set_root_id()`` has been updated to take
 
284
      advantage of this functionality. (Robert Collins, John Arbash Meinel)
 
285
 
 
286
    * ``bzrlib.tsort.merge_sorted`` now accepts ``generate_revnos``. This
 
287
      parameter will cause it to add another column to its output, which
 
288
      contains the dotted-decimal revno for each revision, as a tuple.
 
289
      (Robert Collins)
 
290
 
 
291
    * ``LogFormatter.show_merge`` is deprecated in favour of
 
292
      ``LogFormatter.show_merge_revno``. (Robert Collins)
 
293
 
 
294
  BUG FIXES:
 
295
 
 
296
    * Avoid circular imports by creating a deprecated function for
 
297
      ``bzrlib.tree.RevisionTree``. Callers should have been using
 
298
      ``bzrlib.revisontree.RevisionTree`` anyway. (John Arbash Meinel,
 
299
      #63360, #66349)
 
300
 
 
301
    * Don't use ``socket.MSG_WAITALL`` as it doesn't exist on all
 
302
      platforms. (Martin Pool, #66356)
 
303
 
 
304
    * Don't require ``Content-Type`` in range responses. Assume they are a
 
305
      single range if ``Content-Type`` does not exist.
 
306
      (John Arbash Meinel, #62473)
 
307
 
 
308
    * bzr branch/pull no longer complain about progress bar cleanup when
 
309
      interrupted during fetch.  (Aaron Bentley, #54000)
 
310
 
 
311
    * ``WorkingTree.set_parent_trees()`` uses the trees to directly write
 
312
      the basis inventory, rather than going through the repository. This
 
313
      allows us to have 1 inventory read, and 2 inventory writes when
 
314
      committing a new tree. (John Arbash Meinel)
 
315
 
 
316
    * When reverting, files that are not locally modified that do not exist
 
317
      in the target are deleted, not just unversioned (Aaron Bentley)
 
318
 
 
319
    * When trying to acquire a lock, don't fail immediately. Instead, try
 
320
      a few times (up to 1 hour) before timing out. Also, report why the
 
321
      lock is unavailable (John Arbash Meinel, #43521, #49556)
 
322
 
 
323
    * Leave HttpTransportBase daughter classes decides how they
 
324
      implement cloning. (Vincent Ladeuil, #61606)
 
325
 
 
326
    * diff3 does not indicate conflicts on clean merge. (Aaron Bentley)
 
327
 
 
328
    * If a commit fails, the commit message is stored in a file at the root of
 
329
      the tree for later commit. (Cheuksan Edward Wang, Stefan Metzmacher,
 
330
      #32054)
 
331
 
 
332
  TESTING:
 
333
 
 
334
    * New test base class TestCaseWithMemoryTransport offers memory-only
 
335
      testing facilities: its not suitable for tests that need to mutate disk
 
336
      state, but most tests should not need that and should be converted to
 
337
      TestCaseWithMemoryTransport. (Robert Collins)
 
338
 
 
339
    * ``TestCase.make_branch_and_memory_tree`` now takes a format
 
340
      option to set the BzrDir, Repository and Branch formats of the
 
341
      created objects. (Robert Collins, John Arbash Meinel)
 
342
 
 
343
bzr 0.11  2006-10-02
 
344
 
 
345
    * Smart server transport test failures on windows fixed. (Lukáš Lalinský).
 
346
 
 
347
bzr 0.11rc2  2006-09-27
 
348
 
 
349
  BUG FIXES:
 
350
 
 
351
    * Test suite hangs on windows fixed. (Andrew Bennets, Alexander Belchenko).
 
352
    
 
353
    * Commit performance regression fixed. (Aaron Bentley, Robert Collins, John
 
354
      Arbash Meinel).
 
355
 
 
356
bzr 0.11rc1  2006-09-25
 
357
 
 
358
  IMPROVEMENTS:
 
359
 
 
360
    * Knit files now wait to create their contents until the first data is
 
361
      added. The old code used to create an empty .knit and a .kndx with just
 
362
      the header. However, this caused a lot of extra round trips over sftp.
 
363
      This can change the time for ``bzr push`` to create a new remote branch
 
364
      from 160s down to 100s. This also affects ``bzr commit`` performance when
 
365
      adding new files, ``bzr commit`` on a new kernel-like tree drops from 50s
 
366
      down to 40s (John Arbash Meinel, #44692)
 
367
 
 
368
    * When an entire subtree has been deleted, commit will now report that
 
369
      just the top of the subtree has been deleted, rather than reporting
 
370
      all the individual items. (Robert Collins)
 
371
 
 
372
    * Commit performs one less XML parse. (Robert Collins)
 
373
 
 
374
    * ``bzr checkout`` now operates on readonly branches as well
 
375
      as readwrite branches. This fixes bug #39542. (Robert Collins)
 
376
 
 
377
    * ``bzr bind`` no longer synchronises history with the master branch.
 
378
      Binding should be followed by an update or push to synchronise the 
 
379
      two branches. This is closely related to the fix for bug #39542.
 
380
      (Robert Collins)
 
381
 
 
382
    * ``bzrlib.lazy_import.lazy_import`` function to create on-demand 
 
383
      objects.  This allows all imports to stay at the global scope, but
 
384
      modules will not actually be imported if they are not used.
 
385
      (John Arbash Meinel)
 
386
 
 
387
    * Support bzr:// and bzr+ssh:// urls to work with the new RPC-based
 
388
      transport which will be used with the upcoming high-performance smart
 
389
      server. The new command ``bzr serve`` will invoke bzr in server mode,
 
390
      which processes these requests. (Andrew Bennetts, Robert Collins, Martin
 
391
      Pool)
 
392
 
 
393
    * New command ``bzr version-info`` which can be used to get a summary
 
394
      of the current state of the tree. This is especially useful as part
 
395
      of a build commands. See ``doc/version_info.txt`` for more information 
 
396
      (John Arbash Meinel)
 
397
 
 
398
  BUG FIXES:
 
399
 
 
400
    * 'bzr inventory [FILE...]' allows restricting the file list to a
 
401
      specific set of files. (John Arbash Meinel, #3631)
 
402
 
 
403
    * Don't abort when annotating empty files (John Arbash Meinel, #56814)
 
404
 
 
405
    * Add ``Stanza.to_unicode()`` which can be passed to another Stanza
 
406
      when nesting stanzas. Also, add ``read_stanza_unicode`` to handle when
 
407
      reading a nested Stanza. (John Arbash Meinel)
 
408
 
 
409
    * Transform._set_mode() needs to stat the right file. 
 
410
      (John Arbash Meinel, #56549)
 
411
 
 
412
    * Raise WeaveFormatError rather than StopIteration when trying to read
 
413
      an empty Weave file. (John Arbash Meinel, #46871)
 
414
 
 
415
    * Don't access e.code for generic URLErrors, only HTTPErrors have .code.
 
416
      (Vincent Ladeuil, #59835)
 
417
 
 
418
    * Handle boundary="" lines properly to allow access through a Squid proxy.
 
419
      (John Arbash Meinel, #57723)
 
420
 
 
421
    * revert now removes newly-added directories (Aaron Bentley, #54172)
 
422
 
 
423
    * ``bzr upgrade sftp://`` shouldn't fail to upgrade v6 branches if there 
 
424
      isn't a working tree. (David Allouche, #40679)
 
425
 
 
426
    * Give nicer error messages when a user supplies an invalid --revision
 
427
      parameter. (John Arbash Meinel, #55420)
 
428
 
 
429
    * Handle when LANG is not recognized by python. Emit a warning, but
 
430
      just revert to using 'ascii'. (John Arbash Meinel, #35392)
 
431
 
 
432
    * Don't use preexec_fn on win32, as it is not supported by subprocess.
 
433
      (John Arbash Meinel)
 
434
 
 
435
    * Skip specific tests when the dependencies aren't met. This includes
 
436
      some ``setup.py`` tests when ``python-dev`` is not available, and
 
437
      some tests that depend on paramiko. (John Arbash Meinel, Mattheiu Moy)
 
438
 
 
439
    * Fallback to Paramiko properly, if no ``ssh`` executable exists on
 
440
      the system. (Andrew Bennetts, John Arbash Meinel)
 
441
 
 
442
    * ``Branch.bind(other_branch)`` no longer takes a write lock on the
 
443
      other branch, and will not push or pull between the two branches.
 
444
      API users will need to perform a push or pull or update operation if they
 
445
      require branch synchronisation to take place. (Robert Collins, #47344)
 
446
 
 
447
    * When creating a tarball or zipfile export, export unicode names as utf-8
 
448
      paths. This may not work perfectly on all platforms, but has the best
 
449
      chance of working in the common case. (John Arbash Meinel, #56816)
 
450
 
 
451
    * When committing, only files that exist in working tree or basis tree
 
452
      may be specified (Aaron Bentley, #50793)
 
453
 
 
454
  PORTABILITY:
 
455
 
 
456
    * Fixes to run on Python 2.5 (Brian M. Carlson, Martin Pool, Marien Zwart)
 
457
 
 
458
  INTERNALS:
 
459
 
 
460
    * TestCaseInTempDir now creates a separate directory for HOME, rather
 
461
      than having HOME set to the same location as the working directory.
 
462
      (John Arbash Meinel)
 
463
 
 
464
    * run_bzr_subprocess() can take an optional 'env_changes={}' parameter,
 
465
      which will update os.environ inside the spawned child. It also can
 
466
      take a 'universal_newlines=True', which helps when checking the output
 
467
      of the command. (John Arbash Meinel)
 
468
 
 
469
    * Refactor SFTP vendors to allow easier re-use when ssh is used. 
 
470
      (Andrew Bennetts)
 
471
 
 
472
    * Transport.list_dir() and Transport.iter_files_recursive() should always
 
473
      return urlescaped paths. This is now tested (there were bugs in a few
 
474
      of the transports) (Andrew Bennetts, David Allouche, John Arbash Meinel)
 
475
 
 
476
    * New utility function symbol_versioning.deprecation_string. Returns the
 
477
      formatted string for a callable, deprecation format pair. (Robert Collins)
 
478
 
 
479
    * New TestCase helper applyDeprecated. This allows you to call a callable
 
480
      which is deprecated without it spewing to the screen, just by supplying
 
481
      the deprecation format string issued for it. (Robert Collins)
 
482
 
 
483
    * Transport.append and Transport.put have been deprecated in favor of
 
484
      .append_bytes, .append_file, .put_bytes, and .put_file. This removes the
 
485
      ambiguity in what type of object the functions take.
 
486
      Transport.non_atomic_put_{bytes,file} has also been added. Which works
 
487
      similarly to Transport.append() except for SFTP, it doesn't have a round
 
488
      trip when opening the file. Also, it provides functionality for creating
 
489
      a parent directory when trying to create a file, rather than raise
 
490
      NoSuchFile and forcing the caller to repeat their request.
 
491
      (John Arbash Meinel)
 
492
 
 
493
    * WorkingTree has a new api ``unversion`` which allow the unversioning of
 
494
      entries by their file id. (Robert Collins)
 
495
 
 
496
    * WorkingTree.pending_merges is deprecated.  Please use the get_parent_ids
 
497
      (introduced in 0.10) method instead. (Robert Collins)
 
498
 
 
499
    * WorkingTree has a new lock_tree_write method which locks the branch for
 
500
      read rather than write. This is appropriate for actions which only need
 
501
      the branch data for reference rather than mutation. A new decorator
 
502
      needs_tree_write_lock is provided in the workingtree module. Like the
 
503
      needs_read_lock and needs_write_lock decorators this allows static 
 
504
      declaration of the locking requirements of a function to ensure that
 
505
      a lock is taken out for casual scripts. (Robert Collins, #54107)
 
506
 
 
507
    * All WorkingTree methods which write to the tree, but not to the branch
 
508
      have been converted to use ``needs_tree_write_lock`` rather than 
 
509
      ``needs_write_lock``. Also converted is the revert, conflicts and tree
 
510
      transform modules. This provides a modest performance improvement on 
 
511
      metadir style trees, due to the reduce lock-acquisition, and a more
 
512
      significant performance improvement on lightweight checkouts from 
 
513
      remote branches, where trivial operations used to pay a significant 
 
514
      penalty. It also provides the basis for allowing readonly checkouts.
 
515
      (Robert Collins)
 
516
 
 
517
    * Special case importing the standard library 'copy' module. This shaves
 
518
      off 40ms of startup time, while retaining compatibility. See:
 
519
      ``bzrlib/inspect_for_copy.py`` for more details. (John Arbash Meinel)
 
520
 
 
521
    * WorkingTree has a new parent class MutableTree which represents the 
 
522
      specialisations of Tree which are able to be altered. (Robert Collins)
 
523
 
 
524
    * New methods mkdir and put_file_bytes_non_atomic on MutableTree that
 
525
      mutate the tree and its contents. (Robert Collins)
 
526
 
 
527
    * Transport behaviour at the root of the URL is now defined and tested.
 
528
      (Andrew Bennetts, Robert Collins)
 
529
 
 
530
  TESTING:
 
531
 
 
532
    * New test helper classs MemoryTree. This is typically accessed via
 
533
      ``self.make_branch_and_memory_tree()`` in test cases. (Robert Collins)
 
534
      
 
535
    * Add start_bzr_subprocess and stop_bzr_subprocess to allow test code to
 
536
      continue running concurrently with a subprocess of bzr. (Andrew Bennetts,
 
537
      Robert Collins)
 
538
 
 
539
    * Add a new method ``Transport.get_smart_client()``. This is provided to
 
540
      allow upgrades to a richer interface than the VFS one provided by
 
541
      Transport. (Andrew Bennetts, Martin Pool)
 
542
 
 
543
bzr 0.10  2006-08-29
 
544
  
 
545
  IMPROVEMENTS:
 
546
    * 'merge' now takes --uncommitted, to apply uncommitted changes from a
 
547
      tree.  (Aaron Bentley)
 
548
  
 
549
    * 'bzr add --file-ids-from' can be used to specify another path to use
 
550
      for creating file ids, rather than generating all new ones. Internally,
 
551
      the 'action' passed to smart_add_tree() can return file_ids that
 
552
      will be used, rather than having bzrlib generate new ones.
 
553
      (John Arbash Meinel, #55781)
 
554
 
 
555
    * ``bzr selftest --benchmark`` now allows a ``--cache-dir`` parameter.
 
556
      This will cache some of the intermediate trees, and decrease the
 
557
      setup time for benchmark tests. (John Arbash Meinel)
 
558
 
 
559
    * Inverse forms are provided for all boolean options.  For example,
 
560
      --strict has --no-strict, --no-recurse has --recurse (Aaron Bentley)
 
561
 
 
562
    * Serialize out Inventories directly, rather than using ElementTree.
 
563
      Writing out a kernel sized inventory drops from 2s down to ~350ms.
 
564
      (Robert Collins, John Arbash Meinel)
 
565
 
 
566
  BUG FIXES:
 
567
 
 
568
    * Help diffutils 2.8.4 get along with binary tests (Marien Zwart: #57614)
 
569
 
 
570
    * Change LockDir so that if the lock directory doesn't exist when
 
571
      lock_write() is called, an attempt will be made to create it.
 
572
      (John Arbash Meinel, #56974)
 
573
 
 
574
    * ``bzr uncommit`` preserves pending merges. (John Arbash Meinel, #57660)
 
575
 
 
576
    * Active FTP transport now works as intended. (ghozzy, #56472)
 
577
 
 
578
    * Really fix mutter() so that it won't ever raise a UnicodeError.
 
579
      It means it is possible for ~/.bzr.log to contain non UTF-8 characters.
 
580
      But it is a debugging log, not a real user file.
 
581
      (John Arbash Meinel, #56947, #53880)
 
582
 
 
583
    * Change Command handle to allow Unicode command and options.
 
584
      At present we cannot register Unicode command names, so we will get
 
585
      BzrCommandError('unknown command'), or BzrCommandError('unknown option')
 
586
      But that is better than a UnicodeError + a traceback.
 
587
      (John Arbash Meinel, #57123)
 
588
 
 
589
    * Handle TZ=UTC properly when reading/writing revisions.
 
590
      (John Arbash Meinel, #55783, #56290)
 
591
 
 
592
    * Use GPG_TTY to allow gpg --cl to work with gpg-agent in a pipeline,
 
593
      (passing text to sign in on stdin). (John Arbash Meinel, #54468)
 
594
 
 
595
    * External diff does the right thing for binaries even in foreign 
 
596
      languages. (John Arbash Meinel, #56307)
 
597
 
 
598
    * Testament handles more cases when content is unicode. Specific bug was
 
599
      in handling of revision properties. (John Arbash Meinel, Holger Krekel,
 
600
      #54723)
 
601
 
 
602
    * The bzr selftest was failing on installed versions due to a bug in a new
 
603
      test helper. (John Arbash Meinel, Robert Collins, #58057)
 
604
 
 
605
  INTERNALS:
 
606
 
 
607
    * ``bzrlib.cache_utf8`` contains ``encode()`` and ``decode()`` functions
 
608
      which can be used to cache the conversion between utf8 and Unicode.
 
609
      Especially helpful for some of the knit annotation code, which has to
 
610
      convert revision ids to utf8 to annotate lines in storage.
 
611
      (John Arbash Meinel)
 
612
 
 
613
    * ``setup.py`` now searches the filesystem to find all packages which
 
614
      need to be installed. This should help make the life of packagers
 
615
      easier. (John Arbash Meinel)
 
616
 
 
617
bzr 0.9.0  2006-08-11
 
618
 
 
619
  SURPRISES:
 
620
 
 
621
   * The hard-coded built-in ignore rules have been removed. There are
 
622
     now two rulesets which are enforced. A user global one in 
 
623
     ~/.bazaar/ignore which will apply to every tree, and the tree
 
624
     specific one '.bzrignore'.
 
625
     ~/.bazaar/ignore will be created if it does not exist, but with
 
626
     a more conservative list than the old default.
 
627
     This fixes bugs with default rules being enforced no matter what. 
 
628
     The old list of ignore rules from bzr is available by
 
629
     running 'bzr ignore --old-default-rules'.
 
630
     (Robert Collins, Martin Pool, John Arbash Meinel)
 
631
 
 
632
   * 'branches.conf' has been changed to 'locations.conf', since it can apply
 
633
     to more locations than just branch locations.
 
634
     (Aaron Bentley)
 
635
   
 
636
  IMPROVEMENTS:
 
637
 
 
638
   * The revision specifier "revno:" is extended to accept the syntax
 
639
     revno:N:branch. For example,
 
640
     revno:42:http://bazaar-vcs.org/bzr/bzr.dev/ means revision 42 in
 
641
     bzr.dev.  (Matthieu Moy)
 
642
 
 
643
   * Tests updates to ensure proper URL handling, UNICODE support, and
 
644
     proper printing when the user's terminal encoding cannot display 
 
645
     the path of a file that has been versioned.
 
646
     ``bzr branch`` can take a target URL rather than only a local directory.
 
647
     Branch.get_parent()/set_parent() now save a relative path if possible,
 
648
     and normalize the parent based on root, allowing access across
 
649
     different transports. (John Arbash Meinel, Wouter van Heyst, Martin Pool)
 
650
     (Malone #48906, #42699, #40675, #5281, #3980, #36363, #43689,
 
651
      #42517, #42514)
 
652
 
 
653
   * On Unix, detect terminal width using an ioctl not just $COLUMNS.
 
654
     Use terminal width for single-line logs from ``bzr log --line`` and
 
655
     pending-merge display.  (Robert Widhopf-Fenk, Gustavo Niemeyer)
 
656
     (Malone #3507)
 
657
 
 
658
   * On Windows, detect terminal width using GetConsoleScreenBufferInfo.
 
659
     (Alexander Belchenko)
 
660
 
 
661
   * Speedup improvement for 'date:'-revision search. (Guillaume Pinot).
 
662
 
 
663
   * Show the correct number of revisions pushed when pushing a new branch.
 
664
     (Robert Collins).
 
665
 
 
666
   * 'bzr selftest' now shows a progress bar with the number of tests, and 
 
667
     progress made. 'make check' shows tests in -v mode, to be more useful
 
668
     for the PQM status window. (Robert Collins).
 
669
     When using a progress bar, failed tests are printed out, rather than
 
670
     being overwritten by the progress bar until the suite finishes.
 
671
     (John Arbash Meinel)
 
672
 
 
673
   * 'bzr selftest --benchmark' will run a new benchmarking selftest.
 
674
     'bzr selftest --benchmark --lsprof-timed' will use lsprofile to generate
 
675
     profile data for the individual profiled calls, allowing for fine
 
676
     grained analysis of performance.
 
677
     (Robert Collins, Martin Pool).
 
678
 
 
679
   * 'bzr commit' shows a progress bar. This is useful for commits over sftp
 
680
     where commit can take an appreciable time. (Robert Collins)
 
681
 
 
682
   * 'bzr add' is now less verbose in telling you what ignore globs were
 
683
     matched by files being ignored. Instead it just tells you how many 
 
684
     were ignored (because you might reasonably be expecting none to be
 
685
     ignored). 'bzr add -v' is unchanged and will report every ignored
 
686
     file. (Robert Collins).
 
687
 
 
688
   * ftp now has a test server if medusa is installed. As part of testing,
 
689
     ftp support has been improved, including support for supplying a
 
690
     non-standard port. (John Arbash Meinel).
 
691
 
 
692
   * 'bzr log --line' shows the revision number, and uses only the
 
693
     first line of the log message (#5162, Alexander Belchenko;
 
694
     Matthieu Moy)
 
695
 
 
696
   * 'bzr status' has had the --all option removed. The 'bzr ls' command
 
697
     should be used to retrieve all versioned files. (Robert Collins)
 
698
 
 
699
   * 'bzr bundle OTHER/BRANCH' will create a bundle which can be sent
 
700
     over email, and applied on the other end, while maintaining ancestry.
 
701
     This bundle can be applied with either 'bzr merge' or 'bzr pull',
 
702
     the same way you would apply another branch.
 
703
     (John Arbash Meinel, Aaron Bentley)
 
704
  
 
705
   * 'bzr whoami' can now be used to set your identity from the command line,
 
706
     for a branch or globally.  (Robey Pointer)
 
707
 
 
708
   * 'bzr checkout' now aliased to 'bzr co', and 'bzr annotate' to 'bzr ann'.
 
709
     (Michael Ellerman)
 
710
 
 
711
   * 'bzr revert DIRECTORY' now reverts the contents of the directory as well.
 
712
     (Aaron Bentley)
 
713
 
 
714
   * 'bzr get sftp://foo' gives a better error when paramiko is not present.
 
715
     Also updates things like 'http+pycurl://' if pycurl is not present.
 
716
     (John Arbash Meinel) (Malone #47821, #52204)
 
717
 
 
718
   * New env variable BZR_PROGRESS_BAR, sets the default progress bar type.
 
719
     Can be set to 'none' or 'dummy' to disable the progress bar, 'dots' or 
 
720
     'tty' to create the respective type. (John Arbash Meinel, #42197, #51107)
 
721
 
 
722
   * Improve the help text for 'bzr diff' to explain what various options do.
 
723
     (John Arbash Meinel, #6391)
 
724
 
 
725
   * 'bzr uncommit -r 10' now uncommits revisions 11.. rather than uncommitting
 
726
     revision 10. This makes -r10 more in line with what other commands do.
 
727
     'bzr uncommit' also now saves the pending merges of the revisions that
 
728
     were removed. So it is safe to uncommit after a merge, fix something,
 
729
     and commit again. (John Arbash Meinel, #32526, #31426)
 
730
 
 
731
   * 'bzr init' now also works on remote locations.
 
732
     (Wouter van Heyst, #48904)
 
733
 
 
734
   * HTTP support has been updated. When using pycurl we now support 
 
735
     connection keep-alive, which reduces dns requests and round trips.
 
736
     And for both urllib and pycurl we support multi-range requests, 
 
737
     which decreases the number of round-trips. Performance results for
 
738
     ``bzr branch http://bazaar-vcs.org/bzr/bzr.dev/`` indicate
 
739
     http branching is now 2-3x faster, and ``bzr pull`` in an existing 
 
740
     branch is as much as 4x faster.
 
741
     (Michael Ellerman, Johan Rydberg, John Arbash Meinel, #46768)
 
742
 
 
743
   * Performance improvements for sftp. Branching and pulling are now up to
 
744
     2x faster. Utilize paramiko.readv() support for async requests if it
 
745
     is available (paramiko > 1.6) (John Arbash Meinel)
 
746
 
 
747
  BUG FIXES:
 
748
 
 
749
    * Fix shadowed definition of TestLocationConfig that caused some 
 
750
      tests not to run.  (#32587, Erik Bågfors, Michael Ellerman, 
 
751
      Martin Pool)
 
752
 
 
753
    * Fix unnecessary requirement of sign-my-commits that it be run from
 
754
      a working directory.  (Martin Pool, Robert Collins)
 
755
 
 
756
    * 'bzr push location' will only remember the push location if it succeeds
 
757
      in connecting to the remote location. (#49742, John Arbash Meinel)
 
758
 
 
759
    * 'bzr revert' no longer toggles the executable bit on win32
 
760
      (#45010, John Arbash Meinel)
 
761
 
 
762
    * Handle broken pipe under win32 correctly. (John Arbash Meinel)
 
763
    
 
764
    * sftp tests now work correctly on win32 if you have a newer paramiko
 
765
      (John Arbash Meinel)
 
766
 
 
767
    * Cleanup win32 test suite, and general cleanup of places where
 
768
      file handles were being held open. (John Arbash Meinel)
 
769
 
 
770
    * When specifying filenames for 'diff -r x..y', the name of the file in the
 
771
      working directory can be used, even if its name is different in both x
 
772
      and y.
 
773
 
 
774
    * File-ids containing single- or double-quotes are handled correctly by
 
775
      push.  (#52227, Aaron Bentley)
 
776
 
 
777
    * Normalize unicode filenames to ensure cross-platform consistency.
 
778
      (John Arbash Meinel, #43689)
 
779
 
 
780
    * The argument parser can now handle '-' as an argument. Currently
 
781
      no code interprets it specially (it is mostly handled as a file named 
 
782
      '-'). But plugins, and future operations can use it.
 
783
      (John Arbash meinel, #50984)
 
784
 
 
785
    * Bundles can properly read binary files with a plain '\r' in them.
 
786
      (John Arbash Meinel, #51927)
 
787
 
 
788
    * Tuning iter_entries() to be more efficient (John Arbash Meinel, #5444)
 
789
 
 
790
    * Lots of win32 fixes (the test suite passes again).
 
791
      (John Arbash Meinel, #50155)
 
792
 
 
793
    * Handle openbsd returning None for sys.getfilesystemencoding() (#41183) 
 
794
 
 
795
    * Support ftp APPE (append) to allow Knits to be used over ftp (#42592)
 
796
 
 
797
    * Removals are only committed if they match the filespec (or if there is
 
798
      no filespec).  (#46635, Aaron Bentley)
 
799
 
 
800
    * smart-add recurses through all supplied directories 
 
801
      (John Arbash Meinel, #52578)
 
802
 
 
803
    * Make the bundle reader extra lines before and after the bundle text.
 
804
      This allows you to parse an email with the bundle inline.
 
805
      (John Arbash Meinel, #49182)
 
806
 
 
807
    * Change the file id generator to squash a little bit more. Helps when
 
808
      working with long filenames on windows. (Also helps for unicode filenames
 
809
      not generating hidden files). (John Arbash Meinel, #43801)
 
810
 
 
811
    * Restore terminal mode on C-c while reading sftp password.  (#48923, 
 
812
      Nicholas Allen, Martin Pool)
 
813
 
 
814
    * Timestamps are rounded to 1ms, and revision entries can be recreated
 
815
      exactly. (John Arbash Meinel, Jamie Wilkinson, #40693)
 
816
 
 
817
    * Branch.base has changed to a URL, but ~/.bazaar/locations.conf should
 
818
      use local paths, since it is user visible (John Arbash Meinel, #53653)
 
819
 
 
820
    * ``bzr status foo`` when foo was unversioned used to cause a full delta
 
821
      to be generated (John Arbash Meinel, #53638)
 
822
 
 
823
    * When reading revision properties, an empty value should be considered
 
824
      the empty string, not None (John Arbash Meinel, #47782)
 
825
 
 
826
    * ``bzr diff --diff-options`` can now handle binary files being changed.
 
827
      Also, the output is consistent when --diff-options is not supplied.
 
828
      (John Arbash Meinel, #54651, #52930)
 
829
 
 
830
    * Use the right suffixes for loading plugins (John Arbash Meinel, #51810)
 
831
 
 
832
    * Fix Branch.get_parent() to handle the case when the parent is not 
 
833
      accessible (John Arbash Meinel, #52976)
 
834
 
 
835
  INTERNALS:
 
836
 
 
837
    * Combine the ignore rules into a single regex rather than looping over
 
838
      them to reduce the threshold where  N^2 behaviour occurs in operations
 
839
      like status. (Jan Hudec, Robert Collins).
 
840
 
 
841
    * Appending to bzrlib.DEFAULT_IGNORE is now deprecated. Instead, use
 
842
      one of the add functions in bzrlib.ignores. (John Arbash Meinel)
 
843
 
 
844
    * 'bzr push' should only push the ancestry of the current revision, not
 
845
      all of the history in the repository. This is especially important for
 
846
      shared repositories. (John Arbash Meinel)
 
847
 
 
848
    * bzrlib.delta.compare_trees now iterates in alphabetically sorted order,
 
849
      rather than randomly walking the inventories. (John Arbash Meinel)
 
850
 
 
851
    * Doctests are now run in temporary directories which are cleaned up when
 
852
      they finish, rather than using special ScratchDir/ScratchBranch objects.
 
853
      (Martin Pool)
 
854
 
 
855
    * Split ``check`` into separate methods on the branch and on the repository,
 
856
      so that it can be specialized in ways that are useful or efficient for
 
857
      different formats.  (Martin Pool, Robert Collins)
 
858
 
 
859
    * Deprecate Repository.all_revision_ids; most methods don't really need
 
860
      the global revision graph but only that part leading up to a particular
 
861
      revision.  (Martin Pool, Robert Collins)
 
862
 
 
863
    * Add a BzrDirFormat control_formats list which allows for control formats
 
864
      that do not use '.bzr' to store their data - i.e. '.svn', '.hg' etc.
 
865
      (Robert Collins, Jelmer Vernooij).
 
866
 
 
867
    * bzrlib.diff.external_diff can be redirected to any file-like object.
 
868
      Uses subprocess instead of spawnvp.
 
869
      (#4047, #48914, James Henstridge, John Arbash Meinel)
 
870
 
 
871
    * New command line option '--profile-imports', which will install a custom
 
872
      importer to log time to import modules and regex compilation time to 
 
873
      sys.stderr (John Arbash Meinel)
 
874
 
 
875
    * 'EmptyTree' is now deprecated, please use repository.revision_tree(None)
 
876
      instead. (Robert Collins)
 
877
 
 
878
    * "RevisionTree" is now in bzrlib/revisiontree.py. (Robert Collins)
 
879
 
 
880
bzr 0.8.2  2006-05-17
 
881
  
 
882
  BUG FIXES:
 
883
   
 
884
    * setup.py failed to install launchpad plugin.  (Martin Pool)
 
885
 
 
886
bzr 0.8.1  2006-05-16
 
887
 
 
888
  BUG FIXES:
 
889
 
 
890
    * Fix failure to commit a merge in a checkout.  (Martin Pool, 
 
891
      Robert Collins, Erik Bågfors, #43959)
 
892
 
 
893
    * Nicer messages from 'commit' in the case of renames, and correct
 
894
      messages when a merge has occured. (Robert Collins, Martin Pool)
 
895
 
 
896
    * Separate functionality from assert statements as they are skipped in
 
897
      optimized mode of python. Add the same check to pending merges.
 
898
      (#44443, Olaf Conradi)
 
899
 
 
900
  CHANGES:
 
901
 
 
902
    * Do not show the None revision in output of bzr ancestry. (Olaf Conradi)
 
903
 
 
904
    * Add info on standalone branches without a working tree.
 
905
      (#44155, Olaf Conradi)
 
906
 
 
907
    * Fix bug in knits when raising InvalidRevisionId. (#44284, Olaf Conradi)
 
908
 
 
909
  CHANGES:
 
910
 
 
911
    * Make editor invocation comply with Debian Policy. First check
 
912
      environment variables VISUAL and EDITOR, then try editor from
 
913
      alternatives system. If that all fails, fall back to the pre-defined
 
914
      list of editors. (#42904, Olaf Conradi)
 
915
 
 
916
  NEW FEATURES:
 
917
 
 
918
    * New 'register-branch' command registers a public branch into 
 
919
      Launchpad.net, where it can be associated with bugs, etc.
 
920
      (Martin Pool, Bjorn Tillenius, Robert Collins)
 
921
 
 
922
  INTERNALS:
 
923
 
 
924
    * New public api in InventoryEntry - 'describe_change(old, new)' which
 
925
      provides a human description of the changes between two old and
 
926
      new. (Robert Collins, Martin Pool)
 
927
 
 
928
  TESTING:
 
929
 
 
930
    * Fix test case for bzr info in upgrading a standalone branch to metadir,
 
931
      uses bzrlib api now. (Olaf Conradi)
 
932
 
 
933
bzr 0.8  2006-05-08
 
934
 
 
935
  NOTES WHEN UPGRADING:
 
936
 
 
937
    Release 0.8 of bzr introduces a new format for history storage, called
 
938
    'knit', as an evolution of to the 'weave' format used in 0.7.  Local 
 
939
    and remote operations are faster using knits than weaves.  Several
 
940
    operations including 'init', 'init-repo', and 'upgrade' take a 
 
941
    --format option that controls this.  Branching from an existing branch
 
942
    will keep the same format.
 
943
 
 
944
    It is possible to merge, pull and push between branches of different
 
945
    formats but this is slower than moving data between homogenous
 
946
    branches.  It is therefore recommended (but not required) that you
 
947
    upgrade all branches for a project at the same time.  Information on
 
948
    formats is shown by 'bzr info'.
 
949
 
 
950
    bzr 0.8 now allows creation of 'repositories', which hold the history 
 
951
    of files and revisions for several branches.  Previously bzr kept all
 
952
    the history for a branch within the .bzr directory at the root of the
 
953
    branch, and this is still the default.  To create a repository, use
 
954
    the new 'bzr init-repo' command.  Branches exist as directories under
 
955
    the repository and contain just a small amount of information
 
956
    indicating the current revision of the branch.
 
957
 
 
958
    bzr 0.8 also supports 'checkouts', which are similar to in cvs and
 
959
    subversion.  Checkouts are associated with a branch (optionally in a
 
960
    repository), which contains all the historical information.  The
 
961
    result is that a checkout can be deleted without losing any
 
962
    already-committed revisions.  A new 'update' command is also available. 
 
963
 
 
964
    Repositories and checkouts are not supported with the 0.7 storage
 
965
    format.  To use them you must upgrad to either knits, or to the
 
966
    'metaweave' format, which uses weaves but changes the .bzr directory
 
967
    arrangement.
 
968
    
 
969
 
 
970
  IMPROVEMENTS:
 
971
 
 
972
    * Sftp paths can now be relative, or local, according to the lftp
 
973
      convention. Paths now take the form:
 
974
      sftp://user:pass@host:port/~/relative/path
 
975
      or
 
976
      sftp://user:pass@host:port/absolute/path
 
977
 
 
978
    * The FTP transport now tries to reconnect after a temporary
 
979
      failure. ftp put is made atomic. (Matthieu Moy)
 
980
 
 
981
    * The FTP transport now maintains a pool of connections, and
 
982
      reuses them to avoid multiple connections to the same host (like
 
983
      sftp did). (Daniel Silverstone)
 
984
 
 
985
    * The bzr_man.py file has been removed. To create the man page now,
 
986
      use ./generate_docs.py man. The new program can also create other files.
 
987
      Run "python generate_docs.py --help" for usage information. (Hans
 
988
      Ulrich Niedermann & James Blackwell).
 
989
 
 
990
    * Man Page now gives full help (James Blackwell). Help also updated to 
 
991
      reflect user config now being stored in .bazaar (Hans Ulrich
 
992
      Niedermann)
 
993
 
 
994
    * It's now possible to set aliases in bazaar.conf (Erik Bågfors)
 
995
 
 
996
    * Pull now accepts a --revision argument (Erik Bågfors)
 
997
 
 
998
    * 'bzr re-sign' now allows multiple revisions to be supplied on the command
 
999
      line. You can now use the following command to sign all of your old commits.
 
1000
        find .bzr/revision-store// -name my@email-* \
 
1001
          | sed 's/.*\/\/..\///' \
 
1002
          | xargs bzr re-sign
 
1003
 
 
1004
    * Upgrade can now upgrade over the network. (Robert Collins)
 
1005
 
 
1006
    * Two new commands 'bzr checkout' and 'bzr update' allow for CVS/SVN-alike
 
1007
      behaviour.  By default they will cache history in the checkout, but
 
1008
      with --lightweight almost all data is kept in the master branch.
 
1009
      (Robert Collins)
 
1010
 
 
1011
    * 'revert' unversions newly-versioned files, instead of deleting them.
 
1012
 
 
1013
    * 'merge' is more robust.  Conflict messages have changed.
 
1014
 
 
1015
    * 'merge' and 'revert' no longer clobber existing files that end in '~' or
 
1016
      '.moved'.
 
1017
 
 
1018
    * Default log format can be set in configuration and plugins can register
 
1019
      their own formatters. (Erik Bågfors)
 
1020
 
 
1021
    * New 'reconcile' command will check branch consistency and repair indexes
 
1022
      that can become out of sync in pre 0.8 formats. (Robert Collins,
 
1023
      Daniel Silverstone)
 
1024
 
 
1025
    * New 'bzr init --format' and 'bzr upgrade --format' option to control 
 
1026
      what storage format is created or produced.  (Robert Collins, 
 
1027
      Martin Pool)
 
1028
 
 
1029
    * Add parent location to 'bzr info', if there is one.  (Olaf Conradi)
 
1030
 
 
1031
    * New developer commands 'weave-list' and 'weave-join'.  (Martin Pool)
 
1032
 
 
1033
    * New 'init-repository' command, plus support for repositories in 'init'
 
1034
      and 'branch' (Aaron Bentley, Erik Bågfors, Robert Collins)
 
1035
 
 
1036
    * Improve output of 'info' command. Show all relevant locations related to
 
1037
      working tree, branch and repository. Use kibibytes for binary quantities.
 
1038
      Fix off-by-one error in missing revisions of working tree.  Make 'info'
 
1039
      work on branches, repositories and remote locations.  Show locations
 
1040
      relative to the shared repository, if applicable.  Show locking status
 
1041
      of locations.  (Olaf Conradi)
 
1042
 
 
1043
    * Diff and merge now safely handle binary files. (Aaron Bentley)
 
1044
 
 
1045
    * 'pull' and 'push' now normalise the revision history, so that any two
 
1046
      branches with the same tip revision will have the same output from 'log'.
 
1047
      (Robert Collins)
 
1048
 
 
1049
    * 'merge' accepts --remember option to store parent location, like 'push'
 
1050
      and 'pull'. (Olaf Conradi)
 
1051
 
 
1052
    * bzr status and diff when files given as arguments do not exist
 
1053
      in the relevant trees.  (Martin Pool, #3619)
 
1054
 
 
1055
    * Add '.hg' to the default ignore list.  (Martin Pool)
 
1056
 
 
1057
    * 'knit' is now the default disk format. This improves disk performance and
 
1058
      utilization, increases incremental pull performance, robustness with SFTP
 
1059
      and allows checkouts over SFTP to perform acceptably. 
 
1060
      The initial Knit code was contributed by Johan Rydberg based on a
 
1061
      specification by Martin Pool.
 
1062
      (Robert Collins, Aaron Bentley, Johan Rydberg, Martin Pool).
 
1063
 
 
1064
    * New tool to generate all-in-one html version of the manual.  (Alexander
 
1065
      Belchenko)
 
1066
 
 
1067
    * Hitting CTRL-C while doing an SFTP push will no longer cause stale locks
 
1068
      to be left in the SFTP repository. (Robert Collins, Martin Pool).
 
1069
 
 
1070
    * New option 'diff --prefix' to control how files are named in diff
 
1071
      output, with shortcuts '-p0' and '-p1' corresponding to the options for 
 
1072
      GNU patch.  (Alexander Belchenko, Goffredo Baroncelli, Martin Pool)
 
1073
 
 
1074
    * Add --revision option to 'annotate' command.  (Olaf Conradi)
 
1075
 
 
1076
    * If bzr shows an unexpected revision-history after pulling (perhaps due
 
1077
      to a reweave) it can now be corrected by 'bzr reconcile'.
 
1078
      (Robert Collins)
 
1079
 
 
1080
  CHANGES:
 
1081
 
 
1082
    * Commit is now verbose by default, and shows changed filenames and the 
 
1083
      new revision number.  (Robert Collins, Martin Pool)
 
1084
 
 
1085
    * Unify 'mv', 'move', 'rename'.  (#5379, Matthew Fuller)
 
1086
 
 
1087
    * 'bzr -h' shows help.  (#35940, Martin Pool, Ian Bicking)
 
1088
 
 
1089
    * Make 'pull' and 'push' remember location on failure using --remember.
 
1090
      (Olaf Conradi)
 
1091
 
 
1092
    * For compatibility, make old format for using weaves inside metadir
 
1093
      available as 'metaweave' format.  Rename format 'metadir' to 'default'.
 
1094
      Clean up help for option --format in commands 'init', 'init-repo' and
 
1095
      'upgrade'.  (Olaf Conradi)
 
1096
 
 
1097
  INTERNALS:
 
1098
  
 
1099
    * The internal storage of history, and logical branch identity have now
 
1100
      been split into Branch, and Repository. The common locking and file 
 
1101
      management routines are now in bzrlib.lockablefiles. 
 
1102
      (Aaron Bentley, Robert Collins, Martin Pool)
 
1103
 
 
1104
    * Transports can now raise DependencyNotPresent if they need a library
 
1105
      which is not installed, and then another implementation will be 
 
1106
      tried.  (Martin Pool)
 
1107
 
 
1108
    * Remove obsolete (and no-op) `decode` parameter to `Transport.get`.  
 
1109
      (Martin Pool)
 
1110
 
 
1111
    * Using Tree Transform for merge, revert, tree-building
 
1112
 
 
1113
    * WorkingTree.create, Branch.create, WorkingTree.create_standalone,
 
1114
      Branch.initialize are now deprecated. Please see BzrDir.create_* for
 
1115
      replacement API's. (Robert Collins)
 
1116
 
 
1117
    * New BzrDir class represents the .bzr control directory and manages
 
1118
      formatting issues. (Robert Collins)
 
1119
 
 
1120
    * New repository.InterRepository class encapsulates Repository to 
 
1121
      Repository actions and allows for clean selection of optimised code
 
1122
      paths. (Robert Collins)
 
1123
 
 
1124
    * bzrlib.fetch.fetch and bzrlib.fetch.greedy_fetch are now deprecated,
 
1125
      please use 'branch.fetch' or 'repository.fetch' depending on your
 
1126
      needs. (Robert Collins)
 
1127
 
 
1128
    * deprecated methods now have a 'is_deprecated' flag on them that can
 
1129
      be checked, if you need to determine whether a given callable is 
 
1130
      deprecated at runtime. (Robert Collins)
 
1131
 
 
1132
    * Progress bars are now nested - see
 
1133
      bzrlib.ui.ui_factory.nested_progress_bar. (Robert Collins, Robey Pointer)
 
1134
 
 
1135
    * New API call get_format_description() for each type of format.
 
1136
      (Olaf Conradi)
 
1137
 
 
1138
    * Changed branch.set_parent() to accept None to remove parent.
 
1139
      (Olaf Conradi)
 
1140
 
 
1141
    * Deprecated BzrError AmbiguousBase.  (Olaf Conradi)
 
1142
 
 
1143
    * WorkingTree.branch is now a read only property.  (Robert Collins)
 
1144
 
 
1145
    * bzrlib.ui.text.TextUIFactory now accepts a bar_type parameter which
 
1146
      can be None or a factory that will create a progress bar. This is
 
1147
      useful for testing or for overriding the bzrlib.progress heuristic.
 
1148
      (Robert Collins)
 
1149
 
 
1150
    * New API method get_physical_lock_status() to query locks present on a
 
1151
      transport.  (Olaf Conradi)
 
1152
 
 
1153
    * Repository.reconcile now takes a thorough keyword parameter to allow
 
1154
      requesting an indepth reconciliation, rather than just a data-loss 
 
1155
      check. (Robert Collins)
 
1156
 
 
1157
    * bzrlib.ui.ui_factory protocol now supports 'get_boolean' to prompt
 
1158
      the user for yes/no style input. (Robert Collins)
 
1159
 
 
1160
  TESTING:
 
1161
 
 
1162
    * SFTP tests now shortcut the SSH negotiation, reducing test overhead
 
1163
      for testing SFTP protocol support. (Robey Pointer)
 
1164
 
 
1165
    * Branch formats are now tested once per implementation (see bzrlib.
 
1166
      tests.branch_implementations. This is analagous to the transport
 
1167
      interface tests, and has been followed up with working tree,
 
1168
      repository and BzrDir tests. (Robert Collins)
 
1169
 
 
1170
    * New test base class TestCaseWithTransport provides a transport aware
 
1171
      test environment, useful for testing any transport-interface using
 
1172
      code. The test suite option --transport controls the transport used
 
1173
      by this class (when its not being used as part of implementation
 
1174
      contract testing). (Robert Collins)
 
1175
 
 
1176
    * Close logging handler on disabling the test log. This will remove the
 
1177
      handler from the internal list inside python's logging module,
 
1178
      preventing shutdown from closing it twice.  (Olaf Conradi)
 
1179
 
 
1180
    * Move test case for uncommit to blackbox tests.  (Olaf Conradi)
 
1181
 
 
1182
    * run_bzr and run_bzr_captured now accept a 'stdin="foo"' parameter which
 
1183
      will provide String("foo") to the command as its stdin.
 
1184
 
 
1185
bzr 0.7 2006-01-09
 
1186
 
 
1187
  CHANGES:
 
1188
 
 
1189
    * .bzrignore is excluded from exports, on the grounds that it's a bzr 
 
1190
      internal-use file and may not be wanted.  (Jamie Wilkinson)
 
1191
 
 
1192
    * The "bzr directories" command were removed in favor of the new
 
1193
      --kind option to the "bzr inventory" command.  To list all 
 
1194
      versioned directories, now use "bzr inventory --kind directory".  
 
1195
      (Johan Rydberg)
 
1196
 
 
1197
    * Under Windows configuration directory is now %APPDATA%\bazaar\2.0
 
1198
      by default. (John Arbash Meinel)
 
1199
 
 
1200
    * The parent of Bzr configuration directory can be set by BZR_HOME
 
1201
      environment variable. Now the path for it is searched in BZR_HOME, then
 
1202
      in HOME. Under Windows the order is: BZR_HOME, APPDATA (usually
 
1203
      points to C:\Documents and Settings\User Name\Application Data), HOME.
 
1204
      (John Arbash Meinel)
 
1205
 
 
1206
    * Plugins with the same name in different directories in the bzr plugin
 
1207
      path are no longer loaded: only the first successfully loaded one is
 
1208
      used. (Robert Collins)
 
1209
 
 
1210
    * Use systems' external ssh command to open connections if possible.  
 
1211
      This gives better integration with user settings such as ProxyCommand.
 
1212
      (James Henstridge)
 
1213
 
 
1214
    * Permissions on files underneath .bzr/ are inherited from the .bzr 
 
1215
      directory. So for a shared repository, simply doing 'chmod -R g+w .bzr/'
 
1216
      will mean that future file will be created with group write permissions.
 
1217
 
 
1218
    * configure.in and config.guess are no longer in the builtin default 
 
1219
      ignore list.
 
1220
 
 
1221
    * '.sw[nop]' pattern ignored, to ignore vim swap files for nameless
 
1222
      files.  (John Arbash Meinel, Martin Pool)
 
1223
 
 
1224
  IMPROVEMENTS:
 
1225
 
 
1226
    * "bzr INIT dir" now initializes the specified directory, and creates 
 
1227
      it if it does not exist.  (John Arbash Meinel)
 
1228
 
 
1229
    * New remerge command (Aaron Bentley)
 
1230
 
 
1231
    * Better zsh completion script.  (Steve Borho)
 
1232
 
 
1233
    * 'bzr diff' now returns 1 when there are changes in the working 
 
1234
      tree. (Robert Collins)
 
1235
 
 
1236
    * 'bzr push' now exists and can push changes to a remote location. 
 
1237
      This uses the transport infrastructure, and can store the remote
 
1238
      location in the ~/.bazaar/branches.conf configuration file.
 
1239
      (Robert Collins)
 
1240
 
 
1241
    * Test directories are only kept if the test fails and the user requests
 
1242
      that they be kept.
 
1243
 
 
1244
    * Tweaks to short log printing
 
1245
 
 
1246
    * Added branch nicks, new nick command, printing them in log output. 
 
1247
      (Aaron Bentley)
 
1248
 
 
1249
    * If $BZR_PDB is set, pop into the debugger when an uncaught exception 
 
1250
      occurs.  (Martin Pool)
 
1251
 
 
1252
    * Accept 'bzr resolved' (an alias for 'bzr resolve'), as this is
 
1253
      the same as Subversion.  (Martin Pool)
 
1254
 
 
1255
    * New ftp transport support (on ftplib), for ftp:// and aftp:// 
 
1256
      URLs.  (Daniel Silverstone)
 
1257
 
 
1258
    * Commit editor temporary files now start with 'bzr_log.', to allow 
 
1259
      text editors to match the file name and set up appropriate modes or 
 
1260
      settings.  (Magnus Therning)
 
1261
 
 
1262
    * Improved performance when integrating changes from a remote weave.  
 
1263
      (Goffredo Baroncelli)
 
1264
 
 
1265
    * Sftp will attempt to cache the connection, so it is more likely that
 
1266
      a connection will be reused, rather than requiring multiple password
 
1267
      requests.
 
1268
 
 
1269
    * bzr revno now takes an optional argument indicating the branch whose
 
1270
      revno should be printed.  (Michael Ellerman)
 
1271
 
 
1272
    * bzr cat defaults to printing the last version of the file.  
 
1273
      (#3632, Matthieu Moy)
 
1274
 
 
1275
    * New global option 'bzr --lsprof COMMAND' runs bzr under the lsprof 
 
1276
      profiler.  (Denys Duchier)
 
1277
 
 
1278
    * Faster commits by reading only the headers of affected weave files. 
 
1279
      (Denys Duchier)
 
1280
 
 
1281
    * 'bzr add' now takes a --dry-run parameter which shows you what would be
 
1282
      added, but doesn't actually add anything. (Michael Ellerman)
 
1283
 
 
1284
    * 'bzr add' now lists how many files were ignored per glob.  add --verbose
 
1285
      lists the specific files.  (Aaron Bentley)
 
1286
 
 
1287
    * 'bzr missing' now supports displaying changes in diverged trees and can
 
1288
      be limited to show what either end of the comparison is missing.
 
1289
      (Aaron Bently, with a little prompting from Daniel Silverstone)
 
1290
 
 
1291
  BUG FIXES:
 
1292
 
 
1293
    * SFTP can walk up to the root path without index errors. (Robert Collins)
 
1294
 
 
1295
    * Fix bugs in running bzr with 'python -O'.  (Martin Pool)
 
1296
 
 
1297
    * Error when run with -OO
 
1298
 
 
1299
    * Fix bug in reporting http errors that don't have an http error code.
 
1300
      (Martin Pool)
 
1301
 
 
1302
    * Handle more cases of pipe errors in display commands
 
1303
 
 
1304
    * Change status to 3 for all errors
 
1305
 
 
1306
    * Files that are added and unlinked before committing are completely
 
1307
      ignored by diff and status
 
1308
 
 
1309
    * Stores with some compressed texts and some uncompressed texts are now
 
1310
      able to be used. (John A Meinel)
 
1311
 
 
1312
    * Fix for bzr pull failing sometimes under windows
 
1313
 
 
1314
    * Fix for sftp transport under windows when using interactive auth
 
1315
 
 
1316
    * Show files which are both renamed and modified as such in 'bzr 
 
1317
      status' output.  (#4503, Daniel Silverstone)
 
1318
 
 
1319
    * Make annotate cope better with revisions committed without a valid 
 
1320
      email address.  (Marien Zwart)
 
1321
 
 
1322
    * Fix representation of tab characters in commit messages.  (Harald 
 
1323
      Meland)
 
1324
 
 
1325
    * List of plugin directories in BZR_PLUGIN_PATH environment variable is
 
1326
      now parsed properly under Windows. (Alexander Belchenko)
 
1327
 
 
1328
    * Show number of revisions pushed/pulled/merged. (Robey Pointer)
 
1329
 
 
1330
    * Keep a cached copy of the basis inventory to speed up operations 
 
1331
      that need to refer to it.  (Johan Rydberg, Martin Pool)
 
1332
 
 
1333
    * Fix bugs in bzr status display of non-ascii characters.  (Martin 
 
1334
      Pool)
 
1335
 
 
1336
    * Remove Makefile.in from default ignore list.  (#6413, Tollef Fog 
 
1337
      Heen, Martin Pool)
 
1338
 
 
1339
    * Fix failure in 'bzr added'.  (Nathan McCallum, Martin Pool)
 
1340
 
 
1341
  TESTING:
 
1342
 
 
1343
    * Fix selftest asking for passwords when there are no SFTP keys.  
 
1344
      (Robey Pointer, Jelmer Vernooij) 
 
1345
 
 
1346
    * Fix selftest run with 'python -O'.  (Martin Pool)
 
1347
 
 
1348
    * Fix HTTP tests under Windows. (John Arbash Meinel)
 
1349
 
 
1350
    * Make tests work even if HOME is not set (Aaron Bentley)
 
1351
 
 
1352
    * Updated build_tree to use fixed line-endings for tests which read 
 
1353
      the file cotents and compare. Make some tests use this to pass under
 
1354
      Windows. (John Arbash Meinel)
 
1355
 
 
1356
    * Skip stat and symlink tests under Windows. (Alexander Belchenko)
 
1357
 
 
1358
    * Delay in selftest/testhashcash is now issued under win32 and Cygwin.
 
1359
      (John Arbash Meinel)
 
1360
 
 
1361
    * Use terminal width to align verbose test output.  (Martin Pool)
 
1362
 
 
1363
    * Blackbox tests are maintained within the bzrlib.tests.blackbox directory.
 
1364
      If adding a new test script please add that to
 
1365
      bzrlib.tests.blackbox.__init__. (Robert Collins)
 
1366
 
 
1367
    * Much better error message if one of the test suites can't be 
 
1368
      imported.  (Martin Pool)
 
1369
 
 
1370
    * Make check now runs the test suite twice - once with the default locale,
 
1371
      and once with all locales forced to C, to expose bugs. This is not 
 
1372
      trivially done within python, so for now its only triggered by running
 
1373
      Make check. Integrators and packagers who wish to check for full 
 
1374
      platform support should run 'make check' to test the source.
 
1375
      (Robert Collins)
 
1376
 
 
1377
    * Tests can now run TestSkipped if they can't execute for any reason.
 
1378
      (Martin Pool) (NB: TestSkipped should only be raised for correctable
 
1379
      reasons - see the wiki spec ImprovingBzrTestSuite).
 
1380
 
 
1381
    * Test sftp with relative, absolute-in-homedir and absolute-not-in-homedir
 
1382
      paths for the transport tests. Introduce blackbox remote sftp tests that
 
1383
      test the same permutations. (Robert Collins, Robey Pointer)
 
1384
 
 
1385
    * Transport implementation tests are now independent of the local file
 
1386
      system, which allows tests for esoteric transports, and for features
 
1387
      not available in the local file system. They also repeat for variations
 
1388
      on the URL scheme that can introduce issues in the transport code,
 
1389
      see bzrlib.transport.TransportTestProviderAdapter() for this.
 
1390
      (Robert Collins).
 
1391
 
 
1392
    * TestCase.build_tree uses the transport interface to build trees, pass
 
1393
      in a transport parameter to give it an existing connection.
 
1394
      (Robert Collins).
 
1395
 
 
1396
  INTERNALS:
 
1397
 
 
1398
    * WorkingTree.pull has been split across Branch and WorkingTree,
 
1399
      to allow Branch only pulls. (Robert Collins)
 
1400
 
 
1401
    * commands.display_command now returns the result of the decorated 
 
1402
      function. (Robert Collins)
 
1403
 
 
1404
    * LocationConfig now has a set_user_option(key, value) call to save
 
1405
      a setting in its matching location section (a new one is created
 
1406
      if needed). (Robert Collins)
 
1407
 
 
1408
    * Branch has two new methods, get_push_location and set_push_location
 
1409
      to respectively, get and set the push location. (Robert Collins)
 
1410
 
 
1411
    * commands.register_command now takes an optional flag to signal that
 
1412
      the registrant is planning to decorate an existing command. When 
 
1413
      given multiple plugins registering a command is not an error, and
 
1414
      the original command class (whether built in or a plugin based one) is
 
1415
      returned to the caller. There is a new error 'MustUseDecorated' for
 
1416
      signalling when a wrapping command should switch to the original
 
1417
      version. (Robert Collins)
 
1418
 
 
1419
    * Some option parsing errors will raise 'BzrOptionError', allowing 
 
1420
      granular detection for decorating commands. (Robert Collins).
 
1421
 
 
1422
    * Branch.read_working_inventory has moved to
 
1423
      WorkingTree.read_working_inventory. This necessitated changes to
 
1424
      Branch.get_root_id, and a move of Branch.set_inventory to WorkingTree
 
1425
      as well. To make it clear that a WorkingTree cannot always be obtained
 
1426
      Branch.working_tree() will raise 'errors.NoWorkingTree' if one cannot
 
1427
      be obtained. (Robert Collins)
 
1428
 
 
1429
    * All pending merges operations from Branch are now on WorkingTree.
 
1430
      (Robert Collins)
 
1431
 
 
1432
    * The follow operations from Branch have moved to WorkingTree:
 
1433
      add()
 
1434
      commit()
 
1435
      move()
 
1436
      rename_one()
 
1437
      unknowns()
 
1438
      (Robert Collins)
 
1439
 
 
1440
    * bzrlib.add.smart_add_branch is now smart_add_tree. (Robert Collins)
 
1441
 
 
1442
    * New "rio" serialization format, similar to rfc-822. (Martin Pool)
 
1443
 
 
1444
    * Rename selftests to `bzrlib.tests.test_foo`.  (John A Meinel, Martin 
 
1445
      Pool)
 
1446
 
 
1447
    * bzrlib.plugin.all_plugins has been changed from an attribute to a 
 
1448
      query method. (Robert Collins)
 
1449
 
 
1450
    * New options to read only the table-of-contents of a weave.  
 
1451
      (Denys Duchier)
 
1452
 
 
1453
    * Raise NoSuchFile when someone tries to add a non-existant file.
 
1454
      (Michael Ellerman)
 
1455
 
 
1456
    * Simplify handling of DivergedBranches in cmd_pull().
 
1457
      (Michael Ellerman)
 
1458
                   
 
1459
   
 
1460
    * Branch.controlfile* logic has moved to lockablefiles.LockableFiles, which
 
1461
      is exposed as Branch().control_files. Also this has been altered with the
 
1462
      controlfile pre/suffix replaced by simple method names like 'get' and
 
1463
      'put'. (Aaron Bentley, Robert Collins).
 
1464
 
 
1465
    * Deprecated functions and methods can now be marked as such using the 
 
1466
      bzrlib.symbol_versioning module. Marked method have their docstring
 
1467
      updated and will issue a DeprecationWarning using the warnings module
 
1468
      when they are used. (Robert Collins)
 
1469
 
 
1470
    * bzrlib.osutils.safe_unicode now exists to provide parameter coercion
 
1471
      for functions that need unicode strings. (Robert Collins)
 
1472
 
 
1473
bzr 0.6 2005-10-28
 
1474
 
 
1475
  IMPROVEMENTS:
 
1476
  
 
1477
    * pull now takes --verbose to show you what revisions are added or removed
 
1478
      (John A Meinel)
 
1479
 
 
1480
    * merge now takes a --show-base option to include the base text in
 
1481
      conflicts.
 
1482
      (Aaron Bentley)
 
1483
 
 
1484
    * The config files are now read using ConfigObj, so '=' should be used as
 
1485
      a separator, not ':'.
 
1486
      (Aaron Bentley)
 
1487
 
 
1488
    * New 'bzr commit --strict' option refuses to commit if there are 
 
1489
      any unknown files in the tree.  To commit, make sure all files are 
 
1490
      either ignored, added, or deleted.  (Michael Ellerman)
 
1491
 
 
1492
    * The config directory is now ~/.bazaar, and there is a single file 
 
1493
      ~/.bazaar/bazaar.conf storing email, editor and other preferences.
 
1494
      (Robert Collins)
 
1495
 
 
1496
    * 'bzr add' no longer takes a --verbose option, and a --quiet option
 
1497
      has been added that suppresses all output.
 
1498
 
 
1499
    * Improved zsh completion support in contrib/zsh, from Clint
 
1500
      Adams.
 
1501
 
 
1502
    * Builtin 'bzr annotate' command, by Martin Pool with improvements from 
 
1503
      Goffredo Baroncelli.
 
1504
    
 
1505
    * 'bzr check' now accepts -v for verbose reporting, and checks for
 
1506
      ghosts in the branch. (Robert Collins)
 
1507
 
 
1508
    * New command 're-sign' which will regenerate the gpg signature for 
 
1509
      a revision. (Robert Collins)
 
1510
 
 
1511
    * If you set check_signatures=require for a path in 
 
1512
      ~/.bazaar/branches.conf then bzr will invoke your
 
1513
      gpg_signing_command (defaults to gpg) and record a digital signature
 
1514
      of your commit. (Robert Collins)
 
1515
 
 
1516
    * New sftp transport, based on Paramiko.  (Robey Pointer)
 
1517
 
 
1518
    * 'bzr pull' now accepts '--clobber' which will discard local changes
 
1519
      and make this branch identical to the source branch. (Robert Collins)
 
1520
 
 
1521
    * Just give a quieter warning if a plugin can't be loaded, and 
 
1522
      put the details in .bzr.log.  (Martin Pool)
 
1523
 
 
1524
    * 'bzr branch' will now set the branch-name to the last component of the
 
1525
      output directory, if one was supplied.
 
1526
 
 
1527
    * If the option 'post_commit' is set to one (or more) python function
 
1528
      names (must be in the bzrlib namespace), then they will be invoked
 
1529
      after the commit has completed, with the branch and revision_id as
 
1530
      parameters. (Robert Collins)
 
1531
 
 
1532
    * Merge now has a retcode of 1 when conflicts occur. (Robert Collins)
 
1533
 
 
1534
    * --merge-type weave is now supported for file contents.  Tree-shape
 
1535
      changes are still three-way based.  (Martin Pool, Aaron Bentley)
 
1536
 
 
1537
    * 'bzr check' allows the first revision on revision-history to have
 
1538
      parents - something that is expected for cheap checkouts, and occurs
 
1539
      when conversions from baz do not have all history.  (Robert Collins).
 
1540
 
 
1541
   * 'bzr merge' can now graft unrelated trees together, if your specify
 
1542
     0 as a base. (Aaron Bentley)
 
1543
 
 
1544
   * 'bzr commit branch' and 'bzr commit branch/file1 branch/file2' now work
 
1545
     (Aaron Bentley)
 
1546
 
 
1547
    * Add '.sconsign*' to default ignore list.  (Alexander Belchenko)
 
1548
 
 
1549
   * 'bzr merge --reprocess' minimizes conflicts
 
1550
 
 
1551
  TESTING:
 
1552
 
 
1553
    * The 'bzr selftest --pattern' option for has been removed, now 
 
1554
      test specifiers on the command line can be simple strings, or 
 
1555
      regexps, or both. (Robert Collins)
 
1556
 
 
1557
    * Passing -v to selftest will now show the time each test took to 
 
1558
      complete, which will aid in analysing performance regressions and
 
1559
      related questions. (Robert Collins)
 
1560
 
 
1561
    * 'bzr selftest' runs all tests, even if one fails, unless '--one'
 
1562
      is given. (Martin Pool)
 
1563
 
 
1564
    * There is a new method for TestCaseInTempDir, assertFileEqual, which
 
1565
      will check that a given content is equal to the content of the named
 
1566
      file. (Robert Collins)
 
1567
 
 
1568
    * Fix test suite's habit of leaving many temporary log files in $TMPDIR.
 
1569
      (Martin Pool)
 
1570
 
 
1571
  INTERNALS:
 
1572
 
 
1573
    * New 'testament' command and concept for making gpg-signatures 
 
1574
      of revisions that are not tied to a particular internal
 
1575
      representation.  (Martin Pool).
 
1576
 
 
1577
    * Per-revision properties ('revprops') as key-value associated 
 
1578
      strings on each revision created when the revision is committed.
 
1579
      Intended mainly for the use of external tools.  (Martin Pool).
 
1580
 
 
1581
    * Config options have moved from bzrlib.osutils to bzrlib.config.
 
1582
      (Robert Collins)
 
1583
 
 
1584
    * Improved command line option definitions allowing explanations
 
1585
      for individual options, among other things.  Contributed by 
 
1586
      Magnus Therning.
 
1587
 
 
1588
    * Config options have moved from bzrlib.osutils to bzrlib.config.
 
1589
      Configuration is now done via the config.Config interface:
 
1590
      Depending on whether you have a Branch, a Location or no information
 
1591
      available, construct a ``*Config``, and use its ``signature_checking``,
 
1592
      ``username`` and ``user_email`` methods. (Robert Collins)
 
1593
 
 
1594
    * Plugins are now loaded under bzrlib.plugins, not bzrlib.plugin, and
 
1595
      they are made available for other plugins to use. You should not 
 
1596
      import other plugins during the __init__ of your plugin though, as 
 
1597
      no ordering is guaranteed, and the plugins directory is not on the
 
1598
      python path. (Robert Collins)
 
1599
 
 
1600
    * Branch.relpath has been moved to WorkingTree.relpath. WorkingTree no
 
1601
      no longer takes an inventory, rather it takes an option branch
 
1602
      parameter, and if None is given will open the branch at basedir 
 
1603
      implicitly. (Robert Collins)
 
1604
 
 
1605
    * Cleaner exception structure and error reporting.  Suggested by 
 
1606
      Scott James Remnant.  (Martin Pool)
 
1607
 
 
1608
    * Branch.remove has been moved to WorkingTree, which has also gained
 
1609
      lock_read, lock_write and unlock methods for convenience. (Robert
 
1610
      Collins)
 
1611
 
 
1612
    * Two decorators, needs_read_lock and needs_write_lock have been added
 
1613
      to the branch module. Use these to cause a function to run in a
 
1614
      read or write lock respectively. (Robert Collins)
 
1615
 
 
1616
    * Branch.open_containing now returns a tuple (Branch, relative-path),
 
1617
      which allows direct access to the common case of 'get me this file
 
1618
      from its branch'. (Robert Collins)
 
1619
 
 
1620
    * Transports can register using register_lazy_transport, and they 
 
1621
      will be loaded when first used.  (Martin Pool)
 
1622
 
 
1623
    * 'pull' has been factored out of the command as WorkingTree.pull().
 
1624
      A new option to WorkingTree.pull has been added, clobber, which will
 
1625
      ignore diverged history and pull anyway.
 
1626
      (Robert Collins)
 
1627
 
 
1628
    * config.Config has a 'get_user_option' call that accepts an option name.
 
1629
      This will be looked up in branches.conf and bazaar.conf as normal.
 
1630
      It is intended that this be used by plugins to support options - 
 
1631
      options of built in programs should have specific methods on the config.
 
1632
      (Robert Collins)
 
1633
 
 
1634
    * merge.merge_inner now has tempdir as an optional parameter. (Robert
 
1635
      Collins)
 
1636
 
 
1637
    * Tree.kind is not recorded at the top level of the hierarchy, as it was
 
1638
      missing on EmptyTree, leading to a bug with merge on EmptyTrees.
 
1639
      (Robert Collins)
 
1640
 
 
1641
    * WorkingTree.__del__ has been removed, it was non deterministic and not 
 
1642
      doing what it was intended to. See WorkingTree.__init__ for a comment
 
1643
      about future directions. (Robert Collins/Martin Pool)
 
1644
 
 
1645
    * bzrlib.transport.http has been modified so that only 404 urllib errors
 
1646
      are returned as NoSuchFile. Other exceptions will propogate as normal.
 
1647
      This allows debuging of actual errors. (Robert Collins)
 
1648
 
 
1649
    * bzrlib.transport.Transport now accepts *ONLY* url escaped relative paths
 
1650
      to apis like 'put', 'get' and 'has'. This is to provide consistent
 
1651
      behaviour - it operates on url's only. (Robert Collins)
 
1652
 
 
1653
    * Transports can register using register_lazy_transport, and they 
 
1654
      will be loaded when first used.  (Martin Pool)
 
1655
 
 
1656
    * 'merge_flex' no longer calls conflict_handler.finalize(), instead that
 
1657
      is called by merge_inner. This is so that the conflict count can be 
 
1658
      retrieved (and potentially manipulated) before returning to the caller
 
1659
      of merge_inner. Likewise 'merge' now returns the conflict count to the
 
1660
      caller. (Robert Collins)
 
1661
 
 
1662
    * 'revision.revision_graph can handle having only partial history for
 
1663
      a revision - that is no revisions in the graph with no parents.
 
1664
      (Robert Collins).
 
1665
 
 
1666
    * New builtins.branch_files uses the standard file_list rules to produce
 
1667
      a branch and a list of paths, relative to that branch (Aaron Bentley)
 
1668
 
 
1669
    * New TestCase.addCleanup facility.
 
1670
 
 
1671
    * New bzrlib.version_info tuple (similar to sys.version_info), which can
 
1672
      be used by programs importing bzrlib.
 
1673
 
 
1674
  BUG FIXES:
 
1675
 
 
1676
    * Better handling of branches in directories with non-ascii names. 
 
1677
      (Joel Rosdahl, Panagiotis Papadakos)
 
1678
 
 
1679
    * Upgrades of trees with no commits will not fail due to accessing
 
1680
      [-1] in the revision-history. (Andres Salomon)
 
1681
 
 
1682
 
 
1683
bzr 0.1.1 2005-10-12
 
1684
 
 
1685
  BUG FIXES:
 
1686
 
 
1687
    * Fix problem in pulling over http from machines that do not 
 
1688
      allow directories to be listed.
 
1689
 
 
1690
    * Avoid harmless warning about invalid hash cache after 
 
1691
      upgrading branch format.
 
1692
 
 
1693
  PERFORMANCE: 
 
1694
  
 
1695
    * Avoid some unnecessary http operations in branch and pull.
 
1696
 
 
1697
 
 
1698
bzr 0.1 2005-10-11
 
1699
 
 
1700
  NOTES:
 
1701
 
 
1702
    * 'bzr branch' over http initially gives a very high estimate
 
1703
      of completion time but it should fall as the first few 
 
1704
      revisions are pulled in.  branch is still slow on 
 
1705
      high-latency connections.
 
1706
 
 
1707
  BUG FIXES:
 
1708
  
 
1709
    * bzr-man.py has been updated to work again. Contributed by
 
1710
      Rob Weir.
 
1711
 
 
1712
    * Locking is now done with fcntl.lockf which works with NFS
 
1713
      file systems. Contributed by Harald Meland.
 
1714
 
 
1715
    * When a merge encounters a file that has been deleted on
 
1716
      one side and modified on the other, the old contents are
 
1717
      written out to foo.BASE and foo.SIDE, where SIDE is this
 
1718
      or OTHER. Contributed by Aaron Bentley.
 
1719
 
 
1720
    * Export was choosing incorrect file paths for the content of
 
1721
      the tarball, this has been fixed by Aaron Bentley.
 
1722
 
 
1723
    * Commit will no longer commit without a log message, an 
 
1724
      error is returned instead. Contributed by Jelmer Vernooij.
 
1725
 
 
1726
    * If you commit a specific file in a sub directory, any of its
 
1727
      parent directories that are added but not listed will be 
 
1728
      automatically included. Suggested by Michael Ellerman.
 
1729
 
 
1730
    * bzr commit and upgrade did not correctly record new revisions
 
1731
      for files with only a change to their executable status.
 
1732
      bzr will correct this when it encounters it. Fixed by
 
1733
      Robert Collins
 
1734
 
 
1735
    * HTTP tests now force off the use of http_proxy for the duration.
 
1736
      Contributed by Gustavo Niemeyer.
 
1737
 
 
1738
    * Fix problems in merging weave-based branches that have 
 
1739
      different partial views of history.
 
1740
 
 
1741
    * Symlink support: working with symlinks when not in the root of a 
 
1742
      bzr tree was broken, patch from Scott James Remnant.
 
1743
 
 
1744
  IMPROVEMENTS:
 
1745
 
 
1746
    * 'branch' now accepts a --basis parameter which will take advantage
 
1747
      of local history when making a new branch. This allows faster 
 
1748
      branching of remote branches. Contributed by Aaron Bentley.
 
1749
 
 
1750
    * New tree format based on weave files, called version 5.
 
1751
      Existing branches can be upgraded to this format using 
 
1752
      'bzr upgrade'.
 
1753
 
 
1754
    * Symlinks are now versionable. Initial patch by 
 
1755
      Erik Toubro Nielsen, updated to head by Robert Collins.
 
1756
 
 
1757
    * Executable bits are tracked on files. Patch from Gustavo
 
1758
      Niemeyer.
 
1759
 
 
1760
    * 'bzr status' now shows unknown files inside a selected directory.
 
1761
      Patch from Heikki Paajanen.
 
1762
 
 
1763
    * Merge conflicts are recorded in .bzr. Two new commands 'conflicts'
 
1764
      and 'resolve' have needed added, which list and remove those 
 
1765
      merge conflicts respectively. A conflicted tree cannot be committed
 
1766
      in. Contributed by Aaron Bentley.
 
1767
 
 
1768
    * 'rm' is now an alias for 'remove'.
 
1769
 
 
1770
    * Stores now split out their content in a single byte prefixed hash,
 
1771
      dropping the density of files per directory by 256. Contributed by
 
1772
      Gustavo Niemeyer.
 
1773
 
 
1774
    * 'bzr diff -r branch:URL' will now perform a diff between two branches.
 
1775
      Contributed by Robert Collins.
 
1776
 
 
1777
    * 'bzr log' with the default formatter will show merged revisions,
 
1778
      indented to the right. Initial implementation contributed by Gustavo
 
1779
      Niemeyer, made incremental by Robert Collins.
 
1780
 
 
1781
 
 
1782
  INTERNALS:
 
1783
 
 
1784
    * Test case failures have the exception printed after the log 
 
1785
      for your viewing pleasure.
 
1786
 
 
1787
    * InventoryEntry is now an abstract base class, use one of the
 
1788
      concrete InventoryDirectory etc classes instead.
 
1789
 
 
1790
    * Branch raises an UnsupportedFormatError when it detects a 
 
1791
      bzr branch it cannot understand. This allows for precise
 
1792
      handling of such circumstances.
 
1793
 
 
1794
 
 
1795
  TESTING:
 
1796
 
 
1797
    * Removed testsweet module so that tests can be run after 
 
1798
      bzr installed by 'bzr selftest'.
 
1799
 
 
1800
    * 'bzr selftest' command-line arguments can now be partial ids
 
1801
      of tests to run, e.g. 'bzr selftest test_weave'
 
1802
 
 
1803
      
 
1804
bzr 0.0.9 2005-09-23
 
1805
 
 
1806
  BUG FIXES:
 
1807
 
 
1808
    * Fixed "branch -r" option.
 
1809
 
 
1810
    * Fix remote access to branches containing non-compressed history.
 
1811
      (Robert Collins).
 
1812
 
 
1813
    * Better reliability of http server tests.  (John Arbash-Meinel)
 
1814
 
 
1815
    * Merge graph maximum distance calculation fix.  (Aaron Bentley)
 
1816
   
 
1817
    * Various minor bug in windows support have been fixed, largely in the
 
1818
      test suite. Contributed by Alexander Belchenko.
 
1819
 
 
1820
  IMPROVEMENTS:
 
1821
 
 
1822
    * Status now accepts a -r argument to give status between chosen
 
1823
      revisions. Contributed by Heikki Paajanen.
 
1824
 
 
1825
    * Revision arguments no longer use +/-/= to control ranges, instead
 
1826
      there is a 'before' namespace, which limits the successive namespace.
 
1827
      For example '$ bzr log -r date:yesterday..before:date:today' will
 
1828
      select everything from yesterday and before today. Contributed by
 
1829
      Robey Pointer
 
1830
 
 
1831
    * There is now a bzr.bat file created by distutils when building on 
 
1832
      Windows. Contributed by Alexander Belchenko.
 
1833
 
 
1834
  INTERNALS:
 
1835
 
 
1836
    * Removed uuid() as it was unused.
 
1837
 
 
1838
    * Improved 'fetch' code for pulling revisions from one branch into
 
1839
      another (used by pull, merged, etc.)
 
1840
 
 
1841
 
 
1842
bzr 0.0.8 2005-09-20
 
1843
 
 
1844
  IMPROVEMENTS:
 
1845
 
 
1846
    * Adding a file whose parent directory is not versioned will
 
1847
      implicitly add the parent, and so on up to the root. This means
 
1848
      you should never need to explictly add a directory, they'll just
 
1849
      get added when you add a file in the directory.  Contributed by
 
1850
      Michael Ellerman.
 
1851
 
 
1852
    * Ignore .DS_Store (contains Mac metadata) by default.  Patch from
 
1853
      Nir Soffer.
 
1854
 
 
1855
    * If you set BZR_EDITOR in the environment, it is checked in
 
1856
      preference to EDITOR and the config file for the interactive commit
 
1857
      editing program. Related to this is a bugfix where a missing program
 
1858
      set in EDITOR would cause editing to fail, now the fallback program
 
1859
      for the operating system is still tried.
 
1860
 
 
1861
    * Files that are not directories/symlinks/regular files will no longer
 
1862
      cause bzr to fail, it will just ignore them by default. You cannot add
 
1863
      them to the tree though - they are not versionable.
 
1864
 
 
1865
 
 
1866
  INTERNALS:
 
1867
 
 
1868
    * Refactor xml packing/unpacking.
 
1869
 
 
1870
  BUG FIXES: 
 
1871
 
 
1872
    * Fixed 'bzr mv' by Ollie Rutherfurd.
 
1873
 
 
1874
    * Fixed strange error when trying to access a nonexistent http
 
1875
      branch.
 
1876
 
 
1877
    * Make sure that the hashcache gets written out if it can't be
 
1878
      read.
 
1879
 
 
1880
 
 
1881
  PORTABILITY:
 
1882
 
 
1883
    * Various Windows fixes from Ollie Rutherfurd.
 
1884
 
 
1885
    * Quieten warnings about locking; patch from Matt Lavin.
 
1886
 
 
1887
 
 
1888
bzr-0.0.7 2005-09-02
 
1889
 
 
1890
  NEW FEATURES:
 
1891
 
 
1892
    * ``bzr shell-complete`` command contributed by Clint Adams to
 
1893
      help with intelligent shell completion.
 
1894
 
 
1895
    * New expert command ``bzr find-merge-base`` for debugging merges.
 
1896
 
 
1897
 
 
1898
  ENHANCEMENTS:
 
1899
 
 
1900
    * Much better merge support.
 
1901
 
 
1902
    * merge3 conflicts are now reported with markers like '<<<<<<<'
 
1903
      (seven characters) which is the same as CVS and pleases things
 
1904
      like emacs smerge.
 
1905
 
 
1906
 
 
1907
  BUG FIXES:
 
1908
 
 
1909
    * ``bzr upgrade`` no longer fails when trying to fix trees that
 
1910
      mention revisions that are not present.
 
1911
 
 
1912
    * Fixed bugs in listing plugins from ``bzr plugins``.
 
1913
 
 
1914
    * Fix case of $EDITOR containing options for the editor.
 
1915
 
 
1916
    * Fix log -r refusing to show the last revision.
 
1917
      (Patch from Goffredo Baroncelli.)
 
1918
 
 
1919
 
 
1920
  CHANGES:
 
1921
 
 
1922
    * ``bzr log --show-ids`` shows the revision ids of all parents.
 
1923
 
 
1924
    * Externally provided commands on your $BZRPATH no longer need
 
1925
      to recognize --bzr-usage to work properly, and can just handle
 
1926
      --help themselves.
 
1927
 
 
1928
 
 
1929
  LIBRARY:
 
1930
 
 
1931
    * Changed trace messages to go through the standard logging
 
1932
      framework, so that they can more easily be redirected by
 
1933
      libraries.
 
1934
 
 
1935
 
 
1936
 
 
1937
bzr-0.0.6 2005-08-18
 
1938
 
 
1939
  NEW FEATURES:
 
1940
 
 
1941
    * Python plugins, automatically loaded from the directories on
 
1942
      BZR_PLUGIN_PATH or ~/.bzr.conf/plugins by default.
 
1943
 
 
1944
    * New 'bzr mkdir' command.
 
1945
 
 
1946
    * Commit mesage is fetched from an editor if not given on the
 
1947
      command line; patch from Torsten Marek.
 
1948
 
 
1949
    * ``bzr log -m FOO`` displays commits whose message matches regexp 
 
1950
      FOO.
 
1951
      
 
1952
    * ``bzr add`` with no arguments adds everything under the current directory.
 
1953
 
 
1954
    * ``bzr mv`` does move or rename depending on its arguments, like
 
1955
      the Unix command.
 
1956
 
 
1957
    * ``bzr missing`` command shows a summary of the differences
 
1958
      between two trees.  (Merged from John Arbash-Meinel.)
 
1959
 
 
1960
    * An email address for commits to a particular tree can be
 
1961
      specified by putting it into .bzr/email within a branch.  (Based
 
1962
      on a patch from Heikki Paajanen.)
 
1963
 
 
1964
 
 
1965
  ENHANCEMENTS:
 
1966
 
 
1967
    * Faster working tree operations.
 
1968
 
 
1969
 
 
1970
  CHANGES:
 
1971
 
 
1972
    * 3rd-party modules shipped with bzr are copied within the bzrlib
 
1973
      python package, so that they can be installed by the setup
 
1974
      script without clashing with anything already existing on the
 
1975
      system.  (Contributed by Gustavo Niemeyer.)
 
1976
 
 
1977
    * Moved plugins directory to bzrlib/, so that there's a standard
 
1978
      plugin directory which is not only installed with bzr itself but
 
1979
      is also available when using bzr from the development tree.
 
1980
      BZR_PLUGIN_PATH and DEFAULT_PLUGIN_PATH are then added to the
 
1981
      standard plugins directory.
 
1982
 
 
1983
    * When exporting to a tarball with ``bzr export --format tgz``, put 
 
1984
      everything under a top directory rather than dumping it into the
 
1985
      current directory.   This can be overridden with the ``--root`` 
 
1986
      option.  Patch from William Dodé and John Meinel.
 
1987
 
 
1988
    * New ``bzr upgrade`` command to upgrade the format of a branch,
 
1989
      replacing ``bzr check --update``.
 
1990
 
 
1991
    * Files within store directories are no longer marked readonly on
 
1992
      disk.
 
1993
 
 
1994
    * Changed ``bzr log`` output to a more compact form suggested by
 
1995
      John A Meinel.  Old format is available with the ``--long`` or
 
1996
      ``-l`` option, patched by William Dodé.
 
1997
 
 
1998
    * By default the commit command refuses to record a revision with
 
1999
      no changes unless the ``--unchanged`` option is given.
 
2000
 
 
2001
    * The ``--no-plugins``, ``--profile`` and ``--builtin`` command
 
2002
      line options must come before the command name because they 
 
2003
      affect what commands are available; all other options must come 
 
2004
      after the command name because their interpretation depends on
 
2005
      it.
 
2006
 
 
2007
    * ``branch`` and ``clone`` added as aliases for ``branch``.
 
2008
 
 
2009
    * Default log format is back to the long format; the compact one
 
2010
      is available with ``--short``.
 
2011
      
 
2012
      
 
2013
  BUG FIXES:
 
2014
  
 
2015
    * Fix bugs in committing only selected files or within a subdirectory.
 
2016
 
 
2017
 
 
2018
bzr-0.0.5  2005-06-15
 
2019
  
 
2020
  CHANGES:
 
2021
 
 
2022
    * ``bzr`` with no command now shows help rather than giving an
 
2023
      error.  Suggested by Michael Ellerman.
 
2024
 
 
2025
    * ``bzr status`` output format changed, because svn-style output
 
2026
      doesn't really match the model of bzr.  Now files are grouped by
 
2027
      status and can be shown with their IDs.  ``bzr status --all``
 
2028
      shows all versioned files and unknown files but not ignored files.
 
2029
 
 
2030
    * ``bzr log`` runs from most-recent to least-recent, the reverse
 
2031
      of the previous order.  The previous behaviour can be obtained
 
2032
      with the ``--forward`` option.
 
2033
        
 
2034
    * ``bzr inventory`` by default shows only filenames, and also ids
 
2035
      if ``--show-ids`` is given, in which case the id is the second
 
2036
      field.
 
2037
 
 
2038
 
 
2039
  ENHANCEMENTS:
 
2040
 
 
2041
    * New 'bzr whoami --email' option shows only the email component
 
2042
      of the user identification, from Jo Vermeulen.
 
2043
 
 
2044
    * New ``bzr ignore PATTERN`` command.
 
2045
 
 
2046
    * Nicer error message for broken pipe, interrupt and similar
 
2047
      conditions that don't indicate an internal error.
 
2048
 
 
2049
    * Add ``.*.sw[nop] .git .*.tmp *,v`` to default ignore patterns.
 
2050
 
 
2051
    * Per-branch locks keyed on ``.bzr/branch-lock``, available in
 
2052
      either read or write mode.
 
2053
 
 
2054
    * New option ``bzr log --show-ids`` shows revision and file ids.
 
2055
 
 
2056
    * New usage ``bzr log FILENAME`` shows only revisions that
 
2057
      affected that file.
 
2058
 
 
2059
    * Changed format for describing changes in ``bzr log -v``.
 
2060
 
 
2061
    * New option ``bzr commit --file`` to take a message from a file,
 
2062
      suggested by LarstiQ.
 
2063
 
 
2064
    * New syntax ``bzr status [FILE...]`` contributed by Bartosz
 
2065
      Oler.  File may be in a branch other than the working directory.
 
2066
 
 
2067
    * ``bzr log`` and ``bzr root`` can be given an http URL instead of
 
2068
      a filename.
 
2069
 
 
2070
    * Commands can now be defined by external programs or scripts
 
2071
      in a directory on $BZRPATH.
 
2072
 
 
2073
    * New "stat cache" avoids reading the contents of files if they 
 
2074
      haven't changed since the previous time.
 
2075
 
 
2076
    * If the Python interpreter is too old, try to find a better one
 
2077
      or give an error.  Based on a patch from Fredrik Lundh.
 
2078
 
 
2079
    * New optional parameter ``bzr info [BRANCH]``.
 
2080
 
 
2081
    * New form ``bzr commit SELECTED`` to commit only selected files.
 
2082
 
 
2083
    * New form ``bzr log -r FROM:TO`` shows changes in selected
 
2084
      range; contributed by John A Meinel.
 
2085
 
 
2086
    * New option ``bzr diff --diff-options 'OPTS'`` allows passing
 
2087
      options through to an external GNU diff.
 
2088
 
 
2089
    * New option ``bzr add --no-recurse`` to add a directory but not
 
2090
      their contents.
 
2091
 
 
2092
    * ``bzr --version`` now shows more information if bzr is being run
 
2093
      from a branch.
 
2094
 
 
2095
  
 
2096
  BUG FIXES:
 
2097
 
 
2098
    * Fixed diff format so that added and removed files will be
 
2099
      handled properly by patch.  Fix from Lalo Martins.
 
2100
 
 
2101
    * Various fixes for files whose names contain spaces or other
 
2102
      metacharacters.
 
2103
 
 
2104
 
 
2105
  TESTING:
 
2106
 
 
2107
    * Converted black-box test suites from Bourne shell into Python;
 
2108
      now run using ``./testbzr``.  Various structural improvements to
 
2109
      the tests.
 
2110
 
 
2111
    * testbzr by default runs the version of bzr found in the same
 
2112
      directory as the tests, or the one given as the first parameter.
 
2113
 
 
2114
    * testbzr also runs the internal tests, so the only command
 
2115
      required to check is just ``./testbzr``.
 
2116
 
 
2117
    * testbzr requires python2.4, but can be used to test bzr running
 
2118
      under a different version.
 
2119
 
 
2120
    * Tests added for many other changes in this release.
 
2121
 
 
2122
 
 
2123
  INTERNAL:
 
2124
 
 
2125
    * Included ElementTree library upgraded to 1.2.6 by Fredrik Lundh.
 
2126
 
 
2127
    * Refactor command functions into Command objects based on HCT by
 
2128
      Scott James Remnant.
 
2129
 
 
2130
    * Better help messages for many commands.
 
2131
 
 
2132
    * Expose bzrlib.open_tracefile() to start the tracefile; until
 
2133
      this is called trace messages are just discarded.
 
2134
 
 
2135
    * New internal function find_touching_revisions() and hidden
 
2136
      command touching-revisions trace the changes to a given file.
 
2137
 
 
2138
    * Simpler and faster compare_inventories() function.
 
2139
 
 
2140
    * bzrlib.open_tracefile() takes a tracefilename parameter.
 
2141
 
 
2142
    * New AtomicFile class.
 
2143
 
 
2144
    * New developer commands ``added``, ``modified``.
 
2145
 
 
2146
 
 
2147
  PORTABILITY:
 
2148
 
 
2149
    * Cope on Windows on python2.3 by using the weaker random seed.
 
2150
      2.4 is now only recommended.
 
2151
 
 
2152
 
 
2153
bzr-0.0.4  2005-04-22
 
2154
 
 
2155
  ENHANCEMENTS:
 
2156
 
 
2157
    * 'bzr diff' optionally takes a list of files to diff.  Still a bit
 
2158
      basic.  Patch from QuantumG.
 
2159
 
 
2160
    * More default ignore patterns.
 
2161
 
 
2162
    * New 'bzr log --verbose' shows a list of files changed in the
 
2163
      changeset.  Patch from Sebastian Cote.
 
2164
 
 
2165
    * Roll over ~/.bzr.log if it gets too large.
 
2166
 
 
2167
    * Command abbreviations 'ci', 'st', 'stat', '?' based on a patch
 
2168
      by Jason Diamon.
 
2169
 
 
2170
    * New 'bzr help commands' based on a patch from Denys Duchier.
 
2171
 
 
2172
 
 
2173
  CHANGES:
 
2174
 
 
2175
    * User email is determined by looking at $BZREMAIL or ~/.bzr.email
 
2176
      or $EMAIL.  All are decoded by the locale preferred encoding.
 
2177
      If none of these are present user@hostname is used.  The host's
 
2178
      fully-qualified name is not used because that tends to fail when
 
2179
      there are DNS problems.
 
2180
 
 
2181
    * New 'bzr whoami' command instead of username user-email.
 
2182
 
 
2183
 
 
2184
  BUG FIXES: 
 
2185
 
 
2186
    * Make commit safe for hardlinked bzr trees.
 
2187
 
 
2188
    * Some Unicode/locale fixes.
 
2189
 
 
2190
    * Partial workaround for difflib.unified_diff not handling
 
2191
      trailing newlines properly.
 
2192
 
 
2193
 
 
2194
  INTERNAL:
 
2195
 
 
2196
    * Allow docstrings for help to be in PEP0257 format.  Patch from
 
2197
      Matt Brubeck.
 
2198
 
 
2199
    * More tests in test.sh.
 
2200
 
 
2201
    * Write profile data to a temporary file not into working
 
2202
      directory and delete it when done.
 
2203
 
 
2204
    * Smaller .bzr.log with process ids.
 
2205
 
 
2206
 
 
2207
  PORTABILITY:
 
2208
 
 
2209
    * Fix opening of ~/.bzr.log on Windows.  Patch from Andrew
 
2210
      Bennetts.
 
2211
 
 
2212
    * Some improvements in handling paths on Windows, based on a patch
 
2213
      from QuantumG.
 
2214
 
 
2215
 
 
2216
bzr-0.0.3  2005-04-06
 
2217
 
 
2218
  ENHANCEMENTS:
 
2219
 
 
2220
    * New "directories" internal command lists versioned directories
 
2221
      in the tree.
 
2222
 
 
2223
    * Can now say "bzr commit --help".
 
2224
 
 
2225
    * New "rename" command to rename one file to a different name
 
2226
      and/or directory.
 
2227
 
 
2228
    * New "move" command to move one or more files into a different
 
2229
      directory.
 
2230
 
 
2231
    * New "renames" command lists files renamed since base revision.
 
2232
 
 
2233
    * New cat command contributed by janmar.
 
2234
 
 
2235
  CHANGES:
 
2236
 
 
2237
    * .bzr.log is placed in $HOME (not pwd) and is always written in
 
2238
      UTF-8.  (Probably not a completely good long-term solution, but
 
2239
      will do for now.)
 
2240
 
 
2241
  PORTABILITY:
 
2242
 
 
2243
    * Workaround for difflib bug in Python 2.3 that causes an
 
2244
      exception when comparing empty files.  Reported by Erik Toubro
 
2245
      Nielsen.
 
2246
 
 
2247
  INTERNAL:
 
2248
 
 
2249
    * Refactored inventory storage to insert a root entry at the top.
 
2250
 
 
2251
  TESTING:
 
2252
 
 
2253
    * Start of shell-based black-box testing in test.sh.
 
2254
 
 
2255
 
 
2256
bzr-0.0.2.1
 
2257
 
 
2258
  PORTABILITY:
 
2259
 
 
2260
    * Win32 fixes from Steve Brown.
 
2261
 
 
2262
 
 
2263
bzr-0.0.2  "black cube"  2005-03-31
 
2264
 
 
2265
  ENHANCEMENTS:
 
2266
 
 
2267
    * Default ignore list extended (see bzrlib/__init__.py).
 
2268
 
 
2269
    * Patterns in .bzrignore are now added to the default ignore list,
 
2270
      rather than replacing it.
 
2271
 
 
2272
    * Ignore list isn't reread for every file.
 
2273
 
 
2274
    * More help topics.
 
2275
 
 
2276
    * Reinstate the 'bzr check' command to check invariants of the
 
2277
      branch.
 
2278
 
 
2279
    * New 'ignored' command lists which files are ignored and why;
 
2280
      'deleted' lists files deleted in the current working tree.
 
2281
 
 
2282
    * Performance improvements.
 
2283
 
 
2284
    * New global --profile option.
 
2285
    
 
2286
    * Ignore patterns like './config.h' now correctly match files in
 
2287
      the root directory only.
 
2288
 
 
2289
 
 
2290
bzr-0.0.1  2005-03-26
 
2291
 
 
2292
  ENHANCEMENTS:
 
2293
 
 
2294
    * More information from info command.
 
2295
 
 
2296
    * Can now say "bzr help COMMAND" for more detailed help.
 
2297
 
 
2298
    * Less file flushing and faster performance when writing logs and
 
2299
      committing to stores.
 
2300
 
 
2301
    * More useful verbose output from some commands.
 
2302
 
 
2303
  BUG FIXES:
 
2304
 
 
2305
    * Fix inverted display of 'R' and 'M' during 'commit -v'.
 
2306
 
 
2307
  PORTABILITY:
 
2308
 
 
2309
    * Include a subset of ElementTree-1.2.20040618 to make
 
2310
      installation easier.
 
2311
 
 
2312
    * Fix time.localtime call to work with Python 2.3 (the minimum
 
2313
      supported).
 
2314
 
 
2315
 
 
2316
bzr-0.0.0.69  2005-03-22
 
2317
 
 
2318
  ENHANCEMENTS:
 
2319
 
 
2320
    * First public release.
 
2321
 
 
2322
    * Storage of local versions: init, add, remove, rm, info, log,
 
2323
      diff, status, etc.