~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-11-04 18:51:39 UTC
  • mfrom: (2961.1.1 trunk)
  • Revision ID: pqm@pqm.ubuntu.com-20071104185139-kaio3sneodg2kp71
Authentication ring implementation (read-only)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
--------------------
 
1
====================
2
2
Bazaar Release Notes
3
 
--------------------
 
3
====================
4
4
 
5
5
.. contents::
6
6
 
7
7
IN DEVELOPMENT
8
 
--------------
9
 
 
10
 
  CHANGES:
11
 
 
12
 
    * ``bzr export`` can now export a subdirectory of a project.
13
 
      (Robert Collins)
14
 
 
15
 
    * ``bzr rm`` will now scan for files that are missing and remove just
16
 
      them automatically, much as ``bzr add`` scans for new files that
17
 
      are not ignored and adds them automatically. (Robert Collins)
18
 
 
19
 
  FEATURES
20
 
 
21
 
    * Support for GSSAPI authentication when using FTP as documented in 
22
 
      RFC2228. (Jelmer Vernooij, #49623)
23
 
 
24
 
  IMPROVEMENTS:
25
 
 
26
 
    * A url like ``log+file:///tmp`` will log all access to that Transport 
27
 
      to ``.bzr.log``, which may help in debugging or profiling.
28
 
      (Martin Pool)
29
 
 
30
 
    * ``bzr branch`` and ``bzr push`` use the default stacking policy if the
31
 
      branch format supports it. (Aaron Bentley)
32
 
 
33
 
    * ``bzr init`` and ``bzr init-repo`` will now print out the same as
34
 
      ``bzr info`` if it completed successfully.
35
 
      (Marius Kruger)
36
 
 
37
 
    * ``bzr uncommit`` logs the old tip revision id, and displays how to
38
 
      restore the branch to that tip using ``bzr pull``.  This allows you
39
 
      to recover if you realize you uncommitted the wrong thing.
40
 
      (John Arbash Meinel)
41
 
 
42
 
    * When reading index files, if we happen to read the whole file in a
43
 
      single request treat it as a ``_buffer_all`` request. This happens
44
 
      most often on small indexes over remote transports, where we default
45
 
      to reading 64kB. It saves a round trip for each small index during
46
 
      fetch operations. Also, if we have read more than 50% of an index
47
 
      file, trigger a ``_buffer_all`` on the next request. This works
48
 
      around some inefficiencies because reads don't fall neatly on page
49
 
      boundaries, so we would ignore those bytes, but request them again
50
 
      later. This could trigger a total read size of more than the whole
51
 
      file. (John Arbash Meinel)
52
 
 
53
 
  BUG FIXES:
54
 
 
55
 
    * ``bzr rm`` is now aliased to ``bzr del`` for the convenience of svn
56
 
      users. (Robert Collins, #205416)
57
 
 
58
 
    * Catch the infamous "select/poll returned error" which occurs when
59
 
      pycurl try to send a body request to an HTTP/1.0 server which has
60
 
      already refused to handle the request. (Vincent Ladeuil, #225020)
61
 
 
62
 
    * ``FTPTransport.stat()`` would return ``0000`` as the permission bits
63
 
      for the containing ``.bzr/`` directory (it does not implement
64
 
      permissions). This would cause us to set all subdirectories to
65
 
      ``0700`` and files to ``0600`` rather than leaving them unmodified.
66
 
      Now we ignore ``0000`` as the permissions and assume they are
67
 
      invalid. (John Arbash Meinel, #259855)
68
 
 
69
 
    * Merging from a previously joined branch will no longer cause 
70
 
      a traceback. (Jelmer Vernooij, #203376)
71
 
 
72
 
    * Pack operations on windows network shares will work even with large
73
 
      files. (Robert Collins, #255656)
74
 
 
75
 
    * Running ``bzr st PATH_TO_TREE`` will no longer suppress merge
76
 
      status. Status is also about 7% faster on mozilla sized trees
77
 
      when the path to the root of the tree has been given. Users of
78
 
      the internal ``show_tree_status`` function should be aware that
79
 
      the show_pending flag is now authoritative for showing pending
80
 
      merges, as it was originally. (Robert Collins, #225204)
81
 
 
82
 
    * Set valid default _param_name for Option so that ListOption can embed
83
 
      '-' in names. (Vincent Ladeuil, #263249)
84
 
 
85
 
    * Show proper error rather than traceback when an unknown revision 
86
 
      id is specified to ``bzr cat-revision``. (Jelmer Vernooij, #175569)
87
 
 
88
 
    * Trailing text in the dirstate file could cause the C dirstate parser
89
 
      to try to allocate an invalid amount of memory. We now properly
90
 
      check and test for parsing a dirstate with invalid trailing data.
91
 
      (John Arbash Meinel, #186014)
92
 
 
93
 
    * Use a Windows api function to get a Unicode host name, rather than
94
 
      assuming the host name is ascii.
95
 
      (Mark Hammond, John Arbash Meinel, #256550)
96
 
 
97
 
    * ``WorkingTree4`` trees will now correctly report missing-and-new
98
 
      paths in the output of ``iter_changes``. (Robert Collins)
99
 
 
100
 
  API CHANGES:
101
 
 
102
 
    * Exporters now take 4 parameters. (Robert Collins)
103
 
 
104
 
    * ``Tree.iter_changes`` will now return False for the content change
105
 
      field when a file is missing in the basis tree and not present in
106
 
      the target tree. Previously it returned True unconditionally.
107
 
      (Robert Collins)
108
 
 
109
 
    * The deprecated ``Branch.abspath`` and unimplemented 
110
 
      ``Branch.rename_one`` and ``Branch.move`` were removed. (Jelmer Vernooij)
111
 
 
112
 
    * BzrDir.clone_on_transport implementations must now accept a stacked_on
113
 
      parameter.  (Aaron Bentley)
114
 
 
115
 
    * BzrDir.cloning_metadir implementations must now take a require_stacking
116
 
      parameter.  (Aaron Bentley)
117
 
 
118
 
  TESTING:
119
 
 
120
 
    * ``addCleanup`` now takes ``*arguments`` and ``**keyword_arguments``
121
 
      which are then passed to the cleanup callable as it is run. In
122
 
      addition, addCleanup no longer requires that the callables passed to
123
 
      it be unique. (Jonathan Lange)
124
 
 
125
 
    * ``selftest``'s ``--starting-with`` option can now use predefined
126
 
      prefixes so that one can say ``bzr selftest -s bp.loom`` instead of
127
 
      ``bzr selftest -s bzrlib.plugins.loom``. (Vincent Ladeuil)
128
 
 
129
 
    * ``selftest``'s ``--starting-with`` option now accepts multiple values.
130
 
      (Vincent Ladeuil)
131
 
 
132
 
  INTERNALS:
133
 
 
134
 
    * A new plugin interface, ``bzrlib.log.log_adapters``, has been added.
135
 
      This allows dynamic log output filtering by plugins.
136
 
      (Robert Collins)
137
 
 
138
 
    * ``bzrlib.btree_index`` is now available, providing a b-tree index
139
 
      layer. The design is memory conservative (limited memory cache),
140
 
      faster to seek (approx 100 nodes per page, gives 100-way fan out),
141
 
      and stores compressed pages allowing more keys per page.
142
 
      (Robert Collins, John Arbash Meinel)
143
 
 
144
 
    * ``bzrlib.diff.DiffTree.show_diff`` now skips changes where the kind
145
 
      is unknown in both source and target.
146
 
      (Robert Collins, Aaron Bentley)
147
 
 
148
 
    * ``GraphIndexBuilder.add_node`` and ``BTreeBuilder`` have been
149
 
      streamlined a bit. This should make creating large indexes faster.
150
 
      (In benchmarking, it now takes less time to create a BTree index than
151
 
      it takes to read the GraphIndex one.) (John Arbash Meinel)
152
 
 
153
 
    * Mail clients for `bzr send` are now listed in a registry.  This
154
 
      allows plugins to add new clients by registering them with
155
 
      ``bzrlib.mail_client.mail_client_registry``.  All of the built-in
156
 
      clients now use this mechanism.  (Neil Martinsen-Burrell)
157
 
 
158
 
 
159
 
bzr 1.6.1rc2 2008-09-03
160
 
-----------------------
161
 
 
162
 
  BUG FIXES:
163
 
 
164
 
    * Copying between ``rich-root`` and ``rich-root-pack`` (and vice
165
 
      versa) was accidentally using the inter-model fetcher, instead of
166
 
      recognizing that both were 'rich root' formats.
167
 
      (John Arbash Meinel, #264321)
168
 
 
169
 
 
170
 
bzr 1.6.1rc1 2008-08-29
171
 
-----------------------
172
 
 
173
 
This release fixes a few regressions found in the 1.6 client. Fetching
174
 
changes was using an O(N^2) buffering algorithm, so for large projects it
175
 
would cause memory thrashing. There is also a specific problem with the
176
 
``--1.6-rich-root`` format, which prevented stacking on top of
177
 
``--rich-root-pack`` repositories, and could allow users to accidentally
178
 
fetch experimental data (``-subtree``) without representing it properly.
179
 
The ``--1.6-rich-root`` format has been deprecated and users are
180
 
recommended to upgrade to ``--1.6.1-rich-root`` immediately.  Also we
181
 
re-introduced a workaround for users who have repositories with incorrect
182
 
nodes (not possible if you only used official releases).
183
 
I should also clarify that none of this is data loss level issues, but
184
 
still sufficient enough to warrant an updated release.
185
 
 
186
 
  BUG FIXES:
187
 
 
188
 
    * ``RemoteTransport.readv()`` was being inefficient about how it
189
 
      buffered the readv data and processed it. It would keep appending to
190
 
      the same string (causing many copies) and then pop bytes out of the
191
 
      start of the string (causing more copies).
192
 
      With this patch "bzr+ssh://local" can improve dramatically,
193
 
      especially for projects with large files.
194
 
      (John Arbash Meinel)
195
 
 
196
 
    * Revision texts were always meant to be stored as fulltexts. There
197
 
      was a bug in a bzr.dev version that would accidentally create deltas
198
 
      when copying from a Pack repo to a Knit repo. This has been fixed,
199
 
      but to support those repositories, we know always request full texts
200
 
      for Revision texts. (John Arbash Meinel, #261339)
201
 
 
202
 
    * The previous ``--1.6-rich-root`` format used an incorrect xml
203
 
      serializer, which would accidentally support fetching from a
204
 
      repository that supported subtrees, even though the local one would
205
 
      not. We deprecated that format, and introduced a new one that uses
206
 
      the correct serializer ``--1.6.1-rich-root``.
207
 
      (John Arbash Meinel, #262333)
208
 
 
209
 
 
210
 
bzr 1.6 2008-08-25
211
 
------------------
212
 
 
213
 
Finally, the long awaited bzr 1.6 has been released. This release includes
214
 
new features like Stacked Branches, improved weave merge, and an updated
215
 
server protocol (now on v3) which will allow for better cross version
216
 
compatibility. With this release we have deprecated Knit format
217
 
repositories, and recommend that users upgrade them, we will continue to
218
 
support reading and writing them for the forseeable future, but we will
219
 
not be tuning them for performance as pack repositories have proven to be
220
 
better at scaling. This will also be the first release to bundle
221
 
TortoiseBzr in the standalone Windows installer.
222
 
 
223
 
 
224
 
bzr 1.6rc5 2008-08-19
225
 
---------------------
226
 
 
227
 
  BUG FIXES: 
228
 
 
229
 
    * Disable automatic detection of stacking based on a containing
230
 
      directory of the target. It interacted badly with push, and needs a
231
 
      bit more work to get the edges polished before it should happen
232
 
      automatically. (John Arbash Meinel, #259275)
233
 
      (This change was reverted when merged to bzr.dev)
234
 
  
235
 
 
236
 
bzr 1.6rc4 2008-08-18
237
 
---------------------
238
 
 
239
 
  BUG FIXES: 
240
 
 
241
 
    * Fix a regression in knit => pack fetching.  We had a logic
242
 
      inversion, causing the fetch to insert fulltexts in random order,
243
 
      rather than preserving deltas.  (John Arbash Meinel, #256757)
244
 
 
245
 
 
246
 
bzr 1.6rc3 2008-08-14
247
 
---------------------
248
 
 
249
 
  CHANGES:
250
 
 
251
 
    * Disable reading ``.bzrrules`` as a per-branch rule preferences
252
 
      file. The feature was not quite ready for a full release.
253
 
      (Robert Collins)
254
 
 
255
 
  IMPROVEMENTS:
256
 
 
257
 
    * Update the windows installer to bundle TortoiseBzr and ``qbzr``
258
 
      into the standalone installer. This will be the first official
259
 
      windows release that installs Tortoise by default.
260
 
      (Mark Hammond)
261
 
 
262
 
  BUG FIXES: 
263
 
 
264
 
    * Fix a regression in ``bzr+http`` support. There was a missing
265
 
      function (``_read_line``) that needed to be carried over from
266
 
      ``bzr+ssh`` support. (Andrew Bennetts)
267
 
 
268
 
    * ``GraphIndex`` objects will internally read an entire index if more
269
 
      than 1/20th of their keyspace is requested in a single operation.
270
 
      This largely mitigates a performance regression in ``bzr log FILE``
271
 
      and completely corrects the performance regression in ``bzr log``.
272
 
      The regression was caused by removing an accomodation which had been
273
 
      supporting the index format in use. A newer index format is in
274
 
      development which is substantially faster. (Robert Collins)
275
 
 
276
 
 
277
 
bzr 1.6rc2 2008-08-13
278
 
---------------------
279
 
 
280
 
This release candidate has a few minor bug fixes, and some regression
281
 
fixes for Windows.
282
 
 
283
 
  BUG FIXES:
284
 
 
285
 
    * ``bzr upgrade`` on remote branches accessed via bzr:// and
286
 
      bzr+ssh:// now works.  (Andrew Bennetts)
287
 
 
288
 
    * Change the ``get_format_description()`` strings for
289
 
      ``RepositoryFormatKnitPack5`` et al to be single line messages.
290
 
      (Aaron Bentley)
291
 
 
292
 
    * Fix for a regression on Win32 where we would try to call
293
 
      ``os.listdir()`` on a file and not catch the exception properly.
294
 
      (Windows raises a different exception.) This would manifest in
295
 
      places like ``bzr rm file`` or ``bzr switch``.
296
 
      (Mark Hammond, John Arbash Meinel)
297
 
 
298
 
    * ``Inventory.copy()`` was failing to set the revision property for
299
 
      the root entry. (Jelmer Vernooij)
300
 
 
301
 
    * sftp transport: added missing ``FileExists`` case to
302
 
      ``_translate_io_exception`` (Christophe Troestler, #123475)
303
 
 
304
 
    * The help for ``bzr ignored`` now suggests ``bzr ls --ignored`` for
305
 
      scripting use. (Robert Collins, #3834)
306
 
 
307
 
    * The default ``annotate`` logic will now always assign the
308
 
      last-modified value of a line to one of the revisions that modified
309
 
      it, rather than a merge revision. This would happen when both sides
310
 
      claimed to have modified the line resulting in the same text. The
311
 
      choice is arbitrary but stable, so merges in different directions
312
 
      will get the same results.  (John Arbash Meinel, #232188)
313
 
 
314
 
 
315
 
bzr 1.6rc1 2008-08-06
316
 
---------------------
317
 
 
318
 
This release candidate for bzr 1.6 solidifies the new branch stacking
319
 
feature.  Bazaar now recommends that users upgrade all knit repositories,
320
 
because later formats are much faster.  However, we plan to continue read/write and
321
 
upgrade support for knit repostories for the forseeable future.  Several
322
 
other bugs and performance issues were fixed.
323
 
 
324
 
  CHANGES:
325
 
 
326
 
    * Knit format repositories are deprecated and bzr will now emit
327
 
      warnings whenever it encounters one.  Use ``bzr upgrade`` to upgrade
328
 
      knit repositories to pack format.  (Andrew Bennetts)
329
 
 
330
 
  IMPROVEMENTS:
331
 
 
332
 
    * ``bzr check`` can now be told which elements at a location it should
333
 
      check.  (Daniel Watkins)
334
 
 
335
 
    * Commit now supports ``--exclude`` (or ``-x``) to exclude some files
336
 
      from the commit. (Robert Collins, #3117)
337
 
 
338
 
    * Fetching data between repositories that have the same model but no 
339
 
      optimised fetcher will not reserialise all the revisions, increasing
340
 
      performance. (Robert Collins, John Arbash Meinel)
341
 
 
342
 
    * Give a more specific error when target branch is not reachable.
343
 
      (James Westby)
344
 
 
345
 
    * Implemented a custom ``walkdirs_utf8`` implementation for win32.
346
 
      This uses a pyrex extension to get direct access to the
347
 
      ``FindFirstFileW`` style apis, rather than using ``listdir`` +
348
 
      ``lstat``. Shows a very strong improvement in commands like
349
 
      ``status`` and ``diff`` which have to iterate the working tree.
350
 
      Anywhere from 2x-6x faster depending on the size of the tree (bigger
351
 
      trees, bigger benefit.) (John Arbash Meinel)
352
 
 
353
 
    * New registry for log properties handles  and the method in 
354
 
      LongLogFormatter to display the custom properties returned by the 
355
 
      registered handlers. (Guillermo Gonzalez, #162469)
356
 
 
357
 
  BUG FIXES:
358
 
 
359
 
    * Add more tests that stacking does not create deltas spanning
360
 
      physical repository boundaries.
361
 
      (Martin Pool, #252428)
362
 
 
363
 
    * Better message about incompatible repositories.
364
 
      (Martin Pool, #206258)
365
 
 
366
 
    * ``bzr branch --stacked`` ensures the destination branch format can
367
 
      support stacking, even if the origin does not.
368
 
      (Martin Pool)
369
 
 
370
 
    * ``bzr export`` no longer exports ``.bzrrules``.
371
 
      (Ian Clatworthy)
372
 
 
373
 
    * ``bzr serve --directory=/`` now correctly allows the whole
374
 
      filesystem to be accessed on Windows, not just the root of the drive
375
 
      that Python is running from.
376
 
      (Adrian Wilkins, #240910)
377
 
 
378
 
    * Deleting directories by hand before running ``bzr rm`` will not
379
 
      cause subsequent errors in ``bzr st`` and ``bzr commit``.
380
 
      (Robert Collins, #150438)
381
 
 
382
 
    * Fix a test case that was failing if encoding wasn't UTF-8.
383
 
      (John Arbash Meinel, #247585)
384
 
 
385
 
    * Fix "no buffer space available" error when branching with the new
386
 
      smart server protocol to or from Windows.
387
 
      (Andrew Bennetts, #246180)
388
 
 
389
 
    * Fixed problem in branching from smart server.
390
 
      (#249256, Michael Hudson, Martin Pool) 
391
 
 
392
 
    * Handle a file turning in to a directory in TreeTransform.
393
 
      (James Westby, #248448)
394
 
 
395
 
  API CHANGES:
396
 
 
397
 
    * ``MutableTree.commit`` has an extra optional keywork parameter
398
 
      ``exclude`` that will be unconditionally supplied by the command
399
 
      line UI - plugins that add tree formats may need an update.
400
 
      (Robert Collins)
401
 
 
402
 
    * The API minimum version for plugin compatibility has been raised to
403
 
      1.6 - there are significant changes throughout the code base.
404
 
      (Robert Collins)
405
 
 
406
 
    * The generic fetch code now uses three attributes on Repository objects
407
 
      to control fetch. The streams requested are controlled via :
408
 
      ``_fetch_order`` and ``_fetch_uses_deltas``. Setting these
409
 
      appropriately allows different repository implementations to recieve
410
 
      data in their optimial form. If the ``_fetch_reconcile`` is set then
411
 
      a reconcile operation is triggered at the end of the fetch.
412
 
      (Robert Collins)
413
 
 
414
 
    * The ``put_on_disk`` and ``get_tar_item`` methods in
415
 
      ``InventoryEntry`` were deprecated. (Ian Clatworthy)
416
 
 
417
 
    * ``Repository.is_shared`` doesn't take a read lock. It didn't
418
 
      need one in the first place (nobody cached the value, and
419
 
      ``RemoteRepository`` wasn't taking one either). This saves a round
420
 
      trip when probing Pack repositories, as they read the ``pack-names``
421
 
      file when locked. And during probe, locking the repo isn't very
422
 
      useful. (John Arbash Meinel)
423
 
 
424
 
  INTERNALS:
425
 
 
426
 
    * ``bzrlib.branchbuilder.BranchBuilder`` is now much more capable of
427
 
      putting together a real history without having to create a full
428
 
      WorkingTree. It is recommended that tests that are not directly
429
 
      testing the WorkingTree use BranchBuilder instead.  See
430
 
      ``BranchBuilder.build_snapshot`` or
431
 
      ``TestCaseWithMemoryTree.make_branch_builder``.  (John Arbash Meinel)
432
 
 
433
 
    * ``bzrlib.builtins.internal_tree_files`` broken into two giving a new
434
 
      helper ``safe_relpath_files`` - used by the new ``exclude``
435
 
      parameter to commit. (Robert Collins)
436
 
 
437
 
    * Make it easier to introduce new WorkingTree formats.
438
 
      (Ian Clatworthy)
439
 
 
440
 
    * The code for exporting trees was refactored not to use the
441
 
      deprecated ``InventoryEntry`` methods. (Ian Clatworthy)
442
 
 
443
 
    * RuleSearchers return () instead of [] now when there are no matches.
444
 
      (Ian Clatworthy)
445
 
 
446
 
 
447
 
bzr 1.6beta3 2008-07-17
448
 
-----------------------
449
 
 
450
 
This release adds a new 'stacked branches' feature allowing branches to
451
 
share storage without being in the same repository or on the same machine.
452
 
(See the user guide for more details.)  It also adds a new hook, improved
453
 
weaves, aliases for related locations, faster bzr+ssh push, and several
454
 
bug fixes.
455
 
 
456
 
  FEATURES:
457
 
 
458
 
    * New ``pre_change_branch_tip`` hook that is called before the
459
 
      branch tip is moved, while the branch is write-locked.  See the User
460
 
      Reference for signature details.  (Andrew Bennetts)
461
 
 
462
 
    * Rule-based preferences can now be defined for selected files in
463
 
      selected branches, allowing commands and plugins to provide
464
 
      custom behaviour for files matching defined patterns.
465
 
      See ``Rule-based preferences`` (part of ``Configuring Bazaar``)
466
 
      in the User Guide and ``bzr help rules`` for more information.
467
 
      (Ian Clatworthy)
468
 
 
469
 
    * Sites may suggest a branch to stack new branches on.  (Aaron Bentley)
470
 
 
471
 
    * Stacked branches are now supported. See ``bzr help branch`` and 
472
 
      ``bzr help push``.  Branches must be in the ``development1`` format
473
 
      to stack, though the stacked-on branch can be of any format. 
474
 
      (Robert Collins)
475
 
 
476
 
  IMPROVEMENTS:
477
 
 
478
 
    * ``bzr export --format=tgz --root=NAME -`` to export a gzipped tarball 
479
 
      to stdout; also ``tar`` and ``tbz2``.
480
 
      (Martin Pool)
481
 
 
482
 
    * ``bzr (re)merge --weave`` will now use a standard Weave algorithm,
483
 
      rather than the annotation-based merge it was using. It does so by
484
 
      building up a Weave of the important texts, without needing to build
485
 
      the full ancestry. (John Arbash Meinel, #238895)
486
 
 
487
 
    * ``bzr send`` documents and better supports ``emacsclient`` (proper
488
 
      escaping of mail headers and handling of the MUA Mew).
489
 
      (Christophe Troestler)
490
 
 
491
 
    * Remembered locations can be specified by aliases, e.g. :parent, :public,
492
 
      :submit.  (Aaron Bentley)
493
 
 
494
 
    * The smart protocol now has improved support for setting branches'
495
 
      revision info directly.  This makes operations like push
496
 
      faster.  The new request method name is
497
 
      ``Branch.set_last_revision_ex``.  (Andrew Bennetts)
498
 
 
499
 
  BUG FIXES:
500
 
 
501
 
    * Bazaar is now able to be a client to the web server of IIS 6 and 7.
502
 
      The broken implementations of RFC822 in Python and RFC2046 in IIS
503
 
      combined with boundary-line checking in Bazaar previously made this
504
 
      impossible. (NB, IIS 5 does not suffer from this problem).
505
 
      (Adrian Wilkins, #247585)
506
 
 
507
 
    * ``bzr log --long`` with a ghost in your mainline now handles that
508
 
      ghost properly. (John Arbash Meinel, #243536)
509
 
 
510
 
    * ``check`` handles the split-up .bzr layout correctly, so no longer
511
 
      requires a branch to be present.
512
 
      (Daniel Watkins, #64783)
513
 
 
514
 
    * Clearer message about how to set the PYTHONPATH if bzrlib can't be
515
 
      loaded. 
516
 
      (Martin Pool, #205230)
517
 
 
518
 
    * Errors about missing libraries are now shown without a traceback,
519
 
      and with a suggestion to install the library.  The full traceback is 
520
 
      still in ``.bzr.log`` and can be shown with ``-Derror``.
521
 
      (Martin Pool, #240161)
522
 
 
523
 
    * Fetch from a stacked branch copies all required data.
524
 
      (Aaron Bentley, #248506)
525
 
 
526
 
    * Handle urls such as ftp://user@host.com@www.host.com where the user
527
 
      name contains an @.
528
 
      (Neil Martinsen-Burrell, #228058)
529
 
 
530
 
    * ``needs_read_lock`` and ``needs_write_lock`` now suppress an error during
531
 
      ``unlock`` if there was an error in the original function. This helps
532
 
      most when there is a failure with a smart server action, since often the
533
 
      connection closes and we cannot unlock.
534
 
      (Andrew Bennetts, John Arbash Meinel, #125784)
535
 
 
536
 
    * Obsolete hidden command ``bzr fetch`` removed.
537
 
      (Martin Pool, #172870)
538
 
 
539
 
    * Raise the correct exception when doing ``-rbefore:0`` or ``-c0``.
540
 
      (John Arbash Meinel, #239933)
541
 
 
542
 
    * You can now compare file revisions in Windows diff programs from 
543
 
      Cygwin Bazaar.
544
 
      (Matt McClure, #209281)
545
 
 
546
 
    * revision_history now tolerates mainline ghosts for Branch format 6.
547
 
      (Aaron Bentley, #235055)
548
 
 
549
 
    * Set locale from environment for third party libs.
550
 
      (Martin von Gagern, #128496)
551
 
 
552
 
  DOCUMENTATION:
553
 
 
554
 
    * Added *Using stacked branches* to the User Guide.
555
 
      (Ian Clatworthy)
556
 
 
557
 
    * Updated developer documentation.
558
 
      (Martin Pool)
559
 
 
560
 
  TESTING:
561
 
 
562
 
   * ``-Dmemory`` will cause /proc/PID/status to be catted before bzr
563
 
     exits, allowing low-key analysis of peak memory use. (Robert Collins)
564
 
 
565
 
   * ``TestCaseWithTransport.make_branch_and_tree`` tries harder to return
566
 
     a tree with a ``branch`` attribute of the right format.  This was
567
 
     preventing some ``RemoteBranch`` tests from actually running with
568
 
     ``RemoteBranch`` instances.  (Andrew Bennetts)
569
 
 
570
 
  API CHANGES:
571
 
 
572
 
    * Removed ``Repository.text_store``, ``control_store``, etc.  Instead,
573
 
      there are new attributes ``texts, inventories, revisions,
574
 
      signatures``, each of which is a ``VersionedFiles``.  See the
575
 
      Repository docstring for more details.
576
 
      (Robert Collins)
577
 
 
578
 
    * ``Branch.pull`` now accepts an ``_override_hook_target`` optional
579
 
      parameter.  If you have a subclass of ``Branch`` that overrides
580
 
      ``pull`` then you should add this parameter.  (Andrew Bennetts)
581
 
 
582
 
    * ``bzrlib.check.check()`` has been deprecated in favour of the more
583
 
      aptly-named ``bzrlib.check.check_branch()``.
584
 
      (Daniel Watkins)
585
 
 
586
 
    * ``Tree.print_file`` and ``Repository.print_file`` are deprecated.
587
 
      These methods are bad APIs because they write directly to sys.stdout.
588
 
      bzrlib does not use them internally, and there are no direct tests
589
 
      for them. (Alexander Belchenko)
590
 
 
591
 
  INTERNALS:
592
 
 
593
 
    * ``cat`` command no longer uses ``Tree.print_file()`` internally.
594
 
      (Alexander Belchenko)
595
 
 
596
 
    * New class method ``BzrDir.open_containing_tree_branch_or_repository``
597
 
      which eases the discovery of the tree, the branch and the repository
598
 
      containing a given location.
599
 
      (Daniel Watkins)
600
 
 
601
 
    * New ``versionedfile.KeyMapper`` interface to abstract out the access to
602
 
      underlying .knit/.kndx etc files in repositories with partitioned
603
 
      storage. (Robert Collins)
604
 
 
605
 
    * Obsolete developer-use command ``weave-join`` has been removed.
606
 
      (Robert Collins)
607
 
 
608
 
    * ``RemoteToOtherFetcher`` and ``get_data_stream_for_search`` removed,
609
 
      to support new ``VersionedFiles`` layering.
610
 
      (Robert Collins)
611
 
 
612
 
 
613
 
bzr 1.6beta2 2008-06-10
614
 
-----------------------
615
 
 
616
 
This release contains further progress towards our 1.6 goals of shallow
617
 
repositories, and contains a fix for some user-affecting bugs in the
618
 
repository layer.  Building working trees during checkout and branch is
619
 
now faster.
620
 
 
621
 
  BUG FIXES:
622
 
 
623
 
    * Avoid KnitCorrupt error extracting inventories from some repositories.
624
 
      (The data is not corrupt; an internal check is detecting a problem
625
 
      reading from the repository.)
626
 
      (Martin Pool, Andrew Bennetts, Robert Collins, #234748)
627
 
 
628
 
    * ``bzr status`` was breaking if you merged the same revision twice.
629
 
      (John Arbash Meinel, #235407)
630
 
 
631
 
    * Fix infinite loop consuming 100% CPU when a connection is lost while
632
 
      reading a response body via the smart protocol v1 or v2.
633
 
      (Andrew Bennetts)
634
 
      
635
 
    * Inserting a bundle which changes the contents of a file with no trailing
636
 
      end of line, causing a knit snapshot in a 'knits' repository will no longer
637
 
      cause KnitCorrupt. (Robert Collins)
638
 
 
639
 
    * ``RemoteBranch.pull`` needs to return the ``self._real_branch``'s
640
 
      pull result. It was instead just returning None, which breaks ``bzr
641
 
      pull``. (John Arbash Meinel, #238149)
642
 
 
643
 
    * Sanitize branch nick before using it as an attachment filename in
644
 
      ``bzr send``. (Lukáš Lalinský, #210218)
645
 
 
646
 
    * Squash ``inv_entry.symlink_target`` to a plain string when
647
 
      generating DirState details. This prevents from getting a
648
 
      ``UnicodeError`` when you have symlinks and non-ascii filenames.
649
 
      (John Arbash Meinel, #135320)
650
 
 
651
 
  IMPROVEMENTS:
652
 
 
653
 
    * Added the 'alias' command to set/unset and display aliases. (Tim Penhey)
654
 
 
655
 
    * ``added``, ``modified``, and ``unknowns`` behaviour made consistent (all three
656
 
      now quote paths where required). Added ``--null`` option to ``added`` and 
657
 
      ``modified`` (for null-separated unknowns, use ``ls --unknown --null``)
658
 
      (Adrian Wilkins)
659
 
 
660
 
    * Faster branching (1.09x) and lightweight checkouts (1.06x) on large trees.
661
 
      (Ian Clatworthy, Aaron Bentley)
662
 
 
663
 
  DOCUMENTATION:
664
 
 
665
 
    * Added *Bazaar Zen* section to the User Guide. (Ian Clatworthy)
666
 
 
667
 
  TESTING:
668
 
 
669
 
    * Fix the test HTTPServer to be isolated from chdir calls made while it is
670
 
      running, allowing it to be used in blackbox tests. (Robert Collins)
671
 
 
672
 
  API CHANGES:
673
 
 
674
 
    * ``WorkingTree.set_parent_(ids/trees)`` will now filter out revisions
675
 
      which are in the ancestry of other revisions. So if you merge the same
676
 
      tree twice, or merge an ancestor of an existing merge, it will only
677
 
      record the newest. (If you merge a descendent, it will replace its
678
 
      ancestor). (John Arbash Meinel, #235407)
679
 
 
680
 
    * ``RepositoryPolicy.__init__`` now requires stack_on and stack_on_pwd,
681
 
      through the derived classes do not.  (Aaron Bentley)
682
 
 
683
 
  INTERNALS:
684
 
 
685
 
    * ``bzrlib.bzrdir.BzrDir.sprout`` now accepts ``stacked`` to control
686
 
      creating stacked branches. (Robert Collins)
687
 
 
688
 
    * Knit record serialisation is now stricter on what it will accept, to
689
 
      guard against potential internal bugs, or broken input. (Robert Collins)
690
 
 
691
 
 
692
 
bzr 1.6beta1 2008-06-02
693
 
-----------------------
694
 
 
695
 
 
696
 
Commands that work on the revision history such as push, pull, missing,
697
 
uncommit and log are now substantially faster.  This release adds a
698
 
translation of some of the user documentation into Spanish.  (Contributions of
699
 
other translations would be very welcome.)  Bazaar 1.6beta1 adds a new network
700
 
protocol which is used by default and which allows for more efficient transfers
701
 
and future extensions.
702
 
 
703
 
 
704
 
  NOTES WHEN UPGRADING:
705
 
 
706
 
    * There is a new version of the network protocol used for bzr://, bzr+ssh://
707
 
      and bzr+http:// connections.  This will allow more efficient requests and
708
 
      responses, and more graceful fallback when a server is too old to
709
 
      recognise a request from a more recent client.  Bazaar 1.6 will
710
 
      interoperate with 0.16 and later versions, but servers should be upgraded
711
 
      when possible.  Bazaar 1.6 no longer interoperates with 0.15 and earlier via
712
 
      these protocols.  Use alternatives like SFTP or upgrade those servers.
713
 
      (Andrew Bennetts, #83935)
714
 
 
715
 
  CHANGES:
716
 
 
717
 
    * Deprecation warnings will not be suppressed when running ``bzr selftest``
718
 
      so that developers can see if their code is using deprecated functions.
719
 
      (John Arbash Meinel)
720
 
 
721
 
  FEATURES:
722
 
 
723
 
    * Adding ``-Derror`` will now display a traceback when a plugin fails to
724
 
      load. (James Westby)
725
 
 
726
 
  IMPROVEMENTS:
727
 
 
728
 
    * ``bzr branch/push/pull -r XXX`` now have a helper function for finding
729
 
      the revno of the new revision (``Graph.find_distance_to_null``). This
730
 
      should make something like ``bzr branch -r -100`` in a shared, no-trees
731
 
      repository much snappier. (John Arbash Meinel)
732
 
 
733
 
    * ``bzr log --short -r X..Y`` no longer needs to access the full revision
734
 
      history. This makes it noticeably faster when logging the last few
735
 
      revisions. (John Arbash Meinel)
736
 
 
737
 
    * ``bzr ls`` now accepts ``-V`` as an alias for ``--versioned``. 
738
 
      (Jerad Cramp, #165086)
739
 
 
740
 
    * ``bzr missing`` uses the new ``Graph.find_unique_ancestors`` and
741
 
      ``Graph.find_differences`` to determine missing revisions without having
742
 
      to search the whole ancestry. (John Arbash Meinel, #174625)
743
 
 
744
 
    * ``bzr uncommit`` now uses partial history access, rather than always
745
 
      extracting the full revision history for a branch. This makes it
746
 
      resolve the appropriate revisions much faster (in testing it drops
747
 
      uncommit from 1.5s => 0.4s). It also means ``bzr log --short`` is one
748
 
      step closer to not using full revision history.
749
 
      (John Arbash Meinel, #172649)
750
 
 
751
 
  BUGFIXES:
752
 
 
753
 
    * ``bzr merge --lca`` should handle when two revisions have no common
754
 
      ancestor other than NULL_REVISION. (John Arbash Meinel, #235715)
755
 
 
756
 
    * ``bzr status`` was breaking if you merged the same revision twice.
757
 
      (John Arbash Meinel, #235407)
758
 
 
759
 
    * ``bzr push`` with both ``--overwrite`` and ``-r NNN`` options no longer
760
 
      fails.  (Andrew Bennetts, #234229)
761
 
      
762
 
    * Correctly track the base URL of a smart medium when using bzr+http://
763
 
      URLs, which was causing spurious "No repository present" errors with
764
 
      branches in shared repositories accessed over bzr+http.
765
 
      (Andrew Bennetts, #230550)
766
 
 
767
 
    * Define ``_remote_is_at_least_1_2`` on ``SmartClientMedium`` so that all
768
 
      implementations have the attribute.  Fixes 'PyCurlTransport' object has no
769
 
      attribute '_remote_is_at_least_1_2' attribute errors.
770
 
      (Andrew Bennetts, #220806)
771
 
 
772
 
    * Failure to delete an obsolete pack file should just give a warning
773
 
      message, not a fatal error.  It may for example fail if the file is still
774
 
      in use by another process.
775
 
      (Martin Pool)
776
 
      
777
 
    * Fix MemoryError during large fetches over HTTP by limiting the amount of
778
 
      data we try to read per ``recv`` call.  The problem was observed with
779
 
      Windows and a proxy, but might affect other environments as well.
780
 
      (Eric Holmberg, #215426)
781
 
 
782
 
    * Handle old merge directives correctly in Merger.from_mergeable.  Stricter
783
 
      get_parent_map requirements exposed a latent bug here.  (Aaron Bentley)
784
 
 
785
 
    * Issue a warning and ignore passwords declared in authentication.conf when
786
 
      used for an ssh scheme (sftp or bzr+ssh).
787
 
      (Vincent Ladeuil, #203186)
788
 
 
789
 
    * Make both http implementations raise appropriate exceptions on 403
790
 
      Forbidden when POSTing smart requests.
791
 
      (Vincent Ladeuil, #230223)
792
 
 
793
 
    * Properly *title* header names in http requests instead of capitalizing
794
 
      them.
795
 
      (Vincent Ladeuil, #229076)
796
 
 
797
 
    * The "Unable to obtain lock" error message now also suggests using
798
 
      ``bzr break-lock`` to fix it.  (Martin Albisetti, #139202)
799
 
 
800
 
    * Treat an encoding of '' as ascii; this can happen when bzr is run
801
 
      under vim on Mac OS X.
802
 
      (Neil Martinsen-Burrell)
803
 
 
804
 
    * ``VersionedFile.make_mpdiffs()`` was raising an exception that wasn't in
805
 
      scope. (Daniel Fischer #235687)
806
 
 
807
 
  DOCUMENTATION:
808
 
 
809
 
    * Added directory structure and started translation of docs in spanish.
810
 
      (Martin Albisetti, Lucio Albenga)
811
 
 
812
 
    * Incorporate feedback from Jelmer Vernooij and Neil Martinsen-Burrell
813
 
      on the plugin and integration chapters of the User Guide.
814
 
      (Ian Clatworthy)
815
 
 
816
 
    * More Bazaar developer documentation about packaging and release process,
817
 
      and about use of Python reprs.
818
 
      (Martin Pool, Martin Albisetti)
819
 
 
820
 
    * Updated Tortise strategy document. (Mark Hammond)
821
 
 
822
 
  TESTING:
823
 
 
824
 
    * ``bzrlib.tests.adapt_tests`` was broken and unused - it has been fixed.
825
 
      (Robert Collins)
826
 
 
827
 
    * Fix the test HTTPServer to be isolated from chdir calls made while it is
828
 
      running, allowing it to be used in blackbox tests. (Robert Collins)
829
 
 
830
 
    * New helper function for splitting test suites
831
 
      ``split_suite_by_condition``. (Robert Collins)
832
 
 
833
 
  INTERNALS:
834
 
 
835
 
    * ``Branch.missing_revisions`` has been deprecated. Similar functionality
836
 
      can be obtained using ``bzrlib.missing.find_unmerged``. The api was
837
 
      fairly broken, and the function was unused, so we are getting rid of it.
838
 
      (John Arbash Meinel)
839
 
 
840
 
  API CHANGES:
841
 
 
842
 
    * ``Branch.abspath`` is deprecated; use the Tree or Transport 
843
 
      instead.  (Martin Pool)
844
 
 
845
 
    * ``Branch.update_revisions`` now takes an optional ``Graph``
846
 
      object. This can be used by ``update_revisions`` when it is
847
 
      checking ancestry, and allows callers to prefer request to go to a
848
 
      local branch.  (John Arbash Meinel)
849
 
 
850
 
    * Branch, Repository, Tree and BzrDir should expose a Transport as an
851
 
      attribute if they have one, rather than having it indirectly accessible
852
 
      as ``.control_files._transport``.  This doesn't add a requirement
853
 
      to support a Transport in cases where it was not needed before;
854
 
      it just simplifies the way it is reached.  (Martin Pool)
855
 
 
856
 
    * ``bzr missing --mine-only`` will return status code 0 if you have no
857
 
      new revisions, but the remote does. Similarly for ``--theirs-only``.
858
 
      The new code only checks one side, so it doesn't know if the other
859
 
      side has changes. This seems more accurate with the request anyway.
860
 
      It also changes the output to print '[This|Other] branch is up to
861
 
      date.' rather than displaying nothing.  (John Arbash Meinel)
862
 
 
863
 
    * ``LockableFiles.put_utf8``, ``put_bytes`` and ``controlfilename``
864
 
      are now deprecated in favor of using Transport operations.
865
 
      (Martin Pool)
866
 
 
867
 
    * Many methods on ``VersionedFile``, ``Repository`` and in
868
 
      ``bzrlib.revision``  deprecated before bzrlib 1.5 have been removed.
869
 
      (Robert Collins)
870
 
 
871
 
    * ``RevisionSpec.wants_revision_history`` can be set to False for a given
872
 
      ``RevisionSpec``. This will disable the existing behavior of passing in
873
 
      the full revision history to ``self._match_on``. Useful for specs that
874
 
      don't actually need access to the full history. (John Arbash Meinel)
875
 
 
876
 
    * The constructors of ``SmartClientMedium`` and its subclasses now require a
877
 
      ``base`` parameter.  ``SmartClientMedium`` implementations now also need
878
 
      to provide a ``remote_path_from_transport`` method.  (Andrew Bennetts)
879
 
      
880
 
    * The default permissions for creating new files and directories 
881
 
      should now be obtained from ``BzrDir._get_file_mode()`` and 
882
 
      ``_get_dir_mode()``, rather than from LockableFiles.  The ``_set_file_mode``
883
 
      and ``_set_dir_mode`` variables on LockableFiles which were advertised
884
 
      as a way for plugins to control this are no longer consulted.
885
 
      (Martin Pool)
886
 
 
887
 
    * ``VersionedFile.join`` is deprecated. This method required local
888
 
      instances of both versioned file objects and was thus hostile to being
889
 
      used for streaming from a smart server. The new get_record_stream and
890
 
      insert_record_stream are meant to efficiently replace this method.
891
 
      (Robert Collins)
892
 
 
893
 
    * ``WorkingTree.set_parent_(ids/trees)`` will now filter out revisions
894
 
      which are in the ancestry of other revisions. So if you merge the same
895
 
      tree twice, or merge an ancestor of an existing merge, it will only
896
 
      record the newest. (If you merge a descendent, it will replace its
897
 
      ancestor). (John Arbash Meinel, #235407)
898
 
 
899
 
    * ``WorkingTreeFormat2.stub_initialize_remote`` is now private.
900
 
      (Martin Pool) 
901
 
 
902
 
 
903
 
bzr 1.5 2008-05-16
904
 
------------------
905
 
 
906
 
This release of Bazaar includes several updates to the documentation, and fixes
907
 
to prepare for making rich root support the default format. Many bugs have been
908
 
squashed, including fixes to log, bzr+ssh inter-operation with older servers.
909
 
 
910
 
  CHANGES:
911
 
 
912
 
    * Suppress deprecation warnings when bzrlib is a 'final' release. This way
913
 
      users of packaged software won't be bothered with DeprecationWarnings,
914
 
      but developers and testers will still see them. (John Arbash Meinel)
915
 
 
916
 
  DOCUMENTATION:
917
 
 
918
 
    * Incorporate feedback from Jelmer Vernooij and Neil Martinsen-Burrell
919
 
      on the plugin and integration chapters of the User Guide.
920
 
      (Ian Clatworthy)
921
 
 
922
 
 
923
 
bzr 1.5rc1 2008-05-09
924
 
---------------------
925
 
 
926
 
  NOTES WHEN UPGRADING:
927
 
 
928
 
  CHANGES:
929
 
 
930
 
    * Broader support of GNU Emacs mail clients. Set
931
 
      ``mail_client=emacsclient`` in your bazaar.conf and ``send`` will pop the
932
 
      bundle in a mail buffer according to the value of ``mail-user-agent``
933
 
      variable. (Xavier Maillard)
934
 
 
935
 
  FEATURES:
936
 
 
937
 
  IMPROVEMENTS:
938
 
 
939
 
    * Diff now handles revision specs like "branch:" and "submit:" more
940
 
      efficiently.  (Aaron Bentley, #202928)
941
 
 
942
 
    * More friendly error given when attempt to start the smart server
943
 
      on an address already in use. (Andrea Corbellini, #200575)
944
 
 
945
 
    * Pull completes much faster when there is nothing to pull.
946
 
      (Aaron Bentley)
947
 
 
948
 
  BUGFIXES:
949
 
 
950
 
    * Authentication.conf can define sections without password.
951
 
      (Vincent Ladeuil, #199440)
952
 
 
953
 
    * Avoid muttering every time a child update does not cause a progress bar
954
 
      update. (John Arbash Meinel, #213771)
955
 
 
956
 
    * ``Branch.reconcile()`` is now implemented. This allows ``bzr reconcile``
957
 
      to fix when a Branch has a non-canonical mainline history. ``bzr check``
958
 
      also detects this condition. (John Arbash Meinel, #177855)
959
 
 
960
 
    * ``bzr log -r ..X bzr://`` was failing, because it was getting a request
961
 
      for ``revision_id=None`` which was not a string.
962
 
      (John Arbash Meinel, #211661)
963
 
 
964
 
    * ``bzr commit`` now works with Microsoft's FTP service.
965
 
      (Andreas Deininger)
966
 
 
967
 
    * Catch definitions outside sections in authentication.conf.
968
 
      (Vincent Ladeuil, #217650)
969
 
 
970
 
    * Conversion from non-rich-root to rich-root(-pack) updates inventory
971
 
      sha1s, even when bundles are used.  (Aaron Bentley, #181391)
972
 
 
973
 
    * Conversion from non-rich-root to rich-root(-pack) works correctly even
974
 
      though search keys are not topologically sorted.  (Aaron Bentley)
975
 
 
976
 
    * Conversion from non-rich-root to rich-root(-pack) works even when a
977
 
      parent revision has a different root id.  (Aaron Bentley, #177874)
978
 
 
979
 
    * Disable strace testing until strace is fixed (see bug #103133) and emit a
980
 
      warning when selftest ends to remind us of leaking tests.
981
 
      (Vincent Ladeuil, #226769)
982
 
 
983
 
    * Fetching all revisions from a repository does not cause pack collisions.
984
 
      (Robert Collins, Aaron Bentley, #212908)
985
 
 
986
 
    * Fix error about "attempt to add line-delta in non-delta knit".
987
 
      (Andrew Bennetts, #217701)
988
 
 
989
 
    * Pushing a branch in "dirstate" format (Branch5) over bzr+ssh would break
990
 
      if the remote server was < version 1.2. This was due to a bug in the
991
 
      RemoteRepository.get_parent_map() fallback code.
992
 
      (John Arbash Meinel, #214894)
993
 
 
994
 
    * Remove leftover code in ``bzr_branch`` that inappropriately creates 
995
 
      a ``branch-name`` file in the branch control directory.
996
 
      (Martin Pool)
997
 
 
998
 
    * Set SO_REUSEADDR on server sockets of ``bzr serve`` to avoid problems
999
 
      rebinding the socket when starting the server a second time.
1000
 
      (John Arbash Meinel, Martin Pool, #164288)
1001
 
 
1002
 
    * Severe performance degradation in fetching from knit repositories to
1003
 
      knits and packs due to parsing the entire revisions.kndx on every graph
1004
 
      walk iteration fixed by using the Repository.get_graph API.  There was
1005
 
      another regression in knit => knit fetching which re-read the index for
1006
 
      every revision each side had in common.
1007
 
      (Robert Collins, John Arbash Meinel)
1008
 
 
1009
 
    * When logging the changes to a particular file, there was a bug if there
1010
 
      were ghosts in the revision ancestry. (John Arbash Meinel, #209948)
1011
 
 
1012
 
    * xs4all's ftp server returns a temporary error when trying to list an
1013
 
      empty directory, rather than returning an empty list. Adding a
1014
 
      workaround so that we don't get spurious failures.
1015
 
      (John Arbash Meinel, #215522)
1016
 
 
1017
 
  DOCUMENTATION:
1018
 
 
1019
 
    * Expanded the User Guide to include new chapters on popular plugins and
1020
 
      integrating Bazaar into your environment. The *Best practices* chapter
1021
 
      was renamed to *Miscellaneous topics* as suggested by community
1022
 
      feedback as well. (Ian Clatworthy)
1023
 
 
1024
 
    * Document outlining strategies for TortoiseBzr. (Mark Hammond)
1025
 
 
1026
 
    * Improved the documentation on hooks. (Ian Clatworthy)
1027
 
 
1028
 
    * Update authentication docs regarding ssh agents.
1029
 
      (Vincent Ladeuil, #183705)
1030
 
 
1031
 
  TESTING:
1032
 
 
1033
 
    * Add ``thread_name_suffix`` parameter to SmartTCPServer_for_testing, to
1034
 
      make it easy to identify which test spawned a thread with an unhandled
1035
 
      exception. (Andrew Bennetts)
1036
 
 
1037
 
    * New ``--debugflag``/``-E`` option to ``bzr selftest`` for setting
1038
 
      options for debugging tests, these are complementary to the the -D
1039
 
      options.  The ``-Dselftest_debug`` global option has been replaced by the
1040
 
      ``-E=allow_debug`` option for selftest. (Andrew Bennetts)
1041
 
 
1042
 
    * Parameterised test ids are preserved correctly to aid diagnosis of test
1043
 
      failures. (Robert Collins, Andrew Bennetts)
1044
 
 
1045
 
    * selftest now accepts --starting-with <id> to load only the tests whose id
1046
 
      starts with the one specified. This greatly speeds up running the test
1047
 
      suite on a limited set of tests and can be used to run the tests for a
1048
 
      single module, a single class or even a single test.  (Vincent Ladeuil)
1049
 
 
1050
 
    * The test suite modules have been modified to define load_tests() instead
1051
 
      of test_suite(). That speeds up selective loading (via --load-list)
1052
 
      significantly and provides many examples on how to migrate (grep for
1053
 
      load_tests).  (Vincent Ladeuil)
1054
 
 
1055
 
  INTERNALS:
1056
 
 
1057
 
    * ``Hooks.install_hook`` is now deprecated in favour of
1058
 
      ``Hooks.install_named_hook`` which adds a required ``name`` parameter, to
1059
 
      avoid having to call ``Hooks.name_hook``. (Daniel Watkins)
1060
 
 
1061
 
    * Implement xml8 serializer.  (Aaron Bentley)
1062
 
 
1063
 
    * New form ``@deprecated_method(deprecated_in(1, 5, 0))`` for making 
1064
 
      deprecation wrappers.  (Martin Pool)
1065
 
 
1066
 
    * ``Repository.revision_parents`` is now deprecated in favour of 
1067
 
      ``Repository.get_parent_map([revid])[revid]``. (Jelmer Vernooij)
1068
 
 
1069
 
    * The Python ``assert`` statement is no longer used in Bazaar source, and 
1070
 
      a test checks this.  (Martin Pool)
1071
 
 
1072
 
  API CHANGES:
1073
 
 
1074
 
    * ``bzrlib.status.show_pending_merges`` requires the repository to be
1075
 
      locked by the caller. Callers should have been doing it anyway, but it
1076
 
      will now raise an exception if they do not. (John Arbash Meinel)
1077
 
 
1078
 
    * Repository.get_data_stream, Repository.get_data_stream_for_search(),
1079
 
      Repository.get_deltas_for_revsions(), Repository.revision_trees(),
1080
 
      Repository.item_keys_introduced_by() no longer take read locks.
1081
 
      (Aaron Bentley)
1082
 
 
1083
 
    * ``LockableFiles.get_utf8`` and ``.get`` are deprecated, as a start
1084
 
      towards removing LockableFiles and ``.control_files`` entirely.
1085
 
      (Martin Pool)
1086
 
 
1087
 
    * Methods deprecated prior to 1.1 have been removed.
1088
 
      (Martin Pool)
1089
 
 
1090
 
 
1091
 
bzr 1.4 2008-04-28
1092
 
------------------
1093
 
 
1094
 
This release of Bazaar includes handy improvements to the speed of log and
1095
 
status, new options for several commands, improved documentation, and better
1096
 
hooks, including initial code for server-side hooks.  A number of bugs have
1097
 
been fixed, particularly in interoperability between different formats or
1098
 
different releases of Bazaar over there network.  There's been substantial
1099
 
internal work in both the repository and network code to enable new features
1100
 
and faster performance.
1101
 
 
1102
 
  BUG FIXES:
1103
 
 
1104
 
    * Pushing a branch in "dirstate" format (Branch5) over bzr+ssh would break
1105
 
      if the remote server was < version 1.2.  This was due to a bug in the
1106
 
      RemoteRepository.get_parent_map() fallback code.
1107
 
      (John Arbash Meinel, Andrew Bennetts, #214894)
1108
 
 
1109
 
 
1110
 
bzr 1.4rc2 2008-04-21
1111
 
---------------------
1112
 
 
1113
 
  BUG FIXES:
1114
 
 
1115
 
    * ``bzr log -r ..X bzr://`` was failing, because it was getting a request
1116
 
      for ``revision_id=None`` which was not a string.
1117
 
      (John Arbash Meinel, #211661)
1118
 
 
1119
 
    * Fixed a bug in handling ghost revisions when logging changes in a 
1120
 
      particular file.  (John Arbash Meinel, #209948)
1121
 
 
1122
 
    * Fix error about "attempt to add line-delta in non-delta knit".
1123
 
      (Andrew Bennetts, #205156)
1124
 
 
1125
 
    * Fixed performance degradation in fetching from knit repositories to
1126
 
      knits and packs due to parsing the entire revisions.kndx on every graph
1127
 
      walk iteration fixed by using the Repository.get_graph API.  There was
1128
 
      another regression in knit => knit fetching which re-read the index for
1129
 
      every revision each side had in common.
1130
 
      (Robert Collins, John Arbash Meinel)
1131
 
 
1132
 
 
1133
 
bzr 1.4rc1 2008-04-11
1134
 
---------------------
1135
 
 
1136
 
  CHANGES:
1137
 
 
1138
 
   * bzr main script cannot be imported (Benjamin Peterson)
1139
 
 
1140
 
   * On Linux bzr additionally looks for plugins in arch-independent site
1141
 
     directory. (Toshio Kuratomi)
1142
 
 
1143
 
   * The ``set_rh`` branch hook is now deprecated. Please migrate
1144
 
     any plugins using this hook to use an alternative, e.g.
1145
 
     ``post_change_branch_tip``. (Ian Clatworthy)
1146
 
 
1147
 
   * When a plugin cannot be loaded as the file path is not a valid
1148
 
     python module name bzr will now strip a ``bzr_`` prefix from the
1149
 
     front of the suggested name, as many plugins (e.g. bzr-svn)
1150
 
     want to be installed without this prefix. It is a common mistake
1151
 
     to have a folder named "bzr-svn" for that plugin, especially
1152
 
     as this is what bzr branch lp:bzr-svn will give you. (James Westby,
1153
 
     Andrew Cowie)
1154
 
 
1155
 
   * UniqueIntegerBugTracker now appends bug-ids instead of joining
1156
 
     them to the base URL. Plugins that register bug trackers may
1157
 
     need a trailing / added to the base URL if one is not already there.
1158
 
     (James Wesby, Andrew Cowie)
1159
 
 
1160
 
  FEATURES:
1161
 
 
1162
 
    * Added start_commit hook for mutable trees. (Jelmer Vernooij, #186422)
1163
 
 
1164
 
    * ``status`` now accepts ``--no-pending`` to show the status without
1165
 
      listing pending merges, which speeds up the command a lot on large
1166
 
      histories.  (James Westby, #202830)
1167
 
 
1168
 
    * New ``post_change_branch_tip`` hook that is called after the
1169
 
      branch tip is moved but while the branch is still write-locked.
1170
 
      See the User Reference for signature details.
1171
 
      (Ian Clatworthy, James Henstridge)
1172
 
 
1173
 
    * Reconfigure can convert a branch to be standalone or to use a shared
1174
 
      repository.  (Aaron Bentley)
1175
 
 
1176
 
  IMPROVEMENTS:
1177
 
 
1178
 
    * The smart protocol now has support for setting branches' revision info
1179
 
      directly.  This should make operations like push slightly faster, and is a
1180
 
      step towards server-side hooks.  The new request method name is
1181
 
      ``Branch.set_last_revision_info``.  (Andrew Bennetts)
1182
 
 
1183
 
    * ``bzr commit --fixes`` now recognises "gnome" as a tag by default.
1184
 
      (James Westby, Andrew Cowie)
1185
 
 
1186
 
    * ``bzr switch`` will attempt to find branches to switch to relative to the
1187
 
      current branch. E.g. ``bzr switch branchname`` will look for
1188
 
      ``current_branch/../branchname``. (Robert Collins, Jelmer Vernooij,
1189
 
      Wouter van Heyst)
1190
 
 
1191
 
    * Diff is now more specific about execute-bit changes it describes
1192
 
      (Chad Miller)
1193
 
 
1194
 
    * Fetching data over HTTP is a bit faster when urllib is used.  This is done
1195
 
      by forcing it to recv 64k at a time when reading lines in HTTP headers,
1196
 
      rather than just 1 byte at a time.  (Andrew Bennetts)
1197
 
 
1198
 
    * Log --short and --line are much faster when -r is not specified.
1199
 
      (Aaron Bentley)
1200
 
 
1201
 
    * Merge is faster.  We no longer check a file's existence unnecessarily
1202
 
      when merging the execute bit.  (Aaron Bentley)
1203
 
 
1204
 
    * ``bzr status`` on an explicit list of files no longer shows pending
1205
 
      merges, making it much faster on large trees. (John Arbash Meinel)
1206
 
 
1207
 
    * The launchpad directory service now warns the user if they have not set
1208
 
      their launchpad login and are trying to resolve a URL using it, just
1209
 
      in case they want to do a write operation with it.  (James Westby)
1210
 
 
1211
 
    * The smart protocol client is slightly faster, because it now only queries
1212
 
      the server for the protocol version once per connection.  Also, the HTTP
1213
 
      transport will now automatically probe for and use a smart server if
1214
 
      one is present.  You can use the new ``nosmart+`` transport decorator
1215
 
      to get the old behaviour.  (Andrew Bennetts)
1216
 
 
1217
 
    * The ``version`` command takes a ``--short`` option to print just the
1218
 
      version number, for easier use in scripts.  (Martin Pool)
1219
 
 
1220
 
    * Various operations with revision specs and commands that calculate
1221
 
      revnos and revision ids are faster.  (John A. Meinel, Aaron Bentley)
1222
 
 
1223
 
  BUGFIXES:
1224
 
 
1225
 
    * Add ``root_client_path`` parameter to SmartWSGIApp and
1226
 
      SmartServerRequest.  This makes it possible to publish filesystem
1227
 
      locations that don't exactly match URL paths. SmartServerRequest
1228
 
      subclasses should use the new ``translate_client_path`` and
1229
 
      ``transport_from_client_path`` methods when dealing with paths received
1230
 
      from a client to take this into account.  (Andrew Bennetts, #124089)
1231
 
 
1232
 
    * ``bzr mv a b`` can be now used also to rename previously renamed
1233
 
      directories, not only files. (Lukáš Lalinský, #107967)
1234
 
 
1235
 
    * ``bzr uncommit --local`` can now remove revisions from the local
1236
 
      branch to be symmetric with ``bzr commit --local``.
1237
 
      (John Arbash Meinel, #93412)
1238
 
 
1239
 
    * Don't ask for a password if there is no real terminal.
1240
 
      (Alexander Belchenko, #69851)
1241
 
 
1242
 
    * Fix a bug causing a ValueError crash in ``parse_line_delta_iter`` when
1243
 
      fetching revisions from a knit to pack repository or vice versa using
1244
 
      bzr:// (including over http or ssh).
1245
 
      (#208418, Andrew Bennetts, Martin Pool, Robert Collins)
1246
 
 
1247
 
    * Fixed ``_get_line`` in ``bzrlib.smart.medium``, which was buggy.  Also
1248
 
      fixed ``_get_bytes`` in the same module to use the push back buffer.
1249
 
      These bugs had no known impact in normal use, but were problematic for
1250
 
      developers working on the code, and were likely to cause real bugs sooner
1251
 
      or later.  (Andrew Bennetts)
1252
 
 
1253
 
    * Implement handling of basename parameter for DefaultMail.  (James Westby)
1254
 
 
1255
 
    * Incompatibility with Paramiko versions newer than 1.7.2 was fixed.
1256
 
      (Andrew Bennetts, #213425)
1257
 
 
1258
 
    * Launchpad locations (lp: URLs) can be pulled.  (Aaron Bentley, #181945)
1259
 
 
1260
 
    * Merges that add files to deleted root directories complete.  They
1261
 
      do create conflicts.  (Aaron Bentley, #210092)
1262
 
 
1263
 
    * vsftp's return ``550 RNFR command failed.`` supported.
1264
 
      (Marcus Trautwig, #129786)
1265
 
 
1266
 
  DOCUMENTATION:
1267
 
 
1268
 
    * Improved documentation on send/merge relationship. (Peter Schuller)
1269
 
 
1270
 
    * Minor fixes to the User Guide. (Matthew Fuller)
1271
 
 
1272
 
    * Reduced the evangelism in the User Guide. (Ian Clatworthy)
1273
 
 
1274
 
    * Added Integrating with Bazaar document for developers (Martin Albisetti)
1275
 
 
1276
 
  API BREAKS:
1277
 
 
1278
 
    * Attempting to pull data from a ghost aware repository (e.g. knits) into a
1279
 
      non-ghost aware repository such as weaves will now fail if there are
1280
 
      ghosts.  (Robert Collins)
1281
 
 
1282
 
    * ``KnitVersionedFile`` no longer accepts an ``access_mode`` parameter, and
1283
 
      now requires the ``index`` and ``access_method`` parameters to be
1284
 
      supplied. A compatible shim has been kept in the new function
1285
 
      ``knit.make_file_knit``. (Robert Collins)
1286
 
 
1287
 
    * Log formatters must now provide log_revision instead of show and
1288
 
      show_merge_revno methods. The latter had been deprecated since the 0.17
1289
 
      release. (James Westby)
1290
 
 
1291
 
    * ``LoopbackSFTP`` is now called ``SocketAsChannelAdapter``.
1292
 
      (Andrew Bennetts)
1293
 
 
1294
 
    * ``osutils.backup_file`` is removed. (Alexander Belchenko)
1295
 
 
1296
 
    * ``Repository.get_revision_graph`` is deprecated, with no replacement
1297
 
      method. The method was size(history) and not desirable. (Robert Collins)
1298
 
 
1299
 
    * ``revision.revision_graph`` is deprecated, with no replacement function.
1300
 
      The function was size(history) and not desirable. (Robert Collins)
1301
 
 
1302
 
    * ``Transport.get_shared_medium`` is deprecated.  Use
1303
 
      ``Transport.get_smart_medium`` instead.  (Andrew Bennetts)
1304
 
 
1305
 
    * ``VersionedFile`` factories now accept a get_scope parameter rather
1306
 
      than using a call to ``transaction_finished``, allowing the removal of
1307
 
      the fixed list of versioned files per repository. (Robert Collins)
1308
 
 
1309
 
    * ``VersionedFile.annotate_iter`` is deprecated. While in principle this
1310
 
      allowed lower memory use, all users of annotations wanted full file 
1311
 
      annotations, and there is no storage format suitable for incremental
1312
 
      line-by-line annotation. (Robert Collins)
1313
 
 
1314
 
    * ``VersionedFile.clone_text`` is deprecated. This performance optimisation
1315
 
      is no longer used - reading the content of a file that is undergoing a
1316
 
      file level merge to identical state on two branches is rare enough, and
1317
 
      not expensive enough to special case. (Robert Collins)
1318
 
 
1319
 
    * ``VersionedFile.clear_cache`` and ``enable_cache`` are deprecated.
1320
 
      These methods added significant complexity to the ``VersionedFile``
1321
 
      implementation, but were only used for optimising fetches from knits - 
1322
 
      which can be done from outside the knit layer, or via a caching
1323
 
      decorator. As knits are not the default format, the complexity is no
1324
 
      longer worth paying. (Robert Collins)
1325
 
 
1326
 
    * ``VersionedFile.create_empty`` is removed. This method presupposed a
1327
 
      sensible mapping to a transport for individual files, but pack backed
1328
 
      versioned files have no such mapping. (Robert Collins)
1329
 
 
1330
 
    * ``VersionedFile.get_graph`` is deprecated, with no replacement method.
1331
 
      The method was size(history) and not desirable. (Robert Collins)
1332
 
 
1333
 
    * ``VersionedFile.get_graph_with_ghosts`` is deprecated, with no
1334
 
      replacement method.  The method was size(history) and not desirable.
1335
 
      (Robert Collins)
1336
 
 
1337
 
    * ``VersionedFile.get_parents`` is deprecated, please use
1338
 
      ``VersionedFile.get_parent_map``. (Robert Collins)
1339
 
 
1340
 
    * ``VersionedFile.get_sha1`` is deprecated, please use
1341
 
      ``VersionedFile.get_sha1s``. (Robert Collins)
1342
 
 
1343
 
    * ``VersionedFile.has_ghost`` is now deprecated, as it is both expensive
1344
 
      and unused outside of a single test. (Robert Collins)
1345
 
 
1346
 
    * ``VersionedFile.iter_parents`` is now deprecated in favour of
1347
 
      ``get_parent_map`` which can be used to instantiate a Graph on a
1348
 
      VersionedFile. (Robert Collins)
1349
 
 
1350
 
    * ``VersionedFileStore`` no longer uses the transaction parameter given
1351
 
      to most methods; amongst other things this means that the
1352
 
      get_weave_or_empty method no longer guarantees errors on a missing weave
1353
 
      in a readonly transaction, and no longer caches versioned file instances
1354
 
      which reduces memory pressure (but requires more careful management by
1355
 
      callers to preserve performance). (Robert Collins)
1356
 
 
1357
 
  TESTING:
1358
 
 
1359
 
    * New -Dselftest_debug flag disables clearing of the debug flags during
1360
 
      tests.  This is useful if you want to use e.g. -Dhpss to help debug a
1361
 
      failing test.  Be aware that using this feature is likely to cause
1362
 
      spurious test failures if used with the full suite. (Andrew Bennetts)
1363
 
 
1364
 
    * selftest --load-list now uses a new more agressive test loader that will
1365
 
      avoid loading unneeded modules and building their tests. Plugins can use
1366
 
      this new loader by defining a load_tests function instead of a test_suite
1367
 
      function. (a forthcoming patch will provide many examples on how to
1368
 
      implement this).
1369
 
      (Vincent Ladeuil)
1370
 
 
1371
 
    * selftest --load-list now does some sanity checks regarding duplicate test
1372
 
      IDs and tests present in the list but not found in the actual test suite.
1373
 
      (Vincent Ladeuil)
1374
 
 
1375
 
    * Slightly more concise format for the selftest progress bar, so there's
1376
 
      more space to show the test name.  (Martin Pool) ::
1377
 
 
1378
 
        [2500/10884, 1fail, 3miss in 1m29s] test_revisionnamespaces.TestRev
1379
 
 
1380
 
    * The test suite takes much less memory to run, and is a bit faster.  This
1381
 
      is done by clearing most attributes of TestCases after running them, if
1382
 
      they succeeded.  (Andrew Bennetts)
1383
 
 
1384
 
  INTERNALS:
1385
 
 
1386
 
    * Added ``_build_client_protocol`` to ``_SmartClient``.  (Andrew Bennetts)
1387
 
 
1388
 
    * Added basic infrastructure for automatic plugin suggestion.
1389
 
      (Martin Albisetti)
1390
 
 
1391
 
    * If a ``LockableFiles`` object is not explicitly unlocked (for example
1392
 
      because of a missing ``try/finally`` block, it will give a warning but
1393
 
      not automatically unlock itself.  (Previously they did.)  This
1394
 
      sometimes caused knock-on errors if for example the network connection
1395
 
      had already failed, and should not be relied upon by code. 
1396
 
      (Martin Pool, #109520)
1397
 
 
1398
 
    * ``make dist`` target to build a release tarball, and also 
1399
 
      ``check-dist-tarball`` and ``dist-upload-escudero``.  (Martin Pool)
1400
 
 
1401
 
    * The ``read_response_tuple`` method of ``SmartClientRequestProtocol*``
1402
 
      classes will now raise ``UnknownSmartMethod`` when appropriate, so that
1403
 
      callers don't need to try distinguish unknown request errors from other
1404
 
      errors.  (Andrew Bennetts)
1405
 
 
1406
 
    * ``set_make_working_trees`` is now implemented provided on all repository
1407
 
      implementations (Aaron Bentley)
1408
 
 
1409
 
    * ``VersionedFile`` now has a new method ``get_parent_map`` which, like
1410
 
      ``Graph.get_parent_map`` returns a dict of key:parents. (Robert Collins)
1411
 
 
1412
 
 
1413
 
bzr 1.3.1 2008-04-09
1414
 
--------------------
1415
 
 
1416
 
  No changes from 1.3.1rc1.
1417
 
 
1418
 
 
1419
 
bzr 1.3rc1 2008-04-04
1420
 
---------------------
1421
 
 
1422
 
  BUG FIXES:
1423
 
 
1424
 
    * Fix a bug causing a ValueError crash in ``parse_line_delta_iter`` when
1425
 
      fetching revisions from a knit to pack repository or vice versa using
1426
 
      bzr:// (including over http or ssh).  
1427
 
      (#208418, Andrew Bennetts, Martin Pool, Robert Collins)
1428
 
 
1429
 
 
1430
 
bzr 1.3 2008-03-20
1431
 
------------------
1432
 
 
1433
 
Bazaar has become part of the GNU project <http://www.gnu.org>
1434
 
 
1435
 
Many operations that act on history, including ``log`` and ``annotate`` are now
1436
 
substantially faster.  Several bugs have been fixed and several new options and
1437
 
features have been added.
1438
 
 
1439
 
  TESTING:
1440
 
 
1441
 
    * Avoid spurious failure of ``TestVersion.test_version`` matching
1442
 
      directory names.
1443
 
      (#202778, Martin Pool)
1444
 
 
1445
 
 
1446
 
bzr 1.3rc1 2008-03-16
1447
 
---------------------
1448
 
 
1449
 
  NOTES WHEN UPGRADING:
1450
 
 
1451
 
    * The backup directory created by ``upgrade`` is now called
1452
 
      ``backup.bzr``, not ``.bzr.backup``. (Martin Albisetti)
1453
 
 
1454
 
  CHANGES:
1455
 
 
1456
 
    * A new repository format 'development' has been added. This format will
1457
 
      represent the latest 'in-progress' format that the bzr developers are
1458
 
      interested in getting early-adopter testing and feedback on.
1459
 
      ``doc/developers/development-repo.txt`` has detailed information.
1460
 
      (Robert Collins)
1461
 
 
1462
 
    * BZR_LOG environment variable controls location of .bzr.log trace file. 
1463
 
      User can suppress writing messages to .bzr.log by using '/dev/null'
1464
 
      filename (on Linux) or 'NUL' (on Windows). If BZR_LOG variable 
1465
 
      is not defined but BZR_HOME is defined then default location
1466
 
      for .bzr.log trace file is ``$BZR_HOME/.bzr.log``.
1467
 
      (Alexander Belchenko)
1468
 
 
1469
 
    * ``launchpad`` builtin plugin now shipped as separate part in standalone
1470
 
      bzr.exe, installed to ``C:\Program Files\Bazaar\plugins`` directory, 
1471
 
      and standalone installer allows user to skip installation of this plugin.
1472
 
      (Alexander Belchenko)
1473
 
 
1474
 
    * Restore auto-detection of plink.exe on Windows. (Dmitry Vasiliev)
1475
 
 
1476
 
    * Version number is now shown as "1.2" or "1.2pr2", without zeroed or
1477
 
      missing final fields.  (Martin Pool)
1478
 
 
1479
 
  FEATURES:
1480
 
 
1481
 
    * ``branch`` and ``checkout`` can hard-link working tree files, which is
1482
 
      faster and saves space.  (Aaron Bentley)
1483
 
 
1484
 
    * ``bzr send`` will now also look at the ``child_submit_to`` setting in
1485
 
      the submit branch to determine the email address to send to. 
1486
 
      (Jelmer Vernooij)
1487
 
 
1488
 
  IMPROVEMENTS:
1489
 
 
1490
 
    * BzrBranch._lefthand_history is faster on pack repos.  (Aaron Bentley)
1491
 
 
1492
 
    * Branch6.generate_revision_history is faster.  (Aaron Bentley)
1493
 
 
1494
 
    * Directory services can now be registered, allowing special URLs to be
1495
 
      dereferenced into real URLs.  This is a generalization and cleanup of
1496
 
      the lp: transport lookup.  (Aaron Bentley)
1497
 
 
1498
 
    * Merge directives that are automatically attached to emails have nicer
1499
 
      filenames, based on branch-nick + revno. (Aaron Bentley)
1500
 
 
1501
 
    * ``push`` has a ``--revision`` option, to specify what revision to push up
1502
 
      to.  (Daniel Watkins)
1503
 
 
1504
 
    * Significantly reducing execution time and network traffic for trivial 
1505
 
      case of running ``bzr missing`` command for two identical branches.
1506
 
      (Alexander Belchenko)
1507
 
 
1508
 
    * Speed up operations that look at the revision graph (such as 'bzr log').
1509
 
      ``KnitPackRepositor.get_revision_graph`` uses ``Graph.iter_ancestry`` to
1510
 
      extract the revision history. This allows filtering ghosts while
1511
 
      stepping instead of needing to peek ahead. (John Arbash Meinel)
1512
 
 
1513
 
    * The ``hooks`` command lists installed hooks, to assist in debugging.
1514
 
      (Daniel Watkins)
1515
 
 
1516
 
    * Updates to how ``annotate`` work. Should see a measurable improvement in
1517
 
      performance and memory consumption for file with a lot of merges.
1518
 
      Also, correctly handle when a line is introduced by both parents (it
1519
 
      should be attributed to the first merge which notices this, and not
1520
 
      to all subsequent merges.) (John Arbash Meinel)
1521
 
 
1522
 
  BUGFIXES:
1523
 
 
1524
 
    * Autopacking no longer holds the full set of inventory lines in
1525
 
      memory while copying. For large repositories, this can amount to
1526
 
      hundreds of MB of ram consumption.
1527
 
      (Ian Clatworthy, John Arbash Meinel)
1528
 
 
1529
 
    * Cherrypicking when using ``--format=merge3`` now explictly excludes
1530
 
      BASE lines. (John Arbash Meinel, #151731)
1531
 
 
1532
 
    * Disable plink's interactive prompt for password.
1533
 
      (#107593, Dmitry Vasiliev)
1534
 
 
1535
 
    * Encode command line arguments from unicode to user_encoding before
1536
 
      invoking external mail client in `bzr send` command.
1537
 
      (#139318, Alexander Belchenko)
1538
 
 
1539
 
    * Fixed problem connecting to ``bzr+https://`` servers.
1540
 
      (#198793, John Ferlito)
1541
 
 
1542
 
    * Improved error reporting in the Launchpad plugin. (Daniel Watkins,
1543
 
      #196618)
1544
 
 
1545
 
    * Include quick-start-summary.svg file to python-based installer(s)
1546
 
      for Windows. (#192924, Alexander Belchenko)
1547
 
 
1548
 
    * lca merge now respects specified files. (Aaron Bentley)
1549
 
 
1550
 
    * Make version-info --custom imply --all. (#195560, James Westby)
1551
 
 
1552
 
    * ``merge --preview`` now works for merges that add or modify
1553
 
      symlinks (James Henstridge)
1554
 
 
1555
 
    * Redirecting the output from ``bzr merge`` (when the remembered
1556
 
      location is used) now works. (John Arbash Meinel)
1557
 
 
1558
 
    * setup.py script explicitly checks for Python version.
1559
 
      (Jari Aalto, Alexander Belchenko, #200569)
1560
 
 
1561
 
    * UnknownFormatErrors no longer refer to branches regardless of kind of
1562
 
      unknown format. (Daniel Watkins, #173980)
1563
 
 
1564
 
    * Upgrade bundled ConfigObj to version 4.5.2, which properly quotes #
1565
 
      signs, among other small improvements. (Matt Nordhoff, #86838)
1566
 
 
1567
 
    * Use correct indices when emitting LCA conflicts.  This fixes IndexError
1568
 
      errors.  (Aaron Bentley, #196780)
1569
 
 
1570
 
  DOCUMENTATION:
1571
 
 
1572
 
    * Explained how to use ``version-info --custom`` in the User Guide.
1573
 
      (Neil Martinsen-Burrell)
1574
 
 
1575
 
  API BREAKS:
1576
 
 
1577
 
    * Support for loading plugins from zip files and
1578
 
      ``bzrlib.plugin.load_from_zip()`` function are deprecated.
1579
 
      (Alexander Belchenko)
1580
 
 
1581
 
  TESTING:
1582
 
    
1583
 
    * Added missing blackbox tests for ``modified`` (Adrian Wilkins)
1584
 
 
1585
 
    * The branch interface tests were invalid for branches using rich-root
1586
 
      repositories because the empty string is not a valid file-id.
1587
 
      (Robert Collins)
1588
 
 
1589
 
  INTERNALS:
1590
 
 
1591
 
    * ``Graph.iter_ancestry`` returns the ancestry of revision ids. Similar to
1592
 
      ``Repository.get_revision_graph()`` except it includes ghosts and you can
1593
 
      stop part-way through. (John Arbash Meinel)
1594
 
 
1595
 
    * New module ``tools/package_mf.py`` provide custom module finder for
1596
 
      python packages (improves standard python library's modulefinder.py)
1597
 
      used by ``setup.py`` script while building standalone bzr.exe.
1598
 
      (Alexander Belchenko)
1599
 
 
1600
 
    * New remote method ``RemoteBzrDir.find_repositoryV2`` adding support for
1601
 
      detecting external lookup support on remote repositories. This method is
1602
 
      now attempted first when lookup up repositories, leading to an extra 
1603
 
      round trip on older bzr smart servers. (Robert Collins)
1604
 
 
1605
 
    * Repository formats have a new supported-feature attribute
1606
 
      ``supports_external_lookups`` used to indicate repositories which support
1607
 
      falling back to other repositories when they have partial data.
1608
 
      (Robert Collins)
1609
 
 
1610
 
    * ``Repository.get_revision_graph_with_ghosts`` and
1611
 
      ``bzrlib.revision.(common_ancestor,MultipleRevisionSources,common_graph)``
1612
 
      have been deprecated.  (John Arbash Meinel)
1613
 
 
1614
 
    * ``Tree.iter_changes`` is now a public API, replacing the work-in-progress
1615
 
      ``Tree._iter_changes``. The api is now considered stable and ready for
1616
 
      external users.  (Aaron Bentley)
1617
 
 
1618
 
    * The bzrdir format registry now accepts an ``alias`` keyword to
1619
 
      register_metadir, used to indicate that a format name is an alias for
1620
 
      some other format and thus should not be reported when describing the
1621
 
      format. (Robert Collins)
1622
 
 
1623
 
 
1624
 
bzr 1.2 2008-02-15
1625
 
------------------
1626
 
 
1627
 
  BUG FIXES:
1628
 
 
1629
 
    * Fix failing test in Launchpad plugin. (Martin Pool)
1630
 
 
1631
 
 
1632
 
bzr 1.2rc1 2008-02-13
1633
 
---------------------
1634
 
 
1635
 
  NOTES WHEN UPGRADING:
1636
 
  
1637
 
    * Fetching via the smart protocol may need to reconnect once during a fetch
1638
 
      if the remote server is running Bazaar 1.1 or earlier, because the client
1639
 
      attempts to use more efficient requests that confuse older servers.  You
1640
 
      may be required to re-enter a password or passphrase when this happens.
1641
 
      This won't happen if the server is upgraded to Bazaar 1.2.
1642
 
      (Andrew Bennetts)
1643
 
 
1644
 
  CHANGES:
1645
 
 
1646
 
    * Fetching via bzr+ssh will no longer fill ghosts by default (this is
1647
 
      consistent with pack-0.92 fetching over SFTP). (Robert Collins)
1648
 
 
1649
 
    * Formatting of ``bzr plugins`` output is changed to be more human-
1650
 
      friendly. Full path of plugins locations will be shown only with
1651
 
      ``--verbose`` command-line option. (Alexander Belchenko)
1652
 
 
1653
 
    * ``merge`` now prefers to use the submit branch, but will fall back to
1654
 
      parent branch.  For many users, this has no effect.  But some users who
1655
 
      pull and merge on the same branch will notice a change.  This change
1656
 
      makes it easier to work on a branch on two different machines, pulling
1657
 
      between the machines, while merging from the upstream.
1658
 
      ``merge --remember`` can now be used to set the submit_branch.
1659
 
      (Aaron Bentley)
1660
 
 
1661
 
  FEATURES:
1662
 
 
1663
 
    * ``merge --preview`` produces a diff of the changes merge would make,
1664
 
      but does not actually perform the merge.  (Aaron Bentley)
1665
 
 
1666
 
    * New smart method ``Repository.get_parent_map`` for getting revision
1667
 
      parent data. This returns additional parent information topologically
1668
 
      adjacent to the requested data to reduce round trip latency impacts.
1669
 
      (Robert Collins)
1670
 
 
1671
 
    * New smart method, ``Repository.stream_revisions_chunked``, for fetching
1672
 
      revision data that streams revision data via a chunked encoding.  This
1673
 
      avoids buffering large amounts of revision data on the server and on the
1674
 
      client, and sends less data to the server to request the revisions.
1675
 
      (Andrew Bennetts, Robert Collins, #178353)
1676
 
 
1677
 
    * The launchpad plugin now handles lp urls of the form
1678
 
      ``lp://staging/``, ``lp://demo/``, ``lp://dev/`` to use the appropriate
1679
 
      launchpad instance to do the resolution of the branch identities.
1680
 
      This is primarily of use to Launchpad developers, but can also
1681
 
      be used by other users who want to try out Launchpad as
1682
 
      a branch location without messing up their public Launchpad
1683
 
      account.  Branches that are pushed to the staging environment
1684
 
      have an expected lifetime of one day. (Tim Penhey)
1685
 
 
1686
 
  IMPROVEMENTS:
1687
 
 
1688
 
    * Creating a new branch no longer tries to read the entire revision-history
1689
 
      unnecessarily over smart server operations. (Robert Collins)
1690
 
 
1691
 
    * Fetching between different repository formats with compatible models now
1692
 
      takes advantage of the smart method to stream revisions.  (Andrew Bennetts)
1693
 
 
1694
 
    * The ``--coverage`` option is now global, rather specific to ``bzr
1695
 
      selftest``.  (Andrew Bennetts)
1696
 
 
1697
 
    * The ``register-branch`` command will now use the public url of the branch
1698
 
      containing the current directory, if one has been set and no explicit
1699
 
      branch is provided.  (Robert Collins)
1700
 
 
1701
 
    * Tweak the ``reannotate`` code path to optimize the 2-parent case.
1702
 
      Speeds up ``bzr annotate`` with a pack repository by approx 3:2.
1703
 
      (John Arbash Meinel)
1704
 
 
1705
 
  BUGFIXES:
1706
 
 
1707
 
    * Calculate remote path relative to the shared medium in _SmartClient.  This
1708
 
      is related to the problem in bug #124089.  (Andrew Bennetts)
1709
 
 
1710
 
    * Cleanly handle connection errors in smart protocol version two, the same
1711
 
      way as they are handled by version one.  (Andrew Bennetts)
1712
 
 
1713
 
    * Clearer error when ``version-info --custom`` is used without
1714
 
      ``--template`` (Lukáš Lalinský)
1715
 
 
1716
 
    * Don't raise UnavailableFeature during test setup when medusa is not
1717
 
      available or tearDown is never called leading to nasty side effects.
1718
 
      (#137823, Vincent Ladeuil)
1719
 
 
1720
 
    * If a plugin's test suite cannot be loaded, for example because of a syntax
1721
 
      error in the tests, then ``selftest`` fails, rather than just printing 
1722
 
      a warning.  (Martin Pool, #189771)
1723
 
      
1724
 
    * List possible values for BZR_SSH environment variable in env-variables
1725
 
      help topic. (Alexander Belchenko, #181842)
1726
 
 
1727
 
    * New methods ``push_log_file`` and ``pop_log_file`` to intercept messages:
1728
 
      popping the log redirection now precisely restores the previous state,
1729
 
      which makes it easier to use bzr log output from other programs.
1730
 
      TestCaseInTempDir no longer depends on a log redirection being established
1731
 
      by the test framework, which lets bzr tests cleanly run from a normal
1732
 
      unittest runner.
1733
 
      (#124153, #124849, Martin Pool, Jonathan Lange)
1734
 
 
1735
 
    * ``pull --quiet`` is now more quiet, in particular a message is no longer
1736
 
      printed when the remembered pull location is used. (James Westby,
1737
 
      #185907)
1738
 
 
1739
 
    * ``reconfigure`` can safely be interrupted while fetching.
1740
 
      (Aaron Bentley, #179316)
1741
 
 
1742
 
    * ``reconfigure`` preserves tags when converting to and from lightweight
1743
 
      checkouts.  (Aaron Bentley, #182040)
1744
 
 
1745
 
    * Stop polluting /tmp when running selftest.
1746
 
      (Vincent Ladeuil, #123623)
1747
 
 
1748
 
    * Switch from NFKC => NFC for normalization checks. NFC allows a few
1749
 
      more characters which should be considered valid.
1750
 
      (John Arbash Meinel, #185458)
1751
 
 
1752
 
    * The launchpad plugin now uses the ``edge`` xmlrpc server to avoid
1753
 
      interacting badly with a bug on the launchpad side. (Robert Collins)
1754
 
 
1755
 
    * Unknown hostnames when connecting to a ``bzr://`` URL no longer cause
1756
 
      tracebacks.  (Andrew Bennetts, #182849)
1757
 
 
1758
 
  API BREAKS:
1759
 
 
1760
 
    * Classes implementing Merge types like Merge3Merger must now accept (and
1761
 
      honour) a do_merge flag in their constructor.  (Aaron Bentley)
1762
 
 
1763
 
    * ``Repository.add_inventory`` and ``add_revision`` now require the caller
1764
 
      to previously take a write lock (and start a write group.)
1765
 
      (Martin Pool)
1766
 
 
1767
 
  TESTING:
1768
 
 
1769
 
    * selftest now accepts --load-list <file> to load a test id list. This
1770
 
      speeds up running the test suite on a limited set of tests.
1771
 
      (Vincent Ladeuil)
1772
 
 
1773
 
  INTERNALS:
1774
 
 
1775
 
    * Add a new method ``get_result`` to graph search objects. The resulting
1776
 
      ``SearchResult`` can be used to recreate the search later, which will
1777
 
      be useful in reducing network traffic. (Robert Collins)
1778
 
 
1779
 
    * Use convenience function to check whether two repository handles 
1780
 
      are referring to the same repository in ``Repository.get_graph``. 
1781
 
      (Jelmer Vernooij, #187162)
1782
 
 
1783
 
    * Fetching now passes the find_ghosts flag through to the 
1784
 
      ``InterRepository.missing_revision_ids`` call consistently for all
1785
 
      repository types. This will enable faster missing revision discovery with
1786
 
      bzr+ssh. (Robert Collins)
1787
 
 
1788
 
    * Fix error handling in Repository.insert_data_stream. (Lukas Lalinsky)
1789
 
 
1790
 
    * ``InterRepository.missing_revision_ids`` is now deprecated in favour of
1791
 
      ``InterRepository.search_missing_revision_ids`` which returns a 
1792
 
      ``bzrlib.graph.SearchResult`` suitable for making requests from the smart
1793
 
      server. (Robert Collins)
1794
 
 
1795
 
    * New error ``NoPublicBranch`` for commands that need a public branch to
1796
 
      operate. (Robert Collins)
1797
 
 
1798
 
    * New method ``iter_inventories`` on Repository for access to many
1799
 
      inventories. This is primarily used by the ``revision_trees`` method, as
1800
 
      direct access to inventories is discouraged. (Robert Collins)
1801
 
 
1802
 
    * New method ``next_with_ghosts`` on the Graph breadth-first-search objects
1803
 
      which will split out ghosts and present parents into two separate sets,
1804
 
      useful for code which needs to be aware of ghosts (e.g. fetching data
1805
 
      cares about ghosts during revision selection). (Robert Collins)
1806
 
 
1807
 
    * Record a timestamp against each mutter to the trace file, relative to the
1808
 
      first import of bzrlib.  (Andrew Bennetts)
1809
 
 
1810
 
    * ``Repository.get_data_stream`` is now deprecated in favour of
1811
 
      ``Repository.get_data_stream_for_search`` which allows less network
1812
 
      traffic when requesting data streams over a smart server. (Robert Collins)
1813
 
 
1814
 
    * ``RemoteBzrDir._get_tree_branch`` no longer triggers ``_ensure_real``,
1815
 
      removing one round trip on many network operations. (Robert Collins)
1816
 
 
1817
 
    * RemoteTransport's ``recommended_page_size`` method now returns 64k, like
1818
 
      SFTPTransport and HttpTransportBase.  (Andrew Bennetts)
1819
 
 
1820
 
    * Repository has a new method ``has_revisions`` which signals the presence
1821
 
      of many revisions by returning a set of the revisions listed which are
1822
 
      present. This can be done by index queries without reading data for parent
1823
 
      revision names etc. (Robert Collins)
1824
 
 
1825
 
 
1826
 
bzr 1.1 2008-01-15
1827
 
------------------
1828
 
 
1829
 
(no changes from 1.1rc1)
1830
 
 
1831
 
bzr 1.1rc1 2008-01-05
1832
 
---------------------
1833
 
 
1834
 
  CHANGES:
1835
 
   
1836
 
   * Dotted revision numbers have been revised. Instead of growing longer with
1837
 
     nested branches the branch number just increases. (eg instead of 1.1.1.1.1
1838
 
     we now report 1.2.1.) This helps scale long lived branches which have many
1839
 
     feature branches merged between them. (John Arbash Meinel)
1840
 
 
1841
 
   * The syntax ``bzr diff branch1 branch2`` is no longer supported.
1842
 
     Use ``bzr diff branch1 --new branch2`` instead. This change has
1843
 
     been made to remove the ambiguity where ``branch2`` is in fact a
1844
 
     specific file to diff within ``branch1``.
1845
 
 
1846
 
  FEATURES:
1847
 
 
1848
 
   * New option to use custom template-based formats in  ``bzr version-info``.
1849
 
     (Lukáš Lalinský)
1850
 
 
1851
 
   * diff '--using' allows an external diff tool to be used for files.
1852
 
     (Aaron Bentley)
1853
 
 
1854
 
   * New "lca" merge-type for fast everyday merging that also supports
1855
 
     criss-cross merges.  (Aaron Bentley)
1856
 
 
1857
 
  IMPROVEMENTS:
1858
 
 
1859
 
   * ``annotate`` now doesn't require a working tree. (Lukáš Lalinský,
1860
 
     #90049)
1861
 
 
1862
 
   * ``branch`` and ``checkout`` can now use files from a working tree to
1863
 
     to speed up the process.  For checkout, this requires the new
1864
 
     --files-from flag.  (Aaron Bentley)
1865
 
 
1866
 
   * ``bzr diff`` now sorts files in alphabetical order.  (Aaron Bentley)
1867
 
 
1868
 
   * ``bzr diff`` now works on branches without working trees. Tree-less
1869
 
     branches can also be compared to each other and to working trees using
1870
 
     the new diff options ``--old`` and ``--new``. Diffing between branches,
1871
 
     with or without trees, now supports specific file filtering as well.
1872
 
     (Ian Clatworthy, #6700)
1873
 
 
1874
 
   * ``bzr pack`` now orders revision texts in topological order, with newest
1875
 
     at the start of the file, promoting linear reads for ``bzr log`` and the
1876
 
     like. This partially fixes #154129. (Robert Collins)
1877
 
 
1878
 
   * Merge directives now fetch prerequisites from the target branch if
1879
 
     needed.  (Aaron Bentley)
1880
 
 
1881
 
   * pycurl now handles digest authentication.
1882
 
     (Vincent Ladeuil)
1883
 
 
1884
 
   * ``reconfigure`` can now convert from repositories.  (Aaron Bentley)
1885
 
 
1886
 
   * ``-l`` is now a short form for ``--limit`` in ``log``.  (Matt Nordhoff)
1887
 
 
1888
 
   * ``merge`` now warns when merge directives cause cherrypicks.
1889
 
     (Aaron Bentley)
1890
 
 
1891
 
   * ``split`` now supported, to enable splitting large trees into smaller
1892
 
     pieces.  (Aaron Bentley)
1893
 
 
1894
 
  BUGFIXES:
1895
 
 
1896
 
   * Avoid AttributeError when unlocking a pack repository when an error occurs.
1897
 
     (Martin Pool, #180208)
1898
 
 
1899
 
   * Better handle short reads when processing multiple range requests.
1900
 
     (Vincent Ladeuil, #179368)
1901
 
 
1902
 
   * build_tree acceleration uses the correct path when a file has been moved.
1903
 
     (Aaron Bentley)
1904
 
 
1905
 
   * ``commit`` now succeeds when a checkout and its master branch share a
1906
 
     repository.  (Aaron Bentley, #177592)
1907
 
 
1908
 
   * Fixed error reporting of unsupported timezone format in
1909
 
     ``log --timezone``. (Lukáš Lalinský, #178722)
1910
 
 
1911
 
   * Fixed Unicode encoding error in ``ignored`` when the output is
1912
 
     redirected to a pipe. (Lukáš Lalinský)
1913
 
 
1914
 
   * Fix traceback when sending large response bodies over the smart protocol
1915
 
     on Windows. (Andrew Bennetts, #115781)
1916
 
 
1917
 
   * Fix ``urlutils.relative_url`` for the case of two ``file:///`` URLs
1918
 
     pointed to different logical drives on Windows.
1919
 
     (Alexander Belchenko, #90847)
1920
 
 
1921
 
   * HTTP test servers are now compatible with the http protocol version 1.1.
1922
 
     (Vincent Ladeuil, #175524)
1923
 
 
1924
 
   * _KnitParentsProvider.get_parent_map now handles requests for ghosts
1925
 
     correctly, instead of erroring or attributing incorrect parents to ghosts.
1926
 
     (Aaron Bentley)
1927
 
 
1928
 
   * ``merge --weave --uncommitted`` now works.  (Aaron Bentley)
1929
 
 
1930
 
   * pycurl authentication handling was broken and incomplete. Fix handling of
1931
 
     user:pass embedded in the urls.
1932
 
     (Vincent Ladeuil, #177643)
1933
 
 
1934
 
   * Files inside non-directories are now handled like other conflict types.
1935
 
     (Aaron Bentley, #177390)
1936
 
 
1937
 
   * ``reconfigure`` is able to convert trees into lightweight checkouts.
1938
 
     (Aaron Bentley)
1939
 
 
1940
 
   * Reduce lockdir timeout to 0 when running ``bzr serve``.  (Andrew Bennetts,
1941
 
     #148087)
1942
 
 
1943
 
   * Test that the old ``version_info_format`` functions still work, even
1944
 
     though they are deprecated. (John Arbash Meinel, ShenMaq, #177872)
1945
 
 
1946
 
   * Transform failures no longer cause ImmortalLimbo errors (Aaron Bentley,
1947
 
     #137681)
1948
 
 
1949
 
   * ``uncommit`` works even when the commit messages of revisions to be
1950
 
     removed use characters not supported in the terminal encoding.
1951
 
     (Aaron Bentley)
1952
 
 
1953
 
   * When dumb http servers return whole files instead of the requested ranges,
1954
 
     read the remaining bytes by chunks to avoid overflowing network buffers.
1955
 
     (Vincent Ladeuil, #175886)
1956
 
 
1957
 
  DOCUMENTATION:
1958
 
 
1959
 
   * Minor tweaks made to the bug tracker integration documentation.
1960
 
     (Ian Clatworthy)
1961
 
 
1962
 
   * Reference material has now be moved out of the User Guide and added
1963
 
     to the User Reference. The User Reference has gained 4 sections as
1964
 
     a result: Authenication Settings, Configuration Settings, Conflicts
1965
 
     and Hooks. All help topics are now dumped into text format in the
1966
 
     doc/en/user-reference directory for those who like browsing that
1967
 
     information in their editor. (Ian Clatworthy)
1968
 
 
1969
 
   * *Using Bazaar with Launchpad* tutorial added. (Ian Clatworthy)
1970
 
 
1971
 
  INTERNALS:
1972
 
 
1973
 
    * find_* methods available for BzrDirs, Branches and WorkingTrees.
1974
 
      (Aaron Bentley)
1975
 
 
1976
 
    * Help topics can now be loaded from files. 
1977
 
      (Ian Clatworthy, Alexander Belchenko)
1978
 
 
1979
 
    * get_parent_map now always provides tuples as its output.  (Aaron Bentley)
1980
 
 
1981
 
    * Parent Providers should now implement ``get_parent_map`` returning a
1982
 
      dictionary instead of ``get_parents`` returning a list.
1983
 
      ``Graph.get_parents`` is now deprecated. (John Arbash Meinel,
1984
 
      Robert Collins)
1985
 
 
1986
 
    * Patience Diff now supports arbitrary python objects, as long as they
1987
 
      support ``hash()``. (John Arbash Meinel)
1988
 
 
1989
 
    * Reduce selftest overhead to establish test names by memoization.
1990
 
      (Vincent Ladeuil)
1991
 
 
1992
 
  API BREAKS:
1993
 
 
1994
 
  TESTING:
1995
 
 
1996
 
   * Modules can now customise their tests by defining a ``load_tests``
1997
 
     attribute. ``pydoc bzrlib.tests.TestUtil.TestLoader.loadTestsFromModule``
1998
 
     for the documentation on this attribute. (Robert Collins)
1999
 
 
2000
 
   * New helper function ``bzrlib.tests.condition_id_re`` which helps
2001
 
     filter tests based on a regular expression search on the tests id.
2002
 
     (Robert Collins)
2003
 
    
2004
 
   * New helper function ``bzrlib.tests.condition_isinstance`` which helps
2005
 
     filter tests based on class. (Robert Collins)
2006
 
    
2007
 
   * New helper function ``bzrlib.tests.exclude_suite_by_condition`` which
2008
 
     generalises the ``exclude_suite_by_re`` function. (Robert Collins)
2009
 
 
2010
 
   * New helper function ``bzrlib.tests.filter_suite_by_condition`` which
2011
 
     generalises the ``filter_suite_by_re`` function. (Robert Collins)
2012
 
 
2013
 
   * New helper method ``bzrlib.tests.exclude_tests_by_re`` which gives a new
2014
 
     TestSuite that does not contain tests from the input that matched a
2015
 
     regular expression. (Robert Collins)
2016
 
 
2017
 
   * New helper method ``bzrlib.tests.randomize_suite`` which returns a
2018
 
     randomized copy of the input suite. (Robert Collins)
2019
 
 
2020
 
   * New helper method ``bzrlib.tests.split_suite_by_re`` which splits a test
2021
 
     suite into two according to a regular expression. (Robert Collins)
2022
 
 
2023
 
   * Parametrize all http tests for the transport implementations, the http
2024
 
     protocol versions (1.0 and 1.1) and the authentication schemes.
2025
 
     (Vincent Ladeuil) 
2026
 
 
2027
 
   * The ``exclude_pattern`` and ``random_order`` parameters to the function
2028
 
     ``bzrlib.tests.filter_suite_by_re`` have been deprecated. (Robert Collins)
2029
 
 
2030
 
   * The method ``bzrlib.tests.sort_suite_by_re`` has been deprecated. It is 
2031
 
     replaced by the new helper methods added in this release. (Robert Collins)
2032
 
 
2033
 
 
2034
 
bzr 1.0 2007-12-14
2035
 
------------------
2036
 
 
2037
 
  DOCUMENTATION:
2038
 
 
2039
 
   * More improvements and fixes to the User Guide.  (Ian Clatworthy)
2040
 
 
2041
 
   * Add information on cherrypicking/rebasing to the User Guide.
2042
 
     (Ian Clatworthy)
2043
 
 
2044
 
   * Improve bug tracker integration documentation. (Ian Clatworthy)
2045
 
 
2046
 
   * Minor edits to ``Bazaar in five minutes`` from David Roberts and
2047
 
     to the rebasing section of the User Guide from Aaron Bentley.
2048
 
     (Ian Clatworthy)
2049
 
 
2050
 
 
2051
 
bzr 1.0rc3 2007-12-11
2052
 
---------------------
2053
 
 
2054
 
  CHANGES:
2055
 
   
2056
 
   * If a traceback occurs, users are now asked to report the bug 
2057
 
     through Launchpad (https://bugs.launchpad.net/bzr/), rather than 
2058
 
     by mail to the mailing list.
2059
 
     (Martin Pool)
2060
 
 
2061
 
  BUGFIXES:
2062
 
 
2063
 
   * Fix Makefile rules for doc generation. (Ian Clatworthy, #175207)
2064
 
 
2065
 
   * Give more feedback during long http downloads by making readv deliver data
2066
 
     as it arrives for urllib, and issue more requests for pycurl. High latency
2067
 
     networks are better handled by urllib, the pycurl implementation give more
2068
 
     feedback but also incur more latency.
2069
 
     (Vincent Ladeuil, #173010)
2070
 
 
2071
 
   * Implement _make_parents_provider on RemoteRepository, allowing generating
2072
 
     bundles against branches on a smart server.  (Andrew Bennetts, #147836)
2073
 
 
2074
 
  DOCUMENTATION:
2075
 
 
2076
 
   * Improved user guide.  (Ian Clatworthy)
2077
 
 
2078
 
   * The single-page quick reference guide is now available as a PDF.
2079
 
     (Ian Clatworthy)
2080
 
 
2081
 
  INTERNALS:
2082
 
 
2083
 
    * readv urllib http implementation is now a real iterator above the
2084
 
      underlying socket and deliver data as soon as it arrives. 'get' still
2085
 
      wraps its output in a StringIO.
2086
 
      (Vincent Ladeuil)
2087
 
 
2088
 
 
2089
 
bzr 1.0rc2 2007-12-07
2090
 
---------------------
2091
 
 
2092
 
  IMPROVEMENTS:
2093
 
 
2094
 
   * Added a --coverage option to selftest. (Andrew Bennetts)
2095
 
 
2096
 
   * Annotate merge (merge-type=weave) now supports cherrypicking.
2097
 
     (Aaron Bentley)
2098
 
 
2099
 
   * ``bzr commit`` now doesn't print the revision number twice. (Matt
2100
 
     Nordhoff, #172612)
2101
 
 
2102
 
   * New configuration option ``bugtracker_<tracker_abbrevation>_url`` to
2103
 
     define locations of bug trackers that are not directly supported by
2104
 
     bzr or a plugin. The URL will be treated as a template and ``{id}``
2105
 
     placeholders will be replaced by specific bug IDs.  (Lukáš Lalinský)
2106
 
 
2107
 
   * Support logging single merge revisions with short and line log formatters.
2108
 
     (Kent Gibson)
2109
 
 
2110
 
   * User Guide enhanced with suggested readability improvements from
2111
 
     Matt Revell and corrections from John Arbash Meinel. (Ian Clatworthy)
2112
 
 
2113
 
   * Quick Start Guide renamed to Quick Start Card, moved down in
2114
 
     the catalog, provided in pdf and png format and updated to refer
2115
 
     to ``send`` instead of ``bundle``. (Ian Clatworthy, #165080)
2116
 
 
2117
 
   * ``switch`` can now be used on heavyweight checkouts as well as
2118
 
     lightweight ones. After switching a heavyweight checkout, the
2119
 
     local branch is a mirror/cache of the new bound branch and
2120
 
     uncommitted changes in the working tree are merged. As a safety
2121
 
     check, if there are local commits in a checkout which have not
2122
 
     been committed to the previously bound branch, then ``switch``
2123
 
     fails unless the ``--force`` option is given. This option is
2124
 
     now also required if the branch a lightweight checkout is pointing
2125
 
     to has been moved. (Ian Clatworthy)
2126
 
 
2127
 
  INTERNALS:
2128
 
 
2129
 
    * New -Dhttp debug option reports http connections, requests and responses.
2130
 
      (Vincent Ladeuil)
2131
 
 
2132
 
    * New -Dmerge debug option, which emits merge plans for merge-type=weave.
2133
 
 
2134
 
  BUGFIXES:
2135
 
 
2136
 
   * Better error message when running ``bzr cat`` on a non-existant branch.
2137
 
     (Lukáš Lalinský, #133782)
2138
 
 
2139
 
   * Catch OSError 17 (file exists) in final phase of tree transform and show
2140
 
     filename to user.
2141
 
     (Alexander Belchenko, #111758)
2142
 
 
2143
 
   * Catch ShortReadvErrors while using pycurl. Also make readv more robust by
2144
 
     allowing multiple GET requests to be issued if too many ranges are
2145
 
     required.
2146
 
     (Vincent Ladeuil, #172701)
2147
 
 
2148
 
   * Check for missing basis texts when fetching from packs to packs.
2149
 
     (John Arbash Meinel, #165290)
2150
 
 
2151
 
   * Fall back to showing e-mail in ``log --short/--line`` if the 
2152
 
     committer/author has only e-mail. (Lukáš Lalinský, #157026)
2153
 
 
2154
 
  API BREAKS:
2155
 
 
2156
 
   * Deprecate not passing a ``location`` argument to commit reporters'
2157
 
     ``started`` methods. (Matt Nordhoff)
2158
 
 
2159
 
 
2160
 
bzr 1.0rc1 2007-11-30
2161
 
---------------------
2162
 
 
2163
 
  NOTES WHEN UPGRADING:
2164
 
 
2165
 
   * The default repository format is now ``pack-0.92``.  This 
2166
 
     default is used when creating new repositories with ``init`` and 
2167
 
     ``init-repo``, and when branching over bzr+ssh or bzr+hpss. 
2168
 
     (See https://bugs.launchpad.net/bugs/164626)
2169
 
 
2170
 
     This format can be read and written by Bazaar 0.92 and later, and 
2171
 
     data can be transferred to and from older formats.
2172
 
 
2173
 
     To upgrade, please reconcile your repository (``bzr reconcile``), and then
2174
 
     upgrade (``bzr upgrade``). 
2175
 
     
2176
 
     ``pack-0.92`` offers substantially better scaling and performance than the
2177
 
     previous knits format. Some operations are slower where the code already
2178
 
     had bad scaling characteristics under knits, the pack format makes such
2179
 
     operations more visible as part of being more scalable overall. We will
2180
 
     correct such operations over the coming releases and encourage the filing
2181
 
     of bugs on any operation which you observe to be slower in a packs
2182
 
     repository. One particular case that we do not intend to fix is pulling
2183
 
     data from a pack repository into a knit repository over a high latency
2184
 
     link;  downgrading such data requires reinsertion of the file texts, and
2185
 
     this is a classic space/time tradeoff. The current implementation is
2186
 
     conservative on memory usage because we need to support converting data
2187
 
     from any tree without problems.  
2188
 
     (Robert Collins, Martin Pool, #164476)
2189
 
 
2190
 
  CHANGES:
2191
 
 
2192
 
   * Disable detection of plink.exe as possible ssh vendor. Plink vendor
2193
 
     still available if user selects it explicitly with BZR_SSH environment
2194
 
     variable. (Alexander Belchenko, workaround for bug #107593)
2195
 
 
2196
 
   * The pack format is now accessible as "pack-0.92", or "pack-0.92-subtree" 
2197
 
     to enable the subtree functions (for example, for bzr-svn).  
2198
 
     See http://doc.bazaar-vcs.org/latest/developer/packrepo.html
2199
 
     (Martin Pool)
2200
 
 
2201
 
  FEATURES:
2202
 
 
2203
 
   * New ``authentication.conf`` file holding the password or other credentials
2204
 
     for remote servers. This can be used for ssh, sftp, smtp and other 
2205
 
     supported transports.
2206
 
     (Vincent Ladeuil)
2207
 
 
2208
 
   * New rich-root and rich-root-pack formats, recording the same data about
2209
 
     tree roots that's recorded for all other directories.
2210
 
     (Aaron Bentley, #164639)
2211
 
 
2212
 
   * ``pack-0.92`` repositories can now be reconciled.
2213
 
     (Robert Collins, #154173)
2214
 
 
2215
 
   * ``switch`` command added for changing the branch a lightweight checkout
2216
 
     is associated with and updating the tree to reflect the latest content
2217
 
     accordingly. This command was previously part of the BzrTools plug-in.
2218
 
     (Ian Clatworthy, Aaron Bentley, David Allouche)
2219
 
 
2220
 
   * ``reconfigure`` command can now convert branches, trees, or checkouts to
2221
 
     lightweight checkouts.  (Aaron Bentley)
2222
 
 
2223
 
  PERFORMANCE:
2224
 
 
2225
 
   * Commit updates the state of the working tree via a delta rather than
2226
 
     supplying entirely new basis trees. For commit of a single specified file
2227
 
     this reduces the wall clock time for commit by roughly a 30%.
2228
 
     (Robert Collins, Martin Pool)
2229
 
 
2230
 
   * Commit with many automatically found deleted paths no longer performs
2231
 
     linear scanning for the children of those paths during inventory
2232
 
     iteration. This should fix commit performance blowing out when many such
2233
 
     paths occur during commit. (Robert Collins, #156491)
2234
 
 
2235
 
   * Fetch with pack repositories will no longer read the entire history graph.
2236
 
     (Robert Collins, #88319)
2237
 
 
2238
 
   * Revert takes out an appropriate lock when reverting to a basis tree, and
2239
 
     does not read the basis inventory twice. (Robert Collins)
2240
 
 
2241
 
   * Diff does not require an inventory to be generated on dirstate trees.
2242
 
     (Aaron Bentley, #149254)
2243
 
 
2244
 
   * New annotate merge (--merge-type=weave) implementation is fast on
2245
 
     versionedfiles withough cached annotations, e.g. pack-0.92.
2246
 
     (Aaron Bentley)
2247
 
 
2248
 
  IMPROVEMENTS:
2249
 
 
2250
 
   * ``bzr merge`` now warns when it encounters a criss-cross merge.
2251
 
     (Aaron Bentley)
2252
 
 
2253
 
   * ``bzr send`` now doesn't require the target e-mail address to be
2254
 
     specified on the command line if an interactive e-mail client is used.
2255
 
     (Lukáš Lalinský)
2256
 
 
2257
 
   * ``bzr tags`` now prints the revision number for each tag, instead of
2258
 
     the revision id, unless --show-ids is passed. In addition, tags can be
2259
 
     sorted chronologically instead of lexicographically with --sort=time.
2260
 
     (Adeodato Simó, #120231)
2261
 
 
2262
 
   * Windows standalone version of bzr is able to load system-wide plugins from
2263
 
     "plugins" subdirectory in installation directory. In addition standalone
2264
 
     installer write to the registry (HKLM\SOFTWARE\Bazaar) useful info 
2265
 
     about paths and bzr version. (Alexander Belchenko, #129298)
2266
 
 
2267
 
  DOCUMENTATION:
2268
 
 
2269
 
  BUG FIXES:
2270
 
 
2271
 
   * A progress bar has been added for knitpack -> knitpack fetching.
2272
 
     (Robert Collins, #157789, #159147)
2273
 
 
2274
 
   * Branching from a branch via smart server now preserves the repository
2275
 
     format. (Andrew Bennetts,  #164626)
2276
 
     
2277
 
   * ``commit`` is now able to invoke an external editor in a non-ascii
2278
 
     directory. (Daniel Watkins, #84043)
2279
 
 
2280
 
   * Catch connection errors for ftp.
2281
 
     (Vincent Ladeuil, #164567)
2282
 
 
2283
 
   * ``check`` no longer reports spurious unreferenced text versions.
2284
 
     (Robert Collins, John A Meinel, #162931, #165071)
2285
 
 
2286
 
   * Conflicts are now resolved recursively by ``revert``.
2287
 
     (Aaron Bentley, #102739)
2288
 
 
2289
 
   * Detect invalid transport reuse attempts by catching invalid URLs.
2290
 
     (Vincent Ladeuil, #161819)
2291
 
 
2292
 
   * Deleting a file without removing it shows a correct diff, not a traceback.
2293
 
     (Aaron Bentley)
2294
 
 
2295
 
   * Do no use timeout in HttpServer anymore.
2296
 
     (Vincent Ladeuil, #158972).
2297
 
 
2298
 
   * Don't catch the exceptions related to the http pipeline status before
2299
 
     retrying an http request or some programming errors may be masked.
2300
 
     (Vincent Ladeuil, #160012)
2301
 
 
2302
 
   * Fix ``bzr rm`` to not delete modified and ignored files.
2303
 
     (Lukáš Lalinský, #172598)
2304
 
 
2305
 
   * Fix exception when revisionspec contains merge revisons but log
2306
 
     formatter doesn't support merge revisions. (Kent Gibson, #148908)
2307
 
 
2308
 
   * Fix exception when ScopeReplacer is assigned to before any members have
2309
 
     been retrieved.  (Aaron Bentley)
2310
 
 
2311
 
   * Fix multiple connections during checkout --lightweight.
2312
 
     (Vincent Ladeuil, #159150)
2313
 
 
2314
 
   * Fix possible error in insert_data_stream when copying between 
2315
 
     pack repositories over bzr+ssh or bzr+http.  
2316
 
     KnitVersionedFile.get_data_stream now makes sure that requested
2317
 
     compression parents are sent before any delta hunks that depend 
2318
 
     on them.
2319
 
     (Martin Pool, #164637)
2320
 
 
2321
 
   * Fix typo in limiting offsets coalescing for http, leading to
2322
 
     whole files being downloaded instead of parts.
2323
 
     (Vincent Ladeuil, #165061)
2324
 
 
2325
 
   * FTP server errors don't error in the error handling code.
2326
 
     (Robert Collins, #161240)
2327
 
 
2328
 
   * Give a clearer message when a pull fails because the source needs
2329
 
     to be reconciled.
2330
 
     (Martin Pool, #164443)
2331
 
 
2332
 
   * It is clearer when a plugin cannot be loaded because of its name, and a
2333
 
     suggestion for an acceptable name is given. (Daniel Watkins, #103023)
2334
 
 
2335
 
   * Leave port as None in transport objects if user doesn't
2336
 
     specify a port in urls.
2337
 
     (vincent Ladeuil, #150860)
2338
 
 
2339
 
   * Make sure Repository.fetch(self) is properly a no-op for all
2340
 
     Repository implementations. (John Arbash Meinel, #158333)
2341
 
 
2342
 
   * Mark .bzr directories as "hidden" on Windows.
2343
 
     (Alexander Belchenko, #71147)
2344
 
 
2345
 
   * ``merge --uncommitted`` can now operate on a single file.
2346
 
     (Aaron Bentley, Lukáš Lalinský, #136890)
2347
 
 
2348
 
   * Obsolete packs are now cleaned up by pack and autopack operations.
2349
 
     (Robert Collins, #153789)
2350
 
 
2351
 
   * Operations pulling data from a smart server where the underlying
2352
 
     repositories are not both annotated/both unannotated will now work.
2353
 
     (Robert Collins, #165304).
2354
 
 
2355
 
   * Reconcile now shows progress bars. (Robert Collins, #159351)
2356
 
 
2357
 
   * ``RemoteBranch`` was not initializing ``self._revision_id_to_revno_map``
2358
 
     properly. (John Arbash Meinel, #162486)
2359
 
 
2360
 
   * Removing an already-removed file reports the file does not exist. (Daniel
2361
 
     Watkins, #152811)
2362
 
 
2363
 
   * Rename on Windows is able to change filename case.
2364
 
     (Alexander Belchenko, #77740)
2365
 
 
2366
 
   * Return error instead of a traceback for ``bzr log -r0``.
2367
 
     (Kent Gibson, #133751)
2368
 
 
2369
 
   * Return error instead of a traceback when bzr is unable to create
2370
 
     symlink on some platforms (e.g. on Windows).
2371
 
     (Alexander Belchenko, workaround for #81689)
2372
 
 
2373
 
   * Revert doesn't crash when restoring a single file from a deleted
2374
 
     directory. (Aaron Bentley)
2375
 
 
2376
 
   * Stderr output via logging mechanism now goes through encoded wrapper
2377
 
     and no more uses utf-8, but terminal encoding instead. So all unicode
2378
 
     strings now should be readable in non-utf-8 terminal.
2379
 
     (Alexander Belchenko, #54173)
2380
 
 
2381
 
   * The error message when ``move --after`` should be used makes how to do so
2382
 
     clearer. (Daniel Watkins, #85237)
2383
 
 
2384
 
   * Unicode-safe output from ``bzr info``. The output will be encoded
2385
 
     using the terminal encoding and unrepresentable characters will be
2386
 
     replaced by '?'. (Lukáš Lalinský, #151844)
2387
 
 
2388
 
   * Working trees are no longer created when pushing into a local no-trees
2389
 
     repo. (Daniel Watkins, #50582)
2390
 
 
2391
 
   * Upgrade util/configobj to version 4.4.0.
2392
 
     (Vincent Ladeuil, #151208).
2393
 
 
2394
 
   * Wrap medusa ftp test server as an FTPServer feature.
2395
 
     (Vincent Ladeuil, #157752)
2396
 
 
2397
 
  API BREAKS:
2398
 
 
2399
 
   * ``osutils.backup_file`` is deprecated. Actually it's not used in bzrlib
2400
 
     during very long time. (Alexander Belchenko)
2401
 
 
2402
 
   * The return value of
2403
 
     ``VersionedFile.iter_lines_added_or_present_in_versions`` has been
2404
 
     changed. Previously it was an iterator of lines, now it is an iterator of
2405
 
     (line, version_id) tuples. This change has been made to aid reconcile and
2406
 
     fetch operations. (Robert Collins)
2407
 
 
2408
 
   * ``bzrlib.repository.get_versioned_file_checker`` is now private.
2409
 
     (Robert Collins)
2410
 
 
2411
 
   * The Repository format registry default has been removed; it was previously
2412
 
     obsoleted by the bzrdir format default, which implies a default repository
2413
 
     format.
2414
 
     (Martin Pool)
2415
 
 
2416
 
  INTERNALS:
2417
 
 
2418
 
   * Added ``ContainerSerialiser`` and ``ContainerPushParser`` to
2419
 
     ``bzrlib.pack``.  These classes provide more convenient APIs for generating
2420
 
     and parsing containers from streams rather than from files.  (Andrew
2421
 
     Bennetts)
2422
 
 
2423
 
   * New module ``lru_cache`` providing a cache for use by tasks that need
2424
 
     semi-random access to large amounts of data. (John A Meinel)
2425
 
 
2426
 
   * InventoryEntry.diff is now deprecated.  Please use diff.DiffTree instead.
2427
 
 
2428
 
  TESTING:
2429
 
 
2430
 
 
2431
 
bzr 0.92 2007-11-05
2432
 
-------------------
2433
 
 
2434
 
  CHANGES:
2435
 
 
2436
 
  * New uninstaller on Win32.  (Alexander Belchenko)
2437
 
 
2438
 
 
2439
 
bzr 0.92rc1 2007-10-29
2440
 
----------------------
 
8
==============
2441
9
 
2442
10
  NOTES WHEN UPGRADING:
2443
11
 
2462
30
 
2463
31
  FEATURES:
2464
32
 
 
33
   * New ``authentication.conf`` file holding the password or other credentials
 
34
     for remote servers. This can be used for ssh, sftp, smtp and other 
 
35
     supported transports.
 
36
     (Vincent Ladeuil)
 
37
 
2465
38
   * New ``knitpack-experimental`` repository format. This is interoperable with
2466
39
     the ``dirstate-tags`` format but uses a smarter storage design that greatly
2467
40
     speeds up many operations, both local and remote. This new format can be
2468
41
     used as an option to the ``init``, ``init-repository`` and ``upgrade``
2469
 
     commands. See http://doc.bazaar-vcs.org/0.92/developers/knitpack.html
 
42
     commands. See http://doc.bazaar-vcs.org/latest/developers/knitpack.html
2470
43
     for further details. (Robert Collins)
2471
44
 
2472
45
   * For users of bzr-svn (and those testing the prototype subtree support) that
2500
73
     changed to determine if the tree is unchanged rather than recalculating
2501
74
     it at the end of the commit process. (Robert Collins)
2502
75
 
 
76
   * Fetch with pack repositories will no longer read the entire history graph.
 
77
     (Robert Collins, #88319)
 
78
 
2503
79
   * Inventory serialisation no longer double-sha's the content.
2504
80
     (Robert Collins)
2505
81
 
2514
90
   * Partial commits are now approximately 40% faster by walking over the
2515
91
     unselected current tree more efficiently. (Robert Collins)
2516
92
 
 
93
   * Revert takes out an appropriate lock when reverting to a basis tree, and
 
94
     does not read the basis inventory twice. (Robert Collins)
 
95
 
2517
96
   * XML inventory serialisation takes 20% less time while being stricter about
2518
97
     the contents. (Robert Collins)
2519
98
 
2546
125
 
2547
126
  BUG FIXES:
2548
127
 
 
128
   * A progress bar has been added for knitpack -> knitpack fetching.
 
129
     (Robert Collins, #157789)
 
130
 
2549
131
   * Connection error reporting for the smart server has been fixed to
2550
132
     display a user friendly message instead of a traceback.
2551
133
     (Ian Clatworthy, #115601)
2552
134
 
 
135
   * Do no use timeout in HttpServer anymore.
 
136
     (Vincent Ladeuil, #158972).
 
137
 
2553
138
   * Make sure to use ``O_BINARY`` when opening files to check their
2554
139
     sha1sum. (Alexander Belchenko, John Arbash Meinel, #153493)
2555
140
 
2611
196
     directory to detect leaking tests.
2612
197
     (Vincent Ladeuil, #147986)
2613
198
 
 
199
   * Reconcile now shows progress bars. (Robert Collins, #159351)
 
200
 
2614
201
   * The basename, not the full path, is now used when checking whether
2615
202
     the profiling dump file begins with ``callgrind.out`` or not. This
2616
203
     fixes a bug reported by Aaron Bentley on IRC. (Ian Clatworthy)
2621
208
   * ``WorkingTree.rename_one`` will now raise an error if normalisation of the
2622
209
     new path causes bzr to be unable to access the file. (Robert Collins)
2623
210
 
 
211
   * Wrap medusa ftp test server as an FTPServer feature.
 
212
     (Vincent Ladeuil, #157752)
 
213
 
2624
214
   * Correctly detect a NoSuchFile when using a filezilla server. (Gary van der
2625
215
     Merwe)
2626
216
 
2751
341
 
2752
342
 
2753
343
bzr 0.91 2007-09-26
2754
 
-------------------
 
344
===================
2755
345
 
2756
346
  BUG FIXES:
2757
347
 
2772
362
 
2773
363
 
2774
364
bzr 0.91rc2 2007-09-11
2775
 
----------------------
 
365
======================
2776
366
 
2777
367
   * Replaced incorrect tarball for previous release; a debug statement was left 
2778
368
     in bzrlib/remote.py.
2779
369
 
2780
370
 
2781
371
bzr 0.91rc1 2007-09-11
2782
 
----------------------
 
372
======================
2783
373
 
2784
374
  CHANGES:
2785
375
 
3100
690
 
3101
691
 
3102
692
bzr 0.90 2007-08-28
3103
 
-------------------
 
693
===================
3104
694
 
3105
695
  IMPROVEMENTS:
3106
696
 
3122
712
 
3123
713
 
3124
714
bzr 0.90rc1 2007-08-14
3125
 
----------------------
 
715
======================
3126
716
 
3127
717
  BUGFIXES:
3128
718
 
3390
980
 
3391
981
 
3392
982
bzr 0.18  2007-07-17
3393
 
--------------------
 
983
====================
3394
984
 
3395
985
  BUGFIXES:
3396
986
 
3398
988
 
3399
989
 
3400
990
bzr 0.18rc1  2007-07-10
3401
 
-----------------------
 
991
=======================
3402
992
 
3403
993
  BUGFIXES:
3404
994
 
3645
1235
 
3646
1236
 
3647
1237
bzr 0.17  2007-06-18
3648
 
--------------------
 
1238
====================
3649
1239
 
3650
1240
  BUGFIXES:
3651
1241
 
3657
1247
 
3658
1248
 
3659
1249
bzr 0.17rc1  2007-06-12
3660
 
-----------------------
 
1250
=======================
3661
1251
 
3662
1252
  NOTES WHEN UPGRADING:
3663
1253
 
3755
1345
      mainline). (John Arbash Meinel, #115343)
3756
1346
 
3757
1347
bzr 0.16  2007-05-07
3758
 
--------------------
 
1348
====================
3759
1349
  
3760
1350
  BUGFIXES:
3761
1351
 
3784
1374
      both. (John Arbash Meinel)
3785
1375
 
3786
1376
bzr 0.16rc2  2007-04-30
3787
 
-----------------------
 
1377
=======================
3788
1378
 
3789
1379
  BUGFIXES:
3790
1380
 
3807
1397
      directories. (John Arbash Meinel, #110399)
3808
1398
 
3809
1399
bzr 0.16rc1  2007-04-26
3810
 
-----------------------
 
1400
=======================
3811
1401
 
3812
1402
  NOTES WHEN UPGRADING:
3813
1403
 
4110
1700
      (Vincent Ladeuil)
4111
1701
 
4112
1702
bzr 0.15 2007-04-01
4113
 
-------------------
 
1703
===================
4114
1704
 
4115
1705
  BUGFIXES:
4116
1706
 
4122
1712
      (Martin Pool)
4123
1713
 
4124
1714
bzr 0.15rc3  2007-03-26
4125
 
-----------------------
 
1715
=======================
4126
1716
 
4127
1717
  CHANGES:
4128
1718
 
4194
1784
      (vila, #88780)
4195
1785
 
4196
1786
bzr 0.15rc2  2007-03-14
4197
 
-----------------------
 
1787
=======================
4198
1788
 
4199
1789
  NOTES WHEN UPGRADING:
4200
1790
        
4244
1834
 
4245
1835
 
4246
1836
bzr 0.15rc1  2007-03-07
4247
 
-----------------------
 
1837
=======================
4248
1838
 
4249
1839
  SURPRISES:
4250
1840
 
4470
2060
 
4471
2061
 
4472
2062
bzr 0.14  2007-01-23
4473
 
--------------------
 
2063
====================
4474
2064
 
4475
2065
  IMPROVEMENTS:
4476
2066
 
4488
2078
 
4489
2079
 
4490
2080
bzr 0.14rc1  2007-01-16
4491
 
-----------------------
 
2081
=======================
4492
2082
 
4493
2083
  IMPROVEMENTS:
4494
2084
 
4620
2210
 
4621
2211
 
4622
2212
bzr 0.13  2006-12-05
4623
 
--------------------
 
2213
====================
4624
2214
    
4625
2215
  No changes from 0.13rc1
4626
2216
    
4627
2217
bzr 0.13rc1  2006-11-27
4628
 
-----------------------
 
2218
=======================
4629
2219
 
4630
2220
  IMPROVEMENTS:
4631
2221
 
4747
2337
      (previously it was ignoring it and returning the whole file,).
4748
2338
 
4749
2339
bzr 0.12  2006-10-30
4750
 
--------------------
 
2340
====================
4751
2341
 
4752
2342
  INTERNALS:
4753
2343
 
4756
2346
      (John Arbash Meinel)
4757
2347
  
4758
2348
bzr 0.12rc1  2006-10-23
4759
 
-----------------------
 
2349
=======================
4760
2350
 
4761
2351
  IMPROVEMENTS:
4762
2352
 
4873
2463
      created objects. (Robert Collins, John Arbash Meinel)
4874
2464
 
4875
2465
bzr 0.11  2006-10-02
4876
 
--------------------
 
2466
====================
4877
2467
 
4878
2468
    * Smart server transport test failures on windows fixed. (Lukáš Lalinský).
4879
2469
 
4880
2470
bzr 0.11rc2  2006-09-27
4881
 
-----------------------
 
2471
=======================
4882
2472
 
4883
2473
  BUG FIXES:
4884
2474
 
4888
2478
      Arbash Meinel).
4889
2479
 
4890
2480
bzr 0.11rc1  2006-09-25
4891
 
-----------------------
 
2481
=======================
4892
2482
 
4893
2483
  IMPROVEMENTS:
4894
2484
 
5077
2667
      Transport. (Andrew Bennetts, Martin Pool)
5078
2668
 
5079
2669
bzr 0.10  2006-08-29
5080
 
--------------------
 
2670
====================
5081
2671
  
5082
2672
  IMPROVEMENTS:
5083
2673
    * 'merge' now takes --uncommitted, to apply uncommitted changes from a
5152
2742
      easier. (John Arbash Meinel)
5153
2743
 
5154
2744
bzr 0.9.0  2006-08-11
5155
 
---------------------
 
2745
=====================
5156
2746
 
5157
2747
  SURPRISES:
5158
2748
 
5416
3006
    * "RevisionTree" is now in bzrlib/revisiontree.py. (Robert Collins)
5417
3007
 
5418
3008
bzr 0.8.2  2006-05-17
5419
 
---------------------
 
3009
=====================
5420
3010
  
5421
3011
  BUG FIXES:
5422
3012
   
5423
3013
    * setup.py failed to install launchpad plugin.  (Martin Pool)
5424
3014
 
5425
3015
bzr 0.8.1  2006-05-16
5426
 
---------------------
 
3016
=====================
5427
3017
 
5428
3018
  BUG FIXES:
5429
3019
 
5471
3061
      uses bzrlib api now. (Olaf Conradi)
5472
3062
 
5473
3063
bzr 0.8  2006-05-08
5474
 
-------------------
 
3064
===================
5475
3065
 
5476
3066
  NOTES WHEN UPGRADING:
5477
3067
 
5728
3318
      parameter which will provide String("foo") to the command as its stdin.
5729
3319
 
5730
3320
bzr 0.7 2006-01-09
5731
 
------------------
 
3321
==================
5732
3322
 
5733
3323
  CHANGES:
5734
3324
 
6019
3609
      for functions that need unicode strings. (Robert Collins)
6020
3610
 
6021
3611
bzr 0.6 2005-10-28
6022
 
------------------
 
3612
==================
6023
3613
 
6024
3614
  IMPROVEMENTS:
6025
3615
  
6231
3821
 
6232
3822
 
6233
3823
bzr 0.1.1 2005-10-12
6234
 
--------------------
 
3824
====================
6235
3825
 
6236
3826
  BUG FIXES:
6237
3827
 
6247
3837
 
6248
3838
 
6249
3839
bzr 0.1 2005-10-11
6250
 
------------------
 
3840
==================
6251
3841
 
6252
3842
  NOTES:
6253
3843
 
6372
3962
 
6373
3963
      
6374
3964
bzr 0.0.9 2005-09-23
6375
 
--------------------
 
3965
====================
6376
3966
 
6377
3967
  BUG FIXES:
6378
3968
 
6411
4001
 
6412
4002
 
6413
4003
bzr 0.0.8 2005-09-20
6414
 
--------------------
 
4004
====================
6415
4005
 
6416
4006
  IMPROVEMENTS:
6417
4007
 
6458
4048
 
6459
4049
 
6460
4050
bzr-0.0.7 2005-09-02
6461
 
--------------------
 
4051
====================
6462
4052
 
6463
4053
  NEW FEATURES:
6464
4054
 
6508
4098
 
6509
4099
 
6510
4100
bzr-0.0.6 2005-08-18
6511
 
--------------------
 
4101
====================
6512
4102
 
6513
4103
  NEW FEATURES:
6514
4104
 
6590
4180
 
6591
4181
 
6592
4182
bzr-0.0.5  2005-06-15
6593
 
---------------------
 
4183
=====================
6594
4184
  
6595
4185
  CHANGES:
6596
4186
 
6726
4316
 
6727
4317
 
6728
4318
bzr-0.0.4  2005-04-22
6729
 
---------------------
 
4319
=====================
6730
4320
 
6731
4321
  ENHANCEMENTS:
6732
4322
 
6790
4380
 
6791
4381
 
6792
4382
bzr-0.0.3  2005-04-06
6793
 
---------------------
 
4383
=====================
6794
4384
 
6795
4385
  ENHANCEMENTS:
6796
4386
 
6831
4421
 
6832
4422
 
6833
4423
bzr-0.0.2.1
6834
 
-----------
 
4424
===========
6835
4425
 
6836
4426
  PORTABILITY:
6837
4427
 
6839
4429
 
6840
4430
 
6841
4431
bzr-0.0.2  "black cube"  2005-03-31
6842
 
-----------------------------------
 
4432
===================================
6843
4433
 
6844
4434
  ENHANCEMENTS:
6845
4435
 
6867
4457
 
6868
4458
 
6869
4459
bzr-0.0.1  2005-03-26
6870
 
---------------------
 
4460
=====================
6871
4461
 
6872
4462
  ENHANCEMENTS:
6873
4463
 
6894
4484
 
6895
4485
 
6896
4486
bzr-0.0.0.69  2005-03-22
6897
 
------------------------
 
4487
========================
6898
4488
 
6899
4489
  ENHANCEMENTS:
6900
4490
 
6902
4492
 
6903
4493
    * Storage of local versions: init, add, remove, rm, info, log,
6904
4494
      diff, status, etc.
6905
 
 
6906
 
..
6907
 
   vim: tw=74 ft=rst ff=unix