~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-09-01 08:02:42 UTC
  • mfrom: (5390.3.3 faster-revert-593560)
  • Revision ID: pqm@pqm.ubuntu.com-20100901080242-esg62ody4frwmy66
(spiv) Avoid repeatedly calling self.target.all_file_ids() in
 InterTree.iter_changes. (Andrew Bennetts)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
====================
 
1
####################
2
2
Bazaar Release Notes
3
 
====================
4
 
 
 
3
####################
5
4
 
6
5
.. contents:: List of Releases
7
6
   :depth: 1
8
7
 
9
 
In Development
10
 
##############
11
 
 
12
 
Compatibility Breaks
13
 
********************
 
8
bzr 2.3b1
 
9
#########
 
10
 
 
11
:Codename: ???
 
12
:2.3b1: NOT RELEASED YET
 
13
 
 
14
Compatibility Breaks
 
15
********************
 
16
 
 
17
* BzrError subclasses no longer support the name "message" to be used
 
18
  as an argument for __init__ or in _fmt format specification as this
 
19
  breaks in some Python versions. errors.LockError.__init__ argument
 
20
  is now named "msg" instead of earlier "message".
 
21
  (Parth Malwankar, #603461)
 
22
 
 
23
* `decode` parameter to get() method in FtpTransport and GioTransport classes
 
24
  is deprecated. (Alexander Belchenko)
 
25
 
 
26
* `FileInWrongBranch` is deprecated in favour of `PathNotChild` and no
 
27
  longer raised.
 
28
  (Martin Pool)
 
29
 
 
30
* `tree_files` and `internal_tree_files` are now deprecated in favor of
 
31
  `WorkingTree.open_containing_paths`.
 
32
  (Martin Pool)
 
33
 
 
34
* `ControlDirFormat` and  `ControlDir` have been split out of `BzrDirFormat`
 
35
  and `BzrDir`, respectively. `ControlDirFormat`
 
36
  and `ControlDir` should be used as the base classes for new non-.bzr
 
37
  implementations.
 
38
 
 
39
  `BzrDirFormat.register_control_format` has been renamed to
 
40
  `ControlDirFormat.register_format`.
 
41
 
 
42
  `BzrDirFormat.register_server_control_format` has been removed.
 
43
 
 
44
  Probing for control directories is now done by separate objects derived
 
45
  from `bzrlib.controldir.Prober` and registered using
 
46
  `bzrlib.controldir.ControlDirFormat.register_prober` or
 
47
  `bzrlib.controldir.ControlDirFormat.register_server_prober`.
 
48
  `BzrDirFormat.probe_transport` has been moved onto `Prober`.
 
49
 
 
50
  `BzrDirFormat.register_format` has been renamed to 
 
51
  `BzrProber.register_bzrdir_format`.
 
52
  (Jelmer Vernooij)
 
53
 
 
54
* The old ``bzr selftest --benchmark`` option has been removed.
 
55
  <https://launchpad.net/bzr-usertest> is an actively-maintained
 
56
  macrobenchmark suite.
 
57
  (Martin Pool)
 
58
 
 
59
New Features
 
60
************
 
61
 
 
62
* ``bzr break-lock --config [location]`` can now break config files
 
63
  locks. (Vincent Ladeuil, #525571)
 
64
 
 
65
* ``bzrlib.config.LockableConfig`` is a base class for config files that
 
66
  needs to be protected against multiple writers. All methods that
 
67
  change a configuration variable value must be decorated with
 
68
  @needs_write_lock (set_option() for example).
 
69
  (Vincent Ladeuil,  #525571)
 
70
 
 
71
* The ``lp:`` prefix will now use your known username (from
 
72
  ``bzr launchpad-login``) to expand ``~`` to your username.  For example:
 
73
  ``bzr launchpad-login user && bzr push lp:~/project/branch`` will now
 
74
  push to ``lp:~user/project/branch``.  (John Arbash Meinel)
 
75
 
 
76
Bug Fixes
 
77
*********
 
78
 
 
79
* Allow using both --using and --diff-options. 
 
80
  (Matthäus G. Chajdas, #234708)
 
81
 
 
82
* ``bzr add SYMLINK/FILE`` now works properly when the symlink points to a
 
83
  previously-unversioned directory within the tree: the directory is
 
84
  marked versioned too.  
 
85
  (Martin Pool, #192859)
 
86
 
 
87
* ``bzr ignore PATTERNS`` exits with error if a bad pattern is supplied.
 
88
  ``InvalidPattern`` exception error message now shows faulting
 
89
  regular expression.
 
90
  (Parth Malwankar #300062)
 
91
 
 
92
* ``clean-tree`` issues a warning if it is unable to delete a file
 
93
  due to ``errno.EACCES`` instead of exiting with an error on Windows.
 
94
  (Parth Malwankar, #430785)
 
95
 
 
96
* CommitBuilder now uses the committer instead of _config.username to generate
 
97
  the revision-id.  (Aaron Bentley, #614404)
 
98
 
 
99
* Configuration files in ``${BZR_HOME}`` are now protected against
 
100
  concurrent writers by using a lock. (Vincent Ladeuil, #525571)
 
101
 
 
102
* Cope with Microsoft FTP Server and VSFTPd that return reply '250
 
103
  Directory created' when mkdir succeeds.  (Martin Pool, #224373)
 
104
 
 
105
* Decrease peak memory during ``bzr send``. The old code was caching all
 
106
  text content and all inventory strings for all revisions before
 
107
  computing the diffs. Now we only cache as long as there is a child that
 
108
  will need them. Sending 2000 bzr revisions drops from 1.2GB peak to
 
109
  256MB peak. (John Arbash Meinel, #614576)
 
110
 
 
111
* Don't print internal object name when print an invalid revision spec
 
112
  error.  (Neil Martinsen-Burrell, #598701)
 
113
 
 
114
* ``EPIPE`` can be raised during test server shutdown. This happened on
 
115
  gentoo only so far. (Vincent Ladeuil, #627277)
 
116
 
 
117
* Errors occurring during http(s) test server starts should now be
 
118
  handled cleanly. (Vincent Ladeuil, #392402)
 
119
 
 
120
* Fix ``AttributeError on parent.children`` when adding a file under a 
 
121
  directory that was a symlink in the previous commit.
 
122
  (Martin Pool, #192859)
 
123
 
 
124
* Fix spurious paramiko warning on hardy by ensuring that ``selftest``
 
125
  properly remove its warning filter. (Vincent Ladeuil, #625686)
 
126
 
 
127
* ``HTTP/1.1`` test servers now set a ``Content-Length`` header to comply
 
128
  with pedantic ``HTTP/1.1`` clients. (Vincent Ladeuil, #568421)
 
129
 
 
130
* Most of the leaked threads during selftest are now fixed, allowing the
 
131
  full test suite to pass on gentoo.
 
132
  (Vincent Ladeuil, #392127)
 
133
 
 
134
* `PathNotChild` should not give a traceback.
 
135
  (Martin Pool, #98735)
 
136
 
 
137
* ``PQM`` will no longer ignore syntax errors in submissions.
 
138
  (Vincent Ladeuil, #626667)
 
139
 
 
140
* Prevent ``CHKMap.apply_delta`` from generating non-canonical CHK maps,
 
141
  which can result in "missing referenced chk root keys" errors when
 
142
  fetching from repositories with affected revisions.
 
143
  (Andrew Bennetts, #522637)
 
144
 
 
145
* ``Transport.stat`` on a symlink, including a transport pointing directly
 
146
  to a symlink, now returns information about the symlink.
 
147
  (Martin Pool)
 
148
 
 
149
Improvements
 
150
************
 
151
 
 
152
* ``bzr remove`` now just backs up changed files instead of exiting,
 
153
  forcing you to choose to either keep or delete them. Bazaar will now delete
 
154
  the files if they can easily be recovered using revert, otherwise they
 
155
  will be backed up (adding an extention of the form .~#~).
 
156
  (Marius Kruger, #400554)
 
157
 
 
158
* ``bzr revert`` and ``bzr status`` are up to 15% faster on large trees
 
159
  with many changes by not repeatedly building a list of all file-ids.
 
160
  (Andrew Bennetts)
 
161
 
 
162
* Decrease memory consumption when many chk index pages are loaded. (Such
 
163
  as during ``bzr co`` or ``bzr ls -R`` of a large tree.) Often we need to
 
164
  read many chk pages because the individual chk map nodes will be spread
 
165
  randomly. Peak memory for 'bzr ls -R' on a large tree dropped from 396MB
 
166
  down to 247MB, expect even more significant savings on 64-bit platforms.
 
167
  (John Arbash Meinel)
 
168
 
 
169
* ``DirState`` internals use a little bit less memory. For bzr.dev it
 
170
  drops the memory from 1MB down to about 800kB. And replaces a few
 
171
  thousand tuples and sets with StaticTuple.  (John Arbash Meinel)
 
172
 
 
173
* Inventory entries now consume less memory (on 32-bit Ubuntu file entries
 
174
  have dropped from 68 bytes to 40, and directory entries from 120 bytes
 
175
  to 48).  (Andrew Bennetts)
 
176
 
 
177
* When building new working trees, default to reading from the repository
 
178
  rather than the source tree unless explicitly requested. (via
 
179
  ``--files-from`` and ``--hardlink`` for ``bzr branch`` and
 
180
  ``bzr checkout``. Generally, 2a format repositories extract
 
181
  content faster than seeking and reading content from another tree,
 
182
  especially in cold-cache situations. (John Arbash Meinel, #607298)
 
183
 
 
184
Documentation
 
185
*************
 
186
 
 
187
* Added a builder/writer sphinx extension that can generate texinfo files. The
 
188
  generated files are syntactically correct but the info navigation nodes
 
189
  needs more work. (Vincent Ladeuil, #219334)
 
190
 
 
191
* First tests defined for sphinx, including a new bzrlib.tests.features.sphinx
 
192
  to make the tests conditional.
 
193
  (Vincent Ladeuil)
 
194
 
 
195
* Fix a lot of references in the docs to the old http://bazaar-vcs.org to
 
196
  the new http://bazaar.canonical.com or http://wiki.bazaar.canonical.com
 
197
  (John Arbash Meinel, #617503)
 
198
 
 
199
API Changes
 
200
***********
 
201
 
 
202
* Configuration files should now use the ``from_string`` constructor rather
 
203
  than the ``file`` parameter of the ``_get_parser`` method. The later has
 
204
  been deprecated. ``from_string`` also accept a ``save=True`` parameter to
 
205
  have the configuration file immediately written to disk. 
 
206
  (Vincent Ladeuil)
 
207
 
 
208
* ``IniBaseConfig`` objects should now use the ``from_string`` constructor
 
209
  the rather than the ``file`` parameter of the ``_get_parser`` method. The
 
210
  later has been deprecated. (Vincent Ladeuil)
 
211
 
 
212
* InventoryEntry instances now raise AttributeError if you try to assign
 
213
  to attributes that are irrelevant to that kind of entry.  e.g. setting
 
214
  ``symlink_target`` on an InventoryFile will fail.  It is still okay to
 
215
  read those attributes on any kind of InventoryEntry.  The complete list
 
216
  of affected attributes is: ``executable``, ``text_id``, ``text_sha1``,
 
217
  ``text_size`` (only valid for kind == file); ``symlink_target`` (only
 
218
  valid for kind == link); and ``reference_revision`` (only valid for kind
 
219
  == tree-reference).  (Andrew Bennetts)
 
220
 
 
221
* InventoryEntry objects no longer have ``_put_in_tar`` or
 
222
  ``_put_on_disk`` methods.  (Andrew Bennetts)
 
223
 
 
224
* The ``get_filename`` parameter in the ``config.IniBaseConfig``
 
225
  constructor has been deprecated, use the ``file_name`` parameter instead.
 
226
  (Vincent Ladeuil)
 
227
 
 
228
Internals
 
229
*********
 
230
 
 
231
* Remove used and broken code path in ``BranchInitHookParams.__repr__``.
 
232
  (Andrew Bennetts)
 
233
 
 
234
Testing
 
235
*******
 
236
 
 
237
* HTTP test servers will leak less threads (and sockets) and will not hang on
 
238
  AIX anymore. (Vincent Ladeuil, #405745)
 
239
 
 
240
* The way ``bzr selftest --parallel`` generates N partitions of tests to
 
241
  run in parallel has changed.  Instead of splitting the list of tests at
 
242
  N-1 points, it distributes the tests one-by-one into the partitions in a
 
243
  round robin fashion.  This reduces the total time to run the tests in
 
244
  parallel because a series of slow tests in the test suite will be
 
245
  distributed evenly among the parallel test suites, rather than slowing
 
246
  down just one suite.  (Andrew Bennetts)
 
247
 
 
248
 
 
249
bzr 2.2.1
 
250
#########
 
251
 
 
252
:Codename: ??
 
253
:2.2.1: NOT RELEASED YET
 
254
 
 
255
Bug Fixes
 
256
*********
 
257
 
 
258
* ``bzr add SYMLINK/FILE`` now works properly when the symlink points to a
 
259
  previously-unversioned directory within the tree: the directory is
 
260
  marked versioned too.  
 
261
  (Martin Pool, #192859)
 
262
 
 
263
* CommitBuilder now uses the committer instead of _config.username to generate
 
264
  the revision-id.  (Aaron Bentley, #614404)
 
265
 
 
266
* Cope with Microsoft FTP server that returns reply '250 Directory
 
267
  created' when mkdir succeeds.  (Martin Pool, #224373)
 
268
 
 
269
* Fix ``AttributeError on parent.children`` when adding a file under a 
 
270
  directory that was a symlink in the previous commit.
 
271
  (Martin Pool, #192859)
 
272
 
 
273
Documentation
 
274
*************
 
275
 
 
276
* Fix a lot of references in the docs to the old http://bazaar-vcs.org to
 
277
  the new http://bazaar.canonical.com or http://wiki.bazaar.canonical.com
 
278
  (John Arbash Meinel, #617503)
 
279
 
 
280
Internals
 
281
*********
 
282
 
 
283
* Remove used and broken code path in ``BranchInitHookParams.__repr__``.
 
284
  (Andrew Bennetts)
 
285
 
 
286
 
 
287
bzr 2.2
 
288
#######
 
289
 
 
290
:Codename: La Hulpe
 
291
:2.2: 2010-08-06
 
292
 
 
293
This release marks the start of another long-term-stable series. From
 
294
here, we will only make bugfix releases on the 2.2 series (2.2.1, etc),
 
295
while 2.3 will become our new development series. The 2.0 and 2.1 series
 
296
will also continue to get bugfixes. (Currently 2.0 is planned to be
 
297
supported for another 6 months.)
 
298
 
 
299
This is primarily a bugfix and polish release over the 2.1 series, with
 
300
a large number of bugs fixed (>120), and some performance improvements.
 
301
 
 
302
There are some compatibility changes in this release.  For users of bzrlib
 
303
as a library, we now request that they call ``bzrlib.initialize`` and use
 
304
the returned context manager appropriately. For commandline users we no
 
305
longer guess user identity for ``bzr commit``, users must specify their
 
306
identity using ``bzr whoami`` (you don't need to specify your identity for
 
307
readonly operations).
 
308
 
 
309
Users are encouraged to upgrade from the other stable series.
 
310
 
 
311
Compatibility Breaks
 
312
********************
 
313
 
 
314
* BzrError subclasses no longer support the name "message" to be used
 
315
  as an argument for __init__ or in _fmt format specification as this
 
316
  breaks in some Python versions. errors.LockError.__init__ argument
 
317
  is now named "msg" instead of earlier "message".
 
318
  (Parth Malwankar, #603461)
 
319
 
 
320
* The old ``bzr selftest --benchmark`` option has been removed.
 
321
  <https://launchpad.net/bzr-usertest> is an actively-maintained
 
322
  macrobenchmark suite.
 
323
  (Martin Pool)
 
324
 
 
325
Bug Fixes
 
326
*********
 
327
 
 
328
* ``bzr ignore PATTERNS`` exits with error if a bad pattern is supplied.
 
329
  ``InvalidPattern`` exception error message now shows faulting
 
330
  regular expression.
 
331
  (Parth Malwankar #300062)
 
332
 
 
333
* Configuration files in ``${BZR_HOME}`` are now written in an atomic
 
334
  way which should help avoid problems with concurrent writers.
 
335
  (Vincent Ladeuil, #525571)
 
336
 
 
337
* Don't traceback trying to unversion children files of an already
 
338
  unversioned directory.  (Vincent Ladeuil, #494221)
 
339
 
 
340
* ``HTTP/1.1`` test servers now set a ``Content-Length`` header to comply
 
341
  with pedantic ``HTTP/1.1`` clients. (Vincent Ladeuil, #568421)
 
342
 
 
343
* Progress bars prefer to truncate the text message rather than the
 
344
  counters.  The spinner is shown between the network transfer indicator
 
345
  and the progress message.  Progress bars are correctly cleared off when 
 
346
  they finish.  (Martin Pool, #611127)
 
347
 
 
348
* Recursive binding for checkouts is now detected by bzr. A clear error
 
349
  message is shown to the user. (Parth Malwankar, #405192)
 
350
 
 
351
Improvements
 
352
************
 
353
 
 
354
* Add ``bzrlib.merge.MergeIntoMerger``, which can merge part or all of a
 
355
  tree, and works with unrelated branches.  (Andrew Bennetts)
 
356
 
 
357
* Add py2exe windows target ``bzrw.exe``. This allow for starting a Bazaar
 
358
  GUI with out have a console open in the background.
 
359
  (Gary van der Merwe, #433781)
 
360
 
 
361
Documentation
 
362
*************
 
363
 
 
364
* ``bzr help patterns`` now explains case insensitive patterns and
 
365
  points to Python regular expression documentation.
 
366
  (Parth Malwankar, #594386)
 
367
 
 
368
API Changes
 
369
***********
 
370
 
 
371
* Delete ``ProgressTask.note``, which was deprecated in 2.1.
 
372
 
 
373
Testing
 
374
*******
 
375
 
 
376
* Unit test added to ensure that "message" is not uses as a format variable
 
377
  name in BzrError subclasses as this conflicts with some Python versions.
 
378
  (Parth Malwankar, #603461)
 
379
 
 
380
bzr 2.2b4
 
381
#########
 
382
 
 
383
:Codename: Monkey Magic
 
384
:2.2b4: 2004-07-09
 
385
 
 
386
 
 
387
This fourth and final beta in the 2.2 series now stabilizes the internal
 
388
APIs. Plugin authors are recommended to ensure their releases are
 
389
compatible, so that 2.2rc1 can be a true release candidate, containing
 
390
stable and compatible plugin versions. 
 
391
 
 
392
For users of bzrlib as a library, one of the primary changes is to request
 
393
that they call ``bzrlib.initialize`` and use the returned context manager
 
394
appropriately.
 
395
 
 
396
Better interaction with ``bzr-loom`` to make sure branching from a loom
 
397
even over a smart server still yields a local loom. Not to mention lots of
 
398
bugfixes over 2.2b3.
 
399
 
 
400
Compatibility Breaks
 
401
********************
 
402
 
 
403
* bzrlib library users now need to call ``__enter__`` and ``__exit__`` on
 
404
  the result of ``bzrlib.initialize``. This change was made when fixing
 
405
  the bad habit recent bzr versions have had of leaving progress bars 
 
406
  behind on the screen. That required calling another function before
 
407
  exiting the program, and it made sense to provide a full context
 
408
  manager at the same time. (Robert Collins)
 
409
 
 
410
* The ``bzr`` front end now requires a ``bzrlib.ui.ui_factory`` which is a
 
411
  context manager in the Python 2.5 and above sense. The bzrlib base class
 
412
  is such a manager, but third party UI factories which do not derive from
 
413
  ``bzrlib.ui.UIFactory`` will be incompatible with the command line front
 
414
  end.
 
415
 
 
416
* URLs like ``foo:bar/baz`` are now always parsed as a URL with scheme "foo"
 
417
  and path "bar/baz", even if bzr does not recognize "foo" as a known URL
 
418
  scheme.  Previously these URLs would be treated as local paths.
 
419
  (Gordon Tyler)
 
420
 
 
421
 
 
422
New Features
 
423
************
 
424
 
 
425
* Support ``--directory`` option for a number of additional commands:
 
426
  conflicts, merge-directive, missing, resolve, shelve, switch,
 
427
  unshelve, whoami. (Martin von Gagern, #527878)
 
428
 
 
429
Bug Fixes
 
430
*********
 
431
 
 
432
* ``bzr branch`` to a new repository with a default stacking policy no
 
433
  longer transfers the full history unnecessarily.
 
434
  (Andrew Bennetts, #597942)
 
435
 
 
436
* ``bzr init`` does not recursively scan directory contents anymore
 
437
  leading to faster init for directories with existing content.
 
438
  (Martin [gz], Parth Malwankar, #501307)
 
439
 
 
440
* ``bzr log --exclude-common-ancestry`` is now taken into account for
 
441
  linear ancetries. (Vincent Ladeuil, #575631)
 
442
 
 
443
* ``bzr log -r branch:REMOTE`` can now properly log the remote branch,
 
444
  rather than trying to fetch the data locally and failing because of a
 
445
  readonly error. (Martin von Gagern, #149270)
 
446
 
 
447
* ``bzr pull`` now works when a lp: URL is explicitly defined as the parent
 
448
  or pull location in locations.conf or branch.conf.
 
449
  (Gordon Tyler, #534787)
 
450
 
 
451
* ``bzr reconfigure --unstacked`` now works with branches accessed via a
 
452
  smart server. (Andrew Bennetts, #551525)
 
453
 
 
454
* ``BzrDir.find_branches`` should ignore branches with missing repositories.
 
455
  (Marius Kruger, Robert Collins)
 
456
 
 
457
* ``BzrDir.find_bzrdirs`` should ignore dirs that raises PermissionDenied.
 
458
  (Marius Kruger, Robert Collins)
 
459
 
 
460
* Ensure that wrong path specifications in ``BZR_PLUGINS_AT`` display
 
461
  proper error messages. (Vincent Ladeuil, #591215)
 
462
 
 
463
* Explicitly removing ``--profile-imports`` option from parsed command-line
 
464
  arguments on Windows, because bzr script does the same.
 
465
  (Alexander Belchenko, #588277)
 
466
 
 
467
* Fetching was slightly confused about the best code to use and was
 
468
  using a new code path for all branches, resulting in more lookups than
 
469
  necessary on old branches. (Robert Collins, #593515)
 
470
 
 
471
* Final fix for 'no help for command' issue. We now show a clean message
 
472
  when a command has no help, document how to set help more clearly, and
 
473
  test that all commands available to the test suite have help.
 
474
  (Robert Collins, #177500)
 
475
 
 
476
* Invalid patterns supplied to ``Globster`` or ``lazy_regex`` now raise
 
477
  ``InvalidPattern`` exception showing clear error message to the user.
 
478
  (Parth Malwankar #300062)
 
479
 
 
480
* Progress output is cleaned up when exiting.  (Aaron Bentley)
 
481
 
 
482
* Raise ValueError instead of a string exception.
 
483
  (John Arbash Meinel, #586926)
 
484
 
 
485
* Relative imports in plugins are now handled correctly when using
 
486
  BZR_PLUGINS_AT. (Vincent Ladeuil, #588959)
 
487
 
 
488
* ``ScriptRunner`` now strips off leading indentation from test scripts,
 
489
  which previously caused "SyntaxError: No command for line".
 
490
  (Martin Pool)
 
491
 
 
492
* Show unicode filenames in diff headers using terminal encoding. 
 
493
  (Alexander Belchenko, Bug #382699)
 
494
  NOTE for Windows users: If user need to save diff to file then user need to
 
495
  change encoding of the terminal to ANSI encoding with command ``chcp XXX``
 
496
  (e.g. ``chcp 1251`` for Russian Windows).
 
497
 
 
498
* URL displayed for use with ``break-lock`` when smart server sees lock
 
499
  contention are now valid. Default timeout for lock contention retry is
 
500
  now 30 seconds instead of 300 seconds.
 
501
  (Parth Malwankar, #250451)
 
502
 
 
503
* ``walkdirs`` now raises a useful message when the filenames are not using
 
504
  the filesystem encoding. (Eric Moritz, #488519)
 
505
 
 
506
* Enable debugging of bzr on windows with pdb and other tools. This was 
 
507
  broken because we call GetCommandLineW on windows. The fix adjusts the 
 
508
  command line we get to be the same length as sys.argv.
 
509
  (Jason Spashett, Alexander Belchenko, #587868)
 
510
 
 
511
Improvements
 
512
************
 
513
 
 
514
* Bazaar now reads data from SSH connections more efficiently on platforms
 
515
  that provide the ``socketpair`` function, and when using paramiko.
 
516
  (Andrew Bennetts, #590637)
 
517
 
 
518
* ``Branch.copy_content_into`` is now a convenience method dispatching to
 
519
  a ``InterBranch`` multi-method. This permits ``bzr-loom`` and other
 
520
  plugins to intercept this even when a ``RemoteBranch`` proxy is in use.
 
521
  (Robert Collins, #201613)
 
522
 
 
523
* ``Branch`` formats can now be loaded lazily by registering a
 
524
  ``MetaDirBranchFormatFactory`` rather than an actual format. This will
 
525
  cause the named format class to be loaded only when an enumeration of
 
526
  formats is needed or when the format string for the object is
 
527
  encountered. (Robert Collins, Jelmer Vernooij)
 
528
 
 
529
* The encoding that bzr uses to output things other than file content can
 
530
  now be overridden via the output_encoding configuration option.
 
531
  (Martin Pool, #340394)
 
532
 
 
533
* Use lazy imports in ``bzrlib/merge.py`` so that plugins like ``news_merge``
 
534
  do not cause modules to be loaded unnecessarily just because the plugin
 
535
  registers a merge hook.  This improves ``bzr rocks`` time by about 25%
 
536
  in a default installation (with just the core plugins).
 
537
  (Andrew Bennetts)
 
538
 
 
539
Documentation
 
540
*************
 
541
 
 
542
* Added ``regression`` tag to our tags list. (Robert Collins)
 
543
 
 
544
* Improved our release checklist to have a bit less churn and leave things
 
545
  ready-to-go for the next action (including other people doing
 
546
  development). (Robert Collins)
 
547
 
 
548
* Remove obsolete discussion of PQM in documentation about how to
 
549
  contribute to Bazaar.  (Martin Pool, #588444)
 
550
 
 
551
API Changes
 
552
***********
 
553
 
 
554
* ``bzrlib.branch.InterBranch._get_branch_formats_to_test`` now returns
 
555
  an iterable of format pairs, rather than just a single pair, permitting
 
556
  InterBranch objects that work with multiple permutations to be
 
557
  comprehensively tested. (Robert Collins)
 
558
 
 
559
* ``bzrlib.lsprof.profile`` will no longer silently generate bad threaded
 
560
  profiles when concurrent profile requests are made. Instead the profile
 
561
  requests will be serialised. Reentrant requests will now deadlock.
 
562
  (Robert Collins)
 
563
 
 
564
* ``bzrlib.knit.KnitSequenceMatcher``, which has been deprecated since
 
565
  2007, has been deleted.  Use ``PatienceSequenceMatcher`` from
 
566
  ``bzrlib.patiencediff`` instead. (Andrew Bennetts)
 
567
 
 
568
* ``bzrlib.re_compile_checked`` is now deprecated. Caller should handle
 
569
  ``bzrlib.errors.InvalidPattern`` exception thrown by ``re.match`` in
 
570
  case the default error message not suitable for the use case.
 
571
  (Parth Malwankar)
 
572
 
 
573
* ``bzrlib.tests.blackbox.ExternalBase`` is deprecated.  It provided only
 
574
  one method ``check_output``, and we now recommend checking command
 
575
  output using ``run_script``. (Martin Pool)
 
576
 
 
577
* ``bzrlib.transport.ssh.SSHVendor.connect_ssh`` now returns an object
 
578
  that implements the interface of ``bzrlib.transport.ssh.SSHConnection``.
 
579
  Third-party implementations of ``SSHVendor`` may need to be updated
 
580
  accordingly.  Similarly, any code using ``SSHConnection`` directly will
 
581
  need to be updated.  (Andrew Bennetts)
 
582
 
 
583
* The constructor of ``bzrilb.smart.medium.SmartSSHClientMedium`` has
 
584
  changed to take an ``SSHParams`` instance (replacing many individual
 
585
  values).  (Andrew Bennetts)
 
586
 
 
587
Internals
 
588
*********
 
589
 
 
590
* ``bzrlib.osutils.get_terminal_encoding`` will now only mutter its
 
591
  selection when explicitly requested; this avoids many duplicate calls
 
592
  being logged when helpers, wrappers and older code that manually calls
 
593
  it are executed it is now logged deliberately by the ui setup code.
 
594
  (Robert Collins)
 
595
 
 
596
* Improved ``bzrlib.urlutils`` to handle lp:foo/bar URLs. (Gordon Tyler)
 
597
 
 
598
* ``bzrlib._c_static_tuple.StaticTuple`` now implements ``__sizeof__``, so
 
599
  that ``sys.getsizeof`` and other memory analysis tools will report more
 
600
  accurate results. (Andrew Bennetts)
 
601
 
 
602
* The symbol_versioning module can now cleanup after itself -
 
603
  ``suppress_deprecation_warnings`` now returns a cleanup function.
 
604
  (Robert Collins)
 
605
 
 
606
Testing
 
607
*******
 
608
 
 
609
* Add ``bzrlib.tests.fixtures`` to hold code for setting up objects
 
610
  to test.  (Martin Pool)
 
611
 
 
612
* ``test_import_tariff`` now respects BZR_PLUGINS_AT and BZR_PLUGINS_DISABLE.
 
613
  (Vincent Ladeuil, #595587)
 
614
 
 
615
bzr 2.2b3
 
616
#########
 
617
 
 
618
:2.2b3: 2010-05-28
 
619
 
 
620
This third beta in the 2.2 series brings with it all the goodness of 2.1.2
 
621
and 2.0.6 (though it preceeds 2.0.6 slightly). Of particular note for
 
622
users are compatibility fixes with bzr 1.5 and below servers, a hopeful
 
623
end to the EINTR errors caused by SIGWINCH interactions, a shiny new
 
624
bash completion script and bzr will no longer guess at identity details -
 
625
it was too unreliable in reality. Use ``bzr whoami`` on every new install.
 
626
For developers we have some API changes which may impact plugins as well
 
627
as a bunch of our regular improvements to internal clarity and test
 
628
support.
 
629
 
 
630
Compatibility Breaks
 
631
********************
 
632
 
 
633
* An API break has been made to the lock_write method of ``Branch`` and
 
634
  ``Repository`` objects; they now return ``branch.BranchWriteLockResult``
 
635
  and ``repository.RepositoryWriteLockResult`` objects. This makes
 
636
  changing the API in future easier and permits some cleaner calling code.
 
637
  The lock_read method has also changed from having no defined return
 
638
  value to returning ``LogicalLockResult`` objects.
 
639
  (Robert Collins)
 
640
 
 
641
* ``bzr`` does not try to guess the username as ``username@hostname``
 
642
  and requires it to be explictly set. This can be set using ``bzr
 
643
  whoami``. (Parth Malwankar, #549310)
 
644
 
 
645
* ``bzrlib.commands.Command`` will now raise ValueError during
 
646
  construction if there is no __doc__ set. (Note, this will be reverted in
 
647
  2.2b4) (Robert Collins)
 
648
 
 
649
* The source tree no longer contains a contrib/zsh/_bzr completion
 
650
  script. The new file contrib/zsh/README suggests alternatives.
 
651
  (Martin von Gagern, #560030)
 
652
 
 
653
New Features
 
654
************
 
655
 
 
656
* ``bzr commit`` accepts ``-p`` (for "patch") as a shorter name for
 
657
  ``--show-diff``.
 
658
  (Parth Malwankar, #571467)
 
659
  
 
660
* ``bzr ignore`` now supports a ``--default-rules`` option that displays
 
661
  the default ignore rules used by bzr. The flag ``--old-default-rules``
 
662
  is no longer supported by ``ignore``.
 
663
  (Parth Malwankar, #538703)
 
664
 
 
665
* ``bzr pack`` now supports a ``--clean-obsolete-packs`` option that
 
666
  can save disk space by deleting obsolete pack files created during the
 
667
  pack operation.
 
668
  (Parth Malwankar, #304320)
 
669
 
 
670
* New command line option ``--authors`` to ``bzr log`` allows users to
 
671
  select which of the apparent authors and committer should be
 
672
  included in the log. Defaults depend on format. (Martin von Gagern, #513322)
 
673
 
 
674
* Support ``--directory`` option for a number of additional commands:
 
675
  added, annotate, bind, cat, cat-revision, clean-tree, deleted,
 
676
  export, ignore, ignored, lookup-revision, ls, modified, nick,
 
677
  re-sign, unbind, unknowns.
 
678
  (Martin von Gagern, #527878)
 
679
 
 
680
* The bash_completion plugin from the bzr-bash-completion project has
 
681
  been merged into the tree. It provides a bash-completion command and
 
682
  replaces the outdated ``contrib/bash/bzr`` script with a version
 
683
  using the plugin. (Martin von Gagern, #560030)
 
684
 
 
685
* A new transport based on GIO (the gnome i/o library) provides access to
 
686
  samba shares, webdav using gio+smb and gio+dav. It is also possible to
 
687
  use gio for some already existing transport methods as gio+file,
 
688
  gio+sftp, gio+ftp. 
 
689
  (Mattias Eriksson)
 
690
 
 
691
Bug Fixes
 
692
*********
 
693
 
 
694
* Alias information shown by ``bzr help`` is now accurate. This
 
695
  was showing an internal object name for some plugin aliases.
 
696
  (Parth Malwankar, #584650)
 
697
 
 
698
* ``.bazaar``, ``.bazaar/bazaar.conf`` and ``.bzr.log`` inherit user and
 
699
  group ownership from the containing directory. This allow bzr to work
 
700
  better with sudo.
 
701
  (Martin <gzlist@googlemail.com>, Parth Malwankar, #376388)
 
702
 
 
703
* ``bzr clean-tree`` should not delete nested bzrdirs. Required for proper
 
704
  support of bzr-externals and scmproj plugins.
 
705
  (Alexander Belchenko, bug #572098)
 
706
 
 
707
* ``bzr ignore`` will no longer add duplicate patterns to .bzrignore.
 
708
  (Gordon Tyler, #572092)
 
709
 
 
710
* ``bzr log --exclude-common-ancestry -r X..Y`` displays the revisions that
 
711
  are part of Y ancestry but not part of X ancestry (aka the graph
 
712
  difference).
 
713
  (Vincent Ladeuil, #320119)
 
714
 
 
715
* ``bzr lp-propose`` which was switched to use production Launchpad API
 
716
  servers a few commits ago has been reverted to use edge: there is a
 
717
  problem with using production which isn't trivially obvious, so we've
 
718
  filed a bug to track it, and until thats fixed will be using edge.
 
719
  (Robert Collins, #583667)
 
720
 
 
721
* ``bzr rm`` should not refuse to delete directories which contained a file
 
722
  which has been moved elsewhere in the tree after the previous commit.
 
723
  (Marius Kruger, Daniel Watkins, #129880)
 
724
 
 
725
* ``bzr selftest --parallel=fork`` wait for its children avoiding zombies.
 
726
  (Vincent Ladeuil, #566670)
 
727
 
 
728
* ``bzr selftest`` should not use ui.note() since it's not unicode safe.
 
729
  (Vincent Ladeuil, #563997)
 
730
 
 
731
* CommitBuilder refuses to create revisions whose trees have no root.
 
732
  (Aaron Bentley)
 
733
 
 
734
* Do not register a SIGWINCH signal handler, instead just poll for the
 
735
  terminal width as needed.  This avoids the "Interrupted System Call"
 
736
  problems that occur on POSIX with all currently released versions of
 
737
  Python.
 
738
  (Andrew Bennetts, #583941)
 
739
 
 
740
* Don't mention --no-strict when we just issue the warning about unclean trees.
 
741
  (Vincent Ladeuil, #401599)
 
742
 
 
743
* Fixed ``AssertionError`` when accessing smart servers running Bazaar
 
744
  versions before 1.6.
 
745
  (Andrew Bennetts, #528041)
 
746
 
 
747
* Improved progress bar for fetch (2a format only). Bazaar now shows an
 
748
  estimate of the number of records to be fetched vs actually fetched.
 
749
  (Parth Malwankar, #374740, #538868)
 
750
 
 
751
* Reduce peak memory by one copy of compressed text.
 
752
  (John Arbash Meinel, #566940)
 
753
 
 
754
* ``RemoteBranch.lock_write`` raises ``ReadOnlyError`` if called during a
 
755
  read lock, rather than causing an ``AttributeError``.
 
756
  (Andrew Bennetts, Данило Шеган, #582781)
 
757
 
 
758
* Selftest was failing with testtools 0.9.3, which caused an
 
759
  AssertionError raised from a cleanUp to be reported as a Failure, not an
 
760
  Error, breaking on of our test hygiene tests.
 
761
  (Robert Collins, Vincent Ladeuil).
 
762
 
 
763
* ``set_user_option`` with a dict on remote branches no longer fails with
 
764
  an AttributeError.  There is a new ``Branch.set_config_option_dict`` RPC
 
765
  to support this efficiently.
 
766
  (Andrew Bennetts, #430382)
 
767
  
 
768
* Show the filenames when a file rename fails so that the error will be
 
769
  more comprehensible.
 
770
  (Martin Pool, #491763)
 
771
 
 
772
* Support Pyrex 0.9.9, required changing how we handle exceptions in Pyrex.
 
773
  (John Arbash Meinel, #582656)
 
774
 
 
775
* Unicode characters in aliases are now handled correctly and do not cause
 
776
  UnicodeEncodeError exception. (Parth Malwankar, #529930)
 
777
 
 
778
* Unicode commit messages that are the same as a file name no longer cause
 
779
  UnicodeEncodeError. ``ui.text.show_warning`` now handles unicode
 
780
  messages.
 
781
  (Parth Malwankar, #563646)
 
782
 
 
783
* Using bzr with `lp:` urls behind an http proxy should work.
 
784
  (Robert Collins, #558343)
 
785
 
 
786
* When passing a file to ``UTF8DirReader`` make sure to close the current
 
787
  directory file handle after the chdir fails. Otherwise when passing many
 
788
  filenames into a command line ``bzr status`` we would leak descriptors.
 
789
  (John Arbash Meinel, #583486)
 
790
 
 
791
Improvements
 
792
************
 
793
 
 
794
* ``append_revisions_only`` will now be interpreted as a boolean and a
 
795
  warning emitted if illegal values are used. Note that for projects
 
796
  that needs to maintain compatibility with previsous bzr versions,
 
797
  only 'True' and 'False' strings must be used (previous versions of
 
798
  bzr will interpret all strings differing from 'True'
 
799
  (case-sensitive) as false.
 
800
  (Brian de Alwis, Vincent Ladeuil)
 
801
 
 
802
* ``bzr ls`` now supports short options for existing long options.
 
803
  ``-k/--kind``, ``-i/--ignored``, ``-u/--unknown`` and ``-0/--null``.
 
804
  (Parth Malwankar, #181124)
 
805
 
 
806
* ``Config.get_user_option_as_bool`` will now warn if a value cannot
 
807
  be interpreted as a boolean.
 
808
  (Vincent Ladeuil)
 
809
 
 
810
* The all-in-one Windows installer will now be built with docstrings stripped
 
811
  from the library zip, reducing the size and slightly improving cold startup
 
812
  time. Bundled plugins are unchanged for the moment, but if adding other new
 
813
  plugins to an all-in-one installation, ensure they are compiled and
 
814
  installed with -O1 or help may not work. (Martin [gz])
 
815
 
 
816
API Changes
 
817
***********
 
818
 
 
819
* Added ``bzrlib.merge.PerFileMerger``, a more convenient way to write
 
820
  some kinds of ``merge_file_content`` hook functions.
 
821
  (Andrew Bennetts)
 
822
  
 
823
* `BzrDir`, `Branch`, `Repository` and `WorkingTree` now all support `user_url`,
 
824
  `user_transport`, `control_url` and `control_transport` members pointing
 
825
  respectively to the directory containing the ``.bzr`` control directory, 
 
826
  and to the directory within ``.bzr`` used for the particular component.
 
827
  All of them inherit from `ControlComponent` which provides default
 
828
  implementations.
 
829
  (Martin Pool)
 
830
 
 
831
* Lock methods on ``Tree``, ``Branch`` and ``Repository`` are now
 
832
  expected to return an object which can be used to unlock them. This reduces
 
833
  duplicate code when using cleanups. The previous 'tokens's returned by
 
834
  ``Branch.lock_write`` and ``Repository.lock_write`` are now attributes
 
835
  on the result of the lock_write. ``repository.RepositoryWriteLockResult``
 
836
  and ``branch.BranchWriteLockResult`` document this. (Robert Collins)
 
837
 
 
838
* ``Repository.refresh_data`` may now be called in a write group on
 
839
  pack-based repositories.  Older repositories will still raise an error
 
840
  in this case.  Subclasses of ``Repository`` can still override
 
841
  ``Repository._refresh_data``, but are now responsible for raising
 
842
  ``bzrlib.repository.IsInWriteGroupError`` if they do not support
 
843
  ``refresh_data`` during a write group.
 
844
  (Andrew Bennetts, #574236)
 
845
 
 
846
Internals
 
847
*********
 
848
 
 
849
* ``chk_map._bytes_to_text_key`` is now an optimized function to extract
 
850
  the (file-id, revision-id) key from a CHKInventory entry. This can
 
851
  potentially shave 5-10% time off during a large fetch. Related to bug
 
852
  #562666. (John Arbash Meinel)
 
853
 
 
854
* ``log._get_info_for_log_files`` now takes an add_cleanup callable.
 
855
  (Robert Collins)
 
856
 
 
857
* ``_remember_remote_is_before`` no longer raises AssertionError when
 
858
  suboptimal network behaviour is noticed; instead it just mutters to the
 
859
  log file (and warns the user if they have set the ``hpss`` debug flag).
 
860
  This was causing unnecessary aborts for performance bugs that are minor
 
861
  at worst.
 
862
  (Andrew Bennetts, #528041)
 
863
 
 
864
* Permit bzr to run under ``python -OO`` which reduces the size of bytecode
 
865
  files loaded from disk. To ensure docstrings needed for help are never
 
866
  stripped, the prefix ``__doc__ =`` should now be used.
 
867
  (Martin <gzlist@googlemail.com>)
 
868
 
 
869
* No longer require zlib headers to build extensions, and remove the need
 
870
  for seperate copy of zlib library on windows.
 
871
  (John Arbash Meinel, Martin <gzlist@googlemail.com>, #566923)
 
872
 
 
873
Testing
 
874
*******
 
875
 
 
876
* Added ``bzrlib.tests.matchers`` as a place to put matchers, along with
 
877
  our first in-tree matcher. See the module docstring for details.
 
878
  (Robert Collins)
 
879
 
 
880
* ``bzr selftest --parallel=subprocess`` now works correctly on win32.
 
881
   (Gordon Tyler, #551332)
 
882
 
 
883
* Workaround ``Crypto.Random`` check leading to spurious test
 
884
  failures on Lucid, FreeBSD and gentoo.  
 
885
  (Vincent Ladeuil, #528436)
 
886
 
 
887
* New class ``ExecutableFeature`` for checking the availability of
 
888
  executables on the ``PATH``. Migrated from bash_completion plugin.
 
889
  (Martin von Gagern)
 
890
 
 
891
bzr 2.2b2
 
892
#########
 
893
 
 
894
:2.2b2: 2010-04-16
 
895
 
 
896
This is a somewhat early second beta of the 2.2 series, to fix a python2.4
 
897
incompatibility in the 2.2b1 release.  It also includes a swag of
 
898
performance, usability and correctness improvements: test feedback on all
 
899
of these would be welcome.
 
900
 
 
901
 
 
902
New Features
 
903
************
 
904
 
 
905
* ``bzr diff`` now supports a --format option, which can be used to 
 
906
  select alternative diff formats. (Jelmer Vernooij, #555994)
 
907
 
 
908
Bug Fixes
 
909
*********
 
910
 
 
911
* ``bzr dpush``, ``bzr push`` and ``bzr send`` will now issue a warning
 
912
  instead of failing when dirty trees are involved. The corresponding
 
913
  ``dpush_strict``, ``push_strict`` and ``send_strict`` should be set to
 
914
  True explicitly to get the previous behaviour.  
 
915
  (Vincent Ladeuil, #519319)
 
916
 
 
917
* ``bzr export`` to tar file does not fail if any parent directory
 
918
  contains unicode characters. This works around upstream Python bug
 
919
  http://bugs.python.org/issue8396 .
 
920
  (Parth Malwankar, #413406)
 
921
 
 
922
* ``bzr switch`` does not die if a ConfigurableFileMerger is used.
 
923
  (Aaron Bentley, #559436)
 
924
 
 
925
* ``bzr update`` when a pending merge in the working tree has been merged
 
926
  into the master branch will no longer claim that old commits have become
 
927
  pending merges. (Robert Collins, #562079)
 
928
 
 
929
* ``bzrlib.mutabletree.MutableTree.commit`` will now support a passed in
 
930
  config as in previous versions of bzrlib. (Robert Collins)
 
931
 
 
932
* Fix glitch in the warning about unclean trees display.
 
933
  (Vincent Ladeuil, #562665)
 
934
 
 
935
* Fixed Python2.4 incompatibilities in the bzr2.2b1 source tarball.
 
936
  (Martin Pool)
 
937
 
 
938
* Help messages generated by ``RegistryOption.from_kwargs`` list the
 
939
  switches in alphabetical order, rather than in an undefined order.
 
940
  (Martin von Gagern, #559409)
 
941
 
 
942
* Make sure the ``ExecutablePath`` and ``InterpreterPath`` are set in
 
943
  Apport crash reports, to avoid "This problem report applies to a program
 
944
  which is not installed any more" error.
 
945
  (Martin Pool, James Westby, #528114)
 
946
 
 
947
* Reset ``siginterrupt`` flag to False every time we handle a signal
 
948
  installed with ``set_signal_handler(..., restart_syscall=True)`` (from
 
949
  ``bzrlib.osutils``.  Reduces the likelihood of "Interrupted System Call"
 
950
  errors compared to registering ``signal.signal`` directly.
 
951
  (Andrew Bennetts)
 
952
 
 
953
* When invoked with a range revision, ``bzr log`` doesn't show revisions
 
954
  that are not part of the Y revisions ancestry anymore when invoked with
 
955
  -rX..Y.
 
956
  (Vincent Ladeuil, #474807)
 
957
 
 
958
* Properly handle ``param_name`` attribute for ``ListOption``.
 
959
  (Martin von Gagern, #387117)
 
960
 
 
961
Improvements
 
962
************
 
963
 
 
964
* ``bzr commit`` will prompt before using a commit message that was
 
965
  generated by a template and not edited by the user.
 
966
  (Robert Collins, #530265)
 
967
 
 
968
* ``bzr diff`` read-locks the trees and branches only once, saving about
 
969
  10-20ms on ``bzr diff`` in a bzr.dev tree.
 
970
  (Andrew Bennetts)
 
971
 
 
972
* ``bzr missing`` read-locks the branches only once.
 
973
  (Andrew Bennetts)
 
974
  
 
975
* ``bzr pull`` locks the branches and tree only once.
 
976
  (Andrew Bennetts)
 
977
  
 
978
* Index lookups in pack repositories search recently hit pack files first.  
 
979
  In repositories with many pack files this can greatly reduce the
 
980
  number of files accessed, the number of bytes read, and the number of
 
981
  read calls.  An incremental pull via plain HTTP takes half the time and
 
982
  bytes for a moderately large repository.  (Andrew Bennetts)
 
983
 
 
984
* Index lookups only re-order the indexes when the hit files aren't
 
985
  already first. Reduces the cost of reordering
 
986
  (John Arbash Meinel, #562429)
 
987
 
 
988
* Less code is loaded at startup.  (Cold-cache start time is about 10-20%
 
989
  less.)
 
990
  (Martin Pool, #553017)
 
991
 
 
992
API Changes
 
993
***********
 
994
 
 
995
* ``bzrlib.diff.get_trees_and_branches_to_diff`` is deprecated.  Use
 
996
  ``get_trees_and_branches_to_diff_locked`` instead.
 
997
  (Andrew Bennetts)
 
998
 
 
999
* ``TreeTransform.commit`` supports the full set of commit parameters, and
 
1000
  auto-determines branch nick if not supplied.  (Aaron Bentley)
 
1001
  
 
1002
Internals
 
1003
*********
 
1004
 
 
1005
* ``bzrlib.commands.Command.run_direct`` is no longer needed - the pre
 
1006
  2.1 method of calling run() to perform testing or direct use via the API
 
1007
  is now possible again. As part of this, the _operation attribute on
 
1008
  Command is now transient and only exists for the duration of ``run()``.
 
1009
  (Robert Collins)
 
1010
 
 
1011
bzr 2.2b1
 
1012
#########
 
1013
 
 
1014
:2.2b1: 2010-04-01
 
1015
 
 
1016
This is the first beta of the 2.2 series, leading up to a 2.2.0
 
1017
release in July or August.  Beta releases are suitable for everyday use
 
1018
but may cause some incompatibilities with plugins.  Some plugins may need
 
1019
small updates to work with 2.2b1.
 
1020
 
 
1021
2.2b1 includes some changes to make merge conflicts easier to understand
 
1022
and resolve.  It also removes some old unnecessary code, and loads
 
1023
somewhat less code at startup.  It starts adding a common infrastructure
 
1024
for dealing with colocated named branches, which can be implemented in
 
1025
various ways in either bzr native or foreign formats.   On Ubuntu and
 
1026
other platforms with the apport bug-reporting library, there's an easier
 
1027
path to report problems with bzr.  We plan to continue with these themes
 
1028
through the 2.2 series.
 
1029
 
 
1030
Over thirty bugs have been fixed, including in the log command, exporting
 
1031
to tarballs, restarting interrupted system calls, portability of compiled
 
1032
extensions, making backups during upgrade, and locking on ftp.
 
1033
 
 
1034
Compatibility Breaks
 
1035
********************
 
1036
 
 
1037
* BTreeGraphIndex can now take an offset to indicate that the data starts
 
1038
  somewhere other than then beginning of the file. (John Arbash Meinel)
 
1039
 
 
1040
* Deleted very old hidden commands ``versionedfile-list``,
 
1041
  ``weave-plan-merge``, ``weave-merge-text``.
 
1042
  (Martin Pool)
 
1043
 
 
1044
* ``Repository.get_inventory_sha1()`` and ``Repository.get_revision_xml()`` 
 
1045
  have been removed. (Jelmer Vernooij)
 
1046
 
 
1047
* ``Repository.get_revision_inventory()`` has been removed in favor of
 
1048
  ``Repository.get_inventory()``. (Jelmer Vernooij)
 
1049
 
 
1050
* All test servers have been moved out of the bzrlib.transport hierarchy to
 
1051
  bzrlib.tests.test_server *except* for MemoryServer, ChrootServer and
 
1052
  PathFilteringServer. ``bzrlib`` users may encounter test failures that can
 
1053
  be fixed by updating the related imports from ``bzrlib.transport.xxx`` to
 
1054
  ``bzrlib.tests.test_server``.
 
1055
  (Vincent Ladeuil)
 
1056
 
 
1057
* ``BranchReferenceFormat.initialize()`` now takes an optional name argument
 
1058
  as its second parameter, for consistency with the initialize() method of
 
1059
  other formats. (Jelmer Vernooij)
 
1060
 
 
1061
New Features
 
1062
************
 
1063
 
 
1064
* Added ``bzr remove-branch`` command that can remove a local or remote 
 
1065
  branch. (Jelmer Vernooij, #276295)
 
1066
 
 
1067
* ``bzr export`` now takes an optional argument ``--per-file-timestamps``
 
1068
  to set file mtimes to the last timestamp of the last revision in which
 
1069
  they were changed rather than the current time. (Jelmer Vernooij)
 
1070
 
 
1071
* If the Apport crash-reporting tool is available, bzr crashes are now
 
1072
  stored into the ``/var/crash`` apport spool directory, and the user is
 
1073
  invited to report them to the developers from there, either
 
1074
  automatically or by running ``apport-bug``.  No information is sent
 
1075
  without specific permission from the user.  (Martin Pool, #515052)
 
1076
 
 
1077
* Parsing of command lines, for example in ``diff --using``, no longer
 
1078
  treats backslash as an escape character on Windows.   (Gordon Tyler,
 
1079
  #392428)
 
1080
 
 
1081
* Plugins can be disabled by defining ``BZR_DISABLE_PLUGINS`` as
 
1082
  a list of plugin names separated by ':' (';' on windows).
 
1083
  (Vincent Ladeuil, #411413)
 
1084
 
 
1085
* Plugins can be loaded from arbitrary locations by defining
 
1086
  ``BZR_PLUGINS_AT`` as a list of name@path separated by ':' (';' on
 
1087
  windows). This takes precedence over ``BZR_PLUGIN_PATH`` for the
 
1088
  specified plugins. This is targeted at plugin developers for punctual
 
1089
  needs and *not* intended to replace ``BZR_PLUGIN_PATH``.  
 
1090
  (Vincent Ladeuil, #82693)
 
1091
 
 
1092
* Tag names can now be determined automatically by ``automatic_tag_name`` 
 
1093
  hooks on ``Branch`` if they are not specified on the command line.
 
1094
  (Jelmer Vernooij)
 
1095
 
 
1096
* Tree-shape conflicts can be resolved by providing ``--take-this`` and
 
1097
  ``--take-other`` to the ``bzr resolve`` command. Just marking the conflict
 
1098
  as resolved is still accessible via the ``--done`` default action.
 
1099
  (Vincent Ladeuil)
 
1100
 
 
1101
* Merges can be proposed on Launchpad with the new lp-propose-merge command.
 
1102
  (Aaron Bentley, Jonathan Lange)
 
1103
 
 
1104
Bug Fixes
 
1105
*********
 
1106
 
 
1107
* Added docstring for ``Tree.iter_changes``
 
1108
  (John Arbash Meinel, #304182)
 
1109
 
 
1110
* Allow additional arguments to
 
1111
  ``RemoteRepository.add_inventory_by_delta()``. (Jelmer Vernooij, #532631)
 
1112
 
 
1113
* Allow exporting a single file using ``bzr export``.
 
1114
  (Michal Junák, #511987)
 
1115
 
 
1116
* Allow syscalls to automatically restart when ``TextUIFactory``'s
 
1117
  SIGWINCH handler is invoked, avoiding ``EINTR`` errors during blocking
 
1118
  IO, which are often poorly handled by Python's libraries and parts of
 
1119
  bzrlib.  (Andrew Bennetts, #496813)
 
1120
 
 
1121
* Avoid infinite recursion when probing for apport.
 
1122
  (Vincent Ladeuil, #516934)
 
1123
 
 
1124
* Avoid ``malloc(0)`` in ``patiencediff``, which is non-portable.
 
1125
  (Martin Pool, #331095)
 
1126
 
 
1127
* Avoid truncating svn URLs.
 
1128
  (Martin Pool, Martin von Gagern, #545185)
 
1129
 
 
1130
* ``bzr add`` will not add conflict related files unless explicitly required.
 
1131
  (Vincent Ladeuil, #322767, #414589)
 
1132
 
 
1133
* ``bzr dump-btree`` now works on ``*.cix`` and ``*.six`` files.  Those
 
1134
  indices do not have reference lists, so ``dump-btree`` will simply show
 
1135
  ``None`` instead.  (Andrew Bennetts, #488607)
 
1136
 
 
1137
* ``bzr help`` will no longer trigger the get_missing_command hook when
 
1138
  doing a topic lookup. This avoids prompting (like 'no command plugins/loom,
 
1139
  did you mean log?') when getting help. In future we may trigger the hook 
 
1140
  deliberately when no help topics match from any help index.
 
1141
  (Robert Collins, #396261)
 
1142
 
 
1143
* ``bzr log -n0 -r..A.B.C`` should not crash but just consider the None
 
1144
  revspec as representing the first revision of the branch.
 
1145
  (Vincent Ladeuil, #519862)
 
1146
 
 
1147
* ``bzr remove-tree`` can now remove multiple working trees.
 
1148
  (Jared Hance, Andrew Bennetts, #253137)
 
1149
 
 
1150
* ``bzr resolve --take-this`` and ``--take-other`` now correctly renames
 
1151
  the kept file on content conflicts where one side deleted the file.
 
1152
  (Vincent Ladeuil, #529968)
 
1153
 
 
1154
* ``bzr upgrade`` now creates the ``backup.bzr`` directory with the same
 
1155
  permissions as ``.bzr`` directory on a POSIX OS.
 
1156
  (Parth Malwankar, #262450)
 
1157
 
 
1158
* ``bzr upgrade`` now names backup directory as ``backup.bzr.~N~`` instead
 
1159
  of ``backup.bzr``. This directory is ignored by bzr commands such as
 
1160
  ``add``.
 
1161
  (Parth Malwankar, #335033, #300001)
 
1162
 
 
1163
* Cope with non-utf8 characters inside ``.bzrignore``.
 
1164
  (Jason Spashett, #183504)
 
1165
 
 
1166
* Correctly interpret "451 Rename/move failure: Directory not empty" from
 
1167
  ftp servers while trying to take a lock.
 
1168
  (Martin Pool, #528722)
 
1169
 
 
1170
* DirStateRevisionTree.kind() was returning wrong result when 'kind'
 
1171
  changes occured between the workingtree and one of its parents.
 
1172
  (Vincent Ladeuil, #535547)
 
1173
 
 
1174
* Fix ``log`` to better check ancestors even if merged revisions are involved.
 
1175
  (Vincent Ladeuil, #476293)
 
1176
 
 
1177
* Loading a plugin from a given path with ``BZR_PLUGINS_AT`` doesn't depend
 
1178
  on os.lisdir() order and is now reliable.
 
1179
  (Vincent Ladeuil, #552922).
 
1180
 
 
1181
* Many IO operations that returned ``EINTR`` were retried even if it
 
1182
  wasn't safe to do so via careless use of ``until_no_eintr``.  Bazaar now
 
1183
  only retries operations that are safe to retry, and in some cases has
 
1184
  switched to operations that can be retried (e.g. ``sock.send`` rather than
 
1185
  ``sock.sendall``).
 
1186
  (Andrew Bennetts, Martin <gzlist@googlemail.com>, #496813)
 
1187
 
 
1188
* Path conflicts now support --take-this and --take-other even when a
 
1189
  deletion is involved.
 
1190
  (Vincent Ladeuil, #531967)
 
1191
 
 
1192
* Network transfer amounts and rates are now displayed in SI units according
 
1193
  to the Ubuntu Units Policy <https://wiki.ubuntu.com/UnitsPolicy>.
 
1194
  (Gordon Tyler, #514399)
 
1195
 
 
1196
* Support kind markers for socket and fifo filesystem objects. This
 
1197
  prevents ``bzr status --short`` from crashing when those files are
 
1198
  present.  (John Arbash Meinel, #303275)
 
1199
 
 
1200
* ``bzr mkdir DIR`` will not create DIR unless DIR's parent is a versioned
 
1201
   directory. (Parth Malwankar, #138600)
 
1202
 
 
1203
* SSH child processes will now ignore SIGQUIT on nix systems so breaking into
 
1204
  the debugger won't kill the session.
 
1205
  (Martin <gzlist@googlemail.com>, #162502)
 
1206
 
 
1207
* Tolerate patches with leading noise in ``bzr-handle-patch``.
 
1208
  (Toshio Kuratomi, Martin Pool, #502076)
 
1209
 
 
1210
* ``update -r`` now supports updating to revisions that are not on
 
1211
  mainline (i.e. it supports dotted revisions).
 
1212
  (Parth Malwankar, #517800)
 
1213
 
 
1214
* Use first apparent author not committer in GNU Changelog format.
 
1215
  (Martin von Gagern, #513322)
 
1216
 
 
1217
API Changes
 
1218
***********
 
1219
 
 
1220
* ``bzrlib.merge_directive._BaseMergeDirective`` has been renamed to 
 
1221
  ``bzrlib.merge_directive.BaseMergeDirective`` and is now public.
 
1222
  (Jelmer Vernooij)
 
1223
 
 
1224
* ``BranchFormat.initialize`` now takes an optional ``name`` of the colocated 
 
1225
  branch to create. (Jelmer Vernooij)
 
1226
 
 
1227
* ``BzrDir.get_branch_transport`` now takes an optional ``name`` of the 
 
1228
  colocated branch to open. (Jelmer Vernooij)
 
1229
 
 
1230
* Added ``bzrlib.osutils.set_signal_handler``, a convenience function that
 
1231
  can set a signal handler and call ``signal.siginterrupt(signum,
 
1232
  False)`` for it, if the platform and Python version supports it.
 
1233
  (Andrew Bennetts, #496813)
 
1234
 
 
1235
* New ``bzrlib.initialize`` is recommended for programs using bzrlib to 
 
1236
  run when starting up; it sets up several things that previously needed
 
1237
  to be done separately.
 
1238
  (Martin Pool, #507710)
 
1239
 
 
1240
* Exporters now support a ``per_file_timestamps`` argument to write out the 
 
1241
  timestamp of the commit in which a file revision was introduced.
 
1242
  (Jelmer Vernooij)
 
1243
 
 
1244
* New method ``BzrDir.list_branches()`` that returns a sequence of branches 
 
1245
  present in a control directory. (Jelmer Vernooij)
 
1246
 
 
1247
* New method ``Repository.get_known_graph_ancestry()``. 
 
1248
  (Jelmer Vernooij, #495502)
 
1249
 
 
1250
* New transport methods ``readlink``, ``symlink`` and ``hardlink``.
 
1251
  (Neil Santos)
 
1252
 
 
1253
* Remove unused ``CommandFailed`` exception.
 
1254
  (Martin Pool)
 
1255
 
 
1256
Internals
 
1257
*********
 
1258
 
 
1259
* ``bzrlib.branchbuilder.BranchBuilder.build_snapshot`` now accepts a
 
1260
  ``message_callback`` in the same way that commit does. (Robert Collins)
 
1261
 
 
1262
* ``bzrlib.builtins.Commit.run`` raises ``bzrlib.errors.BoundBranchOutOfDate``
 
1263
  rather than ``bzrlib.errors.BzrCommandError`` when the bound branch is out
 
1264
  of date. (Gary van der Merwe)
 
1265
 
 
1266
* ``bzrlib.commands.run_bzr`` is more extensible: callers can supply the
 
1267
  functions to load or disable plugins if they wish to use a different
 
1268
  plugin mechanism; the --help, --version and no-command name code paths
 
1269
  now use the generic pluggable command lookup infrastructure.
 
1270
  (Robert Collins)
 
1271
 
 
1272
* ``bzrlib.errors.BoundBranchOutOfDate`` has a new field ``extra_help``
 
1273
  which can be set to add extra help to the error. (Gary van der Merwe)
 
1274
 
 
1275
* New method ``Branch.automatic_tag_name`` that can be used to find the
 
1276
  tag name for a particular revision automatically. (Jelmer Vernooij)
 
1277
 
 
1278
* The methods ``BzrDir.create_branch()``, ``BzrDir.destroy_branch()`` and 
 
1279
  ``BzrDir.open_branch()`` now take an optional ``name`` argument. 
 
1280
  (Jelmer Vernooij)
 
1281
 
 
1282
Testing
 
1283
*******
 
1284
 
 
1285
* bzr now has a ``.testr.conf`` file in its source tree configured
 
1286
  appropriately for running tests with Testrepository
 
1287
  (``https://launchpad.net/testrepository``). (Robert Collins)
 
1288
 
 
1289
* Documentation about testing with ``subunit`` has been tweaked.
 
1290
  (Robert Collins)
 
1291
 
 
1292
* Known failures has been added for resolve --take-other on ParentLoop
 
1293
  conflicts. This reflects bug #537956 without fixing it.
 
1294
  (Vincent Ladeuil)
 
1295
 
 
1296
* New ``bzrlib.tests.test_import_tariff`` can make assertions about what
 
1297
  Python modules are loaded, to guard against startup time or library
 
1298
  dependency regressions.
 
1299
  (Martin Pool)
 
1300
 
 
1301
* PQM will now run with subunit output. To analyze a PQM error use
 
1302
  tribunal, or cat log | subunit-filter | subunit2pyunit. (Robert Collins)
 
1303
 
 
1304
* Stop sending apport crash files to ``.cache`` in the directory from
 
1305
  which ``bzr selftest`` was run.  (Martin Pool, #422350)
 
1306
 
 
1307
* Tests no longer fail if "close() called during concurrent
 
1308
  operation on the same file object" occurs when closing the log file
 
1309
  (which can happen if a thread tries to write to the log file at the
 
1310
  wrong moment).  An warning will be written to ``stderr`` when this
 
1311
  happens, and another warning will be written if the log file could not
 
1312
  be closed after retrying 100 times.  (Andrew Bennetts, #531746)
 
1313
 
 
1314
bzr 2.1.3
 
1315
#########
 
1316
 
 
1317
:Codename: Do run run
 
1318
:2.1.3: NOT RELEASED YET
 
1319
 
 
1320
Compatibility Breaks
 
1321
********************
 
1322
 
 
1323
New Features
 
1324
************
 
1325
 
 
1326
Bug Fixes
 
1327
*********
 
1328
 
 
1329
* ``bzr add SYMLINK/FILE`` now works properly when the symlink points to a
 
1330
  previously-unversioned directory within the tree: the directory is
 
1331
  marked versioned too.  
 
1332
  (Martin Pool, #192859)
 
1333
 
 
1334
* Configuration files in ``${BZR_HOME}`` are now written in an atomic
 
1335
  way which should help avoid problems with concurrent writers.
 
1336
  (Vincent Ladeuil, #525571)
 
1337
 
 
1338
* Don't traceback trying to unversion children files of an already
 
1339
  unversioned directory.  (Vincent Ladeuil, #494221)
 
1340
 
 
1341
* Fix ``AttributeError on parent.children`` when adding a file under a 
 
1342
  directory that was a symlink in the previous commit.
 
1343
  (Martin Pool, #192859)
 
1344
 
 
1345
* Prevent ``CHKMap.apply_delta`` from generating non-canonical CHK maps,
 
1346
  which can result in "missing referenced chk root keys" errors when
 
1347
  fetching from repositories with affected revisions.
 
1348
  (Andrew Bennetts, #522637)
 
1349
 
 
1350
* Progress bars prefer to truncate the text message rather than the
 
1351
  counters.  The spinner is shown between the network transfer indicator
 
1352
  and the progress message.  (Martin Pool)
 
1353
 
 
1354
* Raise ValueError instead of a string exception.
 
1355
  (John Arbash Meinel, #586926)
 
1356
 
 
1357
* Recursive binding for checkouts is now detected by bzr. A clear error
 
1358
  message is shown to the user. (Parth Malwankar, #405192)
 
1359
 
 
1360
Improvements
 
1361
************
 
1362
 
 
1363
* Add ``bzrlib.merge.MergeIntoMerger``, which can merge part or all of a
 
1364
  tree, and works with unrelated branches.  (Andrew Bennetts)
 
1365
 
 
1366
Documentation
 
1367
*************
 
1368
 
 
1369
* ``bzr help patterns`` now explains case insensitive patterns and
 
1370
  points to Python regular expression documentation.
 
1371
  (Parth Malwankar, #594386)
 
1372
 
 
1373
API Changes
 
1374
***********
 
1375
 
 
1376
* Delete ``ProgressTask.note``, which was deprecated in 2.1.
 
1377
 
 
1378
Internals
 
1379
*********
 
1380
 
 
1381
Testing
 
1382
*******
 
1383
 
 
1384
* Unit test added to ensure that "message" is not uses as a format variable
 
1385
  name in BzrError subclasses as this conflicts with some Python versions.
 
1386
  (Parth Malwankar, #603461)
 
1387
 
 
1388
bzr 2.1.2
 
1389
#########
 
1390
 
 
1391
:2.1.2: 2010-05-28
 
1392
 
 
1393
This release fixes two critical networking issues with older servers and
 
1394
with interrupted system call errors when pushing or pulling.  We recommend
 
1395
upgrading to anyone running a 2.1.x version of bzr.
 
1396
 
 
1397
Bug Fixes
 
1398
*********
 
1399
 
 
1400
* ``bzr clean-tree`` should not delete nested bzrdirs. Required for proper
 
1401
  support of bzr-externals and scmproj plugins.
 
1402
  (Alexander Belchenko, bug #572098)
 
1403
 
 
1404
* ``bzr switch`` does not die if a ConfigurableFileMerger is used.
 
1405
  (Aaron Bentley, #559436)
 
1406
 
 
1407
* Do not register a SIGWINCH signal handler, instead just poll for the
 
1408
  terminal width as needed.  This avoids the "Interrupted System Call"
 
1409
  problems that occur on POSIX with all currently released versions of
 
1410
  Python.
 
1411
  (Andrew Bennetts, #583941)
 
1412
 
 
1413
* Fixed ``AssertionError`` when accessing smart servers running Bazaar
 
1414
  versions before 1.6.
 
1415
  (Andrew Bennetts, #528041)
 
1416
 
 
1417
* Reset ``siginterrupt`` flag to False every time we handle a signal
 
1418
  installed with ``set_signal_handler(..., restart_syscall=True)`` (from
 
1419
  ``bzrlib.osutils``.  Reduces the likelihood of "Interrupted System Call"
 
1420
  errors compared to registering ``signal.signal`` directly.
 
1421
  (Andrew Bennetts)
 
1422
 
 
1423
* Reduce peak memory by one copy of compressed text.
 
1424
  (John Arbash Meinel, #566940)
 
1425
 
 
1426
* Support Pyrex 0.9.9, required changing how we handle exceptions in Pyrex.
 
1427
  (John Arbash Meinel, #582656)
 
1428
 
 
1429
* When passing a file to ``UTF8DirReader`` make sure to close the current
 
1430
  directory file handle after the chdir fails. Otherwise when passing many
 
1431
  filenames into a command line ``bzr status`` we would leak descriptors.
 
1432
  (John Arbash Meinel, #583486)
 
1433
 
 
1434
Internals
 
1435
*********
 
1436
 
 
1437
* ``_remember_remote_is_before`` no longer raises AssertionError when
 
1438
  suboptimal network behaviour is noticed; instead it just mutters to the
 
1439
  log file (and warns the user if they have set the ``hpss`` debug flag).
 
1440
  This was causing unnecessary aborts for performance bugs that are minor
 
1441
  at worst.
 
1442
  (Andrew Bennetts, #528041)
 
1443
 
 
1444
 
 
1445
bzr 2.1.1
 
1446
#########
 
1447
 
 
1448
:2.1.1: 2010-03-24
 
1449
 
 
1450
This is a small bugfix release.  Upgrading is recommended for anyone
 
1451
running 2.1.0 or earlier.
 
1452
 
 
1453
Bug Fixes
 
1454
*********
 
1455
 
 
1456
* Allow syscalls to automatically restart when ``TextUIFactory``'s
 
1457
  SIGWINCH handler is invoked, avoiding ``EINTR`` errors during blocking
 
1458
  IO, which are often poorly handled by Python's libraries and parts of
 
1459
  bzrlib.  (Andrew Bennetts, #496813)
 
1460
 
 
1461
* Avoid ``malloc(0)`` in ``patiencediff``, which is non-portable.
 
1462
  (Martin Pool, #331095)
 
1463
 
 
1464
* Fix plugin packaging on Windows. (Ian Clatworthy, #524162)
 
1465
 
 
1466
* Fix stub sftp test server to call os.getcwdu().
 
1467
  (Vincent Ladeuil, #526221, #526353)
 
1468
 
 
1469
* Fixed CHM generation by moving the NEWS section template into
 
1470
  a separate file. (Ian Clatworthy, #524184)
 
1471
 
 
1472
* Merge correctly when this_tree is not a WorkingTree.  (Aaron Bentley)
 
1473
 
 
1474
* Register SIGWINCH handler only when creating a ``TextUIFactory``; avoids
 
1475
  problems importing bzrlib from a non-main thread.
 
1476
  (Elliot Murphy, #521989)
 
1477
 
 
1478
* Repositories accessed via a smart server now reject being stacked on a
 
1479
  repository in an incompatible format, as is the case when accessing them
 
1480
  via other methods.  This was causing fetches from those repositories via
 
1481
  a smart server (e.g. using ``bzr branch``) to receive invalid data.
 
1482
  (Andrew Bennetts, #562380)
 
1483
 
 
1484
* Standardize the error handling when creating a new ``StaticTuple``
 
1485
  (problems will raise TypeError). (Matt Nordhoff, #457979)
 
1486
 
 
1487
* Warn if pyrex is too old to compile the new ``SimpleSet`` and
 
1488
  ``StaticTuple`` extensions, rather than having the build fail randomly.
 
1489
  (John Arbash Meinel, #449776)
 
1490
 
 
1491
Documentation
 
1492
*************
 
1493
 
 
1494
* Added a link to the Desktop Guide. (Ian Clatworthy)
 
1495
 
 
1496
* Added What's New in Bazaar 2.1 document. (Ian Clatworthy)
 
1497
 
 
1498
* Drop Google Analytics from the core docs as they caused problems
 
1499
  in the CHM files. (Ian Clatworthy, #502010)
 
1500
 
 
1501
API Changes
 
1502
***********
 
1503
 
 
1504
* Added ``bzrlib.osutils.set_signal_handler``, a convenience function that
 
1505
  can set a signal handler and call ``signal.siginterrupt(signum,
 
1506
  False)`` for it, if the platform and Python version supports it.
 
1507
  (Andrew Bennetts, #496813)
 
1508
 
 
1509
 
 
1510
bzr 2.1.0
 
1511
#########
 
1512
 
 
1513
:Codename: Strasbourg
 
1514
:2.1.0: 2010-02-11
 
1515
 
 
1516
This release marks our second long-term-stable series. The Bazaar team
 
1517
has decided that we will continue to make bugfix-only 2.0.x and 2.1.x
 
1518
releases, along with 2.2 development releases. 
 
1519
 
 
1520
This is a fairly incremental update, focusing on polish and bugfixing.
 
1521
There are no changes for supported disk formats. Key updates include
 
1522
reduced memory consumption for many operations, a new per-file merge
 
1523
hook, ignore patterns can now include '!' to exclude files, globbing
 
1524
support for all commands on Windows, and support for addressing home
 
1525
directories via ``bzr+ssh://host/~/`` syntax.
 
1526
 
 
1527
Users are encouraged to upgrade from the 2.0 stable series.
 
1528
 
 
1529
Bug Fixes
 
1530
*********
 
1531
 
 
1532
* Don't require testtools to use sftp.
 
1533
  (Vincent Ladeuil, #516183)
 
1534
 
 
1535
* Fix "AttributeError in Inter1and2Helper" during fetch.
 
1536
  (Martin Pool, #513432)
 
1537
 
 
1538
* ``bzr update`` performs the two merges in a more logical order and will stop
 
1539
  when it encounters conflicts.  
 
1540
  (Gerard Krol, #113809)
 
1541
 
 
1542
* Give a better error message when doing ``bzr bind`` in an already bound
 
1543
  branch.  (Neil Martinsen-Burrell, #513063)
 
1544
 
 
1545
* Ignore ``KeyError`` from ``remove_index`` during ``_abort_write_group``
 
1546
  in a pack repository, which can happen harmlessly if the abort occurs during
 
1547
  finishing the write group.  Also use ``bzrlib.cleanup`` so that any
 
1548
  other errors that occur while aborting the individual packs won't be
 
1549
  hidden by secondary failures when removing the corresponding indices.
 
1550
  (Andrew Bennetts, #423015)
 
1551
 
 
1552
* Set the mtime of files exported to a directory by ``bzr export`` all to
 
1553
  the same value to avoid confusing ``make`` and other date-based build
 
1554
  systems. (Robert Collins, #515631)
 
1555
 
 
1556
Improvements
 
1557
************
 
1558
 
 
1559
* Fetching into experimental formats will now print a warning. (Jelmer
 
1560
  Vernooij)
 
1561
 
 
1562
API Changes
 
1563
***********
 
1564
 
 
1565
* ``Repository.deserialise_inventory`` has been renamed to 
 
1566
  ``Repository._deserialise_inventory`` to indicate it is private.
 
1567
  (Jelmer Vernooij)
 
1568
 
 
1569
* ``Repository.get_inventory_xml`` has been renamed to 
 
1570
  ``Repository._get_inventory_xml`` to indicate it is private. 
 
1571
  (Jelmer Vernooij)
 
1572
 
 
1573
* ``Repository.serialise_inventory`` has been renamed to 
 
1574
  ``Repository._serialise_inventory`` to indicate it is private.
 
1575
 
 
1576
* Using the ``bzrlib.chk_map`` module from within multiple threads at the
 
1577
  same time was broken due to race conditions with a module level page
 
1578
  cache. This shows up as a KeyError in the ``bzrlib.lru_cache`` code with
 
1579
  ``bzrlib.chk_map`` in the backtrace, and can be triggered without using
 
1580
  the same high level objects such as ``bzrlib.repository.Repository``
 
1581
  from different threads. chk_map now uses a thread local cache which may
 
1582
  increase memory pressure on processes using threads.
 
1583
  (Robert Collins, John Arbash Meinel, #514090)
 
1584
 
 
1585
* The new ``merge_file_content`` should now be ok with tests to avoid
 
1586
  regressions.
 
1587
  (Vincent Ladeuil, #515597)
 
1588
 
 
1589
Internals
 
1590
*********
 
1591
 
 
1592
* Use ``bzrlib.cleanup`` rather than less robust ``try``/``finally``
 
1593
  blocks in several places in ``bzrlib.merge``.  This avoids masking prior
 
1594
  errors when errors like ``ImmortalPendingDeletion`` occur during cleanup
 
1595
  in ``do_merge``.
 
1596
  (Andrew Bennetts, #517275)
 
1597
 
 
1598
API Changes
 
1599
***********
 
1600
 
 
1601
* The ``remove_index`` method of
 
1602
  ``bzrlib.repofmt.pack_repo.AggregateIndex`` no longer takes a ``pack``
 
1603
  argument.  This argument was always ignored.
 
1604
  (Andrew Bennetts, #423015)
 
1605
 
 
1606
bzr 2.1.0rc2
 
1607
############
 
1608
 
 
1609
:Codename: after the bubbles
 
1610
:2.1.0rc2: 2010-01-29
 
1611
 
 
1612
This is a quick-turn-around to update a small issue with our new per-file
 
1613
merge hook. We expect no major changes from this to the final 2.1.0.
 
1614
 
 
1615
API Changes
 
1616
***********
 
1617
 
 
1618
* The new ``merge_file_content`` hook point has been altered to provide a
 
1619
  better API where state for extensions can be stored rather than the
 
1620
  too-simple function based approach. This fixes a performance regression
 
1621
  where branch configuration would be parsed per-file during merge. As
 
1622
  part of this the included news_merger has been refactored into a base
 
1623
  helper class ``bzrlib.merge.ConfigurableFileMerger``.
 
1624
  (Robert Collins, John Arbash Meinel, #513822)
 
1625
 
 
1626
 
 
1627
bzr 2.1.0rc1
 
1628
############
 
1629
 
 
1630
:Codename: the 'new' stable
 
1631
:2.1.0rc1: 2009-01-21
 
1632
 
 
1633
This is the first stable release candidate for Bazaar's 2.1 series. From
 
1634
this point onwards, the 2.1 series will be considered stable (as the 2.0
 
1635
series) and only bugfixes are expected to be incorporated. The dozen or so
 
1636
bugfixes in the 2.0.4 release are also included in this release (along
 
1637
with more than 15 more bugfixes). Some of the interesting features are
 
1638
support for per-file merge hooks, ``bzr unshelve --preview``, support
 
1639
for using ! in ignore files to exclude files from being ignored, a small
 
1640
memory leak was squashed, and many ``ObjectNotLocked`` errors were fixed.
 
1641
This looks to be a very good start for a new stable series.
 
1642
 
 
1643
 
 
1644
New Features
 
1645
************
 
1646
 
 
1647
* Add bug information to log output when available.
 
1648
  (Neil Martinsen-Burrell, Guillermo Gonzalez, #251729)
 
1649
 
 
1650
* Added ``merge_file_content`` hook point to ``Merger``, allowing plugins
 
1651
  to register custom merge logic, e.g. to provide smarter merging for
 
1652
  particular files.
 
1653
 
 
1654
* Bazaar now includes the ``news_merge`` plugin.  It is disabled by
 
1655
  default, to enable it add a ``news_merge_files`` option to your
 
1656
  configuration.  Consult ``bzr help news_merge`` for more information.
 
1657
  (Andrew Bennetts)
 
1658
  
 
1659
* ``bzr branch`` now takes a ``--bind`` option. This lets you
 
1660
  branch and bind all in one command. (Ian Clatworthy)
 
1661
 
 
1662
* ``bzr switch`` now takes a ``--revision`` option, to allow switching to
 
1663
  a specific revision of a branch. (Daniel Watkins, #183559)
 
1664
 
 
1665
* ``bzr unshelve --preview`` can now be used to show how a patch on the
 
1666
  shelf would be applied to the working tree.
 
1667
  (Guilherme Salgado, #308122)
 
1668
 
 
1669
* ``bzr update`` now takes a ``--revision`` argument. This lets you
 
1670
  change the revision of the working tree to any revision in the
 
1671
  ancestry of the current or master branch. (Matthieu Moy, Mark Hammond,
 
1672
  Martin Pool, #45719)
 
1673
 
 
1674
* ``-Dbytes`` can now be used to display the total number of bytes
 
1675
  transferred for the current command. This information is always logged
 
1676
  to ``.bzr.log`` for later inspection. (John Arbash Meinel)
 
1677
 
 
1678
* New ignore patterns.  Patterns prefixed with '!' are exceptions to 
 
1679
  ignore patterns and take precedence over regular ignores.  Such 
 
1680
  exceptions are used to specify files that should be versioned which 
 
1681
  would otherwise be ignored.  Patterns prefixed with '!!' act as regular 
 
1682
  ignore patterns, but have highest precedence, even over the '!' 
 
1683
  exception patterns. (John Whitley, #428031)
 
1684
 
 
1685
* The ``supress_warnings`` configuration option has been introduced to disable
 
1686
  various warnings (it currently only supports the ``format_deprecation``
 
1687
  warning). The new option can be set in any of the following locations:
 
1688
  ``bazaar.conf``, ``locations.conf`` and/or ``branch.conf``.
 
1689
  (Ted Gould, Matthew Fuller, Vincent Ladeuil)
 
1690
 
 
1691
Bug Fixes
 
1692
*********
 
1693
 
 
1694
* Always show a message if an OS error occurs while trying to run a
 
1695
  user-specified commit message editor.
 
1696
  (Martin Pool, #504842)
 
1697
 
 
1698
* ``bzr diff`` will now use the epoch when it is unable to determine 
 
1699
  the timestamp of a file, if the revision it was introduced in is a
 
1700
  ghost. (Jelmer Vernooij, #295611)
 
1701
 
 
1702
* ``bzr switch -b`` can now create branches that are located using directory
 
1703
  services such as ``lp:``, even when the branch name doesn't contain a
 
1704
  '/'.  (Neil Martinsen-Burrell, #495263)
 
1705
 
 
1706
* ``bzr unshelve`` has improved messages about what it is doing.
 
1707
  (Neil Martinsen-Burrell, #496917)
 
1708
 
 
1709
* Concurrent autopacking is more resilient to already-renamed pack files.
 
1710
  If we find that a file we are about to obsolete is already obsoleted, we
 
1711
  do not try to rename it, and we leave the file in ``obsolete_packs``.
 
1712
  The code is also fault tolerant if a file goes missing, assuming that
 
1713
  another process already removed the file.
 
1714
  (John Arbash Meinel, Gareth White, #507557)
 
1715
 
 
1716
* Fix "Too many concurrent requests" in reconcile when network connection
 
1717
  fails.  (Andrew Bennetts, #503878)
 
1718
 
 
1719
* Fixed a side effect mutation of ``RemoteBzrDirFormat._network_name``
 
1720
  that caused some tests to fail when run in a non-default order.
 
1721
  Probably no user impact.  (Martin Pool, #504102)
 
1722
 
 
1723
* Fixed ``ObjectNotLocked`` error in ``bzr cat -rbranch:../foo FILE``.
 
1724
  (Andrew Bennetts, #506274)
 
1725
 
 
1726
* FTP transports support Unicode paths by encoding/decoding them as utf8.
 
1727
  (Vincent Ladeuil, #472161)
 
1728
 
 
1729
* Listen to the SIGWINCH signal to update the terminal width.
 
1730
  (Vincent Ladeuil, #316357)
 
1731
 
 
1732
* Progress bars are now hidden when ``--quiet`` is given.
 
1733
  (Martin Pool, #320035)
 
1734
 
 
1735
* ``SilentUIFactory`` now supports ``make_output_stream`` and discards
 
1736
  whatever is written to it.  This un-breaks some plugin tests that
 
1737
  depended on this behaviour.
 
1738
  (Martin Pool, #499757)
 
1739
 
 
1740
* When operations update the working tree, all affected files should end
 
1741
  up with the same mtime. (eg. when versioning a generated file, if you
 
1742
  update the source and the generated file together, the generated file
 
1743
  should appear up-to-date.)
 
1744
  (John Arbash Meinel, Martin <gzlist>, #488724)
 
1745
 
 
1746
Improvements
 
1747
************
 
1748
 
 
1749
* Added ``add_cleanup`` and ``cleanup_now`` to ``bzrlib.command.Command``.
 
1750
  All the builtin commands now use ``add_cleanup`` rather than
 
1751
  ``try``/``finally`` blocks where applicable as it is simpler and more
 
1752
  robust.  (Andrew Bennetts)
 
1753
 
 
1754
* All except a small number of storage formats are now hidden, making
 
1755
  the help for numerous commands far more digestible. (Ian Clatworthy)
 
1756
 
 
1757
* Attempts to open a shared repository as a branch (e.g. ``bzr branch
 
1758
  path/to/repo``) will now include "location is a repository" as a hint in
 
1759
  the error message.  (Brian de Alwis, Andrew Bennetts, #440952)
 
1760
 
 
1761
* Push will now inform the user when they are trying to push to a foreign 
 
1762
  VCS for which roundtripping is not supported, and will suggest them to 
 
1763
  use dpush. (Jelmer Vernooij)
 
1764
 
 
1765
* The version of bzr being run is now written to the log file.
 
1766
  (__monty__, #257170)
 
1767
 
 
1768
* Transport network activity indicator is shown more of the time when
 
1769
  Bazaar is doing network IO.
 
1770
  (Martin Pool)
 
1771
 
 
1772
Documentation
 
1773
*************
 
1774
 
 
1775
* Add documentation on creating merges with more than one parent.
 
1776
  (Neil Martinsen-Burrell, #481526)
 
1777
 
 
1778
* Better explain the --uncommitted option of merge.
 
1779
  (Neil Martinsen-Burrell, #505088)
 
1780
 
 
1781
* Improve discussion of pending merges in the documentation for
 
1782
  ``revert``.  (Neil Martinsen-Burrell, #505093)
 
1783
 
 
1784
* Improved help for ``bzr send``. 
 
1785
  (Martin Pool, Bojan Nikolic)
 
1786
 
 
1787
* There is a System Administrator's Guide in ``doc/en/admin-guide``,
 
1788
  including discussions of installation, relevant plugins, security and 
 
1789
  backup. (Neil Martinsen-Burrell)
 
1790
 
 
1791
* The ``conflicts`` help topic has been renamed to ``conflict-types``.
 
1792
  (Ian Clatworthy)
 
1793
 
 
1794
* The User Reference is now presented as a series of topics.
 
1795
  Many of the included topics have link and format tweaks applied.
 
1796
  (Ian Clatworthy)
 
1797
 
 
1798
API Changes
 
1799
***********
 
1800
 
 
1801
* Added ``cachedproperty`` decorator to ``bzrlib.decorators``.
 
1802
  (Andrew Bennetts)
 
1803
 
 
1804
* Many test features were renamed from ``FooFeature`` to ``foo_feature``
 
1805
  to be consistent with instances being lower case and classes being
 
1806
  CamelCase. For the features that were more likely to be used, we added a
 
1807
  deprecation thunk, but not all. (John Arbash Meinel)
 
1808
 
 
1809
* Merger classes (such as ``Merge3Merger``) now expect a ``this_branch``
 
1810
  parameter in their constructors, and provide ``this_branch`` as an
 
1811
  attribute. (Andrew Bennetts)
 
1812
  
 
1813
* The Branch hooks pre_change_branch_tip no longer masks exceptions raised
 
1814
  by plugins - the original exceptions are now preserved. (Robert Collins)
 
1815
 
 
1816
* The Transport ``Server.tearDown`` method is now renamed to
 
1817
  ``stop_server`` and ``setUp`` to ``start_server`` for consistency with
 
1818
  our normal naming pattern, and to avoid confusion with Python's
 
1819
  ``TestCase.tearDown``.  (Martin Pool)
 
1820
 
 
1821
* ``WorkingTree.update`` implementations must now accept a ``revision``
 
1822
  parameter.
 
1823
 
 
1824
Internals
 
1825
*********
 
1826
 
 
1827
* Added ``BzrDir.open_branchV3`` smart server request, which can receive
 
1828
  a string of details (such as "location is a repository") as part of a
 
1829
  ``nobranch`` response.  (Andrew Bennetts, #440952)
 
1830
  
 
1831
* New helper osutils.UnicodeOrBytesToBytesWriter which encodes unicode
 
1832
  objects but passes str objects straight through. This is used for
 
1833
  selftest but may be useful for diff and other operations that generate
 
1834
  mixed output. (Robert Collins)
 
1835
 
 
1836
* New exception ``NoRoundtrippingSupport``, for use by foreign branch 
 
1837
  plugins. (Jelmer Vernooij)
 
1838
 
 
1839
Testing
 
1840
*******
 
1841
 
 
1842
* ``bzrlib.tests.permute_for_extension`` is a helper that simplifies
 
1843
  running all tests in the current module, once against a pure python
 
1844
  implementation, and once against an extension (pyrex/C) implementation.
 
1845
  It can be used to dramatically simplify the implementation of
 
1846
  ``load_tests``.  (John Arbash Meinel)
 
1847
 
 
1848
* ``bzrlib.tests.TestCase`` now subclasses ``testtools.testcase.TestCase``.
 
1849
  This permits features in testtools such as getUniqueInteger and
 
1850
  getUniqueString to be used. Because of this, testtools version 0.9.2 or
 
1851
  newer is now a dependency to run bzr selftest. Running with versions of
 
1852
  testtools less than 0.9.2 will cause bzr to error while loading the test
 
1853
  suite. (Robert Collins)
 
1854
 
 
1855
* Shell-like tests now support the command "mv" for moving files.  The
 
1856
  syntax for ``mv file1 file2``, ``mv dir1 dir2`` and ``mv file dir`` is
 
1857
  supported.  (Neil Martinsen-Burrell)
 
1858
 
 
1859
* The test progress bar no longer distinguishes tests that 'errored' from
 
1860
  tests that 'failed' - they're all just failures.
 
1861
  (Martin Pool)
 
1862
 
 
1863
bzr 2.0.6
 
1864
#########
 
1865
 
 
1866
:2.0.6: NOT RELEASED YET
 
1867
 
 
1868
Bug Fixes
 
1869
*********
 
1870
 
 
1871
* Additional merges after an unrelated branch has been merged with its
 
1872
  history no longer crash when deleted files are involved.
 
1873
  (Vincent Ladeuil, John Arbash Meinel, #375898)
 
1874
 
 
1875
* ``bzr add SYMLINK/FILE`` now works properly when the symlink points to a
 
1876
  previously-unversioned directory within the tree: the directory is
 
1877
  marked versioned too.  
 
1878
  (Martin Pool, #192859)
 
1879
 
 
1880
* ``bzr commit SYMLINK`` now works, rather than trying to commit the
 
1881
  target of the symlink.
 
1882
  (Martin Pool, John Arbash Meinel, #128562)
 
1883
 
 
1884
* ``bzr revert`` now only takes write lock on working tree, instead of on 
 
1885
  both working tree and branch.
 
1886
  (Danny van Heumen, #498409)
 
1887
 
 
1888
* ``bzr upgrade`` now creates the ``backup.bzr`` directory with the same
 
1889
  permissions as ``.bzr`` directory on a POSIX OS.
 
1890
  (Parth Malwankar, #262450)
 
1891
 
 
1892
* Don't traceback trying to unversion children files of an already
 
1893
  unversioned directory.  (Vincent Ladeuil, #494221)
 
1894
 
 
1895
* Fix ``AttributeError on parent.children`` when adding a file under a 
 
1896
  directory that was a symlink in the previous commit.
 
1897
  (Martin Pool, #192859)
 
1898
 
 
1899
* Prevent ``CHKMap.apply_delta`` from generating non-canonical CHK maps,
 
1900
  which can result in "missing referenced chk root keys" errors when
 
1901
  fetching from repositories with affected revisions.
 
1902
  (Andrew Bennetts, #522637)
 
1903
 
 
1904
* Raise ValueError instead of a string exception.
 
1905
  (John Arbash Meinel, #586926)
 
1906
 
 
1907
* Reduce peak memory by one copy of compressed text.
 
1908
  (John Arbash Meinel, #566940)
 
1909
 
 
1910
* Repositories accessed via a smart server now reject being stacked on a
 
1911
  repository in an incompatible format, as is the case when accessing them
 
1912
  via other methods.  This was causing fetches from those repositories via
 
1913
  a smart server (e.g. using ``bzr branch``) to receive invalid data.
 
1914
  (Andrew Bennetts, #562380)
 
1915
 
 
1916
* Selftest with versions of subunit that support ``stopTestRun`` will no longer
 
1917
  error. This error was caused by 2.0 not being updated when upstream
 
1918
  python merged the end of run patch, which chose ``stopTestRun`` rather than
 
1919
  ``done``. (Robert Collins, #571437)
 
1920
 
 
1921
* When passing a file to ``UTF8DirReader`` make sure to close the current
 
1922
  directory file handle after the chdir fails. Otherwise when passing many
 
1923
  filenames into a command line ``bzr status`` we would leak descriptors.
 
1924
  (John Arbash Meinel, #583486)
 
1925
 
 
1926
 
 
1927
Testing
 
1928
*******
 
1929
 
 
1930
* ``build_tree_contents`` can create symlinks.
 
1931
  (Martin Pool, John Arbash Meinel)
 
1932
 
 
1933
 
 
1934
bzr 2.0.5
 
1935
#########
 
1936
 
 
1937
:2.0.5: 2010-03-23
 
1938
 
 
1939
This fifth release in our 2.0 series addresses several user-inconvenience
 
1940
bugs.  None are critical, but upgrading is recommended for all users on
 
1941
earlier 2.0 releases.
 
1942
 
 
1943
Bug Fixes
 
1944
*********
 
1945
 
 
1946
* Avoid ``malloc(0)`` in ``patiencediff``, which is non-portable.
 
1947
  (Martin Pool, #331095)
 
1948
 
 
1949
* Concurrent autopacking is more resilient to already-renamed pack files.
 
1950
  If we find that a file we are about to obsolete is already obsoleted, we
 
1951
  do not try to rename it, and we leave the file in ``obsolete_packs``.
 
1952
  The code is also fault tolerant if a file goes missing, assuming that
 
1953
  another process already removed the file.
 
1954
  (John Arbash Meinel, Gareth White, #507557)
 
1955
 
 
1956
* Cope with the lockdir ``held/info`` file being empty, which seems to
 
1957
  happen fairly often if the process is suddenly interrupted while taking
 
1958
  a lock.
 
1959
  (Martin Pool, #185103)
 
1960
 
 
1961
* Give the warning about potentially slow cross-format fetches much
 
1962
  earlier on in the fetch operation.  Don't show this message during
 
1963
  upgrades, and show the correct format indication for remote
 
1964
  repositories.
 
1965
  (Martin Pool, #456077, #515356, #513157)
 
1966
 
 
1967
* Handle renames correctly when there are files or directories that 
 
1968
  differ only in case.  (Chris Jones, Martin Pool, #368931)
 
1969
 
 
1970
* If ``bzr push --create-prefix`` triggers an unexpected ``NoSuchFile``
 
1971
  error, report that error rather than failing with an unhelpful
 
1972
  ``UnboundLocalError``.
 
1973
  (Andrew Bennetts, #423563)
 
1974
 
 
1975
* Running ``bzr`` command without any arguments now shows bzr
 
1976
  version number along with rest of the help text.
 
1977
  (Parth Malwankar, #369501)
 
1978
 
 
1979
* Use osutils.O_NOINHERIT for some files on win32 to avoid PermissionDenied
 
1980
  errors.
 
1981
  (Inada Naoki, #524560)
 
1982
 
 
1983
Documentation
 
1984
*************
 
1985
 
 
1986
* Added ``location-alias`` help topic.
 
1987
  (Andrew Bennetts, #337834)
 
1988
 
 
1989
* Fixed CHM generation by moving the NEWS section template into
 
1990
  a separate file. (Ian Clatworthy, #524184)
 
1991
 
 
1992
 
 
1993
bzr 2.0.4
 
1994
#########
 
1995
 
 
1996
:Codename: smooth sailing
 
1997
:2.0.4: 2010-01-21
 
1998
 
 
1999
The fourth bugfix-only release in the 2.0 series contains more than a
 
2000
dozen bugfixes relative to 2.0.3. The primary focus is on handling
 
2001
interruptions and concurrent operations more cleanly, there is also a fair
 
2002
improvement to ``bzr export`` when exporting a remote branch.
 
2003
 
 
2004
 
 
2005
Bug Fixes
 
2006
*********
 
2007
 
 
2008
* ``bzr annotate`` on another branch with ``-r branch:...`` no longer
 
2009
  fails with an ``ObjectNotLocked`` error.  (Andrew Bennetts, #496590)
 
2010
 
 
2011
* ``bzr export dir`` now requests all file content as a record stream,
 
2012
  rather than requsting the file content one file-at-a-time. This can make
 
2013
  exporting over the network significantly faster (54min => 9min in one
 
2014
  case). (John Arbash Meinel, #343218)
 
2015
 
 
2016
* ``bzr serve`` no longer slowly leaks memory. The compiled
 
2017
  ``bzrlib.bencode.Encoder()`` class was using ``__del__`` to cleanup and
 
2018
  free resources, and it should have been using ``__dealloc__``.
 
2019
  This will likely have an impact on any other process that is serving for
 
2020
  an extended period of time.  (John Arbash Meinel, #494406)
 
2021
 
 
2022
* Check for SIGINT (Ctrl-C) and other signals immediately if ``readdir``
 
2023
  returns ``EINTR`` by calling ``PyErr_CheckSignals``.  This affected the
 
2024
  optional ``_readdir_pyx`` extension.  (Andrew Bennetts, #495023)
 
2025
 
 
2026
* Concurrent autopacks will no longer lose a newly created pack file.
 
2027
  There was a race condition, where if the reload happened at the right
 
2028
  time, the second packer would forget the name of the newly added pack
 
2029
  file. (John Arbash Meinel, Gareth White, #507566)
 
2030
 
 
2031
* Give a clearer message if the lockdir disappears after being apparently
 
2032
  successfully taken.  (Martin Pool, #498378)
 
2033
 
 
2034
* Give a warning when fetching between repositories (local or remote) with
 
2035
  sufficiently different formats that the content will need to be
 
2036
  serialized (ie ``InterDifferingSerializer`` or ``inventory-deltas``), so
 
2037
  the user has a clue that upgrading could make it faster.
 
2038
  (Martin Pool, #456077)
 
2039
 
 
2040
* If we fail to open ``~/.bzr.log`` write a clear message to stderr rather
 
2041
  than using ``warning()``. The log file is opened before logging is set
 
2042
  up, and it leads to very confusing: 'no handlers for "bzr"' messages for
 
2043
  users, rather than something nicer.
 
2044
  (John Arbash Meinel, Barry Warsaw, #503886)
 
2045
 
 
2046
* Refuse to build with any Pyrex 0.9.4 release, as they have known bugs.
 
2047
  (Martin Pool, John Arbash Meinel, #449372)
 
2048
 
 
2049
* ``setup.py bdist_rpm`` now properly finds extra files needed for the
 
2050
  build. (there is still the distutils bug
 
2051
  http://bugs.python.org/issue644744) (Joe Julian, #175839)
 
2052
 
 
2053
* The 2a format wasn't properly restarting autopacks when something
 
2054
  changed underneath it (like another autopack). Now concurrent
 
2055
  autopackers will properly succeed. (John Arbash Meinel, #495000)
 
2056
 
 
2057
* ``TreeTransform`` can now handle when a delta says that the file id for
 
2058
  the tree root changes. Rather than trying to rename your working
 
2059
  directory, or failing early saying that you can't have multiple
 
2060
  tree roots. This also fixes revert, update, and pull when the root id
 
2061
  changes.  (John Arbash Meinel, #494269, #504390)
 
2062
 
 
2063
* ``_update_current_block`` no longer suppresses exceptions, so ^C at just
 
2064
  the right time will get propagated, rather than silently failing to move
 
2065
  the block pointer. (John Arbash Meinel, Gareth White, #495023)
 
2066
 
 
2067
Testing
 
2068
*******
 
2069
 
 
2070
* We have a new ``test_source`` that ensures all pyrex ``cdef`` functions
 
2071
  handle exceptions somehow. (Possibly by setting ``# cannot_raise``
 
2072
  rather than an ``except ?:`` clause.) This should help prevent bugs like
 
2073
  bug #495023. (John Arbash Meinel)
 
2074
 
 
2075
 
 
2076
bzr 2.1.0b4
 
2077
###########
 
2078
 
 
2079
:Codename: san francisco airport
 
2080
:2.1.0b4: 2009-12-14
 
2081
 
 
2082
The fourth beta release in the 2.1 series brings with it a significant
 
2083
number of bugfixes (~20). The test suite is once again (finally) "green"
 
2084
on Windows, and should remain that way for future releases. There are a
 
2085
few performance related updates (faster upgrade and log), and several UI
 
2086
tweaks. There has also been a significant number of tweaks to the runtime
 
2087
documentation. 2.1.0b4 include everything from the 2.0.3 release.
 
2088
 
 
2089
 
 
2090
Compatibility Breaks
 
2091
********************
 
2092
 
 
2093
* The BZR_SSH environmental variable may now be set to the path of a secure
 
2094
  shell client. If currently set to the value ``ssh`` it will now guess the
 
2095
  vendor of the program with that name, to restore the old behaviour that
 
2096
  indicated the SSH Corporation client use ``sshcorp`` instead as the magic
 
2097
  string. (Martin <gzlist@googlemail.com>, #176292)
 
2098
 
 
2099
New Features
 
2100
************
 
2101
 
 
2102
* ``bzr commit`` now has a ``--commit-time`` option.
 
2103
  (Alexander Sack, #459276)
 
2104
 
 
2105
* ``-Dhpss`` now increases logging done when run on the bzr server,
 
2106
  similarly to how it works on the client. (John Arbash Meinel)
 
2107
 
 
2108
* New option ``bzr unshelve --keep`` applies the changes and leaves them
 
2109
  on the shelf.  (Martin Pool, Oscar Fuentes, #492091)
 
2110
 
 
2111
* The ``BZR_COLUMNS`` envrionment variable can be set to force bzr to
 
2112
  respect a given terminal width. This can be useful when output is
 
2113
  redirected or in obscure cases where the default value is not
 
2114
  appropriate. Pagers can use it to get a better control of the line
 
2115
  lengths. 
 
2116
  (Vincent Ladeuil)
 
2117
 
 
2118
* The new command ``bzr lp-mirror`` will request that Launchpad update its
 
2119
  mirror of a local branch. This command will only function if launchpadlib
 
2120
  is installed.
 
2121
  (Jonathan Lange)
 
2122
 
 
2123
 
 
2124
Bug Fixes
 
2125
*********
 
2126
 
 
2127
* After renaming a file, the dirstate could accidentally reference
 
2128
  ``source\\path`` rather than ``source/path`` on Windows. This might be a
 
2129
  source of some dirstate-related failures. (John Arbash Meinel)
 
2130
 
 
2131
* ``bzr commit`` now detects commit messages that looks like file names
 
2132
  and issues a warning.
 
2133
  (Gioele Barabucci, #73073)
 
2134
 
 
2135
* ``bzr ignore /`` no longer causes an IndexError. (Gorden Tyler, #456036)
 
2136
 
 
2137
* ``bzr log -n0 -rN`` should not return revisions beyond its merged revisions.
 
2138
  (#325618, #484109, Marius Kruger)
 
2139
 
 
2140
* ``bzr merge --weave`` and ``--lca`` will now create ``.BASE`` files for
 
2141
  files with conflicts (similar to ``--merge3``). The contents of the file
 
2142
  is a synthesis of all bases used for the merge.
 
2143
  (John Arbash Meinel, #40412)
 
2144
 
 
2145
* ``bzr mv --quiet`` really is quiet now.  (Gordon Tyler, #271790)
 
2146
 
 
2147
* ``bzr serve`` is more clear about the risk of supplying --allow-writes.
 
2148
  (Robert Collins, #84659)
 
2149
 
 
2150
* ``bzr serve --quiet`` really is quiet now.  (Gordon Tyler, #252834)
 
2151
 
 
2152
* Fix bug with redirected URLs over authenticated HTTP.
 
2153
  (Glen Mailer, Neil Martinsen-Burrell, Vincent Ladeuil, #395714)
 
2154
 
 
2155
* Interactive merge doesn't leave branch locks behind.  (Aaron Bentley)
 
2156
 
 
2157
* Lots of bugfixes for the test suite on Windows. We should once again
 
2158
  have a test suite with no failures on Windows. (John Arbash Meinel)
 
2159
 
 
2160
* ``osutils.terminal_width()`` obeys the BZR_COLUMNS environment
 
2161
  variable but returns None if the terminal is not a tty (when output is
 
2162
  redirected for example). Also fixes its usage under OSes that doesn't
 
2163
  provide termios.TIOCGWINSZ. Make sure the corresponding tests runs on
 
2164
  windows too.
 
2165
  (Joke de Buhr, Vincent Ladeuil, #353370, #62539)
 
2166
  (John Arbash Meinel, Vincent Ladeuil, #492561)
 
2167
 
 
2168
* Terminate ssh subprocesses when no references to them remain, fixing
 
2169
  subprocess and file descriptor leaks.  (Andrew Bennetts, #426662)
 
2170
  
 
2171
* The ``--hardlink`` option of ``bzr branch`` and ``bzr checkout`` now
 
2172
  works for 2a format trees.  Only files unaffected by content filters
 
2173
  will be hardlinked.  (Andrew Bennetts, #408193)
 
2174
 
 
2175
* The new glob expansion on Windows would replace all ``\`` characters
 
2176
  with ``/`` even if it there wasn't a glob to expand, the arg was quoted,
 
2177
  etc. Now only change slashes if there is something being glob expanded.
 
2178
  (John Arbash Meinel, #485771)
 
2179
 
 
2180
* Use our faster ``KnownGraph.heads()`` functionality when computing the
 
2181
  new rich-root heads. This can cut a conversion time in half (mysql from
 
2182
  13.5h => 6.2h) (John Arbash Meinel, #487632)
 
2183
 
 
2184
* When launching a external diff tool via bzr diff --using, temporary files
 
2185
  are no longer created, rather, the path to the file in the working tree is
 
2186
  passed to the external diff tool. This allows the file to be edited if the
 
2187
  diff tool provides for this. (Gary van der Merwe, #490738)
 
2188
  
 
2189
* The launchpad-open command can now be used from a subdirectory of a
 
2190
  branch, not just from the root of the branch. 
 
2191
  (Neil Martinsen-Burrell, #489102)
 
2192
 
 
2193
 
 
2194
Improvements
 
2195
************
 
2196
 
 
2197
* ``bzr log`` is now faster. (Ian Clatworthy)
 
2198
 
 
2199
* ``bzr update`` provides feedback on which branch it is up to date with.
 
2200
  (Neil Martinsen-Burrell)
 
2201
 
 
2202
* ``bzr upgrade`` from pre-2a to 2a can be significantly faster (4x).
 
2203
  For details see the xml8 patch and heads() improvements.
 
2204
  (John Arbash Meinel)
 
2205
 
 
2206
* ``bzrlib.urlutils.local_path_from_url`` now accepts
 
2207
  'file://localhost/' as well as 'file:///' URLs on POSIX.  (Michael
 
2208
  Hudson)
 
2209
 
 
2210
* The progress bar now shows only a spinner and per-operation counts,
 
2211
  not an overall progress bar.  The previous bar was often not correlated
 
2212
  with real overall operation progress, either because the operations take
 
2213
  nonlinear time, or because at the start of the operation Bazaar couldn't
 
2214
  estimate how much work there was to do.  (Martin Pool)
 
2215
 
 
2216
Documentation
 
2217
*************
 
2218
 
 
2219
* Lots of documentation tweaks for inline help topics and command help
 
2220
  information.
 
2221
 
 
2222
API Changes
 
2223
***********
 
2224
 
 
2225
* ``bzrlib.textui`` (vestigial module) removed.  (Martin Pool)
 
2226
 
 
2227
* The Launchpad plugin now has a function ``login`` which will log in to
 
2228
  Launchpad with launchpadlib, and ``load_branch`` which will return the
 
2229
  Launchpad Branch object corresponding to a given Bazaar Branch object.
 
2230
  (Jonathan Lange)
 
2231
 
 
2232
Internals
 
2233
*********
 
2234
 
 
2235
* New test Feature: ``ModuleAvailableFeature``. It is designed to make it
 
2236
  easier to handle what tests you want to run based on what modules can be
 
2237
  imported. (Rather than lots of custom-implemented features that were
 
2238
  basically copy-and-pasted.) (John Arbash Meinel)
 
2239
 
 
2240
* ``osutils.timer_func()`` can be used to get either ``time.time()`` or
 
2241
  ``time.clock()`` when you want to do performance timing.
 
2242
  ``time.time()`` is limited to 15ms resolution on Windows, but
 
2243
  ``time.clock()`` gives CPU and not wall-clock time on other platforms.
 
2244
  (John Arbash Meinel)
 
2245
 
 
2246
* Several code paths that were calling ``Transport.get().read()`` have
 
2247
  been changed to the equalivent ``Transport.get_bytes()``. The main
 
2248
  difference is that the latter will explicitly call ``file.close()``,
 
2249
  rather than expecting the garbage collector to handle it. This helps
 
2250
  with some race conditions on Windows during the test suite and sftp
 
2251
  tests. (John Arbash Meinel)
 
2252
 
 
2253
Testing
 
2254
*******
 
2255
 
 
2256
* TestCaseWithMemoryTransport no longer sets $HOME and $BZR_HOME to
 
2257
  unicode strings. (Michael Hudson, #464174)
 
2258
 
 
2259
 
 
2260
bzr 2.0.3
 
2261
#########
 
2262
 
 
2263
:Codename: little italy
 
2264
:2.0.3: 2009-12-14
 
2265
 
 
2266
 
 
2267
The third stable release of Bazaar has a small handful of bugfixes. As
 
2268
expected, this has no internal or external compatibility changes versus
 
2269
2.0.2 (or 2.0.0).
 
2270
 
 
2271
Bug Fixes
 
2272
*********
 
2273
 
 
2274
* ``bzr push --use-existing-dir`` no longer crashes if the directory
 
2275
  exists but contains an invalid ``.bzr`` directory.
 
2276
  (Andrew Bennetts, #423563)
 
2277
 
 
2278
* Content filters are now applied correctly after pull, merge and switch.
 
2279
  (Ian Clatworthy, #385879)
 
2280
 
 
2281
* Fix a potential segfault in the groupcompress hash map handling code.
 
2282
  When inserting new entries, if the final hash bucket was empty, we could
 
2283
  end up trying to access if ``(last_entry+1)->ptr == NULL``.
 
2284
  (John Arbash Meinel, #490228)
 
2285
 
 
2286
* Improve "Binary files differ" hunk handling.  (Aaron Bentley, #436325)
 
2287
 
 
2288
 
 
2289
bzr 2.1.0b3
 
2290
###########
 
2291
 
 
2292
:Codename: after sprint recovery
 
2293
:2.1.0b3: 2009-11-16
 
2294
 
 
2295
This release was pushed up from its normal release cycle due to a
 
2296
regression in python 2.4 compatibility in 2.1.0b2.  Since this regression
 
2297
was caught before 2.1.0b2 was officially announced, the full changelog
 
2298
includes both 2.1.0b3 and 2.1.0b2 changes.
 
2299
 
 
2300
Highlights of 2.1.0b3 are: new globbing code for all commands on Windows,
 
2301
the test suite now conforms to python's trunk enhanced semantics (skip,
 
2302
etc.), and ``bzr info -v`` will now report the correct branch and repo
 
2303
formats for Remote objects.
 
2304
 
 
2305
 
 
2306
New Features
 
2307
************
 
2308
 
 
2309
* Users can define a shelve editor to provide shelf functionality at a
 
2310
  granularity finer than per-patch-hunk. (Aaron Bentley)
 
2311
 
 
2312
Bug Fixes
 
2313
*********
 
2314
 
 
2315
* Fix for shell completion and short options.  (Benoît PIERRE)
 
2316
 
 
2317
* Fix ``bzr --profile-imports`` with Python 2.6.  (Martin Pool)
 
2318
 
 
2319
* Hooks daughter classes should always call the base constructor.
 
2320
  (Alexander Belchenko, Vincent Ladeuil, #389648) 
 
2321
 
 
2322
* Improve "Binary files differ" hunk handling.  (Aaron Bentley, #436325)
 
2323
 
 
2324
* On Windows, do glob expansion at the command-line level (as is usually
 
2325
  done in bash, etc.) This means that *all* commands get glob expansion
 
2326
  (bzr status, bzr add, bzr mv, etc). It uses a custom command line
 
2327
  parser, which allows us to know if a given section was quoted. It means
 
2328
  you can now do ``bzr ignore "*.py"``.
 
2329
  (John Arbash Meinel, #425510, #426410, #194450)
 
2330
 
 
2331
* Sanitize commit messages that come in from the '-m' flag. We translate
 
2332
  '\r\n' => '\n' and a plain '\r' => '\n'. The storage layer doesn't
 
2333
  allow those because XML store silently translate it anyway. (The parser
 
2334
  auto-translates \r\n => \n in ways that are hard for us to catch.)
 
2335
 
 
2336
* Show correct branch and repository format descriptions in 
 
2337
  ``bzr info -v`` on a smart server location.  (Andrew Bennetts, #196080)
 
2338
 
 
2339
* The fix for bug #186920 accidentally broke compatibility with python
 
2340
  2.4.  (Vincent Ladeuil, #475585)
 
2341
 
 
2342
* Using ``Repository.get_commit_builder().record_iter_changes()`` now
 
2343
  correctly sets ``self.inv_sha1`` to a sha1 string and
 
2344
  ``self.new_inventory`` to an Inventory instance after calling
 
2345
  ``self.finish_inventory()``. (Previously it accidently set both values
 
2346
  as a tuple on ``self.inv_sha1``. This was missed because
 
2347
  ``repo.add_revision`` ignores the supplied inventory sha1 and recomputes
 
2348
  the sha1 from the repo directly. (John Arbash Meinel)
 
2349
 
 
2350
* Shelve command refuse to run if there is no real terminal.
 
2351
  (Alexander Belchenko)
 
2352
 
 
2353
* Avoid unnecessarily flushing of trace file; it's now unbuffered at the
 
2354
  Python level.  (Martin Pool)
 
2355
 
 
2356
Documentation
 
2357
*************
 
2358
 
 
2359
* Include Japanese translations for documentation (Inada Naoki)
 
2360
 
 
2361
* New API ``ui_factory.make_output_stream`` to be used for sending bulk
 
2362
  (rather than user-interaction) data to stdout.  This automatically
 
2363
  coordinates with progress bars or other terminal activity, and can be
 
2364
  overridden by GUIs.
 
2365
  (Martin Pool, 493944)
 
2366
 
 
2367
Internals
 
2368
*********
 
2369
 
 
2370
* Some of the core groupcompress functionality now releases the GIL before
 
2371
  operation. Similar to how zlib and bz2 operate without the GIL in the
 
2372
  core compression and decompression routines. (John Arbash Meinel)
 
2373
 
 
2374
Testing
 
2375
*******
 
2376
 
 
2377
* -Dhpssvfs will now trigger on ``RemoteBzrDir._ensure_real``, providing
 
2378
  more debugging of VFS access triggers. (Robert Collins)
 
2379
 
 
2380
* KnownFailure is now signalled to ``ExtendedTestResult`` using the same
 
2381
  method that Python 2.7 uses - ``addExpectedFailure``. (Robert Collins)
 
2382
 
 
2383
* ``--parallel=fork`` is now compatible with --subunit.
 
2384
  (Robert Collins, Vincent Ladeuil, #419776)
 
2385
 
 
2386
* Reporting of failures shows test ids not descriptions and thus shows
 
2387
  parameterised tests correctly. (Robert Collins)
 
2388
 
 
2389
* TestNotApplicable is now handled within the TestCase.run method rather
 
2390
  than being looked for within ``ExtendedTestResult.addError``. This
 
2391
  provides better handling with other ``TestResult`` objects, degrading to
 
2392
  sucess rather than error. (Robert Collins)
 
2393
 
 
2394
* The private method ``_testConcluded`` on ``ExtendedTestResult`` has been
 
2395
  removed - it was empty and unused. (Robert Collins)
 
2396
 
 
2397
* UnavailableFeature is now handled within the TestCase.run method rather
 
2398
  than being looked for within addError. If the Result object does not
 
2399
  have an addNotSupported method, addSkip is attempted instead, and
 
2400
  failing that addSuccess. (Robert Collins)
 
2401
 
 
2402
* When a TestResult does not have an addSkip method, skipped tests are now
 
2403
  reported as successful tests, rather than as errors. This change is
 
2404
  to make it possible to get a clean test run with a less capable
 
2405
  TestResult. (Robert Collins)
 
2406
 
 
2407
 
 
2408
 
 
2409
bzr 2.1.0b2
 
2410
###########
 
2411
 
 
2412
:Codename: a load off my mind
 
2413
:2.1.0b2: 2009-11-02
 
2414
 
 
2415
This is our second feature-filled release since 2.0, pushing us down the
 
2416
path to a 2.1.0. Once again, all bugfixes in 2.0.2 are present in 2.1.0b2.
 
2417
 
 
2418
Key highlights in this release are: improved handling of
 
2419
failures-during-cleanup for commit, fixing a long-standing bug with
 
2420
``bzr+http`` and shared repositories, all ``lp:`` urls to be resolved
 
2421
behind proxies, and a new StaticTuple datatype, allowing us to reduce
 
2422
memory consumption (50%) and garbage collector overhead (40% faster) for
 
2423
many operations.
 
2424
 
 
2425
* A new ``--concurrency`` option has been added as well as an associated
 
2426
  BZR_CONCURRENCY environment variable to specify the number of
 
2427
  processes that can be run concurrently when running ``bzr selftest``. The
 
2428
  command-line option overrides the environment variable if both are
 
2429
  specified. If none is specified. the number of processes is obtained
 
2430
  from the OS as before.  (Matt Nordhoff, Vincent Ladeuil)
 
2431
 
 
2432
Bug Fixes
 
2433
*********
 
2434
 
 
2435
* ``bzr+http`` servers no longer give spurious jail break errors when
 
2436
  serving branches inside a shared repository.  (Andrew Bennetts, #348308)
 
2437
 
 
2438
* Errors during commit are handled more robustly so that knock-on errors
 
2439
  are less likely to occur, and will not obscure the original error if
 
2440
  they do occur.  This fixes some causes of ``TooManyConcurrentRequests``
 
2441
  and similar errors.  (Andrew Bennetts, #429747, #243391)
 
2442
 
 
2443
* Launchpad urls can now be resolved from behind proxies.
 
2444
  (Gordon Tyler, Vincent Ladeuil, #186920)
 
2445
 
 
2446
* Reduce the strictness for StaticTuple, instead add a debug flag
 
2447
  ``-Dstatic_tuple`` which will change apis to be strict and raise errors.
 
2448
  This way, most users won't see failures, but developers can improve
 
2449
  internals. (John Arbash Meinel, #471193)
 
2450
 
 
2451
* TreeTransform.adjust_path updates the limbo paths of descendants of adjusted
 
2452
  files.  (Aaron Bentley)
 
2453
 
 
2454
* Unicode paths are now handled correctly and consistently by the smart
 
2455
  server.  (Andrew Bennetts, Michael Hudson, #458762)
 
2456
 
 
2457
Improvements
 
2458
************
 
2459
 
 
2460
* When reading index files, we now use a ``StaticTuple`` rather than a
 
2461
  plain ``tuple`` object. This generally gives a 20% decrease in peak
 
2462
  memory, and can give a performance boost up to 40% on large projects.
 
2463
  (John Arbash Meinel)
 
2464
 
 
2465
* Peak memory under certain operations has been reduced significantly.
 
2466
  (eg, 'bzr branch launchpad standalone' is cut in half)
 
2467
  (John Arbash Meinel)
 
2468
 
 
2469
Documentation
 
2470
*************
 
2471
 
 
2472
* Filtered views user documentation upgraded to refer to format 2a
 
2473
  instead of pre-2.0 formats. (Ian Clatworthy)
 
2474
 
 
2475
API Changes
 
2476
***********
 
2477
 
 
2478
* Remove deprecated ``CLIUIFactory``.  (Martin Pool)
 
2479
 
 
2480
* ``UIFactory`` now has new ``show_error``, ``show_message`` and
 
2481
  ``show_warning`` methods, which can be hooked by non-text UIs.  
 
2482
  (Martin Pool)
 
2483
 
 
2484
Internals
 
2485
*********
 
2486
 
 
2487
* Added ``bzrlib._simple_set_pyx``. This is a hybrid between a Set and a
 
2488
  Dict (it only holds keys, but you can lookup the object located at a
 
2489
  given key). It has significantly reduced memory consumption versus the
 
2490
  builtin objects (1/2 the size of Set, 1/3rd the size of Dict). This is
 
2491
  used as the interning structure for StaticTuple objects.
 
2492
  (John Arbash Meinel)
 
2493
 
 
2494
* ``bzrlib._static_tuple_c.StaticTuple`` is now available and used by
 
2495
  the btree index parser and the chk map parser. This class functions
 
2496
  similarly to ``tuple`` objects. However, it can only point to a limited
 
2497
  collection of types.  (Currently StaticTuple, str, unicode, None, bool,
 
2498
  int, long, float, but not subclasses).  This allows us to remove it from
 
2499
  the garbage collector (it cannot be in a cycle), it also allows us to
 
2500
  intern the objects. In testing, this can reduce peak memory by 20-40%,
 
2501
  and significantly improve performance by removing objects from being
 
2502
  inspected by the garbage collector.  (John Arbash Meinel)
 
2503
 
 
2504
* ``GroupCompressBlock._ensure_content()`` will now release the
 
2505
  ``zlib.decompressobj()`` when the first request is for all of the
 
2506
  content. (Previously it would only be released if you made a request for
 
2507
  part of the content, and then all of it later.) This turns out to be a
 
2508
  significant memory savings, as a ``zstream`` carries around approx 260kB
 
2509
  of internal state and buffers. (For branching bzr.dev this drops peak
 
2510
  memory from 382MB => 345MB.) (John Arbash Meinel)
 
2511
 
 
2512
* When streaming content between ``2a`` format repositories, we now clear
 
2513
  caches from earlier versioned files. (So 'revisions' is cleared when we
 
2514
  start reading 'inventories', etc.) This can have a significant impact on
 
2515
  peak memory for initial copies (~200MB). (John Arbash Meinel)
 
2516
 
 
2517
 
 
2518
bzr 2.0.2
 
2519
#########
 
2520
 
 
2521
:Codename: after the scare
 
2522
:2.0.2: 2009-11-02
 
2523
 
 
2524
The second in our "let's keep the stable bugfixes flowing" series. As
 
2525
expected this has a few (~9) bugfixes relative to 2.0.1, and no major api
 
2526
changes or features.
 
2527
 
 
2528
Bug Fixes
 
2529
*********
 
2530
 
 
2531
* Avoid "NoneType has no attribute st_mode" error when files disappear
 
2532
  from a directory while it's being read.  (Martin Pool, #446033)
 
2533
 
 
2534
* Content filters are now applied correctly after revert.
 
2535
  (Ian Clatworthy)
 
2536
 
 
2537
* Diff parsing handles "Binary files differ" hunks.  (Aaron Bentley, #436325)
 
2538
 
 
2539
* Fetching from stacked pre-2a repository via a smart server no longer
 
2540
  fails intermittently with "second push failed to complete".
 
2541
  (Andrew Bennetts, #437626)
 
2542
 
 
2543
* Fix typos left after test_selftest refactoring.
 
2544
  (Vincent Ladeuil, Matt Nordhoff, #461149)
 
2545
 
 
2546
* Fixed ``ObjectNotLocked`` errors during ``bzr log -r NNN somefile``.
 
2547
  (Andrew Bennetts, #445171)
 
2548
  
 
2549
* PreviewTree file names are not limited by the encoding of the temp
 
2550
  directory's filesystem. (Aaron Bentley, #436794)
 
2551
 
 
2552
Improvements
 
2553
************
 
2554
 
 
2555
* ``bzr log`` now read-locks branches exactly once, so makes better use of
 
2556
  data caches.  (Andrew Bennetts)
 
2557
 
 
2558
Documentation
 
2559
*************
 
2560
 
 
2561
* Filtered views user documentation upgraded to refer to format 2a
 
2562
  instead of pre-2.0 formats. (Ian Clatworthy)
 
2563
 
 
2564
 
 
2565
bzr 2.1.0b1
 
2566
###########
 
2567
 
 
2568
:Codename: While the cat is away
 
2569
:2.1.0b1: 2009-10-14
 
2570
 
 
2571
This is the first development release in the new split "stable" and
 
2572
"development" series. As such, the release is a snapshot of bzr.dev
 
2573
without creating a release candidate first. This release includes a
 
2574
fair amount of internal changes, with deprecated code being removed,
 
2575
and several new feature developments. People looking for a stable code
 
2576
base with only bugfixes should focus on the 2.0.1 release. All bugfixes
 
2577
present in 2.0.1 are present in 2.1.0b1.
 
2578
 
 
2579
Highlights include support for ``bzr+ssh://host/~/homedir`` style urls,
 
2580
finer control over the plugin search path via extended BZR_PLUGIN_PATH
 
2581
syntax, visible warnings when extension modules fail to load, and improved
 
2582
error handling during unlocking.
 
2583
 
 
2584
 
 
2585
New Features
 
2586
************
 
2587
 
 
2588
* Bazaar can now send mail through Apple OS X Mail.app. 
 
2589
  (Brian de Alwis)
 
2590
 
 
2591
* ``bzr+ssh`` and ``bzr`` paths can now be relative to home directories
 
2592
  specified in the URL.  Paths starting with a path segment of ``~`` are
 
2593
  relative to the home directory of the user running the server, and paths
 
2594
  starting with ``~user`` are relative to the home directory of the named
 
2595
  user.  For example, for a user "bob" with a home directory of
 
2596
  ``/home/bob``, these URLs are all equivalent:
 
2597
 
 
2598
  * ``bzr+ssh://bob@host/~/repo``
 
2599
  * ``bzr+ssh://bob@host/~bob/repo``
 
2600
  * ``bzr+ssh://bob@host/home/bob/repo``
 
2601
 
 
2602
  If ``bzr serve`` was invoked with a ``--directory`` argument, then no
 
2603
  home directories outside that directory will be accessible via this
 
2604
  method.
 
2605
 
 
2606
  This is a feature of ``bzr serve``, so pre-2.1 clients will
 
2607
  automatically benefit from this feature when ``bzr`` on the server is
 
2608
  upgraded.  (Andrew Bennetts, #109143)
 
2609
 
 
2610
* Extensions can now be compiled if either Cython or Pyrex is available.
 
2611
  Currently Pyrex is preferred, but that may change in the future.
 
2612
  (Arkanes)
 
2613
 
 
2614
* Give more control on BZR_PLUGIN_PATH by providing a way to refer to or
 
2615
  disable the user, site and core plugin directories.
 
2616
  (Vincent Ladeuil, #412930, #316192, #145612)
 
2617
 
 
2618
Bug Fixes
 
2619
*********
 
2620
 
 
2621
* Bazaar's native protocol code now correctly handles EINTR, which most
 
2622
  noticeably occurs if you break in to the debugger while connected to a
 
2623
  bzr+ssh server.  You can now can continue from the debugger (by typing
 
2624
  'c') and the process continues.  However, note that pressing C-\ in the
 
2625
  shell may still kill the SSH process, which is bug 162509, so you must
 
2626
  sent a signal to the bzr process specifically, for example by typing
 
2627
  ``kill -QUIT PID`` in another shell.  (Martin Pool, #341535)
 
2628
 
 
2629
* ``bzr add`` in a tree that has files with ``\r`` or ``\n`` in the
 
2630
  filename will issue a warning and skip over those files.
 
2631
  (Robert Collins, #3918)
 
2632
 
 
2633
* ``bzr dpush`` now aborts if uncommitted changes (including pending merges)
 
2634
  are present in the working tree. The configuration option ``dpush_strict``
 
2635
  can be used to set the default for this behavior.
 
2636
  (Vincent Ladeuil, #438158)
 
2637
 
 
2638
* ``bzr merge`` and ``bzr remove-tree`` now requires --force if pending
 
2639
  merges are present in the working tree.
 
2640
  (Vincent Ladeuil, #426344)
 
2641
 
 
2642
* Clearer message when Bazaar runs out of memory, instead of a ``MemoryError``
 
2643
  traceback.  (Martin Pool, #109115)
 
2644
 
 
2645
* Don't give a warning on Windows when failing to import ``_readdir_pyx``
 
2646
  as it is never built. (John Arbash Meinel, #430645)
 
2647
 
 
2648
* Don't restrict the command name used to run the test suite.
 
2649
  (Vincent Ladeuil, #419950)
 
2650
 
 
2651
* ftp transports were built differently when the kerberos python module was
 
2652
  present leading to obscure failures related to ASCII/BINARY modes.
 
2653
  (Vincent Ladeuil, #443041)
 
2654
 
 
2655
* Network streams now decode adjacent records of the same type into a
 
2656
  single stream, reducing layering churn. (Robert Collins)
 
2657
 
 
2658
* PreviewTree behaves correctly when get_file_mtime is invoked on an unmodified
 
2659
  file. (Aaron Bentley, #251532)
 
2660
 
 
2661
* Registry objects should not use iteritems() when asked to use items().
 
2662
  (Vincent Ladeuil, #430510)
 
2663
 
 
2664
* Weave based repositories couldn't be cloned when committers were using
 
2665
  domains or user ids embedding '.sig'. Now they can.
 
2666
  (Matthew Fuller, Vincent Ladeuil, #430868)
 
2667
 
 
2668
Improvements
 
2669
************
 
2670
 
 
2671
* Revision specifiers can now be given in a more DWIM form, without
 
2672
  needing explicit prefixes for specifiers like tags or revision id's.
 
2673
  See ``bzr help revisionspec`` for full details.  (Matthew Fuller)
 
2674
 
 
2675
* Bazaar gives a warning before exiting, and writes into ``.bzr.log``, if 
 
2676
  compiled extensions can't be loaded.  This typically indicates a
 
2677
  packaging or installation problem.  In this case Bazaar will keep
 
2678
  running using pure-Python versions, but this may be substantially
 
2679
  slower.  The warning can be disabled by setting
 
2680
  ``ignore_missing_extensions = True`` in ``bazaar.conf``.
 
2681
  See also <https://answers.launchpad.net/bzr/+faq/703>.
 
2682
  (Martin Pool, #406113, #430529)
 
2683
 
 
2684
* Secondary errors that occur during Branch.unlock and Repository.unlock
 
2685
  no longer obscure the original error.  These methods now use a new
 
2686
  decorator, ``only_raises``.  This fixes many causes of
 
2687
  ``TooManyConcurrentRequests`` and similar errors.
 
2688
  (Andrew Bennetts, #429747)
 
2689
 
 
2690
Documentation
 
2691
*************
 
2692
 
 
2693
* Describe the new shell-like test feature. (Vincent Ladeuil)
 
2694
 
 
2695
* Help on hooks no longer says 'Not deprecated' for hooks that are
 
2696
  currently supported. (Ian Clatworthy, #422415)
 
2697
 
 
2698
API Changes
 
2699
***********
 
2700
 
 
2701
* ``bzrlib.user_encoding`` has been removed; use
 
2702
  ``bzrlib.osutils.get_user_encoding`` instead.  (Martin Pool)
 
2703
 
 
2704
* ``bzrlib.tests`` now uses ``stopTestRun`` for its ``TestResult``
 
2705
  subclasses - the same as python's unittest module. (Robert Collins)
 
2706
  
 
2707
* ``diff._get_trees_to_diff`` has been renamed to 
 
2708
  ``diff.get_trees_and_branches_to_diff``. It is now a public API, and it 
 
2709
  returns the old and new branches. (Gary van der Merwe)
 
2710
 
 
2711
* ``bzrlib.trace.log_error``, ``error`` and ``info`` have been deprecated.
 
2712
  (Martin Pool)
 
2713
 
 
2714
* ``MutableTree.has_changes()`` does not require a tree parameter anymore. It
 
2715
  now defaults to comparing to the basis tree. It now checks for pending
 
2716
  merges too.  ``Merger.check_basis`` has been deprecated and replaced by the
 
2717
  corresponding has_changes() calls. ``Merge.compare_basis``,
 
2718
  ``Merger.file_revisions`` and ``Merger.ensure_revision_trees`` have also
 
2719
  been deprecated.
 
2720
  (Vincent Ladeuil, #440631)
 
2721
 
 
2722
* ``ProgressTask.note`` is deprecated.
 
2723
  (Martin Pool)
 
2724
 
 
2725
Internals
 
2726
*********
 
2727
 
 
2728
* Added ``-Drelock`` debug flag.  It will ``note`` a message every time a
 
2729
  repository or branch object is unlocked then relocked the same way.
 
2730
  (Andrew Bennetts)
 
2731
  
 
2732
* ``BTreeLeafParser.extract_key`` has been tweaked slightly to reduce
 
2733
  mallocs while parsing the index (approx 3=>1 mallocs per key read).
 
2734
  This results in a 10% speedup while reading an index.
 
2735
  (John Arbash Meinel)
 
2736
 
 
2737
* The ``bzrlib.lsprof`` module has a new class ``BzrProfiler`` which makes
 
2738
  profiling in some situations like callbacks and generators easier.
 
2739
  (Robert Collins)
 
2740
 
 
2741
Testing
 
2742
*******
 
2743
 
 
2744
* Passing ``--lsprof-tests -v`` to bzr selftest will cause lsprof output to
 
2745
  be output for every test. Note that this is very verbose! (Robert Collins)
 
2746
 
 
2747
* Setting ``BZR_TEST_PDB=1`` when running selftest will cause a pdb
 
2748
  post_mortem to be triggered when a test failure occurs. (Robert Collins)
 
2749
 
 
2750
* Shell-like tests can now be written. Code in ``bzrlib/tests/script.py`` ,
 
2751
  documentation in ``developers/testing.txt`` for details.
 
2752
  (Vincent Ladeuil)
 
2753
 
 
2754
* Some tests could end up with the same id, that was dormant for
 
2755
  a long time.
 
2756
  (Vincent Ladeuil, #442980)
 
2757
 
 
2758
* Stop showing the number of tests due to missing features in the test
 
2759
  progress bar.  (Martin Pool)
 
2760
 
 
2761
* Test parameterisation now does a shallow copy, not a deep copy of the test
 
2762
  to be parameterised. This is not expected to break external use of test
 
2763
  parameterisation, and is substantially faster. (Robert Collins)
 
2764
 
 
2765
* Tests that try to open a bzr dir on an arbitrary transport will now
 
2766
  fail unless they have explicitly permitted the transport via
 
2767
  ``self.permit_url``. The standard test factories such as ``self.get_url``
 
2768
  will permit the urls they provide automatically, so only exceptional
 
2769
  tests should need to do this. (Robert Collins)
 
2770
 
 
2771
* The break-in test no longer cares about clean shutdown of the child,
 
2772
  instead it is happy if the debugger starts up. (Robert  Collins)
 
2773
 
 
2774
* The full test suite is expected to pass when the C extensions are not
 
2775
  present. (Vincent Ladeuil, #430749)
 
2776
 
 
2777
 
 
2778
bzr 2.0.1
 
2779
#########
 
2780
 
 
2781
:Codename: Stability First
 
2782
:2.0.1: 2009-10-14
 
2783
 
 
2784
The first of our new ongoing bugfix-only stable releases has arrived. It
 
2785
includes a collection of 12 bugfixes applied to bzr 2.0.0, but does not
 
2786
include any of the feature development in the 2.1.0 series.
 
2787
 
 
2788
 
 
2789
Bug Fixes
 
2790
*********
 
2791
 
 
2792
* ``bzr add`` in a tree that has files with ``\r`` or ``\n`` in the
 
2793
  filename will issue a warning and skip over those files.
 
2794
  (Robert Collins, #3918)
 
2795
 
 
2796
* bzr will attempt to authenticate with SSH servers that support
 
2797
  ``keyboard-interactive`` auth but not ``password`` auth when using
 
2798
  Paramiko.   (Andrew Bennetts, #433846)
 
2799
 
 
2800
* Fixed fetches from a stacked branch on a smart server that were failing
 
2801
  with some combinations of remote and local formats.  This was causing
 
2802
  "unknown object type identifier 60" errors.  (Andrew Bennetts, #427736)
 
2803
 
 
2804
* Fixed ``ObjectNotLocked`` errors when doing some log and diff operations
 
2805
  on branches via a smart server.  (Andrew Bennetts, #389413)
 
2806
 
 
2807
* Handle things like ``bzr add foo`` and ``bzr rm foo`` when the tree is
 
2808
  at the root of a drive. ``osutils._cicp_canonical_relpath`` always
 
2809
  assumed that ``abspath()`` returned a path that did not have a trailing
 
2810
  ``/``, but that is not true when working at the root of the filesystem.
 
2811
  (John Arbash Meinel, Jason Spashett, #322807)
 
2812
 
 
2813
* Hide deprecation warnings for 'final' releases for python2.6.
 
2814
  (John Arbash Meinel, #440062)
 
2815
 
 
2816
* Improve the time for ``bzr log DIR`` for 2a format repositories.
 
2817
  We had been using the same code path as for <2a formats, which required
 
2818
  iterating over all objects in all revisions.
 
2819
  (John Arbash Meinel, #374730)
 
2820
 
 
2821
* Make sure that we unlock the tree if we fail to create a TreeTransform
 
2822
  object when doing a merge, and there is limbo, or pending-deletions
 
2823
  directory.  (Gary van der Merwe, #427773)
 
2824
 
 
2825
* Occasional IndexError on renamed files have been fixed. Operations that
 
2826
  set a full inventory in the working tree will now go via the
 
2827
  apply_inventory_delta code path which is simpler and easier to
 
2828
  understand than dirstates set_state_from_inventory method. This may
 
2829
  have a small performance impact on operations built on _write_inventory,
 
2830
  but such operations are already doing full tree scans, so no radical
 
2831
  performance change should be observed. (Robert Collins, #403322)
 
2832
 
 
2833
* Retrieving file text or mtime from a _PreviewTree has good performance when
 
2834
  there are many changes.  (Aaron Bentley)
 
2835
 
 
2836
* The CHK index pages now use an unlimited cache size. With a limited
 
2837
  cache and a large project, the random access of chk pages could cause us
 
2838
  to download the entire cix file many times.
 
2839
  (John Arbash Meinel, #402623)
 
2840
 
 
2841
* When a file kind becomes unversionable after being added, a sensible
 
2842
  error will be shown instead of a traceback. (Robert Collins, #438569)
 
2843
 
 
2844
Documentation
 
2845
*************
 
2846
 
 
2847
* Improved README. (Ian Clatworthy)
 
2848
 
 
2849
* Improved upgrade documentation for Launchpad branches.
 
2850
  (Barry Warsaw)
 
2851
 
 
2852
 
 
2853
bzr 2.0.0
 
2854
#########
 
2855
 
 
2856
:2.0.0: 2009-09-22
 
2857
:Codename: Instant Karma
 
2858
 
 
2859
This release of Bazaar makes the 2a (previously 'brisbane-core') format
 
2860
the default when new branches or repositories are created.  This format is
 
2861
substantially smaller and faster for many operations.  Most of the work in
 
2862
this release focuses on bug fixes and stabilization, covering both 2a and
 
2863
previous formats.  (See the Upgrade Guide for information on migrating
 
2864
existing projects.)
 
2865
 
 
2866
This release also improves the documentation content and presentation,
 
2867
including adding Windows HtmlHelp manuals.
 
2868
 
 
2869
The Bazaar team decided that 2.0 will be a long-term supported release,
 
2870
with bugfix-only 2.0.x releases based on it, continuing for at least six
 
2871
months or until the following stable release.
 
2872
 
 
2873
Changes from 2.0.0rc2 to final
 
2874
******************************
 
2875
 
 
2876
* Officially branded as 2.0.0 rather than 2.0 to clarify between things
 
2877
  that "want to happen on the 2.0.x stable series" versus things that want
 
2878
  to "land in 2.0.0". (Changes how bzrlib._format_version_tuple() handles
 
2879
  micro = 0.) (John Arbash Meinel)
 
2880
 
 
2881
 
 
2882
bzr 2.0.0rc2
 
2883
############
 
2884
 
 
2885
:2.0.0rc2: 2009-09-10
 
2886
 
 
2887
New Features
 
2888
************
 
2889
 
 
2890
* Added post_commit hook for mutable trees. This allows the keywords
 
2891
  plugin to expand keywords on files changed by the commit.
 
2892
  (Ian Clatworthy, #408841)
 
2893
 
 
2894
Bug Fixes
 
2895
*********
 
2896
 
 
2897
* Bazaar's native protocol code now correctly handles EINTR, which most
 
2898
  noticeably occurs if you break in to the debugger while connected to a
 
2899
  bzr+ssh server.  You can now can continue from the debugger (by typing
 
2900
  'c') and the process continues.  However, note that pressing C-\ in the
 
2901
  shell may still kill the SSH process, which is bug 162509, so you must
 
2902
  sent a signal to the bzr process specifically, for example by typing
 
2903
  ``kill -QUIT PID`` in another shell.  (Martin Pool, #341535)
 
2904
 
 
2905
* ``bzr check`` in pack-0.92, 1.6 and 1.9 format repositories will no
 
2906
  longer report incorrect errors about ``Missing inventory ('TREE_ROOT', ...)``
 
2907
  (Robert Collins, #416732)
 
2908
 
 
2909
* ``bzr info -v`` on a 2a format still claimed that it was a "Development
 
2910
  format" (John Arbash Meinel, #424392)
 
2911
 
 
2912
* ``bzr log stacked-branch`` shows the full log including
 
2913
  revisions that are in the fallback repository. (Regressed in 2.0rc1).
 
2914
  (John Arbash Meinel, #419241)
 
2915
 
 
2916
* Clearer message when Bazaar runs out of memory, instead of a ``MemoryError``
 
2917
  traceback.  (Martin Pool, #109115)
 
2918
 
 
2919
* Conversion to 2a will create a single pack for all the new revisions (as
 
2920
  long as it ran without interruption). This improves both ``bzr upgrade``
 
2921
  and ``bzr pull`` or ``bzr merge`` from local branches in older formats.
 
2922
  The autopack logic that occurs every 100 revisions during local
 
2923
  conversions was not returning that pack's identifier, which resulted in
 
2924
  the partial packs created during the conversion not being consolidated
 
2925
  at the end of the conversion process. (Robert Collins, #423818)
 
2926
 
 
2927
* Fetches from 2a to 2a are now again requested in 'groupcompress' order.
 
2928
  Groups that are seen as 'underutilized' will be repacked on-the-fly.
 
2929
  This means that when the source is fully packed, there is minimal
 
2930
  overhead during the fetch, but if the source is poorly packed the result
 
2931
  is a fairly well packed repository (not as good as 'bzr pack' but
 
2932
  good-enough.) (Robert Collins, John Arbash Meinel, #402652)
 
2933
 
 
2934
* Fix a potential segmentation fault when doing 'log' of a branch that had
 
2935
  ghosts in its mainline.  (Evaluating None as a tuple is bad.)
 
2936
  (John Arbash Meinel, #419241)
 
2937
 
 
2938
* ``groupcompress`` sort order is now more stable, rather than relying on
 
2939
  ``topo_sort`` ordering. The implementation is now
 
2940
  ``KnownGraph.gc_sort``. (John Arbash Meinel)
 
2941
 
 
2942
* Local data conversion will generate correct deltas. This is a critical
 
2943
  bugfix vs 2.0rc1, and all 2.0rc1 users should upgrade to 2.0rc2 before
 
2944
  converting repositories. (Robert Collins, #422849)
 
2945
 
 
2946
* Network streams now decode adjacent records of the same type into a
 
2947
  single stream, reducing layering churn. (Robert Collins)
 
2948
 
 
2949
* Prevent some kinds of incomplete data from being committed to a 2a
 
2950
  repository, such as revisions without inventories, a missing chk_bytes
 
2951
  record for an inventory, or a missing text referenced by an inventory.
 
2952
  (Andrew Bennetts, #423506, #406687)
 
2953
  
 
2954
Documentation
 
2955
*************
 
2956
 
 
2957
* Fix assertion error about "_remember_remote_is_before" when pushing to
 
2958
  older smart servers.
 
2959
  (Andrew Bennetts, #418931)
 
2960
 
 
2961
* Help on hooks no longer says 'Not deprecated' for hooks that are
 
2962
  currently supported. (Ian Clatworthy, #422415)
 
2963
 
 
2964
* PDF and CHM (Windows HtmlHelp) formats are now supported for the
 
2965
  user documentation. The HTML documentation is better broken up into
 
2966
  topics. (Ian Clatworthy)
 
2967
 
 
2968
* The developer and foreign language documents are now separated
 
2969
  out so that searching in the HTML and CHM files produces more
 
2970
  useful results. (Ian Clatworthy)
 
2971
 
 
2972
* The main table of contents now provides links to the new Migration Docs
 
2973
  and Plugins Guide. (Ian Clatworthy)
 
2974
 
 
2975
 
 
2976
bzr 2.0.0rc1
 
2977
############
 
2978
 
 
2979
:Codename: no worries
 
2980
:2.0.0rc1: 2009-08-26
 
2981
 
 
2982
Compatibility Breaks
 
2983
********************
 
2984
 
 
2985
* The default format for bzr is now ``2a``. This format brings many
 
2986
  significant performance and size improvements. bzr can pull from
 
2987
  any existing repository into a ``2a`` one, but can only transfer
 
2988
  from ``2a`` into ``rich-root`` repositories. The Upgrade guide
 
2989
  has more information about this change. (Robert Collins)
 
2990
 
 
2991
* On Windows auto-detection of Putty's plink.exe is disabled.
 
2992
  Default SSH client for Windows is paramiko. User still can force
 
2993
  usage of plink if explicitly set environment variable BZR_SSH=plink.
 
2994
  (#414743, Alexander Belchenko)
 
2995
 
 
2996
New Features
 
2997
************
 
2998
 
 
2999
* ``bzr branch --switch`` can now switch the checkout in the current directory
 
3000
  to the newly created branch. (Lukáš Lalinský)
 
3001
 
 
3002
Bug Fixes
 
3003
*********
 
3004
 
 
3005
* Further tweaks to handling of ``bzr add`` messages about ignored files.
 
3006
  (Jason Spashett, #76616)
 
3007
 
 
3008
* Fetches were being requested in 'groupcompress' order, but weren't
 
3009
  recombining the groups. Thus they would 'fragment' to get the correct
 
3010
  order, but not 'recombine' to actually benefit from it. Until we get
 
3011
  recombining to work, switching to 'unordered' fetches avoids the
 
3012
  fragmentation. (John Arbash Meinel, #402645)
 
3013
 
 
3014
* Fix a pycurl related test failure on karmic by recognizing an error
 
3015
  raised by newer versions of pycurl.
 
3016
  (Vincent Ladeuil, #306264)
 
3017
 
 
3018
* Fix a test failure on karmic by making a locale test more robust.
 
3019
  (Vincent Ladeuil, #413514)
 
3020
 
 
3021
* Fix IndexError printing CannotBindAddress errors.
 
3022
  (Martin Pool, #286871)
 
3023
 
 
3024
* Fix "Revision ... not present" errors when upgrading stacked branches,
 
3025
  or when doing fetches from a stacked source to a stacked target.
 
3026
  (Andrew Bennetts, #399140)
 
3027
 
 
3028
* ``bzr branch`` of 2a repositories over HTTP is much faster.  bzr now
 
3029
  batches together small fetches from 2a repositories, rather than
 
3030
  fetching only a few hundred bytes at a time.
 
3031
  (Andrew Bennetts, #402657)
 
3032
 
 
3033
Improvements
 
3034
************
 
3035
 
 
3036
* A better description of the platform is shown in crash tracebacks, ``bzr
 
3037
  --version`` and ``bzr selftest``.
 
3038
  (Martin Pool, #409137)
 
3039
 
 
3040
* bzr can now (again) capture crash data through the apport library, 
 
3041
  so that a single human-readable file can be attached to bug reports.
 
3042
  This can be disabled by using ``-Dno_apport`` on the command line, or by
 
3043
  putting ``no_apport`` into the ``debug_flags`` section of
 
3044
  ``bazaar.conf``.
 
3045
  (Martin Pool, Robert Collins, #389328)
 
3046
 
 
3047
* ``bzr push`` locally on windows will no longer give a locking error with
 
3048
  dirstate based formats. (Robert Collins)
 
3049
 
 
3050
* ``bzr shelve`` and ``bzr unshelve`` now work on windows.
 
3051
  (Robert Collins, #305006)
 
3052
 
 
3053
* Commit of specific files no longer prevents using the iter_changes
 
3054
  codepath. On 2a repositories, commit of specific files should now be as
 
3055
  fast, or slightly faster, than a full commit. (Robert Collins)
 
3056
 
 
3057
* The internal core code that handles specific file operations like
 
3058
  ``bzr st FILENAME`` or ``bzr commit FILENAME`` has been changed to
 
3059
  include the parent directories if they have altered, and when a
 
3060
  directory stops being a directory its children are always included. This
 
3061
  fixes a number of causes for ``InconsistentDelta`` errors, and permits
 
3062
  faster commit of specific paths. (Robert Collins, #347649)
 
3063
 
 
3064
Documentation
 
3065
*************
 
3066
 
 
3067
* New developer documentation for content filtering.
 
3068
  (Martin Pool)
 
3069
 
 
3070
API Changes
 
3071
***********
 
3072
 
 
3073
* ``bzrlib.shelf_ui`` has had the ``from_args`` convenience methods of its
 
3074
  classes changed to manage lock lifetime of the trees they open in a way
 
3075
  consistent with reader-exclusive locks. (Robert Collins, #305006)
 
3076
 
 
3077
Testing
 
3078
*******
 
3079
 
 
3080
bzr 1.18.1
 
3081
##########
 
3082
 
 
3083
:Codename:     nein nein nein!
 
3084
:1.18.1:       2009-09-09
 
3085
 
 
3086
This release fixes two small but worthwhile bugs relevant to users on
 
3087
Microsoft Windows: some commands that failed on with locking errors will
 
3088
now work, and a bug that caused poor performance after committing a file
 
3089
with line-ending conversion has now been fixed.  It also fixes a bug in
 
3090
pushing to older servers.
 
3091
 
 
3092
Bug Fixes
 
3093
*********
 
3094
 
 
3095
* Fixed a problem where using content filtering and especially end-of-line
 
3096
  conversion will commit too many copies a file.
 
3097
  (Martin Pool, #415508)
 
3098
 
 
3099
* Fix assertion error about ``_remember_remote_is_before`` in
 
3100
  ``set_tags_bytes`` when pushing to older smart servers.  
 
3101
  (Andrew Bennetts, Alexander Belchenko, #418931)
 
3102
 
 
3103
Improvements
 
3104
************
 
3105
 
 
3106
* ``bzr push`` locally on Windows will no longer give a locking error with
 
3107
  dirstate based formats. (Robert Collins)
 
3108
 
 
3109
* ``bzr shelve`` and ``bzr unshelve`` now work on Windows.
 
3110
  (Robert Collins, #305006)
 
3111
 
 
3112
API Changes
 
3113
***********
 
3114
 
 
3115
* ``bzrlib.shelf_ui`` has had the ``from_args`` convenience methods of its
 
3116
  classes changed to manage lock lifetime of the trees they open in a way
 
3117
  consistent with reader-exclusive locks. (Robert Collins, #305006)
 
3118
 
 
3119
* ``Tree.path_content_summary`` may return a size of None, when called on
 
3120
  a tree with content filtering where the size of the canonical form
 
3121
  cannot be cheaply determined.  (Martin Pool)
 
3122
 
 
3123
* When manually creating transport servers in test cases, a new helper
 
3124
  ``TestCase.start_server`` that registers a cleanup and starts the server
 
3125
  should be used. (Robert Collins)
 
3126
 
 
3127
bzr 1.18
 
3128
########
 
3129
 
 
3130
Compatibility Breaks
 
3131
********************
 
3132
 
 
3133
* Committing directly to a stacked branch from a lightweight checkout will
 
3134
  no longer work. In previous versions this would appear to work but would
 
3135
  generate repositories with insufficient data to create deltas, leading
 
3136
  to later errors when branching or reading from the repository.
 
3137
  (Robert Collins, bug #375013)
 
3138
 
 
3139
New Features
 
3140
************
 
3141
 
 
3142
Bug Fixes
 
3143
*********
 
3144
 
 
3145
* Fetching from 2a branches from a version-2 bzr protocol would fail to
 
3146
  copy the internal inventory pages from the CHK store. This cannot happen
 
3147
  in normal use as all 2a compatible clients and servers support the
 
3148
  version-3 protocol, but it does cause test suite failures when testing
 
3149
  downlevel protocol behaviour. (Robert Collins)
 
3150
 
 
3151
* Fix a test failure on karmic by making a locale test more robust.
 
3152
  (Vincent Ladeuil, #413514)
 
3153
 
 
3154
* Fixed "Pack ... already exists" error when running ``bzr pack`` on a
 
3155
  fully packed 2a repository.  (Andrew Bennetts, #382463)
 
3156
 
 
3157
* Further tweaks to handling of ``bzr add`` messages about ignored files.
 
3158
  (Jason Spashett, #76616)
 
3159
 
 
3160
* Properly handle fetching into a stacked branch while converting the
 
3161
  data, especially when there are also ghosts. The code was filling in
 
3162
  parent inventories incorrectly, and also not handling when one of the
 
3163
  parents was a ghost. (John Arbash Meinel, #402778, #412198)
 
3164
 
 
3165
* ``RemoteStreamSource.get_stream_for_missing_keys`` will fetch CHK
 
3166
  inventory pages when appropriate (by falling back to the vfs stream
 
3167
  source).  (Andrew Bennetts, #406686)
 
3168
 
 
3169
* StreamSource generates rich roots from non-rich root sources correctly
 
3170
  now.  (Andrew Bennetts, #368921)
 
3171
 
 
3172
* When deciding whether a repository was compatible for upgrading or
 
3173
  fetching, we previously incorrectly checked the default repository
 
3174
  format for the bzrdir format, rather than the format that was actually
 
3175
  present on disk.  (Martin Pool, #408824)
 
3176
 
 
3177
Improvements
 
3178
************
 
3179
 
 
3180
* A better description of the platform is shown in crash tracebacks, ``bzr
 
3181
  --version`` and ``bzr selftest``.
 
3182
  (Martin Pool, #409137)
 
3183
 
 
3184
* Cross-format fetches (such as between 1.9-rich-root and 2a) via the
 
3185
  smart server are more efficient now.  They send inventory deltas rather
 
3186
  than full inventories.  The smart server has two new requests,
 
3187
  ``Repository.get_stream_1.19`` and ``Repository.insert_stream_1.19`` to
 
3188
  support this.  (Andrew Bennetts, #374738, #385826)
 
3189
 
 
3190
* Extracting the full ancestry and computing the ``merge_sort`` is now
 
3191
  significantly faster. This effects things like ``bzr log -n0``. (For
 
3192
  example, ``bzr log -r -10..-1 -n0 bzr.dev`` is 2.5s down to 1.0s.
 
3193
  (John Arbash Meinel)
 
3194
 
 
3195
Documentation
 
3196
*************
 
3197
 
 
3198
API Changes
 
3199
***********
 
3200
 
 
3201
Internals
 
3202
*********
 
3203
 
 
3204
* ``-Dstrict_locks`` can now be used to check that read and write locks
 
3205
  are treated properly w.r.t. exclusivity. (We don't try to take an OS
 
3206
  read lock on a file that we already have an OS write lock on.) This is
 
3207
  now set by default for all tests, if you have a test which cannot be
 
3208
  fixed, you can use ``self.thisFailsStrictLockCheck()`` as a
 
3209
  compatibility knob. (John Arbash Meinel)
 
3210
 
 
3211
* InterDifferingSerializer is now only used locally.  Other fetches that
 
3212
  would have used InterDifferingSerializer now use the more network
 
3213
  friendly StreamSource, which now automatically does the same
 
3214
  transformations as InterDifferingSerializer.  (Andrew Bennetts)
 
3215
 
 
3216
* ``KnownGraph`` now has a ``.topo_sort`` and ``.merge_sort`` member which
 
3217
  are implemented in pyrex and significantly faster. This is exposed along
 
3218
  with ``CombinedGraphIndex.find_ancestry()`` as
 
3219
  ``VersionedFiles.get_known_graph_ancestry(keys)``.
 
3220
  (John Arbash Meinel)
 
3221
 
 
3222
* RemoteBranch.open now honours ignore_fallbacks correctly on bzr-v2
 
3223
  protocols. (Robert Collins)
 
3224
 
 
3225
* The index code now has some specialized routines to extract the full
 
3226
  ancestry of a key in a more efficient manner.
 
3227
  ``CombinedGraphIndex.find_ancestry()``. (Time to get ancestry for
 
3228
  bzr.dev drops from 1.5s down to 300ms. For OOo from 33s => 10.5s) (John
 
3229
  Arbash Meinel)
 
3230
 
 
3231
Testing
 
3232
*******
 
3233
 
 
3234
* Install the test ssl certificate and key so that installed bzr
 
3235
  can run the https tests. (Denys Duchier, #392401)
 
3236
  
 
3237
 
 
3238
bzr 1.18rc1
 
3239
###########
 
3240
 
 
3241
:Codename: little traveller
 
3242
:1.18:    2009-08-20
 
3243
:1.18rc1: 2009-08-10
 
3244
 
 
3245
This release of Bazaar marches on towards the 2.0 release in which the 2a
 
3246
'brisbane-core' format becomes generally recommended.  Most of the work in
 
3247
this release now focusses on bug fixes and stabilization, covering both 2a
 
3248
and previous formats.  There is a new text-mode interactive merge feature,
 
3249
a new guide to migration to 2a format in the user documentation, and
 
3250
pushing branches to a smart server is now much faster.  
 
3251
 
 
3252
The Bazaar team decided that 2.0 will be a long-term supported release,
 
3253
with bugfix-only releases based on it continuing for at least six months
 
3254
or until the following stable release.
 
3255
 
 
3256
There are no changes from 1.18rc1 to 1.18.
 
3257
 
 
3258
New Features
 
3259
************
 
3260
 
 
3261
* ``bzr merge --interactive`` applies a user-selected portion of the
 
3262
  merge.  The UI is similar to ``shelve``.  (Aaron Bentley)
 
3263
 
 
3264
* ``bzr reconfigure`` now takes options ``--stacked-on URL`` and
 
3265
  ``--unstacked`` to change stacking of a branch.
 
3266
  (Martin Pool, #391411)
 
3267
 
 
3268
Bug Fixes
 
3269
*********
 
3270
 
 
3271
* Annotating on a stacked branch will now succeed in simple scenarios.
 
3272
  There are still some complex scenarios where it will fail (bug #399884)
 
3273
  (John Arbash Meinel, #393366)
 
3274
 
 
3275
* A progress bar is no longer left dangling when ``bzr selftest``
 
3276
  completes, and the progress bar updates with zero latency so the
 
3277
  displayed test name is always the one that's actually running.
 
3278
  (Martin Pool, #123688)
 
3279
 
 
3280
* Authenticating against an ssh server now uses ``auth_none`` to determine
 
3281
  if password authentication is even supported. This fixes a bug where
 
3282
  users would be prompted for a launchpad password, even though launchpad
 
3283
  only supports publickey authentication. (John Arbash Meinel, #375867)
 
3284
 
 
3285
* BranchBuilder now accepts timezone to avoid test failures in countries far
 
3286
  from GMT. (Vincent Ladeuil, #397716)
 
3287
 
 
3288
* ``bzr commit`` no longer saves the unversioning of missing files until
 
3289
  the commit has completed on the branch. This means that aborting a
 
3290
  commit that found a missing file will leave the tree unedited.
 
3291
  (Robert Collins, #282402)
 
3292
 
 
3293
* ``bzr mv`` no longer takes out branch locks, which allows it to work
 
3294
  when the branch is readonly. (Robert Collins, #216541)
 
3295
 
 
3296
* ``bzr revert .`` no longer generates an InconsistentDelta error when
 
3297
  there are missing subtrees. (Robert Collins, #367632)
 
3298
 
 
3299
* ``bzr send`` now generates valid bundles with ``--2a`` formats. However,
 
3300
  do to internal changes necessary to support this, older clients will
 
3301
  fail when trying to insert them. For newer clients, the bundle can be
 
3302
  used to apply the changes to any rich-root compatible format.
 
3303
  (John Arbash Meinel, #393349)
 
3304
 
 
3305
* Cope with FTP servers that don't support restart/append by falling back
 
3306
  to reading and then rewriting the whole file, such as TahoeLAFS.  (This
 
3307
  fallback may be slow for some access patterns.)  (Nils Durner, #294709)
 
3308
 
 
3309
* Encode the paths in ``mbcs`` encoding on Windows when spawning an
 
3310
  external diff client. This at least allows supporting filenames that are
 
3311
  not ascii, but are present in the current locale. Ideally we would be
 
3312
  able to pass the Unicode path, but that would be client dependent.
 
3313
  (John Arbash Meinel, #382709)
 
3314
 
 
3315
* Fix a compile bug on Solaris having to do with const and
 
3316
  pointer-to-pointers. (John Arbash Meinel, #408441)
 
3317
 
 
3318
* Fixed a NameError that occurs when merging or pulling from a URL that
 
3319
  causes a redirection loop when bzr tries to read a URL as a bundle.
 
3320
  (Andrew Bennetts, #400847)
 
3321
 
 
3322
* Fix ``AttributeError: 'TestUIFactory' object has no attribute 'tick'``
 
3323
  running send and similar commands on 2a formats.
 
3324
  (Martin Pool, #408201)
 
3325
  
 
3326
* Fix crash in some invocations of ``bzr status`` in format 2a.
 
3327
  (Martin Pool, #403523)
 
3328
 
 
3329
* Fixed export to existing directory: if directory is empty then export 
 
3330
  will succeed, otherwise it fails with error.
 
3331
  (Alexander Belchenko, #406174)
 
3332
 
 
3333
* Fixed spurious "Source branch does not support stacking" warning when
 
3334
  pushing. (Andrew Bennetts, #388908)
 
3335
 
 
3336
* Fixed spurious transport activity indicator appearing while tests are
 
3337
  running.  (Martin Pool, #343532)
 
3338
 
 
3339
* Merge now correctly handles empty right-hand revision specs.
 
3340
  (Aaron Bentley, #333961)
 
3341
 
 
3342
* Renames to lexographically lower basenames in trees that have never been
 
3343
  committed to will no longer corrupt the dirstate. This was caused by an
 
3344
  bug in the dirstate update_minimal method. (Robert Collins, #395556)
 
3345
 
 
3346
* Requests for unknown methods no longer cause the smart server to log
 
3347
  lots of backtraces about ``UnknownSmartMethod``, ``do_chunk`` or
 
3348
  ``do_end``.  (Andrew Bennetts, #338561)
 
3349
 
 
3350
* Shelve will not shelve the initial add of the tree root.  (Aaron Bentley)
 
3351
 
 
3352
* Streaming from bzr servers where there is a chain of stacked branches
 
3353
  (A stacked on B stacked on C) will now work. (Robert Collins, #406597)
 
3354
 
 
3355
* The environment variable ``BZR_PROGRESS_BAR`` set to either ``text`` or ``none``
 
3356
  always forces progress bars either on or off respectively.  Otherwise,
 
3357
  they're turned on if ``TERM`` is not ``dumb`` and stderr is a terminal.
 
3358
  bzr always uses the 'text' user interface when run as a command, so
 
3359
  ``BZR_USE_TEXT_UI`` is no longer needed.
 
3360
  (Martin Pool, #339385, #387717)
 
3361
 
 
3362
* The optional ``_knit_load_data_pyx`` C extension was never being
 
3363
  imported.  This caused significant slowdowns when reading data from
 
3364
  repositories.  (Andrew Bennetts, #405653)
 
3365
  
 
3366
* The ``--hardlink`` option to ``branch`` and ``checkout`` is not
 
3367
  supported at the moment on workingtree formats that can do content
 
3368
  filtering.  (See <https://bugs.edge.launchpad.net/bzr/+bug/408193>.)
 
3369
  bzr now says so, rather than just ignoring the option.  (Martin Pool)
 
3370
 
 
3371
* There was a bug in ``osutils.relpath`` that was only triggered on
 
3372
  Windows. Essentially if you were at the root of a drive, and did
 
3373
  something to a branch/repo on another drive, we would go into an
 
3374
  infinite loop while trying to find a 'relative path'.
 
3375
  (John Arbash Meinel, #394227)
 
3376
 
 
3377
* ``WorkingTree4.unversion`` will no longer fail to unversion ids which
 
3378
  were present in a parent tree but renamed in the working tree.
 
3379
  (Robert Collins, #187207)
 
3380
 
 
3381
Improvements
 
3382
************
 
3383
 
 
3384
* Can now rename/move files even if they have been removed from the inventory.
 
3385
  (Marius Kruger)
 
3386
 
 
3387
* Pushing branches with tags via ``bzr://`` and ``bzr+ssh://`` is much
 
3388
  faster, using a new ``Branch.set_tags_bytes`` smart server verb rather
 
3389
  than VFS methods.  For example, pushes of small branches with tags take
 
3390
  11 rather than 18 smart server requests.  (Andrew Bennetts, #398608)
 
3391
 
 
3392
* Sending Ctrl-Break on Windows will now drop you into the debugger, in
 
3393
  the same way that sending Ctrl-\\ does on other platforms.
 
3394
  (John Arbash Meinel)
 
3395
 
 
3396
Documentation
 
3397
*************
 
3398
 
 
3399
* Added Bazaar 2.0 Upgrade Guide. (Ian Clatworthy)
 
3400
 
 
3401
API Changes
 
3402
***********
 
3403
 
 
3404
* ``CLIUIFactory`` is deprecated; use ``TextUIFactory`` instead if you
 
3405
  need to subclass or create a specific class, or better yet the existing
 
3406
  ``make_ui_for_terminal``.  ``SilentUIFactory`` is clarified to do no
 
3407
  user interaction at all, rather than trying to read from stdin but not
 
3408
  writing any output, which would be strange if reading prompts or
 
3409
  passwords.  (Martin Pool)
 
3410
 
 
3411
* New TransformPreview.commit() allows committing without a working tree.
 
3412
  (Aaron Bentley)
 
3413
 
 
3414
* ``pb`` parameter to ``TextTestResult`` is deprecated and ignored.
 
3415
  (Martin Pool)
 
3416
 
 
3417
* ProgressTasks now prefer to talk direct to their ProgressView not to the
 
3418
  UIFactory. 
 
3419
  (Martin Pool)
 
3420
 
 
3421
* ``WorkingTree._check`` now requires a references dict with keys matching
 
3422
  those returned by ``WorkingTree._get_check_refs``. (Robert Collins)
 
3423
 
 
3424
Internals
 
3425
*********
 
3426
 
 
3427
* ``CHKInventory.path2id`` uses the parent_id to basename hash to avoid
 
3428
  reading the entries along the path, reducing work to lookup ids from
 
3429
  paths. (Robert Collins)
 
3430
 
 
3431
* ``CHKMap.apply_delta`` now raises ``InconsistentDelta`` if a delta adds
 
3432
  as new a key which was already mapped. (Robert Collins)
 
3433
 
 
3434
* Inventory delta application catches more cases of corruption and can
 
3435
  prevent corrupt deltas from affecting consistency of data structures on
 
3436
  disk. (Robert Collins)
 
3437
 
 
3438
* --subunit support now adds timestamps if the subunit version supports
 
3439
  it. (Robert Collins)
 
3440
 
 
3441
* The Windows all-in-one installer now bundles the PyQt image format
 
3442
  plugins, which allows previewing more images as part of 'qdiff'.
 
3443
  (Alexander Belchenko)
 
3444
 
 
3445
 
 
3446
Testing
 
3447
*******
 
3448
 
 
3449
* Merge directive cherrypick tests must use the same root id.
 
3450
  (Martin Pool, #409684)
 
3451
 
 
3452
* Spurious failure in ``check`` tests on rich-root formats fixed.
 
3453
  (Martin Pool, #408199)
 
3454
 
 
3455
* The ``bzrlib.tests.TextTestRunner`` will no longer call
 
3456
  ``countTestsCases`` on the test being run. Progress information is
 
3457
  instead handled by having the test passed in call ``result.progress``
 
3458
  before running its contents. This improves the behaviour when using
 
3459
  ``TextTestRunner`` with test suites that don't support
 
3460
  ``countTestsCases``. (Robert Collins)
 
3461
 
 
3462
 
 
3463
bzr 1.17.1 (unreleased)
 
3464
#######################
 
3465
 
 
3466
Bug Fixes
 
3467
*********
 
3468
 
 
3469
* The optional ``_knit_load_data_pyx`` C extension was never being
 
3470
  imported.  This caused significant slowdowns when reading data from
 
3471
  knit format repositories.  (Andrew Bennetts, #405653)
 
3472
  
 
3473
 
 
3474
bzr 1.17
 
3475
########
 
3476
:Codename: so-late-its-brunch
 
3477
:1.17rc1: 2009-07-13
 
3478
:1.17: 2009-07-20
 
3479
 
 
3480
 
 
3481
Bazaar continues to blaze a straight and shining path to the 2.0 release and
 
3482
the elevation of the ``2a`` beta format to the full glory of "supported and
 
3483
stable".
 
3484
 
 
3485
Highlights in this release include greatly reduced memory consumption during
 
3486
commits, faster ``ls``, faster ``annotate``, faster network operations if
 
3487
you're specifying a revision number and the final destruction of those
 
3488
annoying progress bar artifacts.
 
3489
 
 
3490
 
 
3491
Changes from 1.17rc1 to 1.17final
 
3492
*********************************
 
3493
 
 
3494
* Change an extension to call the python ``frozenset()`` rather than the C
 
3495
  api ``PyFrozenSet_New``. It turns out that python2.4 did not expose the
 
3496
  C api. (John Arbash Meinel, #399366)
 
3497
 
 
3498
* Fixes for the Makefile and the rename of ``generate_docs.py`` to
 
3499
  ``tools/generate_docs.py`` to allow everything to be built on Windows.
 
3500
  (John Arbash Meinel, #399356)
 
3501
 
 
3502
* ``bzr serve`` once again applies a ``ChrootServer`` to the given
 
3503
  directory before serving it. (Andrew Bennetts, #400535)
 
3504
 
 
3505
 
 
3506
Compatibility Breaks
 
3507
********************
 
3508
 
 
3509
* ``bzr register-branch`` from the Launchpad plugin now refers to "project"
 
3510
  instead of "product" which is the correct Launchpad terminology.  The
 
3511
  --product option is deprecated and users should switch to using --project.
 
3512
  (Neil Martinsen-Burrell, #238764)
 
3513
 
 
3514
 
 
3515
New Features
 
3516
************
 
3517
 
 
3518
* ``bzr push`` now aborts if uncommitted changes (including pending merges)
 
3519
  are present in the working tree (if one is present) and no revision is
 
3520
  specified. The configuration option ``push_strict`` can be used to set the
 
3521
  default for this behavior.  (Vincent Ladeuil, #284038, #322808, #65286)
 
3522
 
 
3523
* ``bzr revno`` and ``bzr revision-info`` now have a ``--tree`` option to
 
3524
  show revision info for the working tree instead of the branch.
 
3525
  (Matthew Fuller, John Arbash Meinel)
 
3526
 
 
3527
* ``bzr send`` now aborts if uncommitted changes (including pending merges)
 
3528
  are present in the working tree and no revision is specified. The
 
3529
  configuration option ``send_strict`` can be used to set the default for this
 
3530
  behavior.
 
3531
  (Vincent Ladeuil, #206577)
 
3532
 
 
3533
* ``bzr switch --create-branch/-b`` can now be used to create and switch
 
3534
  to a new branch. Supplying a name without a ``/`` will create the branch
 
3535
  relative to the existing branch. (similar to how ``bzr switch name``
 
3536
  works when the branch already exists.) (John Arbash Meinel)
 
3537
 
 
3538
 
 
3539
Bug Fixes
 
3540
*********
 
3541
 
 
3542
* Accept uppercase "Y/N" to prompts such as from break lock. 
 
3543
  (#335182, Tim Powell, Martin Pool)
 
3544
 
 
3545
* Add documentation about diverged branches and how to fix them in the
 
3546
  centralized workflow with local commits.  Mention ``bzr help
 
3547
  diverged-branches`` when a push fails because the branches have
 
3548
  diverged.  (Neil Martinsen-Burrell, #269477)
 
3549
 
 
3550
* Annotate would sometimes 'latch on' to trivial lines, causing important
 
3551
  lines to be incorrectly annotated. (John Arbash Meinel, #387952)
 
3552
 
 
3553
* Automatic format upgrades triggered by default stacking policies on a
 
3554
  1.16rc1 (or later) smart server work again.
 
3555
  (Andrew Bennetts, #388675)
 
3556
 
 
3557
* Avoid progress bar artifacts being left behind on the screen.
 
3558
  (Martin Pool, #321935)
 
3559
 
 
3560
* Better message in ``bzr split`` error suggesting a rich root format.
 
3561
  (Neil Martinsen-Burrell, #220067)
 
3562
 
 
3563
* ``Branch.set_append_revisions_only`` now works with branches on a smart
 
3564
  server. (Andrew Bennetts, #365865)
 
3565
 
 
3566
* By default, ``bzr branch`` will fail if the target directory exists, but
 
3567
  does not already have a control directory.  The flag ``--use-existing-dir``
 
3568
  will allow operation to proceed.  (Alexander Belchenko, #307554)
 
3569
 
 
3570
* ``bzr ls DIR --from-root`` now shows only things in DIR, not everything.
 
3571
  (Ian Clatworthy)
 
3572
 
 
3573
* Fetch between repositories does not error if they have inconsistent data
 
3574
  that should be irrelevant to the fetch operation. (Aaron Bentley)
 
3575
 
 
3576
* Fix ``AttributeError`` exception when reconfiguring lightweight checkout 
 
3577
  of a remote repository.
 
3578
  (Jelmer Vernooij, #332194)
 
3579
 
 
3580
* Fix bug in decoding v3 smart server messages when receiving multiple
 
3581
  lots of excess bytes after an end-of-message.
 
3582
  (Andrew Bennetts)
 
3583
 
 
3584
* Force deletion of readonly files during merge, update and other tree
 
3585
  transforms.
 
3586
  (Craig Hewetson, Martin Pool, #218206)
 
3587
 
 
3588
* Force socket shutdown in threaded http test servers to avoid client hangs
 
3589
  (pycurl).  (Vincent Ladeuil, #383920).
 
3590
 
 
3591
* ``LRUCache`` will maintain the linked list pointers even if a nodes
 
3592
  cleanup function raises an exception. (John Arbash Meinel, #396838)
 
3593
 
 
3594
* Progress bars are now suppressed again when the environment variable
 
3595
  ``BZR_PROGRESS_BAR`` is set to ``none``.
 
3596
  (Martin Pool, #339385)
 
3597
 
 
3598
* Reduced memory consumption during ``bzr commit`` of large files. For
 
3599
  pre 2a formats, should be down to ~3x the size of a file.
 
3600
  For ``--2a`` format repositories, it is down to the size of the file
 
3601
  content plus the size of the compressed text.  Related to bug #109114.
 
3602
  (John Arbash Meinel)
 
3603
 
 
3604
* Set hidden attribute on .bzr directory below unicode path should never
 
3605
  fail with error. The operation should succeed even if bzr unable to set 
 
3606
  the attribute.  (Alexander Belchenko, related to bug #335362).
 
3607
  
 
3608
* Stacking will no longer accept requests to stack on the same
 
3609
  branch/repository. Existing branches that incorrectly reference the same
 
3610
  repository in a stacking configuration will now raise
 
3611
  UnstackableLocationError when the branch is opened. This can be fixed by
 
3612
  removing the stacking location inside ``.bzr/branch``.
 
3613
  (Robert Collins, #376243)
 
3614
 
 
3615
* The ``log+`` decorator, useful in debugging or profiling, could cause
 
3616
  "AttributeError: 'list' object has no attribute 'next'".  This is now
 
3617
  fixed.  The log decorator no longer shows the elapsed time or transfer
 
3618
  rate because they're available in the log prefixes and the transport
 
3619
  activity display respectively.
 
3620
  (Martin Pool, #340347)
 
3621
 
 
3622
* Unshelve works correctly when multiple zero-length files are present on
 
3623
  the shelf. (Aaron Bentley, #363444)
 
3624
 
 
3625
* Progress bars no longer show the network transport scheme or direction.
 
3626
  (Martin Pool)
 
3627
 
 
3628
* launchpad-login now respects the 'verbose' option.
 
3629
  (Jonathan Lange, #217031)
 
3630
 
 
3631
 
 
3632
Internals
 
3633
*********
 
3634
 
 
3635
* ``bzrlib.user_encoding`` is now officially deprecated. It is not
 
3636
  possible to write a deprecation wrapper, but the variable will be
 
3637
  removed in the near future. Use ``bzrlib.osutils.get_user_encoding()``
 
3638
  instead. (Alexander Belchenko)
 
3639
 
 
3640
* Command lookup has had hooks added. ``bzrlib.Command.hooks`` has
 
3641
  three new hook points: ``get_command``, ``get_missing_command`` and
 
3642
  ``list_commands``, which allow just-in-time command name provision
 
3643
  rather than requiring all command names be known a-priori.
 
3644
  (Robert Collins)
 
3645
 
 
3646
* ``get_app_path`` from win32utils.py now supports REG_EXPAND_SZ data type
 
3647
  and can read path to wordpad.exe. (Alexander Belchenko, #392046)
 
3648
 
 
3649
* ``graph.KnownGraph`` has been added. This is a class that can give
 
3650
  answers to ``heads()`` very quickly. However, it has the assumption that
 
3651
  the whole graph has already been loaded. This is true during
 
3652
  ``annotate`` so it is used there with good success (as much as 2x faster
 
3653
  for files with long ancestry and 'cherrypicked' changes.)
 
3654
  (John Arbash Meinel, Vincent Ladeuil)
 
3655
 
 
3656
* OS file locks are now taken out using ``CreateFile`` rather than
 
3657
  ``LockFileEx`` on Windows. The locking remains exclusive with
 
3658
  ``LockFileEx`` but now it also works on older versions of Windows (such
 
3659
  as Win98). (Martin <gzlist>)
 
3660
 
 
3661
* pack <=> pack fetching is now done via a ``PackStreamSource`` rather
 
3662
  than the ``Packer`` code. The user visible change is that we now
 
3663
  properly fetch the minimum number of texts for non-smart fetching.
 
3664
  (John Arbash Meinel)
 
3665
 
 
3666
 
 
3667
* ``VersionedFiles._add_text`` is a new api that lets us insert text into
 
3668
  the repository as a single string, rather than a list of lines. This can
 
3669
  improve memory overhead and performance of committing large files.
 
3670
  (Currently a private api, used only by commit). (John Arbash Meinel)
 
3671
 
 
3672
 
 
3673
Improvements
 
3674
************
 
3675
 
 
3676
* ``bzr annotate`` can now be significantly faster. The time for
 
3677
  ``bzr annotate NEWS`` is down to 7s from 22s in 1.16. Files with long
 
3678
  histories and lots of 'duplicate insertions' will be improved more than
 
3679
  others. (John Arbash Meinel, Vincent Ladeuil)
 
3680
 
 
3681
* ``bzr ls`` is now faster. On OpenOffice.org, the time drops from 2.4
 
3682
  to 1.1 seconds. The improvement for ``bzr ls -r-1`` is more
 
3683
  substantial dropping from 54.3 to 1.1 seconds. (Ian Clatworthy)
 
3684
 
 
3685
* Improve "Path(s) are not versioned" error reporting for some commands.
 
3686
  (Benoît PIERRE)
 
3687
 
 
3688
* Initial commit performance in ``--2a`` repositories has been improved by
 
3689
  making it cheaper to build the initial CHKMap. (John Arbash Meinel)
 
3690
 
 
3691
* Resolving a revno to a revision id on a branch accessed via ``bzr://``
 
3692
  or ``bzr+ssh://`` is now much faster and involves no VFS operations.
 
3693
  This speeds up commands like ``bzr pull -r 123``.  (Andrew Bennetts)
 
3694
 
 
3695
* ``revision-info`` now properly aligns the revnos/revids in the output
 
3696
  and doesn't traceback when given revisions not in the current branch.
 
3697
  Performance is also significantly improved when requesting multiple revs
 
3698
  at once.  (Matthew Fuller, John Arbash Meinel)
 
3699
 
 
3700
* Tildes are no longer escaped by Transports. (Andy Kilner)
 
3701
 
 
3702
 
 
3703
Documentation
 
3704
*************
 
3705
 
 
3706
* Avoid bad text wrapping in generated documentation.  Slightly better
 
3707
  formatting in the user reference.
 
3708
  (Martin Pool, #249908)
 
3709
 
 
3710
* Minor clarifications to the help for End-Of-Line conversions.
 
3711
  (Ian Clatworthy)
 
3712
 
 
3713
API Changes
 
3714
***********
 
3715
 
 
3716
* Removed overspecific error class ``InvalidProgressBarType``.
 
3717
  (Martin Pool)
 
3718
 
 
3719
* The method ``ProgressView._show_transport_activity`` is now
 
3720
  ``show_transport_activity`` because it's part of the contract between
 
3721
  this class and the UI.  (Martin Pool)
 
3722
 
 
3723
 
 
3724
bzr 1.16.1
 
3725
##########
 
3726
 
 
3727
:Released: 2009-06-26
 
3728
 
 
3729
End user testing of the 2a format revealed two serious bugs. The first,
 
3730
#365615, caused bzr to raise AbsentContentFactory errors when autopacking.
 
3731
This meant that commits or pushes to 2a-format repositories failed
 
3732
intermittently.
 
3733
 
 
3734
The second bug, #390563, caused the smart server to raise AbsentContentFactory
 
3735
when streaming 2a stacked 2a-format branches. This particularly affected
 
3736
branches stored on Launchpad in the 2a format.
 
3737
 
 
3738
Both of these bugs cause command failures only, neither of them cause data
 
3739
corruption or data loss. And, of course, both of these bugs are now fixed.
 
3740
 
 
3741
Bug Fixes
 
3742
*********
 
3743
 
 
3744
* We now properly request a more minimal set of file texts when fetching
 
3745
  multiple revisions. (Robert Collins, John Arbash Meinel, #390563)
 
3746
 
 
3747
* Repositories using CHK pages (which includes the new 2a format) will no
 
3748
  longer error during commit or push operations when an autopack operation
 
3749
  is triggered. (Robert Collins, #365615)
 
3750
 
 
3751
* ``chk_map.iter_interesting_nodes`` now properly uses the *intersection*
 
3752
  of referenced nodes rather than the *union* to determine what
 
3753
  uninteresting pages we still need to look at. Prior to this,
 
3754
  incrementally pushing to stacked branch would push the minimal data, but
 
3755
  fetching everything would request extra texts. There are some unhandled
 
3756
  cases wrt trees of different depths, but this fixes the common cases.
 
3757
  (Robert Collins, John Arbash Meinel, #390563)
 
3758
 
 
3759
* ``GroupCompress`` repositories now take advantage of the pack hints
 
3760
  parameter to permit cross-format fetching to incrementally pack the
 
3761
  converted data. (Robert Collins)
 
3762
 
 
3763
* ``Repository.commit_write_group`` now returns opaque data about what
 
3764
  was committed, for passing to the ``Repository.pack``. Repositories
 
3765
  without atomic commits will still return None. (Robert Collins)
 
3766
 
 
3767
* ``Repository.pack`` now takes an optional ``hint`` parameter
 
3768
  which will support doing partial packs for repositories that can do
 
3769
  that. (Robert Collins)
 
3770
 
 
3771
* RepositoryFormat has a new attribute 'pack_compresses' which is True
 
3772
  when doing a pack operation changes the compression of content in the
 
3773
  repository. (Robert Collins)
 
3774
 
 
3775
* ``StreamSink`` and ``InterDifferingSerialiser`` will call
 
3776
  ``Repository.pack`` with the hint returned by
 
3777
  ``Repository.commit_write_group`` if the formats were different and the
 
3778
  repository can increase compression by doing a pack operation.
 
3779
  (Robert Collins, #376748)
 
3780
 
 
3781
 
 
3782
bzr 1.16
 
3783
########
 
3784
:Codename: yesterday-in-california
 
3785
:1.16rc1: 2009-06-11
 
3786
:1.16: 2009-06-18
 
3787
 
 
3788
This version of Bazaar contains the beta release of the new ``2a`` repository
 
3789
format, suitable for testing by fearless, advanced users. This format or an
 
3790
updated version of it will become the default format in Bazaar 2.0. Please
 
3791
read the NEWS entry before even thinking about upgrading to the new format.
 
3792
 
 
3793
Also included are speedups for many operations on huge projects, a bug fix for
 
3794
pushing stacked new stacked branches to smart servers and the usual bevy of
 
3795
bug fixes and improvements.
 
3796
 
 
3797
 
 
3798
Changes from 1.16rc1 to 1.16final
 
3799
*********************************
 
3800
 
 
3801
* Fix the nested tree flag check so that upgrade from development formats to
 
3802
  2a can work correctly.
 
3803
  (Jelmer Vernooij, #388727)
 
3804
 
 
3805
* Automatic format upgrades triggered by default stacking policies on a
 
3806
  1.16rc1 (or later) smart server work again.
 
3807
  (Andrew Bennetts, #388675)
 
3808
 
 
3809
 
 
3810
Compatibility Breaks
 
3811
********************
 
3812
 
 
3813
* Display prompt on stderr (instead of stdout) when querying users so
 
3814
  that the output of commands can be safely redirected.
 
3815
  (Vincent Ladeuil, #376582)
 
3816
 
 
3817
 
 
3818
New Features
 
3819
************
 
3820
 
 
3821
* A new repository format ``2a`` has been added.  This is a beta release
 
3822
  of the brisbane-core (aka group-compress) project.  This format now
 
3823
  suitable for wider testing by advanced users willing to deal with some
 
3824
  bugs.  We would appreciate test reports, either positive or negative.
 
3825
  Format 2a is substantially smaller and faster for many operations on
 
3826
  many trees.  This format or an updated version will become the default
 
3827
  in bzr 2.0.
 
3828
 
 
3829
  This is a rich-root format, so this repository format can be used with
 
3830
  bzr-svn.  Bazaar branches in previous non-rich-root formats can be
 
3831
  converted (including by merge, push and pull) to format 2a, but not vice
 
3832
  versa.  We recommend upgrading previous development formats to 2a.
 
3833
 
 
3834
  Upgrading to this format can take considerable time because it expands
 
3835
  and more concisely repacks the full history.
 
3836
 
 
3837
  If you use stacked branches, you must upgrade the stacked branches
 
3838
  before the stacked-on branches.  (See <https://bugs.launchpad.net/bugs/374735>)
 
3839
 
 
3840
* ``--development7-rich-root`` is a new dev format, similar to ``--dev6``
 
3841
  but using a Revision serializer using bencode rather than XML.
 
3842
  (Jelmer Vernooij, John Arbash Meinel)
 
3843
 
 
3844
* mail_client=claws now supports --body (and message body hooks).  Also uses
 
3845
  configured from address.  (Barry Warsaw)
 
3846
 
 
3847
Improvements
 
3848
************
 
3849
 
 
3850
 
 
3851
* ``--development6-rich-root`` can now stack. (Modulo some smart-server
 
3852
  bugs with stacking and non default formats.)
 
3853
  (John Arbash Meinel, #373455)
 
3854
 
 
3855
* ``--development6-rich-root`` delays generating a delta index for the
 
3856
  first object inserted into a group. This has a beneficial impact on
 
3857
  ``bzr commit`` since each committed texts goes to its own group. For
 
3858
  committing a 90MB file, it drops peak memory by about 200MB, and speeds
 
3859
  up commit from 7s => 4s. (John Arbash Meinel)
 
3860
 
 
3861
* Numerous operations are now faster for huge projects, i.e. those
 
3862
  with a large number of files and/or a large number of revisions,
 
3863
  particularly when the latest development format is used. These
 
3864
  operations (and improvements on OpenOffice.org) include:
 
3865
 
 
3866
  * branch in a shared repository (2X faster)
 
3867
  * branch --no-tree (100X faster)
 
3868
  * diff (2X faster)
 
3869
  * tags (70X faster)
 
3870
 
 
3871
  (Ian Clatworthy)
 
3872
 
 
3873
* Pyrex version of ``bencode`` support. This provides optimized support
 
3874
  for both encoding and decoding, and is now found at ``bzrlib.bencode``.
 
3875
  ``bzrlib.utils.bencode`` is now deprecated.
 
3876
  (Alexander Belchenko, Jelmer Vernooij, John Arbash Meinel)
 
3877
 
 
3878
 
 
3879
Bug Fixes
 
3880
*********
 
3881
 
 
3882
* Bazaar can now pass attachment files to the mutt email client.
 
3883
  (Edwin Grubbs, #384158)
 
3884
 
 
3885
* Better message in ``bzr add`` output suggesting using ``bzr ignored`` to
 
3886
  see which files can also be added.  (Jason Spashett, #76616)
 
3887
 
 
3888
* ``bzr pull -r 123`` from a stacked branch on a smart server no longer fails.
 
3889
  Also, the ``Branch.revision_history()`` API now works in the same
 
3890
  situation.  (Andrew Bennetts, #380314)
 
3891
  
 
3892
* ``bzr serve`` on Windows no longer displays a traceback simply because a
 
3893
  TCP client disconnected. (Andrew Bennetts)
 
3894
 
 
3895
* Clarify the rules for locking and fallback repositories. Fix bugs in how
 
3896
  ``RemoteRepository`` was handling fallbacks along with the
 
3897
  ``_real_repository``. (Andrew Bennetts, John Arbash Meinel, #375496)
 
3898
 
 
3899
* Fix a small bug with fetching revisions w/ ghosts into a new stacked
 
3900
  branch. Not often triggered, because it required ghosts to be part of
 
3901
  the fetched revisions, not in the stacked-on ancestry.
 
3902
  (John Arbash Meinel)
 
3903
 
 
3904
* Fix status and commit to work with content filtered trees, addressing
 
3905
  numerous bad bugs with line-ending support. (Ian Clatworthy, #362030)
 
3906
 
 
3907
* Fix problem of "directory not empty" when contending for a lock over
 
3908
  sftp.  (Martin Pool, #340352)
 
3909
 
 
3910
* Fix rule handling so that eol is optional, not mandatory.
 
3911
  (Ian Clatworthy, #379370)
 
3912
 
 
3913
* Pushing a new stacked branch to a 1.15 smart server was broken due to a
 
3914
  bug in the ``BzrDirFormat.initialize_ex`` smart verb.  This is fixed in
 
3915
  1.16, but required changes to the network protocol, so the
 
3916
  ``BzrDirFormat.initialize_ex`` verb has been removed and replaced with a
 
3917
  corrected ``BzrDirFormat.initialize_ex_1.16`` verb.  1.15 clients will
 
3918
  still work with a 1.16 server as they will fallback to slower (and
 
3919
  bug-free) methods.
 
3920
  (Jonathan Lange, Robert Collins, Andrew Bennetts, #385132)
 
3921
 
 
3922
* Reconcile can now deal with text revisions that originated in revisions 
 
3923
  that are ghosts. (Jelmer Vernooij, #336749)
 
3924
 
 
3925
* Support cloning of branches with ghosts in the left hand side history.
 
3926
  (Jelmer Vernooij, #248540)
 
3927
 
 
3928
* The ''bzr diff'' now catches OSError from osutils.rmtree and logs a
 
3929
  helpful message to the trace file, unless the temp directory really was
 
3930
  removed (which would be very strange).  Since the diff operation has
 
3931
  succeeded from the user's perspective, no output is written to stderr 
 
3932
  or stdout.  (Maritza Mendez, #363837)
 
3933
 
 
3934
* Translate errors received from a smart server in response to a
 
3935
  ``BzrDirFormat.initialize`` or ``BzrDirFormat.initialize_ex`` request.
 
3936
  This was causing tracebacks even for mundane errors like
 
3937
  ``PermissionDenied``.  (Andrew Bennetts, #381329)
 
3938
 
 
3939
Documentation
 
3940
*************
 
3941
 
 
3942
* Added directory structure and started translation of docs in Russian.
 
3943
  (Alexey Shtokalo, Alexander Iljin, Alexander Belchenko, Dmitry Vasiliev,
 
3944
  Volodymyr Kotulskyi)
 
3945
 
 
3946
API Changes
 
3947
***********
 
3948
 
 
3949
* Added osutils.parent_directories(). (Ian Clatworthy)
 
3950
 
 
3951
* ``bzrlib.progress.ProgressBar``, ``ChildProgress``, ``DotsProgressBar``,
 
3952
  ``TTYProgressBar`` and ``child_progress`` are now deprecated; use
 
3953
  ``ui_factory.nested_progress_bar`` instead.  (Martin Pool)
 
3954
 
 
3955
* ``graph.StackedParentsProvider`` is now a public API, replacing
 
3956
  ``graph._StackedParentsProvider``. The api is now considered stable and ready
 
3957
  for external users. (Gary van der Merwe)
 
3958
 
 
3959
* ``bzrlib.user_encoding`` is deprecated in favor of
 
3960
  ``get_user_encoding``.  (Alexander Belchenko)
 
3961
 
 
3962
* TreeTransformBase no longer assumes that limbo is provided via disk.
 
3963
  DiskTreeTransform now provides disk functionality.  (Aaron Bentley)
 
3964
 
 
3965
Internals
 
3966
*********
 
3967
 
 
3968
* Remove ``weave.py`` script for accessing internals of old weave-format
 
3969
  repositories.  (Martin Pool)
 
3970
 
 
3971
Testing
 
3972
*******
 
3973
 
 
3974
* ``make check`` no longer repeats the test run in ``LANG=C``.
 
3975
  (Martin Pool, #386180)
 
3976
 
 
3977
* The number of cores is now correctly detected on OSX. (John Szakmeister)
 
3978
 
 
3979
* The number of cores is also detected on Solaris and win32. (Vincent Ladeuil)
 
3980
 
 
3981
* The number of cores is also detected on FreeBSD. (Matthew Fuller)
 
3982
 
 
3983
 
 
3984
bzr 1.15
 
3985
########
 
3986
:1.15rc1: 2009-05-16
 
3987
:1.15: 2009-05-22
 
3988
:1.15.1: 2009-06-09
 
3989
 
 
3990
The smart server will no longer raise 'NoSuchRevision' when streaming content
 
3991
with a size mismatch in a reconstructed graph search. New command ``bzr
 
3992
dpush``. Plugins can now define their own annotation tie-breaker when two
 
3993
revisions introduce the exact same line.
 
3994
 
 
3995
Changes from 1.15.1 to 1.15.2
 
3996
*****************************
 
3997
 
 
3998
* Use zdll on Windows to build ``_chk_map_pyx`` extension.
 
3999
  (Alexander Belchenko)
 
4000
 
 
4001
Changes from 1.15final to 1.15.1
 
4002
*********************************
 
4003
 
 
4004
* Translate errors received from a smart server in response to a
 
4005
  ``BzrDirFormat.initialize`` or ``BzrDirFormat.initialize_ex`` request.
 
4006
  This was causing tracebacks even for mundane errors like
 
4007
  ``PermissionDenied``.  (Andrew Bennetts, #381329)
 
4008
 
 
4009
Changes from 1.15rc1 to 1.15final
 
4010
*********************************
 
4011
 
 
4012
* No changes
 
4013
 
 
4014
Compatibility Breaks
 
4015
********************
 
4016
 
 
4017
* ``bzr ls`` is no longer recursive by default. To recurse, use the
 
4018
  new ``-R`` option. The old ``--non-recursive`` option has been removed.
 
4019
  If you alias ``ls`` to ``ls -R``, you can disable recursion using
 
4020
  ``--no-recursive`` instead.  (Ian Clatworthy)
 
4021
 
 
4022
New Features
 
4023
************
 
4024
 
 
4025
* New command ``bzr dpush`` that can push changes to foreign 
 
4026
  branches (svn, git) without setting custom bzr-specific metadata.
 
4027
  (Jelmer Vernooij)
 
4028
 
 
4029
* The new development format ``--development6-rich-root`` now supports
 
4030
  stacking. We chose not to use a new format marker, since old clients
 
4031
  will just fail to open stacked branches, the same as if we used a new
 
4032
  format flag. (John Arbash Meinel, #373455)
 
4033
 
 
4034
* Plugins can now define their own annotation tie-breaker when two revisions
 
4035
  introduce the exact same line. See ``bzrlib.annotate._break_annotation_tie``
 
4036
  Be aware though that this is temporary, private (as indicated by the leading
 
4037
  '_') and a first step to address the problem. (Vincent Ladeuil, #348459)
 
4038
 
 
4039
* New command ``bzr dpush`` that can push changes to foreign 
 
4040
  branches (svn, git) without setting custom bzr-specific metadata.
 
4041
  (Jelmer Vernooij)
 
4042
 
 
4043
* ``bzr send`` will now check the ``child_submit_format`` setting in
 
4044
  the submit branch to determine what format to use, if none was 
 
4045
  specified on the command-line.  (Jelmer Vernooij)
 
4046
 
 
4047
Improvements
 
4048
************
 
4049
 
 
4050
* -Dhpss output now includes the number of VFS calls made to the remote
 
4051
  server. (Jonathan Lange)
 
4052
 
 
4053
* ``--coverage`` works for code running in threads too.
 
4054
  (Andrew Bennets, Vincent Ladeuil)
 
4055
 
 
4056
* ``bzr pull`` now has a ``--local`` option to only make changes to the
 
4057
  local branch, and not the bound master branch.
 
4058
  (Gary van der Merwe, #194716)
 
4059
 
 
4060
* ``bzr rm *`` is now as fast as ``bzr rm * --keep``. (Johan Walles, #180116)
 
4061
 
 
4062
Bug Fixes
 
4063
*********
 
4064
 
 
4065
* Adding now works properly when path contains a symbolic link.
 
4066
  (Geoff Bache, #183831)
 
4067
 
 
4068
* An error is now raised for unknown eol values. (Brian de Alwis, #358199)
 
4069
 
 
4070
* ``bzr merge --weave`` will now generate a conflict if one side deletes a
 
4071
  line, and the other side modifies the line. (John Arbash Meinel, #328171)
 
4072
 
 
4073
* ``bzr reconfigure --standalone`` no longer raises IncompatibleRepositories.
 
4074
  (Martin von Gagern, #248932)
 
4075
 
 
4076
* ``bzr send`` works to send emails again using MAPI.
 
4077
  (Neil Martinsen-Burrell, #346998)
 
4078
 
 
4079
* Check for missing parent inventories in StreamSink.  This prevents
 
4080
  incomplete stacked branches being created by 1.13 bzr:// and
 
4081
  bzr+ssh:// clients (which have bug #354036).  Instead, the server now
 
4082
  causes those clients to send the missing records.  (Andrew Bennetts)
 
4083
 
 
4084
* Correctly handle http servers proposing multiple authentication schemes.
 
4085
  (Vincent Ladeuil, #366107)
 
4086
 
 
4087
* End-Of-Line content filters are now loaded correctly.
 
4088
  (Ian Clatworthy, Brian de Alwis, #355280)
 
4089
 
 
4090
* Fix a bug in the pure-python ``GroupCompress`` code when handling copies
 
4091
  longer than 64KiB. (John Arbash Meinel, #364900)
 
4092
 
 
4093
* Fix TypeError in running ``bzr break-lock`` on some URLs.
 
4094
  (Alexander Belchenko, Martin Pool, #365891)
 
4095
 
 
4096
* Non-recursive ``bzr ls`` now works properly when a path is specified.
 
4097
  (Jelmer Vernooij, #357863)
 
4098
 
 
4099
* ssh usernames (defined in ~/.ssh/config) are honoured for bzr+ssh connections.
 
4100
  (Vincent Ladeuil, #367726)
 
4101
 
 
4102
* Several bugs related to unicode symlinks have been fixed and the test suite
 
4103
  enhanced to better catch regressions for them. (Vincent Ladeuil)
 
4104
 
 
4105
* The smart server will no longer raise 'NoSuchRevision' when streaming
 
4106
  content with a size mismatch in a reconstructed graph search: it assumes
 
4107
  that the client will make sure it is happy with what it got, and this
 
4108
  sort of mismatch is normal for stacked environments.
 
4109
  bzr 1.13.0/1 will stream from unstacked branches only - in that case not
 
4110
  getting all the content expected would be a bug. However the graph
 
4111
  search is how we figured out what we wanted, so a mismatch is both odd
 
4112
  and unrecoverable without starting over, and starting over will end up
 
4113
  with the same data as if we just permitted the mismatch. If data is
 
4114
  gc'd, doing a new search will find only the truncated data, so sending
 
4115
  only the truncated data seems reasonable. bzr versions newer than this
 
4116
  will stream from stacked branches and check the stream to find missing
 
4117
  content in the stacked-on branch, and thus will handle the situation
 
4118
  implicitly.  (Robert Collins, #360791)
 
4119
 
 
4120
* Upgrading to, or fetching into a 'rich-root' format will now correctly
 
4121
  set the root data the same way that reconcile does.
 
4122
  (Robert Collins, #368921)
 
4123
 
 
4124
* Using unicode Windows API to obtain command-line arguments.
 
4125
  (Alexander Belchenko, #375934)
 
4126
 
 
4127
Documentation
 
4128
*************
 
4129
 
 
4130
API Changes
 
4131
***********
 
4132
 
 
4133
* ``InterPackRepo.fetch`` and ``RepoFetcher`` now raise ``NoSuchRevision``
 
4134
  instead of ``InstallFailed`` when they detect a missing revision.
 
4135
  ``InstallFailed`` itself has been deleted. (Jonathan Lange)
 
4136
 
 
4137
* Not passing arguments to ``bzrlib.commands.main()`` will now grab the
 
4138
  arguments from ``osutils.get_unicode_argv()`` which has proper support
 
4139
  for unicode arguments on windows. Further, the supplied arguments are now 
 
4140
  required to be unicode strings, rather than user_encoded strings.
 
4141
  (Alexander Belchenko)
 
4142
 
 
4143
Internals
 
4144
*********
 
4145
 
 
4146
* ``bzrlib.branch.Branch.set_parent`` is now present on the base branch
 
4147
  class and will call ``_set_parent_location`` after doing unicode 
 
4148
  encoding. (Robert Collins)
 
4149
 
 
4150
* ``bzrlib.remote.RemoteBranch._set_parent_location`` will use a new verb
 
4151
  ``Branch.set_parent_location`` removing further VFS operations.
 
4152
  (Robert Collins)
 
4153
 
 
4154
* ``bzrlib.bzrdir.BzrDir._get_config`` now returns a ``TransportConfig``
 
4155
  or similar when the dir supports configuration settings. The base class
 
4156
  defaults to None. There is a matching new server verb
 
4157
  ``BzrDir.get-config_file`` to reduce roundtrips for getting BzrDir
 
4158
  configuration. (Robert Collins)
 
4159
 
 
4160
* ``bzrlib.tests.ExtendedTestResult`` has new methods ``startTests``
 
4161
  called before the first test is started, ``done`` called after the last
 
4162
  test completes, and a new parameter ``strict``. (Robert Collins)
 
4163
 
 
4164
* ``-Dhpss`` when passed to bzr will cause a backtrace to be printed when
 
4165
  VFS operations are started on a smart server repository. This should not
 
4166
  occur on regular push and pull operations, and is a key indicator for
 
4167
  performance regressions. (Robert Collins)
 
4168
 
 
4169
* ``-Dlock`` when passed to the selftest (e.g. ``bzr -Dlock selftest``) will
 
4170
  cause mismatched physical locks to cause test errors rather than just
 
4171
  reporting to the screen. (Robert Collins)
 
4172
 
 
4173
* -Dprogress will cause pdb to start up if a progress view jumps
 
4174
  backwards. (Robert Collins)
 
4175
 
 
4176
* Fallback ``CredentialStore`` instances registered with ``fallback=True``
 
4177
  are now be able to provide credentials if obtaining credentials 
 
4178
  via ~/.bazaar/authentication.conf fails. (Jelmer Vernooij, 
 
4179
  Vincent Ladeuil, #321918)
 
4180
 
 
4181
* New hook ``Lock.lock_broken`` which runs when a lock is
 
4182
  broken. This is mainly for testing that lock/unlock are
 
4183
  balanced in tests. (Vincent Ladeuil)
 
4184
 
 
4185
* New MergeDirective hook 'merge_request_body' allows hooks to supply or
 
4186
  alter a body for the message produced by ``bzr send``.
 
4187
 
 
4188
* New smart server verb ``BzrDir.initialize_ex`` which implements a
 
4189
  refactoring to the core of clone allowing less round trips on new
 
4190
  branches. (Robert Collins)
 
4191
 
 
4192
* New method ``Tags.rename_revisions`` that can rename revision ids tags
 
4193
  are pointing at. (Jelmer Vernooij)
 
4194
 
 
4195
* Updated the bundled ``ConfigObj`` library to 4.6.0 (Matt Nordhoff)
 
4196
 
 
4197
Testing
 
4198
*******
 
4199
 
 
4200
* ``bzr selftest`` will now fail if lock/unlock are not correctly balanced in
 
4201
  tests. Using ``-Dlock`` will turn the related failures into warnings.
 
4202
  (Vincent Ladeuil, Robert Collins)
 
4203
 
 
4204
bzr 1.14
 
4205
########
 
4206
:Codename: brisbane-core
 
4207
:1.14rc1: 2009-04-06
 
4208
:1.14rc2: 2009-04-19
 
4209
:1.14: 2009-04-28
 
4210
:1.14.1: 2009-05-01
 
4211
 
 
4212
New formats 1.14 and 1.14-rich-root supporting End-Of-Line (EOL) conversions,
 
4213
keyword templating (via the bzr-keywords plugin) and generic content filtering.
 
4214
End-of-line conversion is now supported for formats supporting content
 
4215
filtering.
 
4216
 
 
4217
Changes from 1.14final to 1.14.1
 
4218
********************************
 
4219
 
 
4220
* Change api_minimum_version back to api_minimum_version = (1, 13, 0)
 
4221
 
 
4222
Changes from 1.14rc2 to 1.14final
 
4223
*********************************
 
4224
 
 
4225
* Fix a bug in the pure-python ``GroupCompress`` code when handling copies
 
4226
  longer than 64KiB. (John Arbash Meinel, #364900)
 
4227
 
 
4228
Changes from 1.14rc1 to 1.14rc2
 
4229
*******************************
 
4230
 
 
4231
* Fix for bug 358037 Revision not in
 
4232
  bzrlib.groupcompress.GroupCompressVersionedFiles (Brian de Alwis, 
 
4233
  John A Meinel)
 
4234
 
 
4235
* Fix for bug 354036 ErrorFromSmartServer - AbsentContentFactory object has no
 
4236
  attribute 'get_bytes_as' exception while pulling from Launchpad 
 
4237
  (Jean-Francois Roy, Andrew Bennetts, Robert Collins)
 
4238
 
 
4239
* Fix for bug 355280 eol content filters are never loaded and thus never
 
4240
  applied (Brian de Alwis, Ian Clatworthy)
 
4241
 
 
4242
* bzr.dev -r4280  Change _fetch_uses_deltas = False for CHK repos until we can
 
4243
  write a better fix. (John Arbash Meinel, Robert Collins)
 
4244
 
 
4245
* Fix for bug 361574 uncommit recommends undefined --levels and -n options
 
4246
  (Marius Kruger, Ian Clatworthy)
 
4247
 
 
4248
* bzr.dev r4289 as cherrypicked at lp:~spiv/bzr/stacking-cherrypick-1.14 
 
4249
  (Andrew Bennetts, Robert Collins)
 
4250
 
 
4251
Compatibility Breaks
 
4252
********************
 
4253
 
 
4254
* A previously disabled code path to accelerate getting configuration
 
4255
  settings from a smart server has been reinstated. We think this *may*
 
4256
  cause a incompatibility with servers older than bzr 0.15. We intend
 
4257
  to issue a point release to address this if it turns out to be a
 
4258
  problem. (Robert Collins, Andrew Bennetts)
14
4259
 
15
4260
* bzr no longer autodetects nested trees as 'tree-references'.  They
16
4261
  must now be explicitly added tree references.  At the commandline, use
17
4262
  join --reference instead of add.  (Aaron Bentley)
18
4263
 
 
4264
* The ``--long`` log format (the default) no longer shows merged
 
4265
  revisions implicitly, making it consistent with the ``short`` and
 
4266
  ``line`` log formats.  To see merged revisions for just a given
 
4267
  revision, use ``bzr log -n0 -rX``. To see every merged revision,
 
4268
  use ``bzr log -n0``.  (Ian Clatworthy)
 
4269
 
19
4270
New Features
20
4271
************
21
4272
 
22
 
* New ``guess-renames`` command recognizes renames after they occur.
 
4273
* New formats ``1.14`` and ``1.14-rich-root`` supporting End-Of-Line
 
4274
  (EOL) conversions, keyword templating (via the bzr-keywords plugin)
 
4275
  and generic content filtering. These formats replace the experimental
 
4276
  ``development-wt5`` and ``development-wt5-rich-root`` formats
 
4277
  respectively, but have support for filtered views disabled.
 
4278
  (Ian Clatworthy)
 
4279
 
 
4280
* New ``mv --auto`` option recognizes renames after they occur.
23
4281
  (Aaron Bentley)
24
4282
 
 
4283
* ``bzr`` can now get passwords from stdin without requiring a controlling
 
4284
  terminal (i.e. by redirecting stdin). (Vincent Ladeuil)
 
4285
 
25
4286
* ``bzr log`` now supports filtering of multiple files and directories
26
4287
  and will show changes that touch any of them. Furthermore,
27
4288
  directory filtering now shows the changes to any children of that
46
4307
  trees). See ``bzr help content-filters`` for further details.
47
4308
  (Ian Clatworthy, Alexander Belchenko)
48
4309
 
 
4310
* End-of-line conversion is now supported for formats supporting
 
4311
  content filtering. See ``bzr help eol`` for details.
 
4312
  (Ian Clatworthy)
 
4313
 
 
4314
* Newly-blessed `join` command allows combining two trees into one.
 
4315
  (Aaron Bentley)
 
4316
 
49
4317
Improvements
50
4318
************
51
4319
 
67
4335
  version controlled files match the ignore pattern. (Neil
68
4336
  Martinsen-Burrell, #248895)
69
4337
 
 
4338
* ``bzr log`` now has ``--include-merges`` as an alias for ``--levels 0``.
 
4339
  (Ian Clatworthy)
 
4340
 
70
4341
* ``bzr send`` is faster on repositories with deep histories.
71
4342
  (Ian Clatworthy)
72
4343
 
 
4344
* IPv6 literals are accepted in URLs.
 
4345
  (stlman, Martin Pool, Jelmer Vernooij, #165014)
 
4346
 
73
4347
* Progress bars now show the rate of network activity for
74
4348
  ``bzr+ssh://`` and ``bzr://`` connections.  (Andrew Bennetts)
75
4349
 
 
4350
* Prompt for user names if they are not in the configuration. 
 
4351
  (Jelmer Vernooij, #256612)
 
4352
 
76
4353
* Pushing to a stacked pack-format branch on a 1.12 or older smart server
77
4354
  now takes many less round trips.  (Andrew Bennetts, Robert Collins,
78
4355
  #294479)
81
4358
  implemented using a new ``Repository.insert_stream_locked`` RPC.
82
4359
  (Andrew Bennetts, Robert Collins)
83
4360
 
 
4361
* The "ignoring files outside view: .." message has been re-worded
 
4362
  to "Ignoring files outside view. View is .." to reduce confusion
 
4363
  about what was being considered and what was being ignored.
 
4364
  (Ian Clatworthy)
 
4365
 
 
4366
* The ``long`` log formatter now shows [merge] indicators. If
 
4367
  only one level of revisions is displayed and merges are found,
 
4368
  the ``long`` and ``short`` log formatters now tell the user
 
4369
  how to see the hidden merged revisions.  (Ian Clatworthy)
 
4370
 
 
4371
* The ``brisbane-core`` project has delivered its beta format
 
4372
  ``development6-rich-root``. This format is suitable for judicious
 
4373
  testing by early adopters. In particular if you are benchmarking bzr
 
4374
  performance please be sure to test using this format. At this stage
 
4375
  more information is best obtained by contacting the Bazaar mailing list
 
4376
  or IRC channel if you are interested in using this format. We will make
 
4377
  end user documentation available closer to blessing the format as
 
4378
  production ready. (Robert Collins, John Arbash Meinel, Ian Clatworthy,
 
4379
  Vincent Ladeuil, Andrew Bennetts, Martin Pool)
 
4380
 
84
4381
* Tildes are no longer escaped. No more %7Euser/project/branch!
85
4382
  (Jonathan Lange)
86
4383
 
87
4384
Bug Fixes
88
4385
*********
89
4386
 
 
4387
* Pushing a new stacked branch will also push the parent inventories for
 
4388
  revisions at the stacking boundary.  This makes sure that the stacked
 
4389
  branch has enough data to calculate inventory deltas for all of its
 
4390
  revisions (without requiring the fallback branch).  This avoids
 
4391
  "'AbsentContentFactory' object has no attribute 'get_bytes_as'" errors
 
4392
  when fetching the stacked branch from a 1.13 (or later) smart server.
 
4393
  This partially fixes #354036.  (Andrew Bennetts, Robert Collins)
 
4394
 
 
4395
* End-Of-Line content filters are now loaded correctly.
 
4396
  (Ian Clatworthy, Brian de Alwis, #355280)
 
4397
 
90
4398
* Authentication plugins now receive all the parameters from the request
91
4399
  itself (aka host, port, realm, path, etc). Previously, only the 
92
4400
  authentication section name, username and encoded password were 
95
4403
* bzr gives a better message if an invalid regexp is passed to ``bzr log
96
4404
  -m``.  (Anne Mohsen, Martin Pool)
97
4405
 
 
4406
* ``bzr split`` now says "See also: join" (Aaron Bentley, #335015)
 
4407
 
 
4408
* ``bzr version-info`` now works in empty branches. (Jelmer Vernooij,
 
4409
  #313028)
 
4410
 
98
4411
* Fix "is not a stackable format" error when pushing a
99
4412
  stackable-format branch with an unstackable-format repository to a
100
4413
  destination with a default stacking policy.  (Andrew Bennetts)
102
4415
* Fixed incorrect "Source format does not support stacking" warning
103
4416
  when pushing to a smart server.  (Andrew Bennetts, #334114)
104
4417
 
 
4418
* Fix 'make check-dist-tarball' failure by converting paths to unicode when
 
4419
  needed. (Vincent Ladeuil, #355454)
 
4420
 
105
4421
* Fixed "Specified file 'x/y/z' is outside current view: " occurring
106
 
  on ``bzr add x/y/z`` in WorkingTree5 formats (e.g. ``development-wt5``)
107
 
  when no view is defined.  (Ian Clatworthy, #344708)
 
4422
  on ``bzr add x/y/z`` in formats supporting views when no view is
 
4423
  defined.  (Ian Clatworthy, #344708)
108
4424
 
109
4425
* It is no longer possible to fetch between repositories while the
110
4426
  target repository is in a write group. This prevents race conditions
122
4438
  both branches, we know that the trunk for the project can be read too,
123
4439
  so the upgrade will not inconvenience users. (Robert Collins, #345169)
124
4440
 
 
4441
* Pushing a new stacked branch will also push the parent inventories for
 
4442
  revisions at the stacking boundary.  This makes sure that the stacked
 
4443
  branch has enough data to calculate inventory deltas for all of its
 
4444
  revisions (without requiring the fallback branch).  This avoids
 
4445
  "'AbsentContentFactory' object has no attribute 'get_bytes_as'" errors
 
4446
  when fetching the stacked branch from a 1.13 (or later) smart server.
 
4447
  This partially fixes #354036.  (Andrew Bennetts, Robert Collins)
 
4448
 
 
4449
* The full test suite is passing again on OSX. Several minor issues (mostly
 
4450
  test related) have been fixed. (Vincent Ladeuil, #355273).
 
4451
 
125
4452
* The GNU Changelog formatter is slightly improved in the case where
126
4453
  the delta is empty, and now correctly claims not to support tags.
127
4454
  (Andrea Bolognani)
129
4456
* Shelve can now shelve changes to a symlink target.
130
4457
  (James Westby, #341558)
131
4458
 
 
4459
* The help for the ``info`` command has been corrected.
 
4460
  (Ian Clatworthy, #351931)
 
4461
 
 
4462
* Upgrade will now use a sensible default format if the source repository
 
4463
  uses rich roots.  (Jelmer Vernooij, #252908)
 
4464
 
132
4465
Documentation
133
4466
*************
134
4467
 
142
4475
API Changes
143
4476
***********
144
4477
 
145
 
* APIs deprecated in 1.6 and previous verisons of bzr are now removed.
 
4478
* APIs deprecated in 1.6 and previous versions of bzr are now removed.
146
4479
  (Martin Pool)
147
4480
 
 
4481
* ``CommitReporter`` is no longer called with ``unchanged`` status during
 
4482
  commit - this was a full-tree overhead that bzr no longer performs.
 
4483
  (Robert Collins)
 
4484
 
 
4485
* New abstract ``UIFactory`` method ``get_username`` which will be called to 
 
4486
  obtain the username to use when connecting to remote machines. 
 
4487
  (Jelmer Vernooij)
 
4488
 
148
4489
* New API ``Inventory.filter()`` added that filters an inventory by
149
4490
  a set of file-ids so that only those fileids, their parents and
150
4491
  their children are included.  (Ian Clatworthy)
166
4507
* The ``pb`` argument to ``fetch()`` is deprecated.
167
4508
  (Martin Pool)
168
4509
 
 
4510
* The ``Serializer`` class and the serializer ``format registry`` have moved
 
4511
  from ``bzrlib.xml_serializer`` to ``bzrlib.serializer``. (Jelmer Vernooij)
 
4512
 
169
4513
* The smart server jail now hooks into BzrDir.open to prevent any BzrDir
170
4514
  that is not inside the backing transport from being opened.  See the
171
4515
  module documentation for ``bzrlib.smart.request`` for details.
172
4516
  (Andrew Bennetts, Robert Collins)
173
4517
 
 
4518
* ``Tree.get_symlink_target`` now always returns a unicode string result
 
4519
  or None. Previously it would return the bytes from reading the link
 
4520
  which could be in any arbitrary encoding. (Robert Collins)
 
4521
 
174
4522
Testing
175
4523
*******
176
4524
 
192
4540
Internals
193
4541
*********
194
4542
 
 
4543
* Added ``chk_map`` for fast, trie-based storage of tuple to string maps.
 
4544
  (Robert Collins, John Arbash Meinel, Vincent Ladeuil)
 
4545
 
 
4546
* Added ``bzrlib.chk_map`` for fast, trie-based storage of tuple to string
 
4547
  maps.  (Robert Collins, John Arbash Meinel, Vincent Ladeuil)
 
4548
 
 
4549
* Added ``bzrlib.inventory_delta`` module.  This will be used for
 
4550
  serializing and deserializing inventory deltas for more efficient
 
4551
  streaming on the network.  (Robert Collins, Andrew Bennetts)
 
4552
 
 
4553
* ``Branch._get_config`` has been added, which splits out access to the
 
4554
  specific config file from the branch. This is used to let RemoteBranch
 
4555
  avoid constructing real branch objects to access configuration settings.
 
4556
  (Robert Collins, Andrew Bennetts)
 
4557
 
 
4558
* ``Branch`` now implements ``set_stacked_on_url`` in the base class as
 
4559
  the implementation is generic and should impact foreign formats. This
 
4560
  helps performance for ``RemoteBranch`` push operations to new stacked
 
4561
  branches. (Robert Collins, Andrew Bennetts)
 
4562
 
195
4563
* ``BtreeIndex._spill_mem_keys_to_disk()`` now generates disk index with
196
4564
  optmizations turned off. This only has effect when processing > 100,000
197
4565
  keys during something like ``bzr pack``. (John Arbash Meinel)
219
4587
  objects, allowing better enforcement of the smart server jail when
220
4588
  dealing with stacked branches. (Robert Collins, Andrew Bennetts)
221
4589
 
 
4590
* New hook ``RioVersionInfoBuilder.revision``, allowing extra entries 
 
4591
  to be added to the stanza that is printed for a particular revision.
 
4592
  (Jelmer Vernooij)
 
4593
 
222
4594
* New repository method ``refresh_data`` to cause any repository to
223
4595
  make visible data inserted into the repository by a smart server
224
4596
  fetch operation. (Robert Collins, Andrew Bennetts)
225
4597
 
 
4598
* ``register_filter_stack_map`` now takes an optional fallback parameter,
 
4599
  a callable to invoke if a preference has a value not in the map
 
4600
  of filter stacks. This enhancement allows, for example,  bzr-svn to
 
4601
  handle existing svn properties that define a list of keywords to be
 
4602
  expanded.  (Ian Clatworthy)
 
4603
 
 
4604
* ``RemoteBranchConfig`` will use a new verb ``Branch.set_config_option``
 
4605
  to write config settings to smart servers that support this, saving
 
4606
  5 round trips on the stacked streaming acceptance test.
 
4607
  (Robert Collins, Andrew Bennetts)
 
4608
 
 
4609
* ``RemoteBranch`` now provides ``_get_config`` for access to just the
 
4610
  branch specific configuration from a remote server, which uses the 
 
4611
  already existing ``Branch.get_config_file`` smart verb.
 
4612
  (Robert Collins, Andrew Bennetts)
 
4613
 
226
4614
* ``RemoteRepository`` will now negatively cache missing revisions during
227
4615
  ``get_parent_map`` while read-locked. Write-locks are unaffected.
228
4616
  (Robert Collins, Andrew Bennetts)
241
4629
  building a working tree (file.writelines(str) is very inefficient). This
242
4630
  can have a large effect on ``bzr checkout`` times. (John Arbash Meinel)
243
4631
 
 
4632
* selftest now supports a --parallel option, with values of 'fork' or
 
4633
  'subprocess' to run the test suite in parallel. Currently only Linux
 
4634
  machines work, other platforms need patches submitted. (Robert Collins,
 
4635
  Vincent Ladeuil)
 
4636
 
244
4637
* ``tests.run_suite`` has a new parameter ``suite_decorators``, a list of 
245
4638
  callables to use to decorate the test suite. Such decorators can add or
246
4639
  remove tests, or even remote the test suite to another machine if
263
4656
:1.13: 2009-03-14
264
4657
:1.13rc1: 2009-03-10
265
4658
:1.13.1: 2009-03-23
 
4659
:1.13.2: 2009-04-27
266
4660
 
267
4661
GNU Changelog output can now be produced by ``bzr log --gnu-changelog``.  Debug
268
4662
flags can now be set in ``~/.bazaar/bazaar.conf``.  Lightweight checkouts and
269
4663
stacked branches should both be much faster over remote connections.  
270
4664
 
271
 
Changes From 1.13 to 1.13.1
272
 
***************************
 
4665
Changes From 1.13.1 to 1.13.2
 
4666
*****************************
 
4667
 
 
4668
A regression was found in the 1.13.1 release. When bzr 1.13.1 and earlier push
 
4669
a stacked branch they do not take care to push all the parent inventories for
 
4670
the transferred revisions. This means that a smart server serving that branch
 
4671
often cannot calculate inventory deltas for the branch (because smart server
 
4672
does not/cannot open fallback repositories). Prior to 1.13 the server did not
 
4673
have a verb to stream revisions out of a repository, so that's why this bug has
 
4674
appeared now.
 
4675
 
 
4676
Bug Fixes
 
4677
*********
 
4678
 
 
4679
* Fix for bug 354036 ErrorFromSmartServer - AbsentContentFactory object has no
 
4680
  attribute 'get_bytes_as' exception while pulling from Launchpad 
 
4681
  (Jean-Francois Roy, Andrew Bennetts, Robert Collins)
 
4682
 
 
4683
Changes From 1.13final to 1.13.1
 
4684
********************************
 
4685
 
273
4686
A couple regessions where found in the 1.13 release. The pyrex-generated C
274
4687
extensions are missing from the .tar.gz and .zip files.  Documentation on how
275
4688
to generate GNU ChangeLogs is wrong.
288
4701
 
289
4702
* ``merge --force`` works again. (Robert Collins, #342105)
290
4703
 
291
 
Changes From RC1 to Final
292
 
*************************
 
4704
Changes From 1.13rc1 to 1.13final
 
4705
*********************************
293
4706
 
294
4707
* Fix "is not a stackable format" error when pushing a
295
4708
  stackable-format branch with an unstackable-format repository to a
330
4743
* Multiple authors for a commit can now be recorded by using the "--author"
331
4744
  option multiple times. (James Westby, #185772)
332
4745
 
333
 
* New clean-tree command, from bzrtools.  (Aaron Bentley, Jelmer Vernoij)
 
4746
* New clean-tree command, from bzrtools.  (Aaron Bentley, Jelmer Vernooij)
334
4747
 
335
4748
* New command ``bzr launchpad-open`` opens a Launchpad web page for that
336
4749
  branch in your web browser, as long as the branch is on Launchpad at all.
441
4854
  reoccuring. (Robert Collins, Andrew Bennetts)
442
4855
 
443
4856
* Restore the progress bar on Windows. We were disabling it when TERM
444
 
  wasn't set, but Windows doesn't set TERM. (Alexander Belchenko)
 
4857
  wasn't set, but Windows doesn't set TERM. (Alexander Belchenko,
 
4858
  #334808)
445
4859
 
446
4860
* ``setup.py build_ext`` now gives a proper error when an extension
447
4861
  fails to build. (John Arbash Meinel)
843
5257
  (Vincent Ladeuil)
844
5258
 
845
5259
 
846
 
bzr 1.11 "Eyes up!" 2009-01-19
847
 
##############################
 
5260
bzr 1.11
 
5261
########
 
5262
 
 
5263
:Codename: "Eyes up!"
 
5264
:Released: 2009-01-19
848
5265
 
849
5266
This first monthly release of Bazaar for 2009 improves Bazaar's operation
850
5267
in Windows, Mac OS X, and other situations where file names are matched
870
5287
 
871
5288
 
872
5289
 
873
 
bzr 1.11rc1 "Eyes up!" 2009-01-09
874
 
#################################
 
5290
bzr 1.11rc1
 
5291
###########
 
5292
 
 
5293
:Codename: "Eyes up!"
 
5294
:Released: 2009-01-09
875
5295
 
876
5296
Changes
877
5297
*******
1107
5527
 
1108
5528
 
1109
5529
 
1110
 
bzr 1.10 2008-12-05
1111
 
###################
 
5530
bzr 1.10
 
5531
########
 
5532
 
 
5533
:Released: 2008-12-05
1112
5534
 
1113
5535
Bazaar 1.10 has several performance improvements for copying revisions
1114
5536
(especially for small updates to large projects).  There has also been a
1133
5555
  topologically. (John Arbash Meinel, #304841)
1134
5556
 
1135
5557
 
1136
 
bzr 1.10rc1 2008-11-28
1137
 
######################
 
5558
bzr 1.10rc1
 
5559
###########
 
5560
 
 
5561
:Released: 2008-11-28
1138
5562
 
1139
5563
This release of Bazaar focuses on performance improvements when pushing
1140
5564
and pulling revisions, both locally and to remote networks.  The popular
1254
5678
* Doctests now only report the first failure.  (Martin Pool)
1255
5679
 
1256
5680
 
1257
 
bzr 1.9 2008-11-07
1258
 
##################
 
5681
bzr 1.9
 
5682
#######
 
5683
 
 
5684
:Released: 2008-11-07
1259
5685
 
1260
5686
This release of Bazaar adds a new repository format, ``1.9``, with smaller
1261
5687
and more efficient index files.  This format can be specified when
1277
5703
  (John Arbash Meinel, #293746)
1278
5704
 
1279
5705
 
1280
 
bzr 1.9rc1 2008-10-31
1281
 
#####################
 
5706
bzr 1.9rc1
 
5707
##########
 
5708
 
 
5709
:Released: 2008-10-31
1282
5710
 
1283
5711
New Features
1284
5712
************
1395
5823
  configuration of authetication credentials.
1396
5824
 
1397
5825
 
1398
 
bzr 1.8 2008-10-16
1399
 
##################
 
5826
bzr 1.8
 
5827
#######
 
5828
 
 
5829
:Released: 2008-10-16
1400
5830
 
1401
5831
Bazaar 1.8 includes several fixes that improve working tree performance,
1402
5832
display of revision logs, and merges.  The bzr testsuite now passes on OS
1417
5847
  that platform.  (Alexander Belchenko, Martin Pool, #277481)
1418
5848
 
1419
5849
 
1420
 
bzr 1.8rc1 2008-10-07
1421
 
#####################
 
5850
bzr 1.8rc1
 
5851
##########
 
5852
 
 
5853
:Released: 2008-10-07
1422
5854
 
1423
5855
Changes
1424
5856
*******
1616
6048
  (Vincent Ladeuil)
1617
6049
 
1618
6050
 
1619
 
bzr 1.7.1 2008-10-01
1620
 
####################
 
6051
bzr 1.7.1
 
6052
#########
 
6053
 
 
6054
:Released:  2008-10-01
1621
6055
 
1622
6056
No changes from 1.7.1rc1.
1623
6057
 
1624
6058
 
1625
 
bzr 1.7.1rc1 2008-09-24
1626
 
#######################
 
6059
bzr 1.7.1rc1
 
6060
############
 
6061
 
 
6062
:Released: 2008-09-24
1627
6063
 
1628
6064
This release just includes an update to how the merge algorithm handles
1629
6065
file paths when we encounter complex history.
1638
6074
  (John Arbash Meinel)
1639
6075
 
1640
6076
 
1641
 
bzr 1.7 2008-09-23
1642
 
##################
 
6077
bzr 1.7
 
6078
#######
 
6079
 
 
6080
:Released: 2008-09-23
1643
6081
 
1644
6082
This release includes many bug fixes and a few performance and feature
1645
6083
improvements.  ``bzr rm`` will now scan for missing files and remove them,
1656
6094
  packaging qbzr. (Mark Hammond)
1657
6095
 
1658
6096
 
1659
 
bzr 1.7rc2 2008-09-17
1660
 
#####################
 
6097
bzr 1.7rc2
 
6098
##########
 
6099
 
 
6100
:Released: 2008-09-17
1661
6101
 
1662
6102
A few bug fixes from 1.7rc1. The biggest change is a new
1663
6103
``RemoteBranch.get_stacked_on_url`` rpc. This allows clients that are
1681
6121
  (Andrew Bennetts)
1682
6122
 
1683
6123
 
1684
 
bzr 1.7rc1 2008-09-09
1685
 
#####################
 
6124
bzr 1.7rc1
 
6125
##########
 
6126
 
 
6127
:Released: 2008-09-09
1686
6128
 
1687
6129
This release candidate for bzr 1.7 has several bug fixes and a few
1688
6130
performance and feature improvements.  ``bzr rm`` will now scan for
1879
6321
  clients now use this mechanism.  (Neil Martinsen-Burrell)
1880
6322
 
1881
6323
 
1882
 
bzr 1.6.1 2008-09-05
1883
 
####################
 
6324
bzr 1.6.1
 
6325
#########
 
6326
 
 
6327
:Released: 2008-09-05
1884
6328
 
1885
6329
A couple regressions were found in the 1.6 release. There was a
1886
6330
performance issue when using ``bzr+ssh`` to branch large repositories,
1887
6331
and some problems with stacking and ``rich-root`` capable repositories.
1888
6332
 
1889
6333
 
1890
 
bzr 1.6.1rc2 2008-09-03
1891
 
#######################
 
6334
bzr 1.6.1rc2
 
6335
############
 
6336
 
 
6337
:Released: 2008-09-03
1892
6338
 
1893
6339
Bug Fixes
1894
6340
*********
1899
6345
  (John Arbash Meinel, #264321)
1900
6346
 
1901
6347
 
1902
 
bzr 1.6.1rc1 2008-08-29
1903
 
#######################
 
6348
bzr 1.6.1rc1
 
6349
############
 
6350
 
 
6351
:Released: 2008-08-29
1904
6352
 
1905
6353
This release fixes a few regressions found in the 1.6 client. Fetching
1906
6354
changes was using an O(N^2) buffering algorithm, so for large projects it
1940
6388
  (John Arbash Meinel, #262333)
1941
6389
 
1942
6390
 
1943
 
bzr 1.6 2008-08-25
1944
 
##################
 
6391
bzr 1.6
 
6392
#######
 
6393
 
 
6394
:Released: 2008-08-25
1945
6395
 
1946
6396
Finally, the long awaited bzr 1.6 has been released. This release includes
1947
6397
new features like Stacked Branches, improved weave merge, and an updated
1954
6404
TortoiseBzr in the standalone Windows installer.
1955
6405
 
1956
6406
 
1957
 
bzr 1.6rc5 2008-08-19
1958
 
#####################
 
6407
bzr 1.6rc5
 
6408
##########
 
6409
 
 
6410
:Released: 2008-08-19
1959
6411
 
1960
6412
Bug Fixes
1961
6413
*********
1967
6419
  (This change was reverted when merged to bzr.dev)
1968
6420
 
1969
6421
 
1970
 
bzr 1.6rc4 2008-08-18
1971
 
#####################
 
6422
bzr 1.6rc4
 
6423
##########
 
6424
 
 
6425
:Released: 2008-08-18
1972
6426
 
1973
6427
Bug Fixes
1974
6428
*********
1978
6432
  rather than preserving deltas.  (John Arbash Meinel, #256757)
1979
6433
 
1980
6434
 
1981
 
bzr 1.6rc3 2008-08-14
1982
 
#####################
 
6435
bzr 1.6rc3
 
6436
##########
 
6437
 
 
6438
:Released: 2008-08-14
1983
6439
 
1984
6440
Changes
1985
6441
*******
2012
6468
  development which is substantially faster. (Robert Collins)
2013
6469
 
2014
6470
 
2015
 
bzr 1.6rc2 2008-08-13
2016
 
#####################
 
6471
bzr 1.6rc2
 
6472
##########
 
6473
 
 
6474
:Released: 2008-08-13
2017
6475
 
2018
6476
This release candidate has a few minor bug fixes, and some regression
2019
6477
fixes for Windows.
2051
6509
  will get the same results.  (John Arbash Meinel, #232188)
2052
6510
 
2053
6511
 
2054
 
bzr 1.6rc1 2008-08-06
2055
 
#####################
 
6512
bzr 1.6rc1
 
6513
##########
 
6514
 
 
6515
:Released: 2008-08-06
2056
6516
 
2057
6517
This release candidate for bzr 1.6 solidifies the new branch stacking
2058
6518
feature.  Bazaar now recommends that users upgrade all knit repositories,
2188
6648
  (Ian Clatworthy)
2189
6649
 
2190
6650
 
2191
 
bzr 1.6beta3 2008-07-17
2192
 
#######################
 
6651
bzr 1.6beta3
 
6652
############
 
6653
 
 
6654
:Released: 2008-07-17
2193
6655
 
2194
6656
This release adds a new 'stacked branches' feature allowing branches to
2195
6657
share storage without being in the same repository or on the same machine.
2361
6823
  (Robert Collins)
2362
6824
 
2363
6825
 
2364
 
bzr 1.6beta2 2008-06-10
2365
 
#######################
 
6826
bzr 1.6beta2
 
6827
############
 
6828
 
 
6829
:Released: 2008-06-10
2366
6830
 
2367
6831
This release contains further progress towards our 1.6 goals of shallow
2368
6832
repositories, and contains a fix for some user-affecting bugs in the
2445
6909
* Knit record serialisation is now stricter on what it will accept, to
2446
6910
  guard against potential internal bugs, or broken input. (Robert Collins)
2447
6911
 
2448
 
bzr 1.6beta1 2008-06-02
2449
 
#######################
 
6912
bzr 1.6beta1
 
6913
############
2450
6914
 
 
6915
:Released: 2008-06-02
2451
6916
 
2452
6917
Commands that work on the revision history such as push, pull, missing,
2453
6918
uncommit and log are now substantially faster.  This release adds a
2665
7130
  (Martin Pool)
2666
7131
 
2667
7132
 
2668
 
bzr 1.5 2008-05-16
2669
 
##################
 
7133
bzr 1.5
 
7134
#######
 
7135
 
 
7136
:Released: 2008-05-16
2670
7137
 
2671
7138
This release of Bazaar includes several updates to the documentation, and fixes
2672
7139
to prepare for making rich root support the default format. Many bugs have been
2687
7154
  (Ian Clatworthy)
2688
7155
 
2689
7156
 
2690
 
bzr 1.5rc1 2008-05-09
2691
 
#####################
 
7157
bzr 1.5rc1
 
7158
##########
 
7159
 
 
7160
:Released: 2008-05-09
2692
7161
 
2693
7162
Changes
2694
7163
*******
2803
7272
  exception. (Andrew Bennetts)
2804
7273
 
2805
7274
* New ``--debugflag``/``-E`` option to ``bzr selftest`` for setting
2806
 
  options for debugging tests, these are complementary to the the -D
 
7275
  options for debugging tests, these are complementary to the -D
2807
7276
  options.  The ``-Dselftest_debug`` global option has been replaced by the
2808
7277
  ``-E=allow_debug`` option for selftest. (Andrew Bennetts)
2809
7278
 
2858
7327
  (Martin Pool)
2859
7328
 
2860
7329
 
2861
 
bzr 1.4 2008-04-28
2862
 
##################
 
7330
bzr 1.4 
 
7331
#######
 
7332
 
 
7333
:Released: 2008-04-28
2863
7334
 
2864
7335
This release of Bazaar includes handy improvements to the speed of log and
2865
7336
status, new options for several commands, improved documentation, and better
2878
7349
  (John Arbash Meinel, Andrew Bennetts, #214894)
2879
7350
 
2880
7351
 
2881
 
bzr 1.4rc2 2008-04-21
2882
 
#####################
 
7352
bzr 1.4rc2
 
7353
##########
 
7354
 
 
7355
:Released: 2008-04-21
2883
7356
 
2884
7357
Bug Fixes
2885
7358
*********
2902
7375
  (Robert Collins, John Arbash Meinel)
2903
7376
 
2904
7377
 
2905
 
bzr 1.4rc1 2008-04-11
2906
 
#####################
 
7378
bzr 1.4rc1
 
7379
##########
 
7380
 
 
7381
:Released: 2008-04-11
2907
7382
 
2908
7383
Changes
2909
7384
*******
2910
7385
 
2911
7386
* bzr main script cannot be imported (Benjamin Peterson)
2912
7387
 
2913
 
* On Linux bzr additionally looks for plugins in arch-independent site
 
7388
* On GNU/Linux bzr additionally looks for plugins in arch-independent site
2914
7389
  directory. (Toshio Kuratomi)
2915
7390
 
2916
7391
* The ``set_rh`` branch hook is now deprecated. Please migrate
3190
7665
  ``Graph.get_parent_map`` returns a dict of key:parents. (Robert Collins)
3191
7666
 
3192
7667
 
3193
 
bzr 1.3.1 2008-04-09
3194
 
####################
 
7668
bzr 1.3.1
 
7669
#########
 
7670
 
 
7671
:Released: 2008-04-09
3195
7672
 
3196
7673
No changes from 1.3.1rc1.
3197
7674
 
3198
7675
 
3199
 
bzr 1.3.1rc1 2008-04-04
3200
 
#######################
 
7676
bzr 1.3.1rc1
 
7677
############
 
7678
 
 
7679
:Released: 2008-04-04
3201
7680
 
3202
7681
Bug Fixes
3203
7682
*********
3208
7687
  (#208418, Andrew Bennetts, Martin Pool, Robert Collins)
3209
7688
 
3210
7689
 
3211
 
bzr 1.3 2008-03-20
3212
 
##################
 
7690
bzr 1.3
 
7691
#######
 
7692
 
 
7693
:Released: 2008-03-20
3213
7694
 
3214
7695
Bazaar has become part of the GNU project <http://www.gnu.org>
3215
7696
 
3225
7706
  (#202778, Martin Pool)
3226
7707
 
3227
7708
 
3228
 
bzr 1.3rc1 2008-03-16
3229
 
#####################
 
7709
bzr 1.3rc1
 
7710
##########
 
7711
 
 
7712
:Released: 2008-03-16
3230
7713
 
3231
7714
Notes When Upgrading
3232
7715
********************
3245
7728
 
3246
7729
* BZR_LOG environment variable controls location of .bzr.log trace file.
3247
7730
  User can suppress writing messages to .bzr.log by using '/dev/null'
3248
 
  filename (on Linux) or 'NUL' (on Windows). If BZR_LOG variable
 
7731
  filename (on Unix) or 'NUL' (on Windows). If BZR_LOG variable
3249
7732
  is not defined but BZR_HOME is defined then default location
3250
7733
  for .bzr.log trace file is ``$BZR_HOME/.bzr.log``.
3251
7734
  (Alexander Belchenko, #106117)
3412
7895
  format. (Robert Collins)
3413
7896
 
3414
7897
 
3415
 
bzr 1.2 2008-02-15
3416
 
##################
 
7898
bzr 1.2
 
7899
#######
 
7900
 
 
7901
:Released: 2008-02-15
3417
7902
 
3418
7903
Bug Fixes
3419
7904
*********
3421
7906
* Fix failing test in Launchpad plugin. (Martin Pool)
3422
7907
 
3423
7908
 
3424
 
bzr 1.2rc1 2008-02-13
3425
 
#####################
 
7909
bzr 1.2rc1
 
7910
##########
 
7911
 
 
7912
:Released: 2008-02-13
3426
7913
 
3427
7914
Notes When Upgrading
3428
7915
********************
3540
8027
  checkouts.  (Aaron Bentley, #182040)
3541
8028
 
3542
8029
* Stop polluting /tmp when running selftest.
3543
 
  (Vincent Ladeuil, #123623)
 
8030
  (Vincent Ladeuil, #123363)
3544
8031
 
3545
8032
* Switch from NFKC => NFC for normalization checks. NFC allows a few
3546
8033
  more characters which should be considered valid.
3623
8110
  revision names etc. (Robert Collins)
3624
8111
 
3625
8112
 
3626
 
bzr 1.1 2008-01-15
3627
 
##################
 
8113
bzr 1.1
 
8114
#######
 
8115
 
 
8116
:Released: 2008-01-15
3628
8117
 
3629
8118
(no changes from 1.1rc1)
3630
8119
 
3631
 
bzr 1.1rc1 2008-01-05
3632
 
#####################
 
8120
bzr 1.1rc1
 
8121
##########
 
8122
 
 
8123
:Released: 2008-01-05
3633
8124
 
3634
8125
Changes
3635
8126
*******
3839
8330
  replaced by the new helper methods added in this release. (Robert Collins)
3840
8331
 
3841
8332
 
3842
 
bzr 1.0 2007-12-14
3843
 
##################
 
8333
bzr 1.0
 
8334
#######
 
8335
 
 
8336
:Released: 2007-12-14
3844
8337
 
3845
8338
Documentation
3846
8339
*************
3857
8350
  (Ian Clatworthy)
3858
8351
 
3859
8352
 
3860
 
bzr 1.0rc3 2007-12-11
3861
 
#####################
 
8353
bzr 1.0rc3
 
8354
##########
 
8355
 
 
8356
:Released: 2007-12-11
3862
8357
 
3863
8358
Changes
3864
8359
*******
3899
8394
  (Vincent Ladeuil)
3900
8395
 
3901
8396
 
3902
 
bzr 1.0rc2 2007-12-07
3903
 
#####################
 
8397
bzr 1.0rc2
 
8398
##########
 
8399
 
 
8400
:Released: 2007-12-07
3904
8401
 
3905
8402
Improvements
3906
8403
************
3974
8471
  ``started`` methods. (Matt Nordhoff)
3975
8472
 
3976
8473
 
3977
 
bzr 1.0rc1 2007-11-30
3978
 
#####################
 
8474
bzr 1.0rc1
 
8475
##########
 
8476
 
 
8477
:Released: 2007-11-30
3979
8478
 
3980
8479
Notes When Upgrading
3981
8480
********************
4251
8750
* InventoryEntry.diff is now deprecated.  Please use diff.DiffTree instead.
4252
8751
 
4253
8752
 
4254
 
bzr 0.92 2007-11-05
4255
 
###################
 
8753
bzr 0.92
 
8754
########
 
8755
 
 
8756
:Released: 2007-11-05
4256
8757
 
4257
8758
Changes
4258
8759
*******
4260
8761
  * New uninstaller on Win32.  (Alexander Belchenko)
4261
8762
 
4262
8763
 
4263
 
bzr 0.92rc1 2007-10-29
4264
 
######################
 
8764
bzr 0.92rc1
 
8765
###########
 
8766
 
 
8767
:Released: 2007-10-29
4265
8768
 
4266
8769
Changes
4267
8770
*******
4580
9083
  raises a Python warning.  (Martin Pool)
4581
9084
 
4582
9085
 
4583
 
bzr 0.91 2007-09-26
4584
 
###################
 
9086
bzr 0.91
 
9087
########
 
9088
 
 
9089
:Released: 2007-09-26
4585
9090
 
4586
9091
Bug Fixes
4587
9092
*********
4602
9107
  (Andrew Bennetts)
4603
9108
 
4604
9109
 
4605
 
bzr 0.91rc2 2007-09-11
4606
 
######################
 
9110
bzr 0.91rc2
 
9111
###########
 
9112
 
 
9113
:Released: 2007-09-11
4607
9114
 
4608
9115
* Replaced incorrect tarball for previous release; a debug statement was left
4609
9116
  in bzrlib/remote.py.
4610
9117
 
4611
9118
 
4612
 
bzr 0.91rc1 2007-09-11
4613
 
######################
 
9119
bzr 0.91rc1
 
9120
###########
 
9121
 
 
9122
:Released: 2007-09-11
4614
9123
 
4615
9124
Changes
4616
9125
*******
4937
9446
  [] to revert all files is deprecated.  (Aaron Bentley)
4938
9447
 
4939
9448
 
4940
 
bzr 0.90 2007-08-28
4941
 
###################
 
9449
bzr 0.90
 
9450
########
 
9451
 
 
9452
:Released: 2007-08-28
4942
9453
 
4943
9454
Improvements
4944
9455
************
4961
9472
  and call ``create_repository`` on that.  (Martin Pool)
4962
9473
 
4963
9474
 
4964
 
bzr 0.90rc1 2007-08-14
4965
 
######################
 
9475
bzr 0.90rc1
 
9476
###########
 
9477
 
 
9478
:Released: 2007-08-14
4966
9479
 
4967
9480
Bugfixes
4968
9481
********
5234
9747
  parameter.  Varargs-style parameters are deprecated. (Aaron Bentley)
5235
9748
 
5236
9749
 
5237
 
bzr 0.18  2007-07-17
5238
 
####################
 
9750
bzr 0.18
 
9751
########
 
9752
 
 
9753
:Released:  2007-07-17
5239
9754
 
5240
9755
Bugfixes
5241
9756
********
5243
9758
* Fix 'bzr add' crash under Win32 (Kuno Meyer)
5244
9759
 
5245
9760
 
5246
 
bzr 0.18rc1  2007-07-10
5247
 
#######################
 
9761
bzr 0.18rc1
 
9762
###########
 
9763
 
 
9764
:Released:  2007-07-10
5248
9765
 
5249
9766
Bugfixes
5250
9767
********
5495
10012
  (Vincent Ladeuil, #110448)
5496
10013
 
5497
10014
 
5498
 
bzr 0.17  2007-06-18
5499
 
####################
 
10015
bzr 0.17
 
10016
########
 
10017
 
 
10018
:Released:  2007-06-18
5500
10019
 
5501
10020
Bugfixes
5502
10021
********
5508
10027
  (Aaron Bentley, Ian Clatworthy, #120930)
5509
10028
 
5510
10029
 
5511
 
bzr 0.17rc1  2007-06-12
5512
 
#######################
 
10030
bzr 0.17rc1
 
10031
###########
 
10032
 
 
10033
:Released:  2007-06-12
5513
10034
 
5514
10035
Notes When Upgrading
5515
10036
********************
5610
10131
  your repository. (Previously Branch6 only supported revisions in your
5611
10132
  mainline). (John Arbash Meinel, #115343)
5612
10133
 
5613
 
bzr 0.16  2007-05-07
5614
 
####################
 
10134
bzr 0.16
 
10135
########
 
10136
 
 
10137
:Released:  2007-05-07
5615
10138
 
5616
10139
Bugfixes
5617
10140
********
5641
10164
  diff`` and ``bzr status`` significantly improving the speed of
5642
10165
  both. (John Arbash Meinel)
5643
10166
 
5644
 
bzr 0.16rc2  2007-04-30
5645
 
#######################
 
10167
bzr 0.16rc2
 
10168
###########
 
10169
 
 
10170
:Released:  2007-04-30
5646
10171
 
5647
10172
Bugfixes
5648
10173
********
5665
10190
* ``WorkingTree4._iter_changes`` should not descend into unversioned
5666
10191
  directories. (John Arbash Meinel, #110399)
5667
10192
 
5668
 
bzr 0.16rc1  2007-04-26
5669
 
#######################
 
10193
bzr 0.16rc1
 
10194
###########
 
10195
 
 
10196
:Released:  2007-04-26
5670
10197
 
5671
10198
Notes When Upgrading
5672
10199
********************
5973
10500
  implementation of new auth schemes for both http and proxy.
5974
10501
  (Vincent Ladeuil)
5975
10502
 
5976
 
bzr 0.15 2007-04-01
5977
 
###################
 
10503
bzr 0.15
 
10504
########
 
10505
 
 
10506
:Released: 2007-04-01
5978
10507
 
5979
10508
Bugfixes
5980
10509
********
5986
10515
  checking out a branch that contains an old-format working tree.
5987
10516
  (Martin Pool)
5988
10517
 
5989
 
bzr 0.15rc3  2007-03-26
5990
 
#######################
 
10518
bzr 0.15rc3
 
10519
###########
 
10520
 
 
10521
:Released:  2007-03-26
5991
10522
 
5992
10523
Changes
5993
10524
*******
6062
10593
* Correctly handles mutiple permanent http redirections.
6063
10594
  (vila, #88780)
6064
10595
 
6065
 
bzr 0.15rc2  2007-03-14
6066
 
#######################
 
10596
bzr 0.15rc2
 
10597
###########
 
10598
 
 
10599
:Released:  2007-03-14
6067
10600
 
6068
10601
Notes When Upgrading
6069
10602
********************
6116
10649
  (Wouter van Heyst, #53483)
6117
10650
 
6118
10651
 
6119
 
bzr 0.15rc1  2007-03-07
6120
 
#######################
 
10652
bzr 0.15rc1
 
10653
###########
 
10654
 
 
10655
:Released:  2007-03-07
6121
10656
 
6122
10657
Surprises
6123
10658
*********
6347
10882
  before the rest of the suite.  (Martin Pool)
6348
10883
 
6349
10884
 
6350
 
bzr 0.14  2007-01-23
6351
 
####################
 
10885
bzr 0.14
 
10886
########
 
10887
 
 
10888
:Released:  2007-01-23
6352
10889
 
6353
10890
Improvements
6354
10891
************
6367
10904
  it is in is below a repository. (James Westby, #77306)
6368
10905
 
6369
10906
 
6370
 
bzr 0.14rc1  2007-01-16
6371
 
#######################
 
10907
bzr 0.14rc1
 
10908
###########
 
10909
 
 
10910
:Released:  2007-01-16
6372
10911
 
6373
10912
Improvements
6374
10913
************
6502
11041
  (Alexander Belchenko, #68124)
6503
11042
 
6504
11043
 
6505
 
bzr 0.13  2006-12-05
6506
 
####################
 
11044
bzr 0.13
 
11045
########
 
11046
 
 
11047
:Released:  2006-12-05
6507
11048
 
6508
11049
No changes from 0.13rc
6509
11050
 
6510
11051
 
6511
 
bzr 0.13rc1  2006-11-27
6512
 
#######################
 
11052
bzr 0.13rc1
 
11053
###########
 
11054
 
 
11055
:Released:  2006-11-27
6513
11056
 
6514
11057
Improvements
6515
11058
************
6634
11177
* TestingHTTPRequestHandler really handles the Range header
6635
11178
  (previously it was ignoring it and returning the whole file,).
6636
11179
 
6637
 
bzr 0.12  2006-10-30
6638
 
####################
 
11180
bzr 0.12
 
11181
########
 
11182
 
 
11183
:Released:  2006-10-30
6639
11184
 
6640
11185
Internals
6641
11186
*********
6644
11189
  and remove benchmarks that take longer than 10min to run.
6645
11190
  (John Arbash Meinel)
6646
11191
 
6647
 
bzr 0.12rc1  2006-10-23
6648
 
#######################
 
11192
bzr 0.12rc1
 
11193
###########
 
11194
 
 
11195
:Released:  2006-10-23
6649
11196
 
6650
11197
Improvements
6651
11198
************
6721
11268
* Avoid circular imports by creating a deprecated function for
6722
11269
  ``bzrlib.tree.RevisionTree``. Callers should have been using
6723
11270
  ``bzrlib.revisontree.RevisionTree`` anyway. (John Arbash Meinel,
6724
 
  #63360, #66349)
 
11271
  #66349)
6725
11272
 
6726
11273
* Don't use ``socket.MSG_WAITALL`` as it doesn't exist on all
6727
11274
  platforms. (Martin Pool, #66356)
6766
11313
  option to set the BzrDir, Repository and Branch formats of the
6767
11314
  created objects. (Robert Collins, John Arbash Meinel)
6768
11315
 
6769
 
bzr 0.11  2006-10-02
6770
 
####################
 
11316
bzr 0.11
 
11317
########
 
11318
 
 
11319
:Released:  2006-10-02
6771
11320
 
6772
11321
* Smart server transport test failures on windows fixed. (Lukáš Lalinský).
6773
11322
 
6774
 
bzr 0.11rc2  2006-09-27
6775
 
#######################
 
11323
bzr 0.11rc2
 
11324
###########
 
11325
 
 
11326
:Released:  2006-09-27
6776
11327
 
6777
11328
Bug Fixes
6778
11329
*********
6782
11333
* Commit performance regression fixed. (Aaron Bentley, Robert Collins, John
6783
11334
  Arbash Meinel).
6784
11335
 
6785
 
bzr 0.11rc1  2006-09-25
6786
 
#######################
 
11336
bzr 0.11rc1
 
11337
###########
 
11338
 
 
11339
:Released:  2006-09-25
6787
11340
 
6788
11341
Improvements
6789
11342
************
6976
11529
  allow upgrades to a richer interface than the VFS one provided by
6977
11530
  Transport. (Andrew Bennetts, Martin Pool)
6978
11531
 
6979
 
bzr 0.10  2006-08-29
6980
 
####################
 
11532
bzr 0.10
 
11533
########
 
11534
 
 
11535
:Released:  2006-08-29
6981
11536
 
6982
11537
Improvements
6983
11538
************
7054
11609
  need to be installed. This should help make the life of packagers
7055
11610
  easier. (John Arbash Meinel)
7056
11611
 
7057
 
bzr 0.9.0  2006-08-11
7058
 
#####################
 
11612
bzr 0.9.0
 
11613
#########
 
11614
 
 
11615
:Released:  2006-08-11
7059
11616
 
7060
11617
Surprises
7061
11618
*********
7322
11879
 
7323
11880
* "RevisionTree" is now in bzrlib/revisiontree.py. (Robert Collins)
7324
11881
 
7325
 
bzr 0.8.2  2006-05-17
7326
 
#####################
 
11882
bzr 0.8.2
 
11883
#########
 
11884
 
 
11885
:Released:  2006-05-17
7327
11886
 
7328
11887
Bug Fixes
7329
11888
*********
7330
11889
 
7331
11890
* setup.py failed to install launchpad plugin.  (Martin Pool)
7332
11891
 
7333
 
bzr 0.8.1  2006-05-16
7334
 
#####################
 
11892
bzr 0.8.1
 
11893
#########
 
11894
 
 
11895
:Released:  2006-05-16
7335
11896
 
7336
11897
Bug Fixes
7337
11898
*********
7384
11945
* Fix test case for bzr info in upgrading a standalone branch to metadir,
7385
11946
  uses bzrlib api now. (Olaf Conradi)
7386
11947
 
7387
 
bzr 0.8  2006-05-08
7388
 
###################
 
11948
bzr 0.8
 
11949
#######
 
11950
 
 
11951
:Released:  2006-05-08
7389
11952
 
7390
11953
Notes When Upgrading
7391
11954
********************
7646
12209
* ``run_bzr`` and ``run_bzr_captured`` now accept a 'stdin="foo"'
7647
12210
  parameter which will provide String("foo") to the command as its stdin.
7648
12211
 
7649
 
bzr 0.7 2006-01-09
7650
 
##################
 
12212
bzr 0.7
 
12213
#######
 
12214
 
 
12215
:Released: 2006-01-09
7651
12216
 
7652
12217
Changes
7653
12218
*******
7942
12507
* ``bzrlib.osutils.safe_unicode`` now exists to provide parameter coercion
7943
12508
  for functions that need unicode strings. (Robert Collins)
7944
12509
 
7945
 
bzr 0.6 2005-10-28
7946
 
##################
 
12510
bzr 0.6
 
12511
#######
 
12512
 
 
12513
:Released: 2005-10-28
7947
12514
 
7948
12515
Improvements
7949
12516
************
8119
12686
  about future directions. (Robert Collins/Martin Pool)
8120
12687
 
8121
12688
* bzrlib.transport.http has been modified so that only 404 urllib errors
8122
 
  are returned as NoSuchFile. Other exceptions will propogate as normal.
 
12689
  are returned as NoSuchFile. Other exceptions will propagate as normal.
8123
12690
  This allows debuging of actual errors. (Robert Collins)
8124
12691
 
8125
12692
* bzrlib.transport.Transport now accepts *ONLY* url escaped relative paths
8158
12725
  [-1] in the revision-history. (Andres Salomon)
8159
12726
 
8160
12727
 
8161
 
bzr 0.1.1 2005-10-12
8162
 
####################
 
12728
bzr 0.1.1
 
12729
#########
 
12730
 
 
12731
:Released: 2005-10-12
8163
12732
 
8164
12733
Bug Fixes
8165
12734
*********
8176
12745
* Avoid some unnecessary http operations in branch and pull.
8177
12746
 
8178
12747
 
8179
 
bzr 0.1 2005-10-11
8180
 
##################
 
12748
bzr 0.1
 
12749
#######
 
12750
 
 
12751
:Released: 2005-10-11
8181
12752
 
8182
12753
Notes
8183
12754
*****
8306
12877
  of tests to run, e.g. ``bzr selftest test_weave``
8307
12878
 
8308
12879
 
8309
 
bzr 0.0.9 2005-09-23
8310
 
####################
 
12880
bzr 0.0.9
 
12881
#########
 
12882
 
 
12883
:Released: 2005-09-23
8311
12884
 
8312
12885
Bug Fixes
8313
12886
*********
8348
12921
  another (used by pull, merged, etc.)
8349
12922
 
8350
12923
 
8351
 
bzr 0.0.8 2005-09-20
8352
 
####################
 
12924
bzr 0.0.8
 
12925
#########
 
12926
 
 
12927
:Released: 2005-09-20
 
12928
 
8353
12929
 
8354
12930
Improvements
8355
12931
************
8399
12975
* Quieten warnings about locking; patch from Matt Lavin.
8400
12976
 
8401
12977
 
8402
 
bzr-0.0.7 2005-09-02
8403
 
####################
 
12978
bzr-0.0.7
 
12979
#########
 
12980
 
 
12981
:Released: 2005-09-02
8404
12982
 
8405
12983
New Features
8406
12984
************
8454
13032
 
8455
13033
 
8456
13034
 
8457
 
bzr-0.0.6 2005-08-18
8458
 
####################
 
13035
bzr-0.0.6
 
13036
#########
 
13037
 
 
13038
:Released: 2005-08-18
8459
13039
 
8460
13040
New Features
8461
13041
************
8540
13120
* Fix bugs in committing only selected files or within a subdirectory.
8541
13121
 
8542
13122
 
8543
 
bzr-0.0.5  2005-06-15
8544
 
#####################
 
13123
bzr-0.0.5
 
13124
#########
 
13125
 
 
13126
:Released:  2005-06-15
8545
13127
 
8546
13128
Changes
8547
13129
*******
8682
13264
  2.4 is now only recommended.
8683
13265
 
8684
13266
 
8685
 
bzr-0.0.4  2005-04-22
8686
 
#####################
 
13267
bzr-0.0.4
 
13268
#########
 
13269
 
 
13270
:Released:  2005-04-22
8687
13271
 
8688
13272
Enhancements
8689
13273
************
8751
13335
  from QuantumG.
8752
13336
 
8753
13337
 
8754
 
bzr-0.0.3  2005-04-06
8755
 
#####################
 
13338
bzr-0.0.3
 
13339
#########
 
13340
 
 
13341
:Released:  2005-04-06
8756
13342
 
8757
13343
Enhancements
8758
13344
************
8806
13392
* Win32 fixes from Steve Brown.
8807
13393
 
8808
13394
 
8809
 
bzr-0.0.2  "black cube"  2005-03-31
8810
 
###################################
 
13395
bzr-0.0.2
 
13396
#########
 
13397
 
 
13398
:Codename: "black cube"
 
13399
:Released: 2005-03-31
8811
13400
 
8812
13401
Enhancements
8813
13402
************
8835
13424
  the root directory only.
8836
13425
 
8837
13426
 
8838
 
bzr-0.0.1  2005-03-26
8839
 
#####################
 
13427
bzr-0.0.1
 
13428
#########
 
13429
 
 
13430
:Released:  2005-03-26
8840
13431
 
8841
13432
Enhancements
8842
13433
************
8865
13456
  supported).
8866
13457
 
8867
13458
 
8868
 
bzr-0.0.0.69  2005-03-22
8869
 
########################
 
13459
bzr-0.0.0.69
 
13460
############
 
13461
 
 
13462
:Released:  2005-03-22
8870
13463
 
8871
13464
Enhancements
8872
13465
************
8876
13469
* Storage of local versions: init, add, remove, rm, info, log,
8877
13470
  diff, status, etc.
8878
13471
 
 
13472
 
8879
13473
..
8880
13474
   vim: tw=74 ft=rst ff=unix