~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-04-24 18:17:16 UTC
  • mfrom: (4300.3.2 trivial)
  • Revision ID: pqm@pqm.ubuntu.com-20090424181716-vimzfz6s1k4clq42
(mbp) fix problem with prompting in break-lock

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
6
.. contents:: List of Releases
6
7
   :depth: 1
7
8
 
8
 
bzr 2.0.4 (not released yet)
9
 
############################
10
 
 
11
 
:Codename:
12
 
:2.0.4: smooth sailing
13
 
 
14
 
Compatibility Breaks
15
 
********************
16
 
 
17
 
New Features
18
 
************
19
 
 
20
 
Bug Fixes
21
 
*********
22
 
 
23
 
* ``bzr annotate`` on another branch with ``-r branch:...`` no longer
24
 
  fails with an ``ObjectNotLocked`` error.  (Andrew Bennetts, #496590)
25
 
 
26
 
* ``bzr export dir`` now requests all file content as a record stream,
27
 
  rather than requsting the file content one file-at-a-time. This can make
28
 
  exporting over the network significantly faster (54min => 9min in one
29
 
  case). (John Arbash Meinel, #343218)
30
 
 
31
 
* ``bzr serve`` no longer slowly leaks memory. The compiled
32
 
  ``bzrlib.bencode.Encoder()`` class was using ``__del__`` to cleanup and
33
 
  free resources, and it should have been using ``__dealloc__``.
34
 
  This will likely have an impact on any other process that is serving for
35
 
  an extended period of time.  (John Arbash Meinel, #494406)
36
 
 
37
 
* Check for SIGINT (Ctrl-C) and other signals immediately if ``readdir``
38
 
  returns ``EINTR`` by calling ``PyErr_CheckSignals``.  This affected the
39
 
  optional ``_readdir_pyx`` extension.  (Andrew Bennetts, #495023)
40
 
 
41
 
* Give a clearer message if the lockdir disappears after being apparently
42
 
  successfully taken.  (Martin Pool, #498378)
43
 
 
44
 
* If we fail to open ``~/.bzr.log`` write a clear message to stderr rather
45
 
  than using ``warning()``. The log file is opened before logging is set
46
 
  up, and it leads to very confusing: 'no handlers for "bzr"' messages for
47
 
  users, rather than something nicer.
48
 
  (John Arbash Meinel, Barry Warsaw, #503886)
49
 
 
50
 
* The 2a format wasn't properly restarting autopacks when something
51
 
  changed underneath it (like another autopack). Now concurrent
52
 
  autopackers will properly succeed. (John Arbash Meinel, #495000)
53
 
 
54
 
* ``_update_current_block`` no longer suppresses exceptions, so ^C at just
55
 
  the right time will get propagated, rather than silently failing to move
56
 
  the block pointer. (John Arbash Meinel, Gareth White, #495023)
57
 
 
58
 
Improvements
59
 
************
60
 
 
61
 
Documentation
62
 
*************
63
 
 
64
 
API Changes
65
 
***********
66
 
 
67
 
Internals
68
 
*********
69
 
 
70
 
Testing
71
 
*******
72
 
 
73
 
* We have a new ``test_source`` that ensures all pyrex ``cdef`` functions
74
 
  handle exceptions somehow. (Possibly by setting ``# cannot_raise``
75
 
  rather than an ``except ?:`` clause.) This should help prevent bugs like
76
 
  bug #495023. (John Arbash Meinel)
77
 
 
78
 
 
79
 
bzr 2.0.3
80
 
#########
81
 
 
82
 
:Codename: little italy
83
 
:2.0.3: 2009-12-14
84
 
 
85
 
 
86
 
The third stable release of Bazaar has a small handful of bugfixes. As
87
 
expected, this has no internal or external compatibility changes versus
88
 
2.0.2 (or 2.0.0).
89
 
 
90
 
Bug Fixes
91
 
*********
92
 
 
93
 
* ``bzr push --use-existing-dir`` no longer crashes if the directory
94
 
  exists but contains an invalid ``.bzr`` directory.
95
 
  (Andrew Bennetts, #423563)
96
 
 
97
 
* Content filters are now applied correctly after pull, merge and switch.
98
 
  (Ian Clatworthy, #385879)
99
 
 
100
 
* Fix a potential segfault in the groupcompress hash map handling code.
101
 
  When inserting new entries, if the final hash bucket was empty, we could
102
 
  end up trying to access if ``(last_entry+1)->ptr == NULL``.
103
 
  (John Arbash Meinel, #490228)
104
 
 
105
 
* Improve "Binary files differ" hunk handling.  (Aaron Bentley, #436325)
106
 
 
107
 
 
108
 
bzr 2.0.2
109
 
#########
110
 
 
111
 
:Codename: after the scare
112
 
:2.0.2: 2009-11-02
113
 
 
114
 
The second in our "let's keep the stable bugfixes flowing" series. As
115
 
expected this has a few (~9) bugfixes relative to 2.0.1, and no major api
116
 
changes or features.
117
 
 
118
 
Bug Fixes
119
 
*********
120
 
 
121
 
* Avoid "NoneType has no attribute st_mode" error when files disappear
122
 
  from a directory while it's being read.  (Martin Pool, #446033)
123
 
 
124
 
* Content filters are now applied correctly after revert.
125
 
  (Ian Clatworthy)
126
 
 
127
 
* Diff parsing handles "Binary files differ" hunks.  (Aaron Bentley, #436325)
128
 
 
129
 
* Fetching from stacked pre-2a repository via a smart server no longer
130
 
  fails intermittently with "second push failed to complete".
131
 
  (Andrew Bennetts, #437626)
132
 
 
133
 
* Fix typos left after test_selftest refactoring.
134
 
  (Vincent Ladeuil, Matt Nordhoff, #461149)
135
 
 
136
 
* Fixed ``ObjectNotLocked`` errors during ``bzr log -r NNN somefile``.
137
 
  (Andrew Bennetts, #445171)
138
 
  
139
 
* PreviewTree file names are not limited by the encoding of the temp
140
 
  directory's filesystem. (Aaron Bentley, #436794)
141
 
 
142
 
Improvements
143
 
************
144
 
 
145
 
* ``bzr log`` now read-locks branches exactly once, so makes better use of
146
 
  data caches.  (Andrew Bennetts)
147
 
 
148
 
Documentation
149
 
*************
150
 
 
151
 
* Filtered views user documentation upgraded to refer to format 2a
152
 
  instead of pre-2.0 formats. (Ian Clatworthy)
153
 
 
154
 
 
155
 
bzr 2.0.1
156
 
#########
157
 
 
158
 
:Codename: Stability First
159
 
:2.0.1: 2009-10-14
160
 
 
161
 
The first of our new ongoing bugfix-only stable releases has arrived. It
162
 
includes a collection of 12 bugfixes applied to bzr 2.0.0, but does not
163
 
include any of the feature development in the 2.1.0 series.
164
 
 
165
 
 
166
 
Bug Fixes
167
 
*********
168
 
 
169
 
* ``bzr add`` in a tree that has files with ``\r`` or ``\n`` in the
170
 
  filename will issue a warning and skip over those files.
171
 
  (Robert Collins, #3918)
172
 
 
173
 
* bzr will attempt to authenticate with SSH servers that support
174
 
  ``keyboard-interactive`` auth but not ``password`` auth when using
175
 
  Paramiko.   (Andrew Bennetts, #433846)
176
 
 
177
 
* Fixed fetches from a stacked branch on a smart server that were failing
178
 
  with some combinations of remote and local formats.  This was causing
179
 
  "unknown object type identifier 60" errors.  (Andrew Bennetts, #427736)
180
 
 
181
 
* Fixed ``ObjectNotLocked`` errors when doing some log and diff operations
182
 
  on branches via a smart server.  (Andrew Bennetts, #389413)
183
 
 
184
 
* Handle things like ``bzr add foo`` and ``bzr rm foo`` when the tree is
185
 
  at the root of a drive. ``osutils._cicp_canonical_relpath`` always
186
 
  assumed that ``abspath()`` returned a path that did not have a trailing
187
 
  ``/``, but that is not true when working at the root of the filesystem.
188
 
  (John Arbash Meinel, Jason Spashett, #322807)
189
 
 
190
 
* Hide deprecation warnings for 'final' releases for python2.6.
191
 
  (John Arbash Meinel, #440062)
192
 
 
193
 
* Improve the time for ``bzr log DIR`` for 2a format repositories.
194
 
  We had been using the same code path as for <2a formats, which required
195
 
  iterating over all objects in all revisions.
196
 
  (John Arbash Meinel, #374730)
197
 
 
198
 
* Make sure that we unlock the tree if we fail to create a TreeTransform
199
 
  object when doing a merge, and there is limbo, or pending-deletions
200
 
  directory.  (Gary van der Merwe, #427773)
201
 
 
202
 
* Occasional IndexError on renamed files have been fixed. Operations that
203
 
  set a full inventory in the working tree will now go via the
204
 
  apply_inventory_delta code path which is simpler and easier to
205
 
  understand than dirstates set_state_from_inventory method. This may
206
 
  have a small performance impact on operations built on _write_inventory,
207
 
  but such operations are already doing full tree scans, so no radical
208
 
  performance change should be observed. (Robert Collins, #403322)
209
 
 
210
 
* Retrieving file text or mtime from a _PreviewTree has good performance when
211
 
  there are many changes.  (Aaron Bentley)
212
 
 
213
 
* The CHK index pages now use an unlimited cache size. With a limited
214
 
  cache and a large project, the random access of chk pages could cause us
215
 
  to download the entire cix file many times.
216
 
  (John Arbash Meinel, #402623)
217
 
 
218
 
* When a file kind becomes unversionable after being added, a sensible
219
 
  error will be shown instead of a traceback. (Robert Collins, #438569)
220
 
 
221
 
Documentation
222
 
*************
223
 
 
224
 
* Improved README. (Ian Clatworthy)
225
 
 
226
 
* Improved upgrade documentation for Launchpad branches.
227
 
  (Barry Warsaw)
228
 
 
229
 
 
230
 
bzr 2.0.0
231
 
#########
232
 
 
233
 
:2.0.0: 2009-09-22
234
 
:Codename: Instant Karma
235
 
 
236
 
This release of Bazaar makes the 2a (previously 'brisbane-core') format
237
 
the default when new branches or repositories are created.  This format is
238
 
substantially smaller and faster for many operations.  Most of the work in
239
 
this release focuses on bug fixes and stabilization, covering both 2a and
240
 
previous formats.  (See the Upgrade Guide for information on migrating
241
 
existing projects.)
242
 
 
243
 
This release also improves the documentation content and presentation,
244
 
including adding Windows HtmlHelp manuals.
245
 
 
246
 
The Bazaar team decided that 2.0 will be a long-term supported release,
247
 
with bugfix-only 2.0.x releases based on it, continuing for at least six
248
 
months or until the following stable release.
249
 
 
250
 
Changes from 2.0.0rc2 to final
251
 
******************************
252
 
 
253
 
* Officially branded as 2.0.0 rather than 2.0 to clarify between things
254
 
  that "want to happen on the 2.0.x stable series" versus things that want
255
 
  to "land in 2.0.0". (Changes how bzrlib._format_version_tuple() handles
256
 
  micro = 0.) (John Arbash Meinel)
257
 
 
258
 
bzr 2.0.0rc2
259
 
############
260
 
 
261
 
:2.0.0rc2: 2009-09-10
262
 
 
263
 
New Features
264
 
************
265
 
 
266
 
* Added post_commit hook for mutable trees. This allows the keywords
267
 
  plugin to expand keywords on files changed by the commit.
268
 
  (Ian Clatworthy, #408841)
269
 
 
270
 
Bug Fixes
271
 
*********
272
 
 
273
 
* Bazaar's native protocol code now correctly handles EINTR, which most
274
 
  noticeably occurs if you break in to the debugger while connected to a
275
 
  bzr+ssh server.  You can now can continue from the debugger (by typing
276
 
  'c') and the process continues.  However, note that pressing C-\ in the
277
 
  shell may still kill the SSH process, which is bug 162509, so you must
278
 
  sent a signal to the bzr process specifically, for example by typing
279
 
  ``kill -QUIT PID`` in another shell.  (Martin Pool, #341535)
280
 
 
281
 
* ``bzr check`` in pack-0.92, 1.6 and 1.9 format repositories will no
282
 
  longer report incorrect errors about ``Missing inventory ('TREE_ROOT', ...)``
283
 
  (Robert Collins, #416732)
284
 
 
285
 
* ``bzr info -v`` on a 2a format still claimed that it was a "Development
286
 
  format" (John Arbash Meinel, #424392)
287
 
 
288
 
* ``bzr log stacked-branch`` shows the full log including
289
 
  revisions that are in the fallback repository. (Regressed in 2.0rc1).
290
 
  (John Arbash Meinel, #419241)
291
 
 
292
 
* Clearer message when Bazaar runs out of memory, instead of a ``MemoryError``
293
 
  traceback.  (Martin Pool, #109115)
294
 
 
295
 
* Conversion to 2a will create a single pack for all the new revisions (as
296
 
  long as it ran without interruption). This improves both ``bzr upgrade``
297
 
  and ``bzr pull`` or ``bzr merge`` from local branches in older formats.
298
 
  The autopack logic that occurs every 100 revisions during local
299
 
  conversions was not returning that pack's identifier, which resulted in
300
 
  the partial packs created during the conversion not being consolidated
301
 
  at the end of the conversion process. (Robert Collins, #423818)
302
 
 
303
 
* Fetches from 2a to 2a are now again requested in 'groupcompress' order.
304
 
  Groups that are seen as 'underutilized' will be repacked on-the-fly.
305
 
  This means that when the source is fully packed, there is minimal
306
 
  overhead during the fetch, but if the source is poorly packed the result
307
 
  is a fairly well packed repository (not as good as 'bzr pack' but
308
 
  good-enough.) (Robert Collins, John Arbash Meinel, #402652)
309
 
 
310
 
* Fix a potential segmentation fault when doing 'log' of a branch that had
311
 
  ghosts in its mainline.  (Evaluating None as a tuple is bad.)
312
 
  (John Arbash Meinel, #419241)
313
 
 
314
 
* Fix a segmentation fault when computing the ``merge_sort`` of a graph
315
 
  that has a ghost in the mainline ancestry.
316
 
  (John Arbash Meinel, #419241)
317
 
 
318
 
* ``groupcompress`` sort order is now more stable, rather than relying on
319
 
  ``topo_sort`` ordering. The implementation is now
320
 
  ``KnownGraph.gc_sort``. (John Arbash Meinel)
321
 
 
322
 
* Local data conversion will generate correct deltas. This is a critical
323
 
  bugfix vs 2.0rc1, and all 2.0rc1 users should upgrade to 2.0rc2 before
324
 
  converting repositories. (Robert Collins, #422849)
325
 
 
326
 
* Network streams now decode adjacent records of the same type into a
327
 
  single stream, reducing layering churn. (Robert Collins)
328
 
 
329
 
* Prevent some kinds of incomplete data from being committed to a 2a
330
 
  repository, such as revisions without inventories, a missing chk_bytes
331
 
  record for an inventory, or a missing text referenced by an inventory.
332
 
  (Andrew Bennetts, #423506, #406687)
333
 
  
334
 
Documentation
335
 
*************
336
 
 
337
 
* Fix assertion error about "_remember_remote_is_before" when pushing to
338
 
  older smart servers.
339
 
  (Andrew Bennetts, #418931)
340
 
 
341
 
* Help on hooks no longer says 'Not deprecated' for hooks that are
342
 
  currently supported. (Ian Clatworthy, #422415)
343
 
 
344
 
* PDF and CHM (Windows HtmlHelp) formats are now supported for the
345
 
  user documentation. The HTML documentation is better broken up into
346
 
  topics. (Ian Clatworthy)
347
 
 
348
 
* The developer and foreign language documents are now separated
349
 
  out so that searching in the HTML and CHM files produces more
350
 
  useful results. (Ian Clatworthy)
351
 
 
352
 
* The main table of contents now provides links to the new Migration Docs
353
 
  and Plugins Guide. (Ian Clatworthy)
354
 
 
355
 
 
356
 
bzr 2.0.0rc1
357
 
############
358
 
 
359
 
:Codename: no worries
360
 
:2.0.0rc1: 2009-08-26
361
 
 
362
 
Compatibility Breaks
363
 
********************
364
 
 
365
 
* The default format for bzr is now ``2a``. This format brings many
366
 
  significant performance and size improvements. bzr can pull from
367
 
  any existing repository into a ``2a`` one, but can only transfer
368
 
  from ``2a`` into ``rich-root`` repositories. The Upgrade guide
369
 
  has more information about this change. (Robert Collins)
370
 
 
371
 
* On Windows auto-detection of Putty's plink.exe is disabled.
372
 
  Default SSH client for Windows is paramiko. User still can force
373
 
  usage of plink if explicitly set environment variable BZR_SSH=plink.
374
 
  (#414743, Alexander Belchenko)
375
 
 
376
 
New Features
377
 
************
378
 
 
379
 
* ``bzr branch --switch`` can now switch the checkout in the current directory
380
 
  to the newly created branch. (Lukáš Lalinský)
381
 
 
382
 
Bug Fixes
383
 
*********
384
 
 
385
 
* Fetches were being requested in 'groupcompress' order, but weren't
386
 
  recombining the groups. Thus they would 'fragment' to get the correct
387
 
  order, but not 'recombine' to actually benefit from it. Until we get
388
 
  recombining to work, switching to 'unordered' fetches avoids the
389
 
  fragmentation. (John Arbash Meinel, #402645)
390
 
 
391
 
* Fix a pycurl related test failure on karmic by recognizing an error
392
 
  raised by newer versions of pycurl.
393
 
  (Vincent Ladeuil, #306264)
394
 
 
395
 
* Fix a test failure on karmic by making a locale test more robust.
396
 
  (Vincent Ladeuil, #413514)
397
 
 
398
 
* Fix IndexError printing CannotBindAddress errors.
399
 
  (Martin Pool, #286871)
400
 
 
401
 
* Fix "Revision ... not present" errors when upgrading stacked branches,
402
 
  or when doing fetches from a stacked source to a stacked target.
403
 
  (Andrew Bennetts, #399140)
404
 
 
405
 
* ``bzr branch`` of 2a repositories over HTTP is much faster.  bzr now
406
 
  batches together small fetches from 2a repositories, rather than
407
 
  fetching only a few hundred bytes at a time.
408
 
  (Andrew Bennetts, #402657)
409
 
 
410
 
Improvements
411
 
************
412
 
 
413
 
* A better description of the platform is shown in crash tracebacks, ``bzr
414
 
  --version`` and ``bzr selftest``.
415
 
  (Martin Pool, #409137)
416
 
 
417
 
* bzr can now (again) capture crash data through the apport library, 
418
 
  so that a single human-readable file can be attached to bug reports.
419
 
  This can be disabled by using ``-Dno_apport`` on the command line, or by
420
 
  putting ``no_apport`` into the ``debug_flags`` section of
421
 
  ``bazaar.conf``.
422
 
  (Martin Pool, Robert Collins, #389328)
423
 
 
424
 
* ``bzr push`` locally on windows will no longer give a locking error with
425
 
  dirstate based formats. (Robert Collins)
426
 
 
427
 
* ``bzr shelve`` and ``bzr unshelve`` now work on windows.
428
 
  (Robert Collins, #305006)
429
 
 
430
 
* Commit of specific files no longer prevents using the the iter_changes
431
 
  codepath. On 2a repositories, commit of specific files should now be as
432
 
  fast, or slightly faster, than a full commit. (Robert Collins)
433
 
 
434
 
* The internal core code that handles specific file operations like
435
 
  ``bzr st FILENAME`` or ``bzr commit FILENAME`` has been changed to
436
 
  include the parent directories if they have altered, and when a
437
 
  directory stops being a directory its children are always included. This
438
 
  fixes a number of causes for ``InconsistentDelta`` errors, and permits
439
 
  faster commit of specific paths. (Robert Collins, #347649)
440
 
 
441
 
Documentation
442
 
*************
443
 
 
444
 
* New developer documentation for content filtering.
445
 
  (Martin Pool)
446
 
 
447
 
API Changes
448
 
***********
449
 
 
450
 
* ``bzrlib.shelf_ui`` has had the ``from_args`` convenience methods of its
451
 
  classes changed to manage lock lifetime of the trees they open in a way
452
 
  consistent with reader-exclusive locks. (Robert Collins, #305006)
453
 
 
454
 
Internals
455
 
*********
456
 
 
457
 
Testing
458
 
*******
459
 
 
460
 
bzr 1.18.1
461
 
##########
462
 
 
463
 
:Codename:     nein nein nein!
464
 
:1.18.1:       2009-09-09
465
 
 
466
 
This release fixes two small but worthwhile bugs relevant to users on
467
 
Microsoft Windows: some commands that failed on with locking errors will
468
 
now work, and a bug that caused poor performance after committing a file
469
 
with line-ending conversion has now been fixed.  It also fixes a bug in
470
 
pushing to older servers.
471
 
 
472
 
Bug Fixes
473
 
*********
474
 
 
475
 
* Fixed a problem where using content filtering and especially end-of-line
476
 
  conversion will commit too many copies a file.
477
 
  (Martin Pool, #415508)
478
 
 
479
 
* Fix assertion error about ``_remember_remote_is_before`` in
480
 
  ``set_tags_bytes`` when pushing to older smart servers.  
481
 
  (Andrew Bennetts, Alexander Belchenko, #418931)
482
 
 
483
 
Improvements
484
 
************
485
 
 
486
 
* ``bzr push`` locally on Windows will no longer give a locking error with
487
 
  dirstate based formats. (Robert Collins)
488
 
 
489
 
* ``bzr shelve`` and ``bzr unshelve`` now work on Windows.
490
 
  (Robert Collins, #305006)
491
 
 
492
 
API Changes
493
 
***********
494
 
 
495
 
* ``bzrlib.shelf_ui`` has had the ``from_args`` convenience methods of its
496
 
  classes changed to manage lock lifetime of the trees they open in a way
497
 
  consistent with reader-exclusive locks. (Robert Collins, #305006)
498
 
 
499
 
* ``Tree.path_content_summary`` may return a size of None, when called on
500
 
  a tree with content filtering where the size of the canonical form
501
 
  cannot be cheaply determined.  (Martin Pool)
502
 
 
503
 
 
504
 
bzr 1.18
505
 
########
506
 
 
507
 
Compatibility Breaks
508
 
********************
509
 
 
510
 
* Committing directly to a stacked branch from a lightweight checkout will
511
 
  no longer work. In previous versions this would appear to work but would
512
 
  generate repositories with insufficient data to create deltas, leading
513
 
  to later errors when branching or reading from the repository.
514
 
  (Robert Collins, bug #375013)
515
 
 
516
 
New Features
517
 
************
518
 
 
519
 
Bug Fixes
520
 
*********
521
 
 
522
 
* Fetching from 2a branches from a version-2 bzr protocol would fail to
523
 
  copy the internal inventory pages from the CHK store. This cannot happen
524
 
  in normal use as all 2a compatible clients and servers support the
525
 
  version-3 protocol, but it does cause test suite failures when testing
526
 
  downlevel protocol behaviour. (Robert Collins)
527
 
 
528
 
* Fix a test failure on karmic by making a locale test more robust.
529
 
  (Vincent Ladeuil, #413514)
530
 
 
531
 
* Fixed "Pack ... already exists" error when running ``bzr pack`` on a
532
 
  fully packed 2a repository.  (Andrew Bennetts, #382463)
533
 
 
534
 
* Further tweaks to handling of ``bzr add`` messages about ignored files.
535
 
  (Jason Spashett, #76616)
536
 
 
537
 
* Properly handle fetching into a stacked branch while converting the
538
 
  data, especially when there are also ghosts. The code was filling in
539
 
  parent inventories incorrectly, and also not handling when one of the
540
 
  parents was a ghost. (John Arbash Meinel, #402778, #412198)
541
 
 
542
 
* ``RemoteStreamSource.get_stream_for_missing_keys`` will fetch CHK
543
 
  inventory pages when appropriate (by falling back to the vfs stream
544
 
  source).  (Andrew Bennetts, #406686)
545
 
 
546
 
* StreamSource generates rich roots from non-rich root sources correctly
547
 
  now.  (Andrew Bennetts, #368921)
548
 
 
549
 
* When deciding whether a repository was compatible for upgrading or
550
 
  fetching, we previously incorrectly checked the default repository
551
 
  format for the bzrdir format, rather than the format that was actually
552
 
  present on disk.  (Martin Pool, #408824)
553
 
 
554
 
Improvements
555
 
************
556
 
 
557
 
* A better description of the platform is shown in crash tracebacks, ``bzr
558
 
  --version`` and ``bzr selftest``.
559
 
  (Martin Pool, #409137)
560
 
 
561
 
* Cross-format fetches (such as between 1.9-rich-root and 2a) via the
562
 
  smart server are more efficient now.  They send inventory deltas rather
563
 
  than full inventories.  The smart server has two new requests,
564
 
  ``Repository.get_stream_1.19`` and ``Repository.insert_stream_1.19`` to
565
 
  support this.  (Andrew Bennetts, #374738, #385826)
566
 
 
567
 
* Extracting the full ancestry and computing the ``merge_sort`` is now
568
 
  significantly faster. This effects things like ``bzr log -n0``. (For
569
 
  example, ``bzr log -r -10..-1 -n0 bzr.dev`` is 2.5s down to 1.0s.
570
 
  (John Arbash Meinel)
571
 
 
572
 
Documentation
573
 
*************
574
 
 
575
 
API Changes
576
 
***********
577
 
 
578
 
Internals
579
 
*********
580
 
 
581
 
* ``-Dstrict_locks`` can now be used to check that read and write locks
582
 
  are treated properly w.r.t. exclusivity. (We don't try to take an OS
583
 
  read lock on a file that we already have an OS write lock on.) This is
584
 
  now set by default for all tests, if you have a test which cannot be
585
 
  fixed, you can use ``self.thisFailsStrictLockCheck()`` as a
586
 
  compatibility knob. (John Arbash Meinel)
587
 
 
588
 
* InterDifferingSerializer is now only used locally.  Other fetches that
589
 
  would have used InterDifferingSerializer now use the more network
590
 
  friendly StreamSource, which now automatically does the same
591
 
  transformations as InterDifferingSerializer.  (Andrew Bennetts)
592
 
 
593
 
* ``KnownGraph`` now has a ``.topo_sort`` and ``.merge_sort`` member which
594
 
  are implemented in pyrex and significantly faster. This is exposed along
595
 
  with ``CombinedGraphIndex.find_ancestry()`` as
596
 
  ``VersionedFiles.get_known_graph_ancestry(keys)``.
597
 
  (John Arbash Meinel)
598
 
 
599
 
* RemoteBranch.open now honours ignore_fallbacks correctly on bzr-v2
600
 
  protocols. (Robert Collins)
601
 
 
602
 
* The index code now has some specialized routines to extract the full
603
 
  ancestry of a key in a more efficient manner.
604
 
  ``CombinedGraphIndex.find_ancestry()``. (Time to get ancestry for
605
 
  bzr.dev drops from 1.5s down to 300ms. For OOo from 33s => 10.5s) (John
606
 
  Arbash Meinel)
607
 
 
608
 
Testing
609
 
*******
610
 
 
611
 
* Install the test ssl certificate and key so that installed bzr
612
 
  can run the https tests. (Denys Duchier, #392401)
613
 
  
614
 
 
615
 
bzr 1.18rc1
616
 
###########
617
 
 
618
 
:Codename: little traveller
619
 
:1.18:    2009-08-20
620
 
:1.18rc1: 2009-08-10
621
 
 
622
 
This release of Bazaar marches on towards the 2.0 release in which the 2a
623
 
'brisbane-core' format becomes generally recommended.  Most of the work in
624
 
this release now focusses on bug fixes and stabilization, covering both 2a
625
 
and previous formats.  There is a new text-mode interactive merge feature,
626
 
a new guide to migration to 2a format in the user documentation, and
627
 
pushing branches to a smart server is now much faster.  
628
 
 
629
 
The Bazaar team decided that 2.0 will be a long-term supported release,
630
 
with bugfix-only releases based on it continuing for at least six months
631
 
or until the following stable release.
632
 
 
633
 
There are no changes from 1.18rc1 to 1.18.
634
 
 
635
 
New Features
636
 
************
637
 
 
638
 
* ``bzr merge --interactive`` applies a user-selected portion of the
639
 
  merge.  The UI is similar to ``shelve``.  (Aaron Bentley)
640
 
 
641
 
* ``bzr reconfigure`` now takes options ``--stacked-on URL`` and
642
 
  ``--unstacked`` to change stacking of a branch.
643
 
  (Martin Pool, #391411)
644
 
 
645
 
Bug Fixes
646
 
*********
647
 
 
648
 
* Annotating on a stacked branch will now succeed in simple scenarios.
649
 
  There are still some complex scenarios where it will fail (bug #399884)
650
 
  (John Arbash Meinel, #393366)
651
 
 
652
 
* A progress bar is no longer left dangling when ``bzr selftest``
653
 
  completes, and the progress bar updates with zero latency so the
654
 
  displayed test name is always the one that's actually running.
655
 
  (Martin Pool, #123688)
656
 
 
657
 
* Authenticating against an ssh server now uses ``auth_none`` to determine
658
 
  if password authentication is even supported. This fixes a bug where
659
 
  users would be prompted for a launchpad password, even though launchpad
660
 
  only supports publickey authentication. (John Arbash Meinel, #375867)
661
 
 
662
 
* BranchBuilder now accepts timezone to avoid test failures in countries far
663
 
  from GMT. (Vincent Ladeuil, #397716)
664
 
 
665
 
* ``bzr commit`` no longer saves the unversioning of missing files until
666
 
  the commit has completed on the branch. This means that aborting a
667
 
  commit that found a missing file will leave the tree unedited.
668
 
  (Robert Collins, #282402)
669
 
 
670
 
* ``bzr mv`` no longer takes out branch locks, which allows it to work
671
 
  when the branch is readonly. (Robert Collins, #216541)
672
 
 
673
 
* ``bzr revert .`` no longer generates an InconsistentDelta error when
674
 
  there are missing subtrees. (Robert Collins, #367632)
675
 
 
676
 
* ``bzr send`` now generates valid bundles with ``--2a`` formats. However,
677
 
  do to internal changes necessary to support this, older clients will
678
 
  fail when trying to insert them. For newer clients, the bundle can be
679
 
  used to apply the changes to any rich-root compatible format.
680
 
  (John Arbash Meinel, #393349)
681
 
 
682
 
* Cope with FTP servers that don't support restart/append by falling back
683
 
  to reading and then rewriting the whole file, such as TahoeLAFS.  (This
684
 
  fallback may be slow for some access patterns.)  (Nils Durner, #294709)
685
 
 
686
 
* Encode the paths in ``mbcs`` encoding on Windows when spawning an
687
 
  external diff client. This at least allows supporting filenames that are
688
 
  not ascii, but are present in the current locale. Ideally we would be
689
 
  able to pass the Unicode path, but that would be client dependent.
690
 
  (John Arbash Meinel, #382709)
691
 
 
692
 
* Fix a compile bug on Solaris having to do with const and
693
 
  pointer-to-pointers. (John Arbash Meinel, #408441)
694
 
 
695
 
* Fixed a NameError that occurs when merging or pulling from a URL that
696
 
  causes a redirection loop when bzr tries to read a URL as a bundle.
697
 
  (Andrew Bennetts, #400847)
698
 
 
699
 
* Fix ``AttributeError: 'TestUIFactory' object has no attribute 'tick'``
700
 
  running send and similar commands on 2a formats.
701
 
  (Martin Pool, #408201)
702
 
  
703
 
* Fix crash in some invocations of ``bzr status`` in format 2a.
704
 
  (Martin Pool, #403523)
705
 
 
706
 
* Fixed export to existing directory: if directory is empty then export 
707
 
  will succeed, otherwise it fails with error.
708
 
  (Alexander Belchenko, #406174)
709
 
 
710
 
* Fixed spurious "Source branch does not support stacking" warning when
711
 
  pushing. (Andrew Bennetts, #388908)
712
 
 
713
 
* Fixed spurious transport activity indicator appearing while tests are
714
 
  running.  (Martin Pool, #343532)
715
 
 
716
 
* Merge now correctly handles empty right-hand revision specs.
717
 
  (Aaron Bentley, #333961)
718
 
 
719
 
* Renames to lexographically lower basenames in trees that have never been
720
 
  committed to will no longer corrupt the dirstate. This was caused by an
721
 
  bug in the dirstate update_minimal method. (Robert Collins, #395556)
722
 
 
723
 
* Requests for unknown methods no longer cause the smart server to log
724
 
  lots of backtraces about ``UnknownSmartMethod``, ``do_chunk`` or
725
 
  ``do_end``.  (Andrew Bennetts, #338561)
726
 
 
727
 
* Shelve will not shelve the initial add of the tree root.  (Aaron Bentley)
728
 
 
729
 
* Streaming from bzr servers where there is a chain of stacked branches
730
 
  (A stacked on B stacked on C) will now work. (Robert Collins, #406597)
731
 
 
732
 
* The environment variable ``BZR_PROGRESS_BAR`` set to either ``text`` or ``none``
733
 
  always forces progress bars either on or off respectively.  Otherwise,
734
 
  they're turned on if ``TERM`` is not ``dumb`` and stderr is a terminal.
735
 
  bzr always uses the 'text' user interface when run as a command, so
736
 
  ``BZR_USE_TEXT_UI`` is no longer needed.
737
 
  (Martin Pool, #339385, #387717)
738
 
 
739
 
* The optional ``_knit_load_data_pyx`` C extension was never being
740
 
  imported.  This caused significant slowdowns when reading data from
741
 
  repositories.  (Andrew Bennetts, #405653)
742
 
  
743
 
* The ``--hardlink`` option to ``branch`` and ``checkout`` is not
744
 
  supported at the moment on workingtree formats that can do content
745
 
  filtering.  (See <https://bugs.edge.launchpad.net/bzr/+bug/408193>.)
746
 
  bzr now says so, rather than just ignoring the option.  (Martin Pool)
747
 
 
748
 
* There was a bug in ``osutils.relpath`` that was only triggered on
749
 
  Windows. Essentially if you were at the root of a drive, and did
750
 
  something to a branch/repo on another drive, we would go into an
751
 
  infinite loop while trying to find a 'relative path'.
752
 
  (John Arbash Meinel, #394227)
753
 
 
754
 
* ``WorkingTree4.unversion`` will no longer fail to unversion ids which
755
 
  were present in a parent tree but renamed in the working tree.
756
 
  (Robert Collins, #187207)
757
 
 
758
 
Improvements
759
 
************
760
 
 
761
 
* Can now rename/move files even if they have been removed from the inventory.
762
 
  (Marius Kruger)
763
 
 
764
 
* Pushing branches with tags via ``bzr://`` and ``bzr+ssh://`` is much
765
 
  faster, using a new ``Branch.set_tags_bytes`` smart server verb rather
766
 
  than VFS methods.  For example, pushes of small branches with tags take
767
 
  11 rather than 18 smart server requests.  (Andrew Bennetts, #398608)
768
 
 
769
 
* Sending Ctrl-Break on Windows will now drop you into the debugger, in
770
 
  the same way that sending Ctrl-\\ does on other platforms.
771
 
  (John Arbash Meinel)
772
 
 
773
 
Documentation
774
 
*************
775
 
 
776
 
* Added Bazaar 2.0 Upgrade Guide. (Ian Clatworthy)
777
 
 
778
 
API Changes
779
 
***********
780
 
 
781
 
* ``CLIUIFactory`` is deprecated; use ``TextUIFactory`` instead if you
782
 
  need to subclass or create a specific class, or better yet the existing
783
 
  ``make_ui_for_terminal``.  ``SilentUIFactory`` is clarified to do no
784
 
  user interaction at all, rather than trying to read from stdin but not
785
 
  writing any output, which would be strange if reading prompts or
786
 
  passwords.  (Martin Pool)
787
 
 
788
 
* New TransformPreview.commit() allows committing without a working tree.
789
 
  (Aaron Bentley)
790
 
 
791
 
* ``pb`` parameter to ``TextTestResult`` is deprecated and ignored.
792
 
  (Martin Pool)
793
 
 
794
 
* ProgressTasks now prefer to talk direct to their ProgressView not to the
795
 
  UIFactory. 
796
 
  (Martin Pool)
797
 
 
798
 
* ``WorkingTree._check`` now requires a references dict with keys matching
799
 
  those returned by ``WorkingTree._get_check_refs``. (Robert Collins)
800
 
 
801
 
Internals
802
 
*********
803
 
 
804
 
* ``CHKInventory.path2id`` uses the parent_id to basename hash to avoid
805
 
  reading the entries along the path, reducing work to lookup ids from
806
 
  paths. (Robert Collins)
807
 
 
808
 
* ``CHKMap.apply_delta`` now raises ``InconsistentDelta`` if a delta adds
809
 
  as new a key which was already mapped. (Robert Collins)
810
 
 
811
 
* Inventory delta application catches more cases of corruption and can
812
 
  prevent corrupt deltas from affecting consistency of data structures on
813
 
  disk. (Robert Collins)
814
 
 
815
 
* --subunit support now adds timestamps if the subunit version supports
816
 
  it. (Robert Collins)
817
 
 
818
 
* The Windows all-in-one installer now bundles the PyQt image format
819
 
  plugins, which allows previewing more images as part of 'qdiff'.
820
 
  (Alexander Belchenko)
821
 
 
822
 
 
823
 
Testing
824
 
*******
825
 
 
826
 
* Merge directive cherrypick tests must use the same root id.
827
 
  (Martin Pool, #409684)
828
 
 
829
 
* Spurious failure in ``check`` tests on rich-root formats fixed.
830
 
  (Martin Pool, #408199)
831
 
 
832
 
* The ``bzrlib.tests.TextTestRunner`` will no longer call
833
 
  ``countTestsCases`` on the test being run. Progress information is
834
 
  instead handled by having the test passed in call ``result.progress``
835
 
  before running its contents. This improves the behaviour when using
836
 
  ``TextTestRunner`` with test suites that don't support
837
 
  ``countTestsCases``. (Robert Collins)
838
 
 
839
 
 
840
 
bzr 1.17
841
 
########
842
 
:Codename: so-late-its-brunch
843
 
:1.17rc1: 2009-07-13
844
 
:1.17: 2009-07-20
845
 
 
846
 
 
847
 
Bazaar continues to blaze a straight and shining path to the 2.0 release and
848
 
the elevation of the ``2a`` beta format to the full glory of "supported and
849
 
stable".
850
 
 
851
 
Highlights in this release include greatly reduced memory consumption during
852
 
commits, faster ``ls``, faster ``annotate``, faster network operations if
853
 
you're specifying a revision number and the final destruction of those
854
 
annoying progress bar artifacts.
855
 
 
856
 
 
857
 
Changes from 1.17rc1 to 1.17final
858
 
*********************************
859
 
 
860
 
* Change an extension to call the python ``frozenset()`` rather than the C
861
 
  api ``PyFrozenSet_New``. It turns out that python2.4 did not expose the
862
 
  C api. (John Arbash Meinel, #399366)
863
 
 
864
 
* Fixes for the Makefile and the rename of ``generate_docs.py`` to
865
 
  ``tools/generate_docs.py`` to allow everything to be built on Windows.
866
 
  (John Arbash Meinel, #399356)
867
 
 
868
 
* ``bzr serve`` once again applies a ``ChrootServer`` to the given
869
 
  directory before serving it. (Andrew Bennetts, #400535)
870
 
 
871
 
 
872
 
Compatibility Breaks
873
 
********************
874
 
 
875
 
* ``bzr register-branch`` from the Launchpad plugin now refers to "project"
876
 
  instead of "product" which is the correct Launchpad terminology.  The
877
 
  --product option is deprecated and users should switch to using --project.
878
 
  (Neil Martinsen-Burrell, #238764)
879
 
 
880
 
 
881
 
New Features
882
 
************
883
 
 
884
 
* ``bzr push`` now aborts if uncommitted changes (including pending merges)
885
 
  are present in the working tree (if one is present) and no revision is
886
 
  specified. The configuration option ``push_strict`` can be used to set the
887
 
  default for this behavior.  (Vincent Ladeuil, #284038, #322808, #65286)
888
 
 
889
 
* ``bzr revno`` and ``bzr revision-info`` now have a ``--tree`` option to
890
 
  show revision info for the working tree instead of the branch.
891
 
  (Matthew Fuller, John Arbash Meinel)
892
 
 
893
 
* ``bzr send`` now aborts if uncommitted changes (including pending merges)
894
 
  are present in the working tree and no revision is specified. The
895
 
  configuration option ``send_strict`` can be used to set the default for this
896
 
  behavior.
897
 
  (Vincent Ladeuil, #206577)
898
 
 
899
 
* ``bzr switch --create-branch/-b`` can now be used to create and switch
900
 
  to a new branch. Supplying a name without a ``/`` will create the branch
901
 
  relative to the existing branch. (similar to how ``bzr switch name``
902
 
  works when the branch already exists.) (John Arbash Meinel)
903
 
 
904
 
 
905
 
Bug Fixes
906
 
*********
907
 
 
908
 
* Accept uppercase "Y/N" to prompts such as from break lock. 
909
 
  (#335182, Tim Powell, Martin Pool)
910
 
 
911
 
* Add documentation about diverged branches and how to fix them in the
912
 
  centralized workflow with local commits.  Mention ``bzr help
913
 
  diverged-branches`` when a push fails because the branches have
914
 
  diverged.  (Neil Martinsen-Burrell, #269477)
915
 
 
916
 
* Annotate would sometimes 'latch on' to trivial lines, causing important
917
 
  lines to be incorrectly annotated. (John Arbash Meinel, #387952)
918
 
 
919
 
* Automatic format upgrades triggered by default stacking policies on a
920
 
  1.16rc1 (or later) smart server work again.
921
 
  (Andrew Bennetts, #388675)
922
 
 
923
 
* Avoid progress bar artifacts being left behind on the screen.
924
 
  (Martin Pool, #321935)
925
 
 
926
 
* Better message in ``bzr split`` error suggesting a rich root format.
927
 
  (Neil Martinsen-Burrell, #220067)
928
 
 
929
 
* ``Branch.set_append_revisions_only`` now works with branches on a smart
930
 
  server. (Andrew Bennetts, #365865)
931
 
 
932
 
* By default, ``bzr branch`` will fail if the target directory exists, but
933
 
  does not already have a control directory.  The flag ``--use-existing-dir``
934
 
  will allow operation to proceed.  (Alexander Belchenko, #307554)
935
 
 
936
 
* ``bzr ls DIR --from-root`` now shows only things in DIR, not everything.
937
 
  (Ian Clatworthy)
938
 
 
939
 
* Fetch between repositories does not error if they have inconsistent data
940
 
  that should be irrelevant to the fetch operation. (Aaron Bentley)
941
 
 
942
 
* Fix ``AttributeError`` exception when reconfiguring lightweight checkout 
943
 
  of a remote repository.
944
 
  (Jelmer Vernooij, #332194)
945
 
 
946
 
* Fix bug in decoding v3 smart server messages when receiving multiple
947
 
  lots of excess bytes after an end-of-message.
948
 
  (Andrew Bennetts)
949
 
 
950
 
* Force deletion of readonly files during merge, update and other tree
951
 
  transforms.
952
 
  (Craig Hewetson, Martin Pool, #218206)
953
 
 
954
 
* Force socket shutdown in threaded http test servers to avoid client hangs
955
 
  (pycurl).  (Vincent Ladeuil, #383920).
956
 
 
957
 
* ``LRUCache`` will maintain the linked list pointers even if a nodes
958
 
  cleanup function raises an exception. (John Arbash Meinel, #396838)
959
 
 
960
 
* Progress bars are now suppressed again when the environment variable
961
 
  ``BZR_PROGRESS_BAR`` is set to ``none``.
962
 
  (Martin Pool, #339385)
963
 
 
964
 
* Reduced memory consumption during ``bzr commit`` of large files. For
965
 
  pre 2a formats, should be down to ~3x the size of a file.
966
 
  For ``--2a`` format repositories, it is down to the size of the file
967
 
  content plus the size of the compressed text.  Related to bug #109114.
968
 
  (John Arbash Meinel)
969
 
 
970
 
* Set hidden attribute on .bzr directory below unicode path should never
971
 
  fail with error. The operation should succeed even if bzr unable to set 
972
 
  the attribute.  (Alexander Belchenko, related to bug #335362).
973
 
  
974
 
* Stacking will no longer accept requests to stack on the same
975
 
  branch/repository. Existing branches that incorrectly reference the same
976
 
  repository in a stacking configuration will now raise
977
 
  UnstackableLocationError when the branch is opened. This can be fixed by
978
 
  removing the stacking location inside ``.bzr/branch``.
979
 
  (Robert Collins, #376243)
980
 
 
981
 
* The ``log+`` decorator, useful in debugging or profiling, could cause
982
 
  "AttributeError: 'list' object has no attribute 'next'".  This is now
983
 
  fixed.  The log decorator no longer shows the elapsed time or transfer
984
 
  rate because they're available in the log prefixes and the transport
985
 
  activity display respectively.
986
 
  (Martin Pool, #340347)
987
 
 
988
 
* Unshelve works correctly when multiple zero-length files are present on
989
 
  the shelf. (Aaron Bentley, #363444)
990
 
 
991
 
* Progress bars no longer show the network transport scheme or direction.
992
 
  (Martin Pool)
993
 
 
994
 
* launchpad-login now respects the 'verbose' option.
995
 
  (Jonathan Lange, #217031)
996
 
 
997
 
 
998
 
Internals
999
 
*********
1000
 
 
1001
 
* ``bzrlib.user_encoding`` is now officially deprecated. It is not
1002
 
  possible to write a deprecation wrapper, but the variable will be
1003
 
  removed in the near future. Use ``bzrlib.osutils.get_user_encoding()``
1004
 
  instead. (Alexander Belchenko)
1005
 
 
1006
 
* Command lookup has had hooks added. ``bzrlib.Command.hooks`` has
1007
 
  three new hook points: ``get_command``, ``get_missing_command`` and
1008
 
  ``list_commands``, which allow just-in-time command name provision
1009
 
  rather than requiring all command names be known a-priori.
1010
 
  (Robert Collins)
1011
 
 
1012
 
* ``get_app_path`` from win32utils.py now supports REG_EXPAND_SZ data type
1013
 
  and can read path to wordpad.exe. (Alexander Belchenko, #392046)
1014
 
 
1015
 
* ``graph.KnownGraph`` has been added. This is a class that can give
1016
 
  answers to ``heads()`` very quickly. However, it has the assumption that
1017
 
  the whole graph has already been loaded. This is true during
1018
 
  ``annotate`` so it is used there with good success (as much as 2x faster
1019
 
  for files with long ancestry and 'cherrypicked' changes.)
1020
 
  (John Arbash Meinel, Vincent Ladeuil)
1021
 
 
1022
 
* OS file locks are now taken out using ``CreateFile`` rather than
1023
 
  ``LockFileEx`` on Windows. The locking remains exclusive with
1024
 
  ``LockFileEx`` but now it also works on older versions of Windows (such
1025
 
  as Win98). (Martin <gzlist>)
1026
 
 
1027
 
* pack <=> pack fetching is now done via a ``PackStreamSource`` rather
1028
 
  than the ``Packer`` code. The user visible change is that we now
1029
 
  properly fetch the minimum number of texts for non-smart fetching.
1030
 
  (John Arbash Meinel)
1031
 
 
1032
 
 
1033
 
* ``VersionedFiles._add_text`` is a new api that lets us insert text into
1034
 
  the repository as a single string, rather than a list of lines. This can
1035
 
  improve memory overhead and performance of committing large files.
1036
 
  (Currently a private api, used only by commit). (John Arbash Meinel)
1037
 
 
1038
 
 
1039
 
Improvements
1040
 
************
1041
 
 
1042
 
* ``bzr annotate`` can now be significantly faster. The time for
1043
 
  ``bzr annotate NEWS`` is down to 7s from 22s in 1.16. Files with long
1044
 
  histories and lots of 'duplicate insertions' will be improved more than
1045
 
  others. (John Arbash Meinel, Vincent Ladeuil)
1046
 
 
1047
 
* ``bzr ls`` is now faster. On OpenOffice.org, the time drops from 2.4
1048
 
  to 1.1 seconds. The improvement for ``bzr ls -r-1`` is more
1049
 
  substantial dropping from 54.3 to 1.1 seconds. (Ian Clatworthy)
1050
 
 
1051
 
* Improve "Path(s) are not versioned" error reporting for some commands.
1052
 
  (Benoît PIERRE)
1053
 
 
1054
 
* Initial commit performance in ``--2a`` repositories has been improved by
1055
 
  making it cheaper to build the initial CHKMap. (John Arbash Meinel)
1056
 
 
1057
 
* Resolving a revno to a revision id on a branch accessed via ``bzr://``
1058
 
  or ``bzr+ssh://`` is now much faster and involves no VFS operations.
1059
 
  This speeds up commands like ``bzr pull -r 123``.  (Andrew Bennetts)
1060
 
 
1061
 
* ``revision-info`` now properly aligns the revnos/revids in the output
1062
 
  and doesn't traceback when given revisions not in the current branch.
1063
 
  Performance is also significantly improved when requesting multiple revs
1064
 
  at once.  (Matthew Fuller, John Arbash Meinel)
1065
 
 
1066
 
* Tildes are no longer escaped by Transports. (Andy Kilner)
1067
 
 
1068
 
 
1069
 
Documentation
1070
 
*************
1071
 
 
1072
 
* Avoid bad text wrapping in generated documentation.  Slightly better
1073
 
  formatting in the user reference.
1074
 
  (Martin Pool, #249908)
1075
 
 
1076
 
* Minor clarifications to the help for End-Of-Line conversions.
1077
 
  (Ian Clatworthy)
1078
 
 
1079
 
API Changes
1080
 
***********
1081
 
 
1082
 
* Removed overspecific error class ``InvalidProgressBarType``.
1083
 
  (Martin Pool)
1084
 
 
1085
 
* The method ``ProgressView._show_transport_activity`` is now
1086
 
  ``show_transport_activity`` because it's part of the contract between
1087
 
  this class and the UI.  (Martin Pool)
1088
 
 
1089
 
 
1090
 
bzr 1.16.1
1091
 
##########
1092
 
 
1093
 
:Released: 2009-06-26
1094
 
 
1095
 
End user testing of the 2a format revealed two serious bugs. The first,
1096
 
#365615, caused bzr to raise AbsentContentFactory errors when autopacking.
1097
 
This meant that commits or pushes to 2a-format repositories failed
1098
 
intermittently.
1099
 
 
1100
 
The second bug, #390563, caused the smart server to raise AbsentContentFactory
1101
 
when streaming 2a stacked 2a-format branches. This particularly affected
1102
 
branches stored on Launchpad in the 2a format.
1103
 
 
1104
 
Both of these bugs cause command failures only, neither of them cause data
1105
 
corruption or data loss. And, of course, both of these bugs are now fixed.
1106
 
 
1107
 
Bug Fixes
1108
 
*********
1109
 
 
1110
 
* We now properly request a more minimal set of file texts when fetching
1111
 
  multiple revisions. (Robert Collins, John Arbash Meinel, #390563)
1112
 
 
1113
 
* Repositories using CHK pages (which includes the new 2a format) will no
1114
 
  longer error during commit or push operations when an autopack operation
1115
 
  is triggered. (Robert Collins, #365615)
1116
 
 
1117
 
* ``chk_map.iter_interesting_nodes`` now properly uses the *intersection*
1118
 
  of referenced nodes rather than the *union* to determine what
1119
 
  uninteresting pages we still need to look at. Prior to this,
1120
 
  incrementally pushing to stacked branch would push the minimal data, but
1121
 
  fetching everything would request extra texts. There are some unhandled
1122
 
  cases wrt trees of different depths, but this fixes the common cases.
1123
 
  (Robert Collins, John Arbash Meinel, #390563)
1124
 
 
1125
 
* ``GroupCompress`` repositories now take advantage of the pack hints
1126
 
  parameter to permit cross-format fetching to incrementally pack the
1127
 
  converted data. (Robert Collins)
1128
 
 
1129
 
* ``Repository.commit_write_group`` now returns opaque data about what
1130
 
  was committed, for passing to the ``Repository.pack``. Repositories
1131
 
  without atomic commits will still return None. (Robert Collins)
1132
 
 
1133
 
* ``Repository.pack`` now takes an optional ``hint`` parameter
1134
 
  which will support doing partial packs for repositories that can do
1135
 
  that. (Robert Collins)
1136
 
 
1137
 
* RepositoryFormat has a new attribute 'pack_compresses' which is True
1138
 
  when doing a pack operation changes the compression of content in the
1139
 
  repository. (Robert Collins)
1140
 
 
1141
 
* ``StreamSink`` and ``InterDifferingSerialiser`` will call
1142
 
  ``Repository.pack`` with the hint returned by
1143
 
  ``Repository.commit_write_group`` if the formats were different and the
1144
 
  repository can increase compression by doing a pack operation.
1145
 
  (Robert Collins, #376748)
1146
 
 
1147
 
 
1148
 
bzr 1.16
1149
 
########
1150
 
:Codename: yesterday-in-california
1151
 
:1.16rc1: 2009-06-11
1152
 
:1.16: 2009-06-18
1153
 
 
1154
 
This version of Bazaar contains the beta release of the new ``2a`` repository
1155
 
format, suitable for testing by fearless, advanced users. This format or an
1156
 
updated version of it will become the default format in Bazaar 2.0. Please
1157
 
read the NEWS entry before even thinking about upgrading to the new format.
1158
 
 
1159
 
Also included are speedups for many operations on huge projects, a bug fix for
1160
 
pushing stacked new stacked branches to smart servers and the usual bevy of
1161
 
bug fixes and improvements.
1162
 
 
1163
 
 
1164
 
Changes from 1.16rc1 to 1.16final
1165
 
*********************************
1166
 
 
1167
 
* Fix the nested tree flag check so that upgrade from development formats to
1168
 
  2a can work correctly.
1169
 
  (Jelmer Vernooij, #388727)
1170
 
 
1171
 
* Automatic format upgrades triggered by default stacking policies on a
1172
 
  1.16rc1 (or later) smart server work again.
1173
 
  (Andrew Bennetts, #388675)
1174
 
 
1175
 
 
1176
 
Compatibility Breaks
1177
 
********************
1178
 
 
1179
 
* Display prompt on stderr (instead of stdout) when querying users so
1180
 
  that the output of commands can be safely redirected.
1181
 
  (Vincent Ladeuil, #376582)
1182
 
 
1183
 
 
1184
 
New Features
1185
 
************
1186
 
 
1187
 
* A new repository format ``2a`` has been added.  This is a beta release
1188
 
  of the the brisbane-core (aka group-compress) project.  This format now
1189
 
  suitable for wider testing by advanced users willing to deal with some
1190
 
  bugs.  We would appreciate test reports, either positive or negative.
1191
 
  Format 2a is substantially smaller and faster for many operations on
1192
 
  many trees.  This format or an updated version will become the default
1193
 
  in bzr 2.0.
1194
 
 
1195
 
  This is a rich-root format, so this repository format can be used with
1196
 
  bzr-svn.  Bazaar branches in previous non-rich-root formats can be
1197
 
  converted (including by merge, push and pull) to format 2a, but not vice
1198
 
  versa.  We recommend upgrading previous development formats to 2a.
1199
 
 
1200
 
  Upgrading to this format can take considerable time because it expands
1201
 
  and more concisely repacks the full history.
1202
 
 
1203
 
  If you use stacked branches, you must upgrade the stacked branches
1204
 
  before the stacked-on branches.  (See <https://bugs.launchpad.net/bugs/374735>)
1205
 
 
1206
 
* ``--development7-rich-root`` is a new dev format, similar to ``--dev6``
1207
 
  but using a Revision serializer using bencode rather than XML.
1208
 
  (Jelmer Vernooij, John Arbash Meinel)
1209
 
 
1210
 
* mail_client=claws now supports --body (and message body hooks).  Also uses
1211
 
  configured from address.  (Barry Warsaw)
1212
 
 
1213
 
Improvements
1214
 
************
1215
 
 
1216
 
 
1217
 
* ``--development6-rich-root`` can now stack. (Modulo some smart-server
1218
 
  bugs with stacking and non default formats.)
1219
 
  (John Arbash Meinel, #373455)
1220
 
 
1221
 
* ``--development6-rich-root`` delays generating a delta index for the
1222
 
  first object inserted into a group. This has a beneficial impact on
1223
 
  ``bzr commit`` since each committed texts goes to its own group. For
1224
 
  committing a 90MB file, it drops peak memory by about 200MB, and speeds
1225
 
  up commit from 7s => 4s. (John Arbash Meinel)
1226
 
 
1227
 
* Numerous operations are now faster for huge projects, i.e. those
1228
 
  with a large number of files and/or a large number of revisions,
1229
 
  particularly when the latest development format is used. These
1230
 
  operations (and improvements on OpenOffice.org) include:
1231
 
 
1232
 
  * branch in a shared repository (2X faster)
1233
 
  * branch --no-tree (100X faster)
1234
 
  * diff (2X faster)
1235
 
  * tags (70X faster)
1236
 
 
1237
 
  (Ian Clatworthy)
1238
 
 
1239
 
* Pyrex version of ``bencode`` support. This provides optimized support
1240
 
  for both encoding and decoding, and is now found at ``bzrlib.bencode``.
1241
 
  ``bzrlib.utils.bencode`` is now deprecated.
1242
 
  (Alexander Belchenko, Jelmer Vernooij, John Arbash Meinel)
1243
 
 
1244
 
 
1245
 
Bug Fixes
1246
 
*********
1247
 
 
1248
 
* Bazaar can now pass attachment files to the mutt email client.
1249
 
  (Edwin Grubbs, #384158)
1250
 
 
1251
 
* Better message in ``bzr add`` output suggesting using ``bzr ignored`` to
1252
 
  see which files can also be added.  (Jason Spashett, #76616)
1253
 
 
1254
 
* ``bzr pull -r 123`` from a stacked branch on a smart server no longer fails.
1255
 
  Also, the ``Branch.revision_history()`` API now works in the same
1256
 
  situation.  (Andrew Bennetts, #380314)
1257
 
  
1258
 
* ``bzr serve`` on Windows no longer displays a traceback simply because a
1259
 
  TCP client disconnected. (Andrew Bennetts)
1260
 
 
1261
 
* Clarify the rules for locking and fallback repositories. Fix bugs in how
1262
 
  ``RemoteRepository`` was handling fallbacks along with the
1263
 
  ``_real_repository``. (Andrew Bennetts, John Arbash Meinel, #375496)
1264
 
 
1265
 
* Fix a small bug with fetching revisions w/ ghosts into a new stacked
1266
 
  branch. Not often triggered, because it required ghosts to be part of
1267
 
  the fetched revisions, not in the stacked-on ancestry.
1268
 
  (John Arbash Meinel)
1269
 
 
1270
 
* Fix status and commit to work with content filtered trees, addressing
1271
 
  numerous bad bugs with line-ending support. (Ian Clatworthy, #362030)
1272
 
 
1273
 
* Fix problem of "directory not empty" when contending for a lock over
1274
 
  sftp.  (Martin Pool, #340352)
1275
 
 
1276
 
* Fix rule handling so that eol is optional, not mandatory.
1277
 
  (Ian Clatworthy, #379370)
1278
 
 
1279
 
* Pushing a new stacked branch to a 1.15 smart server was broken due to a
1280
 
  bug in the ``BzrDirFormat.initialize_ex`` smart verb.  This is fixed in
1281
 
  1.16, but required changes to the network protocol, so the
1282
 
  ``BzrDirFormat.initialize_ex`` verb has been removed and replaced with a
1283
 
  corrected ``BzrDirFormat.initialize_ex_1.16`` verb.  1.15 clients will
1284
 
  still work with a 1.16 server as they will fallback to slower (and
1285
 
  bug-free) methods.
1286
 
  (Jonathan Lange, Robert Collins, Andrew Bennetts, #385132)
1287
 
 
1288
 
* Reconcile can now deal with text revisions that originated in revisions 
1289
 
  that are ghosts. (Jelmer Vernooij, #336749)
1290
 
 
1291
 
* Support cloning of branches with ghosts in the left hand side history.
1292
 
  (Jelmer Vernooij, #248540)
1293
 
 
1294
 
* The ''bzr diff'' now catches OSError from osutils.rmtree and logs a
1295
 
  helpful message to the trace file, unless the temp directory really was
1296
 
  removed (which would be very strange).  Since the diff operation has
1297
 
  succeeded from the user's perspective, no output is written to stderr 
1298
 
  or stdout.  (Maritza Mendez, #363837)
1299
 
 
1300
 
* Translate errors received from a smart server in response to a
1301
 
  ``BzrDirFormat.initialize`` or ``BzrDirFormat.initialize_ex`` request.
1302
 
  This was causing tracebacks even for mundane errors like
1303
 
  ``PermissionDenied``.  (Andrew Bennetts, #381329)
1304
 
 
1305
 
Documentation
1306
 
*************
1307
 
 
1308
 
* Added directory structure and started translation of docs in Russian.
1309
 
  (Alexey Shtokalo, Alexander Iljin, Alexander Belchenko, Dmitry Vasiliev,
1310
 
  Volodymyr Kotulskyi)
1311
 
 
1312
 
API Changes
1313
 
***********
1314
 
 
1315
 
* Added osutils.parent_directories(). (Ian Clatworthy)
1316
 
 
1317
 
* ``bzrlib.progress.ProgressBar``, ``ChildProgress``, ``DotsProgressBar``,
1318
 
  ``TTYProgressBar`` and ``child_progress`` are now deprecated; use
1319
 
  ``ui_factory.nested_progress_bar`` instead.  (Martin Pool)
1320
 
 
1321
 
* ``graph.StackedParentsProvider`` is now a public API, replacing
1322
 
  ``graph._StackedParentsProvider``. The api is now considered stable and ready
1323
 
  for external users. (Gary van der Merwe)
1324
 
 
1325
 
* ``bzrlib.user_encoding`` is deprecated in favor of
1326
 
  ``get_user_encoding``.  (Alexander Belchenko)
1327
 
 
1328
 
* TreeTransformBase no longer assumes that limbo is provided via disk.
1329
 
  DiskTreeTransform now provides disk functionality.  (Aaron Bentley)
1330
 
 
1331
 
Internals
1332
 
*********
1333
 
 
1334
 
* Remove ``weave.py`` script for accessing internals of old weave-format
1335
 
  repositories.  (Martin Pool)
1336
 
 
1337
 
Testing
1338
 
*******
1339
 
 
1340
 
* The number of cores is now correctly detected on OSX. (John Szakmeister)
1341
 
 
1342
 
* The number of cores is also detected on Solaris and win32. (Vincent Ladeuil)
1343
 
 
1344
 
* The number of cores is also detected on FreeBSD. (Matthew Fuller)
1345
 
 
1346
 
 
1347
 
bzr 1.15
1348
 
########
1349
 
:1.15rc1: 2009-05-16
1350
 
:1.15: 2009-05-22
1351
 
:1.15.1: 2009-06-09
1352
 
 
1353
 
The smart server will no longer raise 'NoSuchRevision' when streaming content
1354
 
with a size mismatch in a reconstructed graph search. New command ``bzr
1355
 
dpush``. Plugins can now define their own annotation tie-breaker when two
1356
 
revisions introduce the exact same line.
1357
 
 
1358
 
Changes from 1.15.1 to 1.15.2
1359
 
*****************************
1360
 
 
1361
 
* Use zdll on Windows to build ``_chk_map_pyx`` extension.
1362
 
  (Alexander Belchenko)
1363
 
 
1364
 
Changes from 1.15final to 1.15.1
1365
 
*********************************
1366
 
 
1367
 
* Translate errors received from a smart server in response to a
1368
 
  ``BzrDirFormat.initialize`` or ``BzrDirFormat.initialize_ex`` request.
1369
 
  This was causing tracebacks even for mundane errors like
1370
 
  ``PermissionDenied``.  (Andrew Bennetts, #381329)
1371
 
 
1372
 
Changes from 1.15rc1 to 1.15final
1373
 
*********************************
1374
 
 
1375
 
* No changes
 
9
In Development
 
10
##############
1376
11
 
1377
12
Compatibility Breaks
1378
13
********************
1385
20
New Features
1386
21
************
1387
22
 
1388
 
* New command ``bzr dpush`` that can push changes to foreign 
1389
 
  branches (svn, git) without setting custom bzr-specific metadata.
1390
 
  (Jelmer Vernooij)
1391
 
 
1392
 
* The new development format ``--development6-rich-root`` now supports
1393
 
  stacking. We chose not to use a new format marker, since old clients
1394
 
  will just fail to open stacked branches, the same as if we used a new
1395
 
  format flag. (John Arbash Meinel, #373455)
1396
 
 
1397
23
* Plugins can now define their own annotation tie-breaker when two revisions
1398
24
  introduce the exact same line. See ``bzrlib.annotate._break_annotation_tie``
1399
25
  Be aware though that this is temporary, private (as indicated by the leading
1403
29
  branches (svn, git) without setting custom bzr-specific metadata.
1404
30
  (Jelmer Vernooij)
1405
31
 
1406
 
* ``bzr send`` will now check the ``child_submit_format`` setting in
1407
 
  the submit branch to determine what format to use, if none was 
1408
 
  specified on the command-line.  (Jelmer Vernooij)
1409
 
 
1410
32
Improvements
1411
33
************
1412
34
 
1413
 
* -Dhpss output now includes the number of VFS calls made to the remote
1414
 
  server. (Jonathan Lange)
1415
 
 
1416
 
* ``--coverage`` works for code running in threads too.
1417
 
  (Andrew Bennets, Vincent Ladeuil)
1418
 
 
1419
 
* ``bzr pull`` now has a ``--local`` option to only make changes to the
1420
 
  local branch, and not the bound master branch.
1421
 
  (Gary van der Merwe, #194716)
1422
 
 
1423
 
* ``bzr rm *`` is now as fast as ``bzr rm * --keep``. (Johan Walles, #180116)
1424
 
 
1425
35
Bug Fixes
1426
36
*********
1427
37
 
1428
 
* Adding now works properly when path contains a symbolic link.
1429
 
  (Geoff Bache, #183831)
1430
 
 
1431
 
* An error is now raised for unknown eol values. (Brian de Alwis, #358199)
1432
 
 
1433
 
* ``bzr merge --weave`` will now generate a conflict if one side deletes a
1434
 
  line, and the other side modifies the line. (John Arbash Meinel, #328171)
1435
 
 
1436
 
* ``bzr reconfigure --standalone`` no longer raises IncompatibleRepositories.
1437
 
  (Martin von Gagern, #248932)
 
38
* End-Of-Line content filters are now loaded correctly.
 
39
  (Ian Clatworthy, Brian de Alwis, #355280)
 
40
 
 
41
* Fix TypeError in running ``bzr break-lock`` on some URLs.
 
42
  (Alexander Belchenko, Martin Pool, #365891)
1438
43
 
1439
44
* ``bzr send`` works to send emails again using MAPI.
1440
45
  (Neil Martinsen-Burrell, #346998)
1441
46
 
1442
 
* Check for missing parent inventories in StreamSink.  This prevents
1443
 
  incomplete stacked branches being created by 1.13 bzr:// and
1444
 
  bzr+ssh:// clients (which have bug #354036).  Instead, the server now
1445
 
  causes those clients to send the missing records.  (Andrew Bennetts)
1446
 
 
1447
 
* Correctly handle http servers proposing multiple authentication schemes.
1448
 
  (Vincent Ladeuil, #366107)
1449
 
 
1450
 
* End-Of-Line content filters are now loaded correctly.
1451
 
  (Ian Clatworthy, Brian de Alwis, #355280)
1452
 
 
1453
 
* Fix a bug in the pure-python ``GroupCompress`` code when handling copies
1454
 
  longer than 64KiB. (John Arbash Meinel, #364900)
1455
 
 
1456
 
* Fix TypeError in running ``bzr break-lock`` on some URLs.
1457
 
  (Alexander Belchenko, Martin Pool, #365891)
1458
 
 
1459
47
* Non-recursive ``bzr ls`` now works properly when a path is specified.
1460
48
  (Jelmer Vernooij, #357863)
1461
49
 
1462
 
* ssh usernames (defined in ~/.ssh/config) are honoured for bzr+ssh connections.
1463
 
  (Vincent Ladeuil, #367726)
1464
 
 
1465
 
* Several bugs related to unicode symlinks have been fixed and the test suite
1466
 
  enhanced to better catch regressions for them. (Vincent Ladeuil)
1467
 
 
1468
 
* The smart server will no longer raise 'NoSuchRevision' when streaming
1469
 
  content with a size mismatch in a reconstructed graph search: it assumes
1470
 
  that the client will make sure it is happy with what it got, and this
1471
 
  sort of mismatch is normal for stacked environments.
1472
 
  bzr 1.13.0/1 will stream from unstacked branches only - in that case not
1473
 
  getting all the content expected would be a bug. However the graph
1474
 
  search is how we figured out what we wanted, so a mismatch is both odd
1475
 
  and unrecoverable without starting over, and starting over will end up
1476
 
  with the same data as if we just permitted the mismatch. If data is
1477
 
  gc'd, doing a new search will find only the truncated data, so sending
1478
 
  only the truncated data seems reasonable. bzr versions newer than this
1479
 
  will stream from stacked branches and check the stream to find missing
1480
 
  content in the stacked-on branch, and thus will handle the situation
1481
 
  implicitly.  (Robert Collins, #360791)
1482
 
 
1483
 
* Upgrading to, or fetching into a 'rich-root' format will now correctly
1484
 
  set the root data the same way that reconcile does.
1485
 
  (Robert Collins, #368921)
1486
 
 
1487
 
* Using unicode Windows API to obtain command-line arguments.
1488
 
  (Alexander Belchenko, #375934)
 
50
* Fix a bug in the pure-python ``GroupCompress`` code when handling copies
 
51
  longer than 64KiB. (John Arbash Meinel, #364900)
1489
52
 
1490
53
Documentation
1491
54
*************
1493
56
API Changes
1494
57
***********
1495
58
 
1496
 
* ``InterPackRepo.fetch`` and ``RepoFetcher`` now raise ``NoSuchRevision``
1497
 
  instead of ``InstallFailed`` when they detect a missing revision.
1498
 
  ``InstallFailed`` itself has been deleted. (Jonathan Lange)
1499
 
 
1500
 
* Not passing arguments to ``bzrlib.commands.main()`` will now grab the
1501
 
  arguments from ``osutils.get_unicode_argv()`` which has proper support
1502
 
  for unicode arguments on windows. Further, the supplied arguments are now 
1503
 
  required to be unicode strings, rather than user_encoded strings.
1504
 
  (Alexander Belchenko)
1505
 
 
1506
59
Internals
1507
60
*********
1508
61
 
1524
77
  called before the first test is started, ``done`` called after the last
1525
78
  test completes, and a new parameter ``strict``. (Robert Collins)
1526
79
 
1527
 
* ``-Dhpss`` when passed to bzr will cause a backtrace to be printed when
1528
 
  VFS operations are started on a smart server repository. This should not
1529
 
  occur on regular push and pull operations, and is a key indicator for
1530
 
  performance regressions. (Robert Collins)
1531
 
 
1532
 
* ``-Dlock`` when passed to the selftest (e.g. ``bzr -Dlock selftest``) will
1533
 
  cause mismatched physical locks to cause test errors rather than just
1534
 
  reporting to the screen. (Robert Collins)
1535
 
 
1536
 
* -Dprogress will cause pdb to start up if a progress view jumps
1537
 
  backwards. (Robert Collins)
1538
 
 
1539
80
* Fallback ``CredentialStore`` instances registered with ``fallback=True``
1540
81
  are now be able to provide credentials if obtaining credentials 
1541
82
  via ~/.bazaar/authentication.conf fails. (Jelmer Vernooij, 
1542
83
  Vincent Ladeuil, #321918)
1543
84
 
1544
 
* New hook ``Lock.lock_broken`` which runs when a lock is
1545
 
  broken. This is mainly for testing that lock/unlock are
1546
 
  balanced in tests. (Vincent Ladeuil)
1547
 
 
1548
 
* New MergeDirective hook 'merge_request_body' allows hooks to supply or
1549
 
  alter a body for the message produced by ``bzr send``.
1550
 
 
1551
 
* New smart server verb ``BzrDir.initialize_ex`` which implements a
1552
 
  refactoring to the core of clone allowing less round trips on new
1553
 
  branches. (Robert Collins)
1554
 
 
1555
 
* New method ``Tags.rename_revisions`` that can rename revision ids tags
1556
 
  are pointing at. (Jelmer Vernooij)
1557
 
 
1558
 
* Updated the bundled ``ConfigObj`` library to 4.6.0 (Matt Nordhoff)
1559
 
 
1560
 
Testing
1561
 
*******
1562
 
 
1563
 
* ``bzr selftest`` will now fail if lock/unlock are not correctly balanced in
1564
 
  tests. Using ``-Dlock`` will turn the related failures into warnings.
1565
 
  (Vincent Ladeuil, Robert Collins)
1566
 
 
1567
 
bzr 1.14
1568
 
########
 
85
bzr 1.14rc2
 
86
###########
1569
87
:Codename: brisbane-core
1570
88
:1.14rc1: 2009-04-06
1571
89
:1.14rc2: 2009-04-19
1572
 
:1.14: 2009-04-28
1573
 
:1.14.1: 2009-05-01
1574
90
 
1575
91
New formats 1.14 and 1.14-rich-root supporting End-Of-Line (EOL) conversions,
1576
92
keyword templating (via the bzr-keywords plugin) and generic content filtering.
1577
93
End-of-line conversion is now supported for formats supporting content
1578
94
filtering.
1579
95
 
1580
 
Changes from 1.14final to 1.14.1
1581
 
********************************
1582
 
 
1583
 
* Change api_minimum_version back to api_minimum_version = (1, 13, 0)
1584
 
 
1585
 
Changes from 1.14rc2 to 1.14final
1586
 
*********************************
1587
 
 
1588
 
* Fix a bug in the pure-python ``GroupCompress`` code when handling copies
1589
 
  longer than 64KiB. (John Arbash Meinel, #364900)
1590
 
 
1591
 
Changes from 1.14rc1 to 1.14rc2
1592
 
*******************************
 
96
Changes from RC1 to RC2
 
97
***********************
1593
98
 
1594
99
* Fix for bug 358037 Revision not in
1595
100
  bzrlib.groupcompress.GroupCompressVersionedFiles (Brian de Alwis, 
2019
524
:1.13: 2009-03-14
2020
525
:1.13rc1: 2009-03-10
2021
526
:1.13.1: 2009-03-23
2022
 
:1.13.2: 2009-04-27
2023
527
 
2024
528
GNU Changelog output can now be produced by ``bzr log --gnu-changelog``.  Debug
2025
529
flags can now be set in ``~/.bazaar/bazaar.conf``.  Lightweight checkouts and
2026
530
stacked branches should both be much faster over remote connections.  
2027
531
 
2028
 
Changes From 1.13.1 to 1.13.2
2029
 
*****************************
2030
 
 
2031
 
A regression was found in the 1.13.1 release. When bzr 1.13.1 and earlier push
2032
 
a stacked branch they do not take care to push all the parent inventories for
2033
 
the transferred revisions. This means that a smart server serving that branch
2034
 
often cannot calculate inventory deltas for the branch (because smart server
2035
 
does not/cannot open fallback repositories). Prior to 1.13 the server did not
2036
 
have a verb to stream revisions out of a repository, so that's why this bug has
2037
 
appeared now.
2038
 
 
2039
 
Bug Fixes
2040
 
*********
2041
 
 
2042
 
* Fix for bug 354036 ErrorFromSmartServer - AbsentContentFactory object has no
2043
 
  attribute 'get_bytes_as' exception while pulling from Launchpad 
2044
 
  (Jean-Francois Roy, Andrew Bennetts, Robert Collins)
2045
 
 
2046
 
Changes From 1.13final to 1.13.1
2047
 
********************************
2048
 
 
 
532
Changes From 1.13 to 1.13.1
 
533
***************************
2049
534
A couple regessions where found in the 1.13 release. The pyrex-generated C
2050
535
extensions are missing from the .tar.gz and .zip files.  Documentation on how
2051
536
to generate GNU ChangeLogs is wrong.
2064
549
 
2065
550
* ``merge --force`` works again. (Robert Collins, #342105)
2066
551
 
2067
 
Changes From 1.13rc1 to 1.13final
2068
 
*********************************
 
552
Changes From RC1 to Final
 
553
*************************
2069
554
 
2070
555
* Fix "is not a stackable format" error when pushing a
2071
556
  stackable-format branch with an unstackable-format repository to a
2217
702
  reoccuring. (Robert Collins, Andrew Bennetts)
2218
703
 
2219
704
* Restore the progress bar on Windows. We were disabling it when TERM
2220
 
  wasn't set, but Windows doesn't set TERM. (Alexander Belchenko,
2221
 
  #334808)
 
705
  wasn't set, but Windows doesn't set TERM. (Alexander Belchenko)
2222
706
 
2223
707
* ``setup.py build_ext`` now gives a proper error when an extension
2224
708
  fails to build. (John Arbash Meinel)
2620
1104
  (Vincent Ladeuil)
2621
1105
 
2622
1106
 
2623
 
bzr 1.11
2624
 
########
2625
 
 
2626
 
:Codename: "Eyes up!"
2627
 
:Released: 2009-01-19
 
1107
bzr 1.11 "Eyes up!" 2009-01-19
 
1108
##############################
2628
1109
 
2629
1110
This first monthly release of Bazaar for 2009 improves Bazaar's operation
2630
1111
in Windows, Mac OS X, and other situations where file names are matched
2650
1131
 
2651
1132
 
2652
1133
 
2653
 
bzr 1.11rc1
2654
 
###########
2655
 
 
2656
 
:Codename: "Eyes up!"
2657
 
:Released: 2009-01-09
 
1134
bzr 1.11rc1 "Eyes up!" 2009-01-09
 
1135
#################################
2658
1136
 
2659
1137
Changes
2660
1138
*******
2890
1368
 
2891
1369
 
2892
1370
 
2893
 
bzr 1.10
2894
 
########
2895
 
 
2896
 
:Released: 2008-12-05
 
1371
bzr 1.10 2008-12-05
 
1372
###################
2897
1373
 
2898
1374
Bazaar 1.10 has several performance improvements for copying revisions
2899
1375
(especially for small updates to large projects).  There has also been a
2918
1394
  topologically. (John Arbash Meinel, #304841)
2919
1395
 
2920
1396
 
2921
 
bzr 1.10rc1
2922
 
###########
2923
 
 
2924
 
:Released: 2008-11-28
 
1397
bzr 1.10rc1 2008-11-28
 
1398
######################
2925
1399
 
2926
1400
This release of Bazaar focuses on performance improvements when pushing
2927
1401
and pulling revisions, both locally and to remote networks.  The popular
3041
1515
* Doctests now only report the first failure.  (Martin Pool)
3042
1516
 
3043
1517
 
3044
 
bzr 1.9
3045
 
#######
3046
 
 
3047
 
:Released: 2008-11-07
 
1518
bzr 1.9 2008-11-07
 
1519
##################
3048
1520
 
3049
1521
This release of Bazaar adds a new repository format, ``1.9``, with smaller
3050
1522
and more efficient index files.  This format can be specified when
3066
1538
  (John Arbash Meinel, #293746)
3067
1539
 
3068
1540
 
3069
 
bzr 1.9rc1
3070
 
##########
3071
 
 
3072
 
:Released: 2008-10-31
 
1541
bzr 1.9rc1 2008-10-31
 
1542
#####################
3073
1543
 
3074
1544
New Features
3075
1545
************
3186
1656
  configuration of authetication credentials.
3187
1657
 
3188
1658
 
3189
 
bzr 1.8
3190
 
#######
3191
 
 
3192
 
:Released: 2008-10-16
 
1659
bzr 1.8 2008-10-16
 
1660
##################
3193
1661
 
3194
1662
Bazaar 1.8 includes several fixes that improve working tree performance,
3195
1663
display of revision logs, and merges.  The bzr testsuite now passes on OS
3210
1678
  that platform.  (Alexander Belchenko, Martin Pool, #277481)
3211
1679
 
3212
1680
 
3213
 
bzr 1.8rc1
3214
 
##########
3215
 
 
3216
 
:Released: 2008-10-07
 
1681
bzr 1.8rc1 2008-10-07
 
1682
#####################
3217
1683
 
3218
1684
Changes
3219
1685
*******
3411
1877
  (Vincent Ladeuil)
3412
1878
 
3413
1879
 
3414
 
bzr 1.7.1
3415
 
#########
3416
 
 
3417
 
:Released:  2008-10-01
 
1880
bzr 1.7.1 2008-10-01
 
1881
####################
3418
1882
 
3419
1883
No changes from 1.7.1rc1.
3420
1884
 
3421
1885
 
3422
 
bzr 1.7.1rc1
3423
 
############
3424
 
 
3425
 
:Released: 2008-09-24
 
1886
bzr 1.7.1rc1 2008-09-24
 
1887
#######################
3426
1888
 
3427
1889
This release just includes an update to how the merge algorithm handles
3428
1890
file paths when we encounter complex history.
3437
1899
  (John Arbash Meinel)
3438
1900
 
3439
1901
 
3440
 
bzr 1.7
3441
 
#######
3442
 
 
3443
 
:Released: 2008-09-23
 
1902
bzr 1.7 2008-09-23
 
1903
##################
3444
1904
 
3445
1905
This release includes many bug fixes and a few performance and feature
3446
1906
improvements.  ``bzr rm`` will now scan for missing files and remove them,
3457
1917
  packaging qbzr. (Mark Hammond)
3458
1918
 
3459
1919
 
3460
 
bzr 1.7rc2
3461
 
##########
3462
 
 
3463
 
:Released: 2008-09-17
 
1920
bzr 1.7rc2 2008-09-17
 
1921
#####################
3464
1922
 
3465
1923
A few bug fixes from 1.7rc1. The biggest change is a new
3466
1924
``RemoteBranch.get_stacked_on_url`` rpc. This allows clients that are
3484
1942
  (Andrew Bennetts)
3485
1943
 
3486
1944
 
3487
 
bzr 1.7rc1
3488
 
##########
3489
 
 
3490
 
:Released: 2008-09-09
 
1945
bzr 1.7rc1 2008-09-09
 
1946
#####################
3491
1947
 
3492
1948
This release candidate for bzr 1.7 has several bug fixes and a few
3493
1949
performance and feature improvements.  ``bzr rm`` will now scan for
3684
2140
  clients now use this mechanism.  (Neil Martinsen-Burrell)
3685
2141
 
3686
2142
 
3687
 
bzr 1.6.1
3688
 
#########
3689
 
 
3690
 
:Released: 2008-09-05
 
2143
bzr 1.6.1 2008-09-05
 
2144
####################
3691
2145
 
3692
2146
A couple regressions were found in the 1.6 release. There was a
3693
2147
performance issue when using ``bzr+ssh`` to branch large repositories,
3694
2148
and some problems with stacking and ``rich-root`` capable repositories.
3695
2149
 
3696
2150
 
3697
 
bzr 1.6.1rc2
3698
 
############
3699
 
 
3700
 
:Released: 2008-09-03
 
2151
bzr 1.6.1rc2 2008-09-03
 
2152
#######################
3701
2153
 
3702
2154
Bug Fixes
3703
2155
*********
3708
2160
  (John Arbash Meinel, #264321)
3709
2161
 
3710
2162
 
3711
 
bzr 1.6.1rc1
3712
 
############
3713
 
 
3714
 
:Released: 2008-08-29
 
2163
bzr 1.6.1rc1 2008-08-29
 
2164
#######################
3715
2165
 
3716
2166
This release fixes a few regressions found in the 1.6 client. Fetching
3717
2167
changes was using an O(N^2) buffering algorithm, so for large projects it
3751
2201
  (John Arbash Meinel, #262333)
3752
2202
 
3753
2203
 
3754
 
bzr 1.6
3755
 
#######
3756
 
 
3757
 
:Released: 2008-08-25
 
2204
bzr 1.6 2008-08-25
 
2205
##################
3758
2206
 
3759
2207
Finally, the long awaited bzr 1.6 has been released. This release includes
3760
2208
new features like Stacked Branches, improved weave merge, and an updated
3767
2215
TortoiseBzr in the standalone Windows installer.
3768
2216
 
3769
2217
 
3770
 
bzr 1.6rc5
3771
 
##########
3772
 
 
3773
 
:Released: 2008-08-19
 
2218
bzr 1.6rc5 2008-08-19
 
2219
#####################
3774
2220
 
3775
2221
Bug Fixes
3776
2222
*********
3782
2228
  (This change was reverted when merged to bzr.dev)
3783
2229
 
3784
2230
 
3785
 
bzr 1.6rc4
3786
 
##########
3787
 
 
3788
 
:Released: 2008-08-18
 
2231
bzr 1.6rc4 2008-08-18
 
2232
#####################
3789
2233
 
3790
2234
Bug Fixes
3791
2235
*********
3795
2239
  rather than preserving deltas.  (John Arbash Meinel, #256757)
3796
2240
 
3797
2241
 
3798
 
bzr 1.6rc3
3799
 
##########
3800
 
 
3801
 
:Released: 2008-08-14
 
2242
bzr 1.6rc3 2008-08-14
 
2243
#####################
3802
2244
 
3803
2245
Changes
3804
2246
*******
3831
2273
  development which is substantially faster. (Robert Collins)
3832
2274
 
3833
2275
 
3834
 
bzr 1.6rc2
3835
 
##########
3836
 
 
3837
 
:Released: 2008-08-13
 
2276
bzr 1.6rc2 2008-08-13
 
2277
#####################
3838
2278
 
3839
2279
This release candidate has a few minor bug fixes, and some regression
3840
2280
fixes for Windows.
3872
2312
  will get the same results.  (John Arbash Meinel, #232188)
3873
2313
 
3874
2314
 
3875
 
bzr 1.6rc1
3876
 
##########
3877
 
 
3878
 
:Released: 2008-08-06
 
2315
bzr 1.6rc1 2008-08-06
 
2316
#####################
3879
2317
 
3880
2318
This release candidate for bzr 1.6 solidifies the new branch stacking
3881
2319
feature.  Bazaar now recommends that users upgrade all knit repositories,
4011
2449
  (Ian Clatworthy)
4012
2450
 
4013
2451
 
4014
 
bzr 1.6beta3
4015
 
############
4016
 
 
4017
 
:Released: 2008-07-17
 
2452
bzr 1.6beta3 2008-07-17
 
2453
#######################
4018
2454
 
4019
2455
This release adds a new 'stacked branches' feature allowing branches to
4020
2456
share storage without being in the same repository or on the same machine.
4186
2622
  (Robert Collins)
4187
2623
 
4188
2624
 
4189
 
bzr 1.6beta2
4190
 
############
4191
 
 
4192
 
:Released: 2008-06-10
 
2625
bzr 1.6beta2 2008-06-10
 
2626
#######################
4193
2627
 
4194
2628
This release contains further progress towards our 1.6 goals of shallow
4195
2629
repositories, and contains a fix for some user-affecting bugs in the
4272
2706
* Knit record serialisation is now stricter on what it will accept, to
4273
2707
  guard against potential internal bugs, or broken input. (Robert Collins)
4274
2708
 
4275
 
bzr 1.6beta1
4276
 
############
 
2709
bzr 1.6beta1 2008-06-02
 
2710
#######################
4277
2711
 
4278
 
:Released: 2008-06-02
4279
2712
 
4280
2713
Commands that work on the revision history such as push, pull, missing,
4281
2714
uncommit and log are now substantially faster.  This release adds a
4493
2926
  (Martin Pool)
4494
2927
 
4495
2928
 
4496
 
bzr 1.5
4497
 
#######
4498
 
 
4499
 
:Released: 2008-05-16
 
2929
bzr 1.5 2008-05-16
 
2930
##################
4500
2931
 
4501
2932
This release of Bazaar includes several updates to the documentation, and fixes
4502
2933
to prepare for making rich root support the default format. Many bugs have been
4517
2948
  (Ian Clatworthy)
4518
2949
 
4519
2950
 
4520
 
bzr 1.5rc1
4521
 
##########
4522
 
 
4523
 
:Released: 2008-05-09
 
2951
bzr 1.5rc1 2008-05-09
 
2952
#####################
4524
2953
 
4525
2954
Changes
4526
2955
*******
4690
3119
  (Martin Pool)
4691
3120
 
4692
3121
 
4693
 
bzr 1.4 
4694
 
#######
4695
 
 
4696
 
:Released: 2008-04-28
 
3122
bzr 1.4 2008-04-28
 
3123
##################
4697
3124
 
4698
3125
This release of Bazaar includes handy improvements to the speed of log and
4699
3126
status, new options for several commands, improved documentation, and better
4712
3139
  (John Arbash Meinel, Andrew Bennetts, #214894)
4713
3140
 
4714
3141
 
4715
 
bzr 1.4rc2
4716
 
##########
4717
 
 
4718
 
:Released: 2008-04-21
 
3142
bzr 1.4rc2 2008-04-21
 
3143
#####################
4719
3144
 
4720
3145
Bug Fixes
4721
3146
*********
4738
3163
  (Robert Collins, John Arbash Meinel)
4739
3164
 
4740
3165
 
4741
 
bzr 1.4rc1
4742
 
##########
4743
 
 
4744
 
:Released: 2008-04-11
 
3166
bzr 1.4rc1 2008-04-11
 
3167
#####################
4745
3168
 
4746
3169
Changes
4747
3170
*******
5028
3451
  ``Graph.get_parent_map`` returns a dict of key:parents. (Robert Collins)
5029
3452
 
5030
3453
 
5031
 
bzr 1.3.1
5032
 
#########
5033
 
 
5034
 
:Released: 2008-04-09
 
3454
bzr 1.3.1 2008-04-09
 
3455
####################
5035
3456
 
5036
3457
No changes from 1.3.1rc1.
5037
3458
 
5038
3459
 
5039
 
bzr 1.3.1rc1
5040
 
############
5041
 
 
5042
 
:Released: 2008-04-04
 
3460
bzr 1.3.1rc1 2008-04-04
 
3461
#######################
5043
3462
 
5044
3463
Bug Fixes
5045
3464
*********
5050
3469
  (#208418, Andrew Bennetts, Martin Pool, Robert Collins)
5051
3470
 
5052
3471
 
5053
 
bzr 1.3
5054
 
#######
5055
 
 
5056
 
:Released: 2008-03-20
 
3472
bzr 1.3 2008-03-20
 
3473
##################
5057
3474
 
5058
3475
Bazaar has become part of the GNU project <http://www.gnu.org>
5059
3476
 
5069
3486
  (#202778, Martin Pool)
5070
3487
 
5071
3488
 
5072
 
bzr 1.3rc1
5073
 
##########
5074
 
 
5075
 
:Released: 2008-03-16
 
3489
bzr 1.3rc1 2008-03-16
 
3490
#####################
5076
3491
 
5077
3492
Notes When Upgrading
5078
3493
********************
5258
3673
  format. (Robert Collins)
5259
3674
 
5260
3675
 
5261
 
bzr 1.2
5262
 
#######
5263
 
 
5264
 
:Released: 2008-02-15
 
3676
bzr 1.2 2008-02-15
 
3677
##################
5265
3678
 
5266
3679
Bug Fixes
5267
3680
*********
5269
3682
* Fix failing test in Launchpad plugin. (Martin Pool)
5270
3683
 
5271
3684
 
5272
 
bzr 1.2rc1
5273
 
##########
5274
 
 
5275
 
:Released: 2008-02-13
 
3685
bzr 1.2rc1 2008-02-13
 
3686
#####################
5276
3687
 
5277
3688
Notes When Upgrading
5278
3689
********************
5473
3884
  revision names etc. (Robert Collins)
5474
3885
 
5475
3886
 
5476
 
bzr 1.1
5477
 
#######
5478
 
 
5479
 
:Released: 2008-01-15
 
3887
bzr 1.1 2008-01-15
 
3888
##################
5480
3889
 
5481
3890
(no changes from 1.1rc1)
5482
3891
 
5483
 
bzr 1.1rc1
5484
 
##########
5485
 
 
5486
 
:Released: 2008-01-05
 
3892
bzr 1.1rc1 2008-01-05
 
3893
#####################
5487
3894
 
5488
3895
Changes
5489
3896
*******
5693
4100
  replaced by the new helper methods added in this release. (Robert Collins)
5694
4101
 
5695
4102
 
5696
 
bzr 1.0
5697
 
#######
5698
 
 
5699
 
:Released: 2007-12-14
 
4103
bzr 1.0 2007-12-14
 
4104
##################
5700
4105
 
5701
4106
Documentation
5702
4107
*************
5713
4118
  (Ian Clatworthy)
5714
4119
 
5715
4120
 
5716
 
bzr 1.0rc3
5717
 
##########
5718
 
 
5719
 
:Released: 2007-12-11
 
4121
bzr 1.0rc3 2007-12-11
 
4122
#####################
5720
4123
 
5721
4124
Changes
5722
4125
*******
5757
4160
  (Vincent Ladeuil)
5758
4161
 
5759
4162
 
5760
 
bzr 1.0rc2
5761
 
##########
5762
 
 
5763
 
:Released: 2007-12-07
 
4163
bzr 1.0rc2 2007-12-07
 
4164
#####################
5764
4165
 
5765
4166
Improvements
5766
4167
************
5834
4235
  ``started`` methods. (Matt Nordhoff)
5835
4236
 
5836
4237
 
5837
 
bzr 1.0rc1
5838
 
##########
5839
 
 
5840
 
:Released: 2007-11-30
 
4238
bzr 1.0rc1 2007-11-30
 
4239
#####################
5841
4240
 
5842
4241
Notes When Upgrading
5843
4242
********************
6113
4512
* InventoryEntry.diff is now deprecated.  Please use diff.DiffTree instead.
6114
4513
 
6115
4514
 
6116
 
bzr 0.92
6117
 
########
6118
 
 
6119
 
:Released: 2007-11-05
 
4515
bzr 0.92 2007-11-05
 
4516
###################
6120
4517
 
6121
4518
Changes
6122
4519
*******
6124
4521
  * New uninstaller on Win32.  (Alexander Belchenko)
6125
4522
 
6126
4523
 
6127
 
bzr 0.92rc1
6128
 
###########
6129
 
 
6130
 
:Released: 2007-10-29
 
4524
bzr 0.92rc1 2007-10-29
 
4525
######################
6131
4526
 
6132
4527
Changes
6133
4528
*******
6446
4841
  raises a Python warning.  (Martin Pool)
6447
4842
 
6448
4843
 
6449
 
bzr 0.91
6450
 
########
6451
 
 
6452
 
:Released: 2007-09-26
 
4844
bzr 0.91 2007-09-26
 
4845
###################
6453
4846
 
6454
4847
Bug Fixes
6455
4848
*********
6470
4863
  (Andrew Bennetts)
6471
4864
 
6472
4865
 
6473
 
bzr 0.91rc2
6474
 
###########
6475
 
 
6476
 
:Released: 2007-09-11
 
4866
bzr 0.91rc2 2007-09-11
 
4867
######################
6477
4868
 
6478
4869
* Replaced incorrect tarball for previous release; a debug statement was left
6479
4870
  in bzrlib/remote.py.
6480
4871
 
6481
4872
 
6482
 
bzr 0.91rc1
6483
 
###########
6484
 
 
6485
 
:Released: 2007-09-11
 
4873
bzr 0.91rc1 2007-09-11
 
4874
######################
6486
4875
 
6487
4876
Changes
6488
4877
*******
6809
5198
  [] to revert all files is deprecated.  (Aaron Bentley)
6810
5199
 
6811
5200
 
6812
 
bzr 0.90
6813
 
########
6814
 
 
6815
 
:Released: 2007-08-28
 
5201
bzr 0.90 2007-08-28
 
5202
###################
6816
5203
 
6817
5204
Improvements
6818
5205
************
6835
5222
  and call ``create_repository`` on that.  (Martin Pool)
6836
5223
 
6837
5224
 
6838
 
bzr 0.90rc1
6839
 
###########
6840
 
 
6841
 
:Released: 2007-08-14
 
5225
bzr 0.90rc1 2007-08-14
 
5226
######################
6842
5227
 
6843
5228
Bugfixes
6844
5229
********
7110
5495
  parameter.  Varargs-style parameters are deprecated. (Aaron Bentley)
7111
5496
 
7112
5497
 
7113
 
bzr 0.18
7114
 
########
7115
 
 
7116
 
:Released:  2007-07-17
 
5498
bzr 0.18  2007-07-17
 
5499
####################
7117
5500
 
7118
5501
Bugfixes
7119
5502
********
7121
5504
* Fix 'bzr add' crash under Win32 (Kuno Meyer)
7122
5505
 
7123
5506
 
7124
 
bzr 0.18rc1
7125
 
###########
7126
 
 
7127
 
:Released:  2007-07-10
 
5507
bzr 0.18rc1  2007-07-10
 
5508
#######################
7128
5509
 
7129
5510
Bugfixes
7130
5511
********
7375
5756
  (Vincent Ladeuil, #110448)
7376
5757
 
7377
5758
 
7378
 
bzr 0.17
7379
 
########
7380
 
 
7381
 
:Released:  2007-06-18
 
5759
bzr 0.17  2007-06-18
 
5760
####################
7382
5761
 
7383
5762
Bugfixes
7384
5763
********
7390
5769
  (Aaron Bentley, Ian Clatworthy, #120930)
7391
5770
 
7392
5771
 
7393
 
bzr 0.17rc1
7394
 
###########
7395
 
 
7396
 
:Released:  2007-06-12
 
5772
bzr 0.17rc1  2007-06-12
 
5773
#######################
7397
5774
 
7398
5775
Notes When Upgrading
7399
5776
********************
7494
5871
  your repository. (Previously Branch6 only supported revisions in your
7495
5872
  mainline). (John Arbash Meinel, #115343)
7496
5873
 
7497
 
bzr 0.16
7498
 
########
7499
 
 
7500
 
:Released:  2007-05-07
 
5874
bzr 0.16  2007-05-07
 
5875
####################
7501
5876
 
7502
5877
Bugfixes
7503
5878
********
7527
5902
  diff`` and ``bzr status`` significantly improving the speed of
7528
5903
  both. (John Arbash Meinel)
7529
5904
 
7530
 
bzr 0.16rc2
7531
 
###########
7532
 
 
7533
 
:Released:  2007-04-30
 
5905
bzr 0.16rc2  2007-04-30
 
5906
#######################
7534
5907
 
7535
5908
Bugfixes
7536
5909
********
7553
5926
* ``WorkingTree4._iter_changes`` should not descend into unversioned
7554
5927
  directories. (John Arbash Meinel, #110399)
7555
5928
 
7556
 
bzr 0.16rc1
7557
 
###########
7558
 
 
7559
 
:Released:  2007-04-26
 
5929
bzr 0.16rc1  2007-04-26
 
5930
#######################
7560
5931
 
7561
5932
Notes When Upgrading
7562
5933
********************
7863
6234
  implementation of new auth schemes for both http and proxy.
7864
6235
  (Vincent Ladeuil)
7865
6236
 
7866
 
bzr 0.15
7867
 
########
7868
 
 
7869
 
:Released: 2007-04-01
 
6237
bzr 0.15 2007-04-01
 
6238
###################
7870
6239
 
7871
6240
Bugfixes
7872
6241
********
7878
6247
  checking out a branch that contains an old-format working tree.
7879
6248
  (Martin Pool)
7880
6249
 
7881
 
bzr 0.15rc3
7882
 
###########
7883
 
 
7884
 
:Released:  2007-03-26
 
6250
bzr 0.15rc3  2007-03-26
 
6251
#######################
7885
6252
 
7886
6253
Changes
7887
6254
*******
7956
6323
* Correctly handles mutiple permanent http redirections.
7957
6324
  (vila, #88780)
7958
6325
 
7959
 
bzr 0.15rc2
7960
 
###########
7961
 
 
7962
 
:Released:  2007-03-14
 
6326
bzr 0.15rc2  2007-03-14
 
6327
#######################
7963
6328
 
7964
6329
Notes When Upgrading
7965
6330
********************
8012
6377
  (Wouter van Heyst, #53483)
8013
6378
 
8014
6379
 
8015
 
bzr 0.15rc1
8016
 
###########
8017
 
 
8018
 
:Released:  2007-03-07
 
6380
bzr 0.15rc1  2007-03-07
 
6381
#######################
8019
6382
 
8020
6383
Surprises
8021
6384
*********
8245
6608
  before the rest of the suite.  (Martin Pool)
8246
6609
 
8247
6610
 
8248
 
bzr 0.14
8249
 
########
8250
 
 
8251
 
:Released:  2007-01-23
 
6611
bzr 0.14  2007-01-23
 
6612
####################
8252
6613
 
8253
6614
Improvements
8254
6615
************
8267
6628
  it is in is below a repository. (James Westby, #77306)
8268
6629
 
8269
6630
 
8270
 
bzr 0.14rc1
8271
 
###########
8272
 
 
8273
 
:Released:  2007-01-16
 
6631
bzr 0.14rc1  2007-01-16
 
6632
#######################
8274
6633
 
8275
6634
Improvements
8276
6635
************
8404
6763
  (Alexander Belchenko, #68124)
8405
6764
 
8406
6765
 
8407
 
bzr 0.13
8408
 
########
8409
 
 
8410
 
:Released:  2006-12-05
 
6766
bzr 0.13  2006-12-05
 
6767
####################
8411
6768
 
8412
6769
No changes from 0.13rc
8413
6770
 
8414
6771
 
8415
 
bzr 0.13rc1
8416
 
###########
8417
 
 
8418
 
:Released:  2006-11-27
 
6772
bzr 0.13rc1  2006-11-27
 
6773
#######################
8419
6774
 
8420
6775
Improvements
8421
6776
************
8540
6895
* TestingHTTPRequestHandler really handles the Range header
8541
6896
  (previously it was ignoring it and returning the whole file,).
8542
6897
 
8543
 
bzr 0.12
8544
 
########
8545
 
 
8546
 
:Released:  2006-10-30
 
6898
bzr 0.12  2006-10-30
 
6899
####################
8547
6900
 
8548
6901
Internals
8549
6902
*********
8552
6905
  and remove benchmarks that take longer than 10min to run.
8553
6906
  (John Arbash Meinel)
8554
6907
 
8555
 
bzr 0.12rc1
8556
 
###########
8557
 
 
8558
 
:Released:  2006-10-23
 
6908
bzr 0.12rc1  2006-10-23
 
6909
#######################
8559
6910
 
8560
6911
Improvements
8561
6912
************
8631
6982
* Avoid circular imports by creating a deprecated function for
8632
6983
  ``bzrlib.tree.RevisionTree``. Callers should have been using
8633
6984
  ``bzrlib.revisontree.RevisionTree`` anyway. (John Arbash Meinel,
8634
 
  #66349)
 
6985
  #63360, #66349)
8635
6986
 
8636
6987
* Don't use ``socket.MSG_WAITALL`` as it doesn't exist on all
8637
6988
  platforms. (Martin Pool, #66356)
8676
7027
  option to set the BzrDir, Repository and Branch formats of the
8677
7028
  created objects. (Robert Collins, John Arbash Meinel)
8678
7029
 
8679
 
bzr 0.11
8680
 
########
8681
 
 
8682
 
:Released:  2006-10-02
 
7030
bzr 0.11  2006-10-02
 
7031
####################
8683
7032
 
8684
7033
* Smart server transport test failures on windows fixed. (Lukáš Lalinský).
8685
7034
 
8686
 
bzr 0.11rc2
8687
 
###########
8688
 
 
8689
 
:Released:  2006-09-27
 
7035
bzr 0.11rc2  2006-09-27
 
7036
#######################
8690
7037
 
8691
7038
Bug Fixes
8692
7039
*********
8696
7043
* Commit performance regression fixed. (Aaron Bentley, Robert Collins, John
8697
7044
  Arbash Meinel).
8698
7045
 
8699
 
bzr 0.11rc1
8700
 
###########
8701
 
 
8702
 
:Released:  2006-09-25
 
7046
bzr 0.11rc1  2006-09-25
 
7047
#######################
8703
7048
 
8704
7049
Improvements
8705
7050
************
8892
7237
  allow upgrades to a richer interface than the VFS one provided by
8893
7238
  Transport. (Andrew Bennetts, Martin Pool)
8894
7239
 
8895
 
bzr 0.10
8896
 
########
8897
 
 
8898
 
:Released:  2006-08-29
 
7240
bzr 0.10  2006-08-29
 
7241
####################
8899
7242
 
8900
7243
Improvements
8901
7244
************
8972
7315
  need to be installed. This should help make the life of packagers
8973
7316
  easier. (John Arbash Meinel)
8974
7317
 
8975
 
bzr 0.9.0
8976
 
#########
8977
 
 
8978
 
:Released:  2006-08-11
 
7318
bzr 0.9.0  2006-08-11
 
7319
#####################
8979
7320
 
8980
7321
Surprises
8981
7322
*********
9242
7583
 
9243
7584
* "RevisionTree" is now in bzrlib/revisiontree.py. (Robert Collins)
9244
7585
 
9245
 
bzr 0.8.2
9246
 
#########
9247
 
 
9248
 
:Released:  2006-05-17
 
7586
bzr 0.8.2  2006-05-17
 
7587
#####################
9249
7588
 
9250
7589
Bug Fixes
9251
7590
*********
9252
7591
 
9253
7592
* setup.py failed to install launchpad plugin.  (Martin Pool)
9254
7593
 
9255
 
bzr 0.8.1
9256
 
#########
9257
 
 
9258
 
:Released:  2006-05-16
 
7594
bzr 0.8.1  2006-05-16
 
7595
#####################
9259
7596
 
9260
7597
Bug Fixes
9261
7598
*********
9308
7645
* Fix test case for bzr info in upgrading a standalone branch to metadir,
9309
7646
  uses bzrlib api now. (Olaf Conradi)
9310
7647
 
9311
 
bzr 0.8
9312
 
#######
9313
 
 
9314
 
:Released:  2006-05-08
 
7648
bzr 0.8  2006-05-08
 
7649
###################
9315
7650
 
9316
7651
Notes When Upgrading
9317
7652
********************
9572
7907
* ``run_bzr`` and ``run_bzr_captured`` now accept a 'stdin="foo"'
9573
7908
  parameter which will provide String("foo") to the command as its stdin.
9574
7909
 
9575
 
bzr 0.7
9576
 
#######
9577
 
 
9578
 
:Released: 2006-01-09
 
7910
bzr 0.7 2006-01-09
 
7911
##################
9579
7912
 
9580
7913
Changes
9581
7914
*******
9870
8203
* ``bzrlib.osutils.safe_unicode`` now exists to provide parameter coercion
9871
8204
  for functions that need unicode strings. (Robert Collins)
9872
8205
 
9873
 
bzr 0.6
9874
 
#######
9875
 
 
9876
 
:Released: 2005-10-28
 
8206
bzr 0.6 2005-10-28
 
8207
##################
9877
8208
 
9878
8209
Improvements
9879
8210
************
10088
8419
  [-1] in the revision-history. (Andres Salomon)
10089
8420
 
10090
8421
 
10091
 
bzr 0.1.1
10092
 
#########
10093
 
 
10094
 
:Released: 2005-10-12
 
8422
bzr 0.1.1 2005-10-12
 
8423
####################
10095
8424
 
10096
8425
Bug Fixes
10097
8426
*********
10108
8437
* Avoid some unnecessary http operations in branch and pull.
10109
8438
 
10110
8439
 
10111
 
bzr 0.1
10112
 
#######
10113
 
 
10114
 
:Released: 2005-10-11
 
8440
bzr 0.1 2005-10-11
 
8441
##################
10115
8442
 
10116
8443
Notes
10117
8444
*****
10240
8567
  of tests to run, e.g. ``bzr selftest test_weave``
10241
8568
 
10242
8569
 
10243
 
bzr 0.0.9
10244
 
#########
10245
 
 
10246
 
:Released: 2005-09-23
 
8570
bzr 0.0.9 2005-09-23
 
8571
####################
10247
8572
 
10248
8573
Bug Fixes
10249
8574
*********
10284
8609
  another (used by pull, merged, etc.)
10285
8610
 
10286
8611
 
10287
 
bzr 0.0.8
10288
 
#########
10289
 
 
10290
 
:Released: 2005-09-20
10291
 
 
 
8612
bzr 0.0.8 2005-09-20
 
8613
####################
10292
8614
 
10293
8615
Improvements
10294
8616
************
10338
8660
* Quieten warnings about locking; patch from Matt Lavin.
10339
8661
 
10340
8662
 
10341
 
bzr-0.0.7
10342
 
#########
10343
 
 
10344
 
:Released: 2005-09-02
 
8663
bzr-0.0.7 2005-09-02
 
8664
####################
10345
8665
 
10346
8666
New Features
10347
8667
************
10395
8715
 
10396
8716
 
10397
8717
 
10398
 
bzr-0.0.6
10399
 
#########
10400
 
 
10401
 
:Released: 2005-08-18
 
8718
bzr-0.0.6 2005-08-18
 
8719
####################
10402
8720
 
10403
8721
New Features
10404
8722
************
10483
8801
* Fix bugs in committing only selected files or within a subdirectory.
10484
8802
 
10485
8803
 
10486
 
bzr-0.0.5
10487
 
#########
10488
 
 
10489
 
:Released:  2005-06-15
 
8804
bzr-0.0.5  2005-06-15
 
8805
#####################
10490
8806
 
10491
8807
Changes
10492
8808
*******
10627
8943
  2.4 is now only recommended.
10628
8944
 
10629
8945
 
10630
 
bzr-0.0.4
10631
 
#########
10632
 
 
10633
 
:Released:  2005-04-22
 
8946
bzr-0.0.4  2005-04-22
 
8947
#####################
10634
8948
 
10635
8949
Enhancements
10636
8950
************
10698
9012
  from QuantumG.
10699
9013
 
10700
9014
 
10701
 
bzr-0.0.3
10702
 
#########
10703
 
 
10704
 
:Released:  2005-04-06
 
9015
bzr-0.0.3  2005-04-06
 
9016
#####################
10705
9017
 
10706
9018
Enhancements
10707
9019
************
10755
9067
* Win32 fixes from Steve Brown.
10756
9068
 
10757
9069
 
10758
 
bzr-0.0.2
10759
 
#########
10760
 
 
10761
 
:Codename: "black cube"
10762
 
:Released: 2005-03-31
 
9070
bzr-0.0.2  "black cube"  2005-03-31
 
9071
###################################
10763
9072
 
10764
9073
Enhancements
10765
9074
************
10787
9096
  the root directory only.
10788
9097
 
10789
9098
 
10790
 
bzr-0.0.1
10791
 
#########
10792
 
 
10793
 
:Released:  2005-03-26
 
9099
bzr-0.0.1  2005-03-26
 
9100
#####################
10794
9101
 
10795
9102
Enhancements
10796
9103
************
10819
9126
  supported).
10820
9127
 
10821
9128
 
10822
 
bzr-0.0.0.69
10823
 
############
10824
 
 
10825
 
:Released:  2005-03-22
 
9129
bzr-0.0.0.69  2005-03-22
 
9130
########################
10826
9131
 
10827
9132
Enhancements
10828
9133
************
10832
9137
* Storage of local versions: init, add, remove, rm, info, log,
10833
9138
  diff, status, etc.
10834
9139
 
10835
 
 
10836
 
bzr ?.?.? (not released yet)
10837
 
############################
10838
 
 
10839
 
:Codename: template
10840
 
:2.0.2: ???
10841
 
 
10842
 
Compatibility Breaks
10843
 
********************
10844
 
 
10845
 
New Features
10846
 
************
10847
 
 
10848
 
Bug Fixes
10849
 
*********
10850
 
 
10851
 
Improvements
10852
 
************
10853
 
 
10854
 
Documentation
10855
 
*************
10856
 
 
10857
 
API Changes
10858
 
***********
10859
 
 
10860
 
Internals
10861
 
*********
10862
 
 
10863
 
Testing
10864
 
*******
10865
 
 
10866
 
 
10867
 
 
10868
9140
..
10869
9141
   vim: tw=74 ft=rst ff=unix