/brz/remove-bazaar

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

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Andrew Bennetts
  • Date: 2009-07-08 07:03:38 UTC
  • mto: This revision was merged to the branch mainline in revision 4523.
  • Revision ID: andrew.bennetts@canonical.com-20090708070338-70crapsdixamosuf
Fix bug in HPSS v3 decoder when receiving multiple lots of excess bytes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
Bazaar Release Notes
3
3
####################
4
4
 
 
5
 
5
6
.. contents:: List of Releases
6
7
   :depth: 1
7
8
 
8
 
bzr 2.2b4
9
 
#########
10
 
 
11
 
:Codename: Monkey Magic
12
 
:2.2b4: NOT RELEASED YET
13
 
 
14
 
Compatibility Breaks
15
 
********************
16
 
 
17
 
New Features
18
 
************
19
 
 
20
 
Bug Fixes
21
 
*********
22
 
 
23
 
* Final fix for 'no help for command' issue. We now show a clean message
24
 
  when a command has no help, document how to set help more clearly, and
25
 
  test that all commands available to the test suite have help.
26
 
  (Robert Collins, #177500)
27
 
 
28
 
* Explicitly removing ``--profile-imports`` option from parsed command-line
29
 
  arguments on Windows, because bzr script does the same.
30
 
  (Alexander Belchenko, #588277)
31
 
 
32
 
Improvements
33
 
************
34
 
 
35
 
* Use lazy imports in ``bzrlib/merge.py`` so that plugins like ``news_merge``
36
 
  do not cause modules to be loaded unnecessarily just because the plugin
37
 
  registers a merge hook.  This improves ``bzr rocks`` time by about 25%
38
 
  in a default installation (with just the core plugins).
39
 
  (Andrew Bennetts)
40
 
 
41
 
Documentation
42
 
*************
43
 
 
44
 
* Added ``regression`` tag to our tags list. (Robert Collins)
45
 
 
46
 
* Improved our release checklist to have a bit less churn and leave things
47
 
  ready-to-go for the next action (including other people doing
48
 
  development). (Robert Collins)
49
 
 
50
 
API Changes
51
 
***********
52
 
 
53
 
* ``bzrlib.knit.KnitSequenceMatcher``, which has been deprecated since
54
 
  2007, has been deleted.  Use ``PatienceSequenceMatcher`` from
55
 
  ``bzrlib.patiencediff`` instead.
56
 
  (Andrew Bennetts)
57
 
 
58
 
Internals
59
 
*********
60
 
 
61
 
Testing
62
 
*******
63
 
 
64
 
 
65
 
bzr 2.2b3
66
 
#########
67
 
 
68
 
:2.2b3: 2010-05-28
69
 
 
70
 
This third beta in the 2.2 series brings with it all the goodness of 2.1.2
71
 
and 2.0.6 (though it preceeds 2.0.6 slightly). Of particular note for
72
 
users are compatibility fixes with bzr 1.5 and below servers, a hopeful
73
 
end to the EINTR errors caused by SIGWINCH interactions, a shiny new
74
 
bash completion script and bzr will no longer guess at identity details -
75
 
it was too unreliable in reality. Use ``bzr whoami`` on every new install.
76
 
For developers we have some API changes which may impact plugins as well
77
 
as a bunch of our regular improvements to internal clarity and test
78
 
support.
79
 
 
80
 
Compatibility Breaks
81
 
********************
82
 
 
83
 
* An API break has been made to the lock_write method of ``Branch`` and
84
 
  ``Repository`` objects; they now return ``branch.BranchWriteLockResult``
85
 
  and ``repository.RepositoryWriteLockResult`` objects. This makes
86
 
  changing the API in future easier and permits some cleaner calling code.
87
 
  The lock_read method has also changed from having no defined return
88
 
  value to returning ``LogicalLockResult`` objects.
89
 
  (Robert Collins)
90
 
 
91
 
* ``bzr`` does not try to guess the username as ``username@hostname``
92
 
  and requires it to be explictly set. This can be set using ``bzr
93
 
  whoami``.
94
 
  (Parth Malwankar, #549310)
95
 
 
96
 
* ``bzrlib.commands.Command`` will now raise ValueError during
97
 
  construction if there is no __doc__ set. (Note, this will be reverted in
98
 
  2.2b4) (Robert Collins)
99
 
 
100
 
* The source tree no longer contains a contrib/zsh/_bzr completion
101
 
  script. The new file contrib/zsh/README suggests alternatives.
102
 
  (Martin von Gagern, #560030)
103
 
 
104
 
New Features
105
 
************
106
 
 
107
 
* ``bzr commit`` accepts ``-p`` (for "patch") as a shorter name for
108
 
  ``--show-diff``.
109
 
  (Parth Malwankar, #571467)
110
 
  
111
 
* ``bzr ignore`` now supports a ``--default-rules`` option that displays
112
 
  the default ignore rules used by bzr. The flag ``--old-default-rules``
113
 
  is no longer supported by ``ignore``.
114
 
  (Parth Malwankar, #538703)
115
 
 
116
 
* ``bzr pack`` now supports a ``--clean-obsolete-packs`` option that
117
 
  can save disk space by deleting obsolete pack files created during the
118
 
  pack operation.
119
 
  (Parth Malwankar, #304320)
120
 
 
121
 
* New command line option ``--authors`` to ``bzr log`` allows users to
122
 
  select which of the apparent authors and committer should be
123
 
  included in the log. Defaults depend on format. (Martin von Gagern, #513322)
124
 
 
125
 
* Support ``--directory`` option for a number of additional commands:
126
 
  added, annotate, bind, cat, cat-revision, clean-tree, deleted,
127
 
  export, ignore, ignored, lookup-revision, ls, modified, nick,
128
 
  re-sign, unbind, unknowns.
129
 
  (Martin von Gagern, #527878)
130
 
 
131
 
* The bash_completion plugin from the bzr-bash-completion project has
132
 
  been merged into the tree. It provides a bash-completion command and
133
 
  replaces the outdated ``contrib/bash/bzr`` script with a version
134
 
  using the plugin. (Martin von Gagern, #560030)
135
 
 
136
 
* A new transport based on GIO (the gnome i/o library) provides access to
137
 
  samba shares, webdav using gio+smb and gio+dav. It is also possible to
138
 
  use gio for some already existing transport methods as gio+file,
139
 
  gio+sftp, gio+ftp. 
140
 
  (Mattias Eriksson)
141
 
 
142
 
Bug Fixes
143
 
*********
144
 
 
145
 
* Alias information shown by ``bzr help`` is now accurate. This
146
 
  was showing an internal object name for some plugin aliases.
147
 
  (Parth Malwankar, #584650)
148
 
 
149
 
* ``.bazaar``, ``.bazaar/bazaar.conf`` and ``.bzr.log`` inherit user and
150
 
  group ownership from the containing directory. This allow bzr to work
151
 
  better with sudo.
152
 
  (Martin <gzlist@googlemail.com>, Parth Malwankar, #376388)
153
 
 
154
 
* ``bzr clean-tree`` should not delete nested bzrdirs. Required for proper
155
 
  support of bzr-externals and scmproj plugins.
156
 
  (Alexander Belchenko, bug #572098)
157
 
 
158
 
* ``bzr ignore`` will no longer add duplicate patterns to .bzrignore.
159
 
  (Gordon Tyler, #572092)
160
 
 
161
 
* ``bzr log --exclude-common-ancestry -r X..Y`` displays the revisions that
162
 
  are part of Y ancestry but not part of X ancestry (aka the graph
163
 
  difference).
164
 
  (Vincent Ladeuil, #320119)
165
 
 
166
 
* ``bzr lp-propose`` which was switched to use production Launchpad API
167
 
  servers a few commits ago has been reverted to use edge: there is a
168
 
  problem with using production which isn't trivially obvious, so we've
169
 
  filed a bug to track it, and until thats fixed will be using edge.
170
 
  (Robert Collins, #583667)
171
 
 
172
 
* ``bzr rm`` should not refuse to delete directories which contained a file
173
 
  which has been moved elsewhere in the tree after the previous commit.
174
 
  (Marius Kruger, Daniel Watkins, #129880)
175
 
 
176
 
* ``bzr selftest --parallel=fork`` wait for its children avoiding zombies.
177
 
  (Vincent Ladeuil, #566670)
178
 
 
179
 
* ``bzr selftest`` should not use ui.note() since it's not unicode safe.
180
 
  (Vincent Ladeuil, #563997)
181
 
 
182
 
* CommitBuilder refuses to create revisions whose trees have no root.
183
 
  (Aaron Bentley)
184
 
 
185
 
* Do not register a SIGWINCH signal handler, instead just poll for the
186
 
  terminal width as needed.  This avoids the "Interrupted System Call"
187
 
  problems that occur on POSIX with all currently released versions of
188
 
  Python.
189
 
  (Andrew Bennetts, #583941)
190
 
 
191
 
* Don't mention --no-strict when we just issue the warning about unclean trees.
192
 
  (Vincent Ladeuil, #401599)
193
 
 
194
 
* Fixed ``AssertionError`` when accessing smart servers running Bazaar
195
 
  versions before 1.6.
196
 
  (Andrew Bennetts, #528041)
197
 
 
198
 
* Improved progress bar for fetch (2a format only). Bazaar now shows an
199
 
  estimate of the number of records to be fetched vs actually fetched.
200
 
  (Parth Malwankar, #374740, #538868)
201
 
 
202
 
* Reduce peak memory by one copy of compressed text.
203
 
  (John Arbash Meinel, #566940)
204
 
 
205
 
* ``RemoteBranch.lock_write`` raises ``ReadOnlyError`` if called during a
206
 
  read lock, rather than causing an ``AttributeError``.
207
 
  (Andrew Bennetts, Данило Шеган, #582781)
208
 
 
209
 
* Selftest was failing with testtools 0.9.3, which caused an
210
 
  AssertionError raised from a cleanUp to be reported as a Failure, not an
211
 
  Error, breaking on of our test hygiene tests.
212
 
  (Robert Collins, Vincent Ladeuil).
213
 
 
214
 
* ``set_user_option`` with a dict on remote branches no longer fails with
215
 
  an AttributeError.  There is a new ``Branch.set_config_option_dict`` RPC
216
 
  to support this efficiently.
217
 
  (Andrew Bennetts, #430382)
218
 
  
219
 
* Show the filenames when a file rename fails so that the error will be
220
 
  more comprehensible.
221
 
  (Martin Pool, #491763)
222
 
 
223
 
* Support Pyrex 0.9.9, required changing how we handle exceptions in Pyrex.
224
 
  (John Arbash Meinel, #582656)
225
 
 
226
 
* Unicode characters in aliases are now handled correctly and do not cause
227
 
  UnicodeEncodeError exception. (Parth Malwankar, #529930)
228
 
 
229
 
* Unicode commit messages that are the same as a file name no longer cause
230
 
  UnicodeEncodeError. ``ui.text.show_warning`` now handles unicode
231
 
  messages.
232
 
  (Parth Malwankar, #563646)
233
 
 
234
 
* Using bzr with `lp:` urls behind an http proxy should work.
235
 
  (Robert Collins, #558343)
236
 
 
237
 
* When passing a file to ``UTF8DirReader`` make sure to close the current
238
 
  directory file handle after the chdir fails. Otherwise when passing many
239
 
  filenames into a command line ``bzr status`` we would leak descriptors.
240
 
  (John Arbash Meinel, #583486)
241
 
 
242
 
Improvements
243
 
************
244
 
 
245
 
* ``append_revisions_only`` will now be interpreted as a boolean and a
246
 
  warning emitted if illegal values are used. Note that for projects
247
 
  that needs to maintain compatibility with previsous bzr versions,
248
 
  only 'True' and 'False' strings must be used (previous versions of
249
 
  bzr will interpret all strings differing from 'True'
250
 
  (case-sensitive) as false.
251
 
  (Brian de Alwis, Vincent Ladeuil)
252
 
 
253
 
* ``bzr ls`` now supports short options for existing long options.
254
 
  ``-k/--kind``, ``-i/--ignored``, ``-u/--unknown`` and ``-0/--null``.
255
 
  (Parth Malwankar, #181124)
256
 
 
257
 
* ``Config.get_user_option_as_bool`` will now warn if a value cannot
258
 
  be interpreted as a boolean.
259
 
  (Vincent Ladeuil)
260
 
 
261
 
* The all-in-one Windows installer will now be built with docstrings stripped
262
 
  from the library zip, reducing the size and slightly improving cold startup
263
 
  time. Bundled plugins are unchanged for the moment, but if adding other new
264
 
  plugins to an all-in-one installation, ensure they are compiled and
265
 
  installed with -O1 or help may not work. (Martin [gz])
266
 
 
267
 
Documentation
268
 
*************
269
 
 
270
 
API Changes
271
 
***********
272
 
 
273
 
* Added ``bzrlib.merge.PerFileMerger``, a more convenient way to write
274
 
  some kinds of ``merge_file_content`` hook functions.
275
 
  (Andrew Bennetts)
276
 
  
277
 
* `BzrDir`, `Branch`, `Repository` and `WorkingTree` now all support `user_url`,
278
 
  `user_transport`, `control_url` and `control_transport` members pointing
279
 
  respectively to the directory containing the ``.bzr`` control directory, 
280
 
  and to the directory within ``.bzr`` used for the particular component.
281
 
  All of them inherit from `ControlComponent` which provides default
282
 
  implementations.
283
 
  (Martin Pool)
284
 
 
285
 
* Lock methods on ``Tree``, ``Branch`` and ``Repository`` are now
286
 
  expected to return an object which can be used to unlock them. This reduces
287
 
  duplicate code when using cleanups. The previous 'tokens's returned by
288
 
  ``Branch.lock_write`` and ``Repository.lock_write`` are now attributes
289
 
  on the result of the lock_write. ``repository.RepositoryWriteLockResult``
290
 
  and ``branch.BranchWriteLockResult`` document this. (Robert Collins)
291
 
 
292
 
* ``Repository.refresh_data`` may now be called in a write group on
293
 
  pack-based repositories.  Older repositories will still raise an error
294
 
  in this case.  Subclasses of ``Repository`` can still override
295
 
  ``Repository._refresh_data``, but are now responsible for raising
296
 
  ``bzrlib.repository.IsInWriteGroupError`` if they do not support
297
 
  ``refresh_data`` during a write group.
298
 
  (Andrew Bennetts, #574236)
299
 
 
300
 
Internals
301
 
*********
302
 
 
303
 
* ``chk_map._bytes_to_text_key`` is now an optimized function to extract
304
 
  the (file-id, revision-id) key from a CHKInventory entry. This can
305
 
  potentially shave 5-10% time off during a large fetch. Related to bug
306
 
  #562666. (John Arbash Meinel)
307
 
 
308
 
* ``log._get_info_for_log_files`` now takes an add_cleanup callable.
309
 
  (Robert Collins)
310
 
 
311
 
* ``_remember_remote_is_before`` no longer raises AssertionError when
312
 
  suboptimal network behaviour is noticed; instead it just mutters to the
313
 
  log file (and warns the user if they have set the ``hpss`` debug flag).
314
 
  This was causing unnecessary aborts for performance bugs that are minor
315
 
  at worst.
316
 
  (Andrew Bennetts, #528041)
317
 
 
318
 
* Permit bzr to run under ``python -OO`` which reduces the size of bytecode
319
 
  files loaded from disk. To ensure docstrings needed for help are never
320
 
  stripped, the prefix ``__doc__ =`` should now be used.
321
 
  (Martin <gzlist@googlemail.com>)
322
 
 
323
 
* No longer require zlib headers to build extensions, and remove the need
324
 
  for seperate copy of zlib library on windows.
325
 
  (John Arbash Meinel, Martin <gzlist@googlemail.com>, #66923)
326
 
 
327
 
Testing
328
 
*******
329
 
 
330
 
* Added ``bzrlib.tests.matchers`` as a place to put matchers, along with
331
 
  our first in-tree matcher. See the module docstring for details.
332
 
  (Robert Collins)
333
 
 
334
 
* ``bzr selftest --parallel=subprocess`` now works correctly on win32.
335
 
   (Gordon Tyler, #551332)
336
 
 
337
 
* Workaround ``Crypto.Random`` check leading to spurious test
338
 
  failures on Lucid, FreeBSD and gentoo.  
339
 
  (Vincent Ladeuil, #528436)
340
 
 
341
 
* New class ``ExecutableFeature`` for checking the availability of
342
 
  executables on the ``PATH``. Migrated from bash_completion plugin.
343
 
  (Martin von Gagern)
344
 
 
345
 
bzr 2.2b2
346
 
#########
347
 
 
348
 
:2.2b2: 2010-04-16
349
 
 
350
 
This is a somewhat early second beta of the 2.2 series, to fix a python2.4
351
 
incompatibility in the 2.2b1 release.  It also includes a swag of
352
 
performance, usability and correctness improvements: test feedback on all
353
 
of these would be welcome.
354
 
 
355
 
 
356
 
New Features
357
 
************
358
 
 
359
 
* ``bzr diff`` now supports a --format option, which can be used to 
360
 
  select alternative diff formats. (Jelmer Vernooij, #555994)
361
 
 
362
 
Bug Fixes
363
 
*********
364
 
 
365
 
* ``bzr dpush``, ``bzr push`` and ``bzr send`` will now issue a warning
366
 
  instead of failing when dirty trees are involved. The corresponding
367
 
  ``dpush_strict``, ``push_strict`` and ``send_strict`` should be set to
368
 
  True explicitly to get the previous behaviour.  
369
 
  (Vincent Ladeuil, #519319)
370
 
 
371
 
* ``bzr export`` to tar file does not fail if any parent directory
372
 
  contains unicode characters. This works around upstream Python bug
373
 
  http://bugs.python.org/issue8396 .
374
 
  (Parth Malwankar, #413406)
375
 
 
376
 
* ``bzr switch`` does not die if a ConfigurableFileMerger is used.
377
 
  (Aaron Bentley, #559436)
378
 
 
379
 
* ``bzr update`` when a pending merge in the working tree has been merged
380
 
  into the master branch will no longer claim that old commits have become
381
 
  pending merges. (Robert Collins, #562079)
382
 
 
383
 
* ``bzrlib.mutabletree.MutableTree.commit`` will now support a passed in
384
 
  config as in previous versions of bzrlib. (Robert Collins)
385
 
 
386
 
* Fix glitch in the warning about unclean trees display.
387
 
  (Vincent Ladeuil, #562665)
388
 
 
389
 
* Fixed Python2.4 incompatibilities in the bzr2.2b1 source tarball.
390
 
  (Martin Pool)
391
 
 
392
 
* Help messages generated by ``RegistryOption.from_kwargs`` list the
393
 
  switches in alphabetical order, rather than in an undefined order.
394
 
  (Martin von Gagern, #559409)
395
 
 
396
 
* Make sure the ``ExecutablePath`` and ``InterpreterPath`` are set in
397
 
  Apport crash reports, to avoid "This problem report applies to a program
398
 
  which is not installed any more" error.
399
 
  (Martin Pool, James Westby, #528114)
400
 
 
401
 
* Reset ``siginterrupt`` flag to False every time we handle a signal
402
 
  installed with ``set_signal_handler(..., restart_syscall=True)`` (from
403
 
  ``bzrlib.osutils``.  Reduces the likelihood of "Interrupted System Call"
404
 
  errors compared to registering ``signal.signal`` directly.
405
 
  (Andrew Bennetts)
406
 
 
407
 
* When invoked with a range revision, ``bzr log`` doesn't show revisions
408
 
  that are not part of the Y revisions ancestry anymore when invoked with
409
 
  -rX..Y.
410
 
  (Vincent Ladeuil, #474807)
411
 
 
412
 
* Properly handle ``param_name`` attribute for ``ListOption``.
413
 
  (Martin von Gagern, 387117)
414
 
 
415
 
Improvements
416
 
************
417
 
 
418
 
* ``bzr commit`` will prompt before using a commit message that was
419
 
  generated by a template and not edited by the user.
420
 
  (Robert Collins, #530265)
421
 
 
422
 
* ``bzr diff`` read-locks the trees and branches only once, saving about
423
 
  10-20ms on ``bzr diff`` in a bzr.dev tree.
424
 
  (Andrew Bennetts)
425
 
 
426
 
* ``bzr missing`` read-locks the branches only once.
427
 
  (Andrew Bennetts)
428
 
  
429
 
* ``bzr pull`` locks the branches and tree only once.
430
 
  (Andrew Bennetts)
431
 
  
432
 
* Index lookups in pack repositories search recently hit pack files first.  
433
 
  In repositories with many pack files this can greatly reduce the
434
 
  number of files accessed, the number of bytes read, and the number of
435
 
  read calls.  An incremental pull via plain HTTP takes half the time and
436
 
  bytes for a moderately large repository.  (Andrew Bennetts)
437
 
 
438
 
* Index lookups only re-order the indexes when the hit files aren't
439
 
  already first. Reduces the cost of reordering
440
 
  (John Arbash Meinel, #562429)
441
 
 
442
 
* Less code is loaded at startup.  (Cold-cache start time is about 10-20%
443
 
  less.)
444
 
  (Martin Pool, #553017)
445
 
 
446
 
API Changes
447
 
***********
448
 
 
449
 
* ``bzrlib.diff.get_trees_and_branches_to_diff`` is deprecated.  Use
450
 
  ``get_trees_and_branches_to_diff_locked`` instead.
451
 
  (Andrew Bennetts)
452
 
 
453
 
* ``TreeTransform.commit`` supports the full set of commit parameters, and
454
 
  auto-determines branch nick if not supplied.  (Aaron Bentley)
455
 
  
456
 
Internals
457
 
*********
458
 
 
459
 
* ``bzrlib.commands.Command.run_direct`` is no longer needed - the pre
460
 
  2.1 method of calling run() to perform testing or direct use via the API
461
 
  is now possible again. As part of this, the _operation attribute on
462
 
  Command is now transient and only exists for the duration of ``run()``.
463
 
  (Robert Collins)
464
 
 
465
 
bzr 2.2.0b1
466
 
###########
467
 
 
468
 
:2.2.0b1: 2010-04-01
469
 
 
470
 
Compatibility Breaks
471
 
********************
472
 
 
473
 
* BTreeGraphIndex can now take an offset to indicate that the data starts
474
 
  somewhere other than then beginning of the file. (John Arbash Meinel)
475
 
 
476
 
* Deleted very old hidden commands ``versionedfile-list``,
477
 
  ``weave-plan-merge``, ``weave-merge-text``.
478
 
  (Martin Pool)
479
 
 
480
 
* ``Repository.get_inventory_sha1()`` and ``Repository.get_revision_xml()`` 
481
 
  have been removed. (Jelmer Vernooij)
482
 
 
483
 
* ``Repository.get_revision_inventory()`` has been removed in favor of
484
 
  ``Repository.get_inventory()``. (Jelmer Vernooij)
485
 
 
486
 
* All test servers have been moved out of the bzrlib.transport hierarchy to
487
 
  bzrlib.tests.test_server *except* for MemoryServer, ChrootServer and
488
 
  PathFilteringServer. ``bzrlib`` users may encounter test failures that can
489
 
  be fixed by updating the related imports from ``bzrlib.transport.xxx`` to
490
 
  ``bzrlib.tests.test_server``.
491
 
  (Vincent Ladeuil)
492
 
 
493
 
* ``BranchReferenceFormat.initialize()`` now takes an optional name argument
494
 
  as its second parameter, for consistency with the initialize() method of
495
 
  other formats. (Jelmer Vernooij)
496
 
 
497
 
New Features
498
 
************
499
 
 
500
 
* Added ``bzr remove-branch`` command that can remove a local or remote 
501
 
  branch. (Jelmer Vernooij, #276295)
502
 
 
503
 
* ``bzr export`` now takes an optional argument ``--per-file-timestamps``
504
 
  to set file mtimes to the last timestamp of the last revision in which
505
 
  they were changed rather than the current time. (Jelmer Vernooij)
506
 
 
507
 
* If the Apport crash-reporting tool is available, bzr crashes are now
508
 
  stored into the ``/var/crash`` apport spool directory, and the user is
509
 
  invited to report them to the developers from there, either
510
 
  automatically or by running ``apport-bug``.  No information is sent
511
 
  without specific permission from the user.  (Martin Pool, #515052)
512
 
 
513
 
* Parsing of command lines, for example in ``diff --using``, no longer
514
 
  treats backslash as an escape character on Windows.   (Gordon Tyler,
515
 
  #392248)
516
 
 
517
 
* Plugins can be disabled by defining ``BZR_DISABLE_PLUGINS`` as
518
 
  a list of plugin names separated by ':' (';' on windows).
519
 
  (Vincent Ladeuil, #411413)
520
 
 
521
 
* Plugins can be loaded from arbitrary locations by defining
522
 
  ``BZR_PLUGINS_AT`` as a list of name@path separated by ':' (';' on
523
 
  windows). This takes precedence over ``BZR_PLUGIN_PATH`` for the
524
 
  specified plugins. This is targeted at plugin developers for punctual
525
 
  needs and *not* intended to replace ``BZR_PLUGIN_PATH``.  
526
 
  (Vincent Ladeuil, #82693)
527
 
 
528
 
* Tag names can now be determined automatically by ``automatic_tag_name`` 
529
 
  hooks on ``Branch`` if they are not specified on the command line.
530
 
  (Jelmer Vernooij)
531
 
 
532
 
* Tree-shape conflicts can be resolved by providing ``--take-this`` and
533
 
  ``--take-other`` to the ``bzr resolve`` command. Just marking the conflict
534
 
  as resolved is still accessible via the ``--done`` default action.
535
 
  (Vincent Ladeuil)
536
 
 
537
 
* Merges can be proposed on Launchpad with the new lp-propose-merge command.
538
 
  (Aaron Bentley, Jonathan Lange)
539
 
 
540
 
Bug Fixes
541
 
*********
542
 
 
543
 
* Added docstring for ``Tree.iter_changes``
544
 
  (John Arbash Meinel, #304182)
545
 
 
546
 
* Allow additional arguments to
547
 
  ``RemoteRepository.add_inventory_by_delta()``. (Jelmer Vernooij, #532631)
548
 
 
549
 
* Allow exporting a single file using ``bzr export``.
550
 
  (Michal Junák, #511987)
551
 
 
552
 
* Allow syscalls to automatically restart when ``TextUIFactory``'s
553
 
  SIGWINCH handler is invoked, avoiding ``EINTR`` errors during blocking
554
 
  IO, which are often poorly handled by Python's libraries and parts of
555
 
  bzrlib.  (Andrew Bennetts, #496813)
556
 
 
557
 
* Avoid infinite recursion when probing for apport.
558
 
  (Vincent Ladeuil, #516934)
559
 
 
560
 
* Avoid ``malloc(0)`` in ``patiencediff``, which is non-portable.
561
 
  (Martin Pool, #331095)
562
 
 
563
 
* Avoid truncating svn URLs.
564
 
  (Martin Pool, Martin von Gagern, #545185)
565
 
 
566
 
* ``bzr add`` will not add conflict related files unless explicitly required.
567
 
  (Vincent Ladeuil, #322767, #414589)
568
 
 
569
 
* ``bzr dump-btree`` now works on ``*.cix`` and ``*.six`` files.  Those
570
 
  indices do not have reference lists, so ``dump-btree`` will simply show
571
 
  ``None`` instead.  (Andrew Bennetts, #488607)
572
 
 
573
 
* ``bzr help`` will no longer trigger the get_missing_command hook when
574
 
  doing a topic lookup. This avoids prompting (like 'no command plugins/loom,
575
 
  did you mean log?') when getting help. In future we may trigger the hook 
576
 
  deliberately when no help topics match from any help index.
577
 
  (Robert Collins, #396261)
578
 
 
579
 
* ``bzr log -n0 -r..A.B.C`` should not crash but just consider the None
580
 
  revspec as representing the first revision of the branch.
581
 
  (Vincent Ladeuil, #519862)
582
 
 
583
 
* ``bzr remove-tree`` can now remove multiple working trees.
584
 
  (Jared Hance, Andrew Bennetts, #253137)
585
 
 
586
 
* ``bzr resolve --take-this`` and ``--take-other`` now correctly renames
587
 
  the kept file on content conflicts where one side deleted the file.
588
 
  (Vincent Ladeuil, #529968)
589
 
 
590
 
* ``bzr upgrade`` now creates the ``backup.bzr`` directory with the same
591
 
  permissions as ``.bzr`` directory on a POSIX OS.
592
 
  (Parth Malwankar, #262450)
593
 
 
594
 
* ``bzr upgrade`` now names backup directory as ``backup.bzr.~N~`` instead
595
 
  of ``backup.bzr``. This directory is ignored by bzr commands such as
596
 
  ``add``.
597
 
  (Parth Malwankar, #335033, #300001)
598
 
 
599
 
* Cope with non-utf8 characters inside ``.bzrignore``.
600
 
  (Jason Spashett, #183504)
601
 
 
602
 
* Correctly interpret "451 Rename/move failure: Directory not empty" from
603
 
  ftp servers while trying to take a lock.
604
 
  (Martin Pool, #528722)
605
 
 
606
 
* DirStateRevisionTree.kind() was returning wrong result when 'kind'
607
 
  changes occured between the workingtree and one of its parents.
608
 
  (Vincent Ladeuil, #535547)
609
 
 
610
 
* Fix ``log`` to better check ancestors even if merged revisions are involved.
611
 
  (Vincent Ladeuil, #476293)
612
 
 
613
 
* Loading a plugin from a given path with ``BZR_PLUGINS_AT`` doesn't depend
614
 
  on os.lisdir() order and is now reliable.
615
 
  (Vincent Ladeuil, #552922).
616
 
 
617
 
* Many IO operations that returned ``EINTR`` were retried even if it
618
 
  wasn't safe to do so via careless use of ``until_no_eintr``.  Bazaar now
619
 
  only retries operations that are safe to retry, and in some cases has
620
 
  switched to operations that can be retried (e.g. ``sock.send`` rather than
621
 
  ``sock.sendall``).
622
 
  (Andrew Bennetts, Martin <gzlist@googlemail.com>, #496813)
623
 
 
624
 
* Path conflicts now support --take-this and --take-other even when a
625
 
  deletion is involved.
626
 
  (Vincent Ladeuil, #531967)
627
 
 
628
 
* Network transfer amounts and rates are now displayed in SI units according
629
 
  to the Ubuntu Units Policy <https://wiki.ubuntu.com/UnitsPolicy>.
630
 
  (Gordon Tyler, #514399)
631
 
 
632
 
* Support kind markers for socket and fifo filesystem objects. This
633
 
  prevents ``bzr status --short`` from crashing when those files are
634
 
  present.  (John Arbash Meinel, #303275)
635
 
 
636
 
* ``bzr mkdir DIR`` will not create DIR unless DIR's parent is a versioned
637
 
   directory. (Parth Malwankar, #138600)
638
 
 
639
 
* SSH child processes will now ignore SIGQUIT on nix systems so breaking into
640
 
  the debugger won't kill the session.
641
 
  (Martin <gzlist@googlemail.com>, #162502)
642
 
 
643
 
* Tolerate patches with leading noise in ``bzr-handle-patch``.
644
 
  (Toshio Kuratomi, Martin Pool, #502076)
645
 
 
646
 
* ``update -r`` now supports updating to revisions that are not on
647
 
  mainline (i.e. it supports dotted revisions).
648
 
  (Parth Malwankar, #517800)
649
 
 
650
 
* Use first apparent author not committer in GNU Changelog format.
651
 
  (Martin von Gagern, #513322)
652
 
 
653
 
API Changes
654
 
***********
655
 
 
656
 
* ``bzrlib.merge_directive._BaseMergeDirective`` has been renamed to 
657
 
  ``bzrlib.merge_directive.BaseMergeDirective`` and is now public.
658
 
  (Jelmer Vernooij)
659
 
 
660
 
* ``BranchFormat.initialize`` now takes an optional ``name`` of the colocated 
661
 
  branch to create. (Jelmer Vernooij)
662
 
 
663
 
* ``BzrDir.get_branch_transport`` now takes an optional ``name`` of the 
664
 
  colocated branch to open. (Jelmer Vernooij)
665
 
 
666
 
* Added ``bzrlib.osutils.set_signal_handler``, a convenience function that
667
 
  can set a signal handler and call ``signal.siginterrupt(signum,
668
 
  False)`` for it, if the platform and Python version supports it.
669
 
  (Andrew Bennetts, #496813)
670
 
 
671
 
* New ``bzrlib.initialize`` is recommended for programs using bzrlib to 
672
 
  run when starting up; it sets up several things that previously needed
673
 
  to be done separately.
674
 
  (Martin Pool, #507710)
675
 
 
676
 
* Exporters now support a ``per_file_timestamps`` argument to write out the 
677
 
  timestamp of the commit in which a file revision was introduced.
678
 
  (Jelmer Vernooij)
679
 
 
680
 
* New method ``BzrDir.list_branches()`` that returns a sequence of branches 
681
 
  present in a control directory. (Jelmer Vernooij)
682
 
 
683
 
* New method ``Repository.get_known_graph_ancestry()``. 
684
 
  (Jelmer Vernooij, #495502)
685
 
 
686
 
* New transport methods ``readlink``, ``symlink`` and ``hardlink``.
687
 
  (Neil Santos)
688
 
 
689
 
* Remove unused ``CommandFailed`` exception.
690
 
  (Martin Pool)
691
 
 
692
 
Internals
693
 
*********
694
 
 
695
 
* ``bzrlib.branchbuilder.BranchBuilder.build_snapshot`` now accepts a
696
 
  ``message_callback`` in the same way that commit does. (Robert Collins)
697
 
 
698
 
* ``bzrlib.builtins.Commit.run`` raises ``bzrlib.errors.BoundBranchOutOfDate``
699
 
  rather than ``bzrlib.errors.BzrCommandError`` when the bound branch is out
700
 
  of date. (Gary van der Merwe)
701
 
 
702
 
* ``bzrlib.commands.run_bzr`` is more extensible: callers can supply the
703
 
  functions to load or disable plugins if they wish to use a different
704
 
  plugin mechanism; the --help, --version and no-command name code paths
705
 
  now use the generic pluggable command lookup infrastructure.
706
 
  (Robert Collins)
707
 
 
708
 
* ``bzrlib.errors.BoundBranchOutOfDate`` has a new field ``extra_help``
709
 
  which can be set to add extra help to the error. (Gary van der Merwe)
710
 
 
711
 
* New method ``Branch.automatic_tag_name`` that can be used to find the
712
 
  tag name for a particular revision automatically. (Jelmer Vernooij)
713
 
 
714
 
* The methods ``BzrDir.create_branch()``, ``BzrDir.destroy_branch()`` and 
715
 
  ``BzrDir.open_branch()`` now take an optional ``name`` argument. 
716
 
  (Jelmer Vernooij)
717
 
 
718
 
Testing
719
 
*******
720
 
 
721
 
* bzr now has a ``.testr.conf`` file in its source tree configured
722
 
  appropriately for running tests with Testrepository
723
 
  (``https://launchpad.net/testrepository``). (Robert Collins)
724
 
 
725
 
* Documentation about testing with ``subunit`` has been tweaked.
726
 
  (Robert Collins)
727
 
 
728
 
* Known failures has been added for resolve --take-other on ParentLoop
729
 
  conflicts. This reflects bug #537956 without fixing it.
730
 
  (Vincent Ladeuil)
731
 
 
732
 
* New ``bzrlib.tests.test_import_tariff`` can make assertions about what
733
 
  Python modules are loaded, to guard against startup time or library
734
 
  dependency regressions.
735
 
  (Martin Pool)
736
 
 
737
 
* PQM will now run with subunit output. To analyze a PQM error use
738
 
  tribunal, or cat log | subunit-filter | subunit2pyunit. (Robert Collins)
739
 
 
740
 
* Stop sending apport crash files to ``.cache`` in the directory from
741
 
  which ``bzr selftest`` was run.  (Martin Pool, #422350)
742
 
 
743
 
* Tests no longer fail if "close() called during concurrent
744
 
  operation on the same file object" occurs when closing the log file
745
 
  (which can happen if a thread tries to write to the log file at the
746
 
  wrong moment).  An warning will be written to ``stderr`` when this
747
 
  happens, and another warning will be written if the log file could not
748
 
  be closed after retrying 100 times.  (Andrew Bennetts, #531746)
749
 
 
750
 
bzr 2.1.2
751
 
#########
752
 
 
753
 
:2.1.2: 2010-05-28
754
 
 
755
 
This release fixes two critical networking issues with older servers and
756
 
with interrupted system call errors when pushing or pulling.  We recommend
757
 
upgrading to anyone running a 2.1.x version of bzr.
758
 
 
759
 
Bug Fixes
760
 
*********
761
 
 
762
 
* ``bzr clean-tree`` should not delete nested bzrdirs. Required for proper
763
 
  support of bzr-externals and scmproj plugins.
764
 
  (Alexander Belchenko, bug #572098)
765
 
 
766
 
* ``bzr switch`` does not die if a ConfigurableFileMerger is used.
767
 
  (Aaron Bentley, #559436)
768
 
 
769
 
* Do not register a SIGWINCH signal handler, instead just poll for the
770
 
  terminal width as needed.  This avoids the "Interrupted System Call"
771
 
  problems that occur on POSIX with all currently released versions of
772
 
  Python.
773
 
  (Andrew Bennetts, #583941)
774
 
 
775
 
* Fixed ``AssertionError`` when accessing smart servers running Bazaar
776
 
  versions before 1.6.
777
 
  (Andrew Bennetts, #528041)
778
 
 
779
 
* Reset ``siginterrupt`` flag to False every time we handle a signal
780
 
  installed with ``set_signal_handler(..., restart_syscall=True)`` (from
781
 
  ``bzrlib.osutils``.  Reduces the likelihood of "Interrupted System Call"
782
 
  errors compared to registering ``signal.signal`` directly.
783
 
  (Andrew Bennetts)
784
 
 
785
 
* Reduce peak memory by one copy of compressed text.
786
 
  (John Arbash Meinel, #566940)
787
 
 
788
 
* Support Pyrex 0.9.9, required changing how we handle exceptions in Pyrex.
789
 
  (John Arbash Meinel, #582656)
790
 
 
791
 
* When passing a file to ``UTF8DirReader`` make sure to close the current
792
 
  directory file handle after the chdir fails. Otherwise when passing many
793
 
  filenames into a command line ``bzr status`` we would leak descriptors.
794
 
  (John Arbash Meinel, #583486)
795
 
 
796
 
Internals
797
 
*********
798
 
 
799
 
* ``_remember_remote_is_before`` no longer raises AssertionError when
800
 
  suboptimal network behaviour is noticed; instead it just mutters to the
801
 
  log file (and warns the user if they have set the ``hpss`` debug flag).
802
 
  This was causing unnecessary aborts for performance bugs that are minor
803
 
  at worst.
804
 
  (Andrew Bennetts, #528041)
805
 
 
806
 
 
807
 
bzr 2.1.1
808
 
#########
809
 
 
810
 
:2.1.1: 2010-03-24
811
 
 
812
 
This is a small bugfix release.  Upgrading is recommended for anyone
813
 
running 2.1.0 or earlier.
814
 
 
815
 
Bug Fixes
816
 
*********
817
 
 
818
 
* Allow syscalls to automatically restart when ``TextUIFactory``'s
819
 
  SIGWINCH handler is invoked, avoiding ``EINTR`` errors during blocking
820
 
  IO, which are often poorly handled by Python's libraries and parts of
821
 
  bzrlib.  (Andrew Bennetts, #496813)
822
 
 
823
 
* Avoid ``malloc(0)`` in ``patiencediff``, which is non-portable.
824
 
  (Martin Pool, #331095)
825
 
 
826
 
* Fix plugin packaging on Windows. (Ian Clatworthy, #524162)
827
 
 
828
 
* Fix stub sftp test server to call os.getcwdu().
829
 
  (Vincent Ladeuil, #526221, #526353)
830
 
 
831
 
* Fixed CHM generation by moving the NEWS section template into
832
 
  a separate file. (Ian Clatworthy, #524184)
833
 
 
834
 
* Merge correctly when this_tree is not a WorkingTree.  (Aaron Bentley)
835
 
 
836
 
* Register SIGWINCH handler only when creating a ``TextUIFactory``; avoids
837
 
  problems importing bzrlib from a non-main thread.
838
 
  (Elliot Murphy, #521989)
839
 
 
840
 
* Repositories accessed via a smart server now reject being stacked on a
841
 
  repository in an incompatible format, as is the case when accessing them
842
 
  via other methods.  This was causing fetches from those repositories via
843
 
  a smart server (e.g. using ``bzr branch``) to receive invalid data.
844
 
  (Andrew Bennetts, #562380)
845
 
 
846
 
* Standardize the error handling when creating a new ``StaticTuple``
847
 
  (problems will raise TypeError). (Matt Nordhoff, #457979)
848
 
 
849
 
* Warn if pyrex is too old to compile the new ``SimpleSet`` and
850
 
  ``StaticTuple`` extensions, rather than having the build fail randomly.
851
 
  (John Arbash Meinel, #449776)
852
 
 
853
 
Documentation
854
 
*************
855
 
 
856
 
* Added a link to the Desktop Guide. (Ian Clatworthy)
857
 
 
858
 
* Added What's New in Bazaar 2.1 document. (Ian Clatworthy)
859
 
 
860
 
* Drop Google Analytics from the core docs as they caused problems
861
 
  in the CHM files. (Ian Clatworthy, #502010)
862
 
 
863
 
API Changes
864
 
***********
865
 
 
866
 
* Added ``bzrlib.osutils.set_signal_handler``, a convenience function that
867
 
  can set a signal handler and call ``signal.siginterrupt(signum,
868
 
  False)`` for it, if the platform and Python version supports it.
869
 
  (Andrew Bennetts, #496813)
870
 
 
871
 
 
872
 
bzr 2.1.0
873
 
#########
874
 
 
875
 
:Codename: Strasbourg
876
 
:2.1.0: 2010-02-11
877
 
 
878
 
This release marks our second long-term-stable series. The Bazaar team
879
 
has decided that we will continue to make bugfix-only 2.0.x and 2.1.x
880
 
releases, along with 2.2 development releases. 
881
 
 
882
 
This is a fairly incremental update, focusing on polish and bugfixing.
883
 
There are no changes for supported disk formats. Key updates include
884
 
reduced memory consumption for many operations, a new per-file merge
885
 
hook, ignore patterns can now include '!' to exclude files, globbing
886
 
support for all commands on Windows, and support for addressing home
887
 
directories via ``bzr+ssh://host/~/`` syntax.
888
 
 
889
 
Users are encouraged to upgrade from the 2.0 stable series.
890
 
 
891
 
Bug Fixes
892
 
*********
893
 
 
894
 
* Don't require testtools to use sftp.
895
 
  (Vincent Ladeuil, #516183)
896
 
 
897
 
* Fix "AttributeError in Inter1and2Helper" during fetch.
898
 
  (Martin Pool, #513432)
899
 
 
900
 
* ``bzr update`` performs the two merges in a more logical order and will stop
901
 
  when it encounters conflicts.  
902
 
  (Gerard Krol, #113809)
903
 
 
904
 
* Give a better error message when doing ``bzr bind`` in an already bound
905
 
  branch.  (Neil Martinsen-Burrell, #513063)
906
 
 
907
 
* Ignore ``KeyError`` from ``remove_index`` during ``_abort_write_group``
908
 
  in a pack repository, which can happen harmlessly if the abort occurs during
909
 
  finishing the write group.  Also use ``bzrlib.cleanup`` so that any
910
 
  other errors that occur while aborting the individual packs won't be
911
 
  hidden by secondary failures when removing the corresponding indices.
912
 
  (Andrew Bennetts, #423015)
913
 
 
914
 
* Set the mtime of files exported to a directory by ``bzr export`` all to
915
 
  the same value to avoid confusing ``make`` and other date-based build
916
 
  systems. (Robert Collins, #515631)
917
 
 
918
 
Improvements
919
 
************
920
 
 
921
 
* Fetching into experimental formats will now print a warning. (Jelmer
922
 
  Vernooij)
923
 
 
924
 
API Changes
925
 
***********
926
 
 
927
 
* ``Repository.deserialise_inventory`` has been renamed to 
928
 
  ``Repository._deserialise_inventory`` to indicate it is private.
929
 
  (Jelmer Vernooij)
930
 
 
931
 
* ``Repository.get_inventory_xml`` has been renamed to 
932
 
  ``Repository._get_inventory_xml`` to indicate it is private. 
933
 
  (Jelmer Vernooij)
934
 
 
935
 
* ``Repository.serialise_inventory`` has been renamed to 
936
 
  ``Repository._serialise_inventory`` to indicate it is private.
937
 
 
938
 
* Using the ``bzrlib.chk_map`` module from within multiple threads at the
939
 
  same time was broken due to race conditions with a module level page
940
 
  cache. This shows up as a KeyError in the ``bzrlib.lru_cache`` code with
941
 
  ``bzrlib.chk_map`` in the backtrace, and can be triggered without using
942
 
  the same high level objects such as ``bzrlib.repository.Repository``
943
 
  from different threads. chk_map now uses a thread local cache which may
944
 
  increase memory pressure on processes using threads.
945
 
  (Robert Collins, John Arbash Meinel, #514090)
946
 
 
947
 
* The new ``merge_file_content`` should now be ok with tests to avoid
948
 
  regressions.
949
 
  (Vincent Ladeuil, #515597)
950
 
 
951
 
Internals
952
 
*********
953
 
 
954
 
* Use ``bzrlib.cleanup`` rather than less robust ``try``/``finally``
955
 
  blocks in several places in ``bzrlib.merge``.  This avoids masking prior
956
 
  errors when errors like ``ImmortalPendingDeletion`` occur during cleanup
957
 
  in ``do_merge``.
958
 
  (Andrew Bennetts, #517275)
959
 
 
960
 
API Changes
961
 
***********
962
 
 
963
 
* The ``remove_index`` method of
964
 
  ``bzrlib.repofmt.pack_repo.AggregateIndex`` no longer takes a ``pack``
965
 
  argument.  This argument was always ignored.
966
 
  (Andrew Bennetts, #423015)
967
 
 
968
 
bzr 2.1.0rc2
969
 
############
970
 
 
971
 
:Codename: after the bubbles
972
 
:2.1.0rc2: 2010-01-29
973
 
 
974
 
This is a quick-turn-around to update a small issue with our new per-file
975
 
merge hook. We expect no major changes from this to the final 2.1.0.
976
 
 
977
 
API Changes
978
 
***********
979
 
 
980
 
* The new ``merge_file_content`` hook point has been altered to provide a
981
 
  better API where state for extensions can be stored rather than the
982
 
  too-simple function based approach. This fixes a performance regression
983
 
  where branch configuration would be parsed per-file during merge. As
984
 
  part of this the included news_merger has been refactored into a base
985
 
  helper class ``bzrlib.merge.ConfigurableFileMerger``.
986
 
  (Robert Collins, John Arbash Meinel, #513822)
987
 
 
988
 
 
989
 
bzr 2.1.0rc1
990
 
############
991
 
 
992
 
:Codename: the 'new' stable
993
 
:2.1.0rc1: 2009-01-21
994
 
 
995
 
This is the first stable release candidate for Bazaar's 2.1 series. From
996
 
this point onwards, the 2.1 series will be considered stable (as the 2.0
997
 
series) and only bugfixes are expected to be incorporated. The dozen or so
998
 
bugfixes in the 2.0.4 release are also included in this release (along
999
 
with more than 15 more bugfixes). Some of the interesting features are
1000
 
support for per-file merge hooks, ``bzr unshelve --preview``, support
1001
 
for using ! in ignore files to exclude files from being ignored, a small
1002
 
memory leak was squashed, and many ``ObjectNotLocked`` errors were fixed.
1003
 
This looks to be a very good start for a new stable series.
1004
 
 
1005
 
 
1006
 
New Features
1007
 
************
1008
 
 
1009
 
* Add bug information to log output when available.
1010
 
  (Neil Martinsen-Burrell, Guillermo Gonzalez, #251729)
1011
 
 
1012
 
* Added ``merge_file_content`` hook point to ``Merger``, allowing plugins
1013
 
  to register custom merge logic, e.g. to provide smarter merging for
1014
 
  particular files.
1015
 
 
1016
 
* Bazaar now includes the ``news_merge`` plugin.  It is disabled by
1017
 
  default, to enable it add a ``news_merge_files`` option to your
1018
 
  configuration.  Consult ``bzr help news_merge`` for more information.
1019
 
  (Andrew Bennetts)
1020
 
  
1021
 
* ``bzr branch`` now takes a ``--bind`` option. This lets you
1022
 
  branch and bind all in one command. (Ian Clatworthy)
1023
 
 
1024
 
* ``bzr switch`` now takes a ``--revision`` option, to allow switching to
1025
 
  a specific revision of a branch. (Daniel Watkins, #183559)
1026
 
 
1027
 
* ``bzr unshelve --preview`` can now be used to show how a patch on the
1028
 
  shelf would be applied to the working tree.
1029
 
  (Guilherme Salgado, #308122)
1030
 
 
1031
 
* ``bzr update`` now takes a ``--revision`` argument. This lets you
1032
 
  change the revision of the working tree to any revision in the
1033
 
  ancestry of the current or master branch. (Matthieu Moy, Mark Hammond,
1034
 
  Martin Pool, #45719)
1035
 
 
1036
 
* ``-Dbytes`` can now be used to display the total number of bytes
1037
 
  transferred for the current command. This information is always logged
1038
 
  to ``.bzr.log`` for later inspection. (John Arbash Meinel)
1039
 
 
1040
 
* New ignore patterns.  Patterns prefixed with '!' are exceptions to 
1041
 
  ignore patterns and take precedence over regular ignores.  Such 
1042
 
  exceptions are used to specify files that should be versioned which 
1043
 
  would otherwise be ignored.  Patterns prefixed with '!!' act as regular 
1044
 
  ignore patterns, but have highest precedence, even over the '!' 
1045
 
  exception patterns. (John Whitley, #428031)
1046
 
 
1047
 
* The ``supress_warnings`` configuration option has been introduced to disable
1048
 
  various warnings (it currently only supports the ``format_deprecation``
1049
 
  warning). The new option can be set in any of the following locations:
1050
 
  ``bazaar.conf``, ``locations.conf`` and/or ``branch.conf``.
1051
 
  (Ted Gould, Matthew Fuller, Vincent Ladeuil)
1052
 
 
1053
 
Bug Fixes
1054
 
*********
1055
 
 
1056
 
* Always show a message if an OS error occurs while trying to run a
1057
 
  user-specified commit message editor.
1058
 
  (Martin Pool, #504842)
1059
 
 
1060
 
* ``bzr diff`` will now use the epoch when it is unable to determine 
1061
 
  the timestamp of a file, if the revision it was introduced in is a
1062
 
  ghost. (Jelmer Vernooij, #295611)
1063
 
 
1064
 
* ``bzr switch -b`` can now create branches that are located using directory
1065
 
  services such as ``lp:``, even when the branch name doesn't contain a
1066
 
  '/'.  (Neil Martinsen-Burrell, #495263)
1067
 
 
1068
 
* ``bzr unshelve`` has improved messages about what it is doing.
1069
 
  (Neil Martinsen-Burrell, #496917)
1070
 
 
1071
 
* Concurrent autopacking is more resilient to already-renamed pack files.
1072
 
  If we find that a file we are about to obsolete is already obsoleted, we
1073
 
  do not try to rename it, and we leave the file in ``obsolete_packs``.
1074
 
  The code is also fault tolerant if a file goes missing, assuming that
1075
 
  another process already removed the file.
1076
 
  (John Arbash Meinel, Gareth White, #507557)
1077
 
 
1078
 
* Fix "Too many concurrent requests" in reconcile when network connection
1079
 
  fails.  (Andrew Bennetts, #503878)
1080
 
 
1081
 
* Fixed a side effect mutation of ``RemoteBzrDirFormat._network_name``
1082
 
  that caused some tests to fail when run in a non-default order.
1083
 
  Probably no user impact.  (Martin Pool, #504102)
1084
 
 
1085
 
* Fixed ``ObjectNotLocked`` error in ``bzr cat -rbranch:../foo FILE``.
1086
 
  (Andrew Bennetts, #506274)
1087
 
 
1088
 
* FTP transports support Unicode paths by encoding/decoding them as utf8.
1089
 
  (Vincent Ladeuil, #472161)
1090
 
 
1091
 
* Listen to the SIGWINCH signal to update the terminal width.
1092
 
  (Vincent Ladeuil, #316357)
1093
 
 
1094
 
* Progress bars are now hidden when ``--quiet`` is given.
1095
 
  (Martin Pool, #320035)
1096
 
 
1097
 
* ``SilentUIFactory`` now supports ``make_output_stream`` and discards
1098
 
  whatever is written to it.  This un-breaks some plugin tests that
1099
 
  depended on this behaviour.
1100
 
  (Martin Pool, #499757)
1101
 
 
1102
 
* When operations update the working tree, all affected files should end
1103
 
  up with the same mtime. (eg. when versioning a generated file, if you
1104
 
  update the source and the generated file together, the generated file
1105
 
  should appear up-to-date.)
1106
 
  (John Arbash Meinel, Martin <gzlist>, #488724)
1107
 
 
1108
 
Improvements
1109
 
************
1110
 
 
1111
 
* Added ``add_cleanup`` and ``cleanup_now`` to ``bzrlib.command.Command``.
1112
 
  All the builtin commands now use ``add_cleanup`` rather than
1113
 
  ``try``/``finally`` blocks where applicable as it is simpler and more
1114
 
  robust.  (Andrew Bennetts)
1115
 
 
1116
 
* All except a small number of storage formats are now hidden, making
1117
 
  the help for numerous commands far more digestible. (Ian Clatworthy)
1118
 
 
1119
 
* Attempts to open a shared repository as a branch (e.g. ``bzr branch
1120
 
  path/to/repo``) will now include "location is a repository" as a hint in
1121
 
  the error message.  (Brian de Alwis, Andrew Bennetts, #440952)
1122
 
 
1123
 
* Push will now inform the user when they are trying to push to a foreign 
1124
 
  VCS for which roundtripping is not supported, and will suggest them to 
1125
 
  use dpush. (Jelmer Vernooij)
1126
 
 
1127
 
* The version of bzr being run is now written to the log file.
1128
 
  (__monty__, #257170)
1129
 
 
1130
 
* Transport network activity indicator is shown more of the time when
1131
 
  Bazaar is doing network IO.
1132
 
  (Martin Pool)
1133
 
 
1134
 
Documentation
1135
 
*************
1136
 
 
1137
 
* Add documentation on creating merges with more than one parent.
1138
 
  (Neil Martinsen-Burrell, #481526)
1139
 
 
1140
 
* Better explain the --uncommitted option of merge.
1141
 
  (Neil Martinsen-Burrell, #505088)
1142
 
 
1143
 
* Improve discussion of pending merges in the documentation for
1144
 
  ``revert``.  (Neil Martinsen-Burrell, #505093)
1145
 
 
1146
 
* Improved help for ``bzr send``. 
1147
 
  (Martin Pool, Bojan Nikolic)
1148
 
 
1149
 
* There is a System Administrator's Guide in ``doc/en/admin-guide``,
1150
 
  including discussions of installation, relevant plugins, security and 
1151
 
  backup. (Neil Martinsen-Burrell)
1152
 
 
1153
 
* The ``conflicts`` help topic has been renamed to ``conflict-types``.
1154
 
  (Ian Clatworthy)
1155
 
 
1156
 
* The User Reference is now presented as a series of topics.
1157
 
  Many of the included topics have link and format tweaks applied.
1158
 
  (Ian Clatworthy)
1159
 
 
1160
 
API Changes
1161
 
***********
1162
 
 
1163
 
* Added ``cachedproperty`` decorator to ``bzrlib.decorators``.
1164
 
  (Andrew Bennetts)
1165
 
 
1166
 
* Many test features were renamed from ``FooFeature`` to ``foo_feature``
1167
 
  to be consistent with instances being lower case and classes being
1168
 
  CamelCase. For the features that were more likely to be used, we added a
1169
 
  deprecation thunk, but not all. (John Arbash Meinel)
1170
 
 
1171
 
* Merger classes (such as ``Merge3Merger``) now expect a ``this_branch``
1172
 
  parameter in their constructors, and provide ``this_branch`` as an
1173
 
  attribute. (Andrew Bennetts)
1174
 
  
1175
 
* The Branch hooks pre_change_branch_tip no longer masks exceptions raised
1176
 
  by plugins - the original exceptions are now preserved. (Robert Collins)
1177
 
 
1178
 
* The Transport ``Server.tearDown`` method is now renamed to
1179
 
  ``stop_server`` and ``setUp`` to ``start_server`` for consistency with
1180
 
  our normal naming pattern, and to avoid confusion with Python's
1181
 
  ``TestCase.tearDown``.  (Martin Pool)
1182
 
 
1183
 
* ``WorkingTree.update`` implementations must now accept a ``revision``
1184
 
  parameter.
1185
 
 
1186
 
Internals
1187
 
*********
1188
 
 
1189
 
* Added ``BzrDir.open_branchV3`` smart server request, which can receive
1190
 
  a string of details (such as "location is a repository") as part of a
1191
 
  ``nobranch`` response.  (Andrew Bennetts, #440952)
1192
 
  
1193
 
* New helper osutils.UnicodeOrBytesToBytesWriter which encodes unicode
1194
 
  objects but passes str objects straight through. This is used for
1195
 
  selftest but may be useful for diff and other operations that generate
1196
 
  mixed output. (Robert Collins)
1197
 
 
1198
 
* New exception ``NoRoundtrippingSupport``, for use by foreign branch 
1199
 
  plugins. (Jelmer Vernooij)
1200
 
 
1201
 
Testing
1202
 
*******
1203
 
 
1204
 
* ``bzrlib.tests.permute_for_extension`` is a helper that simplifies
1205
 
  running all tests in the current module, once against a pure python
1206
 
  implementation, and once against an extension (pyrex/C) implementation.
1207
 
  It can be used to dramatically simplify the implementation of
1208
 
  ``load_tests``.  (John Arbash Meinel)
1209
 
 
1210
 
* ``bzrlib.tests.TestCase`` now subclasses ``testtools.testcase.TestCase``.
1211
 
  This permits features in testtools such as getUniqueInteger and
1212
 
  getUniqueString to be used. Because of this, testtools version 0.9.2 or
1213
 
  newer is now a dependency to run bzr selftest. Running with versions of
1214
 
  testtools less than 0.9.2 will cause bzr to error while loading the test
1215
 
  suite. (Robert Collins)
1216
 
 
1217
 
* Shell-like tests now support the command "mv" for moving files.  The
1218
 
  syntax for ``mv file1 file2``, ``mv dir1 dir2`` and ``mv file dir`` is
1219
 
  supported.  (Neil Martinsen-Burrell)
1220
 
 
1221
 
* The test progress bar no longer distinguishes tests that 'errored' from
1222
 
  tests that 'failed' - they're all just failures.
1223
 
  (Martin Pool)
1224
 
 
1225
 
bzr 2.0.6
1226
 
#########
1227
 
 
1228
 
:2.0.6: NOT RELEASED YET
1229
 
 
1230
 
Bug Fixes
1231
 
*********
1232
 
 
1233
 
* Additional merges after an unrelated branch has been merged with its
1234
 
  history no longer crash when deleted files are involved.
1235
 
  (Vincent Ladeuil, John Arbash Meinel, #375898)
1236
 
 
1237
 
* ``bzr revert`` now only takes write lock on working tree, instead of on 
1238
 
  both working tree and branch.
1239
 
  (Danny van Heumen, #498409)
1240
 
 
1241
 
* ``bzr upgrade`` now creates the ``backup.bzr`` directory with the same
1242
 
  permissions as ``.bzr`` directory on a POSIX OS.
1243
 
  (Parth Malwankar, #262450)
1244
 
 
1245
 
* Reduce peak memory by one copy of compressed text.
1246
 
  (John Arbash Meinel, #566940)
1247
 
 
1248
 
* Repositories accessed via a smart server now reject being stacked on a
1249
 
  repository in an incompatible format, as is the case when accessing them
1250
 
  via other methods.  This was causing fetches from those repositories via
1251
 
  a smart server (e.g. using ``bzr branch``) to receive invalid data.
1252
 
  (Andrew Bennetts, #562380)
1253
 
 
1254
 
* Selftest with versions of subunit that support ``stopTestRun`` will no longer
1255
 
  error. This error was caused by 2.0 not being updated when upstream
1256
 
  python merged the end of run patch, which chose ``stopTestRun`` rather than
1257
 
  ``done``. (Robert Collins, #571437)
1258
 
 
1259
 
* When passing a file to ``UTF8DirReader`` make sure to close the current
1260
 
  directory file handle after the chdir fails. Otherwise when passing many
1261
 
  filenames into a command line ``bzr status`` we would leak descriptors.
1262
 
  (John Arbash Meinel, #583486)
1263
 
 
1264
 
 
1265
 
bzr 2.0.5
1266
 
#########
1267
 
 
1268
 
:2.0.5: 2010-03-23
1269
 
 
1270
 
This fifth release in our 2.0 series addresses several user-inconvenience
1271
 
bugs.  None are critical, but upgrading is recommended for all users on
1272
 
earlier 2.0 releases.
1273
 
 
1274
 
Bug Fixes
1275
 
*********
1276
 
 
1277
 
* Avoid ``malloc(0)`` in ``patiencediff``, which is non-portable.
1278
 
  (Martin Pool, #331095)
1279
 
 
1280
 
* Concurrent autopacking is more resilient to already-renamed pack files.
1281
 
  If we find that a file we are about to obsolete is already obsoleted, we
1282
 
  do not try to rename it, and we leave the file in ``obsolete_packs``.
1283
 
  The code is also fault tolerant if a file goes missing, assuming that
1284
 
  another process already removed the file.
1285
 
  (John Arbash Meinel, Gareth White, #507557)
1286
 
 
1287
 
* Cope with the lockdir ``held/info`` file being empty, which seems to
1288
 
  happen fairly often if the process is suddenly interrupted while taking
1289
 
  a lock.
1290
 
  (Martin Pool, #185103)
1291
 
 
1292
 
* Give the warning about potentially slow cross-format fetches much
1293
 
  earlier on in the fetch operation.  Don't show this message during
1294
 
  upgrades, and show the correct format indication for remote
1295
 
  repositories.
1296
 
  (Martin Pool, #456077, #515356, #513157)
1297
 
 
1298
 
* Handle renames correctly when there are files or directories that 
1299
 
  differ only in case.  (Chris Jones, Martin Pool, #368931)
1300
 
 
1301
 
* If ``bzr push --create-prefix`` triggers an unexpected ``NoSuchFile``
1302
 
  error, report that error rather than failing with an unhelpful
1303
 
  ``UnboundLocalError``.
1304
 
  (Andrew Bennetts, #423563)
1305
 
 
1306
 
* Running ``bzr`` command without any arguments now shows bzr
1307
 
  version number along with rest of the help text.
1308
 
  (Parth Malwankar, #369501)
1309
 
 
1310
 
* Use osutils.O_NOINHERIT for some files on win32 to avoid PermissionDenied
1311
 
  errors.
1312
 
  (Inada Naoki, #524560)
1313
 
 
1314
 
Documentation
1315
 
*************
1316
 
 
1317
 
* Added ``location-alias`` help topic.
1318
 
  (Andrew Bennetts, #337834)
1319
 
 
1320
 
* Fixed CHM generation by moving the NEWS section template into
1321
 
  a separate file. (Ian Clatworthy, #524184)
1322
 
 
1323
 
 
1324
 
bzr 2.0.4
1325
 
#########
1326
 
 
1327
 
:Codename: smooth sailing
1328
 
:2.0.4: 2010-01-21
1329
 
 
1330
 
The fourth bugfix-only release in the 2.0 series contains more than a
1331
 
dozen bugfixes relative to 2.0.3. The primary focus is on handling
1332
 
interruptions and concurrent operations more cleanly, there is also a fair
1333
 
improvement to ``bzr export`` when exporting a remote branch.
1334
 
 
1335
 
 
1336
 
Bug Fixes
1337
 
*********
1338
 
 
1339
 
* ``bzr annotate`` on another branch with ``-r branch:...`` no longer
1340
 
  fails with an ``ObjectNotLocked`` error.  (Andrew Bennetts, #496590)
1341
 
 
1342
 
* ``bzr export dir`` now requests all file content as a record stream,
1343
 
  rather than requsting the file content one file-at-a-time. This can make
1344
 
  exporting over the network significantly faster (54min => 9min in one
1345
 
  case). (John Arbash Meinel, #343218)
1346
 
 
1347
 
* ``bzr serve`` no longer slowly leaks memory. The compiled
1348
 
  ``bzrlib.bencode.Encoder()`` class was using ``__del__`` to cleanup and
1349
 
  free resources, and it should have been using ``__dealloc__``.
1350
 
  This will likely have an impact on any other process that is serving for
1351
 
  an extended period of time.  (John Arbash Meinel, #494406)
1352
 
 
1353
 
* Check for SIGINT (Ctrl-C) and other signals immediately if ``readdir``
1354
 
  returns ``EINTR`` by calling ``PyErr_CheckSignals``.  This affected the
1355
 
  optional ``_readdir_pyx`` extension.  (Andrew Bennetts, #495023)
1356
 
 
1357
 
* Concurrent autopacks will no longer lose a newly created pack file.
1358
 
  There was a race condition, where if the reload happened at the right
1359
 
  time, the second packer would forget the name of the newly added pack
1360
 
  file. (John Arbash Meinel, Gareth White, #507566)
1361
 
 
1362
 
* Give a clearer message if the lockdir disappears after being apparently
1363
 
  successfully taken.  (Martin Pool, #498378)
1364
 
 
1365
 
* Give a warning when fetching between repositories (local or remote) with
1366
 
  sufficiently different formats that the content will need to be
1367
 
  serialized (ie ``InterDifferingSerializer`` or ``inventory-deltas``), so
1368
 
  the user has a clue that upgrading could make it faster.
1369
 
  (Martin Pool, #456077)
1370
 
 
1371
 
* If we fail to open ``~/.bzr.log`` write a clear message to stderr rather
1372
 
  than using ``warning()``. The log file is opened before logging is set
1373
 
  up, and it leads to very confusing: 'no handlers for "bzr"' messages for
1374
 
  users, rather than something nicer.
1375
 
  (John Arbash Meinel, Barry Warsaw, #503886)
1376
 
 
1377
 
* Refuse to build with any Pyrex 0.9.4 release, as they have known bugs.
1378
 
  (Martin Pool, John Arbash Meinel, #449372)
1379
 
 
1380
 
* ``setup.py bdist_rpm`` now properly finds extra files needed for the
1381
 
  build. (there is still the distutils bug
1382
 
  http://bugs.python.org/issue644744) (Joe Julian, #175839)
1383
 
 
1384
 
* The 2a format wasn't properly restarting autopacks when something
1385
 
  changed underneath it (like another autopack). Now concurrent
1386
 
  autopackers will properly succeed. (John Arbash Meinel, #495000)
1387
 
 
1388
 
* ``TreeTransform`` can now handle when a delta says that the file id for
1389
 
  the tree root changes. Rather than trying to rename your working
1390
 
  directory, or failing early saying that you can't have multiple
1391
 
  tree roots. This also fixes revert, update, and pull when the root id
1392
 
  changes.  (John Arbash Meinel, #494269, #504390)
1393
 
 
1394
 
* ``_update_current_block`` no longer suppresses exceptions, so ^C at just
1395
 
  the right time will get propagated, rather than silently failing to move
1396
 
  the block pointer. (John Arbash Meinel, Gareth White, #495023)
1397
 
 
1398
 
Testing
1399
 
*******
1400
 
 
1401
 
* We have a new ``test_source`` that ensures all pyrex ``cdef`` functions
1402
 
  handle exceptions somehow. (Possibly by setting ``# cannot_raise``
1403
 
  rather than an ``except ?:`` clause.) This should help prevent bugs like
1404
 
  bug #495023. (John Arbash Meinel)
1405
 
 
1406
 
 
1407
 
bzr 2.1.0b4
1408
 
###########
1409
 
 
1410
 
:Codename: san francisco airport
1411
 
:2.1.0b4: 2009-12-14
1412
 
 
1413
 
The fourth beta release in the 2.1 series brings with it a significant
1414
 
number of bugfixes (~20). The test suite is once again (finally) "green"
1415
 
on Windows, and should remain that way for future releases. There are a
1416
 
few performance related updates (faster upgrade and log), and several UI
1417
 
tweaks. There has also been a significant number of tweaks to the runtime
1418
 
documentation. 2.1.0b4 include everything from the 2.0.3 release.
1419
 
 
1420
 
 
1421
 
Compatibility Breaks
1422
 
********************
1423
 
 
1424
 
* The BZR_SSH environmental variable may now be set to the path of a secure
1425
 
  shell client. If currently set to the value ``ssh`` it will now guess the
1426
 
  vendor of the program with that name, to restore the old behaviour that
1427
 
  indicated the SSH Corporation client use ``sshcorp`` instead as the magic
1428
 
  string. (Martin <gzlist@googlemail.com>, #176292)
1429
 
 
1430
 
New Features
1431
 
************
1432
 
 
1433
 
* ``bzr commit`` now has a ``--commit-time`` option.
1434
 
  (Alexander Sack, #459276)
1435
 
 
1436
 
* ``-Dhpss`` now increases logging done when run on the bzr server,
1437
 
  similarly to how it works on the client. (John Arbash Meinel)
1438
 
 
1439
 
* New option ``bzr unshelve --keep`` applies the changes and leaves them
1440
 
  on the shelf.  (Martin Pool, Oscar Fuentes, #492091)
1441
 
 
1442
 
* The ``BZR_COLUMNS`` envrionment variable can be set to force bzr to
1443
 
  respect a given terminal width. This can be useful when output is
1444
 
  redirected or in obscure cases where the default value is not
1445
 
  appropriate. Pagers can use it to get a better control of the line
1446
 
  lengths. 
1447
 
  (Vincent Ladeuil)
1448
 
 
1449
 
* The new command ``bzr lp-mirror`` will request that Launchpad update its
1450
 
  mirror of a local branch. This command will only function if launchpadlib
1451
 
  is installed.
1452
 
  (Jonathan Lange)
1453
 
 
1454
 
 
1455
 
Bug Fixes
1456
 
*********
1457
 
 
1458
 
* After renaming a file, the dirstate could accidentally reference
1459
 
  ``source\\path`` rather than ``source/path`` on Windows. This might be a
1460
 
  source of some dirstate-related failures. (John Arbash Meinel)
1461
 
 
1462
 
* ``bzr commit`` now detects commit messages that looks like file names
1463
 
  and issues a warning.
1464
 
  (Gioele Barabucci, #73073)
1465
 
 
1466
 
* ``bzr ignore /`` no longer causes an IndexError. (Gorden Tyler, #456036)
1467
 
 
1468
 
* ``bzr log -n0 -rN`` should not return revisions beyond its merged revisions.
1469
 
  (#325618, #484109, Marius Kruger)
1470
 
 
1471
 
* ``bzr merge --weave`` and ``--lca`` will now create ``.BASE`` files for
1472
 
  files with conflicts (similar to ``--merge3``). The contents of the file
1473
 
  is a synthesis of all bases used for the merge.
1474
 
  (John Arbash Meinel, #40412)
1475
 
 
1476
 
* ``bzr mv --quiet`` really is quiet now.  (Gordon Tyler, #271790)
1477
 
 
1478
 
* ``bzr serve`` is more clear about the risk of supplying --allow-writes.
1479
 
  (Robert Collins, #84659)
1480
 
 
1481
 
* ``bzr serve --quiet`` really is quiet now.  (Gordon Tyler, #252834)
1482
 
 
1483
 
* Fix bug with redirected URLs over authenticated HTTP.
1484
 
  (Glen Mailer, Neil Martinsen-Burrell, Vincent Ladeuil, #395714)
1485
 
 
1486
 
* Interactive merge doesn't leave branch locks behind.  (Aaron Bentley)
1487
 
 
1488
 
* Lots of bugfixes for the test suite on Windows. We should once again
1489
 
  have a test suite with no failures on Windows. (John Arbash Meinel)
1490
 
 
1491
 
* ``osutils.terminal_width()`` obeys the BZR_COLUMNS environment
1492
 
  variable but returns None if the terminal is not a tty (when output is
1493
 
  redirected for example). Also fixes its usage under OSes that doesn't
1494
 
  provide termios.TIOCGWINSZ. Make sure the corresponding tests runs on
1495
 
  windows too.
1496
 
  (Joke de Buhr, Vincent Ladeuil, #353370, #62539)
1497
 
  (John Arbash Meinel, Vincent Ladeuil, #492561)
1498
 
 
1499
 
* Terminate ssh subprocesses when no references to them remain, fixing
1500
 
  subprocess and file descriptor leaks.  (Andrew Bennetts, #426662)
1501
 
  
1502
 
* The ``--hardlink`` option of ``bzr branch`` and ``bzr checkout`` now
1503
 
  works for 2a format trees.  Only files unaffected by content filters
1504
 
  will be hardlinked.  (Andrew Bennetts, #408193)
1505
 
 
1506
 
* The new glob expansion on Windows would replace all ``\`` characters
1507
 
  with ``/`` even if it there wasn't a glob to expand, the arg was quoted,
1508
 
  etc. Now only change slashes if there is something being glob expanded.
1509
 
  (John Arbash Meinel, #485771)
1510
 
 
1511
 
* Use our faster ``KnownGraph.heads()`` functionality when computing the
1512
 
  new rich-root heads. This can cut a conversion time in half (mysql from
1513
 
  13.5h => 6.2h) (John Arbash Meinel, #487632)
1514
 
 
1515
 
* When launching a external diff tool via bzr diff --using, temporary files
1516
 
  are no longer created, rather, the path to the file in the working tree is
1517
 
  passed to the external diff tool. This allows the file to be edited if the
1518
 
  diff tool provides for this. (Gary van der Merwe, #490738)
1519
 
  
1520
 
* The launchpad-open command can now be used from a subdirectory of a
1521
 
  branch, not just from the root of the branch. 
1522
 
  (Neil Martinsen-Burrell, #489102)
1523
 
 
1524
 
 
1525
 
Improvements
1526
 
************
1527
 
 
1528
 
* ``bzr log`` is now faster. (Ian Clatworthy)
1529
 
 
1530
 
* ``bzr update`` provides feedback on which branch it is up to date with.
1531
 
  (Neil Martinsen-Burrell)
1532
 
 
1533
 
* ``bzr upgrade`` from pre-2a to 2a can be significantly faster (4x).
1534
 
  For details see the xml8 patch and heads() improvements.
1535
 
  (John Arbash Meinel)
1536
 
 
1537
 
* ``bzrlib.urlutils.local_path_from_url`` now accepts
1538
 
  'file://localhost/' as well as 'file:///' URLs on POSIX.  (Michael
1539
 
  Hudson)
1540
 
 
1541
 
* The progress bar now shows only a spinner and per-operation counts,
1542
 
  not an overall progress bar.  The previous bar was often not correlated
1543
 
  with real overall operation progress, either because the operations take
1544
 
  nonlinear time, or because at the start of the operation Bazaar couldn't
1545
 
  estimate how much work there was to do.  (Martin Pool)
1546
 
 
1547
 
Documentation
1548
 
*************
1549
 
 
1550
 
* Lots of documentation tweaks for inline help topics and command help
1551
 
  information.
1552
 
 
1553
 
API Changes
1554
 
***********
1555
 
 
1556
 
* ``bzrlib.textui`` (vestigial module) removed.  (Martin Pool)
1557
 
 
1558
 
* The Launchpad plugin now has a function ``login`` which will log in to
1559
 
  Launchpad with launchpadlib, and ``load_branch`` which will return the
1560
 
  Launchpad Branch object corresponding to a given Bazaar Branch object.
1561
 
  (Jonathan Lange)
1562
 
 
1563
 
Internals
1564
 
*********
1565
 
 
1566
 
* New test Feature: ``ModuleAvailableFeature``. It is designed to make it
1567
 
  easier to handle what tests you want to run based on what modules can be
1568
 
  imported. (Rather than lots of custom-implemented features that were
1569
 
  basically copy-and-pasted.) (John Arbash Meinel)
1570
 
 
1571
 
* ``osutils.timer_func()`` can be used to get either ``time.time()`` or
1572
 
  ``time.clock()`` when you want to do performance timing.
1573
 
  ``time.time()`` is limited to 15ms resolution on Windows, but
1574
 
  ``time.clock()`` gives CPU and not wall-clock time on other platforms.
1575
 
  (John Arbash Meinel)
1576
 
 
1577
 
* Several code paths that were calling ``Transport.get().read()`` have
1578
 
  been changed to the equalivent ``Transport.get_bytes()``. The main
1579
 
  difference is that the latter will explicitly call ``file.close()``,
1580
 
  rather than expecting the garbage collector to handle it. This helps
1581
 
  with some race conditions on Windows during the test suite and sftp
1582
 
  tests. (John Arbash Meinel)
1583
 
 
1584
 
Testing
1585
 
*******
1586
 
 
1587
 
* TestCaseWithMemoryTransport no longer sets $HOME and $BZR_HOME to
1588
 
  unicode strings. (Michael Hudson, #464174)
1589
 
 
1590
 
 
1591
 
bzr 2.0.3
1592
 
#########
1593
 
 
1594
 
:Codename: little italy
1595
 
:2.0.3: 2009-12-14
1596
 
 
1597
 
 
1598
 
The third stable release of Bazaar has a small handful of bugfixes. As
1599
 
expected, this has no internal or external compatibility changes versus
1600
 
2.0.2 (or 2.0.0).
1601
 
 
1602
 
Bug Fixes
1603
 
*********
1604
 
 
1605
 
* ``bzr push --use-existing-dir`` no longer crashes if the directory
1606
 
  exists but contains an invalid ``.bzr`` directory.
1607
 
  (Andrew Bennetts, #423563)
1608
 
 
1609
 
* Content filters are now applied correctly after pull, merge and switch.
1610
 
  (Ian Clatworthy, #385879)
1611
 
 
1612
 
* Fix a potential segfault in the groupcompress hash map handling code.
1613
 
  When inserting new entries, if the final hash bucket was empty, we could
1614
 
  end up trying to access if ``(last_entry+1)->ptr == NULL``.
1615
 
  (John Arbash Meinel, #490228)
1616
 
 
1617
 
* Improve "Binary files differ" hunk handling.  (Aaron Bentley, #436325)
1618
 
 
1619
 
 
1620
 
bzr 2.1.0b3
1621
 
###########
1622
 
 
1623
 
:Codename: after sprint recovery
1624
 
:2.1.0b3: 2009-11-16
1625
 
 
1626
 
This release was pushed up from its normal release cycle due to a
1627
 
regression in python 2.4 compatibility in 2.1.0b2.  Since this regression
1628
 
was caught before 2.1.0b2 was officially announced, the full changelog
1629
 
includes both 2.1.0b3 and 2.1.0b2 changes.
1630
 
 
1631
 
Highlights of 2.1.0b3 are: new globbing code for all commands on Windows,
1632
 
the test suite now conforms to python's trunk enhanced semantics (skip,
1633
 
etc.), and ``bzr info -v`` will now report the correct branch and repo
1634
 
formats for Remote objects.
1635
 
 
1636
 
 
1637
 
New Features
1638
 
************
1639
 
 
1640
 
* Users can define a shelve editor to provide shelf functionality at a
1641
 
  granularity finer than per-patch-hunk. (Aaron Bentley)
1642
 
 
1643
 
Bug Fixes
1644
 
*********
1645
 
 
1646
 
* Fix for shell completion and short options.  (Benoît PIERRE)
1647
 
 
1648
 
* Fix ``bzr --profile-imports`` with Python 2.6.  (Martin Pool)
1649
 
 
1650
 
* Hooks daughter classes should always call the base constructor.
1651
 
  (Alexander Belchenko, Vincent Ladeuil, #389648) 
1652
 
 
1653
 
* Improve "Binary files differ" hunk handling.  (Aaron Bentley, #436325)
1654
 
 
1655
 
* On Windows, do glob expansion at the command-line level (as is usually
1656
 
  done in bash, etc.) This means that *all* commands get glob expansion
1657
 
  (bzr status, bzr add, bzr mv, etc). It uses a custom command line
1658
 
  parser, which allows us to know if a given section was quoted. It means
1659
 
  you can now do ``bzr ignore "*.py"``.
1660
 
  (John Arbash Meinel, #425510, #426410, #194450)
1661
 
 
1662
 
* Sanitize commit messages that come in from the '-m' flag. We translate
1663
 
  '\r\n' => '\n' and a plain '\r' => '\n'. The storage layer doesn't
1664
 
  allow those because XML store silently translate it anyway. (The parser
1665
 
  auto-translates \r\n => \n in ways that are hard for us to catch.)
1666
 
 
1667
 
* Show correct branch and repository format descriptions in 
1668
 
  ``bzr info -v`` on a smart server location.  (Andrew Bennetts, #196080)
1669
 
 
1670
 
* The fix for bug #186920 accidentally broke compatibility with python
1671
 
  2.4.  (Vincent Ladeuil, #475585)
1672
 
 
1673
 
* Using ``Repository.get_commit_builder().record_iter_changes()`` now
1674
 
  correctly sets ``self.inv_sha1`` to a sha1 string and
1675
 
  ``self.new_inventory`` to an Inventory instance after calling
1676
 
  ``self.finish_inventory()``. (Previously it accidently set both values
1677
 
  as a tuple on ``self.inv_sha1``. This was missed because
1678
 
  ``repo.add_revision`` ignores the supplied inventory sha1 and recomputes
1679
 
  the sha1 from the repo directly. (John Arbash Meinel)
1680
 
 
1681
 
* Shelve command refuse to run if there is no real terminal.
1682
 
  (Alexander Belchenko)
1683
 
 
1684
 
* Avoid unnecessarily flushing of trace file; it's now unbuffered at the
1685
 
  Python level.  (Martin Pool)
1686
 
 
1687
 
Documentation
1688
 
*************
1689
 
 
1690
 
* Include Japanese translations for documentation (Inada Naoki)
1691
 
 
1692
 
* New API ``ui_factory.make_output_stream`` to be used for sending bulk
1693
 
  (rather than user-interaction) data to stdout.  This automatically
1694
 
  coordinates with progress bars or other terminal activity, and can be
1695
 
  overridden by GUIs.
1696
 
  (Martin Pool, 493944)
1697
 
 
1698
 
Internals
1699
 
*********
1700
 
 
1701
 
* Some of the core groupcompress functionality now releases the GIL before
1702
 
  operation. Similar to how zlib and bz2 operate without the GIL in the
1703
 
  core compression and decompression routines. (John Arbash Meinel)
1704
 
 
1705
 
Testing
1706
 
*******
1707
 
 
1708
 
* -Dhpssvfs will now trigger on ``RemoteBzrDir._ensure_real``, providing
1709
 
  more debugging of VFS access triggers. (Robert Collins)
1710
 
 
1711
 
* KnownFailure is now signalled to ``ExtendedTestResult`` using the same
1712
 
  method that Python 2.7 uses - ``addExpectedFailure``. (Robert Collins)
1713
 
 
1714
 
* ``--parallel=fork`` is now compatible with --subunit.
1715
 
  (Robert Collins, Vincent Ladeuil, #419776)
1716
 
 
1717
 
* Reporting of failures shows test ids not descriptions and thus shows
1718
 
  parameterised tests correctly. (Robert Collins)
1719
 
 
1720
 
* TestNotApplicable is now handled within the TestCase.run method rather
1721
 
  than being looked for within ``ExtendedTestResult.addError``. This
1722
 
  provides better handling with other ``TestResult`` objects, degrading to
1723
 
  sucess rather than error. (Robert Collins)
1724
 
 
1725
 
* The private method ``_testConcluded`` on ``ExtendedTestResult`` has been
1726
 
  removed - it was empty and unused. (Robert Collins)
1727
 
 
1728
 
* UnavailableFeature is now handled within the TestCase.run method rather
1729
 
  than being looked for within addError. If the Result object does not
1730
 
  have an addNotSupported method, addSkip is attempted instead, and
1731
 
  failing that addSuccess. (Robert Collins)
1732
 
 
1733
 
* When a TestResult does not have an addSkip method, skipped tests are now
1734
 
  reported as successful tests, rather than as errors. This change is
1735
 
  to make it possible to get a clean test run with a less capable
1736
 
  TestResult. (Robert Collins)
1737
 
 
1738
 
 
1739
 
 
1740
 
bzr 2.1.0b2
1741
 
###########
1742
 
 
1743
 
:Codename: a load off my mind
1744
 
:2.1.0b2: 2009-11-02
1745
 
 
1746
 
This is our second feature-filled release since 2.0, pushing us down the
1747
 
path to a 2.1.0. Once again, all bugfixes in 2.0.2 are present in 2.1.0b2.
1748
 
 
1749
 
Key highlights in this release are: improved handling of
1750
 
failures-during-cleanup for commit, fixing a long-standing bug with
1751
 
``bzr+http`` and shared repositories, all ``lp:`` urls to be resolved
1752
 
behind proxies, and a new StaticTuple datatype, allowing us to reduce
1753
 
memory consumption (50%) and garbage collector overhead (40% faster) for
1754
 
many operations.
1755
 
 
1756
 
* A new ``--concurrency`` option has been added as well as an associated
1757
 
  BZR_CONCURRENCY environment variable to specify the number of
1758
 
  processes that can be run concurrently when running ``bzr selftest``. The
1759
 
  command-line option overrides the environment variable if both are
1760
 
  specified. If none is specified. the number of processes is obtained
1761
 
  from the OS as before.  (Matt Nordhoff, Vincent Ladeuil)
1762
 
 
1763
 
Bug Fixes
1764
 
*********
1765
 
 
1766
 
* ``bzr+http`` servers no longer give spurious jail break errors when
1767
 
  serving branches inside a shared repository.  (Andrew Bennetts, #348308)
1768
 
 
1769
 
* Errors during commit are handled more robustly so that knock-on errors
1770
 
  are less likely to occur, and will not obscure the original error if
1771
 
  they do occur.  This fixes some causes of ``TooManyConcurrentRequests``
1772
 
  and similar errors.  (Andrew Bennetts, #429747, #243391)
1773
 
 
1774
 
* Launchpad urls can now be resolved from behind proxies.
1775
 
  (Gordon Tyler, Vincent Ladeuil, #186920)
1776
 
 
1777
 
* Reduce the strictness for StaticTuple, instead add a debug flag
1778
 
  ``-Dstatic_tuple`` which will change apis to be strict and raise errors.
1779
 
  This way, most users won't see failures, but developers can improve
1780
 
  internals. (John Arbash Meinel, #471193)
1781
 
 
1782
 
* TreeTransform.adjust_path updates the limbo paths of descendants of adjusted
1783
 
  files.  (Aaron Bentley)
1784
 
 
1785
 
* Unicode paths are now handled correctly and consistently by the smart
1786
 
  server.  (Andrew Bennetts, Michael Hudson, #458762)
1787
 
 
1788
 
Improvements
1789
 
************
1790
 
 
1791
 
* When reading index files, we now use a ``StaticTuple`` rather than a
1792
 
  plain ``tuple`` object. This generally gives a 20% decrease in peak
1793
 
  memory, and can give a performance boost up to 40% on large projects.
1794
 
  (John Arbash Meinel)
1795
 
 
1796
 
* Peak memory under certain operations has been reduced significantly.
1797
 
  (eg, 'bzr branch launchpad standalone' is cut in half)
1798
 
  (John Arbash Meinel)
1799
 
 
1800
 
Documentation
1801
 
*************
1802
 
 
1803
 
* Filtered views user documentation upgraded to refer to format 2a
1804
 
  instead of pre-2.0 formats. (Ian Clatworthy)
1805
 
 
1806
 
API Changes
1807
 
***********
1808
 
 
1809
 
* Remove deprecated ``CLIUIFactory``.  (Martin Pool)
1810
 
 
1811
 
* ``UIFactory`` now has new ``show_error``, ``show_message`` and
1812
 
  ``show_warning`` methods, which can be hooked by non-text UIs.  
1813
 
  (Martin Pool)
1814
 
 
1815
 
Internals
1816
 
*********
1817
 
 
1818
 
* Added ``bzrlib._simple_set_pyx``. This is a hybrid between a Set and a
1819
 
  Dict (it only holds keys, but you can lookup the object located at a
1820
 
  given key). It has significantly reduced memory consumption versus the
1821
 
  builtin objects (1/2 the size of Set, 1/3rd the size of Dict). This is
1822
 
  used as the interning structure for StaticTuple objects.
1823
 
  (John Arbash Meinel)
1824
 
 
1825
 
* ``bzrlib._static_tuple_c.StaticTuple`` is now available and used by
1826
 
  the btree index parser and the chk map parser. This class functions
1827
 
  similarly to ``tuple`` objects. However, it can only point to a limited
1828
 
  collection of types.  (Currently StaticTuple, str, unicode, None, bool,
1829
 
  int, long, float, but not subclasses).  This allows us to remove it from
1830
 
  the garbage collector (it cannot be in a cycle), it also allows us to
1831
 
  intern the objects. In testing, this can reduce peak memory by 20-40%,
1832
 
  and significantly improve performance by removing objects from being
1833
 
  inspected by the garbage collector.  (John Arbash Meinel)
1834
 
 
1835
 
* ``GroupCompressBlock._ensure_content()`` will now release the
1836
 
  ``zlib.decompressobj()`` when the first request is for all of the
1837
 
  content. (Previously it would only be released if you made a request for
1838
 
  part of the content, and then all of it later.) This turns out to be a
1839
 
  significant memory savings, as a ``zstream`` carries around approx 260kB
1840
 
  of internal state and buffers. (For branching bzr.dev this drops peak
1841
 
  memory from 382MB => 345MB.) (John Arbash Meinel)
1842
 
 
1843
 
* When streaming content between ``2a`` format repositories, we now clear
1844
 
  caches from earlier versioned files. (So 'revisions' is cleared when we
1845
 
  start reading 'inventories', etc.) This can have a significant impact on
1846
 
  peak memory for initial copies (~200MB). (John Arbash Meinel)
1847
 
 
1848
 
 
1849
 
bzr 2.0.2
1850
 
#########
1851
 
 
1852
 
:Codename: after the scare
1853
 
:2.0.2: 2009-11-02
1854
 
 
1855
 
The second in our "let's keep the stable bugfixes flowing" series. As
1856
 
expected this has a few (~9) bugfixes relative to 2.0.1, and no major api
1857
 
changes or features.
1858
 
 
1859
 
Bug Fixes
1860
 
*********
1861
 
 
1862
 
* Avoid "NoneType has no attribute st_mode" error when files disappear
1863
 
  from a directory while it's being read.  (Martin Pool, #446033)
1864
 
 
1865
 
* Content filters are now applied correctly after revert.
1866
 
  (Ian Clatworthy)
1867
 
 
1868
 
* Diff parsing handles "Binary files differ" hunks.  (Aaron Bentley, #436325)
1869
 
 
1870
 
* Fetching from stacked pre-2a repository via a smart server no longer
1871
 
  fails intermittently with "second push failed to complete".
1872
 
  (Andrew Bennetts, #437626)
1873
 
 
1874
 
* Fix typos left after test_selftest refactoring.
1875
 
  (Vincent Ladeuil, Matt Nordhoff, #461149)
1876
 
 
1877
 
* Fixed ``ObjectNotLocked`` errors during ``bzr log -r NNN somefile``.
1878
 
  (Andrew Bennetts, #445171)
1879
 
  
1880
 
* PreviewTree file names are not limited by the encoding of the temp
1881
 
  directory's filesystem. (Aaron Bentley, #436794)
1882
 
 
1883
 
Improvements
1884
 
************
1885
 
 
1886
 
* ``bzr log`` now read-locks branches exactly once, so makes better use of
1887
 
  data caches.  (Andrew Bennetts)
1888
 
 
1889
 
Documentation
1890
 
*************
1891
 
 
1892
 
* Filtered views user documentation upgraded to refer to format 2a
1893
 
  instead of pre-2.0 formats. (Ian Clatworthy)
1894
 
 
1895
 
 
1896
 
bzr 2.1.0b1
1897
 
###########
1898
 
 
1899
 
:Codename: While the cat is away
1900
 
:2.1.0b1: 2009-10-14
1901
 
 
1902
 
This is the first development release in the new split "stable" and
1903
 
"development" series. As such, the release is a snapshot of bzr.dev
1904
 
without creating a release candidate first. This release includes a
1905
 
fair amount of internal changes, with deprecated code being removed,
1906
 
and several new feature developments. People looking for a stable code
1907
 
base with only bugfixes should focus on the 2.0.1 release. All bugfixes
1908
 
present in 2.0.1 are present in 2.1.0b1.
1909
 
 
1910
 
Highlights include support for ``bzr+ssh://host/~/homedir`` style urls,
1911
 
finer control over the plugin search path via extended BZR_PLUGIN_PATH
1912
 
syntax, visible warnings when extension modules fail to load, and improved
1913
 
error handling during unlocking.
1914
 
 
1915
 
 
1916
 
New Features
1917
 
************
1918
 
 
1919
 
* Bazaar can now send mail through Apple OS X Mail.app. 
1920
 
  (Brian de Alwis)
1921
 
 
1922
 
* ``bzr+ssh`` and ``bzr`` paths can now be relative to home directories
1923
 
  specified in the URL.  Paths starting with a path segment of ``~`` are
1924
 
  relative to the home directory of the user running the server, and paths
1925
 
  starting with ``~user`` are relative to the home directory of the named
1926
 
  user.  For example, for a user "bob" with a home directory of
1927
 
  ``/home/bob``, these URLs are all equivalent:
1928
 
 
1929
 
  * ``bzr+ssh://bob@host/~/repo``
1930
 
  * ``bzr+ssh://bob@host/~bob/repo``
1931
 
  * ``bzr+ssh://bob@host/home/bob/repo``
1932
 
 
1933
 
  If ``bzr serve`` was invoked with a ``--directory`` argument, then no
1934
 
  home directories outside that directory will be accessible via this
1935
 
  method.
1936
 
 
1937
 
  This is a feature of ``bzr serve``, so pre-2.1 clients will
1938
 
  automatically benefit from this feature when ``bzr`` on the server is
1939
 
  upgraded.  (Andrew Bennetts, #109143)
1940
 
 
1941
 
* Extensions can now be compiled if either Cython or Pyrex is available.
1942
 
  Currently Pyrex is preferred, but that may change in the future.
1943
 
  (Arkanes)
1944
 
 
1945
 
* Give more control on BZR_PLUGIN_PATH by providing a way to refer to or
1946
 
  disable the user, site and core plugin directories.
1947
 
  (Vincent Ladeuil, #412930, #316192, #145612)
1948
 
 
1949
 
Bug Fixes
1950
 
*********
1951
 
 
1952
 
* Bazaar's native protocol code now correctly handles EINTR, which most
1953
 
  noticeably occurs if you break in to the debugger while connected to a
1954
 
  bzr+ssh server.  You can now can continue from the debugger (by typing
1955
 
  'c') and the process continues.  However, note that pressing C-\ in the
1956
 
  shell may still kill the SSH process, which is bug 162509, so you must
1957
 
  sent a signal to the bzr process specifically, for example by typing
1958
 
  ``kill -QUIT PID`` in another shell.  (Martin Pool, #341535)
1959
 
 
1960
 
* ``bzr add`` in a tree that has files with ``\r`` or ``\n`` in the
1961
 
  filename will issue a warning and skip over those files.
1962
 
  (Robert Collins, #3918)
1963
 
 
1964
 
* ``bzr dpush`` now aborts if uncommitted changes (including pending merges)
1965
 
  are present in the working tree. The configuration option ``dpush_strict``
1966
 
  can be used to set the default for this behavior.
1967
 
  (Vincent Ladeuil, #438158)
1968
 
 
1969
 
* ``bzr merge`` and ``bzr remove-tree`` now requires --force if pending
1970
 
  merges are present in the working tree.
1971
 
  (Vincent Ladeuil, #426344)
1972
 
 
1973
 
* Clearer message when Bazaar runs out of memory, instead of a ``MemoryError``
1974
 
  traceback.  (Martin Pool, #109115)
1975
 
 
1976
 
* Don't give a warning on Windows when failing to import ``_readdir_pyx``
1977
 
  as it is never built. (John Arbash Meinel, #430645)
1978
 
 
1979
 
* Don't restrict the command name used to run the test suite.
1980
 
  (Vincent Ladeuil, #419950)
1981
 
 
1982
 
* ftp transports were built differently when the kerberos python module was
1983
 
  present leading to obscure failures related to ASCII/BINARY modes.
1984
 
  (Vincent Ladeuil, #443041)
1985
 
 
1986
 
* Network streams now decode adjacent records of the same type into a
1987
 
  single stream, reducing layering churn. (Robert Collins)
1988
 
 
1989
 
* PreviewTree behaves correctly when get_file_mtime is invoked on an unmodified
1990
 
  file. (Aaron Bentley, #251532)
1991
 
 
1992
 
* Registry objects should not use iteritems() when asked to use items().
1993
 
  (Vincent Ladeuil, #430510)
1994
 
 
1995
 
* Weave based repositories couldn't be cloned when committers were using
1996
 
  domains or user ids embedding '.sig'. Now they can.
1997
 
  (Matthew Fuller, Vincent Ladeuil, #430868)
1998
 
 
1999
 
Improvements
2000
 
************
2001
 
 
2002
 
* Revision specifiers can now be given in a more DWIM form, without
2003
 
  needing explicit prefixes for specifiers like tags or revision id's.
2004
 
  See ``bzr help revisionspec`` for full details.  (Matthew Fuller)
2005
 
 
2006
 
* Bazaar gives a warning before exiting, and writes into ``.bzr.log``, if 
2007
 
  compiled extensions can't be loaded.  This typically indicates a
2008
 
  packaging or installation problem.  In this case Bazaar will keep
2009
 
  running using pure-Python versions, but this may be substantially
2010
 
  slower.  The warning can be disabled by setting
2011
 
  ``ignore_missing_extensions = True`` in ``bazaar.conf``.
2012
 
  See also <https://answers.launchpad.net/bzr/+faq/703>.
2013
 
  (Martin Pool, #406113, #430529)
2014
 
 
2015
 
* Secondary errors that occur during Branch.unlock and Repository.unlock
2016
 
  no longer obscure the original error.  These methods now use a new
2017
 
  decorator, ``only_raises``.  This fixes many causes of
2018
 
  ``TooManyConcurrentRequests`` and similar errors.
2019
 
  (Andrew Bennetts, #429747)
2020
 
 
2021
 
Documentation
2022
 
*************
2023
 
 
2024
 
* Describe the new shell-like test feature. (Vincent Ladeuil)
2025
 
 
2026
 
* Help on hooks no longer says 'Not deprecated' for hooks that are
2027
 
  currently supported. (Ian Clatworthy, #422415)
2028
 
 
2029
 
API Changes
2030
 
***********
2031
 
 
2032
 
* ``bzrlib.user_encoding`` has been removed; use
2033
 
  ``bzrlib.osutils.get_user_encoding`` instead.  (Martin Pool)
2034
 
 
2035
 
* ``bzrlib.tests`` now uses ``stopTestRun`` for its ``TestResult``
2036
 
  subclasses - the same as python's unittest module. (Robert Collins)
2037
 
  
2038
 
* ``diff._get_trees_to_diff`` has been renamed to 
2039
 
  ``diff.get_trees_and_branches_to_diff``. It is now a public API, and it 
2040
 
  returns the old and new branches. (Gary van der Merwe)
2041
 
 
2042
 
* ``bzrlib.trace.log_error``, ``error`` and ``info`` have been deprecated.
2043
 
  (Martin Pool)
2044
 
 
2045
 
* ``MutableTree.has_changes()`` does not require a tree parameter anymore. It
2046
 
  now defaults to comparing to the basis tree. It now checks for pending
2047
 
  merges too.  ``Merger.check_basis`` has been deprecated and replaced by the
2048
 
  corresponding has_changes() calls. ``Merge.compare_basis``,
2049
 
  ``Merger.file_revisions`` and ``Merger.ensure_revision_trees`` have also
2050
 
  been deprecated.
2051
 
  (Vincent Ladeuil, #440631)
2052
 
 
2053
 
* ``ProgressTask.note`` is deprecated.
2054
 
  (Martin Pool)
2055
 
 
2056
 
Internals
2057
 
*********
2058
 
 
2059
 
* Added ``-Drelock`` debug flag.  It will ``note`` a message every time a
2060
 
  repository or branch object is unlocked then relocked the same way.
2061
 
  (Andrew Bennetts)
2062
 
  
2063
 
* ``BTreeLeafParser.extract_key`` has been tweaked slightly to reduce
2064
 
  mallocs while parsing the index (approx 3=>1 mallocs per key read).
2065
 
  This results in a 10% speedup while reading an index.
2066
 
  (John Arbash Meinel)
2067
 
 
2068
 
* The ``bzrlib.lsprof`` module has a new class ``BzrProfiler`` which makes
2069
 
  profiling in some situations like callbacks and generators easier.
2070
 
  (Robert Collins)
2071
 
 
2072
 
Testing
2073
 
*******
2074
 
 
2075
 
* Passing ``--lsprof-tests -v`` to bzr selftest will cause lsprof output to
2076
 
  be output for every test. Note that this is very verbose! (Robert Collins)
2077
 
 
2078
 
* Setting ``BZR_TEST_PDB=1`` when running selftest will cause a pdb
2079
 
  post_mortem to be triggered when a test failure occurs. (Robert Collins)
2080
 
 
2081
 
* Shell-like tests can now be written. Code in ``bzrlib/tests/script.py`` ,
2082
 
  documentation in ``developers/testing.txt`` for details.
2083
 
  (Vincent Ladeuil)
2084
 
 
2085
 
* Some tests could end up with the same id, that was dormant for
2086
 
  a long time.
2087
 
  (Vincent Ladeuil, #442980)
2088
 
 
2089
 
* Stop showing the number of tests due to missing features in the test
2090
 
  progress bar.  (Martin Pool)
2091
 
 
2092
 
* Test parameterisation now does a shallow copy, not a deep copy of the test
2093
 
  to be parameterised. This is not expected to break external use of test
2094
 
  parameterisation, and is substantially faster. (Robert Collins)
2095
 
 
2096
 
* Tests that try to open a bzr dir on an arbitrary transport will now
2097
 
  fail unless they have explicitly permitted the transport via
2098
 
  ``self.permit_url``. The standard test factories such as ``self.get_url``
2099
 
  will permit the urls they provide automatically, so only exceptional
2100
 
  tests should need to do this. (Robert Collins)
2101
 
 
2102
 
* The break-in test no longer cares about clean shutdown of the child,
2103
 
  instead it is happy if the debugger starts up. (Robert  Collins)
2104
 
 
2105
 
* The full test suite is expected to pass when the C extensions are not
2106
 
  present. (Vincent Ladeuil, #430749)
2107
 
 
2108
 
 
2109
 
bzr 2.0.1
2110
 
#########
2111
 
 
2112
 
:Codename: Stability First
2113
 
:2.0.1: 2009-10-14
2114
 
 
2115
 
The first of our new ongoing bugfix-only stable releases has arrived. It
2116
 
includes a collection of 12 bugfixes applied to bzr 2.0.0, but does not
2117
 
include any of the feature development in the 2.1.0 series.
2118
 
 
2119
 
 
2120
 
Bug Fixes
2121
 
*********
2122
 
 
2123
 
* ``bzr add`` in a tree that has files with ``\r`` or ``\n`` in the
2124
 
  filename will issue a warning and skip over those files.
2125
 
  (Robert Collins, #3918)
2126
 
 
2127
 
* bzr will attempt to authenticate with SSH servers that support
2128
 
  ``keyboard-interactive`` auth but not ``password`` auth when using
2129
 
  Paramiko.   (Andrew Bennetts, #433846)
2130
 
 
2131
 
* Fixed fetches from a stacked branch on a smart server that were failing
2132
 
  with some combinations of remote and local formats.  This was causing
2133
 
  "unknown object type identifier 60" errors.  (Andrew Bennetts, #427736)
2134
 
 
2135
 
* Fixed ``ObjectNotLocked`` errors when doing some log and diff operations
2136
 
  on branches via a smart server.  (Andrew Bennetts, #389413)
2137
 
 
2138
 
* Handle things like ``bzr add foo`` and ``bzr rm foo`` when the tree is
2139
 
  at the root of a drive. ``osutils._cicp_canonical_relpath`` always
2140
 
  assumed that ``abspath()`` returned a path that did not have a trailing
2141
 
  ``/``, but that is not true when working at the root of the filesystem.
2142
 
  (John Arbash Meinel, Jason Spashett, #322807)
2143
 
 
2144
 
* Hide deprecation warnings for 'final' releases for python2.6.
2145
 
  (John Arbash Meinel, #440062)
2146
 
 
2147
 
* Improve the time for ``bzr log DIR`` for 2a format repositories.
2148
 
  We had been using the same code path as for <2a formats, which required
2149
 
  iterating over all objects in all revisions.
2150
 
  (John Arbash Meinel, #374730)
2151
 
 
2152
 
* Make sure that we unlock the tree if we fail to create a TreeTransform
2153
 
  object when doing a merge, and there is limbo, or pending-deletions
2154
 
  directory.  (Gary van der Merwe, #427773)
2155
 
 
2156
 
* Occasional IndexError on renamed files have been fixed. Operations that
2157
 
  set a full inventory in the working tree will now go via the
2158
 
  apply_inventory_delta code path which is simpler and easier to
2159
 
  understand than dirstates set_state_from_inventory method. This may
2160
 
  have a small performance impact on operations built on _write_inventory,
2161
 
  but such operations are already doing full tree scans, so no radical
2162
 
  performance change should be observed. (Robert Collins, #403322)
2163
 
 
2164
 
* Retrieving file text or mtime from a _PreviewTree has good performance when
2165
 
  there are many changes.  (Aaron Bentley)
2166
 
 
2167
 
* The CHK index pages now use an unlimited cache size. With a limited
2168
 
  cache and a large project, the random access of chk pages could cause us
2169
 
  to download the entire cix file many times.
2170
 
  (John Arbash Meinel, #402623)
2171
 
 
2172
 
* When a file kind becomes unversionable after being added, a sensible
2173
 
  error will be shown instead of a traceback. (Robert Collins, #438569)
2174
 
 
2175
 
Documentation
2176
 
*************
2177
 
 
2178
 
* Improved README. (Ian Clatworthy)
2179
 
 
2180
 
* Improved upgrade documentation for Launchpad branches.
2181
 
  (Barry Warsaw)
2182
 
 
2183
 
 
2184
 
bzr 2.0.0
2185
 
#########
2186
 
 
2187
 
:2.0.0: 2009-09-22
2188
 
:Codename: Instant Karma
2189
 
 
2190
 
This release of Bazaar makes the 2a (previously 'brisbane-core') format
2191
 
the default when new branches or repositories are created.  This format is
2192
 
substantially smaller and faster for many operations.  Most of the work in
2193
 
this release focuses on bug fixes and stabilization, covering both 2a and
2194
 
previous formats.  (See the Upgrade Guide for information on migrating
2195
 
existing projects.)
2196
 
 
2197
 
This release also improves the documentation content and presentation,
2198
 
including adding Windows HtmlHelp manuals.
2199
 
 
2200
 
The Bazaar team decided that 2.0 will be a long-term supported release,
2201
 
with bugfix-only 2.0.x releases based on it, continuing for at least six
2202
 
months or until the following stable release.
2203
 
 
2204
 
Changes from 2.0.0rc2 to final
2205
 
******************************
2206
 
 
2207
 
* Officially branded as 2.0.0 rather than 2.0 to clarify between things
2208
 
  that "want to happen on the 2.0.x stable series" versus things that want
2209
 
  to "land in 2.0.0". (Changes how bzrlib._format_version_tuple() handles
2210
 
  micro = 0.) (John Arbash Meinel)
2211
 
 
2212
 
 
2213
 
bzr 2.0.0rc2
2214
 
############
2215
 
 
2216
 
:2.0.0rc2: 2009-09-10
2217
 
 
2218
 
New Features
2219
 
************
2220
 
 
2221
 
* Added post_commit hook for mutable trees. This allows the keywords
2222
 
  plugin to expand keywords on files changed by the commit.
2223
 
  (Ian Clatworthy, #408841)
2224
 
 
2225
 
Bug Fixes
2226
 
*********
2227
 
 
2228
 
* Bazaar's native protocol code now correctly handles EINTR, which most
2229
 
  noticeably occurs if you break in to the debugger while connected to a
2230
 
  bzr+ssh server.  You can now can continue from the debugger (by typing
2231
 
  'c') and the process continues.  However, note that pressing C-\ in the
2232
 
  shell may still kill the SSH process, which is bug 162509, so you must
2233
 
  sent a signal to the bzr process specifically, for example by typing
2234
 
  ``kill -QUIT PID`` in another shell.  (Martin Pool, #341535)
2235
 
 
2236
 
* ``bzr check`` in pack-0.92, 1.6 and 1.9 format repositories will no
2237
 
  longer report incorrect errors about ``Missing inventory ('TREE_ROOT', ...)``
2238
 
  (Robert Collins, #416732)
2239
 
 
2240
 
* ``bzr info -v`` on a 2a format still claimed that it was a "Development
2241
 
  format" (John Arbash Meinel, #424392)
2242
 
 
2243
 
* ``bzr log stacked-branch`` shows the full log including
2244
 
  revisions that are in the fallback repository. (Regressed in 2.0rc1).
2245
 
  (John Arbash Meinel, #419241)
2246
 
 
2247
 
* Clearer message when Bazaar runs out of memory, instead of a ``MemoryError``
2248
 
  traceback.  (Martin Pool, #109115)
2249
 
 
2250
 
* Conversion to 2a will create a single pack for all the new revisions (as
2251
 
  long as it ran without interruption). This improves both ``bzr upgrade``
2252
 
  and ``bzr pull`` or ``bzr merge`` from local branches in older formats.
2253
 
  The autopack logic that occurs every 100 revisions during local
2254
 
  conversions was not returning that pack's identifier, which resulted in
2255
 
  the partial packs created during the conversion not being consolidated
2256
 
  at the end of the conversion process. (Robert Collins, #423818)
2257
 
 
2258
 
* Fetches from 2a to 2a are now again requested in 'groupcompress' order.
2259
 
  Groups that are seen as 'underutilized' will be repacked on-the-fly.
2260
 
  This means that when the source is fully packed, there is minimal
2261
 
  overhead during the fetch, but if the source is poorly packed the result
2262
 
  is a fairly well packed repository (not as good as 'bzr pack' but
2263
 
  good-enough.) (Robert Collins, John Arbash Meinel, #402652)
2264
 
 
2265
 
* Fix a potential segmentation fault when doing 'log' of a branch that had
2266
 
  ghosts in its mainline.  (Evaluating None as a tuple is bad.)
2267
 
  (John Arbash Meinel, #419241)
2268
 
 
2269
 
* ``groupcompress`` sort order is now more stable, rather than relying on
2270
 
  ``topo_sort`` ordering. The implementation is now
2271
 
  ``KnownGraph.gc_sort``. (John Arbash Meinel)
2272
 
 
2273
 
* Local data conversion will generate correct deltas. This is a critical
2274
 
  bugfix vs 2.0rc1, and all 2.0rc1 users should upgrade to 2.0rc2 before
2275
 
  converting repositories. (Robert Collins, #422849)
2276
 
 
2277
 
* Network streams now decode adjacent records of the same type into a
2278
 
  single stream, reducing layering churn. (Robert Collins)
2279
 
 
2280
 
* Prevent some kinds of incomplete data from being committed to a 2a
2281
 
  repository, such as revisions without inventories, a missing chk_bytes
2282
 
  record for an inventory, or a missing text referenced by an inventory.
2283
 
  (Andrew Bennetts, #423506, #406687)
2284
 
  
2285
 
Documentation
2286
 
*************
2287
 
 
2288
 
* Fix assertion error about "_remember_remote_is_before" when pushing to
2289
 
  older smart servers.
2290
 
  (Andrew Bennetts, #418931)
2291
 
 
2292
 
* Help on hooks no longer says 'Not deprecated' for hooks that are
2293
 
  currently supported. (Ian Clatworthy, #422415)
2294
 
 
2295
 
* PDF and CHM (Windows HtmlHelp) formats are now supported for the
2296
 
  user documentation. The HTML documentation is better broken up into
2297
 
  topics. (Ian Clatworthy)
2298
 
 
2299
 
* The developer and foreign language documents are now separated
2300
 
  out so that searching in the HTML and CHM files produces more
2301
 
  useful results. (Ian Clatworthy)
2302
 
 
2303
 
* The main table of contents now provides links to the new Migration Docs
2304
 
  and Plugins Guide. (Ian Clatworthy)
2305
 
 
2306
 
 
2307
 
bzr 2.0.0rc1
2308
 
############
2309
 
 
2310
 
:Codename: no worries
2311
 
:2.0.0rc1: 2009-08-26
2312
 
 
2313
 
Compatibility Breaks
2314
 
********************
2315
 
 
2316
 
* The default format for bzr is now ``2a``. This format brings many
2317
 
  significant performance and size improvements. bzr can pull from
2318
 
  any existing repository into a ``2a`` one, but can only transfer
2319
 
  from ``2a`` into ``rich-root`` repositories. The Upgrade guide
2320
 
  has more information about this change. (Robert Collins)
2321
 
 
2322
 
* On Windows auto-detection of Putty's plink.exe is disabled.
2323
 
  Default SSH client for Windows is paramiko. User still can force
2324
 
  usage of plink if explicitly set environment variable BZR_SSH=plink.
2325
 
  (#414743, Alexander Belchenko)
2326
 
 
2327
 
New Features
2328
 
************
2329
 
 
2330
 
* ``bzr branch --switch`` can now switch the checkout in the current directory
2331
 
  to the newly created branch. (Lukáš Lalinský)
2332
 
 
2333
 
Bug Fixes
2334
 
*********
2335
 
 
2336
 
* Further tweaks to handling of ``bzr add`` messages about ignored files.
2337
 
  (Jason Spashett, #76616)
2338
 
 
2339
 
* Fetches were being requested in 'groupcompress' order, but weren't
2340
 
  recombining the groups. Thus they would 'fragment' to get the correct
2341
 
  order, but not 'recombine' to actually benefit from it. Until we get
2342
 
  recombining to work, switching to 'unordered' fetches avoids the
2343
 
  fragmentation. (John Arbash Meinel, #402645)
2344
 
 
2345
 
* Fix a pycurl related test failure on karmic by recognizing an error
2346
 
  raised by newer versions of pycurl.
2347
 
  (Vincent Ladeuil, #306264)
2348
 
 
2349
 
* Fix a test failure on karmic by making a locale test more robust.
2350
 
  (Vincent Ladeuil, #413514)
2351
 
 
2352
 
* Fix IndexError printing CannotBindAddress errors.
2353
 
  (Martin Pool, #286871)
2354
 
 
2355
 
* Fix "Revision ... not present" errors when upgrading stacked branches,
2356
 
  or when doing fetches from a stacked source to a stacked target.
2357
 
  (Andrew Bennetts, #399140)
2358
 
 
2359
 
* ``bzr branch`` of 2a repositories over HTTP is much faster.  bzr now
2360
 
  batches together small fetches from 2a repositories, rather than
2361
 
  fetching only a few hundred bytes at a time.
2362
 
  (Andrew Bennetts, #402657)
2363
 
 
2364
 
Improvements
2365
 
************
2366
 
 
2367
 
* A better description of the platform is shown in crash tracebacks, ``bzr
2368
 
  --version`` and ``bzr selftest``.
2369
 
  (Martin Pool, #409137)
2370
 
 
2371
 
* bzr can now (again) capture crash data through the apport library, 
2372
 
  so that a single human-readable file can be attached to bug reports.
2373
 
  This can be disabled by using ``-Dno_apport`` on the command line, or by
2374
 
  putting ``no_apport`` into the ``debug_flags`` section of
2375
 
  ``bazaar.conf``.
2376
 
  (Martin Pool, Robert Collins, #389328)
2377
 
 
2378
 
* ``bzr push`` locally on windows will no longer give a locking error with
2379
 
  dirstate based formats. (Robert Collins)
2380
 
 
2381
 
* ``bzr shelve`` and ``bzr unshelve`` now work on windows.
2382
 
  (Robert Collins, #305006)
2383
 
 
2384
 
* Commit of specific files no longer prevents using the iter_changes
2385
 
  codepath. On 2a repositories, commit of specific files should now be as
2386
 
  fast, or slightly faster, than a full commit. (Robert Collins)
2387
 
 
2388
 
* The internal core code that handles specific file operations like
2389
 
  ``bzr st FILENAME`` or ``bzr commit FILENAME`` has been changed to
2390
 
  include the parent directories if they have altered, and when a
2391
 
  directory stops being a directory its children are always included. This
2392
 
  fixes a number of causes for ``InconsistentDelta`` errors, and permits
2393
 
  faster commit of specific paths. (Robert Collins, #347649)
2394
 
 
2395
 
Documentation
2396
 
*************
2397
 
 
2398
 
* New developer documentation for content filtering.
2399
 
  (Martin Pool)
2400
 
 
2401
 
API Changes
2402
 
***********
2403
 
 
2404
 
* ``bzrlib.shelf_ui`` has had the ``from_args`` convenience methods of its
2405
 
  classes changed to manage lock lifetime of the trees they open in a way
2406
 
  consistent with reader-exclusive locks. (Robert Collins, #305006)
2407
 
 
2408
 
Testing
2409
 
*******
2410
 
 
2411
 
bzr 1.18.1
2412
 
##########
2413
 
 
2414
 
:Codename:     nein nein nein!
2415
 
:1.18.1:       2009-09-09
2416
 
 
2417
 
This release fixes two small but worthwhile bugs relevant to users on
2418
 
Microsoft Windows: some commands that failed on with locking errors will
2419
 
now work, and a bug that caused poor performance after committing a file
2420
 
with line-ending conversion has now been fixed.  It also fixes a bug in
2421
 
pushing to older servers.
2422
 
 
2423
 
Bug Fixes
2424
 
*********
2425
 
 
2426
 
* Fixed a problem where using content filtering and especially end-of-line
2427
 
  conversion will commit too many copies a file.
2428
 
  (Martin Pool, #415508)
2429
 
 
2430
 
* Fix assertion error about ``_remember_remote_is_before`` in
2431
 
  ``set_tags_bytes`` when pushing to older smart servers.  
2432
 
  (Andrew Bennetts, Alexander Belchenko, #418931)
2433
 
 
2434
 
Improvements
2435
 
************
2436
 
 
2437
 
* ``bzr push`` locally on Windows will no longer give a locking error with
2438
 
  dirstate based formats. (Robert Collins)
2439
 
 
2440
 
* ``bzr shelve`` and ``bzr unshelve`` now work on Windows.
2441
 
  (Robert Collins, #305006)
2442
 
 
2443
 
API Changes
2444
 
***********
2445
 
 
2446
 
* ``bzrlib.shelf_ui`` has had the ``from_args`` convenience methods of its
2447
 
  classes changed to manage lock lifetime of the trees they open in a way
2448
 
  consistent with reader-exclusive locks. (Robert Collins, #305006)
2449
 
 
2450
 
* ``Tree.path_content_summary`` may return a size of None, when called on
2451
 
  a tree with content filtering where the size of the canonical form
2452
 
  cannot be cheaply determined.  (Martin Pool)
2453
 
 
2454
 
* When manually creating transport servers in test cases, a new helper
2455
 
  ``TestCase.start_server`` that registers a cleanup and starts the server
2456
 
  should be used. (Robert Collins)
2457
 
 
2458
 
bzr 1.18
2459
 
########
2460
 
 
2461
 
Compatibility Breaks
2462
 
********************
2463
 
 
2464
 
* Committing directly to a stacked branch from a lightweight checkout will
2465
 
  no longer work. In previous versions this would appear to work but would
2466
 
  generate repositories with insufficient data to create deltas, leading
2467
 
  to later errors when branching or reading from the repository.
2468
 
  (Robert Collins, bug #375013)
2469
 
 
2470
 
New Features
2471
 
************
2472
 
 
2473
 
Bug Fixes
2474
 
*********
2475
 
 
2476
 
* Fetching from 2a branches from a version-2 bzr protocol would fail to
2477
 
  copy the internal inventory pages from the CHK store. This cannot happen
2478
 
  in normal use as all 2a compatible clients and servers support the
2479
 
  version-3 protocol, but it does cause test suite failures when testing
2480
 
  downlevel protocol behaviour. (Robert Collins)
2481
 
 
2482
 
* Fix a test failure on karmic by making a locale test more robust.
2483
 
  (Vincent Ladeuil, #413514)
2484
 
 
2485
 
* Fixed "Pack ... already exists" error when running ``bzr pack`` on a
2486
 
  fully packed 2a repository.  (Andrew Bennetts, #382463)
2487
 
 
2488
 
* Further tweaks to handling of ``bzr add`` messages about ignored files.
2489
 
  (Jason Spashett, #76616)
2490
 
 
2491
 
* Properly handle fetching into a stacked branch while converting the
2492
 
  data, especially when there are also ghosts. The code was filling in
2493
 
  parent inventories incorrectly, and also not handling when one of the
2494
 
  parents was a ghost. (John Arbash Meinel, #402778, #412198)
2495
 
 
2496
 
* ``RemoteStreamSource.get_stream_for_missing_keys`` will fetch CHK
2497
 
  inventory pages when appropriate (by falling back to the vfs stream
2498
 
  source).  (Andrew Bennetts, #406686)
2499
 
 
2500
 
* StreamSource generates rich roots from non-rich root sources correctly
2501
 
  now.  (Andrew Bennetts, #368921)
2502
 
 
2503
 
* When deciding whether a repository was compatible for upgrading or
2504
 
  fetching, we previously incorrectly checked the default repository
2505
 
  format for the bzrdir format, rather than the format that was actually
2506
 
  present on disk.  (Martin Pool, #408824)
2507
 
 
2508
 
Improvements
2509
 
************
2510
 
 
2511
 
* A better description of the platform is shown in crash tracebacks, ``bzr
2512
 
  --version`` and ``bzr selftest``.
2513
 
  (Martin Pool, #409137)
2514
 
 
2515
 
* Cross-format fetches (such as between 1.9-rich-root and 2a) via the
2516
 
  smart server are more efficient now.  They send inventory deltas rather
2517
 
  than full inventories.  The smart server has two new requests,
2518
 
  ``Repository.get_stream_1.19`` and ``Repository.insert_stream_1.19`` to
2519
 
  support this.  (Andrew Bennetts, #374738, #385826)
2520
 
 
2521
 
* Extracting the full ancestry and computing the ``merge_sort`` is now
2522
 
  significantly faster. This effects things like ``bzr log -n0``. (For
2523
 
  example, ``bzr log -r -10..-1 -n0 bzr.dev`` is 2.5s down to 1.0s.
2524
 
  (John Arbash Meinel)
2525
 
 
2526
 
Documentation
2527
 
*************
2528
 
 
2529
 
API Changes
2530
 
***********
2531
 
 
2532
 
Internals
2533
 
*********
2534
 
 
2535
 
* ``-Dstrict_locks`` can now be used to check that read and write locks
2536
 
  are treated properly w.r.t. exclusivity. (We don't try to take an OS
2537
 
  read lock on a file that we already have an OS write lock on.) This is
2538
 
  now set by default for all tests, if you have a test which cannot be
2539
 
  fixed, you can use ``self.thisFailsStrictLockCheck()`` as a
2540
 
  compatibility knob. (John Arbash Meinel)
2541
 
 
2542
 
* InterDifferingSerializer is now only used locally.  Other fetches that
2543
 
  would have used InterDifferingSerializer now use the more network
2544
 
  friendly StreamSource, which now automatically does the same
2545
 
  transformations as InterDifferingSerializer.  (Andrew Bennetts)
2546
 
 
2547
 
* ``KnownGraph`` now has a ``.topo_sort`` and ``.merge_sort`` member which
2548
 
  are implemented in pyrex and significantly faster. This is exposed along
2549
 
  with ``CombinedGraphIndex.find_ancestry()`` as
2550
 
  ``VersionedFiles.get_known_graph_ancestry(keys)``.
2551
 
  (John Arbash Meinel)
2552
 
 
2553
 
* RemoteBranch.open now honours ignore_fallbacks correctly on bzr-v2
2554
 
  protocols. (Robert Collins)
2555
 
 
2556
 
* The index code now has some specialized routines to extract the full
2557
 
  ancestry of a key in a more efficient manner.
2558
 
  ``CombinedGraphIndex.find_ancestry()``. (Time to get ancestry for
2559
 
  bzr.dev drops from 1.5s down to 300ms. For OOo from 33s => 10.5s) (John
2560
 
  Arbash Meinel)
2561
 
 
2562
 
Testing
2563
 
*******
2564
 
 
2565
 
* Install the test ssl certificate and key so that installed bzr
2566
 
  can run the https tests. (Denys Duchier, #392401)
2567
 
  
2568
 
 
2569
 
bzr 1.18rc1
2570
 
###########
2571
 
 
2572
 
:Codename: little traveller
2573
 
:1.18:    2009-08-20
2574
 
:1.18rc1: 2009-08-10
2575
 
 
2576
 
This release of Bazaar marches on towards the 2.0 release in which the 2a
2577
 
'brisbane-core' format becomes generally recommended.  Most of the work in
2578
 
this release now focusses on bug fixes and stabilization, covering both 2a
2579
 
and previous formats.  There is a new text-mode interactive merge feature,
2580
 
a new guide to migration to 2a format in the user documentation, and
2581
 
pushing branches to a smart server is now much faster.  
2582
 
 
2583
 
The Bazaar team decided that 2.0 will be a long-term supported release,
2584
 
with bugfix-only releases based on it continuing for at least six months
2585
 
or until the following stable release.
2586
 
 
2587
 
There are no changes from 1.18rc1 to 1.18.
2588
 
 
2589
 
New Features
2590
 
************
2591
 
 
2592
 
* ``bzr merge --interactive`` applies a user-selected portion of the
2593
 
  merge.  The UI is similar to ``shelve``.  (Aaron Bentley)
2594
 
 
2595
 
* ``bzr reconfigure`` now takes options ``--stacked-on URL`` and
2596
 
  ``--unstacked`` to change stacking of a branch.
2597
 
  (Martin Pool, #391411)
2598
 
 
2599
 
Bug Fixes
2600
 
*********
2601
 
 
2602
 
* Annotating on a stacked branch will now succeed in simple scenarios.
2603
 
  There are still some complex scenarios where it will fail (bug #399884)
2604
 
  (John Arbash Meinel, #393366)
2605
 
 
2606
 
* A progress bar is no longer left dangling when ``bzr selftest``
2607
 
  completes, and the progress bar updates with zero latency so the
2608
 
  displayed test name is always the one that's actually running.
2609
 
  (Martin Pool, #123688)
2610
 
 
2611
 
* Authenticating against an ssh server now uses ``auth_none`` to determine
2612
 
  if password authentication is even supported. This fixes a bug where
2613
 
  users would be prompted for a launchpad password, even though launchpad
2614
 
  only supports publickey authentication. (John Arbash Meinel, #375867)
2615
 
 
2616
 
* BranchBuilder now accepts timezone to avoid test failures in countries far
2617
 
  from GMT. (Vincent Ladeuil, #397716)
2618
 
 
2619
 
* ``bzr commit`` no longer saves the unversioning of missing files until
2620
 
  the commit has completed on the branch. This means that aborting a
2621
 
  commit that found a missing file will leave the tree unedited.
2622
 
  (Robert Collins, #282402)
2623
 
 
2624
 
* ``bzr mv`` no longer takes out branch locks, which allows it to work
2625
 
  when the branch is readonly. (Robert Collins, #216541)
2626
 
 
2627
 
* ``bzr revert .`` no longer generates an InconsistentDelta error when
2628
 
  there are missing subtrees. (Robert Collins, #367632)
2629
 
 
2630
 
* ``bzr send`` now generates valid bundles with ``--2a`` formats. However,
2631
 
  do to internal changes necessary to support this, older clients will
2632
 
  fail when trying to insert them. For newer clients, the bundle can be
2633
 
  used to apply the changes to any rich-root compatible format.
2634
 
  (John Arbash Meinel, #393349)
2635
 
 
2636
 
* Cope with FTP servers that don't support restart/append by falling back
2637
 
  to reading and then rewriting the whole file, such as TahoeLAFS.  (This
2638
 
  fallback may be slow for some access patterns.)  (Nils Durner, #294709)
2639
 
 
2640
 
* Encode the paths in ``mbcs`` encoding on Windows when spawning an
2641
 
  external diff client. This at least allows supporting filenames that are
2642
 
  not ascii, but are present in the current locale. Ideally we would be
2643
 
  able to pass the Unicode path, but that would be client dependent.
2644
 
  (John Arbash Meinel, #382709)
2645
 
 
2646
 
* Fix a compile bug on Solaris having to do with const and
2647
 
  pointer-to-pointers. (John Arbash Meinel, #408441)
2648
 
 
2649
 
* Fixed a NameError that occurs when merging or pulling from a URL that
2650
 
  causes a redirection loop when bzr tries to read a URL as a bundle.
2651
 
  (Andrew Bennetts, #400847)
2652
 
 
2653
 
* Fix ``AttributeError: 'TestUIFactory' object has no attribute 'tick'``
2654
 
  running send and similar commands on 2a formats.
2655
 
  (Martin Pool, #408201)
2656
 
  
2657
 
* Fix crash in some invocations of ``bzr status`` in format 2a.
2658
 
  (Martin Pool, #403523)
2659
 
 
2660
 
* Fixed export to existing directory: if directory is empty then export 
2661
 
  will succeed, otherwise it fails with error.
2662
 
  (Alexander Belchenko, #406174)
2663
 
 
2664
 
* Fixed spurious "Source branch does not support stacking" warning when
2665
 
  pushing. (Andrew Bennetts, #388908)
2666
 
 
2667
 
* Fixed spurious transport activity indicator appearing while tests are
2668
 
  running.  (Martin Pool, #343532)
2669
 
 
2670
 
* Merge now correctly handles empty right-hand revision specs.
2671
 
  (Aaron Bentley, #333961)
2672
 
 
2673
 
* Renames to lexographically lower basenames in trees that have never been
2674
 
  committed to will no longer corrupt the dirstate. This was caused by an
2675
 
  bug in the dirstate update_minimal method. (Robert Collins, #395556)
2676
 
 
2677
 
* Requests for unknown methods no longer cause the smart server to log
2678
 
  lots of backtraces about ``UnknownSmartMethod``, ``do_chunk`` or
2679
 
  ``do_end``.  (Andrew Bennetts, #338561)
2680
 
 
2681
 
* Shelve will not shelve the initial add of the tree root.  (Aaron Bentley)
2682
 
 
2683
 
* Streaming from bzr servers where there is a chain of stacked branches
2684
 
  (A stacked on B stacked on C) will now work. (Robert Collins, #406597)
2685
 
 
2686
 
* The environment variable ``BZR_PROGRESS_BAR`` set to either ``text`` or ``none``
2687
 
  always forces progress bars either on or off respectively.  Otherwise,
2688
 
  they're turned on if ``TERM`` is not ``dumb`` and stderr is a terminal.
2689
 
  bzr always uses the 'text' user interface when run as a command, so
2690
 
  ``BZR_USE_TEXT_UI`` is no longer needed.
2691
 
  (Martin Pool, #339385, #387717)
2692
 
 
2693
 
* The optional ``_knit_load_data_pyx`` C extension was never being
2694
 
  imported.  This caused significant slowdowns when reading data from
2695
 
  repositories.  (Andrew Bennetts, #405653)
2696
 
  
2697
 
* The ``--hardlink`` option to ``branch`` and ``checkout`` is not
2698
 
  supported at the moment on workingtree formats that can do content
2699
 
  filtering.  (See <https://bugs.edge.launchpad.net/bzr/+bug/408193>.)
2700
 
  bzr now says so, rather than just ignoring the option.  (Martin Pool)
2701
 
 
2702
 
* There was a bug in ``osutils.relpath`` that was only triggered on
2703
 
  Windows. Essentially if you were at the root of a drive, and did
2704
 
  something to a branch/repo on another drive, we would go into an
2705
 
  infinite loop while trying to find a 'relative path'.
2706
 
  (John Arbash Meinel, #394227)
2707
 
 
2708
 
* ``WorkingTree4.unversion`` will no longer fail to unversion ids which
2709
 
  were present in a parent tree but renamed in the working tree.
2710
 
  (Robert Collins, #187207)
2711
 
 
2712
 
Improvements
2713
 
************
2714
 
 
2715
 
* Can now rename/move files even if they have been removed from the inventory.
2716
 
  (Marius Kruger)
2717
 
 
2718
 
* Pushing branches with tags via ``bzr://`` and ``bzr+ssh://`` is much
2719
 
  faster, using a new ``Branch.set_tags_bytes`` smart server verb rather
2720
 
  than VFS methods.  For example, pushes of small branches with tags take
2721
 
  11 rather than 18 smart server requests.  (Andrew Bennetts, #398608)
2722
 
 
2723
 
* Sending Ctrl-Break on Windows will now drop you into the debugger, in
2724
 
  the same way that sending Ctrl-\\ does on other platforms.
2725
 
  (John Arbash Meinel)
2726
 
 
2727
 
Documentation
2728
 
*************
2729
 
 
2730
 
* Added Bazaar 2.0 Upgrade Guide. (Ian Clatworthy)
2731
 
 
2732
 
API Changes
2733
 
***********
2734
 
 
2735
 
* ``CLIUIFactory`` is deprecated; use ``TextUIFactory`` instead if you
2736
 
  need to subclass or create a specific class, or better yet the existing
2737
 
  ``make_ui_for_terminal``.  ``SilentUIFactory`` is clarified to do no
2738
 
  user interaction at all, rather than trying to read from stdin but not
2739
 
  writing any output, which would be strange if reading prompts or
2740
 
  passwords.  (Martin Pool)
2741
 
 
2742
 
* New TransformPreview.commit() allows committing without a working tree.
2743
 
  (Aaron Bentley)
2744
 
 
2745
 
* ``pb`` parameter to ``TextTestResult`` is deprecated and ignored.
2746
 
  (Martin Pool)
2747
 
 
2748
 
* ProgressTasks now prefer to talk direct to their ProgressView not to the
2749
 
  UIFactory. 
2750
 
  (Martin Pool)
2751
 
 
2752
 
* ``WorkingTree._check`` now requires a references dict with keys matching
2753
 
  those returned by ``WorkingTree._get_check_refs``. (Robert Collins)
2754
 
 
2755
 
Internals
2756
 
*********
2757
 
 
2758
 
* ``CHKInventory.path2id`` uses the parent_id to basename hash to avoid
2759
 
  reading the entries along the path, reducing work to lookup ids from
2760
 
  paths. (Robert Collins)
2761
 
 
2762
 
* ``CHKMap.apply_delta`` now raises ``InconsistentDelta`` if a delta adds
2763
 
  as new a key which was already mapped. (Robert Collins)
2764
 
 
2765
 
* Inventory delta application catches more cases of corruption and can
2766
 
  prevent corrupt deltas from affecting consistency of data structures on
2767
 
  disk. (Robert Collins)
2768
 
 
2769
 
* --subunit support now adds timestamps if the subunit version supports
2770
 
  it. (Robert Collins)
2771
 
 
2772
 
* The Windows all-in-one installer now bundles the PyQt image format
2773
 
  plugins, which allows previewing more images as part of 'qdiff'.
2774
 
  (Alexander Belchenko)
2775
 
 
2776
 
 
2777
 
Testing
2778
 
*******
2779
 
 
2780
 
* Merge directive cherrypick tests must use the same root id.
2781
 
  (Martin Pool, #409684)
2782
 
 
2783
 
* Spurious failure in ``check`` tests on rich-root formats fixed.
2784
 
  (Martin Pool, #408199)
2785
 
 
2786
 
* The ``bzrlib.tests.TextTestRunner`` will no longer call
2787
 
  ``countTestsCases`` on the test being run. Progress information is
2788
 
  instead handled by having the test passed in call ``result.progress``
2789
 
  before running its contents. This improves the behaviour when using
2790
 
  ``TextTestRunner`` with test suites that don't support
2791
 
  ``countTestsCases``. (Robert Collins)
2792
 
 
2793
 
 
2794
 
bzr 1.17.1 (unreleased)
2795
 
#######################
2796
 
 
2797
 
Bug Fixes
2798
 
*********
2799
 
 
2800
 
* The optional ``_knit_load_data_pyx`` C extension was never being
2801
 
  imported.  This caused significant slowdowns when reading data from
2802
 
  knit format repositories.  (Andrew Bennetts, #405653)
2803
 
  
2804
 
 
2805
 
bzr 1.17
2806
 
########
2807
 
:Codename: so-late-its-brunch
2808
 
:1.17rc1: 2009-07-13
2809
 
:1.17: 2009-07-20
2810
 
 
2811
 
 
2812
 
Bazaar continues to blaze a straight and shining path to the 2.0 release and
2813
 
the elevation of the ``2a`` beta format to the full glory of "supported and
2814
 
stable".
2815
 
 
2816
 
Highlights in this release include greatly reduced memory consumption during
2817
 
commits, faster ``ls``, faster ``annotate``, faster network operations if
2818
 
you're specifying a revision number and the final destruction of those
2819
 
annoying progress bar artifacts.
2820
 
 
2821
 
 
2822
 
Changes from 1.17rc1 to 1.17final
2823
 
*********************************
2824
 
 
2825
 
* Change an extension to call the python ``frozenset()`` rather than the C
2826
 
  api ``PyFrozenSet_New``. It turns out that python2.4 did not expose the
2827
 
  C api. (John Arbash Meinel, #399366)
2828
 
 
2829
 
* Fixes for the Makefile and the rename of ``generate_docs.py`` to
2830
 
  ``tools/generate_docs.py`` to allow everything to be built on Windows.
2831
 
  (John Arbash Meinel, #399356)
2832
 
 
2833
 
* ``bzr serve`` once again applies a ``ChrootServer`` to the given
2834
 
  directory before serving it. (Andrew Bennetts, #400535)
2835
 
 
 
9
In Development
 
10
##############
2836
11
 
2837
12
Compatibility Breaks
2838
13
********************
2848
23
 
2849
24
* ``bzr push`` now aborts if uncommitted changes (including pending merges)
2850
25
  are present in the working tree (if one is present) and no revision is
2851
 
  specified. The configuration option ``push_strict`` can be used to set the
 
26
  speified. The configuration option ``push_strict`` can be used to set the
2852
27
  default for this behavior.  (Vincent Ladeuil, #284038, #322808, #65286)
2853
28
 
2854
29
* ``bzr revno`` and ``bzr revision-info`` now have a ``--tree`` option to
2861
36
  behavior.
2862
37
  (Vincent Ladeuil, #206577)
2863
38
 
2864
 
* ``bzr switch --create-branch/-b`` can now be used to create and switch
2865
 
  to a new branch. Supplying a name without a ``/`` will create the branch
2866
 
  relative to the existing branch. (similar to how ``bzr switch name``
2867
 
  works when the branch already exists.) (John Arbash Meinel)
2868
 
 
2869
39
 
2870
40
Bug Fixes
2871
41
*********
2878
48
  diverged-branches`` when a push fails because the branches have
2879
49
  diverged.  (Neil Martinsen-Burrell, #269477)
2880
50
 
2881
 
* Annotate would sometimes 'latch on' to trivial lines, causing important
2882
 
  lines to be incorrectly annotated. (John Arbash Meinel, #387952)
2883
 
 
2884
51
* Automatic format upgrades triggered by default stacking policies on a
2885
52
  1.16rc1 (or later) smart server work again.
2886
53
  (Andrew Bennetts, #388675)
2908
75
  of a remote repository.
2909
76
  (Jelmer Vernooij, #332194)
2910
77
 
2911
 
* Fix bug in decoding v3 smart server messages when receiving multiple
2912
 
  lots of excess bytes after an end-of-message.
2913
 
  (Andrew Bennetts)
2914
 
 
2915
78
* Force deletion of readonly files during merge, update and other tree
2916
79
  transforms.
2917
80
  (Craig Hewetson, Martin Pool, #218206)
2918
81
 
2919
 
* Force socket shutdown in threaded http test servers to avoid client hangs
2920
 
  (pycurl).  (Vincent Ladeuil, #383920).
2921
 
 
2922
 
* ``LRUCache`` will maintain the linked list pointers even if a nodes
2923
 
  cleanup function raises an exception. (John Arbash Meinel, #396838)
 
82
* The ``log+`` decorator, useful in debugging or profiling, could cause
 
83
  "AttributeError: 'list' object has no attribute 'next'".  This is now
 
84
  fixed.  The log decorator no longer shows the elapsed time or transfer
 
85
  rate because they're available in the log prefixes and the transport
 
86
  activity display respectively.
 
87
  (Martin Pool, #340347)
2924
88
 
2925
89
* Progress bars are now suppressed again when the environment variable
2926
90
  ``BZR_PROGRESS_BAR`` is set to ``none``.
2943
107
  removing the stacking location inside ``.bzr/branch``.
2944
108
  (Robert Collins, #376243)
2945
109
 
2946
 
* The ``log+`` decorator, useful in debugging or profiling, could cause
2947
 
  "AttributeError: 'list' object has no attribute 'next'".  This is now
2948
 
  fixed.  The log decorator no longer shows the elapsed time or transfer
2949
 
  rate because they're available in the log prefixes and the transport
2950
 
  activity display respectively.
2951
 
  (Martin Pool, #340347)
2952
 
 
2953
110
* Unshelve works correctly when multiple zero-length files are present on
2954
111
  the shelf. (Aaron Bentley, #363444)
2955
112
 
2963
120
Internals
2964
121
*********
2965
122
 
2966
 
* ``bzrlib.user_encoding`` is now officially deprecated. It is not
2967
 
  possible to write a deprecation wrapper, but the variable will be
2968
 
  removed in the near future. Use ``bzrlib.osutils.get_user_encoding()``
2969
 
  instead. (Alexander Belchenko)
2970
 
 
2971
123
* Command lookup has had hooks added. ``bzrlib.Command.hooks`` has
2972
124
  three new hook points: ``get_command``, ``get_missing_command`` and
2973
125
  ``list_commands``, which allow just-in-time command name provision
3004
156
Improvements
3005
157
************
3006
158
 
3007
 
* ``bzr annotate`` can now be significantly faster. The time for
3008
 
  ``bzr annotate NEWS`` is down to 7s from 22s in 1.16. Files with long
3009
 
  histories and lots of 'duplicate insertions' will be improved more than
3010
 
  others. (John Arbash Meinel, Vincent Ladeuil)
3011
 
 
3012
 
* ``bzr ls`` is now faster. On OpenOffice.org, the time drops from 2.4
 
159
``bzr ls`` is now faster. On OpenOffice.org, the time drops from 2.4
3013
160
  to 1.1 seconds. The improvement for ``bzr ls -r-1`` is more
3014
161
  substantial dropping from 54.3 to 1.1 seconds. (Ian Clatworthy)
3015
162
 
3052
199
  this class and the UI.  (Martin Pool)
3053
200
 
3054
201
 
3055
 
bzr 1.16.1
3056
 
##########
3057
 
 
3058
 
:Released: 2009-06-26
 
202
bzr 1.16.1 2009-06-26
 
203
#####################
3059
204
 
3060
205
End user testing of the 2a format revealed two serious bugs. The first,
3061
206
#365615, caused bzr to raise AbsentContentFactory errors when autopacking.
3110
255
  (Robert Collins, #376748)
3111
256
 
3112
257
 
3113
 
bzr 1.16
3114
 
########
 
258
bzr 1.16 "It's yesterday in California" 2009-06-18
 
259
##################################################
3115
260
:Codename: yesterday-in-california
3116
261
:1.16rc1: 2009-06-11
3117
262
:1.16: 2009-06-18
3150
295
************
3151
296
 
3152
297
* A new repository format ``2a`` has been added.  This is a beta release
3153
 
  of the brisbane-core (aka group-compress) project.  This format now
 
298
  of the the brisbane-core (aka group-compress) project.  This format now
3154
299
  suitable for wider testing by advanced users willing to deal with some
3155
300
  bugs.  We would appreciate test reports, either positive or negative.
3156
301
  Format 2a is substantially smaller and faster for many operations on
3302
447
Testing
3303
448
*******
3304
449
 
3305
 
* ``make check`` no longer repeats the test run in ``LANG=C``.
3306
 
  (Martin Pool, #386180)
3307
 
 
3308
450
* The number of cores is now correctly detected on OSX. (John Szakmeister)
3309
451
 
3310
452
* The number of cores is also detected on Solaris and win32. (Vincent Ladeuil)
3501
643
  cause mismatched physical locks to cause test errors rather than just
3502
644
  reporting to the screen. (Robert Collins)
3503
645
 
3504
 
* -Dprogress will cause pdb to start up if a progress view jumps
3505
 
  backwards. (Robert Collins)
3506
 
 
3507
646
* Fallback ``CredentialStore`` instances registered with ``fallback=True``
3508
647
  are now be able to provide credentials if obtaining credentials 
3509
648
  via ~/.bazaar/authentication.conf fails. (Jelmer Vernooij, 
3533
672
  (Vincent Ladeuil, Robert Collins)
3534
673
 
3535
674
bzr 1.14
3536
 
########
 
675
###########
3537
676
:Codename: brisbane-core
3538
677
:1.14rc1: 2009-04-06
3539
678
:1.14rc2: 2009-04-19
3879
1018
 
3880
1019
* Added ``bzrlib.inventory_delta`` module.  This will be used for
3881
1020
  serializing and deserializing inventory deltas for more efficient
3882
 
  streaming on the network.  (Robert Collins, Andrew Bennetts)
 
1021
  streaming on the the network.  (Robert Collins, Andrew Bennetts)
3883
1022
 
3884
1023
* ``Branch._get_config`` has been added, which splits out access to the
3885
1024
  specific config file from the branch. This is used to let RemoteBranch
3961
1100
  can have a large effect on ``bzr checkout`` times. (John Arbash Meinel)
3962
1101
 
3963
1102
* selftest now supports a --parallel option, with values of 'fork' or
3964
 
  'subprocess' to run the test suite in parallel. Currently only Linux
3965
 
  machines work, other platforms need patches submitted. (Robert Collins,
 
1103
  'subprocess' to run the test suite in parallel. Currently only linux
 
1104
  machine work, other platforms need patches submitted. (Robert Collins,
3966
1105
  Vincent Ladeuil)
3967
1106
 
3968
1107
* ``tests.run_suite`` has a new parameter ``suite_decorators``, a list of 
4074
1213
* Multiple authors for a commit can now be recorded by using the "--author"
4075
1214
  option multiple times. (James Westby, #185772)
4076
1215
 
4077
 
* New clean-tree command, from bzrtools.  (Aaron Bentley, Jelmer Vernooij)
 
1216
* New clean-tree command, from bzrtools.  (Aaron Bentley, Jelmer Vernoij)
4078
1217
 
4079
1218
* New command ``bzr launchpad-open`` opens a Launchpad web page for that
4080
1219
  branch in your web browser, as long as the branch is on Launchpad at all.
4588
1727
  (Vincent Ladeuil)
4589
1728
 
4590
1729
 
4591
 
bzr 1.11
4592
 
########
4593
 
 
4594
 
:Codename: "Eyes up!"
4595
 
:Released: 2009-01-19
 
1730
bzr 1.11 "Eyes up!" 2009-01-19
 
1731
##############################
4596
1732
 
4597
1733
This first monthly release of Bazaar for 2009 improves Bazaar's operation
4598
1734
in Windows, Mac OS X, and other situations where file names are matched
4618
1754
 
4619
1755
 
4620
1756
 
4621
 
bzr 1.11rc1
4622
 
###########
4623
 
 
4624
 
:Codename: "Eyes up!"
4625
 
:Released: 2009-01-09
 
1757
bzr 1.11rc1 "Eyes up!" 2009-01-09
 
1758
#################################
4626
1759
 
4627
1760
Changes
4628
1761
*******
4858
1991
 
4859
1992
 
4860
1993
 
4861
 
bzr 1.10
4862
 
########
4863
 
 
4864
 
:Released: 2008-12-05
 
1994
bzr 1.10 2008-12-05
 
1995
###################
4865
1996
 
4866
1997
Bazaar 1.10 has several performance improvements for copying revisions
4867
1998
(especially for small updates to large projects).  There has also been a
4886
2017
  topologically. (John Arbash Meinel, #304841)
4887
2018
 
4888
2019
 
4889
 
bzr 1.10rc1
4890
 
###########
4891
 
 
4892
 
:Released: 2008-11-28
 
2020
bzr 1.10rc1 2008-11-28
 
2021
######################
4893
2022
 
4894
2023
This release of Bazaar focuses on performance improvements when pushing
4895
2024
and pulling revisions, both locally and to remote networks.  The popular
5009
2138
* Doctests now only report the first failure.  (Martin Pool)
5010
2139
 
5011
2140
 
5012
 
bzr 1.9
5013
 
#######
5014
 
 
5015
 
:Released: 2008-11-07
 
2141
bzr 1.9 2008-11-07
 
2142
##################
5016
2143
 
5017
2144
This release of Bazaar adds a new repository format, ``1.9``, with smaller
5018
2145
and more efficient index files.  This format can be specified when
5034
2161
  (John Arbash Meinel, #293746)
5035
2162
 
5036
2163
 
5037
 
bzr 1.9rc1
5038
 
##########
5039
 
 
5040
 
:Released: 2008-10-31
 
2164
bzr 1.9rc1 2008-10-31
 
2165
#####################
5041
2166
 
5042
2167
New Features
5043
2168
************
5154
2279
  configuration of authetication credentials.
5155
2280
 
5156
2281
 
5157
 
bzr 1.8
5158
 
#######
5159
 
 
5160
 
:Released: 2008-10-16
 
2282
bzr 1.8 2008-10-16
 
2283
##################
5161
2284
 
5162
2285
Bazaar 1.8 includes several fixes that improve working tree performance,
5163
2286
display of revision logs, and merges.  The bzr testsuite now passes on OS
5178
2301
  that platform.  (Alexander Belchenko, Martin Pool, #277481)
5179
2302
 
5180
2303
 
5181
 
bzr 1.8rc1
5182
 
##########
5183
 
 
5184
 
:Released: 2008-10-07
 
2304
bzr 1.8rc1 2008-10-07
 
2305
#####################
5185
2306
 
5186
2307
Changes
5187
2308
*******
5379
2500
  (Vincent Ladeuil)
5380
2501
 
5381
2502
 
5382
 
bzr 1.7.1
5383
 
#########
5384
 
 
5385
 
:Released:  2008-10-01
 
2503
bzr 1.7.1 2008-10-01
 
2504
####################
5386
2505
 
5387
2506
No changes from 1.7.1rc1.
5388
2507
 
5389
2508
 
5390
 
bzr 1.7.1rc1
5391
 
############
5392
 
 
5393
 
:Released: 2008-09-24
 
2509
bzr 1.7.1rc1 2008-09-24
 
2510
#######################
5394
2511
 
5395
2512
This release just includes an update to how the merge algorithm handles
5396
2513
file paths when we encounter complex history.
5405
2522
  (John Arbash Meinel)
5406
2523
 
5407
2524
 
5408
 
bzr 1.7
5409
 
#######
5410
 
 
5411
 
:Released: 2008-09-23
 
2525
bzr 1.7 2008-09-23
 
2526
##################
5412
2527
 
5413
2528
This release includes many bug fixes and a few performance and feature
5414
2529
improvements.  ``bzr rm`` will now scan for missing files and remove them,
5425
2540
  packaging qbzr. (Mark Hammond)
5426
2541
 
5427
2542
 
5428
 
bzr 1.7rc2
5429
 
##########
5430
 
 
5431
 
:Released: 2008-09-17
 
2543
bzr 1.7rc2 2008-09-17
 
2544
#####################
5432
2545
 
5433
2546
A few bug fixes from 1.7rc1. The biggest change is a new
5434
2547
``RemoteBranch.get_stacked_on_url`` rpc. This allows clients that are
5452
2565
  (Andrew Bennetts)
5453
2566
 
5454
2567
 
5455
 
bzr 1.7rc1
5456
 
##########
5457
 
 
5458
 
:Released: 2008-09-09
 
2568
bzr 1.7rc1 2008-09-09
 
2569
#####################
5459
2570
 
5460
2571
This release candidate for bzr 1.7 has several bug fixes and a few
5461
2572
performance and feature improvements.  ``bzr rm`` will now scan for
5652
2763
  clients now use this mechanism.  (Neil Martinsen-Burrell)
5653
2764
 
5654
2765
 
5655
 
bzr 1.6.1
5656
 
#########
5657
 
 
5658
 
:Released: 2008-09-05
 
2766
bzr 1.6.1 2008-09-05
 
2767
####################
5659
2768
 
5660
2769
A couple regressions were found in the 1.6 release. There was a
5661
2770
performance issue when using ``bzr+ssh`` to branch large repositories,
5662
2771
and some problems with stacking and ``rich-root`` capable repositories.
5663
2772
 
5664
2773
 
5665
 
bzr 1.6.1rc2
5666
 
############
5667
 
 
5668
 
:Released: 2008-09-03
 
2774
bzr 1.6.1rc2 2008-09-03
 
2775
#######################
5669
2776
 
5670
2777
Bug Fixes
5671
2778
*********
5676
2783
  (John Arbash Meinel, #264321)
5677
2784
 
5678
2785
 
5679
 
bzr 1.6.1rc1
5680
 
############
5681
 
 
5682
 
:Released: 2008-08-29
 
2786
bzr 1.6.1rc1 2008-08-29
 
2787
#######################
5683
2788
 
5684
2789
This release fixes a few regressions found in the 1.6 client. Fetching
5685
2790
changes was using an O(N^2) buffering algorithm, so for large projects it
5719
2824
  (John Arbash Meinel, #262333)
5720
2825
 
5721
2826
 
5722
 
bzr 1.6
5723
 
#######
5724
 
 
5725
 
:Released: 2008-08-25
 
2827
bzr 1.6 2008-08-25
 
2828
##################
5726
2829
 
5727
2830
Finally, the long awaited bzr 1.6 has been released. This release includes
5728
2831
new features like Stacked Branches, improved weave merge, and an updated
5735
2838
TortoiseBzr in the standalone Windows installer.
5736
2839
 
5737
2840
 
5738
 
bzr 1.6rc5
5739
 
##########
5740
 
 
5741
 
:Released: 2008-08-19
 
2841
bzr 1.6rc5 2008-08-19
 
2842
#####################
5742
2843
 
5743
2844
Bug Fixes
5744
2845
*********
5750
2851
  (This change was reverted when merged to bzr.dev)
5751
2852
 
5752
2853
 
5753
 
bzr 1.6rc4
5754
 
##########
5755
 
 
5756
 
:Released: 2008-08-18
 
2854
bzr 1.6rc4 2008-08-18
 
2855
#####################
5757
2856
 
5758
2857
Bug Fixes
5759
2858
*********
5763
2862
  rather than preserving deltas.  (John Arbash Meinel, #256757)
5764
2863
 
5765
2864
 
5766
 
bzr 1.6rc3
5767
 
##########
5768
 
 
5769
 
:Released: 2008-08-14
 
2865
bzr 1.6rc3 2008-08-14
 
2866
#####################
5770
2867
 
5771
2868
Changes
5772
2869
*******
5799
2896
  development which is substantially faster. (Robert Collins)
5800
2897
 
5801
2898
 
5802
 
bzr 1.6rc2
5803
 
##########
5804
 
 
5805
 
:Released: 2008-08-13
 
2899
bzr 1.6rc2 2008-08-13
 
2900
#####################
5806
2901
 
5807
2902
This release candidate has a few minor bug fixes, and some regression
5808
2903
fixes for Windows.
5840
2935
  will get the same results.  (John Arbash Meinel, #232188)
5841
2936
 
5842
2937
 
5843
 
bzr 1.6rc1
5844
 
##########
5845
 
 
5846
 
:Released: 2008-08-06
 
2938
bzr 1.6rc1 2008-08-06
 
2939
#####################
5847
2940
 
5848
2941
This release candidate for bzr 1.6 solidifies the new branch stacking
5849
2942
feature.  Bazaar now recommends that users upgrade all knit repositories,
5979
3072
  (Ian Clatworthy)
5980
3073
 
5981
3074
 
5982
 
bzr 1.6beta3
5983
 
############
5984
 
 
5985
 
:Released: 2008-07-17
 
3075
bzr 1.6beta3 2008-07-17
 
3076
#######################
5986
3077
 
5987
3078
This release adds a new 'stacked branches' feature allowing branches to
5988
3079
share storage without being in the same repository or on the same machine.
6154
3245
  (Robert Collins)
6155
3246
 
6156
3247
 
6157
 
bzr 1.6beta2
6158
 
############
6159
 
 
6160
 
:Released: 2008-06-10
 
3248
bzr 1.6beta2 2008-06-10
 
3249
#######################
6161
3250
 
6162
3251
This release contains further progress towards our 1.6 goals of shallow
6163
3252
repositories, and contains a fix for some user-affecting bugs in the
6240
3329
* Knit record serialisation is now stricter on what it will accept, to
6241
3330
  guard against potential internal bugs, or broken input. (Robert Collins)
6242
3331
 
6243
 
bzr 1.6beta1
6244
 
############
 
3332
bzr 1.6beta1 2008-06-02
 
3333
#######################
6245
3334
 
6246
 
:Released: 2008-06-02
6247
3335
 
6248
3336
Commands that work on the revision history such as push, pull, missing,
6249
3337
uncommit and log are now substantially faster.  This release adds a
6461
3549
  (Martin Pool)
6462
3550
 
6463
3551
 
6464
 
bzr 1.5
6465
 
#######
6466
 
 
6467
 
:Released: 2008-05-16
 
3552
bzr 1.5 2008-05-16
 
3553
##################
6468
3554
 
6469
3555
This release of Bazaar includes several updates to the documentation, and fixes
6470
3556
to prepare for making rich root support the default format. Many bugs have been
6485
3571
  (Ian Clatworthy)
6486
3572
 
6487
3573
 
6488
 
bzr 1.5rc1
6489
 
##########
6490
 
 
6491
 
:Released: 2008-05-09
 
3574
bzr 1.5rc1 2008-05-09
 
3575
#####################
6492
3576
 
6493
3577
Changes
6494
3578
*******
6603
3687
  exception. (Andrew Bennetts)
6604
3688
 
6605
3689
* New ``--debugflag``/``-E`` option to ``bzr selftest`` for setting
6606
 
  options for debugging tests, these are complementary to the -D
 
3690
  options for debugging tests, these are complementary to the the -D
6607
3691
  options.  The ``-Dselftest_debug`` global option has been replaced by the
6608
3692
  ``-E=allow_debug`` option for selftest. (Andrew Bennetts)
6609
3693
 
6658
3742
  (Martin Pool)
6659
3743
 
6660
3744
 
6661
 
bzr 1.4 
6662
 
#######
6663
 
 
6664
 
:Released: 2008-04-28
 
3745
bzr 1.4 2008-04-28
 
3746
##################
6665
3747
 
6666
3748
This release of Bazaar includes handy improvements to the speed of log and
6667
3749
status, new options for several commands, improved documentation, and better
6680
3762
  (John Arbash Meinel, Andrew Bennetts, #214894)
6681
3763
 
6682
3764
 
6683
 
bzr 1.4rc2
6684
 
##########
6685
 
 
6686
 
:Released: 2008-04-21
 
3765
bzr 1.4rc2 2008-04-21
 
3766
#####################
6687
3767
 
6688
3768
Bug Fixes
6689
3769
*********
6706
3786
  (Robert Collins, John Arbash Meinel)
6707
3787
 
6708
3788
 
6709
 
bzr 1.4rc1
6710
 
##########
6711
 
 
6712
 
:Released: 2008-04-11
 
3789
bzr 1.4rc1 2008-04-11
 
3790
#####################
6713
3791
 
6714
3792
Changes
6715
3793
*******
6716
3794
 
6717
3795
* bzr main script cannot be imported (Benjamin Peterson)
6718
3796
 
6719
 
* On GNU/Linux bzr additionally looks for plugins in arch-independent site
 
3797
* On Linux bzr additionally looks for plugins in arch-independent site
6720
3798
  directory. (Toshio Kuratomi)
6721
3799
 
6722
3800
* The ``set_rh`` branch hook is now deprecated. Please migrate
6996
4074
  ``Graph.get_parent_map`` returns a dict of key:parents. (Robert Collins)
6997
4075
 
6998
4076
 
6999
 
bzr 1.3.1
7000
 
#########
7001
 
 
7002
 
:Released: 2008-04-09
 
4077
bzr 1.3.1 2008-04-09
 
4078
####################
7003
4079
 
7004
4080
No changes from 1.3.1rc1.
7005
4081
 
7006
4082
 
7007
 
bzr 1.3.1rc1
7008
 
############
7009
 
 
7010
 
:Released: 2008-04-04
 
4083
bzr 1.3.1rc1 2008-04-04
 
4084
#######################
7011
4085
 
7012
4086
Bug Fixes
7013
4087
*********
7018
4092
  (#208418, Andrew Bennetts, Martin Pool, Robert Collins)
7019
4093
 
7020
4094
 
7021
 
bzr 1.3
7022
 
#######
7023
 
 
7024
 
:Released: 2008-03-20
 
4095
bzr 1.3 2008-03-20
 
4096
##################
7025
4097
 
7026
4098
Bazaar has become part of the GNU project <http://www.gnu.org>
7027
4099
 
7037
4109
  (#202778, Martin Pool)
7038
4110
 
7039
4111
 
7040
 
bzr 1.3rc1
7041
 
##########
7042
 
 
7043
 
:Released: 2008-03-16
 
4112
bzr 1.3rc1 2008-03-16
 
4113
#####################
7044
4114
 
7045
4115
Notes When Upgrading
7046
4116
********************
7059
4129
 
7060
4130
* BZR_LOG environment variable controls location of .bzr.log trace file.
7061
4131
  User can suppress writing messages to .bzr.log by using '/dev/null'
7062
 
  filename (on Unix) or 'NUL' (on Windows). If BZR_LOG variable
 
4132
  filename (on Linux) or 'NUL' (on Windows). If BZR_LOG variable
7063
4133
  is not defined but BZR_HOME is defined then default location
7064
4134
  for .bzr.log trace file is ``$BZR_HOME/.bzr.log``.
7065
4135
  (Alexander Belchenko, #106117)
7226
4296
  format. (Robert Collins)
7227
4297
 
7228
4298
 
7229
 
bzr 1.2
7230
 
#######
7231
 
 
7232
 
:Released: 2008-02-15
 
4299
bzr 1.2 2008-02-15
 
4300
##################
7233
4301
 
7234
4302
Bug Fixes
7235
4303
*********
7237
4305
* Fix failing test in Launchpad plugin. (Martin Pool)
7238
4306
 
7239
4307
 
7240
 
bzr 1.2rc1
7241
 
##########
7242
 
 
7243
 
:Released: 2008-02-13
 
4308
bzr 1.2rc1 2008-02-13
 
4309
#####################
7244
4310
 
7245
4311
Notes When Upgrading
7246
4312
********************
7358
4424
  checkouts.  (Aaron Bentley, #182040)
7359
4425
 
7360
4426
* Stop polluting /tmp when running selftest.
7361
 
  (Vincent Ladeuil, #123363)
 
4427
  (Vincent Ladeuil, #123623)
7362
4428
 
7363
4429
* Switch from NFKC => NFC for normalization checks. NFC allows a few
7364
4430
  more characters which should be considered valid.
7441
4507
  revision names etc. (Robert Collins)
7442
4508
 
7443
4509
 
7444
 
bzr 1.1
7445
 
#######
7446
 
 
7447
 
:Released: 2008-01-15
 
4510
bzr 1.1 2008-01-15
 
4511
##################
7448
4512
 
7449
4513
(no changes from 1.1rc1)
7450
4514
 
7451
 
bzr 1.1rc1
7452
 
##########
7453
 
 
7454
 
:Released: 2008-01-05
 
4515
bzr 1.1rc1 2008-01-05
 
4516
#####################
7455
4517
 
7456
4518
Changes
7457
4519
*******
7661
4723
  replaced by the new helper methods added in this release. (Robert Collins)
7662
4724
 
7663
4725
 
7664
 
bzr 1.0
7665
 
#######
7666
 
 
7667
 
:Released: 2007-12-14
 
4726
bzr 1.0 2007-12-14
 
4727
##################
7668
4728
 
7669
4729
Documentation
7670
4730
*************
7681
4741
  (Ian Clatworthy)
7682
4742
 
7683
4743
 
7684
 
bzr 1.0rc3
7685
 
##########
7686
 
 
7687
 
:Released: 2007-12-11
 
4744
bzr 1.0rc3 2007-12-11
 
4745
#####################
7688
4746
 
7689
4747
Changes
7690
4748
*******
7725
4783
  (Vincent Ladeuil)
7726
4784
 
7727
4785
 
7728
 
bzr 1.0rc2
7729
 
##########
7730
 
 
7731
 
:Released: 2007-12-07
 
4786
bzr 1.0rc2 2007-12-07
 
4787
#####################
7732
4788
 
7733
4789
Improvements
7734
4790
************
7802
4858
  ``started`` methods. (Matt Nordhoff)
7803
4859
 
7804
4860
 
7805
 
bzr 1.0rc1
7806
 
##########
7807
 
 
7808
 
:Released: 2007-11-30
 
4861
bzr 1.0rc1 2007-11-30
 
4862
#####################
7809
4863
 
7810
4864
Notes When Upgrading
7811
4865
********************
8081
5135
* InventoryEntry.diff is now deprecated.  Please use diff.DiffTree instead.
8082
5136
 
8083
5137
 
8084
 
bzr 0.92
8085
 
########
8086
 
 
8087
 
:Released: 2007-11-05
 
5138
bzr 0.92 2007-11-05
 
5139
###################
8088
5140
 
8089
5141
Changes
8090
5142
*******
8092
5144
  * New uninstaller on Win32.  (Alexander Belchenko)
8093
5145
 
8094
5146
 
8095
 
bzr 0.92rc1
8096
 
###########
8097
 
 
8098
 
:Released: 2007-10-29
 
5147
bzr 0.92rc1 2007-10-29
 
5148
######################
8099
5149
 
8100
5150
Changes
8101
5151
*******
8414
5464
  raises a Python warning.  (Martin Pool)
8415
5465
 
8416
5466
 
8417
 
bzr 0.91
8418
 
########
8419
 
 
8420
 
:Released: 2007-09-26
 
5467
bzr 0.91 2007-09-26
 
5468
###################
8421
5469
 
8422
5470
Bug Fixes
8423
5471
*********
8438
5486
  (Andrew Bennetts)
8439
5487
 
8440
5488
 
8441
 
bzr 0.91rc2
8442
 
###########
8443
 
 
8444
 
:Released: 2007-09-11
 
5489
bzr 0.91rc2 2007-09-11
 
5490
######################
8445
5491
 
8446
5492
* Replaced incorrect tarball for previous release; a debug statement was left
8447
5493
  in bzrlib/remote.py.
8448
5494
 
8449
5495
 
8450
 
bzr 0.91rc1
8451
 
###########
8452
 
 
8453
 
:Released: 2007-09-11
 
5496
bzr 0.91rc1 2007-09-11
 
5497
######################
8454
5498
 
8455
5499
Changes
8456
5500
*******
8777
5821
  [] to revert all files is deprecated.  (Aaron Bentley)
8778
5822
 
8779
5823
 
8780
 
bzr 0.90
8781
 
########
8782
 
 
8783
 
:Released: 2007-08-28
 
5824
bzr 0.90 2007-08-28
 
5825
###################
8784
5826
 
8785
5827
Improvements
8786
5828
************
8803
5845
  and call ``create_repository`` on that.  (Martin Pool)
8804
5846
 
8805
5847
 
8806
 
bzr 0.90rc1
8807
 
###########
8808
 
 
8809
 
:Released: 2007-08-14
 
5848
bzr 0.90rc1 2007-08-14
 
5849
######################
8810
5850
 
8811
5851
Bugfixes
8812
5852
********
9078
6118
  parameter.  Varargs-style parameters are deprecated. (Aaron Bentley)
9079
6119
 
9080
6120
 
9081
 
bzr 0.18
9082
 
########
9083
 
 
9084
 
:Released:  2007-07-17
 
6121
bzr 0.18  2007-07-17
 
6122
####################
9085
6123
 
9086
6124
Bugfixes
9087
6125
********
9089
6127
* Fix 'bzr add' crash under Win32 (Kuno Meyer)
9090
6128
 
9091
6129
 
9092
 
bzr 0.18rc1
9093
 
###########
9094
 
 
9095
 
:Released:  2007-07-10
 
6130
bzr 0.18rc1  2007-07-10
 
6131
#######################
9096
6132
 
9097
6133
Bugfixes
9098
6134
********
9343
6379
  (Vincent Ladeuil, #110448)
9344
6380
 
9345
6381
 
9346
 
bzr 0.17
9347
 
########
9348
 
 
9349
 
:Released:  2007-06-18
 
6382
bzr 0.17  2007-06-18
 
6383
####################
9350
6384
 
9351
6385
Bugfixes
9352
6386
********
9358
6392
  (Aaron Bentley, Ian Clatworthy, #120930)
9359
6393
 
9360
6394
 
9361
 
bzr 0.17rc1
9362
 
###########
9363
 
 
9364
 
:Released:  2007-06-12
 
6395
bzr 0.17rc1  2007-06-12
 
6396
#######################
9365
6397
 
9366
6398
Notes When Upgrading
9367
6399
********************
9462
6494
  your repository. (Previously Branch6 only supported revisions in your
9463
6495
  mainline). (John Arbash Meinel, #115343)
9464
6496
 
9465
 
bzr 0.16
9466
 
########
9467
 
 
9468
 
:Released:  2007-05-07
 
6497
bzr 0.16  2007-05-07
 
6498
####################
9469
6499
 
9470
6500
Bugfixes
9471
6501
********
9495
6525
  diff`` and ``bzr status`` significantly improving the speed of
9496
6526
  both. (John Arbash Meinel)
9497
6527
 
9498
 
bzr 0.16rc2
9499
 
###########
9500
 
 
9501
 
:Released:  2007-04-30
 
6528
bzr 0.16rc2  2007-04-30
 
6529
#######################
9502
6530
 
9503
6531
Bugfixes
9504
6532
********
9521
6549
* ``WorkingTree4._iter_changes`` should not descend into unversioned
9522
6550
  directories. (John Arbash Meinel, #110399)
9523
6551
 
9524
 
bzr 0.16rc1
9525
 
###########
9526
 
 
9527
 
:Released:  2007-04-26
 
6552
bzr 0.16rc1  2007-04-26
 
6553
#######################
9528
6554
 
9529
6555
Notes When Upgrading
9530
6556
********************
9831
6857
  implementation of new auth schemes for both http and proxy.
9832
6858
  (Vincent Ladeuil)
9833
6859
 
9834
 
bzr 0.15
9835
 
########
9836
 
 
9837
 
:Released: 2007-04-01
 
6860
bzr 0.15 2007-04-01
 
6861
###################
9838
6862
 
9839
6863
Bugfixes
9840
6864
********
9846
6870
  checking out a branch that contains an old-format working tree.
9847
6871
  (Martin Pool)
9848
6872
 
9849
 
bzr 0.15rc3
9850
 
###########
9851
 
 
9852
 
:Released:  2007-03-26
 
6873
bzr 0.15rc3  2007-03-26
 
6874
#######################
9853
6875
 
9854
6876
Changes
9855
6877
*******
9924
6946
* Correctly handles mutiple permanent http redirections.
9925
6947
  (vila, #88780)
9926
6948
 
9927
 
bzr 0.15rc2
9928
 
###########
9929
 
 
9930
 
:Released:  2007-03-14
 
6949
bzr 0.15rc2  2007-03-14
 
6950
#######################
9931
6951
 
9932
6952
Notes When Upgrading
9933
6953
********************
9980
7000
  (Wouter van Heyst, #53483)
9981
7001
 
9982
7002
 
9983
 
bzr 0.15rc1
9984
 
###########
9985
 
 
9986
 
:Released:  2007-03-07
 
7003
bzr 0.15rc1  2007-03-07
 
7004
#######################
9987
7005
 
9988
7006
Surprises
9989
7007
*********
10213
7231
  before the rest of the suite.  (Martin Pool)
10214
7232
 
10215
7233
 
10216
 
bzr 0.14
10217
 
########
10218
 
 
10219
 
:Released:  2007-01-23
 
7234
bzr 0.14  2007-01-23
 
7235
####################
10220
7236
 
10221
7237
Improvements
10222
7238
************
10235
7251
  it is in is below a repository. (James Westby, #77306)
10236
7252
 
10237
7253
 
10238
 
bzr 0.14rc1
10239
 
###########
10240
 
 
10241
 
:Released:  2007-01-16
 
7254
bzr 0.14rc1  2007-01-16
 
7255
#######################
10242
7256
 
10243
7257
Improvements
10244
7258
************
10372
7386
  (Alexander Belchenko, #68124)
10373
7387
 
10374
7388
 
10375
 
bzr 0.13
10376
 
########
10377
 
 
10378
 
:Released:  2006-12-05
 
7389
bzr 0.13  2006-12-05
 
7390
####################
10379
7391
 
10380
7392
No changes from 0.13rc
10381
7393
 
10382
7394
 
10383
 
bzr 0.13rc1
10384
 
###########
10385
 
 
10386
 
:Released:  2006-11-27
 
7395
bzr 0.13rc1  2006-11-27
 
7396
#######################
10387
7397
 
10388
7398
Improvements
10389
7399
************
10508
7518
* TestingHTTPRequestHandler really handles the Range header
10509
7519
  (previously it was ignoring it and returning the whole file,).
10510
7520
 
10511
 
bzr 0.12
10512
 
########
10513
 
 
10514
 
:Released:  2006-10-30
 
7521
bzr 0.12  2006-10-30
 
7522
####################
10515
7523
 
10516
7524
Internals
10517
7525
*********
10520
7528
  and remove benchmarks that take longer than 10min to run.
10521
7529
  (John Arbash Meinel)
10522
7530
 
10523
 
bzr 0.12rc1
10524
 
###########
10525
 
 
10526
 
:Released:  2006-10-23
 
7531
bzr 0.12rc1  2006-10-23
 
7532
#######################
10527
7533
 
10528
7534
Improvements
10529
7535
************
10599
7605
* Avoid circular imports by creating a deprecated function for
10600
7606
  ``bzrlib.tree.RevisionTree``. Callers should have been using
10601
7607
  ``bzrlib.revisontree.RevisionTree`` anyway. (John Arbash Meinel,
10602
 
  #66349)
 
7608
  #63360, #66349)
10603
7609
 
10604
7610
* Don't use ``socket.MSG_WAITALL`` as it doesn't exist on all
10605
7611
  platforms. (Martin Pool, #66356)
10644
7650
  option to set the BzrDir, Repository and Branch formats of the
10645
7651
  created objects. (Robert Collins, John Arbash Meinel)
10646
7652
 
10647
 
bzr 0.11
10648
 
########
10649
 
 
10650
 
:Released:  2006-10-02
 
7653
bzr 0.11  2006-10-02
 
7654
####################
10651
7655
 
10652
7656
* Smart server transport test failures on windows fixed. (Lukáš Lalinský).
10653
7657
 
10654
 
bzr 0.11rc2
10655
 
###########
10656
 
 
10657
 
:Released:  2006-09-27
 
7658
bzr 0.11rc2  2006-09-27
 
7659
#######################
10658
7660
 
10659
7661
Bug Fixes
10660
7662
*********
10664
7666
* Commit performance regression fixed. (Aaron Bentley, Robert Collins, John
10665
7667
  Arbash Meinel).
10666
7668
 
10667
 
bzr 0.11rc1
10668
 
###########
10669
 
 
10670
 
:Released:  2006-09-25
 
7669
bzr 0.11rc1  2006-09-25
 
7670
#######################
10671
7671
 
10672
7672
Improvements
10673
7673
************
10860
7860
  allow upgrades to a richer interface than the VFS one provided by
10861
7861
  Transport. (Andrew Bennetts, Martin Pool)
10862
7862
 
10863
 
bzr 0.10
10864
 
########
10865
 
 
10866
 
:Released:  2006-08-29
 
7863
bzr 0.10  2006-08-29
 
7864
####################
10867
7865
 
10868
7866
Improvements
10869
7867
************
10940
7938
  need to be installed. This should help make the life of packagers
10941
7939
  easier. (John Arbash Meinel)
10942
7940
 
10943
 
bzr 0.9.0
10944
 
#########
10945
 
 
10946
 
:Released:  2006-08-11
 
7941
bzr 0.9.0  2006-08-11
 
7942
#####################
10947
7943
 
10948
7944
Surprises
10949
7945
*********
11210
8206
 
11211
8207
* "RevisionTree" is now in bzrlib/revisiontree.py. (Robert Collins)
11212
8208
 
11213
 
bzr 0.8.2
11214
 
#########
11215
 
 
11216
 
:Released:  2006-05-17
 
8209
bzr 0.8.2  2006-05-17
 
8210
#####################
11217
8211
 
11218
8212
Bug Fixes
11219
8213
*********
11220
8214
 
11221
8215
* setup.py failed to install launchpad plugin.  (Martin Pool)
11222
8216
 
11223
 
bzr 0.8.1
11224
 
#########
11225
 
 
11226
 
:Released:  2006-05-16
 
8217
bzr 0.8.1  2006-05-16
 
8218
#####################
11227
8219
 
11228
8220
Bug Fixes
11229
8221
*********
11276
8268
* Fix test case for bzr info in upgrading a standalone branch to metadir,
11277
8269
  uses bzrlib api now. (Olaf Conradi)
11278
8270
 
11279
 
bzr 0.8
11280
 
#######
11281
 
 
11282
 
:Released:  2006-05-08
 
8271
bzr 0.8  2006-05-08
 
8272
###################
11283
8273
 
11284
8274
Notes When Upgrading
11285
8275
********************
11540
8530
* ``run_bzr`` and ``run_bzr_captured`` now accept a 'stdin="foo"'
11541
8531
  parameter which will provide String("foo") to the command as its stdin.
11542
8532
 
11543
 
bzr 0.7
11544
 
#######
11545
 
 
11546
 
:Released: 2006-01-09
 
8533
bzr 0.7 2006-01-09
 
8534
##################
11547
8535
 
11548
8536
Changes
11549
8537
*******
11838
8826
* ``bzrlib.osutils.safe_unicode`` now exists to provide parameter coercion
11839
8827
  for functions that need unicode strings. (Robert Collins)
11840
8828
 
11841
 
bzr 0.6
11842
 
#######
11843
 
 
11844
 
:Released: 2005-10-28
 
8829
bzr 0.6 2005-10-28
 
8830
##################
11845
8831
 
11846
8832
Improvements
11847
8833
************
12056
9042
  [-1] in the revision-history. (Andres Salomon)
12057
9043
 
12058
9044
 
12059
 
bzr 0.1.1
12060
 
#########
12061
 
 
12062
 
:Released: 2005-10-12
 
9045
bzr 0.1.1 2005-10-12
 
9046
####################
12063
9047
 
12064
9048
Bug Fixes
12065
9049
*********
12076
9060
* Avoid some unnecessary http operations in branch and pull.
12077
9061
 
12078
9062
 
12079
 
bzr 0.1
12080
 
#######
12081
 
 
12082
 
:Released: 2005-10-11
 
9063
bzr 0.1 2005-10-11
 
9064
##################
12083
9065
 
12084
9066
Notes
12085
9067
*****
12208
9190
  of tests to run, e.g. ``bzr selftest test_weave``
12209
9191
 
12210
9192
 
12211
 
bzr 0.0.9
12212
 
#########
12213
 
 
12214
 
:Released: 2005-09-23
 
9193
bzr 0.0.9 2005-09-23
 
9194
####################
12215
9195
 
12216
9196
Bug Fixes
12217
9197
*********
12252
9232
  another (used by pull, merged, etc.)
12253
9233
 
12254
9234
 
12255
 
bzr 0.0.8
12256
 
#########
12257
 
 
12258
 
:Released: 2005-09-20
12259
 
 
 
9235
bzr 0.0.8 2005-09-20
 
9236
####################
12260
9237
 
12261
9238
Improvements
12262
9239
************
12306
9283
* Quieten warnings about locking; patch from Matt Lavin.
12307
9284
 
12308
9285
 
12309
 
bzr-0.0.7
12310
 
#########
12311
 
 
12312
 
:Released: 2005-09-02
 
9286
bzr-0.0.7 2005-09-02
 
9287
####################
12313
9288
 
12314
9289
New Features
12315
9290
************
12363
9338
 
12364
9339
 
12365
9340
 
12366
 
bzr-0.0.6
12367
 
#########
12368
 
 
12369
 
:Released: 2005-08-18
 
9341
bzr-0.0.6 2005-08-18
 
9342
####################
12370
9343
 
12371
9344
New Features
12372
9345
************
12451
9424
* Fix bugs in committing only selected files or within a subdirectory.
12452
9425
 
12453
9426
 
12454
 
bzr-0.0.5
12455
 
#########
12456
 
 
12457
 
:Released:  2005-06-15
 
9427
bzr-0.0.5  2005-06-15
 
9428
#####################
12458
9429
 
12459
9430
Changes
12460
9431
*******
12595
9566
  2.4 is now only recommended.
12596
9567
 
12597
9568
 
12598
 
bzr-0.0.4
12599
 
#########
12600
 
 
12601
 
:Released:  2005-04-22
 
9569
bzr-0.0.4  2005-04-22
 
9570
#####################
12602
9571
 
12603
9572
Enhancements
12604
9573
************
12666
9635
  from QuantumG.
12667
9636
 
12668
9637
 
12669
 
bzr-0.0.3
12670
 
#########
12671
 
 
12672
 
:Released:  2005-04-06
 
9638
bzr-0.0.3  2005-04-06
 
9639
#####################
12673
9640
 
12674
9641
Enhancements
12675
9642
************
12723
9690
* Win32 fixes from Steve Brown.
12724
9691
 
12725
9692
 
12726
 
bzr-0.0.2
12727
 
#########
12728
 
 
12729
 
:Codename: "black cube"
12730
 
:Released: 2005-03-31
 
9693
bzr-0.0.2  "black cube"  2005-03-31
 
9694
###################################
12731
9695
 
12732
9696
Enhancements
12733
9697
************
12755
9719
  the root directory only.
12756
9720
 
12757
9721
 
12758
 
bzr-0.0.1
12759
 
#########
12760
 
 
12761
 
:Released:  2005-03-26
 
9722
bzr-0.0.1  2005-03-26
 
9723
#####################
12762
9724
 
12763
9725
Enhancements
12764
9726
************
12787
9749
  supported).
12788
9750
 
12789
9751
 
12790
 
bzr-0.0.0.69
12791
 
############
12792
 
 
12793
 
:Released:  2005-03-22
 
9752
bzr-0.0.0.69  2005-03-22
 
9753
########################
12794
9754
 
12795
9755
Enhancements
12796
9756
************
12800
9760
* Storage of local versions: init, add, remove, rm, info, log,
12801
9761
  diff, status, etc.
12802
9762
 
12803
 
 
12804
9763
..
12805
 
   vim: tw=74 ft=rst ff=unix encoding=utf-8
 
9764
   vim: tw=74 ft=rst ff=unix