~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/en/release-notes/bzr-2.4.txt

  • Committer: Jelmer Vernooij
  • Date: 2011-04-09 22:14:24 UTC
  • mfrom: (5777.4.2 mutableinventorytree)
  • mto: This revision was merged to the branch mainline in revision 5787.
  • Revision ID: jelmer@samba.org-20110409221424-a2air35exbz50hi8
Mergemutableinventorytree.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
.. toctree::
6
6
   :maxdepth: 1
7
7
 
8
 
bzr 2.4.2
9
 
#########
10
 
 
11
 
:2.4.2: NOT RELEASED YET
12
 
 
13
 
External Compatibility Breaks
14
 
*****************************
15
 
 
16
 
.. These may require users to change the way they use Bazaar.
17
 
 
18
 
New Features
19
 
************
20
 
 
21
 
.. New commands, options, etc that users may wish to try out.
22
 
 
23
 
Improvements
24
 
************
25
 
 
26
 
.. Improvements to existing commands, especially improved performance 
27
 
   or memory usage, or better results.
28
 
 
29
 
* Fixed a bug where ``bzr tags -r x..y`` loaded the branch history once for
30
 
  every revision in the range; it's now much faster. (Vincent Ladeuil, #857335)
31
 
 
32
 
Bug Fixes
33
 
*********
34
 
 
35
 
* Fixed an infinite loop when creating a repo at the root of the filesystem, 
36
 
  i.e. "/", due to posixpath.normpath() not collapsing 2 leading slashes into 
37
 
  one, thus respecting the POSIX standard, but making relpath() loop infinitely.
38
 
  (Florian Vichot, #861008)
39
 
 
40
 
* Fixed loading of external merge tools from config to properly decode
41
 
  command-lines which contain embedded quotes. (Gordon Tyler, #828803)
42
 
 
43
 
* Include declaration of 'changed' to avoid an UnboundLocalError in dirstate
44
 
  pyrex code with new Cython versions. (Denys Duchier, #837221)
45
 
 
46
 
* Prevent several kinds of OverflowError and other fallout from failing to fit
47
 
  stat fields into four bytes in dirstate pack_stat implementations.
48
 
  (Martin Packman, #683191 #706957)
49
 
 
50
 
* Return early from create_delta_index_from_delta given tiny inputs. This
51
 
  avoids raising a spurious MemoryError on certain platforms such as AIX.
52
 
  (John Arbash Meinel, #856731)
53
 
  
54
 
Documentation
55
 
*************
56
 
 
57
 
.. Improved or updated documentation.
58
 
 
59
 
API Changes
60
 
***********
61
 
 
62
 
.. Changes that may require updates in plugins or other code that uses
63
 
   bzrlib.
64
 
 
65
 
Internals
66
 
*********
67
 
 
68
 
.. Major internal changes, unlikely to be visible to users or plugin 
69
 
   developers, but interesting for bzr developers.
70
 
 
71
 
Testing
72
 
*******
73
 
 
74
 
.. Fixes and changes that are only relevant to bzr's test framework and 
75
 
   suite.  This can include new facilities for writing tests, fixes to 
76
 
   spurious test failures and changes to the way things should be tested.
77
 
 
78
 
* Fix the race for TestingThreadingTCPServer in
79
 
  test_server_crash_while_responding. (Vincent Ladeuil, #869366)
80
 
 
81
 
* Really corrupt the pack file without depending on a special length or value.
82
 
  (Vincent Ladeuil, #807032)
83
 
 
84
 
 
85
 
bzr 2.4.1
86
 
#########
87
 
 
88
 
:2.4.1: 2011-09-08
89
 
 
90
 
This is a bugfix release. Upgrading is recommended for all users of earlier
91
 
2.4 releases.
92
 
 
93
 
It includes fixes from previous stable releases and address some issues with
94
 
the test suite.
95
 
 
96
 
 
97
 
External Compatibility Breaks
98
 
*****************************
99
 
 
100
 
.. These may require users to change the way they use Bazaar.
101
 
 
102
 
New Features
103
 
************
104
 
 
105
 
.. New commands, options, etc that users may wish to try out.
106
 
 
107
 
Improvements
108
 
************
109
 
 
110
 
.. Improvements to existing commands, especially improved performance 
111
 
   or memory usage, or better results.
112
 
 
113
 
Bug Fixes
114
 
*********
115
 
 
116
 
.. Fixes for situations where bzr would previously crash or give incorrect
117
 
   or undesirable results.
118
 
 
119
 
* ``config.LocationMatcher`` properly excludes unrelated sections.
120
 
  (Vincent Ladeuil, #829237)
121
 
 
122
 
* ``dirstate.fdatasync`` and ``repository.fdatasync`` can now properly be
123
 
  disabled. (Vincent Ladeuil, #824513)
124
 
 
125
 
* Disable ``os.fsync`` and ``os.fdatasync`` by default when running
126
 
  ``bzr selftest``. You can use ``--sync`` to re-enable them.
127
 
  (John Arbash Meinel, #837293)
128
 
 
129
 
* Fix i18n use when no environment variables are set. (Jelmer Vernooij, #810701)
130
 
 
131
 
* Avoid UnicodeDecode error when reporting EINVAL from transports.
132
 
  (IWATA Hidetaka, #829237)
133
 
 
134
 
Documentation
135
 
*************
136
 
 
137
 
.. Improved or updated documentation.
138
 
 
139
 
* Corrected documentation for BZR_PROGRESS_BAR. 
140
 
  (Dennis Benzinger, #735417)
141
 
 
142
 
API Changes
143
 
***********
144
 
 
145
 
.. Changes that may require updates in plugins or other code that uses
146
 
   bzrlib.
147
 
 
148
 
Internals
149
 
*********
150
 
 
151
 
.. Major internal changes, unlikely to be visible to users or plugin 
152
 
   developers, but interesting for bzr developers.
153
 
 
154
 
Testing
155
 
*******
156
 
 
157
 
.. Fixes and changes that are only relevant to bzr's test framework and 
158
 
   suite.  This can include new facilities for writing tests, fixes to 
159
 
   spurious test failures and changes to the way things should be tested.
160
 
 
161
 
* The test suite should now be able to run under weird environments where
162
 
  ``/etc/passwd`` doesn't contain the ``uid`` for the user running selftest
163
 
  or where ``fakeroot`` is used but ``/root`` is inacessible.
164
 
  (Vincent Ladeuil, #825027)
165
 
 
166
 
bzr 2.4.0
167
 
#########
168
 
 
169
 
:2.4.0: 2011-08-11
170
 
 
171
 
This release marks the start of a new long-term-stable series. From here, we
172
 
will only make bugfix releases on the 2.4 series (2.4.1, etc, and support it
173
 
until February 2013), while 2.5 will become our new development series.
174
 
 
175
 
This is a bugfix and polish release over the 2.3 series, with a large number
176
 
of bugs fixed (>150 for the 2.4 series alone), and some performance
177
 
improvements. Support for python 2.4 and 2.5 has been dropped, many large
178
 
working tree operations have been optimized as well as some stacked branches
179
 
operations.
180
 
 
181
 
Only bugfixes from other stables series have been included since 2.4b5 so
182
 
all known fixed bugs are included here.
183
 
 
184
 
Users are encouraged to upgrade from the other stable series.
185
 
 
186
 
 
187
 
External Compatibility Breaks
188
 
*****************************
189
 
 
190
 
.. These may require users to change the way they use Bazaar.
191
 
 
192
 
New Features
193
 
************
194
 
 
195
 
.. New commands, options, etc that users may wish to try out.
196
 
 
197
 
Improvements
198
 
************
199
 
 
200
 
.. Improvements to existing commands, especially improved performance 
201
 
   or memory usage, or better results.
202
 
 
203
 
Bug Fixes
204
 
*********
205
 
 
206
 
.. Fixes for situations where bzr would previously crash or give incorrect
207
 
   or undesirable results.
208
 
 
209
 
* A call to CHKInventory's filter-method will not result in a
210
 
  DuplicateFileId error, if you move a subfolder and change a file in
211
 
  that subfolder.
212
 
  (Bastian Bowe, #809901)
213
 
 
214
 
* Accessing a packaging branch on Launchpad (eg, ``lp:ubuntu/bzr``) now
215
 
  checks to see if the most recent published source package version for
216
 
  that project is present in the branch tags. This should help developers
217
 
  trust whether the packaging branch is up-to-date and can be used for new
218
 
  changes. The level of verbosity is controlled by the config item
219
 
  ``launchpad.packaging_verbosity``. It can be set to one of
220
 
 
221
 
  off
222
 
    disable all checks
223
 
 
224
 
 
225
 
  minimal
226
 
    only display if the branch is out-of-date
227
 
 
228
 
  short
229
 
    also display single-line up-to-date and missing,
230
 
 
231
 
 
232
 
  all
233
 
    (default) display multi-line content for all states
234
 
 
235
 
 
236
 
  (John Arbash Meinel, #609187, #812928)
237
 
 
238
 
* Cope with not all Python versions having a ``clear`` method on
239
 
  ``TestCase._type_equality_funcs``.
240
 
  (Martin [gz], Jelmer Vernooij, #809048)
241
 
 
242
 
* Fetching tags when fetching the tip revision of a branch is now
243
 
  controlled by the config setting ``branch.fetch_tags``. The behavior has
244
 
  been reverted to 2.3's not-fetching tagged revisions by default.
245
 
  (John Arbash Meinel, #771184)
246
 
 
247
 
* The fix for bug #513709 caused us to open a new connection when
248
 
  switching a lightweight checkout that was pointing at a bound branch.
249
 
  This isn't necessary because we know the master URL without opening it,
250
 
  avoiding an extra SSH connection, etc.
251
 
  (John Arbash Meinel, #812285)
252
 
 
253
 
 
254
 
Documentation
255
 
*************
256
 
 
257
 
.. Improved or updated documentation.
258
 
 
259
 
API Changes
260
 
***********
261
 
 
262
 
.. Changes that may require updates in plugins or other code that uses
263
 
   bzrlib.
264
 
 
265
 
Internals
266
 
*********
267
 
 
268
 
.. Major internal changes, unlikely to be visible to users or plugin 
269
 
   developers, but interesting for bzr developers.
270
 
 
271
 
Testing
272
 
*******
273
 
 
274
 
.. Fixes and changes that are only relevant to bzr's test framework and 
275
 
   suite.  This can include new facilities for writing tests, fixes to 
276
 
   spurious test failures and changes to the way things should be tested.
277
 
 
278
 
* `BranchBuilder.build_snapshot` now supports a "flush" action.  This
279
 
  cleanly and reliably allows tests using `BranchBuilder` to construct
280
 
  branches that e.g. rename files out of a directory and unversion that
281
 
  directory in the same revision.  Previously some changes were impossible
282
 
  due to the order that `build_snapshot` performs its actions.
283
 
  (Andrew Bennetts)
284
 
 
285
 
* `TestCaseWithMemoryTransport` is faster now: `_check_safety_net` now
286
 
  just compares the bytes in the dirstate file to its pristine state,
287
 
  rather than opening the WorkingTree and calling ``last_revision()``.
288
 
  This reduces the overall test suite time by about 10% on my laptop.
289
 
  (Andrew Bennetts)
290
 
 
291
 
 
292
 
bzr 2.4b5
293
 
#########
294
 
 
295
 
:2.4b5: 2011-07-07
296
 
 
297
 
This is the fifth (and last) beta of the 2.4 series leading to
298
 
2.4.0 release in August 2011. Beta releases are suitable for
299
 
everyday use but may cause some incompatibilities with plugins.
300
 
 
301
 
This release includes all bug fixed in previous series known at
302
 
the time of this release.
303
 
 
304
 
External Compatibility Breaks
305
 
*****************************
306
 
 
307
 
None.
308
 
 
309
 
New Features
310
 
************
311
 
 
312
 
* New command ``verify-signatures`` to check if all commits or specified commits
313
 
  have digital signatures from trusted keys.  Requires python-gpgme to be
314
 
  installed.
315
 
 
316
 
* New option ``--signatures`` for ``bzr log`` to display digital signature
317
 
  verification results for each commit.
318
 
 
319
 
* Config option acceptable_keys to list which GPG keys are verified as trusted.
320
 
 
321
 
* Config option validate_signatures_in_log to always show signatures in 
322
 
  ``bzr log``.
323
 
 
324
 
Improvements
325
 
************
326
 
 
327
 
* ``Branch.open`` is now about 3x faster (about 2ms instead of 6.5ms).
328
 
  (Andrew Bennetts).
329
 
 
330
 
* Pack, dirstate, and index files are synced to persistent storage if 
331
 
  possible when writing finishes, to reduce the risk of problems caused by
332
 
  a machine crash or similar problem.  This can be turned off through the
333
 
  ``dirstate.fdatasync`` and ``repository.fdatasync`` options, which can
334
 
  be set in ``locations.conf`` or ``bazaar.conf``.  (Martin Pool,
335
 
  #343427)
336
 
 
337
 
Bug Fixes
338
 
*********
339
 
 
340
 
* Display a proper error message when a config file content cannot be
341
 
  decoded as UTF-8 or when it cannot be parsed.
342
 
  (Vincent Ladeuil, #502060, #688677, #797246)
343
 
 
344
 
* Generate a single conflict (instead of two) when merging a branch
345
 
  modifying and renaming a file in a branch that deleted it (or vice-versa).
346
 
  (Vincent Ladeuil, #688101)
347
 
 
348
 
* Give a more helpful message when the bzr executable doesn't match the
349
 
  library.  (This typically happens because of a misconfigured PYTHONPATH
350
 
  or half-installed bzr.)  
351
 
  (Martin Pool, #804553)
352
 
 
353
 
* Properly load utf8-encoded config files. (Vincent Ladeuil, #799212)
354
 
 
355
 
* ``GraphThunkIdsToKeys.merge_sort`` now properly returns
356
 
  keys rather than ids. (Jelmer Vernooij, #799677)
357
 
 
358
 
* ``TreeTransformBase.fixup_new_roots`` can now check that a tree root
359
 
  is present. (Jelmer Vernooij, #801257)
360
 
 
361
 
API Changes
362
 
***********
363
 
 
364
 
* New attributes ``WorkingTreeFormat.supports_versioned_directories`` and
365
 
  ``RepositoryFormat.supports_versioned_directories``.
366
 
  (Jelmer Vernooij, #765815)
367
 
 
368
 
* The "revno" field type when using the python version-info format is now
369
 
  a string (to handle dotted revnos) (Benoît Pierre, #796259)
370
 
 
371
 
Internals
372
 
*********
373
 
 
374
 
* Start implementing localization, starting with command help text (but not
375
 
  the command options themselves). This will allow bootstrapping the bzr
376
 
  internationalization process. (Inada Naoki)
377
 
 
378
 
Testing
379
 
*******
380
 
 
381
 
* Fix test failures when running as a homeless user (debian buildd). Tests
382
 
  leaking into ``${HOME}/.bzr.log`` should be detected properly now.
383
 
  (Vincent Ladeuil, #798698)
384
 
 
385
 
bzr 2.4b4
386
 
#########
387
 
 
388
 
:2.4b4: 2011-06-16
389
 
 
390
 
This is the fourth beta of the 2.4 series, leading to a 2.4.0 release in
391
 
August 2011. Beta releases are suitable for everyday use but may cause some
392
 
incompatibilities with plugins.
393
 
 
394
 
This release includes all bug fixed in previous series known at the time of
395
 
this release.
396
 
 
397
 
 
398
 
External Compatibility Breaks
399
 
*****************************
400
 
 
401
 
.. These may require users to change the way they use Bazaar.
402
 
 
403
 
* Do not treat configuration option 'check_signatures = require' as if
404
 
  it were 'create_signatures = always' (Jonathan Riddell)
405
 
 
406
 
New Features
407
 
************
408
 
 
409
 
.. New commands, options, etc that users may wish to try out.
410
 
 
411
 
* Hooks have been added for config stacks: ``get``, ``set`` and ``remove``
412
 
  are called when an option is respectively read, modified or deleted. Also
413
 
  added ``load`` and ``save`` hooks for config stores, called when the
414
 
  stores are loaded or saved.  (Vincent Ladeuil)
415
 
 
416
 
* New hook server_exception in bzrlib.smart.server to catch any
417
 
  exception caused while running bzr serve.
418
 
  (Jonathan Riddell, #274578)
419
 
 
420
 
* New hook set_commit_message in bzrlib.msgeditor to set a commit message
421
 
  and revision properties.  (Jonathan Riddell, #274578)
422
 
 
423
 
* Support ``-S`` as an alias for ``--short`` for the ``log`` and
424
 
  ``missing`` commands. (Martin von Gagern, #38655)
425
 
 
426
 
Improvements
427
 
************
428
 
 
429
 
.. Improvements to existing commands, especially improved performance 
430
 
   or memory usage, or better results.
431
 
 
432
 
* ``bzr annotate`` can be run without setting whoami data first.
433
 
  (Jonathan Riddell, #667408)
434
 
 
435
 
Bug Fixes
436
 
*********
437
 
 
438
 
.. Fixes for situations where bzr would previously crash or give incorrect
439
 
   or undesirable results.
440
 
 
441
 
* Bazaar can now detect when a lock file is held by a dead process
442
 
  originating from the same machine, and steal the lock after printing a
443
 
  message to the user.  This is off by default, for safety, but can be
444
 
  turned on by setting the configuration variable ``locks.steal_dead`` to
445
 
  ``True``.
446
 
  (Martin Pool, #220464)
447
 
 
448
 
* ``bzr version-info`` now works when the tree is on a dotted revno.
449
 
  (Benoît Pierre, #796259)
450
 
 
451
 
* Credentials in the log output produced by ``-Dhttp`` are masked so users
452
 
  can more freely post them in bug reports. (Vincent Ladeuil, #723074)
453
 
 
454
 
* Fix a race condition for ``server_started`` hooks leading to a spurious
455
 
  test failure. (Vincent Ladeuil, #789167)
456
 
 
457
 
* Fix exporting subdirectory with ``--per-file-timestamps``.
458
 
  (Szilveszter Farkas, #795557)
459
 
 
460
 
* Handle files that get created but don't get used during TreeTransform.
461
 
  ``open()`` can create a file, and still raise an exception before it
462
 
  returns. So anything we might have created, make sure we destroy during
463
 
  ``finalize()``. (Martin [gz], #597686)
464
 
 
465
 
* ``pack_repo`` now uses ``Transport.move`` instead of
466
 
  ``Transport.rename``, deleting any existing targets even on SFTP.
467
 
  (Martin von Gagern, #421776)
468
 
 
469
 
* Pass the ``build_mo`` command to the rest of the setup() calls in
470
 
  setup.py. The ``bdist_wininst`` and ``py2exe`` code paths were failing
471
 
  because ``build_mo`` became a required step that they didn't know about.
472
 
  (John Arbash Meinel, #787122)
473
 
 
474
 
* Preserve existing ``root-id`` when merging an unrelated branch.
475
 
  (Aaron Bentley, #806356)
476
 
 
477
 
* Properly avoid re-adding a file after it changes case on CICP
478
 
  filesystems. (John Arbash Meinel, #798130)
479
 
 
480
 
* Reports the original error when an InvalidHttpResponse exception is
481
 
  encountered to facilitate debug. (Vincent Ladeuil, #788530)
482
 
 
483
 
* Reports a non-existent file error when trying to merge in a file
484
 
  that does not exist. (Jonathan Riddell, #330063)
485
 
 
486
 
* ``UIFactory.prompt``, ``UIFactory.get_username``,
487
 
  ``UIFactory.get_password`` and ``UIFactory.get_boolean`` now require a
488
 
  unicode prompt to be passed in. (Jelmer Vernooij, #592083)
489
 
 
490
 
* Support merging into the empty tree. (Aaron Bentley, #595328)
491
 
 
492
 
Documentation
493
 
*************
494
 
 
495
 
.. Improved or updated documentation.
496
 
 
497
 
* Improve documentation of ``bzr merge --force``.
498
 
  (Neil Martinsen-Burrell, #767307)
499
 
 
500
 
* Make docs for configuration options for digital signatures match 
501
 
  reality. (Jonathan Riddell)
502
 
 
503
 
* Add user-guide page on GPG signatures. (Jonathan Riddell)
504
 
 
505
 
API Changes
506
 
***********
507
 
 
508
 
.. Changes that may require updates in plugins or other code that uses
509
 
   bzrlib.
510
 
 
511
 
* Checking for a file id in a `Tree` or `Inventory` using ``in`` is now
512
 
  deprecated.  Instead, use `has_id`.
513
 
  (Martin Pool)
514
 
 
515
 
* Exporters are now all exposed as generators, rather than as single-call
516
 
  functions, so that calling code can take stream the output.
517
 
  (Xaav, Martin Pool)
518
 
 
519
 
* Information about held lockdir locks returned from eg `LockDir.peek` is
520
 
  now represented as a `LockHeldInfo` object, rather than a plain
521
 
  Python dict.
522
 
  (Martin Pool)
523
 
 
524
 
* Remove `file_status` function.
525
 
  (Martin Pool)
526
 
 
527
 
* ``Repository.iter_reverse_revision_history`` is now deprecated.
528
 
  Use ``Graph.iter_lefthand_ancestry`` instead.
529
 
  (Jelmer Vernooij, #739481)
530
 
 
531
 
* ``Repository.get_ancestry`` has been deprecated. Use
532
 
  ``Graph.iter_ancestry`` instead.
533
 
  (Jelmer Vernooij, #784511)
534
 
 
535
 
Internals
536
 
*********
537
 
 
538
 
.. Major internal changes, unlikely to be visible to users or plugin 
539
 
   developers, but interesting for bzr developers.
540
 
 
541
 
* ``tools/check-newsbugs.py`` accepts a ``--browser`` option to open
542
 
  corresponding launchpad pages in a browser. (Vincent Ladeuil)
543
 
 
544
 
Testing
545
 
*******
546
 
 
547
 
.. Fixes and changes that are only relevant to bzr's test framework and 
548
 
   suite.  This can include new facilities for writing tests, fixes to 
549
 
   spurious test failures and changes to the way things should be tested.
550
 
 
551
 
* A `ImportTariffTestCase` base class has been added in
552
 
  ``bzrlib.tests.test_import_tariff``, which can be used for import tariff
553
 
  tests in plugins. (Jelmer Vernooij, #793465)
554
 
 
555
 
* Fix deadlock in `TestImportTariffs.test_simple_serve` when stderr gets
556
 
  more output than fits in the default buffer.  This was happening on the
557
 
  Windows buildslave, and could easily happen in other circumstances where
558
 
  the default OS buffer size for pipes is small or the ``python -v``
559
 
  output is large.  (Andrew Bennetts, #784802)
560
 
 
561
 
* Fix spurious test failure on OSX for WorkingTreeFormat2.
562
 
  (Vincent Ladeuil, #787942)
563
 
 
564
 
* Re-target ``bb.test_merge.TestMerge.test_merge_reversed_revision_range``
565
 
  and rewrite it as a parametrized test to avoid unrelated failures.
566
 
  (Vincent Ladeuil, #795456)
567
 
 
568
 
* Show log file contents from subprocesses started by
569
 
  `start_bzr_subprocess` in test failure details.  This may help diagnose
570
 
  strange hangs and failures involving subprocesses.  (Andrew Bennetts)
571
 
 
572
 
* Skip ``utextwrap`` tests when ``sphinx`` breaks text_wrap by an hostile
573
 
  monkey-patch to textwrap.TextWrapper.wordsep_re.
574
 
  (Vincent Ladeuil, #785098)
575
 
 
576
 
* Multiple ``selftest --exclude`` options are now combined instead of
577
 
  overriding each other. (Vincent Ladeuil, #746991)
578
 
 
579
 
* Restore some ``FTPTransport`` test coverage by allowing ``pyftpdlib
580
 
  0.6.0`` to be used. Also restore ``medusa`` support while leaving it
581
 
  disabled to make it easier to use if/when we can in the future.
582
 
  (Vincent Ladeuil, #781140)
583
 
 
584
 
* `TestImportTariffs` no longer uses the real ``$HOME``.  This prevents it
585
 
  from polluting ``$HOME/.bzr.log`` or being accidentally influenced by
586
 
  user configuration such as aliases.  It still runs with all the user's
587
 
  plugins enabled, as intended.
588
 
  (Vincent Ladeuil, Andrew Bennetts, #789505)
589
 
 
590
 
 
591
 
bzr 2.4b3
592
 
#########
593
 
 
594
 
:2.4b3: 2011-05-26
595
 
 
596
 
This is the third beta of the 2.4 series, leading to a 2.4.0 release in
597
 
August 2011. Beta releases are suitable for everyday use but may cause some
598
 
incompatibilities with plugins.
599
 
 
600
 
This release includes all bug fixed in previous series known at the time of
601
 
this release.
602
 
 
603
 
 
604
 
External Compatibility Breaks
605
 
*****************************
606
 
 
607
 
.. These may require users to change the way they use Bazaar.
608
 
 
609
 
* ``bzr-2.4`` has officially dropped support for python2.4 and python2.5.
610
 
  We will continue to maintain ``bzr-2.3`` for people who still need to
611
 
  use those versions of python. (John Arbash Meinel)
612
 
 
613
 
New Features
614
 
************
615
 
 
616
 
.. New commands, options, etc that users may wish to try out.
617
 
 
618
 
* The text compressor used for 2a repositories now has a tweakable
619
 
  parameter that can be set in bazaar.conf.
620
 
  ``bzr.groupcompress.max_entries_per_source`` default of 65536.
621
 
  When doing compression, we build up an index of locations to match
622
 
  against. Setting this higher will result in slightly better compression,
623
 
  at a cost of more memory. Note that a value of 65k represents fully
624
 
  sampling a 1MB file. So this only has an effect when compressing texts
625
 
  larger than N*16 bytes. (John Arbash Meinel, #602614)
626
 
 
627
 
Improvements
628
 
************
629
 
 
630
 
.. Improvements to existing commands, especially improved performance 
631
 
   or memory usage, or better results.
632
 
 
633
 
* ``bzr branch --stacked`` from a smart server uses the network a little
634
 
  more efficiently.  For a simple branch it reduces the number of
635
 
  round-trips by about 20%.  (Andrew Bennetts)
636
 
 
637
 
* ``bzr log --line`` scales the width of the author field with the size of
638
 
  the line.  This means that the full author name is shown when the
639
 
  environment variable BZR_COLUMNS=0.  (Neil Martinsen-Burrell)
640
 
 
641
 
* ``bzr pull`` now properly triggers the fast
642
 
  ``CHKInventory.iter_changes`` rather than the slow generic
643
 
  inter-Inventory changes. It used to use a ``DirStateRevisionTree`` as
644
 
  one of the source trees, which is faster when we have to read the whole
645
 
  inventory anyway, but much slower when we can get just the delta out of
646
 
  the repository. On a 70k record tree, this changes ``bzr pull`` from 28s
647
 
  down to 17s. (John Arbash Meinel, #780677)
648
 
 
649
 
* Slightly reduced memory consumption when fetching into a 2a repository
650
 
  by reusing existing caching a little better.  (Andrew Bennetts)
651
 
 
652
 
* Speed up ``bzr status`` by a little bit when there are a couple of
653
 
  modified files. We now track how many files we have seen that need
654
 
  updating, and only rewrite the dirstate file if enough of them have
655
 
  changed. The default is 10, and can be overridden by setting the branch
656
 
  option "``bzr.workingtree.worth_saving_limit``".
657
 
  (Ian Clatworthy, John Arbash Meinel, #380202)
658
 
 
659
 
* Speed up ``bzr uncommit``. Instead of resetting the dirstate from
660
 
  scratch, use ``update_basis_by_delta``, computing the delta from the
661
 
  repository. (John Arbash Meinel, #780544)
662
 
 
663
 
Bug Fixes
664
 
*********
665
 
 
666
 
.. Fixes for situations where bzr would previously crash or give incorrect
667
 
   or undesirable results.
668
 
 
669
 
* All Tree types can now be exported as tar.*, zip or directories.
670
 
  (Aaron Bentley)
671
 
  
672
 
* ``bzr merge --no-remember location`` never sets ``submit_branch``.
673
 
  (Vincent Ladeuil, #782169)
674
 
 
675
 
* ``bzr pull --no-remember location`` never sets
676
 
  ``parent_location``.  ``bzr push --no-remember location`` never
677
 
  sets ``push_location``.  ``bzr send --no-remember
678
 
  submit_location public_location`` never sets ``submit_branch``
679
 
  nor ``public_branch``.  (Vincent Ladeuil)
680
 
 
681
 
* Conflicts involving non-ascii filenames are now properly reported rather
682
 
  than failing with a UnicodeEncodeError. (Martin [GZ], #686161)
683
 
 
684
 
* Correct parent is now set when using 'switch -b' with bound branches.
685
 
  (A. S. Budden, #513709)
686
 
 
687
 
* Fix `bzr plugins` regression in bzr 2.4 which resulted in a traceback
688
 
  from writelines on ckj terminals. (Martin [GZ], #754082)
689
 
 
690
 
* ``WT.inventory`` and ``WT.iter_entries_by_dir()`` was not correctly
691
 
  reporting subdirectories that were tree references (in formats that
692
 
  supported them). (John Arbash Meinel, #764677)
693
 
 
694
 
* Merging into empty branches now gives an error as this is currently
695
 
  not supported. (Jonathan Riddell, #242175)
696
 
 
697
 
* Do not show exception to user on pointless commit error.
698
 
  (Jonathan Riddell #317357)
699
 
 
700
 
* ``WT.update_basis_by_delta`` no longer requires that the deltas match
701
 
  the current WT state. This allows ``update_basis_by_delta`` to be used
702
 
  by more commands than just commit. Updating with a delta allows us to
703
 
  not load the whole inventory, which can take 10+s with large trees.
704
 
  (Jonathan Riddell, John Arbash Meinel, #781168)
705
 
 
706
 
* ``bzr mv --after old_name new_name`` now works if "new_name" is newly
707
 
  added. (Benoît Pierre)
708
 
 
709
 
 
710
 
Documentation
711
 
*************
712
 
 
713
 
.. Improved or updated documentation.
714
 
 
715
 
* Restore the workaround for option names including dots (--1.14) which was
716
 
  disabled when we stopped listing --1.9 as a format.
717
 
  (Vincent Ladeuil, #782289)
718
 
 
719
 
API Changes
720
 
***********
721
 
 
722
 
.. Changes that may require updates in plugins or other code that uses
723
 
   bzrlib.
724
 
 
725
 
* ``annotate_file`` has been deprecated in favor of
726
 
  ``annotate_file_revision_tree``. (Jelmer Vernooij, #775598)
727
 
 
728
 
* ``Branch.fetch`` now takes an optional ``limit`` argument.
729
 
  (Andrew Bennetts, Jelmer Vernooij, #750175)
730
 
 
731
 
* ``Inter.get`` now raises ``NoCompatibleInter`` if there are no
732
 
  compatible optimisers rather than an instance of the class it is called
733
 
  on. (Jelmer Vernooij)
734
 
 
735
 
* ``Branch.push`` now takes a ``lossy`` argument.
736
 
  ``Branch.lossy_push`` has been removed.
737
 
  (Jelmer Vernooij)
738
 
 
739
 
* New method ``Repository.get_file_graph`` which can return the
740
 
  per-file revision graph. (Jelmer Vernooij, #775578)
741
 
 
742
 
* The default implementation of ``Branch`` is now oriented to
743
 
  storing the branch tip. Branch implementations which store the full
744
 
  history should now subclass ``FullHistoryBzrBranch``.
745
 
  ``Branch._last_revision_info`` has been renamed to
746
 
  ``Branch._read_last_revision_info`` (Jelmer Vernooij)
747
 
 
748
 
* ``Tree.__iter__`` has been deprecated; use ``Tree.all_file_ids``
749
 
  instead.  (Jelmer Vernooij)
750
 
 
751
 
* ``Tree.get_symlink_target`` now takes an optional ``path``
752
 
  argument. (Jelmer Vernooij)
753
 
 
754
 
Internals
755
 
*********
756
 
 
757
 
.. Major internal changes, unlikely to be visible to users or plugin 
758
 
   developers, but interesting for bzr developers.
759
 
 
760
 
* ``MutableTree.smart_add`` now uses inventory deltas.
761
 
  (Jelmer Vernooij, #146165)
762
 
 
763
 
* Removed ``bzrlib.branch._run_with_write_locked_target`` as
764
 
  ``bzrlib.cleanup`` provides the same functionality in a more general
765
 
  way.  (Andrew Bennetts)
766
 
 
767
 
Testing
768
 
*******
769
 
 
770
 
.. Fixes and changes that are only relevant to bzr's test framework and 
771
 
   suite.  This can include new facilities for writing tests, fixes to 
772
 
   spurious test failures and changes to the way things should be tested.
773
 
 
774
 
* A test that was expected to fail but passes instead now counts as a failure
775
 
  catching up with new testtools and subunit handling. (Martin [GZ], #654474)
776
 
 
777
 
* Make it easier for plugins to reuse the per_workingtree scenarios by
778
 
  restoring the wt_scenarios helper that was accidentally deleted.
779
 
  (Vincent Ladeuil, #783472)
780
 
 
781
 
* Removed ``test_breakin`` tests that were excessively prone to hanging,
782
 
  did not work on Wine, and partly already disabled.
783
 
  (Martin Pool, #408814, #746985)
784
 
 
785
 
* Windows locations are different and should be tested accordingly.
786
 
  (Vincent Ladeuil, #788131)
787
 
 
788
8
bzr 2.4b2
789
9
#########
790
10
 
791
 
:2.4b2: 2011-04-28
792
 
 
793
 
This is the second beta of the 2.4 series, leading to a 2.4.0 release in
794
 
August 2011. Beta releases are suitable for everyday use but may cause some
795
 
incompatibilities with plugins.
796
 
 
797
 
This release includes all bug fixed in previous series known at the time of
798
 
this release.
799
 
 
 
11
:2.4b2: NOT RELEASED YET
800
12
 
801
13
External Compatibility Breaks
802
14
*****************************
803
15
 
804
16
.. These may require users to change the way they use Bazaar.
805
17
 
806
 
* Two command synonyms for ``bzr branch`` have been deprecated, to avoid
807
 
  confusion and to allow the names to later be reused.  The removed names
808
 
  are: ``get`` and ``clone``.   (Martin Pool, #506265)
809
 
 
810
18
New Features
811
19
************
812
20
 
813
21
.. New commands, options, etc that users may wish to try out.
814
22
 
815
 
* ``bzr commit`` now supports a ``--lossy`` argument that can be used
816
 
  to discard any data that can not be natively represented when committing
817
 
  to a foreign VCS. (Jelmer Vernooij, #587721)
818
 
 
819
23
Improvements
820
24
************
821
25
 
822
26
.. Improvements to existing commands, especially improved performance 
823
27
   or memory usage, or better results.
824
28
 
825
 
* ``bzr merge`` in large trees is now significantly faster. On a 70k entry
826
 
  tree, the time went from ~3min down to 30s. This also effects ``bzr pull``
827
 
  and ``bzr update`` since they use the same merge logic to update the
828
 
  WorkingTree.  (John Arbash Meinel, #759091)
829
 
 
830
 
* ``bzr revert`` now properly uses ``bzr status``'s optimized
831
 
  ``iter_changes``. This can be a significant performance difference (33s
832
 
  to 5s on large trees). (John Arbash Meinel, #759096)
 
29
* When building a new WorkingTree (such as during ``bzr co`` or
 
30
  ``bzr branch``) we now properly store the stat and hash of files that
 
31
  are old enough. This saves a fair amount of time on the first
 
32
  ``bzr status`` (on a 500MB tree, it saves about 30+s).
 
33
  (John Arbash Meinel, #740932)
833
34
 
834
35
* Resolve ``lp:FOO`` urls locally rather than doing an XMLRPC request if
835
36
  the user has done ``bzr launchpad-login``. The bzr+ssh URLs were already
841
42
  call as much as 2s from Sydney. You can test the local logic by using
842
43
  ``-Dlaunchpad``.  (John Arbash Meinel, #397739)
843
44
 
844
 
* When building a new WorkingTree (such as during ``bzr co`` or
845
 
  ``bzr branch``) we now properly store the stat and hash of files that
846
 
  are old enough. This saves a fair amount of time on the first
847
 
  ``bzr status`` (on a 500MB tree, it saves about 30+s).
848
 
  (John Arbash Meinel, #740932)
849
 
 
850
 
 
851
45
Bug Fixes
852
46
*********
853
47
 
854
48
.. Fixes for situations where bzr would previously crash or give incorrect
855
49
   or undesirable results.
856
50
 
857
 
* Arguments that can't be decoded to unicode in the current posix locale give
858
 
  a clearer error message without a traceback. (Martin [gz], #745712)
859
 
 
860
51
* ``bzrlib.log._DEFAULT_REQUEST_PARAMS`` is no longer accidentally
861
52
  mutated by ``bzrlib.log._apply_log_request_defaults``.  In practice
862
53
  these default values aren't relied on very often so this probably
865
56
* ``bzr log`` now works on revisions which are not in the current branch.
866
57
  (Matt Giuca, #241998)
867
58
 
868
 
* Don't rewrite the dirstate file when non-interesting changes have
869
 
  occurred. This can significantly improve 'bzr status' times when there
870
 
  are only small changes to a large tree.
871
 
  (Ian Clatworthy, John Arbash Meinel, #380202)
872
 
 
873
59
* Lazy hooks are now reset between test runs. (Jelmer Vernooij, #745566)
874
60
 
875
 
* ``bzrlib.merge.Merge`` now calls ``iter_changes`` without
876
 
  ``include_unversioned=True``. This makes it significantly faster in many
877
 
  cases, because it only looks at modified files, rather than building
878
 
  information about all files. This can cause failures in other
879
 
  TreeTransform code, because it had been expecting to know the names of
880
 
  things which had not changed (such as parent directories). All cases we
881
 
  know about so far have been fixed, but there may be fallout for edge
882
 
  cases that we are missing. (John Arbash Meinel, #759091)
883
 
 
884
 
* ``SFTPTransport`` is more pro-active about closing file-handles. This
885
 
  reduces the chance of having threads fail from async requests while
886
 
  running the test suite. (John Arbash Meinel, #656170)
887
 
 
888
61
* Standalone bzr.exe installation on Windows: user can put additional python 
889
62
  libraries into ``site-packages`` subdirectory of the installation directory,
890
63
  this might be required for "installing" extra dependencies for some plugins.
891
64
  (Alexander Belchenko, #743256)
892
65
 
893
 
* ``transform.revert()`` has been updated to use
894
 
  ``wt.iter_changes(basis_tree)`` rather than
895
 
  ``basis_tree.iter_changes(wt)``. This allows the optimized code path to
896
 
  kick in, improving ``bzr revert`` times significantly (33s to 4s on
897
 
  large trees, 0.7s to 0.3s on small trees.) (John Arbash Meinel, #759096)
898
 
 
899
66
* ``TreeTransform.create_file/new_file`` can now take an optional ``sha1``
900
67
  parameter. If supplied, when the transform is applied, it will then call
901
68
  ``self._tree._observed_sha1`` for those files. This lets us update the
919
86
.. Changes that may require updates in plugins or other code that uses
920
87
   bzrlib.
921
88
 
922
 
* ``Branch.update_revisions`` has been made private and should no
923
 
  longer be used by external users. Use ``Branch.pull`` or ``Branch.push``
924
 
  instead. (Jelmer Vernooij, #771765)
925
 
 
926
 
* Commands now have an `invoked_as` attribute, showing the name under
927
 
  which they were called before alias expansion.
928
 
  (Martin Pool)
929
 
 
930
89
* ``Hooks.create_hook`` is now deprecated in favour of ``Hooks.add_hook``.
931
90
  (Jelmer Vernooij)
932
91
 
936
95
  mysteriously silent.)
937
96
  (Martin Pool)
938
97
 
939
 
* Inventory-specific functionality has been split out of ``Tree`` into
940
 
  a new ``InventoryTree`` class. Tree instances no longer
941
 
  necessarily provide an ``inventory`` attribute. (Jelmer Vernooij)
942
 
 
943
 
* Inventory-specific functionality has been split out of ``RevisionTree``
944
 
  into a new ``InventoryRevisionTree`` class. RevisionTree instances no
945
 
  longer necessarily provide an ``inventory`` attribute. (Jelmer Vernooij)
946
 
 
947
98
* New method ``Hooks.uninstall_named_hook``. (Jelmer Vernooij, #301472)
948
99
 
949
100
* ``revision_graph_can_have_wrong_parents`` is now an attribute
950
101
  on ``RepositoryFormat`` rather than a method on ``Repository``.
951
102
  (Jelmer Vernooij)
952
103
 
953
 
* ``Testament`` now takes a ``tree`` rather than an
954
 
  ``inventory``. (Jelmer Vernooij, #762608)
955
 
 
956
 
* ``TestCase.failUnlessExists`` and ``failIfExists`` are deprecated in
957
 
  favour of ``assertPathExists`` and ``assertPathDoesNotExist`` 
958
 
  respectively.
959
 
  (Martin Pool)
960
 
 
961
104
* The ``revno`` parameter of ``log.LogRevision`` may now be None,
962
105
  representing a revision which is not in the current branch.
963
106
  (Matt Giuca, #241998)
966
109
  from ``bzrlib.repofmt.pack_repo`` to
967
110
  ``bzrlib.repofmt.knitpack_repo``. (Jelmer Vernooij)
968
111
 
969
 
* ``RevisionTree`` now has a new method ``get_file_revision``.
970
 
  (Jelmer Vernooij)
971
 
 
972
 
* ``WorkingTree`` no longer provides an ``inventory``. Instead,
973
 
  all inventory-related functionality is now on the subclass
974
 
  ``InventoryWorkingTree`` that all native Bazaar working tree
975
 
  implementations derive from. (Jelmer Vernooij)
976
 
 
977
112
Internals
978
113
*********
979
114
 
997
132
   suite.  This can include new facilities for writing tests, fixes to 
998
133
   spurious test failures and changes to the way things should be tested.
999
134
 
1000
 
* Stop using `failIf`, `failUnless`, `failIfEqual`, etc, that give
1001
 
  `PendingDeprecationWarnings` on Python2.7. 
1002
 
  (Martin Pool, #760435)
1003
 
 
1004
135
 
1005
136
bzr 2.4b1
1006
137
#########
1007
138
 
1008
 
:2.4b1: 2011-03-17
 
139
:2.4b1: 2011-04-17
1009
140
 
1010
141
This is the first beta of the 2.4 series, leading up to a 2.4.0
1011
142
release in August 2011.  Beta releases are suitable for everyday use
1074
205
  of CHK data, down to just 150MB.) This has noticeable affects for things
1075
206
  like building checkouts, etc.  (John Arbash Meinel, #737234)
1076
207
 
 
208
 
1077
209
Bug Fixes
1078
210
*********
1079
211
 
1115
247
* ``bzr serve`` no longer crashes when a server_started hook is installed and
1116
248
  IPv6 support is available on the system. (Jelmer Vernooij, #293697)
1117
249
 
1118
 
* ``bzr status`` will not rewrite the dirstate file if it only has
1119
 
  'trivial' changes. (Currently limited to dir updates and newly-added
1120
 
  files changing state.) This saves a bit of time for regular operations.
1121
 
  eg. ``bzr status`` in a 100k tree takes 1.4s to compute the status, but 1s
1122
 
  to re-save the dirstate file. (John Arbash Meinel, #765881)
1123
 
 
1124
250
* ``bzr tags`` will no longer choke on branches with ghost revisions in
1125
251
  their mainline and tags on revisions not in the branch ancestry. 
1126
252
  (Jelmer Vernooij, #397556)
1169
295
  (``bzrlib.branch.format_registry``) rather than using the class
1170
296
  methods on ``BranchFormat``. (Jelmer Vernooij, #714729)
1171
297
 
1172
 
* ``Branch.set_revision_history`` is now deprecated.
1173
 
  (Jelmer Vernooij)
1174
 
 
1175
298
* ``BranchFormat.supports_leaving_lock()`` and
1176
299
  ``RepositoryFormat.supports_leaving_lock`` flags have been added.
1177
300
  (Jelmer Vernooij)
1178
301
 
1179
302
* ``Branch.fetch`` implementations must now accept an optional
1180
 
  ``fetch_tags`` keyword argument. (Andrew Bennetts)
 
303
  ``fetch_spec`` keyword argument. (Andrew Bennetts)
1181
304
 
1182
305
* ``Branch.import_last_revision_info`` is deprecated.  Use the
1183
306
  ``import_last_revision_info_and_tags`` method instead.
1187
310
  ``ControlDir.sprout`` no longer has a default implementation; it now
1188
311
  raises ``NotImplementedError``. (Jelmer Vernooij, #717937)
1189
312
 
1190
 
* ``bzrlib.deprecated_graph`` has been removed. ``bzrlib.graph``
1191
 
  scales better tree and should be used instead.
1192
 
  (Jelmer Vernooij, #733612)
1193
 
 
1194
313
* ``ControlDirFormat.register_format`` has been removed. Instead,
1195
314
  ``Prober`` implementations should now implement a ``known_formats``
1196
315
  method. (Jelmer Vernooij)
1247
366
  (``bzrlib.working_tree.format_registry``) rather than using the class
1248
367
  methods on ``WorkingTreeFormat``. (Jelmer Vernooij, #714730)
1249
368
 
1250
 
* Exporting may now be done with a generator
1251
 
  (``bzrlib.export.get_export_generator``) (Geoff/xaav, #791005)
1252
 
 
1253
369
Internals
1254
370
*********
1255
371
 
1259
375
  by catching them so they can be re-raised in the controlling thread. It's
1260
376
  available in the ``bzrlib.cethread`` module.  (Vincent Ladeuil)
1261
377
 
1262
 
* Correctly propagate malloc failures from diff-delta.c code as MemoryError
 
378
* Correctly propogate malloc failures from diff-delta.c code as MemoryError
1263
379
  so OOM conditions during groupcompress are clearly reported. This entailed a
1264
380
  change to several function signatures. (Martin [gz], #633336)
1265
381