/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: Robert Collins
  • Date: 2010-06-21 03:23:45 UTC
  • mto: This revision was merged to the branch mainline in revision 5310.
  • Revision ID: robertc@robertcollins.net-20100621032345-7gnasqnirc299s4k
Store the library state as a global variable so that code with no other way of finding the BzrLibraryState can access it.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
####################
 
2
Bazaar Release Notes
 
3
####################
 
4
 
 
5
.. contents:: List of Releases
 
6
   :depth: 1
 
7
 
 
8
bzr 2.2b4
 
9
#########
 
10
 
 
11
:Codename: Monkey Magic
 
12
:2.2b4: NOT RELEASED YET
 
13
 
 
14
Compatibility Breaks
 
15
********************
 
16
 
 
17
* The ``bzr`` front end now requires a ``bzrlib.ui.ui_factory`` which is a
 
18
  context manager in the Python 2.5 and above sense. The bzrlib base class
 
19
  is such a manager, but third party UI factories which do not derive from
 
20
  ``bzrlib.ui.UIFactory`` will be incompatible with the command line front
 
21
  end. (Robert Collins, Aaron Bentley)
 
22
 
 
23
* URLs like ``foo:bar/baz`` are now always parsed as a URL with scheme "foo"
 
24
  and path "bar/baz", even if bzr does not recognize "foo" as a known URL
 
25
  scheme.  Previously these URLs would be treated as local paths.
 
26
  (Gordon Tyler)
 
27
 
 
28
 
 
29
New Features
 
30
************
 
31
 
 
32
* Support ``--directory`` option for a number of additional commands:
 
33
  conflicts, merge-directive, missing, resolve, shelve, switch,
 
34
  unshelve, whoami. (Martin von Gagern, #527878)
 
35
 
 
36
Bug Fixes
 
37
*********
 
38
 
 
39
* ``bzr init`` does not recursively scan directory contents anymore
 
40
  leading to faster init for directories with existing content.
 
41
  (Martin [gz], Parth Malwankar, #501307)
 
42
 
 
43
* ``bzr log --exclude-common-ancestry`` is now taken into account for
 
44
  linear ancetries. (Vincent Ladeuil, #575631)
 
45
 
 
46
* ``bzr pull`` now works when a lp: URL is explicitly defined as the parent
 
47
  or pull location in locations.conf or branch.conf.
 
48
  (Gordon Tyler, #534787)
 
49
 
 
50
* Ensure that wrong path specifications in ``BZR_PLUGINS_AT`` display
 
51
  proper error messages. (Vincent Ladeuil, #591215)
 
52
 
 
53
* Explicitly removing ``--profile-imports`` option from parsed command-line
 
54
  arguments on Windows, because bzr script does the same.
 
55
  (Alexander Belchenko, #588277)
 
56
 
 
57
* Fetching was slightly confused about the best code to use and was
 
58
  using a new code path for all branches, resulting in more lookups than
 
59
  necessary on old branches. (Robert Collins, #593515)
 
60
 
 
61
* Final fix for 'no help for command' issue. We now show a clean message
 
62
  when a command has no help, document how to set help more clearly, and
 
63
  test that all commands available to the test suite have help.
 
64
  (Robert Collins, #177500)
 
65
 
 
66
* Progress output is cleaned up when exiting.  (Aaron Bentley)
 
67
 
 
68
* Raise ValueError instead of a string exception.
 
69
  (John Arbash Meinel, #586926)
 
70
 
 
71
* Relative imports in plugins are now handled correctly when using
 
72
  BZR_PLUGINS_AT. (Vincent Ladeuil, #588959)
 
73
 
 
74
* ``ScriptRunner`` now strips off leading indentation from test scripts,
 
75
  which previously caused "SyntaxError: No command for line".
 
76
  (Martin Pool)
 
77
 
 
78
* Show unicode filenames in diff headers using terminal encoding. 
 
79
  (Alexander Belchenko, Bug #382699)
 
80
  NOTE for Windows users: If user need to save diff to file then user need to
 
81
  change encoding of the terminal to ANSI encoding with command ``chcp XXX``
 
82
  (e.g. ``chcp 1251`` for Russian Windows).
 
83
 
 
84
* URL displayed for use with ``break-lock`` when smart server sees lock
 
85
  contention are now valid. Default timeout for lock contention retry is
 
86
  now 30 seconds instead of 300 seconds.
 
87
  (Parth Malwankar, #250451)
 
88
 
 
89
* ``walkdirs`` now raises a useful message when the filenames are not using
 
90
  the filesystem encoding. (Eric Moritz, #488519)
 
91
 
 
92
Improvements
 
93
************
 
94
 
 
95
* Bazaar now reads data from SSH connections more efficiently on platforms
 
96
  that provide the ``socketpair`` function, and when using paramiko.
 
97
  (Andrew Bennetts, #590637)
 
98
 
 
99
* ``Branch.copy_content_into`` is now a convenience method dispatching to
 
100
  a ``InterBranch`` multi-method. This permits ``bzr-loom`` and other
 
101
  plugins to intercept this even when a ``RemoteBranch`` proxy is in use.
 
102
  (Robert Collins, #201613)
 
103
 
 
104
* ``Branch`` formats can now be loaded lazily by registering a
 
105
  ``MetaDirBranchFormatFactory`` rather than an actual format. This will
 
106
  cause the named format class to be loaded only when an enumeration of
 
107
  formats is needed or when the format string for the object is
 
108
  encountered. (Robert Collins, Jelmer Vernooij)
 
109
 
 
110
* Use lazy imports in ``bzrlib/merge.py`` so that plugins like ``news_merge``
 
111
  do not cause modules to be loaded unnecessarily just because the plugin
 
112
  registers a merge hook.  This improves ``bzr rocks`` time by about 25%
 
113
  in a default installation (with just the core plugins).
 
114
  (Andrew Bennetts)
 
115
 
 
116
Documentation
 
117
*************
 
118
 
 
119
* Added ``regression`` tag to our tags list. (Robert Collins)
 
120
 
 
121
* Improved our release checklist to have a bit less churn and leave things
 
122
  ready-to-go for the next action (including other people doing
 
123
  development). (Robert Collins)
 
124
 
 
125
* Remove obsolete discussion of PQM in documentation about how to
 
126
  contribute to Bazaar.  (Martin Pool, #588444)
 
127
 
 
128
API Changes
 
129
***********
 
130
 
 
131
* ``bzrlib.branch.InterBranch._get_branch_formats_to_test`` now returns
 
132
  an iterable of format pairs, rather than just a single pair, permitting
 
133
  InterBranch objects that work with multiple permutations to be
 
134
  comprehensively tested. (Robert Collins)
 
135
 
 
136
* ``bzrlib.knit.KnitSequenceMatcher``, which has been deprecated since
 
137
  2007, has been deleted.  Use ``PatienceSequenceMatcher`` from
 
138
  ``bzrlib.patiencediff`` instead. (Andrew Bennetts)
 
139
 
 
140
* ``bzrlib.tests.blackbox.ExternalBase`` is deprecated.  It provided only
 
141
  one method ``check_output``, and we now recommend checking command
 
142
  output using ``run_script``. (Martin Pool)
 
143
 
 
144
* ``bzrlib.transport.ssh.SSHVendor.connect_ssh`` now returns an object
 
145
  that implements the interface of ``bzrlib.transport.ssh.SSHConnection``.
 
146
  Third-party implementations of ``SSHVendor`` may need to be updated
 
147
  accordingly.  Similarly, any code using ``SSHConnection`` directly will
 
148
  need to be updated.  (Andrew Bennetts)
 
149
 
 
150
* The constructor of ``bzrilb.smart.medium.SmartSSHClientMedium`` has
 
151
  changed to take an ``SSHParams`` instance (replacing many individual
 
152
  values).  (Andrew Bennetts)
 
153
 
 
154
Internals
 
155
*********
 
156
 
 
157
* Improved ``bzrlib.urlutils`` to handle lp:foo/bar URLs. (Gordon Tyler)
 
158
 
 
159
Testing
 
160
*******
 
161
 
 
162
* ``test_import_tariff`` now respects BZR_PLUGINS_AT and BZR_PLUGINS_DISABLE.
 
163
  (Vincent Ladeuil, #595587)
 
164
 
 
165
bzr 2.2b3
 
166
#########
 
167
 
 
168
:2.2b3: 2010-05-28
 
169
 
 
170
This third beta in the 2.2 series brings with it all the goodness of 2.1.2
 
171
and 2.0.6 (though it preceeds 2.0.6 slightly). Of particular note for
 
172
users are compatibility fixes with bzr 1.5 and below servers, a hopeful
 
173
end to the EINTR errors caused by SIGWINCH interactions, a shiny new
 
174
bash completion script and bzr will no longer guess at identity details -
 
175
it was too unreliable in reality. Use ``bzr whoami`` on every new install.
 
176
For developers we have some API changes which may impact plugins as well
 
177
as a bunch of our regular improvements to internal clarity and test
 
178
support.
 
179
 
 
180
Compatibility Breaks
 
181
********************
 
182
 
 
183
* An API break has been made to the lock_write method of ``Branch`` and
 
184
  ``Repository`` objects; they now return ``branch.BranchWriteLockResult``
 
185
  and ``repository.RepositoryWriteLockResult`` objects. This makes
 
186
  changing the API in future easier and permits some cleaner calling code.
 
187
  The lock_read method has also changed from having no defined return
 
188
  value to returning ``LogicalLockResult`` objects.
 
189
  (Robert Collins)
 
190
 
 
191
* ``bzr`` does not try to guess the username as ``username@hostname``
 
192
  and requires it to be explictly set. This can be set using ``bzr
 
193
  whoami``. (Parth Malwankar, #549310)
 
194
 
 
195
* ``bzrlib.commands.Command`` will now raise ValueError during
 
196
  construction if there is no __doc__ set. (Note, this will be reverted in
 
197
  2.2b4) (Robert Collins)
 
198
 
 
199
* The source tree no longer contains a contrib/zsh/_bzr completion
 
200
  script. The new file contrib/zsh/README suggests alternatives.
 
201
  (Martin von Gagern, #560030)
 
202
 
 
203
New Features
 
204
************
 
205
 
 
206
* ``bzr commit`` accepts ``-p`` (for "patch") as a shorter name for
 
207
  ``--show-diff``.
 
208
  (Parth Malwankar, #571467)
 
209
  
 
210
* ``bzr ignore`` now supports a ``--default-rules`` option that displays
 
211
  the default ignore rules used by bzr. The flag ``--old-default-rules``
 
212
  is no longer supported by ``ignore``.
 
213
  (Parth Malwankar, #538703)
 
214
 
 
215
* ``bzr pack`` now supports a ``--clean-obsolete-packs`` option that
 
216
  can save disk space by deleting obsolete pack files created during the
 
217
  pack operation.
 
218
  (Parth Malwankar, #304320)
 
219
 
 
220
* New command line option ``--authors`` to ``bzr log`` allows users to
 
221
  select which of the apparent authors and committer should be
 
222
  included in the log. Defaults depend on format. (Martin von Gagern, #513322)
 
223
 
 
224
* Support ``--directory`` option for a number of additional commands:
 
225
  added, annotate, bind, cat, cat-revision, clean-tree, deleted,
 
226
  export, ignore, ignored, lookup-revision, ls, modified, nick,
 
227
  re-sign, unbind, unknowns.
 
228
  (Martin von Gagern, #527878)
 
229
 
 
230
* The bash_completion plugin from the bzr-bash-completion project has
 
231
  been merged into the tree. It provides a bash-completion command and
 
232
  replaces the outdated ``contrib/bash/bzr`` script with a version
 
233
  using the plugin. (Martin von Gagern, #560030)
 
234
 
 
235
* A new transport based on GIO (the gnome i/o library) provides access to
 
236
  samba shares, webdav using gio+smb and gio+dav. It is also possible to
 
237
  use gio for some already existing transport methods as gio+file,
 
238
  gio+sftp, gio+ftp. 
 
239
  (Mattias Eriksson)
 
240
 
 
241
Bug Fixes
 
242
*********
 
243
 
 
244
* Alias information shown by ``bzr help`` is now accurate. This
 
245
  was showing an internal object name for some plugin aliases.
 
246
  (Parth Malwankar, #584650)
 
247
 
 
248
* ``.bazaar``, ``.bazaar/bazaar.conf`` and ``.bzr.log`` inherit user and
 
249
  group ownership from the containing directory. This allow bzr to work
 
250
  better with sudo.
 
251
  (Martin <gzlist@googlemail.com>, Parth Malwankar, #376388)
 
252
 
 
253
* ``bzr clean-tree`` should not delete nested bzrdirs. Required for proper
 
254
  support of bzr-externals and scmproj plugins.
 
255
  (Alexander Belchenko, bug #572098)
 
256
 
 
257
* ``bzr ignore`` will no longer add duplicate patterns to .bzrignore.
 
258
  (Gordon Tyler, #572092)
 
259
 
 
260
* ``bzr log --exclude-common-ancestry -r X..Y`` displays the revisions that
 
261
  are part of Y ancestry but not part of X ancestry (aka the graph
 
262
  difference).
 
263
  (Vincent Ladeuil, #320119)
 
264
 
 
265
* ``bzr lp-propose`` which was switched to use production Launchpad API
 
266
  servers a few commits ago has been reverted to use edge: there is a
 
267
  problem with using production which isn't trivially obvious, so we've
 
268
  filed a bug to track it, and until thats fixed will be using edge.
 
269
  (Robert Collins, #583667)
 
270
 
 
271
* ``bzr rm`` should not refuse to delete directories which contained a file
 
272
  which has been moved elsewhere in the tree after the previous commit.
 
273
  (Marius Kruger, Daniel Watkins, #129880)
 
274
 
 
275
* ``bzr selftest --parallel=fork`` wait for its children avoiding zombies.
 
276
  (Vincent Ladeuil, #566670)
 
277
 
 
278
* ``bzr selftest`` should not use ui.note() since it's not unicode safe.
 
279
  (Vincent Ladeuil, #563997)
 
280
 
 
281
* CommitBuilder refuses to create revisions whose trees have no root.
 
282
  (Aaron Bentley)
 
283
 
 
284
* Do not register a SIGWINCH signal handler, instead just poll for the
 
285
  terminal width as needed.  This avoids the "Interrupted System Call"
 
286
  problems that occur on POSIX with all currently released versions of
 
287
  Python.
 
288
  (Andrew Bennetts, #583941)
 
289
 
 
290
* Don't mention --no-strict when we just issue the warning about unclean trees.
 
291
  (Vincent Ladeuil, #401599)
 
292
 
 
293
* Fixed ``AssertionError`` when accessing smart servers running Bazaar
 
294
  versions before 1.6.
 
295
  (Andrew Bennetts, #528041)
 
296
 
 
297
* Improved progress bar for fetch (2a format only). Bazaar now shows an
 
298
  estimate of the number of records to be fetched vs actually fetched.
 
299
  (Parth Malwankar, #374740, #538868)
 
300
 
 
301
* Reduce peak memory by one copy of compressed text.
 
302
  (John Arbash Meinel, #566940)
 
303
 
 
304
* ``RemoteBranch.lock_write`` raises ``ReadOnlyError`` if called during a
 
305
  read lock, rather than causing an ``AttributeError``.
 
306
  (Andrew Bennetts, Данило Шеган, #582781)
 
307
 
 
308
* Selftest was failing with testtools 0.9.3, which caused an
 
309
  AssertionError raised from a cleanUp to be reported as a Failure, not an
 
310
  Error, breaking on of our test hygiene tests.
 
311
  (Robert Collins, Vincent Ladeuil).
 
312
 
 
313
* ``set_user_option`` with a dict on remote branches no longer fails with
 
314
  an AttributeError.  There is a new ``Branch.set_config_option_dict`` RPC
 
315
  to support this efficiently.
 
316
  (Andrew Bennetts, #430382)
 
317
  
 
318
* Show the filenames when a file rename fails so that the error will be
 
319
  more comprehensible.
 
320
  (Martin Pool, #491763)
 
321
 
 
322
* Support Pyrex 0.9.9, required changing how we handle exceptions in Pyrex.
 
323
  (John Arbash Meinel, #582656)
 
324
 
 
325
* Unicode characters in aliases are now handled correctly and do not cause
 
326
  UnicodeEncodeError exception. (Parth Malwankar, #529930)
 
327
 
 
328
* Unicode commit messages that are the same as a file name no longer cause
 
329
  UnicodeEncodeError. ``ui.text.show_warning`` now handles unicode
 
330
  messages.
 
331
  (Parth Malwankar, #563646)
 
332
 
 
333
* Using bzr with `lp:` urls behind an http proxy should work.
 
334
  (Robert Collins, #558343)
 
335
 
 
336
* When passing a file to ``UTF8DirReader`` make sure to close the current
 
337
  directory file handle after the chdir fails. Otherwise when passing many
 
338
  filenames into a command line ``bzr status`` we would leak descriptors.
 
339
  (John Arbash Meinel, #583486)
 
340
 
 
341
Improvements
 
342
************
 
343
 
 
344
* ``append_revisions_only`` will now be interpreted as a boolean and a
 
345
  warning emitted if illegal values are used. Note that for projects
 
346
  that needs to maintain compatibility with previsous bzr versions,
 
347
  only 'True' and 'False' strings must be used (previous versions of
 
348
  bzr will interpret all strings differing from 'True'
 
349
  (case-sensitive) as false.
 
350
  (Brian de Alwis, Vincent Ladeuil)
 
351
 
 
352
* ``bzr ls`` now supports short options for existing long options.
 
353
  ``-k/--kind``, ``-i/--ignored``, ``-u/--unknown`` and ``-0/--null``.
 
354
  (Parth Malwankar, #181124)
 
355
 
 
356
* ``Config.get_user_option_as_bool`` will now warn if a value cannot
 
357
  be interpreted as a boolean.
 
358
  (Vincent Ladeuil)
 
359
 
 
360
* The all-in-one Windows installer will now be built with docstrings stripped
 
361
  from the library zip, reducing the size and slightly improving cold startup
 
362
  time. Bundled plugins are unchanged for the moment, but if adding other new
 
363
  plugins to an all-in-one installation, ensure they are compiled and
 
364
  installed with -O1 or help may not work. (Martin [gz])
 
365
 
 
366
Documentation
 
367
*************
 
368
 
 
369
API Changes
 
370
***********
 
371
 
 
372
* Added ``bzrlib.merge.PerFileMerger``, a more convenient way to write
 
373
  some kinds of ``merge_file_content`` hook functions.
 
374
  (Andrew Bennetts)
 
375
  
 
376
* `BzrDir`, `Branch`, `Repository` and `WorkingTree` now all support `user_url`,
 
377
  `user_transport`, `control_url` and `control_transport` members pointing
 
378
  respectively to the directory containing the ``.bzr`` control directory, 
 
379
  and to the directory within ``.bzr`` used for the particular component.
 
380
  All of them inherit from `ControlComponent` which provides default
 
381
  implementations.
 
382
  (Martin Pool)
 
383
 
 
384
* Lock methods on ``Tree``, ``Branch`` and ``Repository`` are now
 
385
  expected to return an object which can be used to unlock them. This reduces
 
386
  duplicate code when using cleanups. The previous 'tokens's returned by
 
387
  ``Branch.lock_write`` and ``Repository.lock_write`` are now attributes
 
388
  on the result of the lock_write. ``repository.RepositoryWriteLockResult``
 
389
  and ``branch.BranchWriteLockResult`` document this. (Robert Collins)
 
390
 
 
391
* ``Repository.refresh_data`` may now be called in a write group on
 
392
  pack-based repositories.  Older repositories will still raise an error
 
393
  in this case.  Subclasses of ``Repository`` can still override
 
394
  ``Repository._refresh_data``, but are now responsible for raising
 
395
  ``bzrlib.repository.IsInWriteGroupError`` if they do not support
 
396
  ``refresh_data`` during a write group.
 
397
  (Andrew Bennetts, #574236)
 
398
 
 
399
Internals
 
400
*********
 
401
 
 
402
* ``chk_map._bytes_to_text_key`` is now an optimized function to extract
 
403
  the (file-id, revision-id) key from a CHKInventory entry. This can
 
404
  potentially shave 5-10% time off during a large fetch. Related to bug
 
405
  #562666. (John Arbash Meinel)
 
406
 
 
407
* ``log._get_info_for_log_files`` now takes an add_cleanup callable.
 
408
  (Robert Collins)
 
409
 
 
410
* ``_remember_remote_is_before`` no longer raises AssertionError when
 
411
  suboptimal network behaviour is noticed; instead it just mutters to the
 
412
  log file (and warns the user if they have set the ``hpss`` debug flag).
 
413
  This was causing unnecessary aborts for performance bugs that are minor
 
414
  at worst.
 
415
  (Andrew Bennetts, #528041)
 
416
 
 
417
* Permit bzr to run under ``python -OO`` which reduces the size of bytecode
 
418
  files loaded from disk. To ensure docstrings needed for help are never
 
419
  stripped, the prefix ``__doc__ =`` should now be used.
 
420
  (Martin <gzlist@googlemail.com>)
 
421
 
 
422
* No longer require zlib headers to build extensions, and remove the need
 
423
  for seperate copy of zlib library on windows.
 
424
  (John Arbash Meinel, Martin <gzlist@googlemail.com>, #66923)
 
425
 
 
426
Testing
 
427
*******
 
428
 
 
429
* Added ``bzrlib.tests.matchers`` as a place to put matchers, along with
 
430
  our first in-tree matcher. See the module docstring for details.
 
431
  (Robert Collins)
 
432
 
 
433
* ``bzr selftest --parallel=subprocess`` now works correctly on win32.
 
434
   (Gordon Tyler, #551332)
 
435
 
 
436
* Workaround ``Crypto.Random`` check leading to spurious test
 
437
  failures on Lucid, FreeBSD and gentoo.  
 
438
  (Vincent Ladeuil, #528436)
 
439
 
 
440
* New class ``ExecutableFeature`` for checking the availability of
 
441
  executables on the ``PATH``. Migrated from bash_completion plugin.
 
442
  (Martin von Gagern)
 
443
 
 
444
bzr 2.2b2
 
445
#########
 
446
 
 
447
:2.2b2: 2010-04-16
 
448
 
 
449
This is a somewhat early second beta of the 2.2 series, to fix a python2.4
 
450
incompatibility in the 2.2b1 release.  It also includes a swag of
 
451
performance, usability and correctness improvements: test feedback on all
 
452
of these would be welcome.
 
453
 
 
454
 
 
455
New Features
 
456
************
 
457
 
 
458
* ``bzr diff`` now supports a --format option, which can be used to 
 
459
  select alternative diff formats. (Jelmer Vernooij, #555994)
 
460
 
 
461
Bug Fixes
 
462
*********
 
463
 
 
464
* ``bzr dpush``, ``bzr push`` and ``bzr send`` will now issue a warning
 
465
  instead of failing when dirty trees are involved. The corresponding
 
466
  ``dpush_strict``, ``push_strict`` and ``send_strict`` should be set to
 
467
  True explicitly to get the previous behaviour.  
 
468
  (Vincent Ladeuil, #519319)
 
469
 
 
470
* ``bzr export`` to tar file does not fail if any parent directory
 
471
  contains unicode characters. This works around upstream Python bug
 
472
  http://bugs.python.org/issue8396 .
 
473
  (Parth Malwankar, #413406)
 
474
 
 
475
* ``bzr switch`` does not die if a ConfigurableFileMerger is used.
 
476
  (Aaron Bentley, #559436)
 
477
 
 
478
* ``bzr update`` when a pending merge in the working tree has been merged
 
479
  into the master branch will no longer claim that old commits have become
 
480
  pending merges. (Robert Collins, #562079)
 
481
 
 
482
* ``bzrlib.mutabletree.MutableTree.commit`` will now support a passed in
 
483
  config as in previous versions of bzrlib. (Robert Collins)
 
484
 
 
485
* Fix glitch in the warning about unclean trees display.
 
486
  (Vincent Ladeuil, #562665)
 
487
 
 
488
* Fixed Python2.4 incompatibilities in the bzr2.2b1 source tarball.
 
489
  (Martin Pool)
 
490
 
 
491
* Help messages generated by ``RegistryOption.from_kwargs`` list the
 
492
  switches in alphabetical order, rather than in an undefined order.
 
493
  (Martin von Gagern, #559409)
 
494
 
 
495
* Make sure the ``ExecutablePath`` and ``InterpreterPath`` are set in
 
496
  Apport crash reports, to avoid "This problem report applies to a program
 
497
  which is not installed any more" error.
 
498
  (Martin Pool, James Westby, #528114)
 
499
 
 
500
* Reset ``siginterrupt`` flag to False every time we handle a signal
 
501
  installed with ``set_signal_handler(..., restart_syscall=True)`` (from
 
502
  ``bzrlib.osutils``.  Reduces the likelihood of "Interrupted System Call"
 
503
  errors compared to registering ``signal.signal`` directly.
 
504
  (Andrew Bennetts)
 
505
 
 
506
* When invoked with a range revision, ``bzr log`` doesn't show revisions
 
507
  that are not part of the Y revisions ancestry anymore when invoked with
 
508
  -rX..Y.
 
509
  (Vincent Ladeuil, #474807)
 
510
 
 
511
* Properly handle ``param_name`` attribute for ``ListOption``.
 
512
  (Martin von Gagern, 387117)
 
513
 
 
514
Improvements
 
515
************
 
516
 
 
517
* ``bzr commit`` will prompt before using a commit message that was
 
518
  generated by a template and not edited by the user.
 
519
  (Robert Collins, #530265)
 
520
 
 
521
* ``bzr diff`` read-locks the trees and branches only once, saving about
 
522
  10-20ms on ``bzr diff`` in a bzr.dev tree.
 
523
  (Andrew Bennetts)
 
524
 
 
525
* ``bzr missing`` read-locks the branches only once.
 
526
  (Andrew Bennetts)
 
527
  
 
528
* ``bzr pull`` locks the branches and tree only once.
 
529
  (Andrew Bennetts)
 
530
  
 
531
* Index lookups in pack repositories search recently hit pack files first.  
 
532
  In repositories with many pack files this can greatly reduce the
 
533
  number of files accessed, the number of bytes read, and the number of
 
534
  read calls.  An incremental pull via plain HTTP takes half the time and
 
535
  bytes for a moderately large repository.  (Andrew Bennetts)
 
536
 
 
537
* Index lookups only re-order the indexes when the hit files aren't
 
538
  already first. Reduces the cost of reordering
 
539
  (John Arbash Meinel, #562429)
 
540
 
 
541
* Less code is loaded at startup.  (Cold-cache start time is about 10-20%
 
542
  less.)
 
543
  (Martin Pool, #553017)
 
544
 
 
545
API Changes
 
546
***********
 
547
 
 
548
* ``bzrlib.diff.get_trees_and_branches_to_diff`` is deprecated.  Use
 
549
  ``get_trees_and_branches_to_diff_locked`` instead.
 
550
  (Andrew Bennetts)
 
551
 
 
552
* ``TreeTransform.commit`` supports the full set of commit parameters, and
 
553
  auto-determines branch nick if not supplied.  (Aaron Bentley)
 
554
  
 
555
Internals
 
556
*********
 
557
 
 
558
* ``bzrlib.commands.Command.run_direct`` is no longer needed - the pre
 
559
  2.1 method of calling run() to perform testing or direct use via the API
 
560
  is now possible again. As part of this, the _operation attribute on
 
561
  Command is now transient and only exists for the duration of ``run()``.
 
562
  (Robert Collins)
 
563
 
 
564
bzr 2.2b1
 
565
#########
 
566
 
 
567
:2.2b1: 2010-04-01
 
568
 
 
569
This is the first beta of the 2.2 series, leading up to a 2.2.0
 
570
release in July or August.  Beta releases are suitable for everyday use
 
571
but may cause some incompatibilities with plugins.  Some plugins may need
 
572
small updates to work with 2.2b1.
 
573
 
 
574
2.2b1 includes some changes to make merge conflicts easier to understand
 
575
and resolve.  It also removes some old unnecessary code, and loads
 
576
somewhat less code at startup.  It starts adding a common infrastructure
 
577
for dealing with colocated named branches, which can be implemented in
 
578
various ways in either bzr native or foreign formats.   On Ubuntu and
 
579
other platforms with the apport bug-reporting library, there's an easier
 
580
path to report problems with bzr.  We plan to continue with these themes
 
581
through the 2.2 series.
 
582
 
 
583
Over thirty bugs have been fixed, including in the log command, exporting
 
584
to tarballs, restarting interrupted system calls, portability of compiled
 
585
extensions, making backups during upgrade, and locking on ftp.
 
586
 
 
587
Compatibility Breaks
 
588
********************
 
589
 
 
590
* BTreeGraphIndex can now take an offset to indicate that the data starts
 
591
  somewhere other than then beginning of the file. (John Arbash Meinel)
 
592
 
 
593
* Deleted very old hidden commands ``versionedfile-list``,
 
594
  ``weave-plan-merge``, ``weave-merge-text``.
 
595
  (Martin Pool)
 
596
 
 
597
* ``Repository.get_inventory_sha1()`` and ``Repository.get_revision_xml()`` 
 
598
  have been removed. (Jelmer Vernooij)
 
599
 
 
600
* ``Repository.get_revision_inventory()`` has been removed in favor of
 
601
  ``Repository.get_inventory()``. (Jelmer Vernooij)
 
602
 
 
603
* All test servers have been moved out of the bzrlib.transport hierarchy to
 
604
  bzrlib.tests.test_server *except* for MemoryServer, ChrootServer and
 
605
  PathFilteringServer. ``bzrlib`` users may encounter test failures that can
 
606
  be fixed by updating the related imports from ``bzrlib.transport.xxx`` to
 
607
  ``bzrlib.tests.test_server``.
 
608
  (Vincent Ladeuil)
 
609
 
 
610
* ``BranchReferenceFormat.initialize()`` now takes an optional name argument
 
611
  as its second parameter, for consistency with the initialize() method of
 
612
  other formats. (Jelmer Vernooij)
 
613
 
 
614
New Features
 
615
************
 
616
 
 
617
* Added ``bzr remove-branch`` command that can remove a local or remote 
 
618
  branch. (Jelmer Vernooij, #276295)
 
619
 
 
620
* ``bzr export`` now takes an optional argument ``--per-file-timestamps``
 
621
  to set file mtimes to the last timestamp of the last revision in which
 
622
  they were changed rather than the current time. (Jelmer Vernooij)
 
623
 
 
624
* If the Apport crash-reporting tool is available, bzr crashes are now
 
625
  stored into the ``/var/crash`` apport spool directory, and the user is
 
626
  invited to report them to the developers from there, either
 
627
  automatically or by running ``apport-bug``.  No information is sent
 
628
  without specific permission from the user.  (Martin Pool, #515052)
 
629
 
 
630
* Parsing of command lines, for example in ``diff --using``, no longer
 
631
  treats backslash as an escape character on Windows.   (Gordon Tyler,
 
632
  #392248)
 
633
 
 
634
* Plugins can be disabled by defining ``BZR_DISABLE_PLUGINS`` as
 
635
  a list of plugin names separated by ':' (';' on windows).
 
636
  (Vincent Ladeuil, #411413)
 
637
 
 
638
* Plugins can be loaded from arbitrary locations by defining
 
639
  ``BZR_PLUGINS_AT`` as a list of name@path separated by ':' (';' on
 
640
  windows). This takes precedence over ``BZR_PLUGIN_PATH`` for the
 
641
  specified plugins. This is targeted at plugin developers for punctual
 
642
  needs and *not* intended to replace ``BZR_PLUGIN_PATH``.  
 
643
  (Vincent Ladeuil, #82693)
 
644
 
 
645
* Tag names can now be determined automatically by ``automatic_tag_name`` 
 
646
  hooks on ``Branch`` if they are not specified on the command line.
 
647
  (Jelmer Vernooij)
 
648
 
 
649
* Tree-shape conflicts can be resolved by providing ``--take-this`` and
 
650
  ``--take-other`` to the ``bzr resolve`` command. Just marking the conflict
 
651
  as resolved is still accessible via the ``--done`` default action.
 
652
  (Vincent Ladeuil)
 
653
 
 
654
* Merges can be proposed on Launchpad with the new lp-propose-merge command.
 
655
  (Aaron Bentley, Jonathan Lange)
 
656
 
 
657
Bug Fixes
 
658
*********
 
659
 
 
660
* Added docstring for ``Tree.iter_changes``
 
661
  (John Arbash Meinel, #304182)
 
662
 
 
663
* Allow additional arguments to
 
664
  ``RemoteRepository.add_inventory_by_delta()``. (Jelmer Vernooij, #532631)
 
665
 
 
666
* Allow exporting a single file using ``bzr export``.
 
667
  (Michal Junák, #511987)
 
668
 
 
669
* Allow syscalls to automatically restart when ``TextUIFactory``'s
 
670
  SIGWINCH handler is invoked, avoiding ``EINTR`` errors during blocking
 
671
  IO, which are often poorly handled by Python's libraries and parts of
 
672
  bzrlib.  (Andrew Bennetts, #496813)
 
673
 
 
674
* Avoid infinite recursion when probing for apport.
 
675
  (Vincent Ladeuil, #516934)
 
676
 
 
677
* Avoid ``malloc(0)`` in ``patiencediff``, which is non-portable.
 
678
  (Martin Pool, #331095)
 
679
 
 
680
* Avoid truncating svn URLs.
 
681
  (Martin Pool, Martin von Gagern, #545185)
 
682
 
 
683
* ``bzr add`` will not add conflict related files unless explicitly required.
 
684
  (Vincent Ladeuil, #322767, #414589)
 
685
 
 
686
* ``bzr dump-btree`` now works on ``*.cix`` and ``*.six`` files.  Those
 
687
  indices do not have reference lists, so ``dump-btree`` will simply show
 
688
  ``None`` instead.  (Andrew Bennetts, #488607)
 
689
 
 
690
* ``bzr help`` will no longer trigger the get_missing_command hook when
 
691
  doing a topic lookup. This avoids prompting (like 'no command plugins/loom,
 
692
  did you mean log?') when getting help. In future we may trigger the hook 
 
693
  deliberately when no help topics match from any help index.
 
694
  (Robert Collins, #396261)
 
695
 
 
696
* ``bzr log -n0 -r..A.B.C`` should not crash but just consider the None
 
697
  revspec as representing the first revision of the branch.
 
698
  (Vincent Ladeuil, #519862)
 
699
 
 
700
* ``bzr remove-tree`` can now remove multiple working trees.
 
701
  (Jared Hance, Andrew Bennetts, #253137)
 
702
 
 
703
* ``bzr resolve --take-this`` and ``--take-other`` now correctly renames
 
704
  the kept file on content conflicts where one side deleted the file.
 
705
  (Vincent Ladeuil, #529968)
 
706
 
 
707
* ``bzr upgrade`` now creates the ``backup.bzr`` directory with the same
 
708
  permissions as ``.bzr`` directory on a POSIX OS.
 
709
  (Parth Malwankar, #262450)
 
710
 
 
711
* ``bzr upgrade`` now names backup directory as ``backup.bzr.~N~`` instead
 
712
  of ``backup.bzr``. This directory is ignored by bzr commands such as
 
713
  ``add``.
 
714
  (Parth Malwankar, #335033, #300001)
 
715
 
 
716
* Cope with non-utf8 characters inside ``.bzrignore``.
 
717
  (Jason Spashett, #183504)
 
718
 
 
719
* Correctly interpret "451 Rename/move failure: Directory not empty" from
 
720
  ftp servers while trying to take a lock.
 
721
  (Martin Pool, #528722)
 
722
 
 
723
* DirStateRevisionTree.kind() was returning wrong result when 'kind'
 
724
  changes occured between the workingtree and one of its parents.
 
725
  (Vincent Ladeuil, #535547)
 
726
 
 
727
* Fix ``log`` to better check ancestors even if merged revisions are involved.
 
728
  (Vincent Ladeuil, #476293)
 
729
 
 
730
* Loading a plugin from a given path with ``BZR_PLUGINS_AT`` doesn't depend
 
731
  on os.lisdir() order and is now reliable.
 
732
  (Vincent Ladeuil, #552922).
 
733
 
 
734
* Many IO operations that returned ``EINTR`` were retried even if it
 
735
  wasn't safe to do so via careless use of ``until_no_eintr``.  Bazaar now
 
736
  only retries operations that are safe to retry, and in some cases has
 
737
  switched to operations that can be retried (e.g. ``sock.send`` rather than
 
738
  ``sock.sendall``).
 
739
  (Andrew Bennetts, Martin <gzlist@googlemail.com>, #496813)
 
740
 
 
741
* Path conflicts now support --take-this and --take-other even when a
 
742
  deletion is involved.
 
743
  (Vincent Ladeuil, #531967)
 
744
 
 
745
* Network transfer amounts and rates are now displayed in SI units according
 
746
  to the Ubuntu Units Policy <https://wiki.ubuntu.com/UnitsPolicy>.
 
747
  (Gordon Tyler, #514399)
 
748
 
 
749
* Support kind markers for socket and fifo filesystem objects. This
 
750
  prevents ``bzr status --short`` from crashing when those files are
 
751
  present.  (John Arbash Meinel, #303275)
 
752
 
 
753
* ``bzr mkdir DIR`` will not create DIR unless DIR's parent is a versioned
 
754
   directory. (Parth Malwankar, #138600)
 
755
 
 
756
* SSH child processes will now ignore SIGQUIT on nix systems so breaking into
 
757
  the debugger won't kill the session.
 
758
  (Martin <gzlist@googlemail.com>, #162502)
 
759
 
 
760
* Tolerate patches with leading noise in ``bzr-handle-patch``.
 
761
  (Toshio Kuratomi, Martin Pool, #502076)
 
762
 
 
763
* ``update -r`` now supports updating to revisions that are not on
 
764
  mainline (i.e. it supports dotted revisions).
 
765
  (Parth Malwankar, #517800)
 
766
 
 
767
* Use first apparent author not committer in GNU Changelog format.
 
768
  (Martin von Gagern, #513322)
 
769
 
 
770
API Changes
 
771
***********
 
772
 
 
773
* ``bzrlib.merge_directive._BaseMergeDirective`` has been renamed to 
 
774
  ``bzrlib.merge_directive.BaseMergeDirective`` and is now public.
 
775
  (Jelmer Vernooij)
 
776
 
 
777
* ``BranchFormat.initialize`` now takes an optional ``name`` of the colocated 
 
778
  branch to create. (Jelmer Vernooij)
 
779
 
 
780
* ``BzrDir.get_branch_transport`` now takes an optional ``name`` of the 
 
781
  colocated branch to open. (Jelmer Vernooij)
 
782
 
 
783
* Added ``bzrlib.osutils.set_signal_handler``, a convenience function that
 
784
  can set a signal handler and call ``signal.siginterrupt(signum,
 
785
  False)`` for it, if the platform and Python version supports it.
 
786
  (Andrew Bennetts, #496813)
 
787
 
 
788
* New ``bzrlib.initialize`` is recommended for programs using bzrlib to 
 
789
  run when starting up; it sets up several things that previously needed
 
790
  to be done separately.
 
791
  (Martin Pool, #507710)
 
792
 
 
793
* Exporters now support a ``per_file_timestamps`` argument to write out the 
 
794
  timestamp of the commit in which a file revision was introduced.
 
795
  (Jelmer Vernooij)
 
796
 
 
797
* New method ``BzrDir.list_branches()`` that returns a sequence of branches 
 
798
  present in a control directory. (Jelmer Vernooij)
 
799
 
 
800
* New method ``Repository.get_known_graph_ancestry()``. 
 
801
  (Jelmer Vernooij, #495502)
 
802
 
 
803
* New transport methods ``readlink``, ``symlink`` and ``hardlink``.
 
804
  (Neil Santos)
 
805
 
 
806
* Remove unused ``CommandFailed`` exception.
 
807
  (Martin Pool)
 
808
 
 
809
Internals
 
810
*********
 
811
 
 
812
* ``bzrlib.branchbuilder.BranchBuilder.build_snapshot`` now accepts a
 
813
  ``message_callback`` in the same way that commit does. (Robert Collins)
 
814
 
 
815
* ``bzrlib.builtins.Commit.run`` raises ``bzrlib.errors.BoundBranchOutOfDate``
 
816
  rather than ``bzrlib.errors.BzrCommandError`` when the bound branch is out
 
817
  of date. (Gary van der Merwe)
 
818
 
 
819
* ``bzrlib.commands.run_bzr`` is more extensible: callers can supply the
 
820
  functions to load or disable plugins if they wish to use a different
 
821
  plugin mechanism; the --help, --version and no-command name code paths
 
822
  now use the generic pluggable command lookup infrastructure.
 
823
  (Robert Collins)
 
824
 
 
825
* ``bzrlib.errors.BoundBranchOutOfDate`` has a new field ``extra_help``
 
826
  which can be set to add extra help to the error. (Gary van der Merwe)
 
827
 
 
828
* New method ``Branch.automatic_tag_name`` that can be used to find the
 
829
  tag name for a particular revision automatically. (Jelmer Vernooij)
 
830
 
 
831
* The methods ``BzrDir.create_branch()``, ``BzrDir.destroy_branch()`` and 
 
832
  ``BzrDir.open_branch()`` now take an optional ``name`` argument. 
 
833
  (Jelmer Vernooij)
 
834
 
 
835
Testing
 
836
*******
 
837
 
 
838
* bzr now has a ``.testr.conf`` file in its source tree configured
 
839
  appropriately for running tests with Testrepository
 
840
  (``https://launchpad.net/testrepository``). (Robert Collins)
 
841
 
 
842
* Documentation about testing with ``subunit`` has been tweaked.
 
843
  (Robert Collins)
 
844
 
 
845
* Known failures has been added for resolve --take-other on ParentLoop
 
846
  conflicts. This reflects bug #537956 without fixing it.
 
847
  (Vincent Ladeuil)
 
848
 
 
849
* New ``bzrlib.tests.test_import_tariff`` can make assertions about what
 
850
  Python modules are loaded, to guard against startup time or library
 
851
  dependency regressions.
 
852
  (Martin Pool)
 
853
 
 
854
* PQM will now run with subunit output. To analyze a PQM error use
 
855
  tribunal, or cat log | subunit-filter | subunit2pyunit. (Robert Collins)
 
856
 
 
857
* Stop sending apport crash files to ``.cache`` in the directory from
 
858
  which ``bzr selftest`` was run.  (Martin Pool, #422350)
 
859
 
 
860
* Tests no longer fail if "close() called during concurrent
 
861
  operation on the same file object" occurs when closing the log file
 
862
  (which can happen if a thread tries to write to the log file at the
 
863
  wrong moment).  An warning will be written to ``stderr`` when this
 
864
  happens, and another warning will be written if the log file could not
 
865
  be closed after retrying 100 times.  (Andrew Bennetts, #531746)
 
866
 
 
867
bzr 2.1.3
 
868
#########
 
869
 
 
870
:Codename: Do run run
 
871
:2.1.3: NOT RELEASED YET
 
872
 
 
873
Compatibility Breaks
 
874
********************
 
875
 
 
876
New Features
 
877
************
 
878
 
 
879
Bug Fixes
 
880
*********
 
881
 
 
882
* Raise ValueError instead of a string exception.
 
883
  (John Arbash Meinel, #586926)
 
884
 
 
885
Improvements
 
886
************
 
887
 
 
888
Documentation
 
889
*************
 
890
 
 
891
API Changes
 
892
***********
 
893
 
 
894
Internals
 
895
*********
 
896
 
 
897
Testing
 
898
*******
 
899
 
 
900
bzr 2.1.2
 
901
#########
 
902
 
 
903
:2.1.2: 2010-05-28
 
904
 
 
905
This release fixes two critical networking issues with older servers and
 
906
with interrupted system call errors when pushing or pulling.  We recommend
 
907
upgrading to anyone running a 2.1.x version of bzr.
 
908
 
 
909
Bug Fixes
 
910
*********
 
911
 
 
912
* ``bzr clean-tree`` should not delete nested bzrdirs. Required for proper
 
913
  support of bzr-externals and scmproj plugins.
 
914
  (Alexander Belchenko, bug #572098)
 
915
 
 
916
* ``bzr switch`` does not die if a ConfigurableFileMerger is used.
 
917
  (Aaron Bentley, #559436)
 
918
 
 
919
* Do not register a SIGWINCH signal handler, instead just poll for the
 
920
  terminal width as needed.  This avoids the "Interrupted System Call"
 
921
  problems that occur on POSIX with all currently released versions of
 
922
  Python.
 
923
  (Andrew Bennetts, #583941)
 
924
 
 
925
* Fixed ``AssertionError`` when accessing smart servers running Bazaar
 
926
  versions before 1.6.
 
927
  (Andrew Bennetts, #528041)
 
928
 
 
929
* Reset ``siginterrupt`` flag to False every time we handle a signal
 
930
  installed with ``set_signal_handler(..., restart_syscall=True)`` (from
 
931
  ``bzrlib.osutils``.  Reduces the likelihood of "Interrupted System Call"
 
932
  errors compared to registering ``signal.signal`` directly.
 
933
  (Andrew Bennetts)
 
934
 
 
935
* Reduce peak memory by one copy of compressed text.
 
936
  (John Arbash Meinel, #566940)
 
937
 
 
938
* Support Pyrex 0.9.9, required changing how we handle exceptions in Pyrex.
 
939
  (John Arbash Meinel, #582656)
 
940
 
 
941
* When passing a file to ``UTF8DirReader`` make sure to close the current
 
942
  directory file handle after the chdir fails. Otherwise when passing many
 
943
  filenames into a command line ``bzr status`` we would leak descriptors.
 
944
  (John Arbash Meinel, #583486)
 
945
 
 
946
Internals
 
947
*********
 
948
 
 
949
* ``_remember_remote_is_before`` no longer raises AssertionError when
 
950
  suboptimal network behaviour is noticed; instead it just mutters to the
 
951
  log file (and warns the user if they have set the ``hpss`` debug flag).
 
952
  This was causing unnecessary aborts for performance bugs that are minor
 
953
  at worst.
 
954
  (Andrew Bennetts, #528041)
 
955
 
 
956
 
 
957
bzr 2.1.1
 
958
#########
 
959
 
 
960
:2.1.1: 2010-03-24
 
961
 
 
962
This is a small bugfix release.  Upgrading is recommended for anyone
 
963
running 2.1.0 or earlier.
 
964
 
 
965
Bug Fixes
 
966
*********
 
967
 
 
968
* Allow syscalls to automatically restart when ``TextUIFactory``'s
 
969
  SIGWINCH handler is invoked, avoiding ``EINTR`` errors during blocking
 
970
  IO, which are often poorly handled by Python's libraries and parts of
 
971
  bzrlib.  (Andrew Bennetts, #496813)
 
972
 
 
973
* Avoid ``malloc(0)`` in ``patiencediff``, which is non-portable.
 
974
  (Martin Pool, #331095)
 
975
 
 
976
* Fix plugin packaging on Windows. (Ian Clatworthy, #524162)
 
977
 
 
978
* Fix stub sftp test server to call os.getcwdu().
 
979
  (Vincent Ladeuil, #526221, #526353)
 
980
 
 
981
* Fixed CHM generation by moving the NEWS section template into
 
982
  a separate file. (Ian Clatworthy, #524184)
 
983
 
 
984
* Merge correctly when this_tree is not a WorkingTree.  (Aaron Bentley)
 
985
 
 
986
* Register SIGWINCH handler only when creating a ``TextUIFactory``; avoids
 
987
  problems importing bzrlib from a non-main thread.
 
988
  (Elliot Murphy, #521989)
 
989
 
 
990
* Repositories accessed via a smart server now reject being stacked on a
 
991
  repository in an incompatible format, as is the case when accessing them
 
992
  via other methods.  This was causing fetches from those repositories via
 
993
  a smart server (e.g. using ``bzr branch``) to receive invalid data.
 
994
  (Andrew Bennetts, #562380)
 
995
 
 
996
* Standardize the error handling when creating a new ``StaticTuple``
 
997
  (problems will raise TypeError). (Matt Nordhoff, #457979)
 
998
 
 
999
* Warn if pyrex is too old to compile the new ``SimpleSet`` and
 
1000
  ``StaticTuple`` extensions, rather than having the build fail randomly.
 
1001
  (John Arbash Meinel, #449776)
 
1002
 
 
1003
Documentation
 
1004
*************
 
1005
 
 
1006
* Added a link to the Desktop Guide. (Ian Clatworthy)
 
1007
 
 
1008
* Added What's New in Bazaar 2.1 document. (Ian Clatworthy)
 
1009
 
 
1010
* Drop Google Analytics from the core docs as they caused problems
 
1011
  in the CHM files. (Ian Clatworthy, #502010)
 
1012
 
 
1013
API Changes
 
1014
***********
 
1015
 
 
1016
* Added ``bzrlib.osutils.set_signal_handler``, a convenience function that
 
1017
  can set a signal handler and call ``signal.siginterrupt(signum,
 
1018
  False)`` for it, if the platform and Python version supports it.
 
1019
  (Andrew Bennetts, #496813)
 
1020
 
 
1021
 
 
1022
bzr 2.1.0
 
1023
#########
 
1024
 
 
1025
:Codename: Strasbourg
 
1026
:2.1.0: 2010-02-11
 
1027
 
 
1028
This release marks our second long-term-stable series. The Bazaar team
 
1029
has decided that we will continue to make bugfix-only 2.0.x and 2.1.x
 
1030
releases, along with 2.2 development releases. 
 
1031
 
 
1032
This is a fairly incremental update, focusing on polish and bugfixing.
 
1033
There are no changes for supported disk formats. Key updates include
 
1034
reduced memory consumption for many operations, a new per-file merge
 
1035
hook, ignore patterns can now include '!' to exclude files, globbing
 
1036
support for all commands on Windows, and support for addressing home
 
1037
directories via ``bzr+ssh://host/~/`` syntax.
 
1038
 
 
1039
Users are encouraged to upgrade from the 2.0 stable series.
 
1040
 
 
1041
Bug Fixes
 
1042
*********
 
1043
 
 
1044
* Don't require testtools to use sftp.
 
1045
  (Vincent Ladeuil, #516183)
 
1046
 
 
1047
* Fix "AttributeError in Inter1and2Helper" during fetch.
 
1048
  (Martin Pool, #513432)
 
1049
 
 
1050
* ``bzr update`` performs the two merges in a more logical order and will stop
 
1051
  when it encounters conflicts.  
 
1052
  (Gerard Krol, #113809)
 
1053
 
 
1054
* Give a better error message when doing ``bzr bind`` in an already bound
 
1055
  branch.  (Neil Martinsen-Burrell, #513063)
 
1056
 
 
1057
* Ignore ``KeyError`` from ``remove_index`` during ``_abort_write_group``
 
1058
  in a pack repository, which can happen harmlessly if the abort occurs during
 
1059
  finishing the write group.  Also use ``bzrlib.cleanup`` so that any
 
1060
  other errors that occur while aborting the individual packs won't be
 
1061
  hidden by secondary failures when removing the corresponding indices.
 
1062
  (Andrew Bennetts, #423015)
 
1063
 
 
1064
* Set the mtime of files exported to a directory by ``bzr export`` all to
 
1065
  the same value to avoid confusing ``make`` and other date-based build
 
1066
  systems. (Robert Collins, #515631)
 
1067
 
 
1068
Improvements
 
1069
************
 
1070
 
 
1071
* Fetching into experimental formats will now print a warning. (Jelmer
 
1072
  Vernooij)
 
1073
 
 
1074
API Changes
 
1075
***********
 
1076
 
 
1077
* ``Repository.deserialise_inventory`` has been renamed to 
 
1078
  ``Repository._deserialise_inventory`` to indicate it is private.
 
1079
  (Jelmer Vernooij)
 
1080
 
 
1081
* ``Repository.get_inventory_xml`` has been renamed to 
 
1082
  ``Repository._get_inventory_xml`` to indicate it is private. 
 
1083
  (Jelmer Vernooij)
 
1084
 
 
1085
* ``Repository.serialise_inventory`` has been renamed to 
 
1086
  ``Repository._serialise_inventory`` to indicate it is private.
 
1087
 
 
1088
* Using the ``bzrlib.chk_map`` module from within multiple threads at the
 
1089
  same time was broken due to race conditions with a module level page
 
1090
  cache. This shows up as a KeyError in the ``bzrlib.lru_cache`` code with
 
1091
  ``bzrlib.chk_map`` in the backtrace, and can be triggered without using
 
1092
  the same high level objects such as ``bzrlib.repository.Repository``
 
1093
  from different threads. chk_map now uses a thread local cache which may
 
1094
  increase memory pressure on processes using threads.
 
1095
  (Robert Collins, John Arbash Meinel, #514090)
 
1096
 
 
1097
* The new ``merge_file_content`` should now be ok with tests to avoid
 
1098
  regressions.
 
1099
  (Vincent Ladeuil, #515597)
 
1100
 
 
1101
Internals
 
1102
*********
 
1103
 
 
1104
* Use ``bzrlib.cleanup`` rather than less robust ``try``/``finally``
 
1105
  blocks in several places in ``bzrlib.merge``.  This avoids masking prior
 
1106
  errors when errors like ``ImmortalPendingDeletion`` occur during cleanup
 
1107
  in ``do_merge``.
 
1108
  (Andrew Bennetts, #517275)
 
1109
 
 
1110
API Changes
 
1111
***********
 
1112
 
 
1113
* The ``remove_index`` method of
 
1114
  ``bzrlib.repofmt.pack_repo.AggregateIndex`` no longer takes a ``pack``
 
1115
  argument.  This argument was always ignored.
 
1116
  (Andrew Bennetts, #423015)
 
1117
 
 
1118
bzr 2.1.0rc2
 
1119
############
 
1120
 
 
1121
:Codename: after the bubbles
 
1122
:2.1.0rc2: 2010-01-29
 
1123
 
 
1124
This is a quick-turn-around to update a small issue with our new per-file
 
1125
merge hook. We expect no major changes from this to the final 2.1.0.
 
1126
 
 
1127
API Changes
 
1128
***********
 
1129
 
 
1130
* The new ``merge_file_content`` hook point has been altered to provide a
 
1131
  better API where state for extensions can be stored rather than the
 
1132
  too-simple function based approach. This fixes a performance regression
 
1133
  where branch configuration would be parsed per-file during merge. As
 
1134
  part of this the included news_merger has been refactored into a base
 
1135
  helper class ``bzrlib.merge.ConfigurableFileMerger``.
 
1136
  (Robert Collins, John Arbash Meinel, #513822)
 
1137
 
 
1138
 
 
1139
bzr 2.1.0rc1
 
1140
############
 
1141
 
 
1142
:Codename: the 'new' stable
 
1143
:2.1.0rc1: 2009-01-21
 
1144
 
 
1145
This is the first stable release candidate for Bazaar's 2.1 series. From
 
1146
this point onwards, the 2.1 series will be considered stable (as the 2.0
 
1147
series) and only bugfixes are expected to be incorporated. The dozen or so
 
1148
bugfixes in the 2.0.4 release are also included in this release (along
 
1149
with more than 15 more bugfixes). Some of the interesting features are
 
1150
support for per-file merge hooks, ``bzr unshelve --preview``, support
 
1151
for using ! in ignore files to exclude files from being ignored, a small
 
1152
memory leak was squashed, and many ``ObjectNotLocked`` errors were fixed.
 
1153
This looks to be a very good start for a new stable series.
 
1154
 
 
1155
 
 
1156
New Features
 
1157
************
 
1158
 
 
1159
* Add bug information to log output when available.
 
1160
  (Neil Martinsen-Burrell, Guillermo Gonzalez, #251729)
 
1161
 
 
1162
* Added ``merge_file_content`` hook point to ``Merger``, allowing plugins
 
1163
  to register custom merge logic, e.g. to provide smarter merging for
 
1164
  particular files.
 
1165
 
 
1166
* Bazaar now includes the ``news_merge`` plugin.  It is disabled by
 
1167
  default, to enable it add a ``news_merge_files`` option to your
 
1168
  configuration.  Consult ``bzr help news_merge`` for more information.
 
1169
  (Andrew Bennetts)
 
1170
  
 
1171
* ``bzr branch`` now takes a ``--bind`` option. This lets you
 
1172
  branch and bind all in one command. (Ian Clatworthy)
 
1173
 
 
1174
* ``bzr switch`` now takes a ``--revision`` option, to allow switching to
 
1175
  a specific revision of a branch. (Daniel Watkins, #183559)
 
1176
 
 
1177
* ``bzr unshelve --preview`` can now be used to show how a patch on the
 
1178
  shelf would be applied to the working tree.
 
1179
  (Guilherme Salgado, #308122)
 
1180
 
 
1181
* ``bzr update`` now takes a ``--revision`` argument. This lets you
 
1182
  change the revision of the working tree to any revision in the
 
1183
  ancestry of the current or master branch. (Matthieu Moy, Mark Hammond,
 
1184
  Martin Pool, #45719)
 
1185
 
 
1186
* ``-Dbytes`` can now be used to display the total number of bytes
 
1187
  transferred for the current command. This information is always logged
 
1188
  to ``.bzr.log`` for later inspection. (John Arbash Meinel)
 
1189
 
 
1190
* New ignore patterns.  Patterns prefixed with '!' are exceptions to 
 
1191
  ignore patterns and take precedence over regular ignores.  Such 
 
1192
  exceptions are used to specify files that should be versioned which 
 
1193
  would otherwise be ignored.  Patterns prefixed with '!!' act as regular 
 
1194
  ignore patterns, but have highest precedence, even over the '!' 
 
1195
  exception patterns. (John Whitley, #428031)
 
1196
 
 
1197
* The ``supress_warnings`` configuration option has been introduced to disable
 
1198
  various warnings (it currently only supports the ``format_deprecation``
 
1199
  warning). The new option can be set in any of the following locations:
 
1200
  ``bazaar.conf``, ``locations.conf`` and/or ``branch.conf``.
 
1201
  (Ted Gould, Matthew Fuller, Vincent Ladeuil)
 
1202
 
 
1203
Bug Fixes
 
1204
*********
 
1205
 
 
1206
* Always show a message if an OS error occurs while trying to run a
 
1207
  user-specified commit message editor.
 
1208
  (Martin Pool, #504842)
 
1209
 
 
1210
* ``bzr diff`` will now use the epoch when it is unable to determine 
 
1211
  the timestamp of a file, if the revision it was introduced in is a
 
1212
  ghost. (Jelmer Vernooij, #295611)
 
1213
 
 
1214
* ``bzr switch -b`` can now create branches that are located using directory
 
1215
  services such as ``lp:``, even when the branch name doesn't contain a
 
1216
  '/'.  (Neil Martinsen-Burrell, #495263)
 
1217
 
 
1218
* ``bzr unshelve`` has improved messages about what it is doing.
 
1219
  (Neil Martinsen-Burrell, #496917)
 
1220
 
 
1221
* Concurrent autopacking is more resilient to already-renamed pack files.
 
1222
  If we find that a file we are about to obsolete is already obsoleted, we
 
1223
  do not try to rename it, and we leave the file in ``obsolete_packs``.
 
1224
  The code is also fault tolerant if a file goes missing, assuming that
 
1225
  another process already removed the file.
 
1226
  (John Arbash Meinel, Gareth White, #507557)
 
1227
 
 
1228
* Fix "Too many concurrent requests" in reconcile when network connection
 
1229
  fails.  (Andrew Bennetts, #503878)
 
1230
 
 
1231
* Fixed a side effect mutation of ``RemoteBzrDirFormat._network_name``
 
1232
  that caused some tests to fail when run in a non-default order.
 
1233
  Probably no user impact.  (Martin Pool, #504102)
 
1234
 
 
1235
* Fixed ``ObjectNotLocked`` error in ``bzr cat -rbranch:../foo FILE``.
 
1236
  (Andrew Bennetts, #506274)
 
1237
 
 
1238
* FTP transports support Unicode paths by encoding/decoding them as utf8.
 
1239
  (Vincent Ladeuil, #472161)
 
1240
 
 
1241
* Listen to the SIGWINCH signal to update the terminal width.
 
1242
  (Vincent Ladeuil, #316357)
 
1243
 
 
1244
* Progress bars are now hidden when ``--quiet`` is given.
 
1245
  (Martin Pool, #320035)
 
1246
 
 
1247
* ``SilentUIFactory`` now supports ``make_output_stream`` and discards
 
1248
  whatever is written to it.  This un-breaks some plugin tests that
 
1249
  depended on this behaviour.
 
1250
  (Martin Pool, #499757)
 
1251
 
 
1252
* When operations update the working tree, all affected files should end
 
1253
  up with the same mtime. (eg. when versioning a generated file, if you
 
1254
  update the source and the generated file together, the generated file
 
1255
  should appear up-to-date.)
 
1256
  (John Arbash Meinel, Martin <gzlist>, #488724)
 
1257
 
 
1258
Improvements
 
1259
************
 
1260
 
 
1261
* Added ``add_cleanup`` and ``cleanup_now`` to ``bzrlib.command.Command``.
 
1262
  All the builtin commands now use ``add_cleanup`` rather than
 
1263
  ``try``/``finally`` blocks where applicable as it is simpler and more
 
1264
  robust.  (Andrew Bennetts)
 
1265
 
 
1266
* All except a small number of storage formats are now hidden, making
 
1267
  the help for numerous commands far more digestible. (Ian Clatworthy)
 
1268
 
 
1269
* Attempts to open a shared repository as a branch (e.g. ``bzr branch
 
1270
  path/to/repo``) will now include "location is a repository" as a hint in
 
1271
  the error message.  (Brian de Alwis, Andrew Bennetts, #440952)
 
1272
 
 
1273
* Push will now inform the user when they are trying to push to a foreign 
 
1274
  VCS for which roundtripping is not supported, and will suggest them to 
 
1275
  use dpush. (Jelmer Vernooij)
 
1276
 
 
1277
* The version of bzr being run is now written to the log file.
 
1278
  (__monty__, #257170)
 
1279
 
 
1280
* Transport network activity indicator is shown more of the time when
 
1281
  Bazaar is doing network IO.
 
1282
  (Martin Pool)
 
1283
 
 
1284
Documentation
 
1285
*************
 
1286
 
 
1287
* Add documentation on creating merges with more than one parent.
 
1288
  (Neil Martinsen-Burrell, #481526)
 
1289
 
 
1290
* Better explain the --uncommitted option of merge.
 
1291
  (Neil Martinsen-Burrell, #505088)
 
1292
 
 
1293
* Improve discussion of pending merges in the documentation for
 
1294
  ``revert``.  (Neil Martinsen-Burrell, #505093)
 
1295
 
 
1296
* Improved help for ``bzr send``. 
 
1297
  (Martin Pool, Bojan Nikolic)
 
1298
 
 
1299
* There is a System Administrator's Guide in ``doc/en/admin-guide``,
 
1300
  including discussions of installation, relevant plugins, security and 
 
1301
  backup. (Neil Martinsen-Burrell)
 
1302
 
 
1303
* The ``conflicts`` help topic has been renamed to ``conflict-types``.
 
1304
  (Ian Clatworthy)
 
1305
 
 
1306
* The User Reference is now presented as a series of topics.
 
1307
  Many of the included topics have link and format tweaks applied.
 
1308
  (Ian Clatworthy)
 
1309
 
 
1310
API Changes
 
1311
***********
 
1312
 
 
1313
* Added ``cachedproperty`` decorator to ``bzrlib.decorators``.
 
1314
  (Andrew Bennetts)
 
1315
 
 
1316
* Many test features were renamed from ``FooFeature`` to ``foo_feature``
 
1317
  to be consistent with instances being lower case and classes being
 
1318
  CamelCase. For the features that were more likely to be used, we added a
 
1319
  deprecation thunk, but not all. (John Arbash Meinel)
 
1320
 
 
1321
* Merger classes (such as ``Merge3Merger``) now expect a ``this_branch``
 
1322
  parameter in their constructors, and provide ``this_branch`` as an
 
1323
  attribute. (Andrew Bennetts)
 
1324
  
 
1325
* The Branch hooks pre_change_branch_tip no longer masks exceptions raised
 
1326
  by plugins - the original exceptions are now preserved. (Robert Collins)
 
1327
 
 
1328
* The Transport ``Server.tearDown`` method is now renamed to
 
1329
  ``stop_server`` and ``setUp`` to ``start_server`` for consistency with
 
1330
  our normal naming pattern, and to avoid confusion with Python's
 
1331
  ``TestCase.tearDown``.  (Martin Pool)
 
1332
 
 
1333
* ``WorkingTree.update`` implementations must now accept a ``revision``
 
1334
  parameter.
 
1335
 
 
1336
Internals
 
1337
*********
 
1338
 
 
1339
* Added ``BzrDir.open_branchV3`` smart server request, which can receive
 
1340
  a string of details (such as "location is a repository") as part of a
 
1341
  ``nobranch`` response.  (Andrew Bennetts, #440952)
 
1342
  
 
1343
* New helper osutils.UnicodeOrBytesToBytesWriter which encodes unicode
 
1344
  objects but passes str objects straight through. This is used for
 
1345
  selftest but may be useful for diff and other operations that generate
 
1346
  mixed output. (Robert Collins)
 
1347
 
 
1348
* New exception ``NoRoundtrippingSupport``, for use by foreign branch 
 
1349
  plugins. (Jelmer Vernooij)
 
1350
 
 
1351
Testing
 
1352
*******
 
1353
 
 
1354
* ``bzrlib.tests.permute_for_extension`` is a helper that simplifies
 
1355
  running all tests in the current module, once against a pure python
 
1356
  implementation, and once against an extension (pyrex/C) implementation.
 
1357
  It can be used to dramatically simplify the implementation of
 
1358
  ``load_tests``.  (John Arbash Meinel)
 
1359
 
 
1360
* ``bzrlib.tests.TestCase`` now subclasses ``testtools.testcase.TestCase``.
 
1361
  This permits features in testtools such as getUniqueInteger and
 
1362
  getUniqueString to be used. Because of this, testtools version 0.9.2 or
 
1363
  newer is now a dependency to run bzr selftest. Running with versions of
 
1364
  testtools less than 0.9.2 will cause bzr to error while loading the test
 
1365
  suite. (Robert Collins)
 
1366
 
 
1367
* Shell-like tests now support the command "mv" for moving files.  The
 
1368
  syntax for ``mv file1 file2``, ``mv dir1 dir2`` and ``mv file dir`` is
 
1369
  supported.  (Neil Martinsen-Burrell)
 
1370
 
 
1371
* The test progress bar no longer distinguishes tests that 'errored' from
 
1372
  tests that 'failed' - they're all just failures.
 
1373
  (Martin Pool)
 
1374
 
 
1375
bzr 2.0.6
 
1376
#########
 
1377
 
 
1378
:2.0.6: NOT RELEASED YET
 
1379
 
 
1380
Bug Fixes
 
1381
*********
 
1382
 
 
1383
* Additional merges after an unrelated branch has been merged with its
 
1384
  history no longer crash when deleted files are involved.
 
1385
  (Vincent Ladeuil, John Arbash Meinel, #375898)
 
1386
 
 
1387
* ``bzr revert`` now only takes write lock on working tree, instead of on 
 
1388
  both working tree and branch.
 
1389
  (Danny van Heumen, #498409)
 
1390
 
 
1391
* ``bzr upgrade`` now creates the ``backup.bzr`` directory with the same
 
1392
  permissions as ``.bzr`` directory on a POSIX OS.
 
1393
  (Parth Malwankar, #262450)
 
1394
 
 
1395
* Raise ValueError instead of a string exception.
 
1396
  (John Arbash Meinel, #586926)
 
1397
 
 
1398
* Reduce peak memory by one copy of compressed text.
 
1399
  (John Arbash Meinel, #566940)
 
1400
 
 
1401
* Repositories accessed via a smart server now reject being stacked on a
 
1402
  repository in an incompatible format, as is the case when accessing them
 
1403
  via other methods.  This was causing fetches from those repositories via
 
1404
  a smart server (e.g. using ``bzr branch``) to receive invalid data.
 
1405
  (Andrew Bennetts, #562380)
 
1406
 
 
1407
* Selftest with versions of subunit that support ``stopTestRun`` will no longer
 
1408
  error. This error was caused by 2.0 not being updated when upstream
 
1409
  python merged the end of run patch, which chose ``stopTestRun`` rather than
 
1410
  ``done``. (Robert Collins, #571437)
 
1411
 
 
1412
* When passing a file to ``UTF8DirReader`` make sure to close the current
 
1413
  directory file handle after the chdir fails. Otherwise when passing many
 
1414
  filenames into a command line ``bzr status`` we would leak descriptors.
 
1415
  (John Arbash Meinel, #583486)
 
1416
 
 
1417
 
 
1418
bzr 2.0.5
 
1419
#########
 
1420
 
 
1421
:2.0.5: 2010-03-23
 
1422
 
 
1423
This fifth release in our 2.0 series addresses several user-inconvenience
 
1424
bugs.  None are critical, but upgrading is recommended for all users on
 
1425
earlier 2.0 releases.
 
1426
 
 
1427
Bug Fixes
 
1428
*********
 
1429
 
 
1430
* Avoid ``malloc(0)`` in ``patiencediff``, which is non-portable.
 
1431
  (Martin Pool, #331095)
 
1432
 
 
1433
* Concurrent autopacking is more resilient to already-renamed pack files.
 
1434
  If we find that a file we are about to obsolete is already obsoleted, we
 
1435
  do not try to rename it, and we leave the file in ``obsolete_packs``.
 
1436
  The code is also fault tolerant if a file goes missing, assuming that
 
1437
  another process already removed the file.
 
1438
  (John Arbash Meinel, Gareth White, #507557)
 
1439
 
 
1440
* Cope with the lockdir ``held/info`` file being empty, which seems to
 
1441
  happen fairly often if the process is suddenly interrupted while taking
 
1442
  a lock.
 
1443
  (Martin Pool, #185103)
 
1444
 
 
1445
* Give the warning about potentially slow cross-format fetches much
 
1446
  earlier on in the fetch operation.  Don't show this message during
 
1447
  upgrades, and show the correct format indication for remote
 
1448
  repositories.
 
1449
  (Martin Pool, #456077, #515356, #513157)
 
1450
 
 
1451
* Handle renames correctly when there are files or directories that 
 
1452
  differ only in case.  (Chris Jones, Martin Pool, #368931)
 
1453
 
 
1454
* If ``bzr push --create-prefix`` triggers an unexpected ``NoSuchFile``
 
1455
  error, report that error rather than failing with an unhelpful
 
1456
  ``UnboundLocalError``.
 
1457
  (Andrew Bennetts, #423563)
 
1458
 
 
1459
* Running ``bzr`` command without any arguments now shows bzr
 
1460
  version number along with rest of the help text.
 
1461
  (Parth Malwankar, #369501)
 
1462
 
 
1463
* Use osutils.O_NOINHERIT for some files on win32 to avoid PermissionDenied
 
1464
  errors.
 
1465
  (Inada Naoki, #524560)
 
1466
 
 
1467
Documentation
 
1468
*************
 
1469
 
 
1470
* Added ``location-alias`` help topic.
 
1471
  (Andrew Bennetts, #337834)
 
1472
 
 
1473
* Fixed CHM generation by moving the NEWS section template into
 
1474
  a separate file. (Ian Clatworthy, #524184)
 
1475
 
 
1476
 
 
1477
bzr 2.0.4
 
1478
#########
 
1479
 
 
1480
:Codename: smooth sailing
 
1481
:2.0.4: 2010-01-21
 
1482
 
 
1483
The fourth bugfix-only release in the 2.0 series contains more than a
 
1484
dozen bugfixes relative to 2.0.3. The primary focus is on handling
 
1485
interruptions and concurrent operations more cleanly, there is also a fair
 
1486
improvement to ``bzr export`` when exporting a remote branch.
 
1487
 
 
1488
 
 
1489
Bug Fixes
 
1490
*********
 
1491
 
 
1492
* ``bzr annotate`` on another branch with ``-r branch:...`` no longer
 
1493
  fails with an ``ObjectNotLocked`` error.  (Andrew Bennetts, #496590)
 
1494
 
 
1495
* ``bzr export dir`` now requests all file content as a record stream,
 
1496
  rather than requsting the file content one file-at-a-time. This can make
 
1497
  exporting over the network significantly faster (54min => 9min in one
 
1498
  case). (John Arbash Meinel, #343218)
 
1499
 
 
1500
* ``bzr serve`` no longer slowly leaks memory. The compiled
 
1501
  ``bzrlib.bencode.Encoder()`` class was using ``__del__`` to cleanup and
 
1502
  free resources, and it should have been using ``__dealloc__``.
 
1503
  This will likely have an impact on any other process that is serving for
 
1504
  an extended period of time.  (John Arbash Meinel, #494406)
 
1505
 
 
1506
* Check for SIGINT (Ctrl-C) and other signals immediately if ``readdir``
 
1507
  returns ``EINTR`` by calling ``PyErr_CheckSignals``.  This affected the
 
1508
  optional ``_readdir_pyx`` extension.  (Andrew Bennetts, #495023)
 
1509
 
 
1510
* Concurrent autopacks will no longer lose a newly created pack file.
 
1511
  There was a race condition, where if the reload happened at the right
 
1512
  time, the second packer would forget the name of the newly added pack
 
1513
  file. (John Arbash Meinel, Gareth White, #507566)
 
1514
 
 
1515
* Give a clearer message if the lockdir disappears after being apparently
 
1516
  successfully taken.  (Martin Pool, #498378)
 
1517
 
 
1518
* Give a warning when fetching between repositories (local or remote) with
 
1519
  sufficiently different formats that the content will need to be
 
1520
  serialized (ie ``InterDifferingSerializer`` or ``inventory-deltas``), so
 
1521
  the user has a clue that upgrading could make it faster.
 
1522
  (Martin Pool, #456077)
 
1523
 
 
1524
* If we fail to open ``~/.bzr.log`` write a clear message to stderr rather
 
1525
  than using ``warning()``. The log file is opened before logging is set
 
1526
  up, and it leads to very confusing: 'no handlers for "bzr"' messages for
 
1527
  users, rather than something nicer.
 
1528
  (John Arbash Meinel, Barry Warsaw, #503886)
 
1529
 
 
1530
* Refuse to build with any Pyrex 0.9.4 release, as they have known bugs.
 
1531
  (Martin Pool, John Arbash Meinel, #449372)
 
1532
 
 
1533
* ``setup.py bdist_rpm`` now properly finds extra files needed for the
 
1534
  build. (there is still the distutils bug
 
1535
  http://bugs.python.org/issue644744) (Joe Julian, #175839)
 
1536
 
 
1537
* The 2a format wasn't properly restarting autopacks when something
 
1538
  changed underneath it (like another autopack). Now concurrent
 
1539
  autopackers will properly succeed. (John Arbash Meinel, #495000)
 
1540
 
 
1541
* ``TreeTransform`` can now handle when a delta says that the file id for
 
1542
  the tree root changes. Rather than trying to rename your working
 
1543
  directory, or failing early saying that you can't have multiple
 
1544
  tree roots. This also fixes revert, update, and pull when the root id
 
1545
  changes.  (John Arbash Meinel, #494269, #504390)
 
1546
 
 
1547
* ``_update_current_block`` no longer suppresses exceptions, so ^C at just
 
1548
  the right time will get propagated, rather than silently failing to move
 
1549
  the block pointer. (John Arbash Meinel, Gareth White, #495023)
 
1550
 
 
1551
Testing
 
1552
*******
 
1553
 
 
1554
* We have a new ``test_source`` that ensures all pyrex ``cdef`` functions
 
1555
  handle exceptions somehow. (Possibly by setting ``# cannot_raise``
 
1556
  rather than an ``except ?:`` clause.) This should help prevent bugs like
 
1557
  bug #495023. (John Arbash Meinel)
 
1558
 
 
1559
 
 
1560
bzr 2.1.0b4
 
1561
###########
 
1562
 
 
1563
:Codename: san francisco airport
 
1564
:2.1.0b4: 2009-12-14
 
1565
 
 
1566
The fourth beta release in the 2.1 series brings with it a significant
 
1567
number of bugfixes (~20). The test suite is once again (finally) "green"
 
1568
on Windows, and should remain that way for future releases. There are a
 
1569
few performance related updates (faster upgrade and log), and several UI
 
1570
tweaks. There has also been a significant number of tweaks to the runtime
 
1571
documentation. 2.1.0b4 include everything from the 2.0.3 release.
 
1572
 
 
1573
 
 
1574
Compatibility Breaks
 
1575
********************
 
1576
 
 
1577
* The BZR_SSH environmental variable may now be set to the path of a secure
 
1578
  shell client. If currently set to the value ``ssh`` it will now guess the
 
1579
  vendor of the program with that name, to restore the old behaviour that
 
1580
  indicated the SSH Corporation client use ``sshcorp`` instead as the magic
 
1581
  string. (Martin <gzlist@googlemail.com>, #176292)
 
1582
 
 
1583
New Features
 
1584
************
 
1585
 
 
1586
* ``bzr commit`` now has a ``--commit-time`` option.
 
1587
  (Alexander Sack, #459276)
 
1588
 
 
1589
* ``-Dhpss`` now increases logging done when run on the bzr server,
 
1590
  similarly to how it works on the client. (John Arbash Meinel)
 
1591
 
 
1592
* New option ``bzr unshelve --keep`` applies the changes and leaves them
 
1593
  on the shelf.  (Martin Pool, Oscar Fuentes, #492091)
 
1594
 
 
1595
* The ``BZR_COLUMNS`` envrionment variable can be set to force bzr to
 
1596
  respect a given terminal width. This can be useful when output is
 
1597
  redirected or in obscure cases where the default value is not
 
1598
  appropriate. Pagers can use it to get a better control of the line
 
1599
  lengths. 
 
1600
  (Vincent Ladeuil)
 
1601
 
 
1602
* The new command ``bzr lp-mirror`` will request that Launchpad update its
 
1603
  mirror of a local branch. This command will only function if launchpadlib
 
1604
  is installed.
 
1605
  (Jonathan Lange)
 
1606
 
 
1607
 
 
1608
Bug Fixes
 
1609
*********
 
1610
 
 
1611
* After renaming a file, the dirstate could accidentally reference
 
1612
  ``source\\path`` rather than ``source/path`` on Windows. This might be a
 
1613
  source of some dirstate-related failures. (John Arbash Meinel)
 
1614
 
 
1615
* ``bzr commit`` now detects commit messages that looks like file names
 
1616
  and issues a warning.
 
1617
  (Gioele Barabucci, #73073)
 
1618
 
 
1619
* ``bzr ignore /`` no longer causes an IndexError. (Gorden Tyler, #456036)
 
1620
 
 
1621
* ``bzr log -n0 -rN`` should not return revisions beyond its merged revisions.
 
1622
  (#325618, #484109, Marius Kruger)
 
1623
 
 
1624
* ``bzr merge --weave`` and ``--lca`` will now create ``.BASE`` files for
 
1625
  files with conflicts (similar to ``--merge3``). The contents of the file
 
1626
  is a synthesis of all bases used for the merge.
 
1627
  (John Arbash Meinel, #40412)
 
1628
 
 
1629
* ``bzr mv --quiet`` really is quiet now.  (Gordon Tyler, #271790)
 
1630
 
 
1631
* ``bzr serve`` is more clear about the risk of supplying --allow-writes.
 
1632
  (Robert Collins, #84659)
 
1633
 
 
1634
* ``bzr serve --quiet`` really is quiet now.  (Gordon Tyler, #252834)
 
1635
 
 
1636
* Fix bug with redirected URLs over authenticated HTTP.
 
1637
  (Glen Mailer, Neil Martinsen-Burrell, Vincent Ladeuil, #395714)
 
1638
 
 
1639
* Interactive merge doesn't leave branch locks behind.  (Aaron Bentley)
 
1640
 
 
1641
* Lots of bugfixes for the test suite on Windows. We should once again
 
1642
  have a test suite with no failures on Windows. (John Arbash Meinel)
 
1643
 
 
1644
* ``osutils.terminal_width()`` obeys the BZR_COLUMNS environment
 
1645
  variable but returns None if the terminal is not a tty (when output is
 
1646
  redirected for example). Also fixes its usage under OSes that doesn't
 
1647
  provide termios.TIOCGWINSZ. Make sure the corresponding tests runs on
 
1648
  windows too.
 
1649
  (Joke de Buhr, Vincent Ladeuil, #353370, #62539)
 
1650
  (John Arbash Meinel, Vincent Ladeuil, #492561)
 
1651
 
 
1652
* Terminate ssh subprocesses when no references to them remain, fixing
 
1653
  subprocess and file descriptor leaks.  (Andrew Bennetts, #426662)
 
1654
  
 
1655
* The ``--hardlink`` option of ``bzr branch`` and ``bzr checkout`` now
 
1656
  works for 2a format trees.  Only files unaffected by content filters
 
1657
  will be hardlinked.  (Andrew Bennetts, #408193)
 
1658
 
 
1659
* The new glob expansion on Windows would replace all ``\`` characters
 
1660
  with ``/`` even if it there wasn't a glob to expand, the arg was quoted,
 
1661
  etc. Now only change slashes if there is something being glob expanded.
 
1662
  (John Arbash Meinel, #485771)
 
1663
 
 
1664
* Use our faster ``KnownGraph.heads()`` functionality when computing the
 
1665
  new rich-root heads. This can cut a conversion time in half (mysql from
 
1666
  13.5h => 6.2h) (John Arbash Meinel, #487632)
 
1667
 
 
1668
* When launching a external diff tool via bzr diff --using, temporary files
 
1669
  are no longer created, rather, the path to the file in the working tree is
 
1670
  passed to the external diff tool. This allows the file to be edited if the
 
1671
  diff tool provides for this. (Gary van der Merwe, #490738)
 
1672
  
 
1673
* The launchpad-open command can now be used from a subdirectory of a
 
1674
  branch, not just from the root of the branch. 
 
1675
  (Neil Martinsen-Burrell, #489102)
 
1676
 
 
1677
 
 
1678
Improvements
 
1679
************
 
1680
 
 
1681
* ``bzr log`` is now faster. (Ian Clatworthy)
 
1682
 
 
1683
* ``bzr update`` provides feedback on which branch it is up to date with.
 
1684
  (Neil Martinsen-Burrell)
 
1685
 
 
1686
* ``bzr upgrade`` from pre-2a to 2a can be significantly faster (4x).
 
1687
  For details see the xml8 patch and heads() improvements.
 
1688
  (John Arbash Meinel)
 
1689
 
 
1690
* ``bzrlib.urlutils.local_path_from_url`` now accepts
 
1691
  'file://localhost/' as well as 'file:///' URLs on POSIX.  (Michael
 
1692
  Hudson)
 
1693
 
 
1694
* The progress bar now shows only a spinner and per-operation counts,
 
1695
  not an overall progress bar.  The previous bar was often not correlated
 
1696
  with real overall operation progress, either because the operations take
 
1697
  nonlinear time, or because at the start of the operation Bazaar couldn't
 
1698
  estimate how much work there was to do.  (Martin Pool)
 
1699
 
 
1700
Documentation
 
1701
*************
 
1702
 
 
1703
* Lots of documentation tweaks for inline help topics and command help
 
1704
  information.
 
1705
 
 
1706
API Changes
 
1707
***********
 
1708
 
 
1709
* ``bzrlib.textui`` (vestigial module) removed.  (Martin Pool)
 
1710
 
 
1711
* The Launchpad plugin now has a function ``login`` which will log in to
 
1712
  Launchpad with launchpadlib, and ``load_branch`` which will return the
 
1713
  Launchpad Branch object corresponding to a given Bazaar Branch object.
 
1714
  (Jonathan Lange)
 
1715
 
 
1716
Internals
 
1717
*********
 
1718
 
 
1719
* New test Feature: ``ModuleAvailableFeature``. It is designed to make it
 
1720
  easier to handle what tests you want to run based on what modules can be
 
1721
  imported. (Rather than lots of custom-implemented features that were
 
1722
  basically copy-and-pasted.) (John Arbash Meinel)
 
1723
 
 
1724
* ``osutils.timer_func()`` can be used to get either ``time.time()`` or
 
1725
  ``time.clock()`` when you want to do performance timing.
 
1726
  ``time.time()`` is limited to 15ms resolution on Windows, but
 
1727
  ``time.clock()`` gives CPU and not wall-clock time on other platforms.
 
1728
  (John Arbash Meinel)
 
1729
 
 
1730
* Several code paths that were calling ``Transport.get().read()`` have
 
1731
  been changed to the equalivent ``Transport.get_bytes()``. The main
 
1732
  difference is that the latter will explicitly call ``file.close()``,
 
1733
  rather than expecting the garbage collector to handle it. This helps
 
1734
  with some race conditions on Windows during the test suite and sftp
 
1735
  tests. (John Arbash Meinel)
 
1736
 
 
1737
Testing
 
1738
*******
 
1739
 
 
1740
* TestCaseWithMemoryTransport no longer sets $HOME and $BZR_HOME to
 
1741
  unicode strings. (Michael Hudson, #464174)
 
1742
 
 
1743
 
 
1744
bzr 2.0.3
 
1745
#########
 
1746
 
 
1747
:Codename: little italy
 
1748
:2.0.3: 2009-12-14
 
1749
 
 
1750
 
 
1751
The third stable release of Bazaar has a small handful of bugfixes. As
 
1752
expected, this has no internal or external compatibility changes versus
 
1753
2.0.2 (or 2.0.0).
 
1754
 
 
1755
Bug Fixes
 
1756
*********
 
1757
 
 
1758
* ``bzr push --use-existing-dir`` no longer crashes if the directory
 
1759
  exists but contains an invalid ``.bzr`` directory.
 
1760
  (Andrew Bennetts, #423563)
 
1761
 
 
1762
* Content filters are now applied correctly after pull, merge and switch.
 
1763
  (Ian Clatworthy, #385879)
 
1764
 
 
1765
* Fix a potential segfault in the groupcompress hash map handling code.
 
1766
  When inserting new entries, if the final hash bucket was empty, we could
 
1767
  end up trying to access if ``(last_entry+1)->ptr == NULL``.
 
1768
  (John Arbash Meinel, #490228)
 
1769
 
 
1770
* Improve "Binary files differ" hunk handling.  (Aaron Bentley, #436325)
 
1771
 
 
1772
 
 
1773
bzr 2.1.0b3
 
1774
###########
 
1775
 
 
1776
:Codename: after sprint recovery
 
1777
:2.1.0b3: 2009-11-16
 
1778
 
 
1779
This release was pushed up from its normal release cycle due to a
 
1780
regression in python 2.4 compatibility in 2.1.0b2.  Since this regression
 
1781
was caught before 2.1.0b2 was officially announced, the full changelog
 
1782
includes both 2.1.0b3 and 2.1.0b2 changes.
 
1783
 
 
1784
Highlights of 2.1.0b3 are: new globbing code for all commands on Windows,
 
1785
the test suite now conforms to python's trunk enhanced semantics (skip,
 
1786
etc.), and ``bzr info -v`` will now report the correct branch and repo
 
1787
formats for Remote objects.
 
1788
 
 
1789
 
 
1790
New Features
 
1791
************
 
1792
 
 
1793
* Users can define a shelve editor to provide shelf functionality at a
 
1794
  granularity finer than per-patch-hunk. (Aaron Bentley)
 
1795
 
 
1796
Bug Fixes
 
1797
*********
 
1798
 
 
1799
* Fix for shell completion and short options.  (Benoît PIERRE)
 
1800
 
 
1801
* Fix ``bzr --profile-imports`` with Python 2.6.  (Martin Pool)
 
1802
 
 
1803
* Hooks daughter classes should always call the base constructor.
 
1804
  (Alexander Belchenko, Vincent Ladeuil, #389648) 
 
1805
 
 
1806
* Improve "Binary files differ" hunk handling.  (Aaron Bentley, #436325)
 
1807
 
 
1808
* On Windows, do glob expansion at the command-line level (as is usually
 
1809
  done in bash, etc.) This means that *all* commands get glob expansion
 
1810
  (bzr status, bzr add, bzr mv, etc). It uses a custom command line
 
1811
  parser, which allows us to know if a given section was quoted. It means
 
1812
  you can now do ``bzr ignore "*.py"``.
 
1813
  (John Arbash Meinel, #425510, #426410, #194450)
 
1814
 
 
1815
* Sanitize commit messages that come in from the '-m' flag. We translate
 
1816
  '\r\n' => '\n' and a plain '\r' => '\n'. The storage layer doesn't
 
1817
  allow those because XML store silently translate it anyway. (The parser
 
1818
  auto-translates \r\n => \n in ways that are hard for us to catch.)
 
1819
 
 
1820
* Show correct branch and repository format descriptions in 
 
1821
  ``bzr info -v`` on a smart server location.  (Andrew Bennetts, #196080)
 
1822
 
 
1823
* The fix for bug #186920 accidentally broke compatibility with python
 
1824
  2.4.  (Vincent Ladeuil, #475585)
 
1825
 
 
1826
* Using ``Repository.get_commit_builder().record_iter_changes()`` now
 
1827
  correctly sets ``self.inv_sha1`` to a sha1 string and
 
1828
  ``self.new_inventory`` to an Inventory instance after calling
 
1829
  ``self.finish_inventory()``. (Previously it accidently set both values
 
1830
  as a tuple on ``self.inv_sha1``. This was missed because
 
1831
  ``repo.add_revision`` ignores the supplied inventory sha1 and recomputes
 
1832
  the sha1 from the repo directly. (John Arbash Meinel)
 
1833
 
 
1834
* Shelve command refuse to run if there is no real terminal.
 
1835
  (Alexander Belchenko)
 
1836
 
 
1837
* Avoid unnecessarily flushing of trace file; it's now unbuffered at the
 
1838
  Python level.  (Martin Pool)
 
1839
 
 
1840
Documentation
 
1841
*************
 
1842
 
 
1843
* Include Japanese translations for documentation (Inada Naoki)
 
1844
 
 
1845
* New API ``ui_factory.make_output_stream`` to be used for sending bulk
 
1846
  (rather than user-interaction) data to stdout.  This automatically
 
1847
  coordinates with progress bars or other terminal activity, and can be
 
1848
  overridden by GUIs.
 
1849
  (Martin Pool, 493944)
 
1850
 
 
1851
Internals
 
1852
*********
 
1853
 
 
1854
* Some of the core groupcompress functionality now releases the GIL before
 
1855
  operation. Similar to how zlib and bz2 operate without the GIL in the
 
1856
  core compression and decompression routines. (John Arbash Meinel)
 
1857
 
 
1858
Testing
 
1859
*******
 
1860
 
 
1861
* -Dhpssvfs will now trigger on ``RemoteBzrDir._ensure_real``, providing
 
1862
  more debugging of VFS access triggers. (Robert Collins)
 
1863
 
 
1864
* KnownFailure is now signalled to ``ExtendedTestResult`` using the same
 
1865
  method that Python 2.7 uses - ``addExpectedFailure``. (Robert Collins)
 
1866
 
 
1867
* ``--parallel=fork`` is now compatible with --subunit.
 
1868
  (Robert Collins, Vincent Ladeuil, #419776)
 
1869
 
 
1870
* Reporting of failures shows test ids not descriptions and thus shows
 
1871
  parameterised tests correctly. (Robert Collins)
 
1872
 
 
1873
* TestNotApplicable is now handled within the TestCase.run method rather
 
1874
  than being looked for within ``ExtendedTestResult.addError``. This
 
1875
  provides better handling with other ``TestResult`` objects, degrading to
 
1876
  sucess rather than error. (Robert Collins)
 
1877
 
 
1878
* The private method ``_testConcluded`` on ``ExtendedTestResult`` has been
 
1879
  removed - it was empty and unused. (Robert Collins)
 
1880
 
 
1881
* UnavailableFeature is now handled within the TestCase.run method rather
 
1882
  than being looked for within addError. If the Result object does not
 
1883
  have an addNotSupported method, addSkip is attempted instead, and
 
1884
  failing that addSuccess. (Robert Collins)
 
1885
 
 
1886
* When a TestResult does not have an addSkip method, skipped tests are now
 
1887
  reported as successful tests, rather than as errors. This change is
 
1888
  to make it possible to get a clean test run with a less capable
 
1889
  TestResult. (Robert Collins)
 
1890
 
 
1891
 
 
1892
 
 
1893
bzr 2.1.0b2
 
1894
###########
 
1895
 
 
1896
:Codename: a load off my mind
 
1897
:2.1.0b2: 2009-11-02
 
1898
 
 
1899
This is our second feature-filled release since 2.0, pushing us down the
 
1900
path to a 2.1.0. Once again, all bugfixes in 2.0.2 are present in 2.1.0b2.
 
1901
 
 
1902
Key highlights in this release are: improved handling of
 
1903
failures-during-cleanup for commit, fixing a long-standing bug with
 
1904
``bzr+http`` and shared repositories, all ``lp:`` urls to be resolved
 
1905
behind proxies, and a new StaticTuple datatype, allowing us to reduce
 
1906
memory consumption (50%) and garbage collector overhead (40% faster) for
 
1907
many operations.
 
1908
 
 
1909
* A new ``--concurrency`` option has been added as well as an associated
 
1910
  BZR_CONCURRENCY environment variable to specify the number of
 
1911
  processes that can be run concurrently when running ``bzr selftest``. The
 
1912
  command-line option overrides the environment variable if both are
 
1913
  specified. If none is specified. the number of processes is obtained
 
1914
  from the OS as before.  (Matt Nordhoff, Vincent Ladeuil)
 
1915
 
 
1916
Bug Fixes
 
1917
*********
 
1918
 
 
1919
* ``bzr+http`` servers no longer give spurious jail break errors when
 
1920
  serving branches inside a shared repository.  (Andrew Bennetts, #348308)
 
1921
 
 
1922
* Errors during commit are handled more robustly so that knock-on errors
 
1923
  are less likely to occur, and will not obscure the original error if
 
1924
  they do occur.  This fixes some causes of ``TooManyConcurrentRequests``
 
1925
  and similar errors.  (Andrew Bennetts, #429747, #243391)
 
1926
 
 
1927
* Launchpad urls can now be resolved from behind proxies.
 
1928
  (Gordon Tyler, Vincent Ladeuil, #186920)
 
1929
 
 
1930
* Reduce the strictness for StaticTuple, instead add a debug flag
 
1931
  ``-Dstatic_tuple`` which will change apis to be strict and raise errors.
 
1932
  This way, most users won't see failures, but developers can improve
 
1933
  internals. (John Arbash Meinel, #471193)
 
1934
 
 
1935
* TreeTransform.adjust_path updates the limbo paths of descendants of adjusted
 
1936
  files.  (Aaron Bentley)
 
1937
 
 
1938
* Unicode paths are now handled correctly and consistently by the smart
 
1939
  server.  (Andrew Bennetts, Michael Hudson, #458762)
 
1940
 
 
1941
Improvements
 
1942
************
 
1943
 
 
1944
* When reading index files, we now use a ``StaticTuple`` rather than a
 
1945
  plain ``tuple`` object. This generally gives a 20% decrease in peak
 
1946
  memory, and can give a performance boost up to 40% on large projects.
 
1947
  (John Arbash Meinel)
 
1948
 
 
1949
* Peak memory under certain operations has been reduced significantly.
 
1950
  (eg, 'bzr branch launchpad standalone' is cut in half)
 
1951
  (John Arbash Meinel)
 
1952
 
 
1953
Documentation
 
1954
*************
 
1955
 
 
1956
* Filtered views user documentation upgraded to refer to format 2a
 
1957
  instead of pre-2.0 formats. (Ian Clatworthy)
 
1958
 
 
1959
API Changes
 
1960
***********
 
1961
 
 
1962
* Remove deprecated ``CLIUIFactory``.  (Martin Pool)
 
1963
 
 
1964
* ``UIFactory`` now has new ``show_error``, ``show_message`` and
 
1965
  ``show_warning`` methods, which can be hooked by non-text UIs.  
 
1966
  (Martin Pool)
 
1967
 
 
1968
Internals
 
1969
*********
 
1970
 
 
1971
* Added ``bzrlib._simple_set_pyx``. This is a hybrid between a Set and a
 
1972
  Dict (it only holds keys, but you can lookup the object located at a
 
1973
  given key). It has significantly reduced memory consumption versus the
 
1974
  builtin objects (1/2 the size of Set, 1/3rd the size of Dict). This is
 
1975
  used as the interning structure for StaticTuple objects.
 
1976
  (John Arbash Meinel)
 
1977
 
 
1978
* ``bzrlib._static_tuple_c.StaticTuple`` is now available and used by
 
1979
  the btree index parser and the chk map parser. This class functions
 
1980
  similarly to ``tuple`` objects. However, it can only point to a limited
 
1981
  collection of types.  (Currently StaticTuple, str, unicode, None, bool,
 
1982
  int, long, float, but not subclasses).  This allows us to remove it from
 
1983
  the garbage collector (it cannot be in a cycle), it also allows us to
 
1984
  intern the objects. In testing, this can reduce peak memory by 20-40%,
 
1985
  and significantly improve performance by removing objects from being
 
1986
  inspected by the garbage collector.  (John Arbash Meinel)
 
1987
 
 
1988
* ``GroupCompressBlock._ensure_content()`` will now release the
 
1989
  ``zlib.decompressobj()`` when the first request is for all of the
 
1990
  content. (Previously it would only be released if you made a request for
 
1991
  part of the content, and then all of it later.) This turns out to be a
 
1992
  significant memory savings, as a ``zstream`` carries around approx 260kB
 
1993
  of internal state and buffers. (For branching bzr.dev this drops peak
 
1994
  memory from 382MB => 345MB.) (John Arbash Meinel)
 
1995
 
 
1996
* When streaming content between ``2a`` format repositories, we now clear
 
1997
  caches from earlier versioned files. (So 'revisions' is cleared when we
 
1998
  start reading 'inventories', etc.) This can have a significant impact on
 
1999
  peak memory for initial copies (~200MB). (John Arbash Meinel)
 
2000
 
 
2001
 
 
2002
bzr 2.0.2
 
2003
#########
 
2004
 
 
2005
:Codename: after the scare
 
2006
:2.0.2: 2009-11-02
 
2007
 
 
2008
The second in our "let's keep the stable bugfixes flowing" series. As
 
2009
expected this has a few (~9) bugfixes relative to 2.0.1, and no major api
 
2010
changes or features.
 
2011
 
 
2012
Bug Fixes
 
2013
*********
 
2014
 
 
2015
* Avoid "NoneType has no attribute st_mode" error when files disappear
 
2016
  from a directory while it's being read.  (Martin Pool, #446033)
 
2017
 
 
2018
* Content filters are now applied correctly after revert.
 
2019
  (Ian Clatworthy)
 
2020
 
 
2021
* Diff parsing handles "Binary files differ" hunks.  (Aaron Bentley, #436325)
 
2022
 
 
2023
* Fetching from stacked pre-2a repository via a smart server no longer
 
2024
  fails intermittently with "second push failed to complete".
 
2025
  (Andrew Bennetts, #437626)
 
2026
 
 
2027
* Fix typos left after test_selftest refactoring.
 
2028
  (Vincent Ladeuil, Matt Nordhoff, #461149)
 
2029
 
 
2030
* Fixed ``ObjectNotLocked`` errors during ``bzr log -r NNN somefile``.
 
2031
  (Andrew Bennetts, #445171)
 
2032
  
 
2033
* PreviewTree file names are not limited by the encoding of the temp
 
2034
  directory's filesystem. (Aaron Bentley, #436794)
 
2035
 
 
2036
Improvements
 
2037
************
 
2038
 
 
2039
* ``bzr log`` now read-locks branches exactly once, so makes better use of
 
2040
  data caches.  (Andrew Bennetts)
 
2041
 
 
2042
Documentation
 
2043
*************
 
2044
 
 
2045
* Filtered views user documentation upgraded to refer to format 2a
 
2046
  instead of pre-2.0 formats. (Ian Clatworthy)
 
2047
 
 
2048
 
 
2049
bzr 2.1.0b1
 
2050
###########
 
2051
 
 
2052
:Codename: While the cat is away
 
2053
:2.1.0b1: 2009-10-14
 
2054
 
 
2055
This is the first development release in the new split "stable" and
 
2056
"development" series. As such, the release is a snapshot of bzr.dev
 
2057
without creating a release candidate first. This release includes a
 
2058
fair amount of internal changes, with deprecated code being removed,
 
2059
and several new feature developments. People looking for a stable code
 
2060
base with only bugfixes should focus on the 2.0.1 release. All bugfixes
 
2061
present in 2.0.1 are present in 2.1.0b1.
 
2062
 
 
2063
Highlights include support for ``bzr+ssh://host/~/homedir`` style urls,
 
2064
finer control over the plugin search path via extended BZR_PLUGIN_PATH
 
2065
syntax, visible warnings when extension modules fail to load, and improved
 
2066
error handling during unlocking.
 
2067
 
 
2068
 
 
2069
New Features
 
2070
************
 
2071
 
 
2072
* Bazaar can now send mail through Apple OS X Mail.app. 
 
2073
  (Brian de Alwis)
 
2074
 
 
2075
* ``bzr+ssh`` and ``bzr`` paths can now be relative to home directories
 
2076
  specified in the URL.  Paths starting with a path segment of ``~`` are
 
2077
  relative to the home directory of the user running the server, and paths
 
2078
  starting with ``~user`` are relative to the home directory of the named
 
2079
  user.  For example, for a user "bob" with a home directory of
 
2080
  ``/home/bob``, these URLs are all equivalent:
 
2081
 
 
2082
  * ``bzr+ssh://bob@host/~/repo``
 
2083
  * ``bzr+ssh://bob@host/~bob/repo``
 
2084
  * ``bzr+ssh://bob@host/home/bob/repo``
 
2085
 
 
2086
  If ``bzr serve`` was invoked with a ``--directory`` argument, then no
 
2087
  home directories outside that directory will be accessible via this
 
2088
  method.
 
2089
 
 
2090
  This is a feature of ``bzr serve``, so pre-2.1 clients will
 
2091
  automatically benefit from this feature when ``bzr`` on the server is
 
2092
  upgraded.  (Andrew Bennetts, #109143)
 
2093
 
 
2094
* Extensions can now be compiled if either Cython or Pyrex is available.
 
2095
  Currently Pyrex is preferred, but that may change in the future.
 
2096
  (Arkanes)
 
2097
 
 
2098
* Give more control on BZR_PLUGIN_PATH by providing a way to refer to or
 
2099
  disable the user, site and core plugin directories.
 
2100
  (Vincent Ladeuil, #412930, #316192, #145612)
 
2101
 
 
2102
Bug Fixes
 
2103
*********
 
2104
 
 
2105
* Bazaar's native protocol code now correctly handles EINTR, which most
 
2106
  noticeably occurs if you break in to the debugger while connected to a
 
2107
  bzr+ssh server.  You can now can continue from the debugger (by typing
 
2108
  'c') and the process continues.  However, note that pressing C-\ in the
 
2109
  shell may still kill the SSH process, which is bug 162509, so you must
 
2110
  sent a signal to the bzr process specifically, for example by typing
 
2111
  ``kill -QUIT PID`` in another shell.  (Martin Pool, #341535)
 
2112
 
 
2113
* ``bzr add`` in a tree that has files with ``\r`` or ``\n`` in the
 
2114
  filename will issue a warning and skip over those files.
 
2115
  (Robert Collins, #3918)
 
2116
 
 
2117
* ``bzr dpush`` now aborts if uncommitted changes (including pending merges)
 
2118
  are present in the working tree. The configuration option ``dpush_strict``
 
2119
  can be used to set the default for this behavior.
 
2120
  (Vincent Ladeuil, #438158)
 
2121
 
 
2122
* ``bzr merge`` and ``bzr remove-tree`` now requires --force if pending
 
2123
  merges are present in the working tree.
 
2124
  (Vincent Ladeuil, #426344)
 
2125
 
 
2126
* Clearer message when Bazaar runs out of memory, instead of a ``MemoryError``
 
2127
  traceback.  (Martin Pool, #109115)
 
2128
 
 
2129
* Don't give a warning on Windows when failing to import ``_readdir_pyx``
 
2130
  as it is never built. (John Arbash Meinel, #430645)
 
2131
 
 
2132
* Don't restrict the command name used to run the test suite.
 
2133
  (Vincent Ladeuil, #419950)
 
2134
 
 
2135
* ftp transports were built differently when the kerberos python module was
 
2136
  present leading to obscure failures related to ASCII/BINARY modes.
 
2137
  (Vincent Ladeuil, #443041)
 
2138
 
 
2139
* Network streams now decode adjacent records of the same type into a
 
2140
  single stream, reducing layering churn. (Robert Collins)
 
2141
 
 
2142
* PreviewTree behaves correctly when get_file_mtime is invoked on an unmodified
 
2143
  file. (Aaron Bentley, #251532)
 
2144
 
 
2145
* Registry objects should not use iteritems() when asked to use items().
 
2146
  (Vincent Ladeuil, #430510)
 
2147
 
 
2148
* Weave based repositories couldn't be cloned when committers were using
 
2149
  domains or user ids embedding '.sig'. Now they can.
 
2150
  (Matthew Fuller, Vincent Ladeuil, #430868)
 
2151
 
 
2152
Improvements
 
2153
************
 
2154
 
 
2155
* Revision specifiers can now be given in a more DWIM form, without
 
2156
  needing explicit prefixes for specifiers like tags or revision id's.
 
2157
  See ``bzr help revisionspec`` for full details.  (Matthew Fuller)
 
2158
 
 
2159
* Bazaar gives a warning before exiting, and writes into ``.bzr.log``, if 
 
2160
  compiled extensions can't be loaded.  This typically indicates a
 
2161
  packaging or installation problem.  In this case Bazaar will keep
 
2162
  running using pure-Python versions, but this may be substantially
 
2163
  slower.  The warning can be disabled by setting
 
2164
  ``ignore_missing_extensions = True`` in ``bazaar.conf``.
 
2165
  See also <https://answers.launchpad.net/bzr/+faq/703>.
 
2166
  (Martin Pool, #406113, #430529)
 
2167
 
 
2168
* Secondary errors that occur during Branch.unlock and Repository.unlock
 
2169
  no longer obscure the original error.  These methods now use a new
 
2170
  decorator, ``only_raises``.  This fixes many causes of
 
2171
  ``TooManyConcurrentRequests`` and similar errors.
 
2172
  (Andrew Bennetts, #429747)
 
2173
 
 
2174
Documentation
 
2175
*************
 
2176
 
 
2177
* Describe the new shell-like test feature. (Vincent Ladeuil)
 
2178
 
 
2179
* Help on hooks no longer says 'Not deprecated' for hooks that are
 
2180
  currently supported. (Ian Clatworthy, #422415)
 
2181
 
 
2182
API Changes
 
2183
***********
 
2184
 
 
2185
* ``bzrlib.user_encoding`` has been removed; use
 
2186
  ``bzrlib.osutils.get_user_encoding`` instead.  (Martin Pool)
 
2187
 
 
2188
* ``bzrlib.tests`` now uses ``stopTestRun`` for its ``TestResult``
 
2189
  subclasses - the same as python's unittest module. (Robert Collins)
 
2190
  
 
2191
* ``diff._get_trees_to_diff`` has been renamed to 
 
2192
  ``diff.get_trees_and_branches_to_diff``. It is now a public API, and it 
 
2193
  returns the old and new branches. (Gary van der Merwe)
 
2194
 
 
2195
* ``bzrlib.trace.log_error``, ``error`` and ``info`` have been deprecated.
 
2196
  (Martin Pool)
 
2197
 
 
2198
* ``MutableTree.has_changes()`` does not require a tree parameter anymore. It
 
2199
  now defaults to comparing to the basis tree. It now checks for pending
 
2200
  merges too.  ``Merger.check_basis`` has been deprecated and replaced by the
 
2201
  corresponding has_changes() calls. ``Merge.compare_basis``,
 
2202
  ``Merger.file_revisions`` and ``Merger.ensure_revision_trees`` have also
 
2203
  been deprecated.
 
2204
  (Vincent Ladeuil, #440631)
 
2205
 
 
2206
* ``ProgressTask.note`` is deprecated.
 
2207
  (Martin Pool)
 
2208
 
 
2209
Internals
 
2210
*********
 
2211
 
 
2212
* Added ``-Drelock`` debug flag.  It will ``note`` a message every time a
 
2213
  repository or branch object is unlocked then relocked the same way.
 
2214
  (Andrew Bennetts)
 
2215
  
 
2216
* ``BTreeLeafParser.extract_key`` has been tweaked slightly to reduce
 
2217
  mallocs while parsing the index (approx 3=>1 mallocs per key read).
 
2218
  This results in a 10% speedup while reading an index.
 
2219
  (John Arbash Meinel)
 
2220
 
 
2221
* The ``bzrlib.lsprof`` module has a new class ``BzrProfiler`` which makes
 
2222
  profiling in some situations like callbacks and generators easier.
 
2223
  (Robert Collins)
 
2224
 
 
2225
Testing
 
2226
*******
 
2227
 
 
2228
* Passing ``--lsprof-tests -v`` to bzr selftest will cause lsprof output to
 
2229
  be output for every test. Note that this is very verbose! (Robert Collins)
 
2230
 
 
2231
* Setting ``BZR_TEST_PDB=1`` when running selftest will cause a pdb
 
2232
  post_mortem to be triggered when a test failure occurs. (Robert Collins)
 
2233
 
 
2234
* Shell-like tests can now be written. Code in ``bzrlib/tests/script.py`` ,
 
2235
  documentation in ``developers/testing.txt`` for details.
 
2236
  (Vincent Ladeuil)
 
2237
 
 
2238
* Some tests could end up with the same id, that was dormant for
 
2239
  a long time.
 
2240
  (Vincent Ladeuil, #442980)
 
2241
 
 
2242
* Stop showing the number of tests due to missing features in the test
 
2243
  progress bar.  (Martin Pool)
 
2244
 
 
2245
* Test parameterisation now does a shallow copy, not a deep copy of the test
 
2246
  to be parameterised. This is not expected to break external use of test
 
2247
  parameterisation, and is substantially faster. (Robert Collins)
 
2248
 
 
2249
* Tests that try to open a bzr dir on an arbitrary transport will now
 
2250
  fail unless they have explicitly permitted the transport via
 
2251
  ``self.permit_url``. The standard test factories such as ``self.get_url``
 
2252
  will permit the urls they provide automatically, so only exceptional
 
2253
  tests should need to do this. (Robert Collins)
 
2254
 
 
2255
* The break-in test no longer cares about clean shutdown of the child,
 
2256
  instead it is happy if the debugger starts up. (Robert  Collins)
 
2257
 
 
2258
* The full test suite is expected to pass when the C extensions are not
 
2259
  present. (Vincent Ladeuil, #430749)
 
2260
 
 
2261
 
 
2262
bzr 2.0.1
 
2263
#########
 
2264
 
 
2265
:Codename: Stability First
 
2266
:2.0.1: 2009-10-14
 
2267
 
 
2268
The first of our new ongoing bugfix-only stable releases has arrived. It
 
2269
includes a collection of 12 bugfixes applied to bzr 2.0.0, but does not
 
2270
include any of the feature development in the 2.1.0 series.
 
2271
 
 
2272
 
 
2273
Bug Fixes
 
2274
*********
 
2275
 
 
2276
* ``bzr add`` in a tree that has files with ``\r`` or ``\n`` in the
 
2277
  filename will issue a warning and skip over those files.
 
2278
  (Robert Collins, #3918)
 
2279
 
 
2280
* bzr will attempt to authenticate with SSH servers that support
 
2281
  ``keyboard-interactive`` auth but not ``password`` auth when using
 
2282
  Paramiko.   (Andrew Bennetts, #433846)
 
2283
 
 
2284
* Fixed fetches from a stacked branch on a smart server that were failing
 
2285
  with some combinations of remote and local formats.  This was causing
 
2286
  "unknown object type identifier 60" errors.  (Andrew Bennetts, #427736)
 
2287
 
 
2288
* Fixed ``ObjectNotLocked`` errors when doing some log and diff operations
 
2289
  on branches via a smart server.  (Andrew Bennetts, #389413)
 
2290
 
 
2291
* Handle things like ``bzr add foo`` and ``bzr rm foo`` when the tree is
 
2292
  at the root of a drive. ``osutils._cicp_canonical_relpath`` always
 
2293
  assumed that ``abspath()`` returned a path that did not have a trailing
 
2294
  ``/``, but that is not true when working at the root of the filesystem.
 
2295
  (John Arbash Meinel, Jason Spashett, #322807)
 
2296
 
 
2297
* Hide deprecation warnings for 'final' releases for python2.6.
 
2298
  (John Arbash Meinel, #440062)
 
2299
 
 
2300
* Improve the time for ``bzr log DIR`` for 2a format repositories.
 
2301
  We had been using the same code path as for <2a formats, which required
 
2302
  iterating over all objects in all revisions.
 
2303
  (John Arbash Meinel, #374730)
 
2304
 
 
2305
* Make sure that we unlock the tree if we fail to create a TreeTransform
 
2306
  object when doing a merge, and there is limbo, or pending-deletions
 
2307
  directory.  (Gary van der Merwe, #427773)
 
2308
 
 
2309
* Occasional IndexError on renamed files have been fixed. Operations that
 
2310
  set a full inventory in the working tree will now go via the
 
2311
  apply_inventory_delta code path which is simpler and easier to
 
2312
  understand than dirstates set_state_from_inventory method. This may
 
2313
  have a small performance impact on operations built on _write_inventory,
 
2314
  but such operations are already doing full tree scans, so no radical
 
2315
  performance change should be observed. (Robert Collins, #403322)
 
2316
 
 
2317
* Retrieving file text or mtime from a _PreviewTree has good performance when
 
2318
  there are many changes.  (Aaron Bentley)
 
2319
 
 
2320
* The CHK index pages now use an unlimited cache size. With a limited
 
2321
  cache and a large project, the random access of chk pages could cause us
 
2322
  to download the entire cix file many times.
 
2323
  (John Arbash Meinel, #402623)
 
2324
 
 
2325
* When a file kind becomes unversionable after being added, a sensible
 
2326
  error will be shown instead of a traceback. (Robert Collins, #438569)
 
2327
 
 
2328
Documentation
 
2329
*************
 
2330
 
 
2331
* Improved README. (Ian Clatworthy)
 
2332
 
 
2333
* Improved upgrade documentation for Launchpad branches.
 
2334
  (Barry Warsaw)
 
2335
 
 
2336
 
 
2337
bzr 2.0.0
 
2338
#########
 
2339
 
 
2340
:2.0.0: 2009-09-22
 
2341
:Codename: Instant Karma
 
2342
 
 
2343
This release of Bazaar makes the 2a (previously 'brisbane-core') format
 
2344
the default when new branches or repositories are created.  This format is
 
2345
substantially smaller and faster for many operations.  Most of the work in
 
2346
this release focuses on bug fixes and stabilization, covering both 2a and
 
2347
previous formats.  (See the Upgrade Guide for information on migrating
 
2348
existing projects.)
 
2349
 
 
2350
This release also improves the documentation content and presentation,
 
2351
including adding Windows HtmlHelp manuals.
 
2352
 
 
2353
The Bazaar team decided that 2.0 will be a long-term supported release,
 
2354
with bugfix-only 2.0.x releases based on it, continuing for at least six
 
2355
months or until the following stable release.
 
2356
 
 
2357
Changes from 2.0.0rc2 to final
 
2358
******************************
 
2359
 
 
2360
* Officially branded as 2.0.0 rather than 2.0 to clarify between things
 
2361
  that "want to happen on the 2.0.x stable series" versus things that want
 
2362
  to "land in 2.0.0". (Changes how bzrlib._format_version_tuple() handles
 
2363
  micro = 0.) (John Arbash Meinel)
 
2364
 
 
2365
 
 
2366
bzr 2.0.0rc2
 
2367
############
 
2368
 
 
2369
:2.0.0rc2: 2009-09-10
 
2370
 
 
2371
New Features
 
2372
************
 
2373
 
 
2374
* Added post_commit hook for mutable trees. This allows the keywords
 
2375
  plugin to expand keywords on files changed by the commit.
 
2376
  (Ian Clatworthy, #408841)
 
2377
 
 
2378
Bug Fixes
 
2379
*********
 
2380
 
 
2381
* Bazaar's native protocol code now correctly handles EINTR, which most
 
2382
  noticeably occurs if you break in to the debugger while connected to a
 
2383
  bzr+ssh server.  You can now can continue from the debugger (by typing
 
2384
  'c') and the process continues.  However, note that pressing C-\ in the
 
2385
  shell may still kill the SSH process, which is bug 162509, so you must
 
2386
  sent a signal to the bzr process specifically, for example by typing
 
2387
  ``kill -QUIT PID`` in another shell.  (Martin Pool, #341535)
 
2388
 
 
2389
* ``bzr check`` in pack-0.92, 1.6 and 1.9 format repositories will no
 
2390
  longer report incorrect errors about ``Missing inventory ('TREE_ROOT', ...)``
 
2391
  (Robert Collins, #416732)
 
2392
 
 
2393
* ``bzr info -v`` on a 2a format still claimed that it was a "Development
 
2394
  format" (John Arbash Meinel, #424392)
 
2395
 
 
2396
* ``bzr log stacked-branch`` shows the full log including
 
2397
  revisions that are in the fallback repository. (Regressed in 2.0rc1).
 
2398
  (John Arbash Meinel, #419241)
 
2399
 
 
2400
* Clearer message when Bazaar runs out of memory, instead of a ``MemoryError``
 
2401
  traceback.  (Martin Pool, #109115)
 
2402
 
 
2403
* Conversion to 2a will create a single pack for all the new revisions (as
 
2404
  long as it ran without interruption). This improves both ``bzr upgrade``
 
2405
  and ``bzr pull`` or ``bzr merge`` from local branches in older formats.
 
2406
  The autopack logic that occurs every 100 revisions during local
 
2407
  conversions was not returning that pack's identifier, which resulted in
 
2408
  the partial packs created during the conversion not being consolidated
 
2409
  at the end of the conversion process. (Robert Collins, #423818)
 
2410
 
 
2411
* Fetches from 2a to 2a are now again requested in 'groupcompress' order.
 
2412
  Groups that are seen as 'underutilized' will be repacked on-the-fly.
 
2413
  This means that when the source is fully packed, there is minimal
 
2414
  overhead during the fetch, but if the source is poorly packed the result
 
2415
  is a fairly well packed repository (not as good as 'bzr pack' but
 
2416
  good-enough.) (Robert Collins, John Arbash Meinel, #402652)
 
2417
 
 
2418
* Fix a potential segmentation fault when doing 'log' of a branch that had
 
2419
  ghosts in its mainline.  (Evaluating None as a tuple is bad.)
 
2420
  (John Arbash Meinel, #419241)
 
2421
 
 
2422
* ``groupcompress`` sort order is now more stable, rather than relying on
 
2423
  ``topo_sort`` ordering. The implementation is now
 
2424
  ``KnownGraph.gc_sort``. (John Arbash Meinel)
 
2425
 
 
2426
* Local data conversion will generate correct deltas. This is a critical
 
2427
  bugfix vs 2.0rc1, and all 2.0rc1 users should upgrade to 2.0rc2 before
 
2428
  converting repositories. (Robert Collins, #422849)
 
2429
 
 
2430
* Network streams now decode adjacent records of the same type into a
 
2431
  single stream, reducing layering churn. (Robert Collins)
 
2432
 
 
2433
* Prevent some kinds of incomplete data from being committed to a 2a
 
2434
  repository, such as revisions without inventories, a missing chk_bytes
 
2435
  record for an inventory, or a missing text referenced by an inventory.
 
2436
  (Andrew Bennetts, #423506, #406687)
 
2437
  
 
2438
Documentation
 
2439
*************
 
2440
 
 
2441
* Fix assertion error about "_remember_remote_is_before" when pushing to
 
2442
  older smart servers.
 
2443
  (Andrew Bennetts, #418931)
 
2444
 
 
2445
* Help on hooks no longer says 'Not deprecated' for hooks that are
 
2446
  currently supported. (Ian Clatworthy, #422415)
 
2447
 
 
2448
* PDF and CHM (Windows HtmlHelp) formats are now supported for the
 
2449
  user documentation. The HTML documentation is better broken up into
 
2450
  topics. (Ian Clatworthy)
 
2451
 
 
2452
* The developer and foreign language documents are now separated
 
2453
  out so that searching in the HTML and CHM files produces more
 
2454
  useful results. (Ian Clatworthy)
 
2455
 
 
2456
* The main table of contents now provides links to the new Migration Docs
 
2457
  and Plugins Guide. (Ian Clatworthy)
 
2458
 
 
2459
 
 
2460
bzr 2.0.0rc1
 
2461
############
 
2462
 
 
2463
:Codename: no worries
 
2464
:2.0.0rc1: 2009-08-26
 
2465
 
 
2466
Compatibility Breaks
 
2467
********************
 
2468
 
 
2469
* The default format for bzr is now ``2a``. This format brings many
 
2470
  significant performance and size improvements. bzr can pull from
 
2471
  any existing repository into a ``2a`` one, but can only transfer
 
2472
  from ``2a`` into ``rich-root`` repositories. The Upgrade guide
 
2473
  has more information about this change. (Robert Collins)
 
2474
 
 
2475
* On Windows auto-detection of Putty's plink.exe is disabled.
 
2476
  Default SSH client for Windows is paramiko. User still can force
 
2477
  usage of plink if explicitly set environment variable BZR_SSH=plink.
 
2478
  (#414743, Alexander Belchenko)
 
2479
 
 
2480
New Features
 
2481
************
 
2482
 
 
2483
* ``bzr branch --switch`` can now switch the checkout in the current directory
 
2484
  to the newly created branch. (Lukáš Lalinský)
 
2485
 
 
2486
Bug Fixes
 
2487
*********
 
2488
 
 
2489
* Further tweaks to handling of ``bzr add`` messages about ignored files.
 
2490
  (Jason Spashett, #76616)
 
2491
 
 
2492
* Fetches were being requested in 'groupcompress' order, but weren't
 
2493
  recombining the groups. Thus they would 'fragment' to get the correct
 
2494
  order, but not 'recombine' to actually benefit from it. Until we get
 
2495
  recombining to work, switching to 'unordered' fetches avoids the
 
2496
  fragmentation. (John Arbash Meinel, #402645)
 
2497
 
 
2498
* Fix a pycurl related test failure on karmic by recognizing an error
 
2499
  raised by newer versions of pycurl.
 
2500
  (Vincent Ladeuil, #306264)
 
2501
 
 
2502
* Fix a test failure on karmic by making a locale test more robust.
 
2503
  (Vincent Ladeuil, #413514)
 
2504
 
 
2505
* Fix IndexError printing CannotBindAddress errors.
 
2506
  (Martin Pool, #286871)
 
2507
 
 
2508
* Fix "Revision ... not present" errors when upgrading stacked branches,
 
2509
  or when doing fetches from a stacked source to a stacked target.
 
2510
  (Andrew Bennetts, #399140)
 
2511
 
 
2512
* ``bzr branch`` of 2a repositories over HTTP is much faster.  bzr now
 
2513
  batches together small fetches from 2a repositories, rather than
 
2514
  fetching only a few hundred bytes at a time.
 
2515
  (Andrew Bennetts, #402657)
 
2516
 
 
2517
Improvements
 
2518
************
 
2519
 
 
2520
* A better description of the platform is shown in crash tracebacks, ``bzr
 
2521
  --version`` and ``bzr selftest``.
 
2522
  (Martin Pool, #409137)
 
2523
 
 
2524
* bzr can now (again) capture crash data through the apport library, 
 
2525
  so that a single human-readable file can be attached to bug reports.
 
2526
  This can be disabled by using ``-Dno_apport`` on the command line, or by
 
2527
  putting ``no_apport`` into the ``debug_flags`` section of
 
2528
  ``bazaar.conf``.
 
2529
  (Martin Pool, Robert Collins, #389328)
 
2530
 
 
2531
* ``bzr push`` locally on windows will no longer give a locking error with
 
2532
  dirstate based formats. (Robert Collins)
 
2533
 
 
2534
* ``bzr shelve`` and ``bzr unshelve`` now work on windows.
 
2535
  (Robert Collins, #305006)
 
2536
 
 
2537
* Commit of specific files no longer prevents using the iter_changes
 
2538
  codepath. On 2a repositories, commit of specific files should now be as
 
2539
  fast, or slightly faster, than a full commit. (Robert Collins)
 
2540
 
 
2541
* The internal core code that handles specific file operations like
 
2542
  ``bzr st FILENAME`` or ``bzr commit FILENAME`` has been changed to
 
2543
  include the parent directories if they have altered, and when a
 
2544
  directory stops being a directory its children are always included. This
 
2545
  fixes a number of causes for ``InconsistentDelta`` errors, and permits
 
2546
  faster commit of specific paths. (Robert Collins, #347649)
 
2547
 
 
2548
Documentation
 
2549
*************
 
2550
 
 
2551
* New developer documentation for content filtering.
 
2552
  (Martin Pool)
 
2553
 
 
2554
API Changes
 
2555
***********
 
2556
 
 
2557
* ``bzrlib.shelf_ui`` has had the ``from_args`` convenience methods of its
 
2558
  classes changed to manage lock lifetime of the trees they open in a way
 
2559
  consistent with reader-exclusive locks. (Robert Collins, #305006)
 
2560
 
 
2561
Testing
 
2562
*******
 
2563
 
 
2564
bzr 1.18.1
 
2565
##########
 
2566
 
 
2567
:Codename:     nein nein nein!
 
2568
:1.18.1:       2009-09-09
 
2569
 
 
2570
This release fixes two small but worthwhile bugs relevant to users on
 
2571
Microsoft Windows: some commands that failed on with locking errors will
 
2572
now work, and a bug that caused poor performance after committing a file
 
2573
with line-ending conversion has now been fixed.  It also fixes a bug in
 
2574
pushing to older servers.
 
2575
 
 
2576
Bug Fixes
 
2577
*********
 
2578
 
 
2579
* Fixed a problem where using content filtering and especially end-of-line
 
2580
  conversion will commit too many copies a file.
 
2581
  (Martin Pool, #415508)
 
2582
 
 
2583
* Fix assertion error about ``_remember_remote_is_before`` in
 
2584
  ``set_tags_bytes`` when pushing to older smart servers.  
 
2585
  (Andrew Bennetts, Alexander Belchenko, #418931)
 
2586
 
 
2587
Improvements
 
2588
************
 
2589
 
 
2590
* ``bzr push`` locally on Windows will no longer give a locking error with
 
2591
  dirstate based formats. (Robert Collins)
 
2592
 
 
2593
* ``bzr shelve`` and ``bzr unshelve`` now work on Windows.
 
2594
  (Robert Collins, #305006)
 
2595
 
 
2596
API Changes
 
2597
***********
 
2598
 
 
2599
* ``bzrlib.shelf_ui`` has had the ``from_args`` convenience methods of its
 
2600
  classes changed to manage lock lifetime of the trees they open in a way
 
2601
  consistent with reader-exclusive locks. (Robert Collins, #305006)
 
2602
 
 
2603
* ``Tree.path_content_summary`` may return a size of None, when called on
 
2604
  a tree with content filtering where the size of the canonical form
 
2605
  cannot be cheaply determined.  (Martin Pool)
 
2606
 
 
2607
* When manually creating transport servers in test cases, a new helper
 
2608
  ``TestCase.start_server`` that registers a cleanup and starts the server
 
2609
  should be used. (Robert Collins)
 
2610
 
 
2611
bzr 1.18
 
2612
########
 
2613
 
 
2614
Compatibility Breaks
 
2615
********************
 
2616
 
 
2617
* Committing directly to a stacked branch from a lightweight checkout will
 
2618
  no longer work. In previous versions this would appear to work but would
 
2619
  generate repositories with insufficient data to create deltas, leading
 
2620
  to later errors when branching or reading from the repository.
 
2621
  (Robert Collins, bug #375013)
 
2622
 
 
2623
New Features
 
2624
************
 
2625
 
 
2626
Bug Fixes
 
2627
*********
 
2628
 
 
2629
* Fetching from 2a branches from a version-2 bzr protocol would fail to
 
2630
  copy the internal inventory pages from the CHK store. This cannot happen
 
2631
  in normal use as all 2a compatible clients and servers support the
 
2632
  version-3 protocol, but it does cause test suite failures when testing
 
2633
  downlevel protocol behaviour. (Robert Collins)
 
2634
 
 
2635
* Fix a test failure on karmic by making a locale test more robust.
 
2636
  (Vincent Ladeuil, #413514)
 
2637
 
 
2638
* Fixed "Pack ... already exists" error when running ``bzr pack`` on a
 
2639
  fully packed 2a repository.  (Andrew Bennetts, #382463)
 
2640
 
 
2641
* Further tweaks to handling of ``bzr add`` messages about ignored files.
 
2642
  (Jason Spashett, #76616)
 
2643
 
 
2644
* Properly handle fetching into a stacked branch while converting the
 
2645
  data, especially when there are also ghosts. The code was filling in
 
2646
  parent inventories incorrectly, and also not handling when one of the
 
2647
  parents was a ghost. (John Arbash Meinel, #402778, #412198)
 
2648
 
 
2649
* ``RemoteStreamSource.get_stream_for_missing_keys`` will fetch CHK
 
2650
  inventory pages when appropriate (by falling back to the vfs stream
 
2651
  source).  (Andrew Bennetts, #406686)
 
2652
 
 
2653
* StreamSource generates rich roots from non-rich root sources correctly
 
2654
  now.  (Andrew Bennetts, #368921)
 
2655
 
 
2656
* When deciding whether a repository was compatible for upgrading or
 
2657
  fetching, we previously incorrectly checked the default repository
 
2658
  format for the bzrdir format, rather than the format that was actually
 
2659
  present on disk.  (Martin Pool, #408824)
 
2660
 
 
2661
Improvements
 
2662
************
 
2663
 
 
2664
* A better description of the platform is shown in crash tracebacks, ``bzr
 
2665
  --version`` and ``bzr selftest``.
 
2666
  (Martin Pool, #409137)
 
2667
 
 
2668
* Cross-format fetches (such as between 1.9-rich-root and 2a) via the
 
2669
  smart server are more efficient now.  They send inventory deltas rather
 
2670
  than full inventories.  The smart server has two new requests,
 
2671
  ``Repository.get_stream_1.19`` and ``Repository.insert_stream_1.19`` to
 
2672
  support this.  (Andrew Bennetts, #374738, #385826)
 
2673
 
 
2674
* Extracting the full ancestry and computing the ``merge_sort`` is now
 
2675
  significantly faster. This effects things like ``bzr log -n0``. (For
 
2676
  example, ``bzr log -r -10..-1 -n0 bzr.dev`` is 2.5s down to 1.0s.
 
2677
  (John Arbash Meinel)
 
2678
 
 
2679
Documentation
 
2680
*************
 
2681
 
 
2682
API Changes
 
2683
***********
 
2684
 
 
2685
Internals
 
2686
*********
 
2687
 
 
2688
* ``-Dstrict_locks`` can now be used to check that read and write locks
 
2689
  are treated properly w.r.t. exclusivity. (We don't try to take an OS
 
2690
  read lock on a file that we already have an OS write lock on.) This is
 
2691
  now set by default for all tests, if you have a test which cannot be
 
2692
  fixed, you can use ``self.thisFailsStrictLockCheck()`` as a
 
2693
  compatibility knob. (John Arbash Meinel)
 
2694
 
 
2695
* InterDifferingSerializer is now only used locally.  Other fetches that
 
2696
  would have used InterDifferingSerializer now use the more network
 
2697
  friendly StreamSource, which now automatically does the same
 
2698
  transformations as InterDifferingSerializer.  (Andrew Bennetts)
 
2699
 
 
2700
* ``KnownGraph`` now has a ``.topo_sort`` and ``.merge_sort`` member which
 
2701
  are implemented in pyrex and significantly faster. This is exposed along
 
2702
  with ``CombinedGraphIndex.find_ancestry()`` as
 
2703
  ``VersionedFiles.get_known_graph_ancestry(keys)``.
 
2704
  (John Arbash Meinel)
 
2705
 
 
2706
* RemoteBranch.open now honours ignore_fallbacks correctly on bzr-v2
 
2707
  protocols. (Robert Collins)
 
2708
 
 
2709
* The index code now has some specialized routines to extract the full
 
2710
  ancestry of a key in a more efficient manner.
 
2711
  ``CombinedGraphIndex.find_ancestry()``. (Time to get ancestry for
 
2712
  bzr.dev drops from 1.5s down to 300ms. For OOo from 33s => 10.5s) (John
 
2713
  Arbash Meinel)
 
2714
 
 
2715
Testing
 
2716
*******
 
2717
 
 
2718
* Install the test ssl certificate and key so that installed bzr
 
2719
  can run the https tests. (Denys Duchier, #392401)
 
2720
  
 
2721
 
 
2722
bzr 1.18rc1
 
2723
###########
 
2724
 
 
2725
:Codename: little traveller
 
2726
:1.18:    2009-08-20
 
2727
:1.18rc1: 2009-08-10
 
2728
 
 
2729
This release of Bazaar marches on towards the 2.0 release in which the 2a
 
2730
'brisbane-core' format becomes generally recommended.  Most of the work in
 
2731
this release now focusses on bug fixes and stabilization, covering both 2a
 
2732
and previous formats.  There is a new text-mode interactive merge feature,
 
2733
a new guide to migration to 2a format in the user documentation, and
 
2734
pushing branches to a smart server is now much faster.  
 
2735
 
 
2736
The Bazaar team decided that 2.0 will be a long-term supported release,
 
2737
with bugfix-only releases based on it continuing for at least six months
 
2738
or until the following stable release.
 
2739
 
 
2740
There are no changes from 1.18rc1 to 1.18.
 
2741
 
 
2742
New Features
 
2743
************
 
2744
 
 
2745
* ``bzr merge --interactive`` applies a user-selected portion of the
 
2746
  merge.  The UI is similar to ``shelve``.  (Aaron Bentley)
 
2747
 
 
2748
* ``bzr reconfigure`` now takes options ``--stacked-on URL`` and
 
2749
  ``--unstacked`` to change stacking of a branch.
 
2750
  (Martin Pool, #391411)
 
2751
 
 
2752
Bug Fixes
 
2753
*********
 
2754
 
 
2755
* Annotating on a stacked branch will now succeed in simple scenarios.
 
2756
  There are still some complex scenarios where it will fail (bug #399884)
 
2757
  (John Arbash Meinel, #393366)
 
2758
 
 
2759
* A progress bar is no longer left dangling when ``bzr selftest``
 
2760
  completes, and the progress bar updates with zero latency so the
 
2761
  displayed test name is always the one that's actually running.
 
2762
  (Martin Pool, #123688)
 
2763
 
 
2764
* Authenticating against an ssh server now uses ``auth_none`` to determine
 
2765
  if password authentication is even supported. This fixes a bug where
 
2766
  users would be prompted for a launchpad password, even though launchpad
 
2767
  only supports publickey authentication. (John Arbash Meinel, #375867)
 
2768
 
 
2769
* BranchBuilder now accepts timezone to avoid test failures in countries far
 
2770
  from GMT. (Vincent Ladeuil, #397716)
 
2771
 
 
2772
* ``bzr commit`` no longer saves the unversioning of missing files until
 
2773
  the commit has completed on the branch. This means that aborting a
 
2774
  commit that found a missing file will leave the tree unedited.
 
2775
  (Robert Collins, #282402)
 
2776
 
 
2777
* ``bzr mv`` no longer takes out branch locks, which allows it to work
 
2778
  when the branch is readonly. (Robert Collins, #216541)
 
2779
 
 
2780
* ``bzr revert .`` no longer generates an InconsistentDelta error when
 
2781
  there are missing subtrees. (Robert Collins, #367632)
 
2782
 
 
2783
* ``bzr send`` now generates valid bundles with ``--2a`` formats. However,
 
2784
  do to internal changes necessary to support this, older clients will
 
2785
  fail when trying to insert them. For newer clients, the bundle can be
 
2786
  used to apply the changes to any rich-root compatible format.
 
2787
  (John Arbash Meinel, #393349)
 
2788
 
 
2789
* Cope with FTP servers that don't support restart/append by falling back
 
2790
  to reading and then rewriting the whole file, such as TahoeLAFS.  (This
 
2791
  fallback may be slow for some access patterns.)  (Nils Durner, #294709)
 
2792
 
 
2793
* Encode the paths in ``mbcs`` encoding on Windows when spawning an
 
2794
  external diff client. This at least allows supporting filenames that are
 
2795
  not ascii, but are present in the current locale. Ideally we would be
 
2796
  able to pass the Unicode path, but that would be client dependent.
 
2797
  (John Arbash Meinel, #382709)
 
2798
 
 
2799
* Fix a compile bug on Solaris having to do with const and
 
2800
  pointer-to-pointers. (John Arbash Meinel, #408441)
 
2801
 
 
2802
* Fixed a NameError that occurs when merging or pulling from a URL that
 
2803
  causes a redirection loop when bzr tries to read a URL as a bundle.
 
2804
  (Andrew Bennetts, #400847)
 
2805
 
 
2806
* Fix ``AttributeError: 'TestUIFactory' object has no attribute 'tick'``
 
2807
  running send and similar commands on 2a formats.
 
2808
  (Martin Pool, #408201)
 
2809
  
 
2810
* Fix crash in some invocations of ``bzr status`` in format 2a.
 
2811
  (Martin Pool, #403523)
 
2812
 
 
2813
* Fixed export to existing directory: if directory is empty then export 
 
2814
  will succeed, otherwise it fails with error.
 
2815
  (Alexander Belchenko, #406174)
 
2816
 
 
2817
* Fixed spurious "Source branch does not support stacking" warning when
 
2818
  pushing. (Andrew Bennetts, #388908)
 
2819
 
 
2820
* Fixed spurious transport activity indicator appearing while tests are
 
2821
  running.  (Martin Pool, #343532)
 
2822
 
 
2823
* Merge now correctly handles empty right-hand revision specs.
 
2824
  (Aaron Bentley, #333961)
 
2825
 
 
2826
* Renames to lexographically lower basenames in trees that have never been
 
2827
  committed to will no longer corrupt the dirstate. This was caused by an
 
2828
  bug in the dirstate update_minimal method. (Robert Collins, #395556)
 
2829
 
 
2830
* Requests for unknown methods no longer cause the smart server to log
 
2831
  lots of backtraces about ``UnknownSmartMethod``, ``do_chunk`` or
 
2832
  ``do_end``.  (Andrew Bennetts, #338561)
 
2833
 
 
2834
* Shelve will not shelve the initial add of the tree root.  (Aaron Bentley)
 
2835
 
 
2836
* Streaming from bzr servers where there is a chain of stacked branches
 
2837
  (A stacked on B stacked on C) will now work. (Robert Collins, #406597)
 
2838
 
 
2839
* The environment variable ``BZR_PROGRESS_BAR`` set to either ``text`` or ``none``
 
2840
  always forces progress bars either on or off respectively.  Otherwise,
 
2841
  they're turned on if ``TERM`` is not ``dumb`` and stderr is a terminal.
 
2842
  bzr always uses the 'text' user interface when run as a command, so
 
2843
  ``BZR_USE_TEXT_UI`` is no longer needed.
 
2844
  (Martin Pool, #339385, #387717)
 
2845
 
 
2846
* The optional ``_knit_load_data_pyx`` C extension was never being
 
2847
  imported.  This caused significant slowdowns when reading data from
 
2848
  repositories.  (Andrew Bennetts, #405653)
 
2849
  
 
2850
* The ``--hardlink`` option to ``branch`` and ``checkout`` is not
 
2851
  supported at the moment on workingtree formats that can do content
 
2852
  filtering.  (See <https://bugs.edge.launchpad.net/bzr/+bug/408193>.)
 
2853
  bzr now says so, rather than just ignoring the option.  (Martin Pool)
 
2854
 
 
2855
* There was a bug in ``osutils.relpath`` that was only triggered on
 
2856
  Windows. Essentially if you were at the root of a drive, and did
 
2857
  something to a branch/repo on another drive, we would go into an
 
2858
  infinite loop while trying to find a 'relative path'.
 
2859
  (John Arbash Meinel, #394227)
 
2860
 
 
2861
* ``WorkingTree4.unversion`` will no longer fail to unversion ids which
 
2862
  were present in a parent tree but renamed in the working tree.
 
2863
  (Robert Collins, #187207)
 
2864
 
 
2865
Improvements
 
2866
************
 
2867
 
 
2868
* Can now rename/move files even if they have been removed from the inventory.
 
2869
  (Marius Kruger)
 
2870
 
 
2871
* Pushing branches with tags via ``bzr://`` and ``bzr+ssh://`` is much
 
2872
  faster, using a new ``Branch.set_tags_bytes`` smart server verb rather
 
2873
  than VFS methods.  For example, pushes of small branches with tags take
 
2874
  11 rather than 18 smart server requests.  (Andrew Bennetts, #398608)
 
2875
 
 
2876
* Sending Ctrl-Break on Windows will now drop you into the debugger, in
 
2877
  the same way that sending Ctrl-\\ does on other platforms.
 
2878
  (John Arbash Meinel)
 
2879
 
 
2880
Documentation
 
2881
*************
 
2882
 
 
2883
* Added Bazaar 2.0 Upgrade Guide. (Ian Clatworthy)
 
2884
 
 
2885
API Changes
 
2886
***********
 
2887
 
 
2888
* ``CLIUIFactory`` is deprecated; use ``TextUIFactory`` instead if you
 
2889
  need to subclass or create a specific class, or better yet the existing
 
2890
  ``make_ui_for_terminal``.  ``SilentUIFactory`` is clarified to do no
 
2891
  user interaction at all, rather than trying to read from stdin but not
 
2892
  writing any output, which would be strange if reading prompts or
 
2893
  passwords.  (Martin Pool)
 
2894
 
 
2895
* New TransformPreview.commit() allows committing without a working tree.
 
2896
  (Aaron Bentley)
 
2897
 
 
2898
* ``pb`` parameter to ``TextTestResult`` is deprecated and ignored.
 
2899
  (Martin Pool)
 
2900
 
 
2901
* ProgressTasks now prefer to talk direct to their ProgressView not to the
 
2902
  UIFactory. 
 
2903
  (Martin Pool)
 
2904
 
 
2905
* ``WorkingTree._check`` now requires a references dict with keys matching
 
2906
  those returned by ``WorkingTree._get_check_refs``. (Robert Collins)
 
2907
 
 
2908
Internals
 
2909
*********
 
2910
 
 
2911
* ``CHKInventory.path2id`` uses the parent_id to basename hash to avoid
 
2912
  reading the entries along the path, reducing work to lookup ids from
 
2913
  paths. (Robert Collins)
 
2914
 
 
2915
* ``CHKMap.apply_delta`` now raises ``InconsistentDelta`` if a delta adds
 
2916
  as new a key which was already mapped. (Robert Collins)
 
2917
 
 
2918
* Inventory delta application catches more cases of corruption and can
 
2919
  prevent corrupt deltas from affecting consistency of data structures on
 
2920
  disk. (Robert Collins)
 
2921
 
 
2922
* --subunit support now adds timestamps if the subunit version supports
 
2923
  it. (Robert Collins)
 
2924
 
 
2925
* The Windows all-in-one installer now bundles the PyQt image format
 
2926
  plugins, which allows previewing more images as part of 'qdiff'.
 
2927
  (Alexander Belchenko)
 
2928
 
 
2929
 
 
2930
Testing
 
2931
*******
 
2932
 
 
2933
* Merge directive cherrypick tests must use the same root id.
 
2934
  (Martin Pool, #409684)
 
2935
 
 
2936
* Spurious failure in ``check`` tests on rich-root formats fixed.
 
2937
  (Martin Pool, #408199)
 
2938
 
 
2939
* The ``bzrlib.tests.TextTestRunner`` will no longer call
 
2940
  ``countTestsCases`` on the test being run. Progress information is
 
2941
  instead handled by having the test passed in call ``result.progress``
 
2942
  before running its contents. This improves the behaviour when using
 
2943
  ``TextTestRunner`` with test suites that don't support
 
2944
  ``countTestsCases``. (Robert Collins)
 
2945
 
 
2946
 
 
2947
bzr 1.17.1 (unreleased)
 
2948
#######################
 
2949
 
 
2950
Bug Fixes
 
2951
*********
 
2952
 
 
2953
* The optional ``_knit_load_data_pyx`` C extension was never being
 
2954
  imported.  This caused significant slowdowns when reading data from
 
2955
  knit format repositories.  (Andrew Bennetts, #405653)
 
2956
  
 
2957
 
 
2958
bzr 1.17
 
2959
########
 
2960
:Codename: so-late-its-brunch
 
2961
:1.17rc1: 2009-07-13
 
2962
:1.17: 2009-07-20
 
2963
 
 
2964
 
 
2965
Bazaar continues to blaze a straight and shining path to the 2.0 release and
 
2966
the elevation of the ``2a`` beta format to the full glory of "supported and
 
2967
stable".
 
2968
 
 
2969
Highlights in this release include greatly reduced memory consumption during
 
2970
commits, faster ``ls``, faster ``annotate``, faster network operations if
 
2971
you're specifying a revision number and the final destruction of those
 
2972
annoying progress bar artifacts.
 
2973
 
 
2974
 
 
2975
Changes from 1.17rc1 to 1.17final
 
2976
*********************************
 
2977
 
 
2978
* Change an extension to call the python ``frozenset()`` rather than the C
 
2979
  api ``PyFrozenSet_New``. It turns out that python2.4 did not expose the
 
2980
  C api. (John Arbash Meinel, #399366)
 
2981
 
 
2982
* Fixes for the Makefile and the rename of ``generate_docs.py`` to
 
2983
  ``tools/generate_docs.py`` to allow everything to be built on Windows.
 
2984
  (John Arbash Meinel, #399356)
 
2985
 
 
2986
* ``bzr serve`` once again applies a ``ChrootServer`` to the given
 
2987
  directory before serving it. (Andrew Bennetts, #400535)
 
2988
 
 
2989
 
 
2990
Compatibility Breaks
 
2991
********************
 
2992
 
 
2993
* ``bzr register-branch`` from the Launchpad plugin now refers to "project"
 
2994
  instead of "product" which is the correct Launchpad terminology.  The
 
2995
  --product option is deprecated and users should switch to using --project.
 
2996
  (Neil Martinsen-Burrell, #238764)
 
2997
 
 
2998
 
 
2999
New Features
 
3000
************
 
3001
 
 
3002
* ``bzr push`` now aborts if uncommitted changes (including pending merges)
 
3003
  are present in the working tree (if one is present) and no revision is
 
3004
  specified. The configuration option ``push_strict`` can be used to set the
 
3005
  default for this behavior.  (Vincent Ladeuil, #284038, #322808, #65286)
 
3006
 
 
3007
* ``bzr revno`` and ``bzr revision-info`` now have a ``--tree`` option to
 
3008
  show revision info for the working tree instead of the branch.
 
3009
  (Matthew Fuller, John Arbash Meinel)
 
3010
 
 
3011
* ``bzr send`` now aborts if uncommitted changes (including pending merges)
 
3012
  are present in the working tree and no revision is specified. The
 
3013
  configuration option ``send_strict`` can be used to set the default for this
 
3014
  behavior.
 
3015
  (Vincent Ladeuil, #206577)
 
3016
 
 
3017
* ``bzr switch --create-branch/-b`` can now be used to create and switch
 
3018
  to a new branch. Supplying a name without a ``/`` will create the branch
 
3019
  relative to the existing branch. (similar to how ``bzr switch name``
 
3020
  works when the branch already exists.) (John Arbash Meinel)
 
3021
 
 
3022
 
 
3023
Bug Fixes
 
3024
*********
 
3025
 
 
3026
* Accept uppercase "Y/N" to prompts such as from break lock. 
 
3027
  (#335182, Tim Powell, Martin Pool)
 
3028
 
 
3029
* Add documentation about diverged branches and how to fix them in the
 
3030
  centralized workflow with local commits.  Mention ``bzr help
 
3031
  diverged-branches`` when a push fails because the branches have
 
3032
  diverged.  (Neil Martinsen-Burrell, #269477)
 
3033
 
 
3034
* Annotate would sometimes 'latch on' to trivial lines, causing important
 
3035
  lines to be incorrectly annotated. (John Arbash Meinel, #387952)
 
3036
 
 
3037
* Automatic format upgrades triggered by default stacking policies on a
 
3038
  1.16rc1 (or later) smart server work again.
 
3039
  (Andrew Bennetts, #388675)
 
3040
 
 
3041
* Avoid progress bar artifacts being left behind on the screen.
 
3042
  (Martin Pool, #321935)
 
3043
 
 
3044
* Better message in ``bzr split`` error suggesting a rich root format.
 
3045
  (Neil Martinsen-Burrell, #220067)
 
3046
 
 
3047
* ``Branch.set_append_revisions_only`` now works with branches on a smart
 
3048
  server. (Andrew Bennetts, #365865)
 
3049
 
 
3050
* By default, ``bzr branch`` will fail if the target directory exists, but
 
3051
  does not already have a control directory.  The flag ``--use-existing-dir``
 
3052
  will allow operation to proceed.  (Alexander Belchenko, #307554)
 
3053
 
 
3054
* ``bzr ls DIR --from-root`` now shows only things in DIR, not everything.
 
3055
  (Ian Clatworthy)
 
3056
 
 
3057
* Fetch between repositories does not error if they have inconsistent data
 
3058
  that should be irrelevant to the fetch operation. (Aaron Bentley)
 
3059
 
 
3060
* Fix ``AttributeError`` exception when reconfiguring lightweight checkout 
 
3061
  of a remote repository.
 
3062
  (Jelmer Vernooij, #332194)
 
3063
 
 
3064
* Fix bug in decoding v3 smart server messages when receiving multiple
 
3065
  lots of excess bytes after an end-of-message.
 
3066
  (Andrew Bennetts)
 
3067
 
 
3068
* Force deletion of readonly files during merge, update and other tree
 
3069
  transforms.
 
3070
  (Craig Hewetson, Martin Pool, #218206)
 
3071
 
 
3072
* Force socket shutdown in threaded http test servers to avoid client hangs
 
3073
  (pycurl).  (Vincent Ladeuil, #383920).
 
3074
 
 
3075
* ``LRUCache`` will maintain the linked list pointers even if a nodes
 
3076
  cleanup function raises an exception. (John Arbash Meinel, #396838)
 
3077
 
 
3078
* Progress bars are now suppressed again when the environment variable
 
3079
  ``BZR_PROGRESS_BAR`` is set to ``none``.
 
3080
  (Martin Pool, #339385)
 
3081
 
 
3082
* Reduced memory consumption during ``bzr commit`` of large files. For
 
3083
  pre 2a formats, should be down to ~3x the size of a file.
 
3084
  For ``--2a`` format repositories, it is down to the size of the file
 
3085
  content plus the size of the compressed text.  Related to bug #109114.
 
3086
  (John Arbash Meinel)
 
3087
 
 
3088
* Set hidden attribute on .bzr directory below unicode path should never
 
3089
  fail with error. The operation should succeed even if bzr unable to set 
 
3090
  the attribute.  (Alexander Belchenko, related to bug #335362).
 
3091
  
 
3092
* Stacking will no longer accept requests to stack on the same
 
3093
  branch/repository. Existing branches that incorrectly reference the same
 
3094
  repository in a stacking configuration will now raise
 
3095
  UnstackableLocationError when the branch is opened. This can be fixed by
 
3096
  removing the stacking location inside ``.bzr/branch``.
 
3097
  (Robert Collins, #376243)
 
3098
 
 
3099
* The ``log+`` decorator, useful in debugging or profiling, could cause
 
3100
  "AttributeError: 'list' object has no attribute 'next'".  This is now
 
3101
  fixed.  The log decorator no longer shows the elapsed time or transfer
 
3102
  rate because they're available in the log prefixes and the transport
 
3103
  activity display respectively.
 
3104
  (Martin Pool, #340347)
 
3105
 
 
3106
* Unshelve works correctly when multiple zero-length files are present on
 
3107
  the shelf. (Aaron Bentley, #363444)
 
3108
 
 
3109
* Progress bars no longer show the network transport scheme or direction.
 
3110
  (Martin Pool)
 
3111
 
 
3112
* launchpad-login now respects the 'verbose' option.
 
3113
  (Jonathan Lange, #217031)
 
3114
 
 
3115
 
 
3116
Internals
 
3117
*********
 
3118
 
 
3119
* ``bzrlib.user_encoding`` is now officially deprecated. It is not
 
3120
  possible to write a deprecation wrapper, but the variable will be
 
3121
  removed in the near future. Use ``bzrlib.osutils.get_user_encoding()``
 
3122
  instead. (Alexander Belchenko)
 
3123
 
 
3124
* Command lookup has had hooks added. ``bzrlib.Command.hooks`` has
 
3125
  three new hook points: ``get_command``, ``get_missing_command`` and
 
3126
  ``list_commands``, which allow just-in-time command name provision
 
3127
  rather than requiring all command names be known a-priori.
 
3128
  (Robert Collins)
 
3129
 
 
3130
* ``get_app_path`` from win32utils.py now supports REG_EXPAND_SZ data type
 
3131
  and can read path to wordpad.exe. (Alexander Belchenko, #392046)
 
3132
 
 
3133
* ``graph.KnownGraph`` has been added. This is a class that can give
 
3134
  answers to ``heads()`` very quickly. However, it has the assumption that
 
3135
  the whole graph has already been loaded. This is true during
 
3136
  ``annotate`` so it is used there with good success (as much as 2x faster
 
3137
  for files with long ancestry and 'cherrypicked' changes.)
 
3138
  (John Arbash Meinel, Vincent Ladeuil)
 
3139
 
 
3140
* OS file locks are now taken out using ``CreateFile`` rather than
 
3141
  ``LockFileEx`` on Windows. The locking remains exclusive with
 
3142
  ``LockFileEx`` but now it also works on older versions of Windows (such
 
3143
  as Win98). (Martin <gzlist>)
 
3144
 
 
3145
* pack <=> pack fetching is now done via a ``PackStreamSource`` rather
 
3146
  than the ``Packer`` code. The user visible change is that we now
 
3147
  properly fetch the minimum number of texts for non-smart fetching.
 
3148
  (John Arbash Meinel)
 
3149
 
 
3150
 
 
3151
* ``VersionedFiles._add_text`` is a new api that lets us insert text into
 
3152
  the repository as a single string, rather than a list of lines. This can
 
3153
  improve memory overhead and performance of committing large files.
 
3154
  (Currently a private api, used only by commit). (John Arbash Meinel)
 
3155
 
 
3156
 
 
3157
Improvements
 
3158
************
 
3159
 
 
3160
* ``bzr annotate`` can now be significantly faster. The time for
 
3161
  ``bzr annotate NEWS`` is down to 7s from 22s in 1.16. Files with long
 
3162
  histories and lots of 'duplicate insertions' will be improved more than
 
3163
  others. (John Arbash Meinel, Vincent Ladeuil)
 
3164
 
 
3165
* ``bzr ls`` is now faster. On OpenOffice.org, the time drops from 2.4
 
3166
  to 1.1 seconds. The improvement for ``bzr ls -r-1`` is more
 
3167
  substantial dropping from 54.3 to 1.1 seconds. (Ian Clatworthy)
 
3168
 
 
3169
* Improve "Path(s) are not versioned" error reporting for some commands.
 
3170
  (Benoît PIERRE)
 
3171
 
 
3172
* Initial commit performance in ``--2a`` repositories has been improved by
 
3173
  making it cheaper to build the initial CHKMap. (John Arbash Meinel)
 
3174
 
 
3175
* Resolving a revno to a revision id on a branch accessed via ``bzr://``
 
3176
  or ``bzr+ssh://`` is now much faster and involves no VFS operations.
 
3177
  This speeds up commands like ``bzr pull -r 123``.  (Andrew Bennetts)
 
3178
 
 
3179
* ``revision-info`` now properly aligns the revnos/revids in the output
 
3180
  and doesn't traceback when given revisions not in the current branch.
 
3181
  Performance is also significantly improved when requesting multiple revs
 
3182
  at once.  (Matthew Fuller, John Arbash Meinel)
 
3183
 
 
3184
* Tildes are no longer escaped by Transports. (Andy Kilner)
 
3185
 
 
3186
 
 
3187
Documentation
 
3188
*************
 
3189
 
 
3190
* Avoid bad text wrapping in generated documentation.  Slightly better
 
3191
  formatting in the user reference.
 
3192
  (Martin Pool, #249908)
 
3193
 
 
3194
* Minor clarifications to the help for End-Of-Line conversions.
 
3195
  (Ian Clatworthy)
 
3196
 
 
3197
API Changes
 
3198
***********
 
3199
 
 
3200
* Removed overspecific error class ``InvalidProgressBarType``.
 
3201
  (Martin Pool)
 
3202
 
 
3203
* The method ``ProgressView._show_transport_activity`` is now
 
3204
  ``show_transport_activity`` because it's part of the contract between
 
3205
  this class and the UI.  (Martin Pool)
 
3206
 
 
3207
 
 
3208
bzr 1.16.1
 
3209
##########
 
3210
 
 
3211
:Released: 2009-06-26
 
3212
 
 
3213
End user testing of the 2a format revealed two serious bugs. The first,
 
3214
#365615, caused bzr to raise AbsentContentFactory errors when autopacking.
 
3215
This meant that commits or pushes to 2a-format repositories failed
 
3216
intermittently.
 
3217
 
 
3218
The second bug, #390563, caused the smart server to raise AbsentContentFactory
 
3219
when streaming 2a stacked 2a-format branches. This particularly affected
 
3220
branches stored on Launchpad in the 2a format.
 
3221
 
 
3222
Both of these bugs cause command failures only, neither of them cause data
 
3223
corruption or data loss. And, of course, both of these bugs are now fixed.
 
3224
 
 
3225
Bug Fixes
 
3226
*********
 
3227
 
 
3228
* We now properly request a more minimal set of file texts when fetching
 
3229
  multiple revisions. (Robert Collins, John Arbash Meinel, #390563)
 
3230
 
 
3231
* Repositories using CHK pages (which includes the new 2a format) will no
 
3232
  longer error during commit or push operations when an autopack operation
 
3233
  is triggered. (Robert Collins, #365615)
 
3234
 
 
3235
* ``chk_map.iter_interesting_nodes`` now properly uses the *intersection*
 
3236
  of referenced nodes rather than the *union* to determine what
 
3237
  uninteresting pages we still need to look at. Prior to this,
 
3238
  incrementally pushing to stacked branch would push the minimal data, but
 
3239
  fetching everything would request extra texts. There are some unhandled
 
3240
  cases wrt trees of different depths, but this fixes the common cases.
 
3241
  (Robert Collins, John Arbash Meinel, #390563)
 
3242
 
 
3243
* ``GroupCompress`` repositories now take advantage of the pack hints
 
3244
  parameter to permit cross-format fetching to incrementally pack the
 
3245
  converted data. (Robert Collins)
 
3246
 
 
3247
* ``Repository.commit_write_group`` now returns opaque data about what
 
3248
  was committed, for passing to the ``Repository.pack``. Repositories
 
3249
  without atomic commits will still return None. (Robert Collins)
 
3250
 
 
3251
* ``Repository.pack`` now takes an optional ``hint`` parameter
 
3252
  which will support doing partial packs for repositories that can do
 
3253
  that. (Robert Collins)
 
3254
 
 
3255
* RepositoryFormat has a new attribute 'pack_compresses' which is True
 
3256
  when doing a pack operation changes the compression of content in the
 
3257
  repository. (Robert Collins)
 
3258
 
 
3259
* ``StreamSink`` and ``InterDifferingSerialiser`` will call
 
3260
  ``Repository.pack`` with the hint returned by
 
3261
  ``Repository.commit_write_group`` if the formats were different and the
 
3262
  repository can increase compression by doing a pack operation.
 
3263
  (Robert Collins, #376748)
 
3264
 
 
3265
 
 
3266
bzr 1.16
 
3267
########
 
3268
:Codename: yesterday-in-california
 
3269
:1.16rc1: 2009-06-11
 
3270
:1.16: 2009-06-18
 
3271
 
 
3272
This version of Bazaar contains the beta release of the new ``2a`` repository
 
3273
format, suitable for testing by fearless, advanced users. This format or an
 
3274
updated version of it will become the default format in Bazaar 2.0. Please
 
3275
read the NEWS entry before even thinking about upgrading to the new format.
 
3276
 
 
3277
Also included are speedups for many operations on huge projects, a bug fix for
 
3278
pushing stacked new stacked branches to smart servers and the usual bevy of
 
3279
bug fixes and improvements.
 
3280
 
 
3281
 
 
3282
Changes from 1.16rc1 to 1.16final
 
3283
*********************************
 
3284
 
 
3285
* Fix the nested tree flag check so that upgrade from development formats to
 
3286
  2a can work correctly.
 
3287
  (Jelmer Vernooij, #388727)
 
3288
 
 
3289
* Automatic format upgrades triggered by default stacking policies on a
 
3290
  1.16rc1 (or later) smart server work again.
 
3291
  (Andrew Bennetts, #388675)
 
3292
 
 
3293
 
 
3294
Compatibility Breaks
 
3295
********************
 
3296
 
 
3297
* Display prompt on stderr (instead of stdout) when querying users so
 
3298
  that the output of commands can be safely redirected.
 
3299
  (Vincent Ladeuil, #376582)
 
3300
 
 
3301
 
 
3302
New Features
 
3303
************
 
3304
 
 
3305
* A new repository format ``2a`` has been added.  This is a beta release
 
3306
  of the brisbane-core (aka group-compress) project.  This format now
 
3307
  suitable for wider testing by advanced users willing to deal with some
 
3308
  bugs.  We would appreciate test reports, either positive or negative.
 
3309
  Format 2a is substantially smaller and faster for many operations on
 
3310
  many trees.  This format or an updated version will become the default
 
3311
  in bzr 2.0.
 
3312
 
 
3313
  This is a rich-root format, so this repository format can be used with
 
3314
  bzr-svn.  Bazaar branches in previous non-rich-root formats can be
 
3315
  converted (including by merge, push and pull) to format 2a, but not vice
 
3316
  versa.  We recommend upgrading previous development formats to 2a.
 
3317
 
 
3318
  Upgrading to this format can take considerable time because it expands
 
3319
  and more concisely repacks the full history.
 
3320
 
 
3321
  If you use stacked branches, you must upgrade the stacked branches
 
3322
  before the stacked-on branches.  (See <https://bugs.launchpad.net/bugs/374735>)
 
3323
 
 
3324
* ``--development7-rich-root`` is a new dev format, similar to ``--dev6``
 
3325
  but using a Revision serializer using bencode rather than XML.
 
3326
  (Jelmer Vernooij, John Arbash Meinel)
 
3327
 
 
3328
* mail_client=claws now supports --body (and message body hooks).  Also uses
 
3329
  configured from address.  (Barry Warsaw)
 
3330
 
 
3331
Improvements
 
3332
************
 
3333
 
 
3334
 
 
3335
* ``--development6-rich-root`` can now stack. (Modulo some smart-server
 
3336
  bugs with stacking and non default formats.)
 
3337
  (John Arbash Meinel, #373455)
 
3338
 
 
3339
* ``--development6-rich-root`` delays generating a delta index for the
 
3340
  first object inserted into a group. This has a beneficial impact on
 
3341
  ``bzr commit`` since each committed texts goes to its own group. For
 
3342
  committing a 90MB file, it drops peak memory by about 200MB, and speeds
 
3343
  up commit from 7s => 4s. (John Arbash Meinel)
 
3344
 
 
3345
* Numerous operations are now faster for huge projects, i.e. those
 
3346
  with a large number of files and/or a large number of revisions,
 
3347
  particularly when the latest development format is used. These
 
3348
  operations (and improvements on OpenOffice.org) include:
 
3349
 
 
3350
  * branch in a shared repository (2X faster)
 
3351
  * branch --no-tree (100X faster)
 
3352
  * diff (2X faster)
 
3353
  * tags (70X faster)
 
3354
 
 
3355
  (Ian Clatworthy)
 
3356
 
 
3357
* Pyrex version of ``bencode`` support. This provides optimized support
 
3358
  for both encoding and decoding, and is now found at ``bzrlib.bencode``.
 
3359
  ``bzrlib.utils.bencode`` is now deprecated.
 
3360
  (Alexander Belchenko, Jelmer Vernooij, John Arbash Meinel)
 
3361
 
 
3362
 
 
3363
Bug Fixes
 
3364
*********
 
3365
 
 
3366
* Bazaar can now pass attachment files to the mutt email client.
 
3367
  (Edwin Grubbs, #384158)
 
3368
 
 
3369
* Better message in ``bzr add`` output suggesting using ``bzr ignored`` to
 
3370
  see which files can also be added.  (Jason Spashett, #76616)
 
3371
 
 
3372
* ``bzr pull -r 123`` from a stacked branch on a smart server no longer fails.
 
3373
  Also, the ``Branch.revision_history()`` API now works in the same
 
3374
  situation.  (Andrew Bennetts, #380314)
 
3375
  
 
3376
* ``bzr serve`` on Windows no longer displays a traceback simply because a
 
3377
  TCP client disconnected. (Andrew Bennetts)
 
3378
 
 
3379
* Clarify the rules for locking and fallback repositories. Fix bugs in how
 
3380
  ``RemoteRepository`` was handling fallbacks along with the
 
3381
  ``_real_repository``. (Andrew Bennetts, John Arbash Meinel, #375496)
 
3382
 
 
3383
* Fix a small bug with fetching revisions w/ ghosts into a new stacked
 
3384
  branch. Not often triggered, because it required ghosts to be part of
 
3385
  the fetched revisions, not in the stacked-on ancestry.
 
3386
  (John Arbash Meinel)
 
3387
 
 
3388
* Fix status and commit to work with content filtered trees, addressing
 
3389
  numerous bad bugs with line-ending support. (Ian Clatworthy, #362030)
 
3390
 
 
3391
* Fix problem of "directory not empty" when contending for a lock over
 
3392
  sftp.  (Martin Pool, #340352)
 
3393
 
 
3394
* Fix rule handling so that eol is optional, not mandatory.
 
3395
  (Ian Clatworthy, #379370)
 
3396
 
 
3397
* Pushing a new stacked branch to a 1.15 smart server was broken due to a
 
3398
  bug in the ``BzrDirFormat.initialize_ex`` smart verb.  This is fixed in
 
3399
  1.16, but required changes to the network protocol, so the
 
3400
  ``BzrDirFormat.initialize_ex`` verb has been removed and replaced with a
 
3401
  corrected ``BzrDirFormat.initialize_ex_1.16`` verb.  1.15 clients will
 
3402
  still work with a 1.16 server as they will fallback to slower (and
 
3403
  bug-free) methods.
 
3404
  (Jonathan Lange, Robert Collins, Andrew Bennetts, #385132)
 
3405
 
 
3406
* Reconcile can now deal with text revisions that originated in revisions 
 
3407
  that are ghosts. (Jelmer Vernooij, #336749)
 
3408
 
 
3409
* Support cloning of branches with ghosts in the left hand side history.
 
3410
  (Jelmer Vernooij, #248540)
 
3411
 
 
3412
* The ''bzr diff'' now catches OSError from osutils.rmtree and logs a
 
3413
  helpful message to the trace file, unless the temp directory really was
 
3414
  removed (which would be very strange).  Since the diff operation has
 
3415
  succeeded from the user's perspective, no output is written to stderr 
 
3416
  or stdout.  (Maritza Mendez, #363837)
 
3417
 
 
3418
* Translate errors received from a smart server in response to a
 
3419
  ``BzrDirFormat.initialize`` or ``BzrDirFormat.initialize_ex`` request.
 
3420
  This was causing tracebacks even for mundane errors like
 
3421
  ``PermissionDenied``.  (Andrew Bennetts, #381329)
 
3422
 
 
3423
Documentation
 
3424
*************
 
3425
 
 
3426
* Added directory structure and started translation of docs in Russian.
 
3427
  (Alexey Shtokalo, Alexander Iljin, Alexander Belchenko, Dmitry Vasiliev,
 
3428
  Volodymyr Kotulskyi)
 
3429
 
 
3430
API Changes
 
3431
***********
 
3432
 
 
3433
* Added osutils.parent_directories(). (Ian Clatworthy)
 
3434
 
 
3435
* ``bzrlib.progress.ProgressBar``, ``ChildProgress``, ``DotsProgressBar``,
 
3436
  ``TTYProgressBar`` and ``child_progress`` are now deprecated; use
 
3437
  ``ui_factory.nested_progress_bar`` instead.  (Martin Pool)
 
3438
 
 
3439
* ``graph.StackedParentsProvider`` is now a public API, replacing
 
3440
  ``graph._StackedParentsProvider``. The api is now considered stable and ready
 
3441
  for external users. (Gary van der Merwe)
 
3442
 
 
3443
* ``bzrlib.user_encoding`` is deprecated in favor of
 
3444
  ``get_user_encoding``.  (Alexander Belchenko)
 
3445
 
 
3446
* TreeTransformBase no longer assumes that limbo is provided via disk.
 
3447
  DiskTreeTransform now provides disk functionality.  (Aaron Bentley)
 
3448
 
 
3449
Internals
 
3450
*********
 
3451
 
 
3452
* Remove ``weave.py`` script for accessing internals of old weave-format
 
3453
  repositories.  (Martin Pool)
 
3454
 
 
3455
Testing
 
3456
*******
 
3457
 
 
3458
* ``make check`` no longer repeats the test run in ``LANG=C``.
 
3459
  (Martin Pool, #386180)
 
3460
 
 
3461
* The number of cores is now correctly detected on OSX. (John Szakmeister)
 
3462
 
 
3463
* The number of cores is also detected on Solaris and win32. (Vincent Ladeuil)
 
3464
 
 
3465
* The number of cores is also detected on FreeBSD. (Matthew Fuller)
 
3466
 
 
3467
 
 
3468
bzr 1.15
 
3469
########
 
3470
:1.15rc1: 2009-05-16
 
3471
:1.15: 2009-05-22
 
3472
:1.15.1: 2009-06-09
 
3473
 
 
3474
The smart server will no longer raise 'NoSuchRevision' when streaming content
 
3475
with a size mismatch in a reconstructed graph search. New command ``bzr
 
3476
dpush``. Plugins can now define their own annotation tie-breaker when two
 
3477
revisions introduce the exact same line.
 
3478
 
 
3479
Changes from 1.15.1 to 1.15.2
 
3480
*****************************
 
3481
 
 
3482
* Use zdll on Windows to build ``_chk_map_pyx`` extension.
 
3483
  (Alexander Belchenko)
 
3484
 
 
3485
Changes from 1.15final to 1.15.1
 
3486
*********************************
 
3487
 
 
3488
* Translate errors received from a smart server in response to a
 
3489
  ``BzrDirFormat.initialize`` or ``BzrDirFormat.initialize_ex`` request.
 
3490
  This was causing tracebacks even for mundane errors like
 
3491
  ``PermissionDenied``.  (Andrew Bennetts, #381329)
 
3492
 
 
3493
Changes from 1.15rc1 to 1.15final
 
3494
*********************************
 
3495
 
 
3496
* No changes
 
3497
 
 
3498
Compatibility Breaks
 
3499
********************
 
3500
 
 
3501
* ``bzr ls`` is no longer recursive by default. To recurse, use the
 
3502
  new ``-R`` option. The old ``--non-recursive`` option has been removed.
 
3503
  If you alias ``ls`` to ``ls -R``, you can disable recursion using
 
3504
  ``--no-recursive`` instead.  (Ian Clatworthy)
 
3505
 
 
3506
New Features
 
3507
************
 
3508
 
 
3509
* New command ``bzr dpush`` that can push changes to foreign 
 
3510
  branches (svn, git) without setting custom bzr-specific metadata.
 
3511
  (Jelmer Vernooij)
 
3512
 
 
3513
* The new development format ``--development6-rich-root`` now supports
 
3514
  stacking. We chose not to use a new format marker, since old clients
 
3515
  will just fail to open stacked branches, the same as if we used a new
 
3516
  format flag. (John Arbash Meinel, #373455)
 
3517
 
 
3518
* Plugins can now define their own annotation tie-breaker when two revisions
 
3519
  introduce the exact same line. See ``bzrlib.annotate._break_annotation_tie``
 
3520
  Be aware though that this is temporary, private (as indicated by the leading
 
3521
  '_') and a first step to address the problem. (Vincent Ladeuil, #348459)
 
3522
 
 
3523
* New command ``bzr dpush`` that can push changes to foreign 
 
3524
  branches (svn, git) without setting custom bzr-specific metadata.
 
3525
  (Jelmer Vernooij)
 
3526
 
 
3527
* ``bzr send`` will now check the ``child_submit_format`` setting in
 
3528
  the submit branch to determine what format to use, if none was 
 
3529
  specified on the command-line.  (Jelmer Vernooij)
 
3530
 
 
3531
Improvements
 
3532
************
 
3533
 
 
3534
* -Dhpss output now includes the number of VFS calls made to the remote
 
3535
  server. (Jonathan Lange)
 
3536
 
 
3537
* ``--coverage`` works for code running in threads too.
 
3538
  (Andrew Bennets, Vincent Ladeuil)
 
3539
 
 
3540
* ``bzr pull`` now has a ``--local`` option to only make changes to the
 
3541
  local branch, and not the bound master branch.
 
3542
  (Gary van der Merwe, #194716)
 
3543
 
 
3544
* ``bzr rm *`` is now as fast as ``bzr rm * --keep``. (Johan Walles, #180116)
 
3545
 
 
3546
Bug Fixes
 
3547
*********
 
3548
 
 
3549
* Adding now works properly when path contains a symbolic link.
 
3550
  (Geoff Bache, #183831)
 
3551
 
 
3552
* An error is now raised for unknown eol values. (Brian de Alwis, #358199)
 
3553
 
 
3554
* ``bzr merge --weave`` will now generate a conflict if one side deletes a
 
3555
  line, and the other side modifies the line. (John Arbash Meinel, #328171)
 
3556
 
 
3557
* ``bzr reconfigure --standalone`` no longer raises IncompatibleRepositories.
 
3558
  (Martin von Gagern, #248932)
 
3559
 
 
3560
* ``bzr send`` works to send emails again using MAPI.
 
3561
  (Neil Martinsen-Burrell, #346998)
 
3562
 
 
3563
* Check for missing parent inventories in StreamSink.  This prevents
 
3564
  incomplete stacked branches being created by 1.13 bzr:// and
 
3565
  bzr+ssh:// clients (which have bug #354036).  Instead, the server now
 
3566
  causes those clients to send the missing records.  (Andrew Bennetts)
 
3567
 
 
3568
* Correctly handle http servers proposing multiple authentication schemes.
 
3569
  (Vincent Ladeuil, #366107)
 
3570
 
 
3571
* End-Of-Line content filters are now loaded correctly.
 
3572
  (Ian Clatworthy, Brian de Alwis, #355280)
 
3573
 
 
3574
* Fix a bug in the pure-python ``GroupCompress`` code when handling copies
 
3575
  longer than 64KiB. (John Arbash Meinel, #364900)
 
3576
 
 
3577
* Fix TypeError in running ``bzr break-lock`` on some URLs.
 
3578
  (Alexander Belchenko, Martin Pool, #365891)
 
3579
 
 
3580
* Non-recursive ``bzr ls`` now works properly when a path is specified.
 
3581
  (Jelmer Vernooij, #357863)
 
3582
 
 
3583
* ssh usernames (defined in ~/.ssh/config) are honoured for bzr+ssh connections.
 
3584
  (Vincent Ladeuil, #367726)
 
3585
 
 
3586
* Several bugs related to unicode symlinks have been fixed and the test suite
 
3587
  enhanced to better catch regressions for them. (Vincent Ladeuil)
 
3588
 
 
3589
* The smart server will no longer raise 'NoSuchRevision' when streaming
 
3590
  content with a size mismatch in a reconstructed graph search: it assumes
 
3591
  that the client will make sure it is happy with what it got, and this
 
3592
  sort of mismatch is normal for stacked environments.
 
3593
  bzr 1.13.0/1 will stream from unstacked branches only - in that case not
 
3594
  getting all the content expected would be a bug. However the graph
 
3595
  search is how we figured out what we wanted, so a mismatch is both odd
 
3596
  and unrecoverable without starting over, and starting over will end up
 
3597
  with the same data as if we just permitted the mismatch. If data is
 
3598
  gc'd, doing a new search will find only the truncated data, so sending
 
3599
  only the truncated data seems reasonable. bzr versions newer than this
 
3600
  will stream from stacked branches and check the stream to find missing
 
3601
  content in the stacked-on branch, and thus will handle the situation
 
3602
  implicitly.  (Robert Collins, #360791)
 
3603
 
 
3604
* Upgrading to, or fetching into a 'rich-root' format will now correctly
 
3605
  set the root data the same way that reconcile does.
 
3606
  (Robert Collins, #368921)
 
3607
 
 
3608
* Using unicode Windows API to obtain command-line arguments.
 
3609
  (Alexander Belchenko, #375934)
 
3610
 
 
3611
Documentation
 
3612
*************
 
3613
 
 
3614
API Changes
 
3615
***********
 
3616
 
 
3617
* ``InterPackRepo.fetch`` and ``RepoFetcher`` now raise ``NoSuchRevision``
 
3618
  instead of ``InstallFailed`` when they detect a missing revision.
 
3619
  ``InstallFailed`` itself has been deleted. (Jonathan Lange)
 
3620
 
 
3621
* Not passing arguments to ``bzrlib.commands.main()`` will now grab the
 
3622
  arguments from ``osutils.get_unicode_argv()`` which has proper support
 
3623
  for unicode arguments on windows. Further, the supplied arguments are now 
 
3624
  required to be unicode strings, rather than user_encoded strings.
 
3625
  (Alexander Belchenko)
 
3626
 
 
3627
Internals
 
3628
*********
 
3629
 
 
3630
* ``bzrlib.branch.Branch.set_parent`` is now present on the base branch
 
3631
  class and will call ``_set_parent_location`` after doing unicode 
 
3632
  encoding. (Robert Collins)
 
3633
 
 
3634
* ``bzrlib.remote.RemoteBranch._set_parent_location`` will use a new verb
 
3635
  ``Branch.set_parent_location`` removing further VFS operations.
 
3636
  (Robert Collins)
 
3637
 
 
3638
* ``bzrlib.bzrdir.BzrDir._get_config`` now returns a ``TransportConfig``
 
3639
  or similar when the dir supports configuration settings. The base class
 
3640
  defaults to None. There is a matching new server verb
 
3641
  ``BzrDir.get-config_file`` to reduce roundtrips for getting BzrDir
 
3642
  configuration. (Robert Collins)
 
3643
 
 
3644
* ``bzrlib.tests.ExtendedTestResult`` has new methods ``startTests``
 
3645
  called before the first test is started, ``done`` called after the last
 
3646
  test completes, and a new parameter ``strict``. (Robert Collins)
 
3647
 
 
3648
* ``-Dhpss`` when passed to bzr will cause a backtrace to be printed when
 
3649
  VFS operations are started on a smart server repository. This should not
 
3650
  occur on regular push and pull operations, and is a key indicator for
 
3651
  performance regressions. (Robert Collins)
 
3652
 
 
3653
* ``-Dlock`` when passed to the selftest (e.g. ``bzr -Dlock selftest``) will
 
3654
  cause mismatched physical locks to cause test errors rather than just
 
3655
  reporting to the screen. (Robert Collins)
 
3656
 
 
3657
* -Dprogress will cause pdb to start up if a progress view jumps
 
3658
  backwards. (Robert Collins)
 
3659
 
 
3660
* Fallback ``CredentialStore`` instances registered with ``fallback=True``
 
3661
  are now be able to provide credentials if obtaining credentials 
 
3662
  via ~/.bazaar/authentication.conf fails. (Jelmer Vernooij, 
 
3663
  Vincent Ladeuil, #321918)
 
3664
 
 
3665
* New hook ``Lock.lock_broken`` which runs when a lock is
 
3666
  broken. This is mainly for testing that lock/unlock are
 
3667
  balanced in tests. (Vincent Ladeuil)
 
3668
 
 
3669
* New MergeDirective hook 'merge_request_body' allows hooks to supply or
 
3670
  alter a body for the message produced by ``bzr send``.
 
3671
 
 
3672
* New smart server verb ``BzrDir.initialize_ex`` which implements a
 
3673
  refactoring to the core of clone allowing less round trips on new
 
3674
  branches. (Robert Collins)
 
3675
 
 
3676
* New method ``Tags.rename_revisions`` that can rename revision ids tags
 
3677
  are pointing at. (Jelmer Vernooij)
 
3678
 
 
3679
* Updated the bundled ``ConfigObj`` library to 4.6.0 (Matt Nordhoff)
 
3680
 
 
3681
Testing
 
3682
*******
 
3683
 
 
3684
* ``bzr selftest`` will now fail if lock/unlock are not correctly balanced in
 
3685
  tests. Using ``-Dlock`` will turn the related failures into warnings.
 
3686
  (Vincent Ladeuil, Robert Collins)
 
3687
 
 
3688
bzr 1.14
 
3689
########
 
3690
:Codename: brisbane-core
 
3691
:1.14rc1: 2009-04-06
 
3692
:1.14rc2: 2009-04-19
 
3693
:1.14: 2009-04-28
 
3694
:1.14.1: 2009-05-01
 
3695
 
 
3696
New formats 1.14 and 1.14-rich-root supporting End-Of-Line (EOL) conversions,
 
3697
keyword templating (via the bzr-keywords plugin) and generic content filtering.
 
3698
End-of-line conversion is now supported for formats supporting content
 
3699
filtering.
 
3700
 
 
3701
Changes from 1.14final to 1.14.1
 
3702
********************************
 
3703
 
 
3704
* Change api_minimum_version back to api_minimum_version = (1, 13, 0)
 
3705
 
 
3706
Changes from 1.14rc2 to 1.14final
 
3707
*********************************
 
3708
 
 
3709
* Fix a bug in the pure-python ``GroupCompress`` code when handling copies
 
3710
  longer than 64KiB. (John Arbash Meinel, #364900)
 
3711
 
 
3712
Changes from 1.14rc1 to 1.14rc2
 
3713
*******************************
 
3714
 
 
3715
* Fix for bug 358037 Revision not in
 
3716
  bzrlib.groupcompress.GroupCompressVersionedFiles (Brian de Alwis, 
 
3717
  John A Meinel)
 
3718
 
 
3719
* Fix for bug 354036 ErrorFromSmartServer - AbsentContentFactory object has no
 
3720
  attribute 'get_bytes_as' exception while pulling from Launchpad 
 
3721
  (Jean-Francois Roy, Andrew Bennetts, Robert Collins)
 
3722
 
 
3723
* Fix for bug 355280 eol content filters are never loaded and thus never
 
3724
  applied (Brian de Alwis, Ian Clatworthy)
 
3725
 
 
3726
* bzr.dev -r4280  Change _fetch_uses_deltas = False for CHK repos until we can
 
3727
  write a better fix. (John Arbash Meinel, Robert Collins)
 
3728
 
 
3729
* Fix for bug 361574 uncommit recommends undefined --levels and -n options
 
3730
  (Marius Kruger, Ian Clatworthy)
 
3731
 
 
3732
* bzr.dev r4289 as cherrypicked at lp:~spiv/bzr/stacking-cherrypick-1.14 
 
3733
  (Andrew Bennetts, Robert Collins)
 
3734
 
 
3735
Compatibility Breaks
 
3736
********************
 
3737
 
 
3738
* A previously disabled code path to accelerate getting configuration
 
3739
  settings from a smart server has been reinstated. We think this *may*
 
3740
  cause a incompatibility with servers older than bzr 0.15. We intend
 
3741
  to issue a point release to address this if it turns out to be a
 
3742
  problem. (Robert Collins, Andrew Bennetts)
 
3743
 
 
3744
* bzr no longer autodetects nested trees as 'tree-references'.  They
 
3745
  must now be explicitly added tree references.  At the commandline, use
 
3746
  join --reference instead of add.  (Aaron Bentley)
 
3747
 
 
3748
* The ``--long`` log format (the default) no longer shows merged
 
3749
  revisions implicitly, making it consistent with the ``short`` and
 
3750
  ``line`` log formats.  To see merged revisions for just a given
 
3751
  revision, use ``bzr log -n0 -rX``. To see every merged revision,
 
3752
  use ``bzr log -n0``.  (Ian Clatworthy)
 
3753
 
 
3754
New Features
 
3755
************
 
3756
 
 
3757
* New formats ``1.14`` and ``1.14-rich-root`` supporting End-Of-Line
 
3758
  (EOL) conversions, keyword templating (via the bzr-keywords plugin)
 
3759
  and generic content filtering. These formats replace the experimental
 
3760
  ``development-wt5`` and ``development-wt5-rich-root`` formats
 
3761
  respectively, but have support for filtered views disabled.
 
3762
  (Ian Clatworthy)
 
3763
 
 
3764
* New ``mv --auto`` option recognizes renames after they occur.
 
3765
  (Aaron Bentley)
 
3766
 
 
3767
* ``bzr`` can now get passwords from stdin without requiring a controlling
 
3768
  terminal (i.e. by redirecting stdin). (Vincent Ladeuil)
 
3769
 
 
3770
* ``bzr log`` now supports filtering of multiple files and directories
 
3771
  and will show changes that touch any of them. Furthermore,
 
3772
  directory filtering now shows the changes to any children of that
 
3773
  directory, not just the directory object itself.
 
3774
  (Ian Clatworthy, #97715)
 
3775
 
 
3776
* ``bzr shelve`` can now apply changes without storing anything on the
 
3777
  shelf, via the new --destroy option.  (Aaron Bentley)
 
3778
 
 
3779
* ``bzr send`` now accepts --body to specify an initial message body.
 
3780
  (Aaron bentley)
 
3781
 
 
3782
* ``bzr xxx --usage`` where xxx is a command now shows a usage
 
3783
  message and the options without the descriptive help sections
 
3784
  (like Description and Examples). A message is also given
 
3785
  explaining how to see the complete help, i.e. ``bzr help xxx``.
 
3786
  (Ian Clatworthy)
 
3787
 
 
3788
* Content filters can now be used to provide custom conversion
 
3789
  between the canonical format of content (i.e. as stored) and
 
3790
  the convenience format of content (i.e. as created in working
 
3791
  trees). See ``bzr help content-filters`` for further details.
 
3792
  (Ian Clatworthy, Alexander Belchenko)
 
3793
 
 
3794
* End-of-line conversion is now supported for formats supporting
 
3795
  content filtering. See ``bzr help eol`` for details.
 
3796
  (Ian Clatworthy)
 
3797
 
 
3798
* Newly-blessed `join` command allows combining two trees into one.
 
3799
  (Aaron Bentley)
 
3800
 
 
3801
Improvements
 
3802
************
 
3803
 
 
3804
* A new format name alias ``default-rich-root`` has been added and
 
3805
  points at the closest relative of the default format that supports 
 
3806
  rich roots. (Jelmer Vernooij, #338061)
 
3807
 
 
3808
* Branching from a stacked branch using ``bzr*://`` will now stream
 
3809
  the data when the target repository does not need topological
 
3810
  ordering, reducing round trips and network overhead. This uses the
 
3811
  existing smart server methods added in 1.13, so will work on any
 
3812
  1.13 or newer server. (Robert Collins, Andrew Bennetts)
 
3813
 
 
3814
* ``bzr cat`` and ``bzr export`` now supports a ``--filters`` option
 
3815
  that displays/saves the content after content filters are applied.
 
3816
  (Ian Clatworthy)
 
3817
 
 
3818
* ``bzr ignore`` gives a more informative message when existing
 
3819
  version controlled files match the ignore pattern. (Neil
 
3820
  Martinsen-Burrell, #248895)
 
3821
 
 
3822
* ``bzr log`` now has ``--include-merges`` as an alias for ``--levels 0``.
 
3823
  (Ian Clatworthy)
 
3824
 
 
3825
* ``bzr send`` is faster on repositories with deep histories.
 
3826
  (Ian Clatworthy)
 
3827
 
 
3828
* IPv6 literals are accepted in URLs.
 
3829
  (stlman, Martin Pool, Jelmer Vernooij, #165014)
 
3830
 
 
3831
* Progress bars now show the rate of network activity for
 
3832
  ``bzr+ssh://`` and ``bzr://`` connections.  (Andrew Bennetts)
 
3833
 
 
3834
* Prompt for user names if they are not in the configuration. 
 
3835
  (Jelmer Vernooij, #256612)
 
3836
 
 
3837
* Pushing to a stacked pack-format branch on a 1.12 or older smart server
 
3838
  now takes many less round trips.  (Andrew Bennetts, Robert Collins,
 
3839
  #294479)
 
3840
  
 
3841
* Streaming push can be done to older repository formats.  This is
 
3842
  implemented using a new ``Repository.insert_stream_locked`` RPC.
 
3843
  (Andrew Bennetts, Robert Collins)
 
3844
 
 
3845
* The "ignoring files outside view: .." message has been re-worded
 
3846
  to "Ignoring files outside view. View is .." to reduce confusion
 
3847
  about what was being considered and what was being ignored.
 
3848
  (Ian Clatworthy)
 
3849
 
 
3850
* The ``long`` log formatter now shows [merge] indicators. If
 
3851
  only one level of revisions is displayed and merges are found,
 
3852
  the ``long`` and ``short`` log formatters now tell the user
 
3853
  how to see the hidden merged revisions.  (Ian Clatworthy)
 
3854
 
 
3855
* The ``brisbane-core`` project has delivered its beta format
 
3856
  ``development6-rich-root``. This format is suitable for judicious
 
3857
  testing by early adopters. In particular if you are benchmarking bzr
 
3858
  performance please be sure to test using this format. At this stage
 
3859
  more information is best obtained by contacting the Bazaar mailing list
 
3860
  or IRC channel if you are interested in using this format. We will make
 
3861
  end user documentation available closer to blessing the format as
 
3862
  production ready. (Robert Collins, John Arbash Meinel, Ian Clatworthy,
 
3863
  Vincent Ladeuil, Andrew Bennetts, Martin Pool)
 
3864
 
 
3865
* Tildes are no longer escaped. No more %7Euser/project/branch!
 
3866
  (Jonathan Lange)
 
3867
 
 
3868
Bug Fixes
 
3869
*********
 
3870
 
 
3871
* Pushing a new stacked branch will also push the parent inventories for
 
3872
  revisions at the stacking boundary.  This makes sure that the stacked
 
3873
  branch has enough data to calculate inventory deltas for all of its
 
3874
  revisions (without requiring the fallback branch).  This avoids
 
3875
  "'AbsentContentFactory' object has no attribute 'get_bytes_as'" errors
 
3876
  when fetching the stacked branch from a 1.13 (or later) smart server.
 
3877
  This partially fixes #354036.  (Andrew Bennetts, Robert Collins)
 
3878
 
 
3879
* End-Of-Line content filters are now loaded correctly.
 
3880
  (Ian Clatworthy, Brian de Alwis, #355280)
 
3881
 
 
3882
* Authentication plugins now receive all the parameters from the request
 
3883
  itself (aka host, port, realm, path, etc). Previously, only the 
 
3884
  authentication section name, username and encoded password were 
 
3885
  provided. (Jean-Francois Roy)
 
3886
 
 
3887
* bzr gives a better message if an invalid regexp is passed to ``bzr log
 
3888
  -m``.  (Anne Mohsen, Martin Pool)
 
3889
 
 
3890
* ``bzr split`` now says "See also: join" (Aaron Bentley, #335015)
 
3891
 
 
3892
* ``bzr version-info`` now works in empty branches. (Jelmer Vernooij,
 
3893
  #313028)
 
3894
 
 
3895
* Fix "is not a stackable format" error when pushing a
 
3896
  stackable-format branch with an unstackable-format repository to a
 
3897
  destination with a default stacking policy.  (Andrew Bennetts)
 
3898
 
 
3899
* Fixed incorrect "Source format does not support stacking" warning
 
3900
  when pushing to a smart server.  (Andrew Bennetts, #334114)
 
3901
 
 
3902
* Fix 'make check-dist-tarball' failure by converting paths to unicode when
 
3903
  needed. (Vincent Ladeuil, #355454)
 
3904
 
 
3905
* Fixed "Specified file 'x/y/z' is outside current view: " occurring
 
3906
  on ``bzr add x/y/z`` in formats supporting views when no view is
 
3907
  defined.  (Ian Clatworthy, #344708)
 
3908
 
 
3909
* It is no longer possible to fetch between repositories while the
 
3910
  target repository is in a write group. This prevents race conditions
 
3911
  that prevent the use of RPC's to perform fetch, and thus allows
 
3912
  optimising more operations. (Robert Collins, Andrew Bennetts)
 
3913
 
 
3914
* ``merge --force`` works again. (Robert Collins, #342105)
 
3915
 
 
3916
* No more warnings are issued about ``sha`` being deprecated under python-2.6.
 
3917
  (Vincent Ladeuil, #346593)
 
3918
 
 
3919
* Pushing a new branch to a server that has a stacking policy will now
 
3920
  upgrade from the local branch format when the stacking policy points at
 
3921
  a branch which is itself stackable, because we know the client can read
 
3922
  both branches, we know that the trunk for the project can be read too,
 
3923
  so the upgrade will not inconvenience users. (Robert Collins, #345169)
 
3924
 
 
3925
* Pushing a new stacked branch will also push the parent inventories for
 
3926
  revisions at the stacking boundary.  This makes sure that the stacked
 
3927
  branch has enough data to calculate inventory deltas for all of its
 
3928
  revisions (without requiring the fallback branch).  This avoids
 
3929
  "'AbsentContentFactory' object has no attribute 'get_bytes_as'" errors
 
3930
  when fetching the stacked branch from a 1.13 (or later) smart server.
 
3931
  This partially fixes #354036.  (Andrew Bennetts, Robert Collins)
 
3932
 
 
3933
* The full test suite is passing again on OSX. Several minor issues (mostly
 
3934
  test related) have been fixed. (Vincent Ladeuil, #355273).
 
3935
 
 
3936
* The GNU Changelog formatter is slightly improved in the case where
 
3937
  the delta is empty, and now correctly claims not to support tags.
 
3938
  (Andrea Bolognani)
 
3939
 
 
3940
* Shelve can now shelve changes to a symlink target.
 
3941
  (James Westby, #341558)
 
3942
 
 
3943
* The help for the ``info`` command has been corrected.
 
3944
  (Ian Clatworthy, #351931)
 
3945
 
 
3946
* Upgrade will now use a sensible default format if the source repository
 
3947
  uses rich roots.  (Jelmer Vernooij, #252908)
 
3948
 
 
3949
Documentation
 
3950
*************
 
3951
 
 
3952
* Expanded the index of the developer documentation. (Eric Siegerman)
 
3953
 
 
3954
* New topic `bzr help debug-flags`.  (Martin Pool)
 
3955
 
 
3956
* The generated manpage now explicitly lists aliases as commands.
 
3957
  (James Westby, #336998)
 
3958
 
 
3959
API Changes
 
3960
***********
 
3961
 
 
3962
* APIs deprecated in 1.6 and previous versions of bzr are now removed.
 
3963
  (Martin Pool)
 
3964
 
 
3965
* ``CommitReporter`` is no longer called with ``unchanged`` status during
 
3966
  commit - this was a full-tree overhead that bzr no longer performs.
 
3967
  (Robert Collins)
 
3968
 
 
3969
* New abstract ``UIFactory`` method ``get_username`` which will be called to 
 
3970
  obtain the username to use when connecting to remote machines. 
 
3971
  (Jelmer Vernooij)
 
3972
 
 
3973
* New API ``Inventory.filter()`` added that filters an inventory by
 
3974
  a set of file-ids so that only those fileids, their parents and
 
3975
  their children are included.  (Ian Clatworthy)
 
3976
 
 
3977
* New sort order for ``get_record_stream`` ``groupcompress`` which
 
3978
  sorts optimally for use with groupcompress compressors. (John Arbash
 
3979
  Meinel, Robert Collins)
 
3980
 
 
3981
* Repository APIs ``get_deltas_for_revisions()`` and
 
3982
  ``get_revision_delta()`` now support an optional ``specific_fileids``
 
3983
  parameter. If provided, the deltas are filtered so that only those
 
3984
  file-ids, their parents and their children are included.
 
3985
  (Ian Clatworthy)
 
3986
 
 
3987
* The ``get_credentials`` and ``set_credentials`` methods of 
 
3988
  ``AuthenticationConfig`` now accept an optional realm argument.
 
3989
  (Jean-Francois Roy)
 
3990
 
 
3991
* The ``pb`` argument to ``fetch()`` is deprecated.
 
3992
  (Martin Pool)
 
3993
 
 
3994
* The ``Serializer`` class and the serializer ``format registry`` have moved
 
3995
  from ``bzrlib.xml_serializer`` to ``bzrlib.serializer``. (Jelmer Vernooij)
 
3996
 
 
3997
* The smart server jail now hooks into BzrDir.open to prevent any BzrDir
 
3998
  that is not inside the backing transport from being opened.  See the
 
3999
  module documentation for ``bzrlib.smart.request`` for details.
 
4000
  (Andrew Bennetts, Robert Collins)
 
4001
 
 
4002
* ``Tree.get_symlink_target`` now always returns a unicode string result
 
4003
  or None. Previously it would return the bytes from reading the link
 
4004
  which could be in any arbitrary encoding. (Robert Collins)
 
4005
 
 
4006
Testing
 
4007
*******
 
4008
 
 
4009
* ``bzrlib.tests.TestCase`` now fails the test if its own ``setUp``
 
4010
  and ``tearDown`` weren't called.  This catches faulty tests that
 
4011
  forget to upcall when overriding ``setUp`` and ``tearDown``.  Those
 
4012
  faulty tests were not properly isolated.
 
4013
  (Andrew Bennetts, Robert Collins)
 
4014
 
 
4015
* Fix test_msgeditor.MsgEditorTest test isolation.
 
4016
  (Vincent Ladeuil, #347130)
 
4017
 
 
4018
* ``medusa`` is not used anymore as an FTP test server starting with
 
4019
  python2.6. A new FTP test server based on ``pyftplib`` can be used
 
4020
  instead. This new server is a soft dependency as medusa which is still
 
4021
  preferred if both are available (modulo python version).
 
4022
  (Vincent Ladeuil)
 
4023
 
 
4024
Internals
 
4025
*********
 
4026
 
 
4027
* Added ``chk_map`` for fast, trie-based storage of tuple to string maps.
 
4028
  (Robert Collins, John Arbash Meinel, Vincent Ladeuil)
 
4029
 
 
4030
* Added ``bzrlib.chk_map`` for fast, trie-based storage of tuple to string
 
4031
  maps.  (Robert Collins, John Arbash Meinel, Vincent Ladeuil)
 
4032
 
 
4033
* Added ``bzrlib.inventory_delta`` module.  This will be used for
 
4034
  serializing and deserializing inventory deltas for more efficient
 
4035
  streaming on the network.  (Robert Collins, Andrew Bennetts)
 
4036
 
 
4037
* ``Branch._get_config`` has been added, which splits out access to the
 
4038
  specific config file from the branch. This is used to let RemoteBranch
 
4039
  avoid constructing real branch objects to access configuration settings.
 
4040
  (Robert Collins, Andrew Bennetts)
 
4041
 
 
4042
* ``Branch`` now implements ``set_stacked_on_url`` in the base class as
 
4043
  the implementation is generic and should impact foreign formats. This
 
4044
  helps performance for ``RemoteBranch`` push operations to new stacked
 
4045
  branches. (Robert Collins, Andrew Bennetts)
 
4046
 
 
4047
* ``BtreeIndex._spill_mem_keys_to_disk()`` now generates disk index with
 
4048
  optmizations turned off. This only has effect when processing > 100,000
 
4049
  keys during something like ``bzr pack``. (John Arbash Meinel)
 
4050
 
 
4051
* ``bzr selftest`` now accepts ``--subunit`` to run in subunit output
 
4052
  mode. Requires ``lp:subunit`` installed to work, but is not a hard
 
4053
  dependency. (Robert Collins)
 
4054
 
 
4055
* ``BzrDir.open_branch`` now takes an optional ``ignore_fallbacks``
 
4056
  parameter for controlling opening of stacked branches.
 
4057
  (Andrew Bennetts, Robert Collins)
 
4058
  
 
4059
* ``CommitBuilder`` has a new method, ``record_iter_changes`` which works
 
4060
  in terms of an iter_changes iterator rather than full tree scanning.
 
4061
  (Robert Collins)
 
4062
 
 
4063
* ``DirState`` can now be passed a custom ``SHA1Provider`` object
 
4064
  enabling it to store the SHA1 and stat of the canonical (post
 
4065
  content filtered) form. (Ian Clatworthy)
 
4066
 
 
4067
* New ``assertLength`` method based on one Martin has squirreled away
 
4068
  somewhere. (Robert Collins, Martin Pool)
 
4069
 
 
4070
* New hook ``BzrDir.pre_open`` which runs before opening ``BzrDir``
 
4071
  objects, allowing better enforcement of the smart server jail when
 
4072
  dealing with stacked branches. (Robert Collins, Andrew Bennetts)
 
4073
 
 
4074
* New hook ``RioVersionInfoBuilder.revision``, allowing extra entries 
 
4075
  to be added to the stanza that is printed for a particular revision.
 
4076
  (Jelmer Vernooij)
 
4077
 
 
4078
* New repository method ``refresh_data`` to cause any repository to
 
4079
  make visible data inserted into the repository by a smart server
 
4080
  fetch operation. (Robert Collins, Andrew Bennetts)
 
4081
 
 
4082
* ``register_filter_stack_map`` now takes an optional fallback parameter,
 
4083
  a callable to invoke if a preference has a value not in the map
 
4084
  of filter stacks. This enhancement allows, for example,  bzr-svn to
 
4085
  handle existing svn properties that define a list of keywords to be
 
4086
  expanded.  (Ian Clatworthy)
 
4087
 
 
4088
* ``RemoteBranchConfig`` will use a new verb ``Branch.set_config_option``
 
4089
  to write config settings to smart servers that support this, saving
 
4090
  5 round trips on the stacked streaming acceptance test.
 
4091
  (Robert Collins, Andrew Bennetts)
 
4092
 
 
4093
* ``RemoteBranch`` now provides ``_get_config`` for access to just the
 
4094
  branch specific configuration from a remote server, which uses the 
 
4095
  already existing ``Branch.get_config_file`` smart verb.
 
4096
  (Robert Collins, Andrew Bennetts)
 
4097
 
 
4098
* ``RemoteRepository`` will now negatively cache missing revisions during
 
4099
  ``get_parent_map`` while read-locked. Write-locks are unaffected.
 
4100
  (Robert Collins, Andrew Bennetts)
 
4101
 
 
4102
* Removed ``InterRemoteToOther``, ``InterOtherToRemote`` and
 
4103
  ``InterPackToRemotePack`` classes, as they are now unnecessary.
 
4104
  (Andrew Bennetts)
 
4105
 
 
4106
* ``RepositoryFormat`` as a new attribute ``fast_deltas`` to indicate
 
4107
  whether the repository can efficiently generate deltas between trees
 
4108
  regardless of tree size. (Robert Collins)
 
4109
 
 
4110
* ``Repository.iter_files_bytes()`` now properly returns an "iterable of
 
4111
  byte strings" (aka 'chunked') for the content. It previously was
 
4112
  returning a plain string, which worked, but performed very poorly when
 
4113
  building a working tree (file.writelines(str) is very inefficient). This
 
4114
  can have a large effect on ``bzr checkout`` times. (John Arbash Meinel)
 
4115
 
 
4116
* selftest now supports a --parallel option, with values of 'fork' or
 
4117
  'subprocess' to run the test suite in parallel. Currently only Linux
 
4118
  machines work, other platforms need patches submitted. (Robert Collins,
 
4119
  Vincent Ladeuil)
 
4120
 
 
4121
* ``tests.run_suite`` has a new parameter ``suite_decorators``, a list of 
 
4122
  callables to use to decorate the test suite. Such decorators can add or
 
4123
  remove tests, or even remote the test suite to another machine if
 
4124
  desired. (Robert Collins)
 
4125
 
 
4126
* The smart server verb ``Repository.get_parent_map`` can now include
 
4127
  information about ghosts when the special revision ``include-missing:``
 
4128
  is in the requested parents map list. With this flag, ghosts are
 
4129
  included as ``missing:REVISION_ID``. (Robert Collins, Andrew Bennetts)
 
4130
 
 
4131
* ``_walk_to_common_revisions`` will now batch up at least 50
 
4132
  revisions before calling ``get_parent_map`` on the target,
 
4133
  regardless of ``InterRepository``.
 
4134
  (Andrew Bennetts, Robert Collins)
 
4135
 
 
4136
bzr 1.13
 
4137
########
 
4138
 
 
4139
:Codename: paraskavedekatriaphobia
 
4140
:1.13: 2009-03-14
 
4141
:1.13rc1: 2009-03-10
 
4142
:1.13.1: 2009-03-23
 
4143
:1.13.2: 2009-04-27
 
4144
 
 
4145
GNU Changelog output can now be produced by ``bzr log --gnu-changelog``.  Debug
 
4146
flags can now be set in ``~/.bazaar/bazaar.conf``.  Lightweight checkouts and
 
4147
stacked branches should both be much faster over remote connections.  
 
4148
 
 
4149
Changes From 1.13.1 to 1.13.2
 
4150
*****************************
 
4151
 
 
4152
A regression was found in the 1.13.1 release. When bzr 1.13.1 and earlier push
 
4153
a stacked branch they do not take care to push all the parent inventories for
 
4154
the transferred revisions. This means that a smart server serving that branch
 
4155
often cannot calculate inventory deltas for the branch (because smart server
 
4156
does not/cannot open fallback repositories). Prior to 1.13 the server did not
 
4157
have a verb to stream revisions out of a repository, so that's why this bug has
 
4158
appeared now.
 
4159
 
 
4160
Bug Fixes
 
4161
*********
 
4162
 
 
4163
* Fix for bug 354036 ErrorFromSmartServer - AbsentContentFactory object has no
 
4164
  attribute 'get_bytes_as' exception while pulling from Launchpad 
 
4165
  (Jean-Francois Roy, Andrew Bennetts, Robert Collins)
 
4166
 
 
4167
Changes From 1.13final to 1.13.1
 
4168
********************************
 
4169
 
 
4170
A couple regessions where found in the 1.13 release. The pyrex-generated C
 
4171
extensions are missing from the .tar.gz and .zip files.  Documentation on how
 
4172
to generate GNU ChangeLogs is wrong.
 
4173
 
 
4174
Bug Fixes
 
4175
*********
 
4176
 
 
4177
* Change ``./bzr``'s ``_script_version`` to match ./bzrlib/__init__.py
 
4178
  version_info. (Bob Tanner, Martin Pool, #345232)
 
4179
 
 
4180
* Distribution archives for 1.13 do not contain generated C extension modules
 
4181
  (Jean-Francois Roy, Bob Tanner, #344465)
 
4182
 
 
4183
* GNU ChangeLog output can now be produced by bzr log --format gnu-changelog is
 
4184
  incorrect (Deejay, Bob Tanner, Martin Pool, Robert Collins, #343928)
 
4185
 
 
4186
* ``merge --force`` works again. (Robert Collins, #342105)
 
4187
 
 
4188
Changes From 1.13rc1 to 1.13final
 
4189
*********************************
 
4190
 
 
4191
* Fix "is not a stackable format" error when pushing a
 
4192
  stackable-format branch with an unstackable-format repository to a
 
4193
  destination with a default stacking policy.  (Andrew Bennetts)
 
4194
 
 
4195
* Progress bars now show the rate of network activity for
 
4196
  ``bzr+ssh://`` and ``bzr://`` connections.  (Andrew Bennetts)
 
4197
 
 
4198
Compatibility Breaks
 
4199
********************
 
4200
 
 
4201
* ``bzr log --line`` now indicates which revisions are merges with
 
4202
  `[merge]` after the date.  Scripts which parse the output of this
 
4203
  command may need to be adjusted.
 
4204
  (Neil Martinsen-Burrell)
 
4205
 
 
4206
New Features
 
4207
************
 
4208
 
 
4209
* ``bzr reconfigure`` now supports --with-trees and --with-no-trees
 
4210
  options to change the default tree-creation policy of shared
 
4211
  repositories.  (Matthew Fuller, Marius Kruger, #145033)
 
4212
 
 
4213
* Debug flags can now be set in ``~/.bazaar/bazaar.conf``.
 
4214
  (Martin Pool)
 
4215
 
 
4216
* Filtered views provide a mask over the tree so that users can focus
 
4217
  on a subset of a tree when doing their work. See ``Filtered views``
 
4218
  in chapter 7 of the User Guide and ``bzr help view`` for details.
 
4219
  (Ian Clatworthy)
 
4220
 
 
4221
* GNU Changelog output can now be produced by ``bzr log --gnu-changelog``.
 
4222
  (Andrea Bolognani, Martin Pool)
 
4223
 
 
4224
* The ``-Dmemory`` flag now gives memory information on Windows.
 
4225
  (John Arbash Meinel)
 
4226
 
 
4227
* Multiple authors for a commit can now be recorded by using the "--author"
 
4228
  option multiple times. (James Westby, #185772)
 
4229
 
 
4230
* New clean-tree command, from bzrtools.  (Aaron Bentley, Jelmer Vernooij)
 
4231
 
 
4232
* New command ``bzr launchpad-open`` opens a Launchpad web page for that
 
4233
  branch in your web browser, as long as the branch is on Launchpad at all.
 
4234
  (Jonathan Lange)
 
4235
 
 
4236
* New API for getting bugs fixed by a revision: Revision.iter_bugs().
 
4237
  (Jonathan Lange)
 
4238
 
 
4239
Improvements
 
4240
************
 
4241
 
 
4242
* All bzr ``Hooks`` classes are now registered in
 
4243
  ``bzrlib.hooks.known_hooks``. This removes the separate list from
 
4244
  ``bzrlib.tests`` and ensures that all hooks registered there are
 
4245
  correctly isolated by the test suite (previously
 
4246
  ``MutableTreeHooks`` were not being isolated correctly). Further, 
 
4247
  documentation for hooks is now dynamically generated from the
 
4248
  present HookPoints. ``bzr hooks`` will now also report on all the
 
4249
  hooks present in the ``bzrlib.hooks.known_hooks`` registry.
 
4250
  (Robert Collins)
 
4251
 
 
4252
* ``bzr add`` no longer prints ``add completed`` on success. Failure
 
4253
  still prints an error message. (Robert Collins)
 
4254
 
 
4255
* ``bzr branch`` now has a ``--no-tree`` option which turns off the
 
4256
  generation of a working tree in the new branch.
 
4257
  (Daniel Watkins, John Klinger, #273993)
 
4258
 
 
4259
* Bazaar will now point out ``bzr+ssh://`` to the user when they 
 
4260
  use ssh://. (Jelmer Vernooij, #330535)
 
4261
 
 
4262
* ``bzr -v info`` now omits the number of committers branch statistic,
 
4263
  making it many times faster for large projects. To include that
 
4264
  statistic in the output, use ``bzr -vv info``.
 
4265
  (Ian Clatworthy)
 
4266
 
 
4267
* ``bzr push`` to a ``bzr`` url (``bzr://``, ``bzr+ssh://`` etc) will
 
4268
  stream if the server is version 1.13 or greater, reducing roundtrips
 
4269
  significantly. (Andrew Bennetts, Robert Collins)
 
4270
 
 
4271
* Lightweight Checkouts and Stacked Branches should both be much
 
4272
  faster over remote connections. Building the working tree now
 
4273
  batches up requests into approx 5MB requests, rather than a separate
 
4274
  request for each file. (John Arbash Meinel)
 
4275
 
 
4276
* Support for GSSAPI authentication when using HTTP or HTTPS. 
 
4277
  (Jelmer Vernooij)
 
4278
 
 
4279
* The ``bzr shelve`` prompt now includes a '?' help option to explain the
 
4280
  short options better. (Daniel Watkins, #327429)
 
4281
 
 
4282
* ``bzr lp-open`` now falls back to the push location if it cannot find a
 
4283
  public location. (Jonathan Lange, #332372)
 
4284
 
 
4285
* ``bzr lp-open`` will try to find the Launchpad URL for the location
 
4286
  passed on the command line. This makes ``bzr lp-open lp:foo`` work as
 
4287
  expected. (Jonathan Lange, #332705)
 
4288
 
 
4289
* ``bzr send`` now supports MH-E via ``emacsclient``. (Eric Gillespie)
 
4290
 
 
4291
Bug Fixes
 
4292
*********
 
4293
 
 
4294
* Allows ``bzr log <FILE>`` to be called in an empty branch without
 
4295
  backtracing. (Vincent Ladeuil, #346431)
 
4296
 
 
4297
* Bazaar now gives a better message including the filename if it's
 
4298
  unable to read a file in the working directory, for example because
 
4299
  of a permission error.  (Martin Pool, #338653)
 
4300
 
 
4301
* ``bzr cat -r<old> <path>`` doesn't traceback anymore when <path> has a
 
4302
  file id in the working tree different from the one in revision <old>.
 
4303
  (Vincent Ladeuil, #341517, #253806)
 
4304
 
 
4305
* ``bzr send`` help is more specific about how to apply merge
 
4306
  directives.  (Neil Martinsen-Burrell, #253470)
 
4307
 
 
4308
* ``bzr missing`` now uses ``Repository.get_revision_delta()`` rather
 
4309
  than fetching trees and determining a delta itself. (Jelmer
 
4310
  Vernooij, #315048)
 
4311
 
 
4312
* ``bzr push`` to a smart server no longer causes "Revision
 
4313
  {set([('null:',)])} not present ..." errors when the branch has
 
4314
  multiple root revisions. (Andrew Bennetts, #317654)
 
4315
 
 
4316
* ``bzr shelve`` now properly handle patches with no terminating newline.
 
4317
  (Benoît PIERRE, #303569)
 
4318
 
 
4319
* ``bzr unshelve`` gives a more palatable error if passed a non-integer
 
4320
  shelf id. (Daniel Watkins)
 
4321
 
 
4322
* Export now handles files that are not present in the tree.
 
4323
  (James Westby, #174539)
 
4324
 
 
4325
* Fixed incorrect "Source format does not support stacking" warning
 
4326
  when pushing to a smart server.  (Andrew Bennetts, #334114)
 
4327
  
 
4328
* Fixed "sprout() got an unexpected keyword argument 'source_branch'"
 
4329
  error branching from old repositories.
 
4330
  (Martin Pool, #321695)
 
4331
 
 
4332
* Make ``bzr push --quiet <non-local location>`` less chatty.
 
4333
  (Kent Gibson, #221461)
 
4334
 
 
4335
* Many Branch hooks would not fire with ``bzr://`` and ``bzr+ssh://``
 
4336
  branches, and this was not noticed due to a bug in the test logic
 
4337
  for branches. This is now fixed and a test added to prevent it
 
4338
  reoccuring. (Robert Collins, Andrew Bennetts)
 
4339
 
 
4340
* Restore the progress bar on Windows. We were disabling it when TERM
 
4341
  wasn't set, but Windows doesn't set TERM. (Alexander Belchenko,
 
4342
  #334808)
 
4343
 
 
4344
* ``setup.py build_ext`` now gives a proper error when an extension
 
4345
  fails to build. (John Arbash Meinel)
 
4346
 
 
4347
* Symlinks to non ascii file names are now supported.
 
4348
  (Robert Collins, Vincent Ladeuil, #339055, #272444)    
 
4349
 
 
4350
* Under rare circumstances (aka nobody reported a bug about it), the ftp
 
4351
  transport could revert to ascii mode. It now stays in binary mode except
 
4352
  when needed.  (Vincent Ladeuil)
 
4353
 
 
4354
* Unshelve does not generate warnings about progress bars.
 
4355
  (Aaron Bentley, #328148)
 
4356
 
 
4357
* shelve cleans up properly when unversioned files are specified.
 
4358
  (Benoît Pierre, Aaron Bentley)
 
4359
 
 
4360
Documentation
 
4361
*************
 
4362
 
 
4363
* Added ``Organizing your workspace`` to the User Guide appendices,
 
4364
  summarizing some common ways of organizing trees, branches and
 
4365
  repositories and the processes/workflows implied/enabled by each.
 
4366
  (Ian Clatworthy)
 
4367
 
 
4368
* Hooks can now be self documenting. ``bzrlib.hooks.Hooks.create_hook``
 
4369
  is the entry point for this feature. (Robert Collins)
 
4370
 
 
4371
* The documentation for ``shelve`` and ``unshelve`` has been clarified.
 
4372
  (Daniel Watkins, #327421, #327425)
 
4373
 
 
4374
API Changes
 
4375
***********
 
4376
 
 
4377
* ``bzr selftest`` now fails if the bazaar sources contain trailing
 
4378
  whitespace, non-unix style line endings and files not ending in a
 
4379
  newline. About 372 files and 3243 lines with trailing whitespace was
 
4380
  updated to comply with this. The code already complied with the other
 
4381
  criteria, but now it is enforced. (Marius Kruger)
 
4382
 
 
4383
* ``bzrlib.branch.PushResult`` was renamed to 
 
4384
  ``bzrlib.branch.BranchPushResult``. (Jelmer Vernooij)
 
4385
 
 
4386
* ``Branch.fetch`` and ``Repository.fetch`` now return None rather
 
4387
  than a count of copied revisions and failed revisions. A while back
 
4388
  we stopped ever reporting failed revisions because we started
 
4389
  erroring instead, and the copied revisions count is not used in the
 
4390
  UI at all - indeed it only reflects the repository status not
 
4391
  changes to the branch itself. (Robert Collins)
 
4392
 
 
4393
* ``Inventory.apply_delta`` now raises an AssertionError if a file-id
 
4394
  appears multiple times within the delta. (Ian Clatworthy)
 
4395
 
 
4396
* MutableTree.commit now favours the "authors" argument, with the old
 
4397
  "author" argument being deprecated.
 
4398
 
 
4399
* Remove deprecated EmptyTree.  (Martin Pool)
 
4400
 
 
4401
* ``Repository.fetch`` now accepts an optional ``fetch_spec``
 
4402
  parameter.  A ``SearchResult`` or ``MiniSearchResult`` may be passed
 
4403
  to ``fetch_spec`` instead of a ``last_revision`` to specify exactly
 
4404
  which revisions to fetch. (Andrew Bennetts)
 
4405
 
 
4406
* ``RepositoryAcquisitionPolicy.acquire_repository`` now returns a
 
4407
  tuple of ``(repository, is_new_flag)``, rather than just the
 
4408
  repository.  (Andrew Bennetts)
 
4409
 
 
4410
* Revision.get_apparent_author() is now deprecated, replaced by
 
4411
  Revision.get_apparent_authors(), which returns a list. The former
 
4412
  now returns the first item that would be returned from the second.
 
4413
 
 
4414
* The ``BranchBuilder`` test helper now accepts a ``timestamp``
 
4415
  parameter to ``build_commit`` and ``build_snapshot``.  (Martin Pool)
 
4416
 
 
4417
* The ``_fetch_*`` attributes on ``Repository`` are now on
 
4418
  ``RepositoryFormat``, more accurately reflecting their intent (they
 
4419
  describe a disk format capability, not state of a particular
 
4420
  repository of that format). (Robert Collins)
 
4421
 
 
4422
Internals
 
4423
*********
 
4424
 
 
4425
* Branching from a non-stacked branch on a smart protocol is now
 
4426
  free of virtual file system methods.
 
4427
  (Robert Collins, Andrew Bennetts)
 
4428
 
 
4429
* Branch and Repository creation on a bzr+ssh://server are now done
 
4430
  via RPC calls rather than VFS calls, reducing round trips for
 
4431
  pushing new branches substantially. (Robert Collins)
 
4432
 
 
4433
* ``Branch.clone`` now takes the ``repository_policy`` formerly used
 
4434
  inside ``BzrDir.clone_on_transport``, allowing stacking to be
 
4435
  configured before the branch tags and revision tip are set. This
 
4436
  fixes a race condition cloning stacked branches that would cause
 
4437
  plugins to have hooks called on non-stacked instances.
 
4438
  (Robert Collins, #334187)
 
4439
 
 
4440
* ``BzrDir.cloning_metadir`` now has a RPC call. (Robert Collins)
 
4441
 
 
4442
* ``BzrDirFormat.__str__`` now uses the human readable description
 
4443
  rather than the sometimes-absent disk label. (Robert Collins)
 
4444
 
 
4445
* ``bzrlib.fetch`` is now composed of a sender and a sink component
 
4446
  allowing for decoupling over a network connection. Fetching from
 
4447
  or into a RemoteRepository with a 1.13 server will use this to
 
4448
  stream the operation.
 
4449
  (Andrew Bennetts, Robert Collins)
 
4450
 
 
4451
* ``bzrlib.tests.run_suite`` accepts a runner_class parameter
 
4452
  supporting the use of different runners. (Robert Collins)
 
4453
 
 
4454
* Change how file_ids and revision_ids are interned as part of
 
4455
  inventory deserialization. Now we use the real ``intern()``, rather
 
4456
  than our own workaround that would also cache a Unicode copy of the
 
4457
  string, and never emptied the cache. This should slightly reduce
 
4458
  memory consumption. (John Arbash Meinel)
 
4459
 
 
4460
* New branch method ``create_clone_on_transport`` that returns a
 
4461
  branch object. (Robert Collins)
 
4462
 
 
4463
* New hook Commands['extend_command'] to allow plugins to access a
 
4464
  command object before the command is run (or help generated from
 
4465
  it), without overriding the command. (Robert Collins)
 
4466
 
 
4467
* New version of the ``BzrDir.find_repository`` verb supporting
 
4468
  ``_network_name`` to support removing more _ensure_real calls.
 
4469
  (Robert Collins)
 
4470
 
 
4471
* ``RemoteBranchFormat`` no longer claims to have a disk format string.
 
4472
  (Robert Collins)
 
4473
 
 
4474
* ``Repository`` objects now have ``suspend_write_group`` and
 
4475
  ``resume_write_group`` methods.  These are currently only useful
 
4476
  with pack repositories. (Andrew Bennetts, Robert Collins)
 
4477
 
 
4478
* ``BzrDirFormat``, ``BranchFormat`` and ``RepositoryFormat`` objects
 
4479
  now have a ``network_name`` for passing the format across RPC calls.
 
4480
  (Robert Collins, Andrew Bennetts)
 
4481
 
 
4482
* ``RepositoryFormat`` objects now all have a new attribute
 
4483
  ``_serializer`` used by fetch when reserialising is required.
 
4484
  (Robert Collins, Andrew Bennetts)
 
4485
 
 
4486
* Some methods have been pulled up from ``BzrBranch`` to ``Branch``
 
4487
  to aid branch types that are not bzr branch objects (like
 
4488
  RemoteBranch). (Robert Collins, Andrew Bennetts)
 
4489
 
 
4490
* Test adaptation has been made consistent throughout the built in
 
4491
  tests. ``TestScenarioApplier``, ``multiply_tests_from_modules``,
 
4492
  ``adapt_tests``, ``adapt_modules`` have all been deleted. Please
 
4493
  use ``multiply_tests``, or for lower level needs ``apply_scenarios``
 
4494
  and ``apply_scenario``. (Robert Collins)
 
4495
 
 
4496
* ``TestSkipped`` is now detected by TestCase and passed to the
 
4497
  ``TestResult`` by calling ``addSkip``. For older TestResult objects,
 
4498
  where ``addSkip`` is not available, ``addError`` is still called.
 
4499
  This permits test filtering in subunit to strip out skipped tests
 
4500
  resulting in a faster fix-shrink-list-run cycle. This is compatible
 
4501
  with the testtools protocol for skips. (Robert Collins)
 
4502
 
 
4503
* The ``_index`` of ``KnitVersionedFiles`` now supports the ability
 
4504
  to scan an underlying index that is going to be incorporated into
 
4505
  the ``KnitVersionedFiles`` object, to determine if it has missing
 
4506
  delta references. The method is ``scan_unvalidated_index``.
 
4507
  (Andrew Bennetts, Robert Collins)
 
4508
 
 
4509
* There is a RemoteSink object which handles pushing to smart servers.
 
4510
  (Andrew Bennetts, Robert Collins)
 
4511
 
 
4512
* ``TransportTraceDecorator`` now logs ``put_bytes_non_atomic`` and
 
4513
  ``rmdir`` calls. (Robert Collins)
 
4514
 
 
4515
* ``VersionedFiles`` record adapters have had their signature change
 
4516
  from ``(record, record.get_bytes_as(record.storage_kind))`` to
 
4517
  ``(record)`` reducing excess duplication and allowing adapters
 
4518
  to access private data in record to obtain content more
 
4519
  efficiently. (Robert Collins)
 
4520
 
 
4521
* We no longer probe to see if we should create a working tree during
 
4522
  clone if we cannot get a local_abspath for the new bzrdir.
 
4523
  (Robert Collins)
 
4524
 
 
4525
 
 
4526
bzr 1.12
 
4527
########
 
4528
 
 
4529
:Codename: 1234567890
 
4530
:1.12: 2009-02-13
 
4531
:1.12rc1: 2009-02-10
 
4532
 
 
4533
This release of Bazaar contains many improvements to the speed,
 
4534
documentation and functionality of ``bzr log`` and the display of logged
 
4535
revisions by ``bzr status``.  bzr now also gives a better indication of
 
4536
progress, both in the way operations are drawn onto a text terminal, and
 
4537
by showing the rate of network IO.
 
4538
 
 
4539
Changes from RC1 to Final
 
4540
*************************
 
4541
 
 
4542
* ``bzr init --development-wt5[-rich-root]`` would fail because of
 
4543
  circular import errors. (John Arbash Meinel, #328135)
 
4544
 
 
4545
* Expanded the help for log and added a new help topic called
 
4546
  ``log-formats``.  (Ian Clatworthy)
 
4547
 
 
4548
Compatibility Breaks
 
4549
********************
 
4550
 
 
4551
* By default, ``bzr status`` after a merge now shows just the pending
 
4552
  merge tip revisions. This improves the signal-to-noise ratio after
 
4553
  merging from trunk and completes much faster. To see all merged
 
4554
  revisions, use the new ``-v`` flag.  (Ian Clatworthy)
 
4555
 
 
4556
* ``bzr log --line`` now shows any tags after the date and before
 
4557
  the commit message. If you have scripts which parse the output
 
4558
  from this command, you may need to adjust them accordingly.
 
4559
  (Ian Clatworthy)
 
4560
 
 
4561
* ``bzr log --short`` now shows any additional revision properties
 
4562
  after the date and before the commit message.  Scripts that parse 
 
4563
  output of the log command in this situation may need to adjust.
 
4564
  (Neil Martinsen-Burrell)
 
4565
 
 
4566
* The experimental formats ``1.12-preview`` and ``1.12-preview-rich-root``
 
4567
  have been renamed ``development-wt5`` and ``development-wt5-rich-root``
 
4568
  respectively, given they are not ready for release in 1.12.
 
4569
  (Ian Clatworthy)
 
4570
 
 
4571
* ``read_bundle_from_url`` has been deprecated. (Vincent Ladeuil)
 
4572
 
 
4573
New Features
 
4574
************
 
4575
 
 
4576
* Add support for filtering ``bzr missing`` on revisions.  Remote revisions
 
4577
  can be filtered using ``bzr missing -r -20..-10`` and local revisions can
 
4578
  be filtered using ``bzr missing --my-revision -20..-10``.
 
4579
  (Marius Kruger)
 
4580
 
 
4581
* ``bzr log -p`` displays the patch diff for each revision.
 
4582
  When logging a file, the diff only includes changes to that file.
 
4583
  (Ian Clatworthy, #202331, #227335)
 
4584
 
 
4585
* ``bzr log`` supports a new option called ``-n N`` or ``--level N``.
 
4586
  A value of 0 (zero) means "show all nested merge revisions" while
 
4587
  a value of 1 (one) means "show just the top level". Values above
 
4588
  1 can be used to see a limited amount of nesting. That can be
 
4589
  useful for seeing the level or two below PQM submits for example.
 
4590
  To force the ``--short`` and ``--line`` formats to display all nested
 
4591
  merge revisions just like ``--long`` does by default, use a command
 
4592
  like ``bzr log --short -n0``. To display just the mainline using
 
4593
  ``--long`` format, ``bzr log --long -n1``.
 
4594
  (Ian Clatworthy)
 
4595
 
 
4596
Improvements
 
4597
************
 
4598
 
 
4599
* ``bzr add`` more clearly communicates success vs failure.
 
4600
  (Daniel Watkins)
 
4601
 
 
4602
* ``bzr init`` will now print a little less verbose output.
 
4603
  (Marius Kruger)
 
4604
 
 
4605
* ``bzr log`` is now much faster in many use cases, particularly
 
4606
  at incrementally displaying results and filtering by a
 
4607
  revision range. (Ian Clatworthy)
 
4608
 
 
4609
* ``bzr log --short`` and ``bzr log --line`` now show tags, if any,
 
4610
  for each revision. The tags are shown comma-separated inside
 
4611
  ``{}``. For short format, the tags appear at the end of line
 
4612
  before the optional ``[merge]`` indicator. For line format,
 
4613
  the tags appear after the date. (Ian Clatworthy)
 
4614
 
 
4615
* Progress bars now show the rate of activity for some sftp 
 
4616
  operations, and they are drawn different.  (Martin Pool, #172741)
 
4617
 
 
4618
* Progress bars now show the rate of activity for urllib and pycurl based
 
4619
  http client implementations. The operations are tracked at the socket
 
4620
  level for better precision.
 
4621
  (Vincent Ladeuil)
 
4622
 
 
4623
* Rule-based preferences can now accept multiple patterns for a set of
 
4624
  rules.  (Marius Kruger)
 
4625
 
 
4626
* The ``ancestor:`` revision spec will now default to referring to the
 
4627
  parent of the branch if no other location is given.
 
4628
  (Daniel Watkins, #198417)
 
4629
 
 
4630
* The debugger started as a result of setting ``$BZR_PDB`` works
 
4631
  around a bug in ``pdb``, http://bugs.python.org/issue4150.  The bug
 
4632
  can cause truncated tracebacks in Python versions before 2.6.
 
4633
  (Andrew Bennetts)
 
4634
 
 
4635
* VirtualVersionedFiles now implements
 
4636
  ``iter_lines_added_or_present_in_keys``. This allows the creation of 
 
4637
  new branches based on stacked bzr-svn branches. (#311997)
 
4638
 
 
4639
Bug Fixes
 
4640
*********
 
4641
 
 
4642
* ``bzr annotate --show-ids`` doesn't give a backtrace on empty files
 
4643
  anymore.
 
4644
  (Anne Mohsen, Vincent Ladeuil, #314525)
 
4645
 
 
4646
* ``bzr log FILE`` now correctly shows mainline revisions merging
 
4647
  a change to FILE when the ``--short`` and ``--line`` log formats
 
4648
  are used. (Ian Clatworthy, #317417)
 
4649
 
 
4650
* ``bzr log -rX..Y FILE`` now shows the history of FILE provided
 
4651
  it existed in Y or X, even if the file has since been deleted or
 
4652
  renamed. If no range is given, the current/basis tree and
 
4653
  initial tree are searched in that order. More generally, log
 
4654
  now interprets filenames in their historical context.
 
4655
  (Ian Clatworthy, #175520)
 
4656
 
 
4657
* ``bzr status`` now reports nonexistent files and continues, then
 
4658
  errors (with code 3) at the end.  (Karl Fogel, #306394)
 
4659
 
 
4660
* Don't require the present compression base in knits to be the same
 
4661
  when adding records in knits. (Jelmer Vernooij, #307394)
 
4662
 
 
4663
* Fix a problem with CIFS client/server lag on Windows colliding with
 
4664
  an invariant-per-process algorithm for generating AtomicFile names
 
4665
  (Adrian Wilkins, #304023)
 
4666
 
 
4667
* Many socket operations now handle EINTR by retrying the operation.
 
4668
  Previously EINTR was treated as an unrecoverable failure.  There is
 
4669
  a new ``until_no_eintr`` helper function in ``bzrlib.osutils``.
 
4670
  (Andrew Bennetts)
 
4671
 
 
4672
* Support symlinks with non-ascii characters in the symlink filename.
 
4673
  (Jelmer Vernooij, #319323)
 
4674
 
 
4675
* There was a bug in how we handled resolving when a file is deleted
 
4676
  in one branch, and modified in the other. If there was a criss-cross
 
4677
  merge, we would cause the deletion to conflict a second time.
 
4678
  (Vincent Ladeuil, John Arbash Meinel)
 
4679
 
 
4680
* There was another bug in how we chose the correct intermediate LCA in
 
4681
  criss-cross merges leading to several kind of changes be incorrectly
 
4682
  handled.
 
4683
  (John Arbash Meinel, Vincent Ladeuil)
 
4684
 
 
4685
* Unshelve now handles deleted paths without crashing. (Robert Collins)
 
4686
 
 
4687
Documentation
 
4688
*************
 
4689
 
 
4690
* Improved plugin developer documentation.  (Martin Pool)
 
4691
 
 
4692
API Changes
 
4693
***********
 
4694
 
 
4695
* ``ProgressBarStack`` is deprecated; instead use
 
4696
  ``ui_factory.nested_progress_bar`` to create new progress bars.
 
4697
  (Martin Pool)
 
4698
 
 
4699
* ForeignVcsMapping() now requires a ForeignVcs object as first
 
4700
  argument. (Jelmer Vernooij)
 
4701
 
 
4702
* ForeignVcsMapping.show_foreign_revid() has been moved to
 
4703
  ForeignVcs. (Jelmer Vernooij)
 
4704
 
 
4705
* ``read_bundle_from_url`` is deprecated in favor of
 
4706
  ``read_mergeable_from_url``.  (Vincent Ladeuil)
 
4707
 
 
4708
* Revision specifiers are now registered in
 
4709
  ``bzrlib.revisionspec.revspec_registry``, and the old list of 
 
4710
  revisionspec classes (``bzrlib.revisionspec.SPEC_TYPES``) has been
 
4711
  deprecated. (Jelmer Vernooij, #321183)
 
4712
 
 
4713
* The progress and UI classes have changed; the main APIs remain the
 
4714
  same but code that provides a new UI or progress bar class may
 
4715
  need to be updated.  (Martin Pool)
 
4716
 
 
4717
Internals
 
4718
*********
 
4719
 
 
4720
* Default User Interface (UI) is CLIUIFactory when bzr runs in a dumb
 
4721
  terminal. It is sometimes desirable do override this default by forcing
 
4722
  bzr to use TextUIFactory. This can be achieved by setting the
 
4723
  BZR_USE_TEXT_UI environment variable (emacs shells, as opposed to
 
4724
  compile buffers, are such an example).
 
4725
  (Vincent Ladeuil)
 
4726
 
 
4727
* New API ``Branch.iter_merge_sorted_revisions()`` that iterates over
 
4728
  ``(revision_id, depth, revno, end_of_merge)`` tuples.
 
4729
  (Ian Clatworthy)
 
4730
 
 
4731
* New ``Branch.dotted_revno_to_revision_id()`` and
 
4732
  ``Branch.revision_id_to_dotted_revno()`` APIs that pick the most
 
4733
  efficient way of doing the mapping.
 
4734
  (Ian Clatworthy)
 
4735
 
 
4736
* Refactor cmd_serve so that it's a little easier to build commands that
 
4737
  extend it, and perhaps even a bit easier to read.  (Jonathan Lange)
 
4738
 
 
4739
* ``TreeDelta.show()`` now accepts a ``filter`` parameter allowing log
 
4740
  formatters to retrict the output.
 
4741
  (Vincent Ladeuil)
 
4742
 
 
4743
 
 
4744
bzr 1.11
 
4745
########
 
4746
 
 
4747
:Codename: "Eyes up!"
 
4748
:Released: 2009-01-19
 
4749
 
 
4750
This first monthly release of Bazaar for 2009 improves Bazaar's operation
 
4751
in Windows, Mac OS X, and other situations where file names are matched
 
4752
without regard to capitalization: Bazaar tries to match the case of an
 
4753
existing file.  This release of Bazaar also improves the efficiency of
 
4754
Tortoise Windows Shell integration and lets it work on 64-bit platforms.
 
4755
 
 
4756
The UI through which Bazaar supports historic formats has been improved,
 
4757
so 'bzr help formats' now gives a simpler and shorter list, with clear
 
4758
advice.
 
4759
 
 
4760
This release also fixes a number of bugs, particularly a glitch that can
 
4761
occur when there are concurrent writes to a pack repository.
 
4762
 
 
4763
Bug Fixes
 
4764
*********
 
4765
 
 
4766
* Fix failing test when CompiledChunksToLines is not available.
 
4767
  (Vincent Ladeuil)
 
4768
 
 
4769
* Stacked branches don't repeatedly open their transport connection.
 
4770
  (John Arbash Meinel)
 
4771
 
 
4772
 
 
4773
 
 
4774
bzr 1.11rc1
 
4775
###########
 
4776
 
 
4777
:Codename: "Eyes up!"
 
4778
:Released: 2009-01-09
 
4779
 
 
4780
Changes
 
4781
*******
 
4782
 
 
4783
* Formats using Knit-based repository formats are now explicitly
 
4784
  marked as deprecated. (Ian Clatworthy)
 
4785
 
 
4786
New Features
 
4787
************
 
4788
 
 
4789
* Add support for `bzr tags -r 1..2`, that is we now support showing
 
4790
  tags applicable for a specified revision range. (Marius Kruger)
 
4791
 
 
4792
* ``authentication.conf`` now accepts pluggable read-only credential
 
4793
  stores. Such a plugin (``netrc_credential_store``) is now included,
 
4794
  handles the ``$HOME/.netrc`` file and can server as an example to
 
4795
  implement other plugins.
 
4796
  (Vincent Ladeuil)
 
4797
 
 
4798
* ``shelve --list`` can now be used to list shelved changes.
 
4799
  (Aaron Bentley)
 
4800
 
 
4801
Improvements
 
4802
************
 
4803
 
 
4804
* Add trailing slash to directories in all output of ``bzr ls``, except
 
4805
  ``bzr ls --null``. (Gordon P. Hemsley, #306424)
 
4806
 
 
4807
* ``bzr revision-info`` now supports a -d option to specify an
 
4808
  alternative branch. (Michael Hudson)
 
4809
 
 
4810
* Add connection to a C++ implementation of the Windows Shell Extension
 
4811
  which is able to fully replace the current Python implemented one.
 
4812
  Advantages include 64bit support and reduction in overhead for
 
4813
  processes which drag in shell extensions.
 
4814
  (Mark Hammond)
 
4815
 
 
4816
* Support the Claws mail client directly, rather than via
 
4817
  xdg-email. This prevents the display of an unnecessary modal
 
4818
  dialog in Claws, informing the user that a file has been
 
4819
  attached to the message, and works around bug #291847 in
 
4820
  xdg-utils which corrupts the destination address.
 
4821
 
 
4822
* When working on a case-insensitive case-preserving file-system, as
 
4823
  commonly found with Windows, bzr will often ignore the case of the
 
4824
  arguments specified by the user in preference to the case of an existing
 
4825
  item on the file-system or in the inventory to help prevent
 
4826
  counter-intuitive behaviour on Windows. (Mark Hammond)
 
4827
 
 
4828
Bug Fixes
 
4829
*********
 
4830
  
 
4831
* Allow BzrDir implementation to implement backing up of 
 
4832
  control directory. (#139691)
 
4833
 
 
4834
* ``bzr push`` creating a new stacked branch will now only open a
 
4835
  single connection to the target machine. (John Arbash Meinel)
 
4836
 
 
4837
* Don't call iteritems on transport_list_registry, because it may
 
4838
  change during iteration.  (Martin Pool, #277048)
 
4839
 
 
4840
* Don't make a broken branch when pushing an unstackable-format branch
 
4841
  that's in a stackable shared repository to a location with default
 
4842
  stack-on location.  (Andrew Bennetts, #291046)
 
4843
 
 
4844
* Don't require embedding user in HTTP(S) URLs do use authentication.conf.
 
4845
  (Ben Jansen, Vincent Ladeuil, #300347)
 
4846
 
 
4847
* Fix a problem with CIFS client/server lag on windows colliding with
 
4848
  an invariant-per-process algorithm for generating AtomicFile names
 
4849
  (Adrian Wilkins, #304023)
 
4850
 
 
4851
* Fix bogus setUp signature in UnavailableFTPServer.
 
4852
  (Gary van der Merwe, #313498)
 
4853
 
 
4854
* Fix compilation error in ``_dirstate_helpers_c`` on SunOS/Solaris.
 
4855
  (Jari Aalto)
 
4856
 
 
4857
* Fix SystemError in ``_patiencediff_c`` module by calling
 
4858
  PyErr_NoMemory() before returning NULL in PatienceSequenceMatcher_new.
 
4859
  (Andrew Bennetts, #303206)
 
4860
 
 
4861
* Give proper error message for diff with non-existent dotted revno.
 
4862
  (Marius Kruger, #301969)
 
4863
 
 
4864
* Handle EACCES (permission denied) errors when launching a message
 
4865
  editor, and emit warnings when a configured editor cannot be
 
4866
  started. (Andrew Bennetts)
 
4867
 
 
4868
* ``$HOME/.netrc`` file is now recognized as a read-only credential store
 
4869
  if configured in ``authentication.conf`` with 'password_encoding=netrc'
 
4870
  in the appropriate sections.
 
4871
  (Vincent Ladeuil, #103029)
 
4872
 
 
4873
* Opening a stacked branch now properly shares the connection, rather
 
4874
  than opening a new connection for the stacked-on branch.
 
4875
  (John Arbash meinel)
 
4876
 
 
4877
* Preserve transport decorators while following redirections.
 
4878
  (Vincent Ladeuil, #245964, #270863)
 
4879
 
 
4880
* Provides a finer and more robust filter for accepted redirections.
 
4881
  (Vincent Ladeuil, #303959, #265070)
 
4882
 
 
4883
* ``shelve`` paths are now interpreted relative to the current working
 
4884
  tree.  (Aaron Bentley)
 
4885
 
 
4886
* ``Transport.readv()`` defaults to not reading more than 100MB in a
 
4887
  single array. Further ``RemoteTransport.readv`` sets this to 5MB to
 
4888
  work better with how it splits its requests.
 
4889
  (John Arbash Meinel, #303538)
 
4890
 
 
4891
* Pack repositories are now able to reload the pack listing and retry
 
4892
  the current operation if another action causes the data to be
 
4893
  repacked.  (John Arbash Meinel, #153786)
 
4894
 
 
4895
* ``pull -v`` now respects the log_format configuration variable.
 
4896
  (Aaron Bentley)
 
4897
 
 
4898
* ``push -v`` now works on non-initial pushes.  (Aaron Bentley)
 
4899
 
 
4900
* Use the short status format when the short format is used for log.
 
4901
  (Vincent Ladeuil, #87179)
 
4902
 
 
4903
* Allow files to be renamed or moved via remove + add-by-id. (Charles
 
4904
  Duffy, #314251)
 
4905
 
 
4906
Documentation
 
4907
*************
 
4908
 
 
4909
* Improved the formats help topic to explain why multiple formats
 
4910
  exist and to provide guidelines in selecting one. Introduced
 
4911
  two new supporting help topics: current-formats and other-formats.
 
4912
  (Ian Clatworthy)
 
4913
 
 
4914
API Changes
 
4915
***********
 
4916
 
 
4917
* ``LRUCache(after_cleanup_size)`` was renamed to
 
4918
  ``after_cleanup_count`` and the old name deprecated. The new name is
 
4919
  used for clarity, and to avoid confusion with
 
4920
  ``LRUSizeCache(after_cleanup_size)``. (John Arbash Meinel)
 
4921
 
 
4922
* New ``ForeignRepository`` base class, to help with foreign branch 
 
4923
  support (e.g. svn).  (Jelmer Vernooij)
 
4924
 
 
4925
* ``node_distances`` and ``select_farthest`` can no longer be imported
 
4926
  from ``bzrlib.graph``.  They can still be imported from
 
4927
  ``bzrlib.deprecated_graph``, which has been the preferred way to
 
4928
  import them since before 1.0.  (Andrew Bennetts)
 
4929
  
 
4930
* The logic in commit now delegates inventory basis calculations to
 
4931
  the ``CommitBuilder`` object; this requires that the commit builder
 
4932
  in use has been updated to support the new ``recording_deletes`` and
 
4933
  ``record_delete`` methods. (Robert Collins)
 
4934
 
 
4935
Testing
 
4936
*******
 
4937
 
 
4938
* An HTTPS server is now available (it requires python-2.6). Future bzr
 
4939
  versions will allow the use of the python-2.6 ssl module that can be
 
4940
  installed for 2.5 and 2.4.
 
4941
 
 
4942
* ``bzr selftest`` now fails if new trailing white space is added to
 
4943
  the bazaar sources. It only checks changes not committed yet. This
 
4944
  means that PQM will now reject changes that introduce new trailing
 
4945
  whitespace. (Marius Kruger)
 
4946
 
 
4947
* Introduced new experimental formats called ``1.12-preview`` and
 
4948
  ``1.12-preview-rich-root`` to enable testing of related pending
 
4949
  features, namely content filtering and filtered views.
 
4950
  (Ian Clatworthy)
 
4951
 
 
4952
Internals
 
4953
*********
 
4954
 
 
4955
* Added an ``InventoryEntry`` cache when deserializing inventories.
 
4956
  Can cut the time to iterate over multiple RevisionsTrees in half.
 
4957
  (John Arbash Meinel)
 
4958
 
 
4959
* Added ``bzrlib.fifo_cache.FIFOCache`` which is designed to have
 
4960
  minimal overhead versus using a plain dict for cache hits, at the
 
4961
  cost of not preserving the 'active' set as well as an ``LRUCache``.
 
4962
  (John Arbash Meinel)
 
4963
 
 
4964
* ``bzrlib.patience_diff.unified_diff`` now properly uses a tab
 
4965
  character to separate the filename from the date stamp, and doesn't
 
4966
  add trailing whitespace when a date stamp is not supplied.
 
4967
  (Adeodato Simó, John Arbash Meinel)
 
4968
 
 
4969
* ``DirStateWorkingTree`` and ``DirStateWorkingTreeFormat`` added
 
4970
  as base classes of ``WorkingTree4`` and ``WorkingTreeFormat4``
 
4971
  respectively. (Ian Clatworthy)
 
4972
 
 
4973
* ``KnitVersionedFiles._check_should_delta()`` now uses the
 
4974
  ``get_build_details`` api to avoid multiple hits to the index, and
 
4975
  to properly follow the ``compression_parent`` rather than assuming
 
4976
  it is the left-hand parent. (John Arbash Meinel)
 
4977
 
 
4978
* ``KnitVersionedFiles.get_record_stream()`` will now chose a
 
4979
  more optimal ordering when the keys are requested 'unordered'.
 
4980
  Previously the order was fully random, now the records should be
 
4981
  returned from each pack in turn, in forward I/O order.
 
4982
  (John Arbash Meinel)
 
4983
    
 
4984
* ``mutter()`` will now flush the ``~/.bzr.log`` if it has been more
 
4985
  than 2s since the last time it flushed. (John Arbash Meinel)
 
4986
 
 
4987
* New method ``bzrlib.repository.Repository.add_inventory_by_delta``
 
4988
  allows adding an inventory via an inventory delta, which can be
 
4989
  more efficient for some repository types. (Robert Collins)
 
4990
 
 
4991
* Repository ``CommitBuilder`` objects can now accumulate an inventory
 
4992
  delta. To enable this functionality call ``builder.recording_deletes``
 
4993
  and additionally call ``builder.record_delete`` when a delete
 
4994
  against the basis occurs. (Robert Collins)
 
4995
 
 
4996
* The default http handler has been changed from pycurl to urllib.
 
4997
  The default is still pycurl for https connections. (The only
 
4998
  advantage of pycurl is that it checks ssl certificates.)
 
4999
  (John Arbash Meinel)
 
5000
 
 
5001
* ``VersionedFiles.get_record_stream()`` can now return objects with a
 
5002
  storage_kind of ``chunked``. This is a collection (list/tuple) of
 
5003
  strings. You can use ``osutils.chunks_to_lines()`` to turn them into
 
5004
  guaranteed 'lines' or you can use ``''.join(chunks)`` to turn it
 
5005
  into a fulltext. This allows for some very good memory savings when
 
5006
  asking for many texts that share ancestry, as the individual chunks
 
5007
  can be shared between versions of the file. (John Arbash Meinel)
 
5008
 
 
5009
* ``pull -v`` and ``push -v`` use new function
 
5010
  ``bzrlib.log.show_branch_change`` (Aaron Bentley)
 
5011
 
 
5012
 
 
5013
 
 
5014
bzr 1.10
 
5015
########
 
5016
 
 
5017
:Released: 2008-12-05
 
5018
 
 
5019
Bazaar 1.10 has several performance improvements for copying revisions
 
5020
(especially for small updates to large projects).  There has also been a
 
5021
significant amount of effort in polishing stacked branches.  The commands
 
5022
``shelve`` and ``unshelve`` have become core commands, with an improved
 
5023
implementation.
 
5024
 
 
5025
The only changes versus bzr-1.10rc1 are bugfixes for stacked branches.
 
5026
 
 
5027
bug Fixes
 
5028
*********
 
5029
 
 
5030
* Don't set a pack write cache size from RepoFetcher, because the
 
5031
  cache is not coherent with reads and causes ShortReadvErrors.
 
5032
  This reverses the change that fixed #294479.
 
5033
  (Martin Pool, #303856)
 
5034
 
 
5035
* Properly handle when a revision can be inserted as a delta versus
 
5036
  when it needs to be expanded to a fulltext for stacked branches.
 
5037
  There was a bug involving merge revisions. As a method to help
 
5038
  prevent future difficulties, also make stacked fetches sort
 
5039
  topologically. (John Arbash Meinel, #304841)
 
5040
 
 
5041
 
 
5042
bzr 1.10rc1
 
5043
###########
 
5044
 
 
5045
:Released: 2008-11-28
 
5046
 
 
5047
This release of Bazaar focuses on performance improvements when pushing
 
5048
and pulling revisions, both locally and to remote networks.  The popular
 
5049
``shelve`` and ``unshelve`` commands, used to interactively revert and
 
5050
restore work in progress, have been merged from bzrtools into the bzr
 
5051
core.  There are also bug fixes for portability, and for stacked branches.
 
5052
 
 
5053
New Features
 
5054
************
 
5055
 
 
5056
* New ``commit_message_template`` hook that is called by the commit
 
5057
  code to generate a template commit message. (Jelmer Vernooij)
 
5058
 
 
5059
* New `shelve` and `unshelve` commands allow undoing and redoing changes.
 
5060
  (Aaron Bentley)
 
5061
 
 
5062
Improvements
 
5063
************
 
5064
 
 
5065
* ``(Remote)Branch.copy_content_into`` no longer generates the full revision
 
5066
  history just to set the last revision info.
 
5067
  (Andrew Bennetts, John Arbash Meinel)
 
5068
 
 
5069
* Fetches between formats with different serializers (such as
 
5070
  pack-0.92-subtree and 1.9-rich-root) are faster now.  This is due to
 
5071
  operating on batches of 100 revisions at time rather than
 
5072
  one-by-one.  (Andrew Bennetts, John Arbash Meinel)
 
5073
 
 
5074
* Search index files corresponding to pack files we've already used
 
5075
  before searching others, because they are more likely to have the
 
5076
  keys we're looking for.  This reduces the number of iix and tix
 
5077
  files accessed when pushing 1 new revision, for instance.
 
5078
  (John Arbash Meinel)
 
5079
 
 
5080
* Signatures to transfer are calculated more efficiently in
 
5081
  ``item_keys_introduced_by``.  (Andrew Bennetts, John Arbash Meinel)
 
5082
 
 
5083
* The generic fetch code can once again copy revisions and signatures
 
5084
  without extracting them completely to fulltexts and then serializing
 
5085
  them back down into byte strings. This is a significant performance
 
5086
  improvement when fetching from a stacked branch.
 
5087
  (John Arbash Meinel, #300289)
 
5088
 
 
5089
* When making a large readv() request over ``bzr+ssh``, break up the
 
5090
  request into more manageable chunks. Because the RPC is not yet able
 
5091
  to stream, this helps keep us from buffering too much information at
 
5092
  once. (John Arbash Meinel)
 
5093
 
 
5094
Bug Fixes
 
5095
*********
 
5096
 
 
5097
* Better message when the user needs to set their Launchpad ID.
 
5098
  (Martin Pool, #289148)
 
5099
 
 
5100
* ``bzr commit --local`` doesn't access the master branch anymore.
 
5101
  This fixes a regression introduced in 1.9.  (Marius Kruger, #299313)
 
5102
 
 
5103
* Don't call the system ``chdir()`` with an empty path. Sun OS seems
 
5104
  to give an error in that case.  Also, don't count on ``getcwd()``
 
5105
  being able to allocate a new buffer, which is a gnu extension.
 
5106
  (John Arbash Meinel, Martin Pool, Harry Hirsch, #297831)
 
5107
 
 
5108
* Don't crash when requesting log --forward <file> for a revision range
 
5109
  starting with a dotted revno.
 
5110
  (Vincent Ladeuil, #300055)
 
5111
 
 
5112
* Don't create text deltas spanning stacked repositories; this could
 
5113
  cause "Revision X not present in Y" when later accessing them.
 
5114
  (Martin Pool, #288751)
 
5115
 
 
5116
* Pack repositories are now able to reload the pack listing and retry
 
5117
  the current operation if another action causes the data to be
 
5118
  repacked.  (John Arbash Meinel, #153786)
 
5119
 
 
5120
* PermissionDenied errors from smart servers no longer cause
 
5121
  "PermissionDenied: "None"" on the client.
 
5122
  (Andrew Bennetts, #299254)
 
5123
 
 
5124
* Pushing to a stacked pack repository now batches writes, the same
 
5125
  way writes are batched to ordinary pack repository.  This makes
 
5126
  pushing to a stacked branch over the network much faster.
 
5127
  (Andrew Bennetts, #294479)
 
5128
 
 
5129
* TooManyConcurrentRequests no longer occur when a fetch fails and
 
5130
  tries to abort a write group.  This allows the root cause (e.g. a
 
5131
  network interruption) to be reported.  (Andrew Bennetts, #297014)
 
5132
 
 
5133
* RemoteRepository.get_parent_map now uses fallback repositories.
 
5134
  (Aaron Bentley, #297991?, #293679?)
 
5135
 
 
5136
API Changes
 
5137
***********
 
5138
 
 
5139
* ``CommitBuilder`` now validates the strings it will be committing,
 
5140
  to ensure that they do not have characters that will not be properly
 
5141
  round-tripped. For now, it just checks for characters that are
 
5142
  invalid in the XML form. (John Arbash Meinel, #295161)
 
5143
 
 
5144
* Constructor parameters for NewPack (internal to pack repositories)
 
5145
  have changed incompatibly.
 
5146
 
 
5147
* ``Repository.abort_write_group`` now accepts an optional
 
5148
  ``suppress_errors`` flag.  Repository implementations that override
 
5149
  ``abort_write_group`` will need to be updated to accept the new
 
5150
  argument.  Subclasses that only override ``_abort_write_group``
 
5151
  don't need to change.
 
5152
 
 
5153
* Transport implementations must provide copy_tree_to_transport.  A default
 
5154
  implementation is provided for Transport subclasses.
 
5155
 
 
5156
Testing
 
5157
*******
 
5158
 
 
5159
* ``bzr selftest`` now fails if no doctests are found in a module
 
5160
  that's expected to have them.  (Martin Pool)
 
5161
 
 
5162
* Doctests now only report the first failure.  (Martin Pool)
 
5163
 
 
5164
 
 
5165
bzr 1.9
 
5166
#######
 
5167
 
 
5168
:Released: 2008-11-07
 
5169
 
 
5170
This release of Bazaar adds a new repository format, ``1.9``, with smaller
 
5171
and more efficient index files.  This format can be specified when
 
5172
creating a new repository, or used to losslessly upgrade an existing
 
5173
repository.  bzr 1.9 also speeds most operations over the smart server
 
5174
protocol, makes annotate faster, and uses less memory when making
 
5175
checkouts or pulling large amounts of data.
 
5176
 
 
5177
Bug Fixes
 
5178
*********
 
5179
 
 
5180
* Fix "invalid property value 'branch-nick' for None" regression with
 
5181
  branches bound to svn branches.  (Martin Pool, #293440)
 
5182
 
 
5183
* Fix SSL/https on Python2.6.  (Vincent Ladeuil, #293054)
 
5184
 
 
5185
* ``SFTPTransport.readv()`` had a bug when requests were out-of-order.
 
5186
  This only triggers some-of-the-time on Knit format repositories.
 
5187
  (John Arbash Meinel, #293746)
 
5188
 
 
5189
 
 
5190
bzr 1.9rc1
 
5191
##########
 
5192
 
 
5193
:Released: 2008-10-31
 
5194
 
 
5195
New Features
 
5196
************
 
5197
 
 
5198
* New Branch hook ``transform_fallback_location`` allows a function to
 
5199
  be called when looking up the stacked source. (Michael Hudson)
 
5200
 
 
5201
* New repository formats ``1.9`` and ``1.9-rich-root``. These have all
 
5202
  the functionality of ``1.6``, but use the new btree indexes.
 
5203
  These indexes are both smaller and faster for access to historical
 
5204
  information.  (John Arbash Meinel)
 
5205
 
 
5206
Improvements
 
5207
************
 
5208
 
 
5209
* ``BTreeIndex`` code now is able to prefetch extra pages to help tune
 
5210
  the tradeoff between bandwidth and latency. Should be tuned
 
5211
  appropriately to not impact commands which need minimal information,
 
5212
  but provide a significant boost to ones that need more context. Only
 
5213
  has a direct impact on the ``--development2`` format which uses
 
5214
  btree's for the indexes. (John Arbash Meinel)
 
5215
 
 
5216
* ``bzr dump-btree`` is a hidden command introduced to allow dumping
 
5217
  the contents of a compressed btree file.  (John Arbash Meinel)
 
5218
 
 
5219
* ``bzr pack`` now tells the index builders to optimize for size. For
 
5220
  btree index repositories, this can save 25% of the index size
 
5221
  (mostly in the text indexes). (John Arbash Meinel)
 
5222
 
 
5223
* ``bzr push`` to an existing branch or repository on a smart server
 
5224
  is faster, due to Bazaar making more use of the ``get_parent_map``
 
5225
  RPC when querying the remote branch's revision graph.
 
5226
  (Andrew Bennetts)
 
5227
 
 
5228
* default username for bzr+ssh and sftp can be configured in
 
5229
  authentication.conf. (Aaron Bentley)
 
5230
 
 
5231
* launchpad-login now provides a default username for bzr+ssh and sftp
 
5232
  URLs, allowing username-free URLs to work for everyone. (Aaron Bentley)
 
5233
 
 
5234
* ``lp:`` lookups no longer include usernames, making them shareable and
 
5235
  shorter. (Aaron Bentley)
 
5236
 
 
5237
* New ``PackRepository.autopack`` smart server RPC, which does
 
5238
  autopacking entirely on the server.  This is much faster than
 
5239
  autopacking via plain file methods, which downloads a large amount
 
5240
  of pack data and then re-uploads the same pack data into a single
 
5241
  file.  This fixes a major (although infrequent) cause of lengthy
 
5242
  delays when using a smart server.  For example, pushing the 10th
 
5243
  revision to a repository with 9 packs now takes 44 RPCs rather than
 
5244
  179, and much less bandwidth too.  This requires Bazaar 1.9 on both
 
5245
  the client and the server, otherwise the client will fallback to the
 
5246
  slower method.  (Andrew Bennetts)
 
5247
 
 
5248
Bug Fixes
 
5249
*********
 
5250
 
 
5251
* A failure to load a plugin due to an IncompatibleAPI exception is
 
5252
  now correctly reported. (Robert Collins, #279451)
 
5253
 
 
5254
* API versioning support now has a multiple-version checking api
 
5255
  ``require_any_api``. (Robert Collins, #279447)
 
5256
 
 
5257
* ``bzr branch --stacked`` from a smart server to a standalone branch
 
5258
  works again.  This fixes a regression in 1.7 and 1.8.
 
5259
  (Andrew Bennetts, #270397)
 
5260
 
 
5261
* ``bzr co`` uses less memory. It used to unpack the entire WT into
 
5262
  memory before writing it to disk. This was a little bit faster, but
 
5263
  consumed lots of memory. (John Arbash Meinel, #269456)
 
5264
 
 
5265
* ``bzr missing --quiet`` no longer prints messages about whether
 
5266
  there are missing revisions.  The exit code indicates whether there
 
5267
  were or not.  (Martin Pool, #284748)
 
5268
 
 
5269
* Fixes to the ``annotate`` code. The fast-path which re-used the
 
5270
  stored deltas was accidentally disabled all the time, instead of
 
5271
  only when a branch was stacked. Second, the code would accidentally
 
5272
  re-use a delta even if it wasn't against the left-parent, this
 
5273
  could only happen if ``bzr reconcile`` decided that the parent
 
5274
  ordering was incorrect in the file graph.  (John Arbash Meinel)
 
5275
 
 
5276
* "Permission denied" errors that occur when pushing a new branch to a
 
5277
  smart server no longer cause tracebacks.  (Andrew Bennetts, #278673)
 
5278
 
 
5279
* Some compatibility fixes for building the extensions with MSVC and
 
5280
  for python2.4. (John Arbash Meinel, #277484)
 
5281
 
 
5282
* The index logic is now able to reload the list of pack files if and
 
5283
  index ends up disappearing. We still don't reload if the pack data
 
5284
  itself goes missing after checking the index. This bug appears as a
 
5285
  transient failure (file not found) when another process is writing
 
5286
  to the repository.  (John Arbash Meinel, #153786)
 
5287
 
 
5288
* ``bzr switch`` and ``bzr bind`` will now update the branch nickname if
 
5289
  it was previously set. All checkouts will now refer to the bound branch
 
5290
  for a nickname if one was not explicitly set.
 
5291
  (Marius Kruger, #230903)
 
5292
 
 
5293
Documentation
 
5294
*************
 
5295
 
 
5296
* Improved hook documentation. (Michael Ernst)
 
5297
 
 
5298
API Changes
 
5299
***********
 
5300
 
 
5301
* commands.plugins_cmds is now a CommandRegistry, not a dict.
 
5302
 
 
5303
Internals
 
5304
*********
 
5305
 
 
5306
* New AuthenticationConfig.set_credentials method allows easy programmatic
 
5307
  configuration of authetication credentials.
 
5308
 
 
5309
 
 
5310
bzr 1.8
 
5311
#######
 
5312
 
 
5313
:Released: 2008-10-16
 
5314
 
 
5315
Bazaar 1.8 includes several fixes that improve working tree performance,
 
5316
display of revision logs, and merges.  The bzr testsuite now passes on OS
 
5317
X and Python 2.6, and almost completely passes on Windows.  The
 
5318
smartserver code has gained several bug fixes and performance
 
5319
improvements, and can now run server-side hooks within an http server.
 
5320
 
 
5321
Bug Fixes
 
5322
*********
 
5323
 
 
5324
* Fix "Must end write group" error when another error occurs during
 
5325
  ``bzr push``.  (Andrew Bennetts, #230902)
 
5326
 
 
5327
Portability
 
5328
***********
 
5329
 
 
5330
* Some Pyrex versions require the WIN32 macro defined to compile on
 
5331
  that platform.  (Alexander Belchenko, Martin Pool, #277481)
 
5332
 
 
5333
 
 
5334
bzr 1.8rc1
 
5335
##########
 
5336
 
 
5337
:Released: 2008-10-07
 
5338
 
 
5339
Changes
 
5340
*******
 
5341
 
 
5342
* ``bzr log file`` has been changed. It now uses a different method
 
5343
  for determining which revisions to show as merging the changes to
 
5344
  the file. It now only shows revisions which merged the change
 
5345
  towards your mainline. This simplifies the output, makes it faster,
 
5346
  and reduces memory consumption.  (John Arbash Meinel)
 
5347
 
 
5348
* ``bzr merge`` now defaults to having ``--reprocess`` set, whenever
 
5349
  ``--show-base`` is not supplied.  (John Arbash Meinel)
 
5350
 
 
5351
* ``bzr+http//`` will now optionally load plugins and write logs on the
 
5352
  server. (Marius Kruger)
 
5353
 
 
5354
* ``bzrlib._dirstate_helpers_c.pyx`` does not compile correctly with
 
5355
  Pyrex 0.9.4.1 (it generates C code which causes segfaults). We
 
5356
  explicitly blacklist that version of the compiler for that
 
5357
  extension. Packaged versions will include .c files created with
 
5358
  pyrex >= 0.9.6 so it doesn't effect releases, only users running
 
5359
  from the source tree. (John Arbash Meinel, #276868)
 
5360
 
 
5361
Features
 
5362
********
 
5363
 
 
5364
* bzr is now compatible with python-2.6. python-2.6 is not yet officially
 
5365
  supported (nor released, tests were conducted with the dev version of
 
5366
  python-2.6rc2), but all known problems have been fixed.  Feedback
 
5367
  welcome.
 
5368
  (Vincent Ladeuil, #269535)
 
5369
 
 
5370
Improvements
 
5371
************
 
5372
 
 
5373
* ``bzr annotate`` will now include uncommitted changes from the local
 
5374
  working tree by default. Such uncommitted changes are given the
 
5375
  revision number they would get if a commit was done, followed with a
 
5376
  ? to indicate that its not actually known. (Robert Collins, #3439)
 
5377
 
 
5378
* ``bzr branch`` now accepts a ``--standalone`` option, which creates a
 
5379
  standalone branch regardless of the presence of shared repositories.
 
5380
  (Daniel Watkins)
 
5381
 
 
5382
* ``bzr push`` is faster in the case there are no new revisions to
 
5383
  push.  It is also faster if there are no tags in the local branch.
 
5384
  (Andrew Bennetts)
 
5385
 
 
5386
* File changes during a commit will update the tree stat cache.
 
5387
  (Robert Collins)
 
5388
 
 
5389
* Location aliases can now accept a trailing path.  (Micheal Hudson)
 
5390
 
 
5391
* New hooks ``Lock.hooks`` when LockDirs are acquired and released.
 
5392
  (Robert Collins, MartinPool)
 
5393
 
 
5394
* Switching in heavyweight checkouts uses the master branch's context, not
 
5395
  the checkout's context.  (Adrian Wilkins)
 
5396
 
 
5397
* ``status`` on large trees is now faster, due to optimisations in the
 
5398
  walkdirs code. Of particular note, the walkdirs code now performs
 
5399
  a temporary ``chdir()`` while reading a single directory; if your
 
5400
  platform has non thread-local current working directories (and is
 
5401
  not windows which has its own implementation), this may introduce a
 
5402
  race condition during concurrent uses of bzrlib. The bzrlib CLI
 
5403
  will not encounter this as it is single threaded for working tree
 
5404
  operations. (Robert Collins)
 
5405
 
 
5406
* The C extensions now build on python 2.4 (Robert Collins, #271939)
 
5407
 
 
5408
* The ``-Dhpss`` debug flag now reports the number of smart server
 
5409
  calls per medium to stderr.  This is in addition to the existing
 
5410
  detailed logging to the .bzr.log trace file.  (Andrew Bennetts)
 
5411
 
 
5412
Bug Fixes
 
5413
*********
 
5414
 
 
5415
* Avoid random failures arising from misinterpreted ``errno`` values
 
5416
  in ``_readdir_pyx.read_dir``.
 
5417
  (Martin Pool, #279381)
 
5418
 
 
5419
* Branching from a shared repository on a smart server into a new
 
5420
  repository now preserves the repository format.
 
5421
  (Andrew Bennetts, #269214)
 
5422
 
 
5423
* ``bzr log`` now accepts a ``--change`` option.
 
5424
  (Vincent Ladeuil, #248427)
 
5425
 
 
5426
* ``bzr missing`` now accepts an ``--include-merges`` option.
 
5427
  (Vincent Ladeuil, #233817)
 
5428
 
 
5429
* Don't try to filter (internally) '.bzr' from the files to be deleted if
 
5430
  it's not there.
 
5431
  (Vincent Ladeuil, #272648)
 
5432
 
 
5433
* Fix '_in_buffer' AttributeError when using the -Dhpss debug flag.
 
5434
  (Andrew Bennetts)
 
5435
 
 
5436
* Fix TooManyConcurrentRequests errors caused by a connection failure
 
5437
  when doing ``bzr pull`` or ``bzr merge`` from a ``bzr+ssh`` URL.
 
5438
  (Andrew Bennetts, #246233)
 
5439
 
 
5440
* Fixed ``bzr st -r branch:PATH_TO_BRANCH`` where the other branch
 
5441
  is in a different repository than the current one.
 
5442
  (Lukáš Lalinský, #144421)
 
5443
 
 
5444
* Make the first line of the manpage preamble a comment again.
 
5445
  (David Futcher, #242106)
 
5446
 
 
5447
* Remove use of optional parameter in GSSAPI FTP support, since
 
5448
  it breaks newer versions of Python-Kerberos. (Jelmer Vernooij)
 
5449
 
 
5450
* The autopacking logic will now always create a single new pack from
 
5451
  all of the content which it deems is worth moving. This avoids the
 
5452
  'repack a single pack' bug and should result in better packing
 
5453
  overall.  (John Arbash Meinel, #242510, #172644)
 
5454
 
 
5455
* Trivial documentation fix.
 
5456
  (John Arbash Meinel, #270471)
 
5457
 
 
5458
* ``bzr switch`` and ``bzr bind`` will now update the branch nickname if
 
5459
  it was previously set. All checkouts will now refer to the bound branch
 
5460
  for a nickname if one was not explicitly set.
 
5461
  (Marius Kruger, #230903)
 
5462
 
 
5463
Documentation
 
5464
*************
 
5465
 
 
5466
* Explain revision/range identifiers. (Daniel Clemente)
 
5467
 
 
5468
API Changes
 
5469
***********
 
5470
 
 
5471
* ``CommitBuilder.record_entry_contents`` returns one more element in
 
5472
  its result tuple - an optional file system hash for the hash cache
 
5473
  to use. (Robert Collins)
 
5474
 
 
5475
* ``dirstate.DirState.update_entry`` will now only calculate the sha1
 
5476
  of a file if it is likely to be needed in determining the output
 
5477
  of iter_changes. (Robert Collins)
 
5478
 
 
5479
* The PackRepository, RepositoryPackCollection, NewPack classes have a
 
5480
  slightly changed interface to support different index types; as a
 
5481
  result other users of these classes need to supply the index types
 
5482
  they want. (Robert Collins)
 
5483
 
 
5484
Testing
 
5485
*******
 
5486
 
 
5487
* ``bzrlib.tests.repository_implementations`` has been renamed to
 
5488
  ``bzrlib.tests.per_repository`` so that we have a common structure
 
5489
  (and it is shorter). (John Arbash Meinel, #239343)
 
5490
 
 
5491
* ``LocalTransport.abspath()`` now returns a drive letter if the
 
5492
  transport has one, fixing numerous tests on Windows.
 
5493
  (Mark Hammond)
 
5494
 
 
5495
* PreviewTree is now tested via intertree_implementations.
 
5496
  (Aaron Bentley)
 
5497
 
 
5498
* The full test suite is passing again on OSX.
 
5499
  (Guillermo Gonzalez, Vincent Ladeuil)
 
5500
 
 
5501
* The full test suite passes when run with ``-Eallow_debug``.
 
5502
  (Andrew Bennetts)
 
5503
 
 
5504
Internals
 
5505
*********
 
5506
 
 
5507
* A new hook, ``Branch.open``, has been added, which is called when
 
5508
  branch objects are opened. (Robert Collins)
 
5509
 
 
5510
* ``bzrlib.osutils._walkdirs_utf8`` has been refactored into common
 
5511
  tree walking, and modular directory listing code to aid future
 
5512
  performance optimisations and refactoring. (Robert Collins)
 
5513
 
 
5514
* ``bzrlib.trace.debug_memory`` can be used to get a quick memory dump
 
5515
  in the middle of processing. It only reports memory if
 
5516
  ``/proc/PID/status`` is available. (John Arbash Meinel)
 
5517
 
 
5518
* New method ``RevisionSpec.as_tree`` for representing the revision
 
5519
  specifier as a revision tree object. (Lukáš Lalinský)
 
5520
 
 
5521
* New race-free method on MutableTree ``get_file_with_stat`` for use
 
5522
  when generating stat cache results. (Robert Collins)
 
5523
 
 
5524
* New win32utils.get_local_appdata_location() provides access to a local
 
5525
  directory for storing data.  (Mark Hammond)
 
5526
 
 
5527
* To be compatible with python-2.6 a few new rules should be
 
5528
  observed. 'message' attribute can't be used anymore in exception
 
5529
  classes, 'sha' and 'md5' modules have been deprecated (use
 
5530
  osutils.[md5|sha]), object__init__ and object.__new__ don't accept
 
5531
  parameters anymore.
 
5532
  (Vincent Ladeuil)
 
5533
 
 
5534
 
 
5535
bzr 1.7.1
 
5536
#########
 
5537
 
 
5538
:Released:  2008-10-01
 
5539
 
 
5540
No changes from 1.7.1rc1.
 
5541
 
 
5542
 
 
5543
bzr 1.7.1rc1
 
5544
############
 
5545
 
 
5546
:Released: 2008-09-24
 
5547
 
 
5548
This release just includes an update to how the merge algorithm handles
 
5549
file paths when we encounter complex history.
 
5550
 
 
5551
Features
 
5552
********
 
5553
 
 
5554
* If we encounter a criss-cross in history, use information from
 
5555
  direct Least Common Ancestors to resolve inventory shape (locations
 
5556
  of files, adds, deletes, etc). This is similar in concept to using
 
5557
  ``--lca`` for merging file texts, only applied to paths.
 
5558
  (John Arbash Meinel)
 
5559
 
 
5560
 
 
5561
bzr 1.7
 
5562
#######
 
5563
 
 
5564
:Released: 2008-09-23
 
5565
 
 
5566
This release includes many bug fixes and a few performance and feature
 
5567
improvements.  ``bzr rm`` will now scan for missing files and remove them,
 
5568
like how ``bzr add`` scans for unknown files and adds them. A bit more
 
5569
polish has been applied to the stacking code. The b-tree indexing code has
 
5570
been brought in, with an eye on using it in a future repository format.
 
5571
There are only minor installer changes since bzr-1.7rc2.
 
5572
 
 
5573
Features
 
5574
********
 
5575
 
 
5576
* Some small updates to the win32 installer. Include localization
 
5577
  files found in plugins, and include the builtin distutils as part of
 
5578
  packaging qbzr. (Mark Hammond)
 
5579
 
 
5580
 
 
5581
bzr 1.7rc2
 
5582
##########
 
5583
 
 
5584
:Released: 2008-09-17
 
5585
 
 
5586
A few bug fixes from 1.7rc1. The biggest change is a new
 
5587
``RemoteBranch.get_stacked_on_url`` rpc. This allows clients that are
 
5588
trying to access a Stacked branch over the smart protocol, to properly
 
5589
connect to the stacked-on location.
 
5590
 
 
5591
Bug Fixes
 
5592
*********
 
5593
 
 
5594
* Branching from a shared repository on a smart server into a new
 
5595
  repository now preserves the repository format.
 
5596
  (Andrew Bennetts, #269214)
 
5597
 
 
5598
* Branching from a stacked branch via ``bzr+ssh`` can properly connect
 
5599
  to the stacked-on branch.  (Martin Pool, #261315)
 
5600
 
 
5601
* ``bzr init`` no longer re-opens the BzrDir multiple times.
 
5602
  (Vincent Ladeuil)
 
5603
 
 
5604
* Fix '_in_buffer' AttributeError when using the -Dhpss debug flag.
 
5605
  (Andrew Bennetts)
 
5606
 
 
5607
 
 
5608
bzr 1.7rc1
 
5609
##########
 
5610
 
 
5611
:Released: 2008-09-09
 
5612
 
 
5613
This release candidate for bzr 1.7 has several bug fixes and a few
 
5614
performance and feature improvements.  ``bzr rm`` will now scan for
 
5615
missing files and remove them, like how ``bzr add`` scans for unknown
 
5616
files and adds them. A bit more polish has been applied to the stacking
 
5617
code. The b-tree indexing code has been brought in, with an eye on using
 
5618
it in a future repository format.
 
5619
 
 
5620
 
 
5621
Changes
 
5622
*******
 
5623
 
 
5624
* ``bzr export`` can now export a subdirectory of a project.
 
5625
  (Robert Collins)
 
5626
 
 
5627
* ``bzr remove-tree`` will now refuse to remove a tree with uncommitted
 
5628
  changes, unless the ``--force`` option is specified.
 
5629
  (Lukáš Lalinský, #74101)
 
5630
 
 
5631
* ``bzr rm`` will now scan for files that are missing and remove just
 
5632
  them automatically, much as ``bzr add`` scans for new files that
 
5633
  are not ignored and adds them automatically. (Robert Collins)
 
5634
 
 
5635
Features
 
5636
********
 
5637
 
 
5638
* Support for GSSAPI authentication when using FTP as documented in
 
5639
  RFC2228. (Jelmer Vernooij, #49623)
 
5640
 
 
5641
* Add support for IPv6 in the smart server. (Jelmer Vernooij, #165014)
 
5642
 
 
5643
Improvements
 
5644
************
 
5645
 
 
5646
* A url like ``log+file:///tmp`` will log all access to that Transport
 
5647
  to ``.bzr.log``, which may help in debugging or profiling.
 
5648
  (Martin Pool)
 
5649
 
 
5650
* ``bzr branch`` and ``bzr push`` use the default stacking policy if the
 
5651
  branch format supports it. (Aaron Bentley)
 
5652
 
 
5653
* ``bzr init`` and ``bzr init-repo`` will now print out the same as
 
5654
  ``bzr info`` if it completed successfully.
 
5655
  (Marius Kruger)
 
5656
 
 
5657
* ``bzr uncommit`` logs the old tip revision id, and displays how to
 
5658
  restore the branch to that tip using ``bzr pull``.  This allows you
 
5659
  to recover if you realize you uncommitted the wrong thing.
 
5660
  (John Arbash Meinel)
 
5661
 
 
5662
* Fix problems in accessing stacked repositories over ``bzr://``.
 
5663
  (Martin Pool, #261315)
 
5664
 
 
5665
* ``SFTPTransport.readv()`` was accidentally using ``list += string``,
 
5666
  which 'works', but adds each character separately to the list,
 
5667
  rather than using ``list.append(string)``. Fixing this makes the
 
5668
  SFTP transport a little bit faster (~20%) and use a bit less memory.
 
5669
  (John Arbash Meinel)
 
5670
 
 
5671
* When reading index files, if we happen to read the whole file in a
 
5672
  single request treat it as a ``_buffer_all`` request. This happens
 
5673
  most often on small indexes over remote transports, where we default
 
5674
  to reading 64kB. It saves a round trip for each small index during
 
5675
  fetch operations. Also, if we have read more than 50% of an index
 
5676
  file, trigger a ``_buffer_all`` on the next request. This works
 
5677
  around some inefficiencies because reads don't fall neatly on page
 
5678
  boundaries, so we would ignore those bytes, but request them again
 
5679
  later. This could trigger a total read size of more than the whole
 
5680
  file. (John Arbash Meinel)
 
5681
 
 
5682
Bug Fixes
 
5683
*********
 
5684
 
 
5685
* ``bzr rm`` is now aliased to ``bzr del`` for the convenience of svn
 
5686
  users. (Robert Collins, #205416)
 
5687
 
 
5688
* Catch the infamous "select/poll returned error" which occurs when
 
5689
  pycurl try to send a body request to an HTTP/1.0 server which has
 
5690
  already refused to handle the request. (Vincent Ladeuil, #225020)
 
5691
 
 
5692
* Fix ``ObjectNotLocked`` errors when using various commands
 
5693
  (including ``bzr cat`` and ``bzr annotate``) in combination with a
 
5694
  smart server URL.  (Andrew Bennetts, #237067)
 
5695
 
 
5696
* ``FTPTransport.stat()`` would return ``0000`` as the permission bits
 
5697
  for the containing ``.bzr/`` directory (it does not implement
 
5698
  permissions). This would cause us to set all subdirectories to
 
5699
  ``0700`` and files to ``0600`` rather than leaving them unmodified.
 
5700
  Now we ignore ``0000`` as the permissions and assume they are
 
5701
  invalid. (John Arbash Meinel, #259855)
 
5702
 
 
5703
* Merging from a previously joined branch will no longer cause
 
5704
  a traceback. (Jelmer Vernooij, #203376)
 
5705
 
 
5706
* Pack operations on windows network shares will work even with large
 
5707
  files. (Robert Collins, #255656)
 
5708
 
 
5709
* Running ``bzr st PATH_TO_TREE`` will no longer suppress merge
 
5710
  status. Status is also about 7% faster on mozilla sized trees
 
5711
  when the path to the root of the tree has been given. Users of
 
5712
  the internal ``show_tree_status`` function should be aware that
 
5713
  the show_pending flag is now authoritative for showing pending
 
5714
  merges, as it was originally. (Robert Collins, #225204)
 
5715
 
 
5716
* Set valid default _param_name for Option so that ListOption can embed
 
5717
  '-' in names. (Vincent Ladeuil, #263249)
 
5718
 
 
5719
* Show proper error rather than traceback when an unknown revision
 
5720
  id is specified to ``bzr cat-revision``. (Jelmer Vernooij, #175569)
 
5721
 
 
5722
* Trailing text in the dirstate file could cause the C dirstate parser
 
5723
  to try to allocate an invalid amount of memory. We now properly
 
5724
  check and test for parsing a dirstate with invalid trailing data.
 
5725
  (John Arbash Meinel, #186014)
 
5726
 
 
5727
* Unexpected error responses from a smart server no longer cause the
 
5728
  client to traceback.  (Andrew Bennetts, #263527)
 
5729
 
 
5730
* Use a Windows api function to get a Unicode host name, rather than
 
5731
  assuming the host name is ascii.
 
5732
  (Mark Hammond, John Arbash Meinel, #256550)
 
5733
 
 
5734
* ``WorkingTree4`` trees will now correctly report missing-and-new
 
5735
  paths in the output of ``iter_changes``. (Robert Collins)
 
5736
 
 
5737
Documentation
 
5738
*************
 
5739
 
 
5740
* Updated developer documentation.  (Martin Pool)
 
5741
 
 
5742
API Changes
 
5743
***********
 
5744
 
 
5745
* Exporters now take 4 parameters. (Robert Collins)
 
5746
 
 
5747
* ``Tree.iter_changes`` will now return False for the content change
 
5748
  field when a file is missing in the basis tree and not present in
 
5749
  the target tree. Previously it returned True unconditionally.
 
5750
  (Robert Collins)
 
5751
 
 
5752
* The deprecated ``Branch.abspath`` and unimplemented
 
5753
  ``Branch.rename_one`` and ``Branch.move`` were removed. (Jelmer Vernooij)
 
5754
 
 
5755
* BzrDir.clone_on_transport implementations must now accept a stacked_on
 
5756
  parameter.  (Aaron Bentley)
 
5757
 
 
5758
* BzrDir.cloning_metadir implementations must now take a require_stacking
 
5759
  parameter.  (Aaron Bentley)
 
5760
 
 
5761
Testing
 
5762
*******
 
5763
 
 
5764
* ``addCleanup`` now takes ``*arguments`` and ``**keyword_arguments``
 
5765
  which are then passed to the cleanup callable as it is run. In
 
5766
  addition, addCleanup no longer requires that the callables passed to
 
5767
  it be unique. (Jonathan Lange)
 
5768
 
 
5769
* Fix some tests that fail on Windows because files are deleted while
 
5770
  still in use.
 
5771
  (Mark Hammond)
 
5772
 
 
5773
* ``selftest``'s ``--starting-with`` option can now use predefined
 
5774
  prefixes so that one can say ``bzr selftest -s bp.loom`` instead of
 
5775
  ``bzr selftest -s bzrlib.plugins.loom``. (Vincent Ladeuil)
 
5776
 
 
5777
* ``selftest``'s ``--starting-with`` option now accepts multiple values.
 
5778
  (Vincent Ladeuil)
 
5779
 
 
5780
Internals
 
5781
*********
 
5782
 
 
5783
* A new plugin interface, ``bzrlib.log.log_adapters``, has been added.
 
5784
  This allows dynamic log output filtering by plugins.
 
5785
  (Robert Collins)
 
5786
 
 
5787
* ``bzrlib.btree_index`` is now available, providing a b-tree index
 
5788
  layer. The design is memory conservative (limited memory cache),
 
5789
  faster to seek (approx 100 nodes per page, gives 100-way fan out),
 
5790
  and stores compressed pages allowing more keys per page.
 
5791
  (Robert Collins, John Arbash Meinel)
 
5792
 
 
5793
* ``bzrlib.diff.DiffTree.show_diff`` now skips changes where the kind
 
5794
  is unknown in both source and target.
 
5795
  (Robert Collins, Aaron Bentley)
 
5796
 
 
5797
* ``GraphIndexBuilder.add_node`` and ``BTreeBuilder`` have been
 
5798
  streamlined a bit. This should make creating large indexes faster.
 
5799
  (In benchmarking, it now takes less time to create a BTree index than
 
5800
  it takes to read the GraphIndex one.) (John Arbash Meinel)
 
5801
 
 
5802
* Mail clients for `bzr send` are now listed in a registry.  This
 
5803
  allows plugins to add new clients by registering them with
 
5804
  ``bzrlib.mail_client.mail_client_registry``.  All of the built-in
 
5805
  clients now use this mechanism.  (Neil Martinsen-Burrell)
 
5806
 
 
5807
 
 
5808
bzr 1.6.1
 
5809
#########
 
5810
 
 
5811
:Released: 2008-09-05
 
5812
 
 
5813
A couple regressions were found in the 1.6 release. There was a
 
5814
performance issue when using ``bzr+ssh`` to branch large repositories,
 
5815
and some problems with stacking and ``rich-root`` capable repositories.
 
5816
 
 
5817
 
 
5818
bzr 1.6.1rc2
 
5819
############
 
5820
 
 
5821
:Released: 2008-09-03
 
5822
 
 
5823
Bug Fixes
 
5824
*********
 
5825
 
 
5826
* Copying between ``rich-root`` and ``rich-root-pack`` (and vice
 
5827
  versa) was accidentally using the inter-model fetcher, instead of
 
5828
  recognizing that both were 'rich root' formats.
 
5829
  (John Arbash Meinel, #264321)
 
5830
 
 
5831
 
 
5832
bzr 1.6.1rc1
 
5833
############
 
5834
 
 
5835
:Released: 2008-08-29
 
5836
 
 
5837
This release fixes a few regressions found in the 1.6 client. Fetching
 
5838
changes was using an O(N^2) buffering algorithm, so for large projects it
 
5839
would cause memory thrashing. There is also a specific problem with the
 
5840
``--1.6-rich-root`` format, which prevented stacking on top of
 
5841
``--rich-root-pack`` repositories, and could allow users to accidentally
 
5842
fetch experimental data (``-subtree``) without representing it properly.
 
5843
The ``--1.6-rich-root`` format has been deprecated and users are
 
5844
recommended to upgrade to ``--1.6.1-rich-root`` immediately.  Also we
 
5845
re-introduced a workaround for users who have repositories with incorrect
 
5846
nodes (not possible if you only used official releases).
 
5847
I should also clarify that none of this is data loss level issues, but
 
5848
still sufficient enough to warrant an updated release.
 
5849
 
 
5850
Bug Fixes
 
5851
*********
 
5852
 
 
5853
* ``RemoteTransport.readv()`` was being inefficient about how it
 
5854
  buffered the readv data and processed it. It would keep appending to
 
5855
  the same string (causing many copies) and then pop bytes out of the
 
5856
  start of the string (causing more copies).
 
5857
  With this patch "bzr+ssh://local" can improve dramatically,
 
5858
  especially for projects with large files.
 
5859
  (John Arbash Meinel)
 
5860
 
 
5861
* Revision texts were always meant to be stored as fulltexts. There
 
5862
  was a bug in a bzr.dev version that would accidentally create deltas
 
5863
  when copying from a Pack repo to a Knit repo. This has been fixed,
 
5864
  but to support those repositories, we know always request full texts
 
5865
  for Revision texts. (John Arbash Meinel, #261339)
 
5866
 
 
5867
* The previous ``--1.6-rich-root`` format used an incorrect xml
 
5868
  serializer, which would accidentally support fetching from a
 
5869
  repository that supported subtrees, even though the local one would
 
5870
  not. We deprecated that format, and introduced a new one that uses
 
5871
  the correct serializer ``--1.6.1-rich-root``.
 
5872
  (John Arbash Meinel, #262333)
 
5873
 
 
5874
 
 
5875
bzr 1.6
 
5876
#######
 
5877
 
 
5878
:Released: 2008-08-25
 
5879
 
 
5880
Finally, the long awaited bzr 1.6 has been released. This release includes
 
5881
new features like Stacked Branches, improved weave merge, and an updated
 
5882
server protocol (now on v3) which will allow for better cross version
 
5883
compatibility. With this release we have deprecated Knit format
 
5884
repositories, and recommend that users upgrade them, we will continue to
 
5885
support reading and writing them for the forseeable future, but we will
 
5886
not be tuning them for performance as pack repositories have proven to be
 
5887
better at scaling. This will also be the first release to bundle
 
5888
TortoiseBzr in the standalone Windows installer.
 
5889
 
 
5890
 
 
5891
bzr 1.6rc5
 
5892
##########
 
5893
 
 
5894
:Released: 2008-08-19
 
5895
 
 
5896
Bug Fixes
 
5897
*********
 
5898
 
 
5899
* Disable automatic detection of stacking based on a containing
 
5900
  directory of the target. It interacted badly with push, and needs a
 
5901
  bit more work to get the edges polished before it should happen
 
5902
  automatically. (John Arbash Meinel, #259275)
 
5903
  (This change was reverted when merged to bzr.dev)
 
5904
 
 
5905
 
 
5906
bzr 1.6rc4
 
5907
##########
 
5908
 
 
5909
:Released: 2008-08-18
 
5910
 
 
5911
Bug Fixes
 
5912
*********
 
5913
 
 
5914
* Fix a regression in knit => pack fetching.  We had a logic
 
5915
  inversion, causing the fetch to insert fulltexts in random order,
 
5916
  rather than preserving deltas.  (John Arbash Meinel, #256757)
 
5917
 
 
5918
 
 
5919
bzr 1.6rc3
 
5920
##########
 
5921
 
 
5922
:Released: 2008-08-14
 
5923
 
 
5924
Changes
 
5925
*******
 
5926
 
 
5927
* Disable reading ``.bzrrules`` as a per-branch rule preferences
 
5928
  file. The feature was not quite ready for a full release.
 
5929
  (Robert Collins)
 
5930
 
 
5931
Improvements
 
5932
************
 
5933
 
 
5934
* Update the windows installer to bundle TortoiseBzr and ``qbzr``
 
5935
  into the standalone installer. This will be the first official
 
5936
  windows release that installs Tortoise by default.
 
5937
  (Mark Hammond)
 
5938
 
 
5939
Bug Fixes
 
5940
*********
 
5941
 
 
5942
* Fix a regression in ``bzr+http`` support. There was a missing
 
5943
  function (``_read_line``) that needed to be carried over from
 
5944
  ``bzr+ssh`` support. (Andrew Bennetts)
 
5945
 
 
5946
* ``GraphIndex`` objects will internally read an entire index if more
 
5947
  than 1/20th of their keyspace is requested in a single operation.
 
5948
  This largely mitigates a performance regression in ``bzr log FILE``
 
5949
  and completely corrects the performance regression in ``bzr log``.
 
5950
  The regression was caused by removing an accomodation which had been
 
5951
  supporting the index format in use. A newer index format is in
 
5952
  development which is substantially faster. (Robert Collins)
 
5953
 
 
5954
 
 
5955
bzr 1.6rc2
 
5956
##########
 
5957
 
 
5958
:Released: 2008-08-13
 
5959
 
 
5960
This release candidate has a few minor bug fixes, and some regression
 
5961
fixes for Windows.
 
5962
 
 
5963
Bug Fixes
 
5964
*********
 
5965
 
 
5966
* ``bzr upgrade`` on remote branches accessed via bzr:// and
 
5967
  bzr+ssh:// now works.  (Andrew Bennetts)
 
5968
 
 
5969
* Change the ``get_format_description()`` strings for
 
5970
  ``RepositoryFormatKnitPack5`` et al to be single line messages.
 
5971
  (Aaron Bentley)
 
5972
 
 
5973
* Fix for a regression on Win32 where we would try to call
 
5974
  ``os.listdir()`` on a file and not catch the exception properly.
 
5975
  (Windows raises a different exception.) This would manifest in
 
5976
  places like ``bzr rm file`` or ``bzr switch``.
 
5977
  (Mark Hammond, John Arbash Meinel)
 
5978
 
 
5979
* ``Inventory.copy()`` was failing to set the revision property for
 
5980
  the root entry. (Jelmer Vernooij)
 
5981
 
 
5982
* sftp transport: added missing ``FileExists`` case to
 
5983
  ``_translate_io_exception`` (Christophe Troestler, #123475)
 
5984
 
 
5985
* The help for ``bzr ignored`` now suggests ``bzr ls --ignored`` for
 
5986
  scripting use. (Robert Collins, #3834)
 
5987
 
 
5988
* The default ``annotate`` logic will now always assign the
 
5989
  last-modified value of a line to one of the revisions that modified
 
5990
  it, rather than a merge revision. This would happen when both sides
 
5991
  claimed to have modified the line resulting in the same text. The
 
5992
  choice is arbitrary but stable, so merges in different directions
 
5993
  will get the same results.  (John Arbash Meinel, #232188)
 
5994
 
 
5995
 
 
5996
bzr 1.6rc1
 
5997
##########
 
5998
 
 
5999
:Released: 2008-08-06
 
6000
 
 
6001
This release candidate for bzr 1.6 solidifies the new branch stacking
 
6002
feature.  Bazaar now recommends that users upgrade all knit repositories,
 
6003
because later formats are much faster.  However, we plan to continue read/write and
 
6004
upgrade support for knit repostories for the forseeable future.  Several
 
6005
other bugs and performance issues were fixed.
 
6006
 
 
6007
Changes
 
6008
*******
 
6009
 
 
6010
* Knit format repositories are deprecated and bzr will now emit
 
6011
  warnings whenever it encounters one.  Use ``bzr upgrade`` to upgrade
 
6012
  knit repositories to pack format.  (Andrew Bennetts)
 
6013
 
 
6014
Improvements
 
6015
************
 
6016
 
 
6017
* ``bzr check`` can now be told which elements at a location it should
 
6018
  check.  (Daniel Watkins)
 
6019
 
 
6020
* Commit now supports ``--exclude`` (or ``-x``) to exclude some files
 
6021
  from the commit. (Robert Collins, #3117)
 
6022
 
 
6023
* Fetching data between repositories that have the same model but no
 
6024
  optimised fetcher will not reserialise all the revisions, increasing
 
6025
  performance. (Robert Collins, John Arbash Meinel)
 
6026
 
 
6027
* Give a more specific error when target branch is not reachable.
 
6028
  (James Westby)
 
6029
 
 
6030
* Implemented a custom ``walkdirs_utf8`` implementation for win32.
 
6031
  This uses a pyrex extension to get direct access to the
 
6032
  ``FindFirstFileW`` style apis, rather than using ``listdir`` +
 
6033
  ``lstat``. Shows a very strong improvement in commands like
 
6034
  ``status`` and ``diff`` which have to iterate the working tree.
 
6035
  Anywhere from 2x-6x faster depending on the size of the tree (bigger
 
6036
  trees, bigger benefit.) (John Arbash Meinel)
 
6037
 
 
6038
* New registry for log properties handles  and the method in
 
6039
  LongLogFormatter to display the custom properties returned by the
 
6040
  registered handlers. (Guillermo Gonzalez, #162469)
 
6041
 
 
6042
Bug Fixes
 
6043
*********
 
6044
 
 
6045
* Add more tests that stacking does not create deltas spanning
 
6046
  physical repository boundaries.
 
6047
  (Martin Pool, #252428)
 
6048
 
 
6049
* Better message about incompatible repositories.
 
6050
  (Martin Pool, #206258)
 
6051
 
 
6052
* ``bzr branch --stacked`` ensures the destination branch format can
 
6053
  support stacking, even if the origin does not.
 
6054
  (Martin Pool)
 
6055
 
 
6056
* ``bzr export`` no longer exports ``.bzrrules``.
 
6057
  (Ian Clatworthy)
 
6058
 
 
6059
* ``bzr serve --directory=/`` now correctly allows the whole
 
6060
  filesystem to be accessed on Windows, not just the root of the drive
 
6061
  that Python is running from.
 
6062
  (Adrian Wilkins, #240910)
 
6063
 
 
6064
* Deleting directories by hand before running ``bzr rm`` will not
 
6065
  cause subsequent errors in ``bzr st`` and ``bzr commit``.
 
6066
  (Robert Collins, #150438)
 
6067
 
 
6068
* Fix a test case that was failing if encoding wasn't UTF-8.
 
6069
  (John Arbash Meinel, #247585)
 
6070
 
 
6071
* Fix "no buffer space available" error when branching with the new
 
6072
  smart server protocol to or from Windows.
 
6073
  (Andrew Bennetts, #246180)
 
6074
 
 
6075
* Fixed problem in branching from smart server.
 
6076
  (#249256, Michael Hudson, Martin Pool)
 
6077
 
 
6078
* Handle a file turning in to a directory in TreeTransform.
 
6079
  (James Westby, #248448)
 
6080
 
 
6081
API Changes
 
6082
***********
 
6083
 
 
6084
* ``MutableTree.commit`` has an extra optional keywork parameter
 
6085
  ``exclude`` that will be unconditionally supplied by the command
 
6086
  line UI - plugins that add tree formats may need an update.
 
6087
  (Robert Collins)
 
6088
 
 
6089
* The API minimum version for plugin compatibility has been raised to
 
6090
  1.6 - there are significant changes throughout the code base.
 
6091
  (Robert Collins)
 
6092
 
 
6093
* The generic fetch code now uses three attributes on Repository objects
 
6094
  to control fetch. The streams requested are controlled via :
 
6095
  ``_fetch_order`` and ``_fetch_uses_deltas``. Setting these
 
6096
  appropriately allows different repository implementations to recieve
 
6097
  data in their optimial form. If the ``_fetch_reconcile`` is set then
 
6098
  a reconcile operation is triggered at the end of the fetch.
 
6099
  (Robert Collins)
 
6100
 
 
6101
* The ``put_on_disk`` and ``get_tar_item`` methods in
 
6102
  ``InventoryEntry`` were deprecated. (Ian Clatworthy)
 
6103
 
 
6104
* ``Repository.is_shared`` doesn't take a read lock. It didn't
 
6105
  need one in the first place (nobody cached the value, and
 
6106
  ``RemoteRepository`` wasn't taking one either). This saves a round
 
6107
  trip when probing Pack repositories, as they read the ``pack-names``
 
6108
  file when locked. And during probe, locking the repo isn't very
 
6109
  useful. (John Arbash Meinel)
 
6110
 
 
6111
Internals
 
6112
*********
 
6113
 
 
6114
* ``bzrlib.branchbuilder.BranchBuilder`` is now much more capable of
 
6115
  putting together a real history without having to create a full
 
6116
  WorkingTree. It is recommended that tests that are not directly
 
6117
  testing the WorkingTree use BranchBuilder instead.  See
 
6118
  ``BranchBuilder.build_snapshot`` or
 
6119
  ``TestCaseWithMemoryTree.make_branch_builder``.  (John Arbash Meinel)
 
6120
 
 
6121
* ``bzrlib.builtins.internal_tree_files`` broken into two giving a new
 
6122
  helper ``safe_relpath_files`` - used by the new ``exclude``
 
6123
  parameter to commit. (Robert Collins)
 
6124
 
 
6125
* Make it easier to introduce new WorkingTree formats.
 
6126
  (Ian Clatworthy)
 
6127
 
 
6128
* The code for exporting trees was refactored not to use the
 
6129
  deprecated ``InventoryEntry`` methods. (Ian Clatworthy)
 
6130
 
 
6131
* RuleSearchers return () instead of [] now when there are no matches.
 
6132
  (Ian Clatworthy)
 
6133
 
 
6134
 
 
6135
bzr 1.6beta3
 
6136
############
 
6137
 
 
6138
:Released: 2008-07-17
 
6139
 
 
6140
This release adds a new 'stacked branches' feature allowing branches to
 
6141
share storage without being in the same repository or on the same machine.
 
6142
(See the user guide for more details.)  It also adds a new hook, improved
 
6143
weaves, aliases for related locations, faster bzr+ssh push, and several
 
6144
bug fixes.
 
6145
 
 
6146
Features
 
6147
********
 
6148
 
 
6149
* New ``pre_change_branch_tip`` hook that is called before the
 
6150
  branch tip is moved, while the branch is write-locked.  See the User
 
6151
  Reference for signature details.  (Andrew Bennetts)
 
6152
 
 
6153
* Rule-based preferences can now be defined for selected files in
 
6154
  selected branches, allowing commands and plugins to provide
 
6155
  custom behaviour for files matching defined patterns.
 
6156
  See ``Rule-based preferences`` (part of ``Configuring Bazaar``)
 
6157
  in the User Guide and ``bzr help rules`` for more information.
 
6158
  (Ian Clatworthy)
 
6159
 
 
6160
* Sites may suggest a branch to stack new branches on.  (Aaron Bentley)
 
6161
 
 
6162
* Stacked branches are now supported. See ``bzr help branch`` and
 
6163
  ``bzr help push``.  Branches must be in the ``development1`` format
 
6164
  to stack, though the stacked-on branch can be of any format.
 
6165
  (Robert Collins)
 
6166
 
 
6167
Improvements
 
6168
************
 
6169
 
 
6170
* ``bzr export --format=tgz --root=NAME -`` to export a gzipped tarball
 
6171
  to stdout; also ``tar`` and ``tbz2``.
 
6172
  (Martin Pool)
 
6173
 
 
6174
* ``bzr (re)merge --weave`` will now use a standard Weave algorithm,
 
6175
  rather than the annotation-based merge it was using. It does so by
 
6176
  building up a Weave of the important texts, without needing to build
 
6177
  the full ancestry. (John Arbash Meinel, #238895)
 
6178
 
 
6179
* ``bzr send`` documents and better supports ``emacsclient`` (proper
 
6180
  escaping of mail headers and handling of the MUA Mew).
 
6181
  (Christophe Troestler)
 
6182
 
 
6183
* Remembered locations can be specified by aliases, e.g. :parent, :public,
 
6184
  :submit.  (Aaron Bentley)
 
6185
 
 
6186
* The smart protocol now has improved support for setting branches'
 
6187
  revision info directly.  This makes operations like push
 
6188
  faster.  The new request method name is
 
6189
  ``Branch.set_last_revision_ex``.  (Andrew Bennetts)
 
6190
 
 
6191
Bug Fixes
 
6192
*********
 
6193
 
 
6194
* Bazaar is now able to be a client to the web server of IIS 6 and 7.
 
6195
  The broken implementations of RFC822 in Python and RFC2046 in IIS
 
6196
  combined with boundary-line checking in Bazaar previously made this
 
6197
  impossible. (NB, IIS 5 does not suffer from this problem).
 
6198
  (Adrian Wilkins, #247585)
 
6199
 
 
6200
* ``bzr log --long`` with a ghost in your mainline now handles that
 
6201
  ghost properly. (John Arbash Meinel, #243536)
 
6202
 
 
6203
* ``check`` handles the split-up .bzr layout correctly, so no longer
 
6204
  requires a branch to be present.
 
6205
  (Daniel Watkins, #64783)
 
6206
 
 
6207
* Clearer message about how to set the PYTHONPATH if bzrlib can't be
 
6208
  loaded.
 
6209
  (Martin Pool, #205230)
 
6210
 
 
6211
* Errors about missing libraries are now shown without a traceback,
 
6212
  and with a suggestion to install the library.  The full traceback is
 
6213
  still in ``.bzr.log`` and can be shown with ``-Derror``.
 
6214
  (Martin Pool, #240161)
 
6215
 
 
6216
* Fetch from a stacked branch copies all required data.
 
6217
  (Aaron Bentley, #248506)
 
6218
 
 
6219
* Handle urls such as ftp://user@host.com@www.host.com where the user
 
6220
  name contains an @.
 
6221
  (Neil Martinsen-Burrell, #228058)
 
6222
 
 
6223
* ``needs_read_lock`` and ``needs_write_lock`` now suppress an error during
 
6224
  ``unlock`` if there was an error in the original function. This helps
 
6225
  most when there is a failure with a smart server action, since often the
 
6226
  connection closes and we cannot unlock.
 
6227
  (Andrew Bennetts, John Arbash Meinel, #125784)
 
6228
 
 
6229
* Obsolete hidden command ``bzr fetch`` removed.
 
6230
  (Martin Pool, #172870)
 
6231
 
 
6232
* Raise the correct exception when doing ``-rbefore:0`` or ``-c0``.
 
6233
  (John Arbash Meinel, #239933)
 
6234
 
 
6235
* You can now compare file revisions in Windows diff programs from
 
6236
  Cygwin Bazaar.
 
6237
  (Matt McClure, #209281)
 
6238
 
 
6239
* revision_history now tolerates mainline ghosts for Branch format 6.
 
6240
  (Aaron Bentley, #235055)
 
6241
 
 
6242
* Set locale from environment for third party libs.
 
6243
  (Martin von Gagern, #128496)
 
6244
 
 
6245
Documentation
 
6246
*************
 
6247
 
 
6248
* Added *Using stacked branches* to the User Guide.
 
6249
  (Ian Clatworthy)
 
6250
 
 
6251
* Updated developer documentation.
 
6252
  (Martin Pool)
 
6253
 
 
6254
Testing
 
6255
*******
 
6256
 
 
6257
* ``-Dmemory`` will cause /proc/PID/status to be catted before bzr
 
6258
  exits, allowing low-key analysis of peak memory use. (Robert Collins)
 
6259
 
 
6260
* ``TestCaseWithTransport.make_branch_and_tree`` tries harder to return
 
6261
  a tree with a ``branch`` attribute of the right format.  This was
 
6262
  preventing some ``RemoteBranch`` tests from actually running with
 
6263
  ``RemoteBranch`` instances.  (Andrew Bennetts)
 
6264
 
 
6265
API Changes
 
6266
***********
 
6267
 
 
6268
* Removed ``Repository.text_store``, ``control_store``, etc.  Instead,
 
6269
  there are new attributes ``texts, inventories, revisions,
 
6270
  signatures``, each of which is a ``VersionedFiles``.  See the
 
6271
  Repository docstring for more details.
 
6272
  (Robert Collins)
 
6273
 
 
6274
* ``Branch.pull`` now accepts an ``_override_hook_target`` optional
 
6275
  parameter.  If you have a subclass of ``Branch`` that overrides
 
6276
  ``pull`` then you should add this parameter.  (Andrew Bennetts)
 
6277
 
 
6278
* ``bzrlib.check.check()`` has been deprecated in favour of the more
 
6279
  aptly-named ``bzrlib.check.check_branch()``.
 
6280
  (Daniel Watkins)
 
6281
 
 
6282
* ``Tree.print_file`` and ``Repository.print_file`` are deprecated.
 
6283
  These methods are bad APIs because they write directly to sys.stdout.
 
6284
  bzrlib does not use them internally, and there are no direct tests
 
6285
  for them. (Alexander Belchenko)
 
6286
 
 
6287
Internals
 
6288
*********
 
6289
 
 
6290
* ``cat`` command no longer uses ``Tree.print_file()`` internally.
 
6291
  (Alexander Belchenko)
 
6292
 
 
6293
* New class method ``BzrDir.open_containing_tree_branch_or_repository``
 
6294
  which eases the discovery of the tree, the branch and the repository
 
6295
  containing a given location.
 
6296
  (Daniel Watkins)
 
6297
 
 
6298
* New ``versionedfile.KeyMapper`` interface to abstract out the access to
 
6299
  underlying .knit/.kndx etc files in repositories with partitioned
 
6300
  storage. (Robert Collins)
 
6301
 
 
6302
* Obsolete developer-use command ``weave-join`` has been removed.
 
6303
  (Robert Collins)
 
6304
 
 
6305
* ``RemoteToOtherFetcher`` and ``get_data_stream_for_search`` removed,
 
6306
  to support new ``VersionedFiles`` layering.
 
6307
  (Robert Collins)
 
6308
 
 
6309
 
 
6310
bzr 1.6beta2
 
6311
############
 
6312
 
 
6313
:Released: 2008-06-10
 
6314
 
 
6315
This release contains further progress towards our 1.6 goals of shallow
 
6316
repositories, and contains a fix for some user-affecting bugs in the
 
6317
repository layer.  Building working trees during checkout and branch is
 
6318
now faster.
 
6319
 
 
6320
Bug Fixes
 
6321
*********
 
6322
 
 
6323
* Avoid KnitCorrupt error extracting inventories from some repositories.
 
6324
  (The data is not corrupt; an internal check is detecting a problem
 
6325
  reading from the repository.)
 
6326
  (Martin Pool, Andrew Bennetts, Robert Collins, #234748)
 
6327
 
 
6328
* ``bzr status`` was breaking if you merged the same revision twice.
 
6329
  (John Arbash Meinel, #235407)
 
6330
 
 
6331
* Fix infinite loop consuming 100% CPU when a connection is lost while
 
6332
  reading a response body via the smart protocol v1 or v2.
 
6333
  (Andrew Bennetts)
 
6334
 
 
6335
* Inserting a bundle which changes the contents of a file with no trailing
 
6336
  end of line, causing a knit snapshot in a 'knits' repository will no longer
 
6337
  cause KnitCorrupt. (Robert Collins)
 
6338
 
 
6339
* ``RemoteBranch.pull`` needs to return the ``self._real_branch``'s
 
6340
  pull result. It was instead just returning None, which breaks ``bzr
 
6341
  pull``. (John Arbash Meinel, #238149)
 
6342
 
 
6343
* Sanitize branch nick before using it as an attachment filename in
 
6344
  ``bzr send``. (Lukáš Lalinský, #210218)
 
6345
 
 
6346
* Squash ``inv_entry.symlink_target`` to a plain string when
 
6347
  generating DirState details. This prevents from getting a
 
6348
  ``UnicodeError`` when you have symlinks and non-ascii filenames.
 
6349
  (John Arbash Meinel, #135320)
 
6350
 
 
6351
Improvements
 
6352
************
 
6353
 
 
6354
* Added the 'alias' command to set/unset and display aliases. (Tim Penhey)
 
6355
 
 
6356
* ``added``, ``modified``, and ``unknowns`` behaviour made consistent (all three
 
6357
  now quote paths where required). Added ``--null`` option to ``added`` and
 
6358
  ``modified`` (for null-separated unknowns, use ``ls --unknown --null``)
 
6359
  (Adrian Wilkins)
 
6360
 
 
6361
* Faster branching (1.09x) and lightweight checkouts (1.06x) on large trees.
 
6362
  (Ian Clatworthy, Aaron Bentley)
 
6363
 
 
6364
Documentation
 
6365
*************
 
6366
 
 
6367
* Added *Bazaar Zen* section to the User Guide. (Ian Clatworthy)
 
6368
 
 
6369
Testing
 
6370
*******
 
6371
 
 
6372
* Fix the test HTTPServer to be isolated from chdir calls made while it is
 
6373
  running, allowing it to be used in blackbox tests. (Robert Collins)
 
6374
 
 
6375
API Changes
 
6376
***********
 
6377
 
 
6378
* ``WorkingTree.set_parent_(ids/trees)`` will now filter out revisions
 
6379
  which are in the ancestry of other revisions. So if you merge the same
 
6380
  tree twice, or merge an ancestor of an existing merge, it will only
 
6381
  record the newest. (If you merge a descendent, it will replace its
 
6382
  ancestor). (John Arbash Meinel, #235407)
 
6383
 
 
6384
* ``RepositoryPolicy.__init__`` now requires stack_on and stack_on_pwd,
 
6385
  through the derived classes do not.  (Aaron Bentley)
 
6386
 
 
6387
Internals
 
6388
*********
 
6389
 
 
6390
* ``bzrlib.bzrdir.BzrDir.sprout`` now accepts ``stacked`` to control
 
6391
  creating stacked branches. (Robert Collins)
 
6392
 
 
6393
* Knit record serialisation is now stricter on what it will accept, to
 
6394
  guard against potential internal bugs, or broken input. (Robert Collins)
 
6395
 
 
6396
bzr 1.6beta1
 
6397
############
 
6398
 
 
6399
:Released: 2008-06-02
 
6400
 
 
6401
Commands that work on the revision history such as push, pull, missing,
 
6402
uncommit and log are now substantially faster.  This release adds a
 
6403
translation of some of the user documentation into Spanish.  (Contributions of
 
6404
other translations would be very welcome.)  Bazaar 1.6beta1 adds a new network
 
6405
protocol which is used by default and which allows for more efficient transfers
 
6406
and future extensions.
 
6407
 
 
6408
 
 
6409
Notes When Upgrading
 
6410
********************
 
6411
 
 
6412
* There is a new version of the network protocol used for bzr://, bzr+ssh://
 
6413
  and bzr+http:// connections.  This will allow more efficient requests and
 
6414
  responses, and more graceful fallback when a server is too old to
 
6415
  recognise a request from a more recent client.  Bazaar 1.6 will
 
6416
  interoperate with 0.16 and later versions, but servers should be upgraded
 
6417
  when possible.  Bazaar 1.6 no longer interoperates with 0.15 and earlier via
 
6418
  these protocols.  Use alternatives like SFTP or upgrade those servers.
 
6419
  (Andrew Bennetts, #83935)
 
6420
 
 
6421
Changes
 
6422
*******
 
6423
 
 
6424
* Deprecation warnings will not be suppressed when running ``bzr selftest``
 
6425
  so that developers can see if their code is using deprecated functions.
 
6426
  (John Arbash Meinel)
 
6427
 
 
6428
Features
 
6429
********
 
6430
 
 
6431
* Adding ``-Derror`` will now display a traceback when a plugin fails to
 
6432
  load. (James Westby)
 
6433
 
 
6434
Improvements
 
6435
************
 
6436
 
 
6437
* ``bzr branch/push/pull -r XXX`` now have a helper function for finding
 
6438
  the revno of the new revision (``Graph.find_distance_to_null``). This
 
6439
  should make something like ``bzr branch -r -100`` in a shared, no-trees
 
6440
  repository much snappier. (John Arbash Meinel)
 
6441
 
 
6442
* ``bzr log --short -r X..Y`` no longer needs to access the full revision
 
6443
  history. This makes it noticeably faster when logging the last few
 
6444
  revisions. (John Arbash Meinel)
 
6445
 
 
6446
* ``bzr ls`` now accepts ``-V`` as an alias for ``--versioned``.
 
6447
  (Jerad Cramp, #165086)
 
6448
 
 
6449
* ``bzr missing`` uses the new ``Graph.find_unique_ancestors`` and
 
6450
  ``Graph.find_differences`` to determine missing revisions without having
 
6451
  to search the whole ancestry. (John Arbash Meinel, #174625)
 
6452
 
 
6453
* ``bzr uncommit`` now uses partial history access, rather than always
 
6454
  extracting the full revision history for a branch. This makes it
 
6455
  resolve the appropriate revisions much faster (in testing it drops
 
6456
  uncommit from 1.5s => 0.4s). It also means ``bzr log --short`` is one
 
6457
  step closer to not using full revision history.
 
6458
  (John Arbash Meinel, #172649)
 
6459
 
 
6460
Bugfixes
 
6461
********
 
6462
 
 
6463
* ``bzr merge --lca`` should handle when two revisions have no common
 
6464
  ancestor other than NULL_REVISION. (John Arbash Meinel, #235715)
 
6465
 
 
6466
* ``bzr status`` was breaking if you merged the same revision twice.
 
6467
  (John Arbash Meinel, #235407)
 
6468
 
 
6469
* ``bzr push`` with both ``--overwrite`` and ``-r NNN`` options no longer
 
6470
  fails.  (Andrew Bennetts, #234229)
 
6471
 
 
6472
* Correctly track the base URL of a smart medium when using bzr+http://
 
6473
  URLs, which was causing spurious "No repository present" errors with
 
6474
  branches in shared repositories accessed over bzr+http.
 
6475
  (Andrew Bennetts, #230550)
 
6476
 
 
6477
* Define ``_remote_is_at_least_1_2`` on ``SmartClientMedium`` so that all
 
6478
  implementations have the attribute.  Fixes 'PyCurlTransport' object has no
 
6479
  attribute '_remote_is_at_least_1_2' attribute errors.
 
6480
  (Andrew Bennetts, #220806)
 
6481
 
 
6482
* Failure to delete an obsolete pack file should just give a warning
 
6483
  message, not a fatal error.  It may for example fail if the file is still
 
6484
  in use by another process.
 
6485
  (Martin Pool)
 
6486
 
 
6487
* Fix MemoryError during large fetches over HTTP by limiting the amount of
 
6488
  data we try to read per ``recv`` call.  The problem was observed with
 
6489
  Windows and a proxy, but might affect other environments as well.
 
6490
  (Eric Holmberg, #215426)
 
6491
 
 
6492
* Handle old merge directives correctly in Merger.from_mergeable.  Stricter
 
6493
  get_parent_map requirements exposed a latent bug here.  (Aaron Bentley)
 
6494
 
 
6495
* Issue a warning and ignore passwords declared in authentication.conf when
 
6496
  used for an ssh scheme (sftp or bzr+ssh).
 
6497
  (Vincent Ladeuil, #203186)
 
6498
 
 
6499
* Make both http implementations raise appropriate exceptions on 403
 
6500
  Forbidden when POSTing smart requests.
 
6501
  (Vincent Ladeuil, #230223)
 
6502
 
 
6503
* Properly *title* header names in http requests instead of capitalizing
 
6504
  them.
 
6505
  (Vincent Ladeuil, #229076)
 
6506
 
 
6507
* The "Unable to obtain lock" error message now also suggests using
 
6508
  ``bzr break-lock`` to fix it.  (Martin Albisetti, #139202)
 
6509
 
 
6510
* Treat an encoding of '' as ascii; this can happen when bzr is run
 
6511
  under vim on Mac OS X.
 
6512
  (Neil Martinsen-Burrell)
 
6513
 
 
6514
* ``VersionedFile.make_mpdiffs()`` was raising an exception that wasn't in
 
6515
  scope. (Daniel Fischer #235687)
 
6516
 
 
6517
Documentation
 
6518
*************
 
6519
 
 
6520
* Added directory structure and started translation of docs in spanish.
 
6521
  (Martin Albisetti, Lucio Albenga)
 
6522
 
 
6523
* Incorporate feedback from Jelmer Vernooij and Neil Martinsen-Burrell
 
6524
  on the plugin and integration chapters of the User Guide.
 
6525
  (Ian Clatworthy)
 
6526
 
 
6527
* More Bazaar developer documentation about packaging and release process,
 
6528
  and about use of Python reprs.
 
6529
  (Martin Pool, Martin Albisetti)
 
6530
 
 
6531
* Updated Tortise strategy document. (Mark Hammond)
 
6532
 
 
6533
Testing
 
6534
*******
 
6535
 
 
6536
* ``bzrlib.tests.adapt_tests`` was broken and unused - it has been fixed.
 
6537
  (Robert Collins)
 
6538
 
 
6539
* Fix the test HTTPServer to be isolated from chdir calls made while it is
 
6540
  running, allowing it to be used in blackbox tests. (Robert Collins)
 
6541
 
 
6542
* New helper function for splitting test suites
 
6543
  ``split_suite_by_condition``. (Robert Collins)
 
6544
 
 
6545
Internals
 
6546
*********
 
6547
 
 
6548
* ``Branch.missing_revisions`` has been deprecated. Similar functionality
 
6549
  can be obtained using ``bzrlib.missing.find_unmerged``. The api was
 
6550
  fairly broken, and the function was unused, so we are getting rid of it.
 
6551
  (John Arbash Meinel)
 
6552
 
 
6553
API Changes
 
6554
***********
 
6555
 
 
6556
* ``Branch.abspath`` is deprecated; use the Tree or Transport
 
6557
  instead.  (Martin Pool)
 
6558
 
 
6559
* ``Branch.update_revisions`` now takes an optional ``Graph``
 
6560
  object. This can be used by ``update_revisions`` when it is
 
6561
  checking ancestry, and allows callers to prefer request to go to a
 
6562
  local branch.  (John Arbash Meinel)
 
6563
 
 
6564
* Branch, Repository, Tree and BzrDir should expose a Transport as an
 
6565
  attribute if they have one, rather than having it indirectly accessible
 
6566
  as ``.control_files._transport``.  This doesn't add a requirement
 
6567
  to support a Transport in cases where it was not needed before;
 
6568
  it just simplifies the way it is reached.  (Martin Pool)
 
6569
 
 
6570
* ``bzr missing --mine-only`` will return status code 0 if you have no
 
6571
  new revisions, but the remote does. Similarly for ``--theirs-only``.
 
6572
  The new code only checks one side, so it doesn't know if the other
 
6573
  side has changes. This seems more accurate with the request anyway.
 
6574
  It also changes the output to print '[This|Other] branch is up to
 
6575
  date.' rather than displaying nothing.  (John Arbash Meinel)
 
6576
 
 
6577
* ``LockableFiles.put_utf8``, ``put_bytes`` and ``controlfilename``
 
6578
  are now deprecated in favor of using Transport operations.
 
6579
  (Martin Pool)
 
6580
 
 
6581
* Many methods on ``VersionedFile``, ``Repository`` and in
 
6582
  ``bzrlib.revision``  deprecated before bzrlib 1.5 have been removed.
 
6583
  (Robert Collins)
 
6584
 
 
6585
* ``RevisionSpec.wants_revision_history`` can be set to False for a given
 
6586
  ``RevisionSpec``. This will disable the existing behavior of passing in
 
6587
  the full revision history to ``self._match_on``. Useful for specs that
 
6588
  don't actually need access to the full history. (John Arbash Meinel)
 
6589
 
 
6590
* The constructors of ``SmartClientMedium`` and its subclasses now require a
 
6591
  ``base`` parameter.  ``SmartClientMedium`` implementations now also need
 
6592
  to provide a ``remote_path_from_transport`` method.  (Andrew Bennetts)
 
6593
 
 
6594
* The default permissions for creating new files and directories
 
6595
  should now be obtained from ``BzrDir._get_file_mode()`` and
 
6596
  ``_get_dir_mode()``, rather than from LockableFiles.  The ``_set_file_mode``
 
6597
  and ``_set_dir_mode`` variables on LockableFiles which were advertised
 
6598
  as a way for plugins to control this are no longer consulted.
 
6599
  (Martin Pool)
 
6600
 
 
6601
* ``VersionedFile.join`` is deprecated. This method required local
 
6602
  instances of both versioned file objects and was thus hostile to being
 
6603
  used for streaming from a smart server. The new get_record_stream and
 
6604
  insert_record_stream are meant to efficiently replace this method.
 
6605
  (Robert Collins)
 
6606
 
 
6607
* ``WorkingTree.set_parent_(ids/trees)`` will now filter out revisions
 
6608
  which are in the ancestry of other revisions. So if you merge the same
 
6609
  tree twice, or merge an ancestor of an existing merge, it will only
 
6610
  record the newest. (If you merge a descendent, it will replace its
 
6611
  ancestor). (John Arbash Meinel, #235407)
 
6612
 
 
6613
* ``WorkingTreeFormat2.stub_initialize_remote`` is now private.
 
6614
  (Martin Pool)
 
6615
 
 
6616
 
 
6617
bzr 1.5
 
6618
#######
 
6619
 
 
6620
:Released: 2008-05-16
 
6621
 
 
6622
This release of Bazaar includes several updates to the documentation, and fixes
 
6623
to prepare for making rich root support the default format. Many bugs have been
 
6624
squashed, including fixes to log, bzr+ssh inter-operation with older servers.
 
6625
 
 
6626
Changes
 
6627
*******
 
6628
 
 
6629
* Suppress deprecation warnings when bzrlib is a 'final' release. This way
 
6630
  users of packaged software won't be bothered with DeprecationWarnings,
 
6631
  but developers and testers will still see them. (John Arbash Meinel)
 
6632
 
 
6633
Documentation
 
6634
*************
 
6635
 
 
6636
* Incorporate feedback from Jelmer Vernooij and Neil Martinsen-Burrell
 
6637
  on the plugin and integration chapters of the User Guide.
 
6638
  (Ian Clatworthy)
 
6639
 
 
6640
 
 
6641
bzr 1.5rc1
 
6642
##########
 
6643
 
 
6644
:Released: 2008-05-09
 
6645
 
 
6646
Changes
 
6647
*******
 
6648
 
 
6649
* Broader support of GNU Emacs mail clients. Set
 
6650
  ``mail_client=emacsclient`` in your bazaar.conf and ``send`` will pop the
 
6651
  bundle in a mail buffer according to the value of ``mail-user-agent``
 
6652
  variable. (Xavier Maillard)
 
6653
 
 
6654
Improvements
 
6655
************
 
6656
 
 
6657
* Diff now handles revision specs like "branch:" and "submit:" more
 
6658
  efficiently.  (Aaron Bentley, #202928)
 
6659
 
 
6660
* More friendly error given when attempt to start the smart server
 
6661
  on an address already in use. (Andrea Corbellini, #200575)
 
6662
 
 
6663
* Pull completes much faster when there is nothing to pull.
 
6664
  (Aaron Bentley)
 
6665
 
 
6666
Bugfixes
 
6667
********
 
6668
 
 
6669
* Authentication.conf can define sections without password.
 
6670
  (Vincent Ladeuil, #199440)
 
6671
 
 
6672
* Avoid muttering every time a child update does not cause a progress bar
 
6673
  update. (John Arbash Meinel, #213771)
 
6674
 
 
6675
* ``Branch.reconcile()`` is now implemented. This allows ``bzr reconcile``
 
6676
  to fix when a Branch has a non-canonical mainline history. ``bzr check``
 
6677
  also detects this condition. (John Arbash Meinel, #177855)
 
6678
 
 
6679
* ``bzr log -r ..X bzr://`` was failing, because it was getting a request
 
6680
  for ``revision_id=None`` which was not a string.
 
6681
  (John Arbash Meinel, #211661)
 
6682
 
 
6683
* ``bzr commit`` now works with Microsoft's FTP service.
 
6684
  (Andreas Deininger)
 
6685
 
 
6686
* Catch definitions outside sections in authentication.conf.
 
6687
  (Vincent Ladeuil, #217650)
 
6688
 
 
6689
* Conversion from non-rich-root to rich-root(-pack) updates inventory
 
6690
  sha1s, even when bundles are used.  (Aaron Bentley, #181391)
 
6691
 
 
6692
* Conversion from non-rich-root to rich-root(-pack) works correctly even
 
6693
  though search keys are not topologically sorted.  (Aaron Bentley)
 
6694
 
 
6695
* Conversion from non-rich-root to rich-root(-pack) works even when a
 
6696
  parent revision has a different root id.  (Aaron Bentley, #177874)
 
6697
 
 
6698
* Disable strace testing until strace is fixed (see bug #103133) and emit a
 
6699
  warning when selftest ends to remind us of leaking tests.
 
6700
  (Vincent Ladeuil, #226769)
 
6701
 
 
6702
* Fetching all revisions from a repository does not cause pack collisions.
 
6703
  (Robert Collins, Aaron Bentley, #212908)
 
6704
 
 
6705
* Fix error about "attempt to add line-delta in non-delta knit".
 
6706
  (Andrew Bennetts, #217701)
 
6707
 
 
6708
* Pushing a branch in "dirstate" format (Branch5) over bzr+ssh would break
 
6709
  if the remote server was < version 1.2. This was due to a bug in the
 
6710
  RemoteRepository.get_parent_map() fallback code.
 
6711
  (John Arbash Meinel, #214894)
 
6712
 
 
6713
* Remove leftover code in ``bzr_branch`` that inappropriately creates
 
6714
  a ``branch-name`` file in the branch control directory.
 
6715
  (Martin Pool)
 
6716
 
 
6717
* Set SO_REUSEADDR on server sockets of ``bzr serve`` to avoid problems
 
6718
  rebinding the socket when starting the server a second time.
 
6719
  (John Arbash Meinel, Martin Pool, #164288)
 
6720
 
 
6721
* Severe performance degradation in fetching from knit repositories to
 
6722
  knits and packs due to parsing the entire revisions.kndx on every graph
 
6723
  walk iteration fixed by using the Repository.get_graph API.  There was
 
6724
  another regression in knit => knit fetching which re-read the index for
 
6725
  every revision each side had in common.
 
6726
  (Robert Collins, John Arbash Meinel)
 
6727
 
 
6728
* When logging the changes to a particular file, there was a bug if there
 
6729
  were ghosts in the revision ancestry. (John Arbash Meinel, #209948)
 
6730
 
 
6731
* xs4all's ftp server returns a temporary error when trying to list an
 
6732
  empty directory, rather than returning an empty list. Adding a
 
6733
  workaround so that we don't get spurious failures.
 
6734
  (John Arbash Meinel, #215522)
 
6735
 
 
6736
Documentation
 
6737
*************
 
6738
 
 
6739
* Expanded the User Guide to include new chapters on popular plugins and
 
6740
  integrating Bazaar into your environment. The *Best practices* chapter
 
6741
  was renamed to *Miscellaneous topics* as suggested by community
 
6742
  feedback as well. (Ian Clatworthy)
 
6743
 
 
6744
* Document outlining strategies for TortoiseBzr. (Mark Hammond)
 
6745
 
 
6746
* Improved the documentation on hooks. (Ian Clatworthy)
 
6747
 
 
6748
* Update authentication docs regarding ssh agents.
 
6749
  (Vincent Ladeuil, #183705)
 
6750
 
 
6751
Testing
 
6752
*******
 
6753
 
 
6754
* Add ``thread_name_suffix`` parameter to SmartTCPServer_for_testing, to
 
6755
  make it easy to identify which test spawned a thread with an unhandled
 
6756
  exception. (Andrew Bennetts)
 
6757
 
 
6758
* New ``--debugflag``/``-E`` option to ``bzr selftest`` for setting
 
6759
  options for debugging tests, these are complementary to the -D
 
6760
  options.  The ``-Dselftest_debug`` global option has been replaced by the
 
6761
  ``-E=allow_debug`` option for selftest. (Andrew Bennetts)
 
6762
 
 
6763
* Parameterised test ids are preserved correctly to aid diagnosis of test
 
6764
  failures. (Robert Collins, Andrew Bennetts)
 
6765
 
 
6766
* selftest now accepts --starting-with <id> to load only the tests whose id
 
6767
  starts with the one specified. This greatly speeds up running the test
 
6768
  suite on a limited set of tests and can be used to run the tests for a
 
6769
  single module, a single class or even a single test.  (Vincent Ladeuil)
 
6770
 
 
6771
* The test suite modules have been modified to define load_tests() instead
 
6772
  of test_suite(). That speeds up selective loading (via --load-list)
 
6773
  significantly and provides many examples on how to migrate (grep for
 
6774
  load_tests).  (Vincent Ladeuil)
 
6775
 
 
6776
Internals
 
6777
*********
 
6778
 
 
6779
* ``Hooks.install_hook`` is now deprecated in favour of
 
6780
  ``Hooks.install_named_hook`` which adds a required ``name`` parameter, to
 
6781
  avoid having to call ``Hooks.name_hook``. (Daniel Watkins)
 
6782
 
 
6783
* Implement xml8 serializer.  (Aaron Bentley)
 
6784
 
 
6785
* New form ``@deprecated_method(deprecated_in(1, 5, 0))`` for making
 
6786
  deprecation wrappers.  (Martin Pool)
 
6787
 
 
6788
* ``Repository.revision_parents`` is now deprecated in favour of
 
6789
  ``Repository.get_parent_map([revid])[revid]``. (Jelmer Vernooij)
 
6790
 
 
6791
* The Python ``assert`` statement is no longer used in Bazaar source, and
 
6792
  a test checks this.  (Martin Pool)
 
6793
 
 
6794
API Changes
 
6795
***********
 
6796
 
 
6797
* ``bzrlib.status.show_pending_merges`` requires the repository to be
 
6798
  locked by the caller. Callers should have been doing it anyway, but it
 
6799
  will now raise an exception if they do not. (John Arbash Meinel)
 
6800
 
 
6801
* Repository.get_data_stream, Repository.get_data_stream_for_search(),
 
6802
  Repository.get_deltas_for_revsions(), Repository.revision_trees(),
 
6803
  Repository.item_keys_introduced_by() no longer take read locks.
 
6804
  (Aaron Bentley)
 
6805
 
 
6806
* ``LockableFiles.get_utf8`` and ``.get`` are deprecated, as a start
 
6807
  towards removing LockableFiles and ``.control_files`` entirely.
 
6808
  (Martin Pool)
 
6809
 
 
6810
* Methods deprecated prior to 1.1 have been removed.
 
6811
  (Martin Pool)
 
6812
 
 
6813
 
 
6814
bzr 1.4 
 
6815
#######
 
6816
 
 
6817
:Released: 2008-04-28
 
6818
 
 
6819
This release of Bazaar includes handy improvements to the speed of log and
 
6820
status, new options for several commands, improved documentation, and better
 
6821
hooks, including initial code for server-side hooks.  A number of bugs have
 
6822
been fixed, particularly in interoperability between different formats or
 
6823
different releases of Bazaar over there network.  There's been substantial
 
6824
internal work in both the repository and network code to enable new features
 
6825
and faster performance.
 
6826
 
 
6827
Bug Fixes
 
6828
*********
 
6829
 
 
6830
* Pushing a branch in "dirstate" format (Branch5) over bzr+ssh would break
 
6831
  if the remote server was < version 1.2.  This was due to a bug in the
 
6832
  RemoteRepository.get_parent_map() fallback code.
 
6833
  (John Arbash Meinel, Andrew Bennetts, #214894)
 
6834
 
 
6835
 
 
6836
bzr 1.4rc2
 
6837
##########
 
6838
 
 
6839
:Released: 2008-04-21
 
6840
 
 
6841
Bug Fixes
 
6842
*********
 
6843
 
 
6844
* ``bzr log -r ..X bzr://`` was failing, because it was getting a request
 
6845
  for ``revision_id=None`` which was not a string.
 
6846
  (John Arbash Meinel, #211661)
 
6847
 
 
6848
* Fixed a bug in handling ghost revisions when logging changes in a
 
6849
  particular file.  (John Arbash Meinel, #209948)
 
6850
 
 
6851
* Fix error about "attempt to add line-delta in non-delta knit".
 
6852
  (Andrew Bennetts, #205156)
 
6853
 
 
6854
* Fixed performance degradation in fetching from knit repositories to
 
6855
  knits and packs due to parsing the entire revisions.kndx on every graph
 
6856
  walk iteration fixed by using the Repository.get_graph API.  There was
 
6857
  another regression in knit => knit fetching which re-read the index for
 
6858
  every revision each side had in common.
 
6859
  (Robert Collins, John Arbash Meinel)
 
6860
 
 
6861
 
 
6862
bzr 1.4rc1
 
6863
##########
 
6864
 
 
6865
:Released: 2008-04-11
 
6866
 
 
6867
Changes
 
6868
*******
 
6869
 
 
6870
* bzr main script cannot be imported (Benjamin Peterson)
 
6871
 
 
6872
* On GNU/Linux bzr additionally looks for plugins in arch-independent site
 
6873
  directory. (Toshio Kuratomi)
 
6874
 
 
6875
* The ``set_rh`` branch hook is now deprecated. Please migrate
 
6876
  any plugins using this hook to use an alternative, e.g.
 
6877
  ``post_change_branch_tip``. (Ian Clatworthy)
 
6878
 
 
6879
* When a plugin cannot be loaded as the file path is not a valid
 
6880
  python module name bzr will now strip a ``bzr_`` prefix from the
 
6881
  front of the suggested name, as many plugins (e.g. bzr-svn)
 
6882
  want to be installed without this prefix. It is a common mistake
 
6883
  to have a folder named "bzr-svn" for that plugin, especially
 
6884
  as this is what bzr branch lp:bzr-svn will give you. (James Westby,
 
6885
  Andrew Cowie)
 
6886
 
 
6887
* UniqueIntegerBugTracker now appends bug-ids instead of joining
 
6888
  them to the base URL. Plugins that register bug trackers may
 
6889
  need a trailing / added to the base URL if one is not already there.
 
6890
  (James Wesby, Andrew Cowie)
 
6891
 
 
6892
Features
 
6893
********
 
6894
 
 
6895
* Added start_commit hook for mutable trees. (Jelmer Vernooij, #186422)
 
6896
 
 
6897
* ``status`` now accepts ``--no-pending`` to show the status without
 
6898
  listing pending merges, which speeds up the command a lot on large
 
6899
  histories.  (James Westby, #202830)
 
6900
 
 
6901
* New ``post_change_branch_tip`` hook that is called after the
 
6902
  branch tip is moved but while the branch is still write-locked.
 
6903
  See the User Reference for signature details.
 
6904
  (Ian Clatworthy, James Henstridge)
 
6905
 
 
6906
* Reconfigure can convert a branch to be standalone or to use a shared
 
6907
  repository.  (Aaron Bentley)
 
6908
 
 
6909
Improvements
 
6910
************
 
6911
 
 
6912
* The smart protocol now has support for setting branches' revision info
 
6913
  directly.  This should make operations like push slightly faster, and is a
 
6914
  step towards server-side hooks.  The new request method name is
 
6915
  ``Branch.set_last_revision_info``.  (Andrew Bennetts)
 
6916
 
 
6917
* ``bzr commit --fixes`` now recognises "gnome" as a tag by default.
 
6918
  (James Westby, Andrew Cowie)
 
6919
 
 
6920
* ``bzr switch`` will attempt to find branches to switch to relative to the
 
6921
  current branch. E.g. ``bzr switch branchname`` will look for
 
6922
  ``current_branch/../branchname``. (Robert Collins, Jelmer Vernooij,
 
6923
  Wouter van Heyst)
 
6924
 
 
6925
* Diff is now more specific about execute-bit changes it describes
 
6926
  (Chad Miller)
 
6927
 
 
6928
* Fetching data over HTTP is a bit faster when urllib is used.  This is done
 
6929
  by forcing it to recv 64k at a time when reading lines in HTTP headers,
 
6930
  rather than just 1 byte at a time.  (Andrew Bennetts)
 
6931
 
 
6932
* Log --short and --line are much faster when -r is not specified.
 
6933
  (Aaron Bentley)
 
6934
 
 
6935
* Merge is faster.  We no longer check a file's existence unnecessarily
 
6936
  when merging the execute bit.  (Aaron Bentley)
 
6937
 
 
6938
* ``bzr status`` on an explicit list of files no longer shows pending
 
6939
  merges, making it much faster on large trees. (John Arbash Meinel)
 
6940
 
 
6941
* The launchpad directory service now warns the user if they have not set
 
6942
  their launchpad login and are trying to resolve a URL using it, just
 
6943
  in case they want to do a write operation with it.  (James Westby)
 
6944
 
 
6945
* The smart protocol client is slightly faster, because it now only queries
 
6946
  the server for the protocol version once per connection.  Also, the HTTP
 
6947
  transport will now automatically probe for and use a smart server if
 
6948
  one is present.  You can use the new ``nosmart+`` transport decorator
 
6949
  to get the old behaviour.  (Andrew Bennetts)
 
6950
 
 
6951
* The ``version`` command takes a ``--short`` option to print just the
 
6952
  version number, for easier use in scripts.  (Martin Pool)
 
6953
 
 
6954
* Various operations with revision specs and commands that calculate
 
6955
  revnos and revision ids are faster.  (John A. Meinel, Aaron Bentley)
 
6956
 
 
6957
Bugfixes
 
6958
********
 
6959
 
 
6960
* Add ``root_client_path`` parameter to SmartWSGIApp and
 
6961
  SmartServerRequest.  This makes it possible to publish filesystem
 
6962
  locations that don't exactly match URL paths. SmartServerRequest
 
6963
  subclasses should use the new ``translate_client_path`` and
 
6964
  ``transport_from_client_path`` methods when dealing with paths received
 
6965
  from a client to take this into account.  (Andrew Bennetts, #124089)
 
6966
 
 
6967
* ``bzr mv a b`` can be now used also to rename previously renamed
 
6968
  directories, not only files. (Lukáš Lalinský, #107967)
 
6969
 
 
6970
* ``bzr uncommit --local`` can now remove revisions from the local
 
6971
  branch to be symmetric with ``bzr commit --local``.
 
6972
  (John Arbash Meinel, #93412)
 
6973
 
 
6974
* Don't ask for a password if there is no real terminal.
 
6975
  (Alexander Belchenko, #69851)
 
6976
 
 
6977
* Fix a bug causing a ValueError crash in ``parse_line_delta_iter`` when
 
6978
  fetching revisions from a knit to pack repository or vice versa using
 
6979
  bzr:// (including over http or ssh).
 
6980
  (#208418, Andrew Bennetts, Martin Pool, Robert Collins)
 
6981
 
 
6982
* Fixed ``_get_line`` in ``bzrlib.smart.medium``, which was buggy.  Also
 
6983
  fixed ``_get_bytes`` in the same module to use the push back buffer.
 
6984
  These bugs had no known impact in normal use, but were problematic for
 
6985
  developers working on the code, and were likely to cause real bugs sooner
 
6986
  or later.  (Andrew Bennetts)
 
6987
 
 
6988
* Implement handling of basename parameter for DefaultMail.  (James Westby)
 
6989
 
 
6990
* Incompatibility with Paramiko versions newer than 1.7.2 was fixed.
 
6991
  (Andrew Bennetts, #213425)
 
6992
 
 
6993
* Launchpad locations (lp: URLs) can be pulled.  (Aaron Bentley, #181945)
 
6994
 
 
6995
* Merges that add files to deleted root directories complete.  They
 
6996
  do create conflicts.  (Aaron Bentley, #210092)
 
6997
 
 
6998
* vsftp's return ``550 RNFR command failed.`` supported.
 
6999
  (Marcus Trautwig, #129786)
 
7000
 
 
7001
Documentation
 
7002
*************
 
7003
 
 
7004
* Improved documentation on send/merge relationship. (Peter Schuller)
 
7005
 
 
7006
* Minor fixes to the User Guide. (Matthew Fuller)
 
7007
 
 
7008
* Reduced the evangelism in the User Guide. (Ian Clatworthy)
 
7009
 
 
7010
* Added Integrating with Bazaar document for developers (Martin Albisetti)
 
7011
 
 
7012
API Breaks
 
7013
**********
 
7014
 
 
7015
* Attempting to pull data from a ghost aware repository (e.g. knits) into a
 
7016
  non-ghost aware repository such as weaves will now fail if there are
 
7017
  ghosts.  (Robert Collins)
 
7018
 
 
7019
* ``KnitVersionedFile`` no longer accepts an ``access_mode`` parameter, and
 
7020
  now requires the ``index`` and ``access_method`` parameters to be
 
7021
  supplied. A compatible shim has been kept in the new function
 
7022
  ``knit.make_file_knit``. (Robert Collins)
 
7023
 
 
7024
* Log formatters must now provide log_revision instead of show and
 
7025
  show_merge_revno methods. The latter had been deprecated since the 0.17
 
7026
  release. (James Westby)
 
7027
 
 
7028
* ``LoopbackSFTP`` is now called ``SocketAsChannelAdapter``.
 
7029
  (Andrew Bennetts)
 
7030
 
 
7031
* ``osutils.backup_file`` is removed. (Alexander Belchenko)
 
7032
 
 
7033
* ``Repository.get_revision_graph`` is deprecated, with no replacement
 
7034
  method. The method was size(history) and not desirable. (Robert Collins)
 
7035
 
 
7036
* ``revision.revision_graph`` is deprecated, with no replacement function.
 
7037
  The function was size(history) and not desirable. (Robert Collins)
 
7038
 
 
7039
* ``Transport.get_shared_medium`` is deprecated.  Use
 
7040
  ``Transport.get_smart_medium`` instead.  (Andrew Bennetts)
 
7041
 
 
7042
* ``VersionedFile`` factories now accept a get_scope parameter rather
 
7043
  than using a call to ``transaction_finished``, allowing the removal of
 
7044
  the fixed list of versioned files per repository. (Robert Collins)
 
7045
 
 
7046
* ``VersionedFile.annotate_iter`` is deprecated. While in principle this
 
7047
  allowed lower memory use, all users of annotations wanted full file
 
7048
  annotations, and there is no storage format suitable for incremental
 
7049
  line-by-line annotation. (Robert Collins)
 
7050
 
 
7051
* ``VersionedFile.clone_text`` is deprecated. This performance optimisation
 
7052
  is no longer used - reading the content of a file that is undergoing a
 
7053
  file level merge to identical state on two branches is rare enough, and
 
7054
  not expensive enough to special case. (Robert Collins)
 
7055
 
 
7056
* ``VersionedFile.clear_cache`` and ``enable_cache`` are deprecated.
 
7057
  These methods added significant complexity to the ``VersionedFile``
 
7058
  implementation, but were only used for optimising fetches from knits -
 
7059
  which can be done from outside the knit layer, or via a caching
 
7060
  decorator. As knits are not the default format, the complexity is no
 
7061
  longer worth paying. (Robert Collins)
 
7062
 
 
7063
* ``VersionedFile.create_empty`` is removed. This method presupposed a
 
7064
  sensible mapping to a transport for individual files, but pack backed
 
7065
  versioned files have no such mapping. (Robert Collins)
 
7066
 
 
7067
* ``VersionedFile.get_graph`` is deprecated, with no replacement method.
 
7068
  The method was size(history) and not desirable. (Robert Collins)
 
7069
 
 
7070
* ``VersionedFile.get_graph_with_ghosts`` is deprecated, with no
 
7071
  replacement method.  The method was size(history) and not desirable.
 
7072
  (Robert Collins)
 
7073
 
 
7074
* ``VersionedFile.get_parents`` is deprecated, please use
 
7075
  ``VersionedFile.get_parent_map``. (Robert Collins)
 
7076
 
 
7077
* ``VersionedFile.get_sha1`` is deprecated, please use
 
7078
  ``VersionedFile.get_sha1s``. (Robert Collins)
 
7079
 
 
7080
* ``VersionedFile.has_ghost`` is now deprecated, as it is both expensive
 
7081
  and unused outside of a single test. (Robert Collins)
 
7082
 
 
7083
* ``VersionedFile.iter_parents`` is now deprecated in favour of
 
7084
  ``get_parent_map`` which can be used to instantiate a Graph on a
 
7085
  VersionedFile. (Robert Collins)
 
7086
 
 
7087
* ``VersionedFileStore`` no longer uses the transaction parameter given
 
7088
  to most methods; amongst other things this means that the
 
7089
  get_weave_or_empty method no longer guarantees errors on a missing weave
 
7090
  in a readonly transaction, and no longer caches versioned file instances
 
7091
  which reduces memory pressure (but requires more careful management by
 
7092
  callers to preserve performance). (Robert Collins)
 
7093
 
 
7094
Testing
 
7095
*******
 
7096
 
 
7097
* New -Dselftest_debug flag disables clearing of the debug flags during
 
7098
  tests.  This is useful if you want to use e.g. -Dhpss to help debug a
 
7099
  failing test.  Be aware that using this feature is likely to cause
 
7100
  spurious test failures if used with the full suite. (Andrew Bennetts)
 
7101
 
 
7102
* selftest --load-list now uses a new more agressive test loader that will
 
7103
  avoid loading unneeded modules and building their tests. Plugins can use
 
7104
  this new loader by defining a load_tests function instead of a test_suite
 
7105
  function. (a forthcoming patch will provide many examples on how to
 
7106
  implement this).
 
7107
  (Vincent Ladeuil)
 
7108
 
 
7109
* selftest --load-list now does some sanity checks regarding duplicate test
 
7110
  IDs and tests present in the list but not found in the actual test suite.
 
7111
  (Vincent Ladeuil)
 
7112
 
 
7113
* Slightly more concise format for the selftest progress bar, so there's
 
7114
  more space to show the test name.  (Martin Pool) ::
 
7115
 
 
7116
    [2500/10884, 1fail, 3miss in 1m29s] test_revisionnamespaces.TestRev
 
7117
 
 
7118
* The test suite takes much less memory to run, and is a bit faster.  This
 
7119
  is done by clearing most attributes of TestCases after running them, if
 
7120
  they succeeded.  (Andrew Bennetts)
 
7121
 
 
7122
Internals
 
7123
*********
 
7124
 
 
7125
* Added ``_build_client_protocol`` to ``_SmartClient``.  (Andrew Bennetts)
 
7126
 
 
7127
* Added basic infrastructure for automatic plugin suggestion.
 
7128
  (Martin Albisetti)
 
7129
 
 
7130
* If a ``LockableFiles`` object is not explicitly unlocked (for example
 
7131
  because of a missing ``try/finally`` block, it will give a warning but
 
7132
  not automatically unlock itself.  (Previously they did.)  This
 
7133
  sometimes caused knock-on errors if for example the network connection
 
7134
  had already failed, and should not be relied upon by code.
 
7135
  (Martin Pool, #109520)
 
7136
 
 
7137
* ``make dist`` target to build a release tarball, and also
 
7138
  ``check-dist-tarball`` and ``dist-upload-escudero``.  (Martin Pool)
 
7139
 
 
7140
* The ``read_response_tuple`` method of ``SmartClientRequestProtocol*``
 
7141
  classes will now raise ``UnknownSmartMethod`` when appropriate, so that
 
7142
  callers don't need to try distinguish unknown request errors from other
 
7143
  errors.  (Andrew Bennetts)
 
7144
 
 
7145
* ``set_make_working_trees`` is now implemented provided on all repository
 
7146
  implementations (Aaron Bentley)
 
7147
 
 
7148
* ``VersionedFile`` now has a new method ``get_parent_map`` which, like
 
7149
  ``Graph.get_parent_map`` returns a dict of key:parents. (Robert Collins)
 
7150
 
 
7151
 
 
7152
bzr 1.3.1
 
7153
#########
 
7154
 
 
7155
:Released: 2008-04-09
 
7156
 
 
7157
No changes from 1.3.1rc1.
 
7158
 
 
7159
 
 
7160
bzr 1.3.1rc1
 
7161
############
 
7162
 
 
7163
:Released: 2008-04-04
 
7164
 
 
7165
Bug Fixes
 
7166
*********
 
7167
 
 
7168
* Fix a bug causing a ValueError crash in ``parse_line_delta_iter`` when
 
7169
  fetching revisions from a knit to pack repository or vice versa using
 
7170
  bzr:// (including over http or ssh).
 
7171
  (#208418, Andrew Bennetts, Martin Pool, Robert Collins)
 
7172
 
 
7173
 
 
7174
bzr 1.3
 
7175
#######
 
7176
 
 
7177
:Released: 2008-03-20
 
7178
 
 
7179
Bazaar has become part of the GNU project <http://www.gnu.org>
 
7180
 
 
7181
Many operations that act on history, including ``log`` and ``annotate`` are now
 
7182
substantially faster.  Several bugs have been fixed and several new options and
 
7183
features have been added.
 
7184
 
 
7185
Testing
 
7186
*******
 
7187
 
 
7188
* Avoid spurious failure of ``TestVersion.test_version`` matching
 
7189
  directory names.
 
7190
  (#202778, Martin Pool)
 
7191
 
 
7192
 
 
7193
bzr 1.3rc1
 
7194
##########
 
7195
 
 
7196
:Released: 2008-03-16
 
7197
 
 
7198
Notes When Upgrading
 
7199
********************
 
7200
 
 
7201
* The backup directory created by ``upgrade`` is now called
 
7202
  ``backup.bzr``, not ``.bzr.backup``. (Martin Albisetti)
 
7203
 
 
7204
Changes
 
7205
*******
 
7206
 
 
7207
* A new repository format 'development' has been added. This format will
 
7208
  represent the latest 'in-progress' format that the bzr developers are
 
7209
  interested in getting early-adopter testing and feedback on.
 
7210
  ``doc/developers/development-repo.txt`` has detailed information.
 
7211
  (Robert Collins)
 
7212
 
 
7213
* BZR_LOG environment variable controls location of .bzr.log trace file.
 
7214
  User can suppress writing messages to .bzr.log by using '/dev/null'
 
7215
  filename (on Unix) or 'NUL' (on Windows). If BZR_LOG variable
 
7216
  is not defined but BZR_HOME is defined then default location
 
7217
  for .bzr.log trace file is ``$BZR_HOME/.bzr.log``.
 
7218
  (Alexander Belchenko, #106117)
 
7219
 
 
7220
* ``launchpad`` builtin plugin now shipped as separate part in standalone
 
7221
  bzr.exe, installed to ``C:\Program Files\Bazaar\plugins`` directory,
 
7222
  and standalone installer allows user to skip installation of this plugin.
 
7223
  (Alexander Belchenko)
 
7224
 
 
7225
* Restore auto-detection of plink.exe on Windows. (Dmitry Vasiliev)
 
7226
 
 
7227
* Version number is now shown as "1.2" or "1.2pr2", without zeroed or
 
7228
  missing final fields.  (Martin Pool)
 
7229
 
 
7230
Features
 
7231
********
 
7232
 
 
7233
* ``branch`` and ``checkout`` can hard-link working tree files, which is
 
7234
  faster and saves space.  (Aaron Bentley)
 
7235
 
 
7236
* ``bzr send`` will now also look at the ``child_submit_to`` setting in
 
7237
  the submit branch to determine the email address to send to.
 
7238
  (Jelmer Vernooij)
 
7239
 
 
7240
Improvements
 
7241
************
 
7242
 
 
7243
* BzrBranch._lefthand_history is faster on pack repos.  (Aaron Bentley)
 
7244
 
 
7245
* Branch6.generate_revision_history is faster.  (Aaron Bentley)
 
7246
 
 
7247
* Directory services can now be registered, allowing special URLs to be
 
7248
  dereferenced into real URLs.  This is a generalization and cleanup of
 
7249
  the lp: transport lookup.  (Aaron Bentley)
 
7250
 
 
7251
* Merge directives that are automatically attached to emails have nicer
 
7252
  filenames, based on branch-nick + revno. (Aaron Bentley)
 
7253
 
 
7254
* ``push`` has a ``--revision`` option, to specify what revision to push up
 
7255
  to.  (Daniel Watkins)
 
7256
 
 
7257
* Significantly reducing execution time and network traffic for trivial
 
7258
  case of running ``bzr missing`` command for two identical branches.
 
7259
  (Alexander Belchenko)
 
7260
 
 
7261
* Speed up operations that look at the revision graph (such as 'bzr log').
 
7262
  ``KnitPackRepositor.get_revision_graph`` uses ``Graph.iter_ancestry`` to
 
7263
  extract the revision history. This allows filtering ghosts while
 
7264
  stepping instead of needing to peek ahead. (John Arbash Meinel)
 
7265
 
 
7266
* The ``hooks`` command lists installed hooks, to assist in debugging.
 
7267
  (Daniel Watkins)
 
7268
 
 
7269
* Updates to how ``annotate`` work. Should see a measurable improvement in
 
7270
  performance and memory consumption for file with a lot of merges.
 
7271
  Also, correctly handle when a line is introduced by both parents (it
 
7272
  should be attributed to the first merge which notices this, and not
 
7273
  to all subsequent merges.) (John Arbash Meinel)
 
7274
 
 
7275
Bugfixes
 
7276
********
 
7277
 
 
7278
* Autopacking no longer holds the full set of inventory lines in
 
7279
  memory while copying. For large repositories, this can amount to
 
7280
  hundreds of MB of ram consumption.
 
7281
  (Ian Clatworthy, John Arbash Meinel)
 
7282
 
 
7283
* Cherrypicking when using ``--format=merge3`` now explictly excludes
 
7284
  BASE lines. (John Arbash Meinel, #151731)
 
7285
 
 
7286
* Disable plink's interactive prompt for password.
 
7287
  (#107593, Dmitry Vasiliev)
 
7288
 
 
7289
* Encode command line arguments from unicode to user_encoding before
 
7290
  invoking external mail client in `bzr send` command.
 
7291
  (#139318, Alexander Belchenko)
 
7292
 
 
7293
* Fixed problem connecting to ``bzr+https://`` servers.
 
7294
  (#198793, John Ferlito)
 
7295
 
 
7296
* Improved error reporting in the Launchpad plugin. (Daniel Watkins,
 
7297
  #196618)
 
7298
 
 
7299
* Include quick-start-summary.svg file to python-based installer(s)
 
7300
  for Windows. (#192924, Alexander Belchenko)
 
7301
 
 
7302
* lca merge now respects specified files. (Aaron Bentley)
 
7303
 
 
7304
* Make version-info --custom imply --all. (#195560, James Westby)
 
7305
 
 
7306
* ``merge --preview`` now works for merges that add or modify
 
7307
  symlinks (James Henstridge)
 
7308
 
 
7309
* Redirecting the output from ``bzr merge`` (when the remembered
 
7310
  location is used) now works. (John Arbash Meinel)
 
7311
 
 
7312
* setup.py script explicitly checks for Python version.
 
7313
  (Jari Aalto, Alexander Belchenko, #200569)
 
7314
 
 
7315
* UnknownFormatErrors no longer refer to branches regardless of kind of
 
7316
  unknown format. (Daniel Watkins, #173980)
 
7317
 
 
7318
* Upgrade bundled ConfigObj to version 4.5.2, which properly quotes #
 
7319
  signs, among other small improvements. (Matt Nordhoff, #86838)
 
7320
 
 
7321
* Use correct indices when emitting LCA conflicts.  This fixes IndexError
 
7322
  errors.  (Aaron Bentley, #196780)
 
7323
 
 
7324
Documentation
 
7325
*************
 
7326
 
 
7327
* Explained how to use ``version-info --custom`` in the User Guide.
 
7328
  (Neil Martinsen-Burrell)
 
7329
 
 
7330
API Breaks
 
7331
**********
 
7332
 
 
7333
* Support for loading plugins from zip files and
 
7334
  ``bzrlib.plugin.load_from_zip()`` function are deprecated.
 
7335
  (Alexander Belchenko)
 
7336
 
 
7337
Testing
 
7338
*******
 
7339
 
 
7340
* Added missing blackbox tests for ``modified`` (Adrian Wilkins)
 
7341
 
 
7342
* The branch interface tests were invalid for branches using rich-root
 
7343
  repositories because the empty string is not a valid file-id.
 
7344
  (Robert Collins)
 
7345
 
 
7346
Internals
 
7347
*********
 
7348
 
 
7349
* ``Graph.iter_ancestry`` returns the ancestry of revision ids. Similar to
 
7350
  ``Repository.get_revision_graph()`` except it includes ghosts and you can
 
7351
  stop part-way through. (John Arbash Meinel)
 
7352
 
 
7353
* New module ``tools/package_mf.py`` provide custom module finder for
 
7354
  python packages (improves standard python library's modulefinder.py)
 
7355
  used by ``setup.py`` script while building standalone bzr.exe.
 
7356
  (Alexander Belchenko)
 
7357
 
 
7358
* New remote method ``RemoteBzrDir.find_repositoryV2`` adding support for
 
7359
  detecting external lookup support on remote repositories. This method is
 
7360
  now attempted first when lookup up repositories, leading to an extra
 
7361
  round trip on older bzr smart servers. (Robert Collins)
 
7362
 
 
7363
* Repository formats have a new supported-feature attribute
 
7364
  ``supports_external_lookups`` used to indicate repositories which support
 
7365
  falling back to other repositories when they have partial data.
 
7366
  (Robert Collins)
 
7367
 
 
7368
* ``Repository.get_revision_graph_with_ghosts`` and
 
7369
  ``bzrlib.revision.(common_ancestor,MultipleRevisionSources,common_graph)``
 
7370
  have been deprecated.  (John Arbash Meinel)
 
7371
 
 
7372
* ``Tree.iter_changes`` is now a public API, replacing the work-in-progress
 
7373
  ``Tree._iter_changes``. The api is now considered stable and ready for
 
7374
  external users.  (Aaron Bentley)
 
7375
 
 
7376
* The bzrdir format registry now accepts an ``alias`` keyword to
 
7377
  register_metadir, used to indicate that a format name is an alias for
 
7378
  some other format and thus should not be reported when describing the
 
7379
  format. (Robert Collins)
 
7380
 
 
7381
 
 
7382
bzr 1.2
 
7383
#######
 
7384
 
 
7385
:Released: 2008-02-15
 
7386
 
 
7387
Bug Fixes
 
7388
*********
 
7389
 
 
7390
* Fix failing test in Launchpad plugin. (Martin Pool)
 
7391
 
 
7392
 
 
7393
bzr 1.2rc1
 
7394
##########
 
7395
 
 
7396
:Released: 2008-02-13
 
7397
 
 
7398
Notes When Upgrading
 
7399
********************
 
7400
 
 
7401
* Fetching via the smart protocol may need to reconnect once during a fetch
 
7402
  if the remote server is running Bazaar 1.1 or earlier, because the client
 
7403
  attempts to use more efficient requests that confuse older servers.  You
 
7404
  may be required to re-enter a password or passphrase when this happens.
 
7405
  This won't happen if the server is upgraded to Bazaar 1.2.
 
7406
  (Andrew Bennetts)
 
7407
 
 
7408
Changes
 
7409
*******
 
7410
 
 
7411
* Fetching via bzr+ssh will no longer fill ghosts by default (this is
 
7412
  consistent with pack-0.92 fetching over SFTP). (Robert Collins)
 
7413
 
 
7414
* Formatting of ``bzr plugins`` output is changed to be more human-
 
7415
  friendly. Full path of plugins locations will be shown only with
 
7416
  ``--verbose`` command-line option. (Alexander Belchenko)
 
7417
 
 
7418
* ``merge`` now prefers to use the submit branch, but will fall back to
 
7419
  parent branch.  For many users, this has no effect.  But some users who
 
7420
  pull and merge on the same branch will notice a change.  This change
 
7421
  makes it easier to work on a branch on two different machines, pulling
 
7422
  between the machines, while merging from the upstream.
 
7423
  ``merge --remember`` can now be used to set the submit_branch.
 
7424
  (Aaron Bentley)
 
7425
 
 
7426
Features
 
7427
********
 
7428
 
 
7429
* ``merge --preview`` produces a diff of the changes merge would make,
 
7430
  but does not actually perform the merge.  (Aaron Bentley)
 
7431
 
 
7432
* New smart method ``Repository.get_parent_map`` for getting revision
 
7433
  parent data. This returns additional parent information topologically
 
7434
  adjacent to the requested data to reduce round trip latency impacts.
 
7435
  (Robert Collins)
 
7436
 
 
7437
* New smart method, ``Repository.stream_revisions_chunked``, for fetching
 
7438
  revision data that streams revision data via a chunked encoding.  This
 
7439
  avoids buffering large amounts of revision data on the server and on the
 
7440
  client, and sends less data to the server to request the revisions.
 
7441
  (Andrew Bennetts, Robert Collins, #178353)
 
7442
 
 
7443
* The launchpad plugin now handles lp urls of the form
 
7444
  ``lp://staging/``, ``lp://demo/``, ``lp://dev/`` to use the appropriate
 
7445
  launchpad instance to do the resolution of the branch identities.
 
7446
  This is primarily of use to Launchpad developers, but can also
 
7447
  be used by other users who want to try out Launchpad as
 
7448
  a branch location without messing up their public Launchpad
 
7449
  account.  Branches that are pushed to the staging environment
 
7450
  have an expected lifetime of one day. (Tim Penhey)
 
7451
 
 
7452
Improvements
 
7453
************
 
7454
 
 
7455
* Creating a new branch no longer tries to read the entire revision-history
 
7456
  unnecessarily over smart server operations. (Robert Collins)
 
7457
 
 
7458
* Fetching between different repository formats with compatible models now
 
7459
  takes advantage of the smart method to stream revisions.  (Andrew Bennetts)
 
7460
 
 
7461
* The ``--coverage`` option is now global, rather specific to ``bzr
 
7462
  selftest``.  (Andrew Bennetts)
 
7463
 
 
7464
* The ``register-branch`` command will now use the public url of the branch
 
7465
  containing the current directory, if one has been set and no explicit
 
7466
  branch is provided.  (Robert Collins)
 
7467
 
 
7468
* Tweak the ``reannotate`` code path to optimize the 2-parent case.
 
7469
  Speeds up ``bzr annotate`` with a pack repository by approx 3:2.
 
7470
  (John Arbash Meinel)
 
7471
 
 
7472
Bugfixes
 
7473
********
 
7474
 
 
7475
* Calculate remote path relative to the shared medium in _SmartClient.  This
 
7476
  is related to the problem in bug #124089.  (Andrew Bennetts)
 
7477
 
 
7478
* Cleanly handle connection errors in smart protocol version two, the same
 
7479
  way as they are handled by version one.  (Andrew Bennetts)
 
7480
 
 
7481
* Clearer error when ``version-info --custom`` is used without
 
7482
  ``--template`` (Lukáš Lalinský)
 
7483
 
 
7484
* Don't raise UnavailableFeature during test setup when medusa is not
 
7485
  available or tearDown is never called leading to nasty side effects.
 
7486
  (#137823, Vincent Ladeuil)
 
7487
 
 
7488
* If a plugin's test suite cannot be loaded, for example because of a syntax
 
7489
  error in the tests, then ``selftest`` fails, rather than just printing
 
7490
  a warning.  (Martin Pool, #189771)
 
7491
 
 
7492
* List possible values for BZR_SSH environment variable in env-variables
 
7493
  help topic. (Alexander Belchenko, #181842)
 
7494
 
 
7495
* New methods ``push_log_file`` and ``pop_log_file`` to intercept messages:
 
7496
  popping the log redirection now precisely restores the previous state,
 
7497
  which makes it easier to use bzr log output from other programs.
 
7498
  TestCaseInTempDir no longer depends on a log redirection being established
 
7499
  by the test framework, which lets bzr tests cleanly run from a normal
 
7500
  unittest runner.
 
7501
  (#124153, #124849, Martin Pool, Jonathan Lange)
 
7502
 
 
7503
* ``pull --quiet`` is now more quiet, in particular a message is no longer
 
7504
  printed when the remembered pull location is used. (James Westby,
 
7505
  #185907)
 
7506
 
 
7507
* ``reconfigure`` can safely be interrupted while fetching.
 
7508
  (Aaron Bentley, #179316)
 
7509
 
 
7510
* ``reconfigure`` preserves tags when converting to and from lightweight
 
7511
  checkouts.  (Aaron Bentley, #182040)
 
7512
 
 
7513
* Stop polluting /tmp when running selftest.
 
7514
  (Vincent Ladeuil, #123363)
 
7515
 
 
7516
* Switch from NFKC => NFC for normalization checks. NFC allows a few
 
7517
  more characters which should be considered valid.
 
7518
  (John Arbash Meinel, #185458)
 
7519
 
 
7520
* The launchpad plugin now uses the ``edge`` xmlrpc server to avoid
 
7521
  interacting badly with a bug on the launchpad side. (Robert Collins)
 
7522
 
 
7523
* Unknown hostnames when connecting to a ``bzr://`` URL no longer cause
 
7524
  tracebacks.  (Andrew Bennetts, #182849)
 
7525
 
 
7526
API Breaks
 
7527
**********
 
7528
 
 
7529
* Classes implementing Merge types like Merge3Merger must now accept (and
 
7530
  honour) a do_merge flag in their constructor.  (Aaron Bentley)
 
7531
 
 
7532
* ``Repository.add_inventory`` and ``add_revision`` now require the caller
 
7533
  to previously take a write lock (and start a write group.)
 
7534
  (Martin Pool)
 
7535
 
 
7536
Testing
 
7537
*******
 
7538
 
 
7539
* selftest now accepts --load-list <file> to load a test id list. This
 
7540
  speeds up running the test suite on a limited set of tests.
 
7541
  (Vincent Ladeuil)
 
7542
 
 
7543
Internals
 
7544
*********
 
7545
 
 
7546
* Add a new method ``get_result`` to graph search objects. The resulting
 
7547
  ``SearchResult`` can be used to recreate the search later, which will
 
7548
  be useful in reducing network traffic. (Robert Collins)
 
7549
 
 
7550
* Use convenience function to check whether two repository handles
 
7551
  are referring to the same repository in ``Repository.get_graph``.
 
7552
  (Jelmer Vernooij, #187162)
 
7553
 
 
7554
* Fetching now passes the find_ghosts flag through to the
 
7555
  ``InterRepository.missing_revision_ids`` call consistently for all
 
7556
  repository types. This will enable faster missing revision discovery with
 
7557
  bzr+ssh. (Robert Collins)
 
7558
 
 
7559
* Fix error handling in Repository.insert_data_stream. (Lukas Lalinsky)
 
7560
 
 
7561
* ``InterRepository.missing_revision_ids`` is now deprecated in favour of
 
7562
  ``InterRepository.search_missing_revision_ids`` which returns a
 
7563
  ``bzrlib.graph.SearchResult`` suitable for making requests from the smart
 
7564
  server. (Robert Collins)
 
7565
 
 
7566
* New error ``NoPublicBranch`` for commands that need a public branch to
 
7567
  operate. (Robert Collins)
 
7568
 
 
7569
* New method ``iter_inventories`` on Repository for access to many
 
7570
  inventories. This is primarily used by the ``revision_trees`` method, as
 
7571
  direct access to inventories is discouraged. (Robert Collins)
 
7572
 
 
7573
* New method ``next_with_ghosts`` on the Graph breadth-first-search objects
 
7574
  which will split out ghosts and present parents into two separate sets,
 
7575
  useful for code which needs to be aware of ghosts (e.g. fetching data
 
7576
  cares about ghosts during revision selection). (Robert Collins)
 
7577
 
 
7578
* Record a timestamp against each mutter to the trace file, relative to the
 
7579
  first import of bzrlib.  (Andrew Bennetts)
 
7580
 
 
7581
* ``Repository.get_data_stream`` is now deprecated in favour of
 
7582
  ``Repository.get_data_stream_for_search`` which allows less network
 
7583
  traffic when requesting data streams over a smart server. (Robert Collins)
 
7584
 
 
7585
* ``RemoteBzrDir._get_tree_branch`` no longer triggers ``_ensure_real``,
 
7586
  removing one round trip on many network operations. (Robert Collins)
 
7587
 
 
7588
* RemoteTransport's ``recommended_page_size`` method now returns 64k, like
 
7589
  SFTPTransport and HttpTransportBase.  (Andrew Bennetts)
 
7590
 
 
7591
* Repository has a new method ``has_revisions`` which signals the presence
 
7592
  of many revisions by returning a set of the revisions listed which are
 
7593
  present. This can be done by index queries without reading data for parent
 
7594
  revision names etc. (Robert Collins)
 
7595
 
 
7596
 
 
7597
bzr 1.1
 
7598
#######
 
7599
 
 
7600
:Released: 2008-01-15
 
7601
 
 
7602
(no changes from 1.1rc1)
 
7603
 
 
7604
bzr 1.1rc1
 
7605
##########
 
7606
 
 
7607
:Released: 2008-01-05
 
7608
 
 
7609
Changes
 
7610
*******
 
7611
 
 
7612
* Dotted revision numbers have been revised. Instead of growing longer with
 
7613
  nested branches the branch number just increases. (eg instead of 1.1.1.1.1
 
7614
  we now report 1.2.1.) This helps scale long lived branches which have many
 
7615
  feature branches merged between them. (John Arbash Meinel)
 
7616
 
 
7617
* The syntax ``bzr diff branch1 branch2`` is no longer supported.
 
7618
  Use ``bzr diff branch1 --new branch2`` instead. This change has
 
7619
  been made to remove the ambiguity where ``branch2`` is in fact a
 
7620
  specific file to diff within ``branch1``.
 
7621
 
 
7622
Features
 
7623
********
 
7624
 
 
7625
* New option to use custom template-based formats in  ``bzr version-info``.
 
7626
  (Lukáš Lalinský)
 
7627
 
 
7628
* diff '--using' allows an external diff tool to be used for files.
 
7629
  (Aaron Bentley)
 
7630
 
 
7631
* New "lca" merge-type for fast everyday merging that also supports
 
7632
  criss-cross merges.  (Aaron Bentley)
 
7633
 
 
7634
Improvements
 
7635
************
 
7636
 
 
7637
* ``annotate`` now doesn't require a working tree. (Lukáš Lalinský,
 
7638
  #90049)
 
7639
 
 
7640
* ``branch`` and ``checkout`` can now use files from a working tree to
 
7641
  to speed up the process.  For checkout, this requires the new
 
7642
  --files-from flag.  (Aaron Bentley)
 
7643
 
 
7644
* ``bzr diff`` now sorts files in alphabetical order.  (Aaron Bentley)
 
7645
 
 
7646
* ``bzr diff`` now works on branches without working trees. Tree-less
 
7647
  branches can also be compared to each other and to working trees using
 
7648
  the new diff options ``--old`` and ``--new``. Diffing between branches,
 
7649
  with or without trees, now supports specific file filtering as well.
 
7650
  (Ian Clatworthy, #6700)
 
7651
 
 
7652
* ``bzr pack`` now orders revision texts in topological order, with newest
 
7653
  at the start of the file, promoting linear reads for ``bzr log`` and the
 
7654
  like. This partially fixes #154129. (Robert Collins)
 
7655
 
 
7656
* Merge directives now fetch prerequisites from the target branch if
 
7657
  needed.  (Aaron Bentley)
 
7658
 
 
7659
* pycurl now handles digest authentication.
 
7660
  (Vincent Ladeuil)
 
7661
 
 
7662
* ``reconfigure`` can now convert from repositories.  (Aaron Bentley)
 
7663
 
 
7664
* ``-l`` is now a short form for ``--limit`` in ``log``.  (Matt Nordhoff)
 
7665
 
 
7666
* ``merge`` now warns when merge directives cause cherrypicks.
 
7667
  (Aaron Bentley)
 
7668
 
 
7669
* ``split`` now supported, to enable splitting large trees into smaller
 
7670
  pieces.  (Aaron Bentley)
 
7671
 
 
7672
Bugfixes
 
7673
********
 
7674
 
 
7675
* Avoid AttributeError when unlocking a pack repository when an error occurs.
 
7676
  (Martin Pool, #180208)
 
7677
 
 
7678
* Better handle short reads when processing multiple range requests.
 
7679
  (Vincent Ladeuil, #179368)
 
7680
 
 
7681
* build_tree acceleration uses the correct path when a file has been moved.
 
7682
  (Aaron Bentley)
 
7683
 
 
7684
* ``commit`` now succeeds when a checkout and its master branch share a
 
7685
  repository.  (Aaron Bentley, #177592)
 
7686
 
 
7687
* Fixed error reporting of unsupported timezone format in
 
7688
  ``log --timezone``. (Lukáš Lalinský, #178722)
 
7689
 
 
7690
* Fixed Unicode encoding error in ``ignored`` when the output is
 
7691
  redirected to a pipe. (Lukáš Lalinský)
 
7692
 
 
7693
* Fix traceback when sending large response bodies over the smart protocol
 
7694
  on Windows. (Andrew Bennetts, #115781)
 
7695
 
 
7696
* Fix ``urlutils.relative_url`` for the case of two ``file:///`` URLs
 
7697
  pointed to different logical drives on Windows.
 
7698
  (Alexander Belchenko, #90847)
 
7699
 
 
7700
* HTTP test servers are now compatible with the http protocol version 1.1.
 
7701
  (Vincent Ladeuil, #175524)
 
7702
 
 
7703
* _KnitParentsProvider.get_parent_map now handles requests for ghosts
 
7704
  correctly, instead of erroring or attributing incorrect parents to ghosts.
 
7705
  (Aaron Bentley)
 
7706
 
 
7707
* ``merge --weave --uncommitted`` now works.  (Aaron Bentley)
 
7708
 
 
7709
* pycurl authentication handling was broken and incomplete. Fix handling of
 
7710
  user:pass embedded in the urls.
 
7711
  (Vincent Ladeuil, #177643)
 
7712
 
 
7713
* Files inside non-directories are now handled like other conflict types.
 
7714
  (Aaron Bentley, #177390)
 
7715
 
 
7716
* ``reconfigure`` is able to convert trees into lightweight checkouts.
 
7717
  (Aaron Bentley)
 
7718
 
 
7719
* Reduce lockdir timeout to 0 when running ``bzr serve``.  (Andrew Bennetts,
 
7720
  #148087)
 
7721
 
 
7722
* Test that the old ``version_info_format`` functions still work, even
 
7723
  though they are deprecated. (John Arbash Meinel, ShenMaq, #177872)
 
7724
 
 
7725
* Transform failures no longer cause ImmortalLimbo errors (Aaron Bentley,
 
7726
  #137681)
 
7727
 
 
7728
* ``uncommit`` works even when the commit messages of revisions to be
 
7729
  removed use characters not supported in the terminal encoding.
 
7730
  (Aaron Bentley)
 
7731
 
 
7732
* When dumb http servers return whole files instead of the requested ranges,
 
7733
  read the remaining bytes by chunks to avoid overflowing network buffers.
 
7734
  (Vincent Ladeuil, #175886)
 
7735
 
 
7736
Documentation
 
7737
*************
 
7738
 
 
7739
* Minor tweaks made to the bug tracker integration documentation.
 
7740
  (Ian Clatworthy)
 
7741
 
 
7742
* Reference material has now be moved out of the User Guide and added
 
7743
  to the User Reference. The User Reference has gained 4 sections as
 
7744
  a result: Authenication Settings, Configuration Settings, Conflicts
 
7745
  and Hooks. All help topics are now dumped into text format in the
 
7746
  doc/en/user-reference directory for those who like browsing that
 
7747
  information in their editor. (Ian Clatworthy)
 
7748
 
 
7749
* *Using Bazaar with Launchpad* tutorial added. (Ian Clatworthy)
 
7750
 
 
7751
Internals
 
7752
*********
 
7753
 
 
7754
* find_* methods available for BzrDirs, Branches and WorkingTrees.
 
7755
  (Aaron Bentley)
 
7756
 
 
7757
* Help topics can now be loaded from files.
 
7758
  (Ian Clatworthy, Alexander Belchenko)
 
7759
 
 
7760
* get_parent_map now always provides tuples as its output.  (Aaron Bentley)
 
7761
 
 
7762
* Parent Providers should now implement ``get_parent_map`` returning a
 
7763
  dictionary instead of ``get_parents`` returning a list.
 
7764
  ``Graph.get_parents`` is now deprecated. (John Arbash Meinel,
 
7765
  Robert Collins)
 
7766
 
 
7767
* Patience Diff now supports arbitrary python objects, as long as they
 
7768
  support ``hash()``. (John Arbash Meinel)
 
7769
 
 
7770
* Reduce selftest overhead to establish test names by memoization.
 
7771
  (Vincent Ladeuil)
 
7772
 
 
7773
API Breaks
 
7774
**********
 
7775
 
 
7776
Testing
 
7777
*******
 
7778
 
 
7779
* Modules can now customise their tests by defining a ``load_tests``
 
7780
  attribute. ``pydoc bzrlib.tests.TestUtil.TestLoader.loadTestsFromModule``
 
7781
  for the documentation on this attribute. (Robert Collins)
 
7782
 
 
7783
* New helper function ``bzrlib.tests.condition_id_re`` which helps
 
7784
  filter tests based on a regular expression search on the tests id.
 
7785
  (Robert Collins)
 
7786
 
 
7787
* New helper function ``bzrlib.tests.condition_isinstance`` which helps
 
7788
  filter tests based on class. (Robert Collins)
 
7789
 
 
7790
* New helper function ``bzrlib.tests.exclude_suite_by_condition`` which
 
7791
  generalises the ``exclude_suite_by_re`` function. (Robert Collins)
 
7792
 
 
7793
* New helper function ``bzrlib.tests.filter_suite_by_condition`` which
 
7794
  generalises the ``filter_suite_by_re`` function. (Robert Collins)
 
7795
 
 
7796
* New helper method ``bzrlib.tests.exclude_tests_by_re`` which gives a new
 
7797
  TestSuite that does not contain tests from the input that matched a
 
7798
  regular expression. (Robert Collins)
 
7799
 
 
7800
* New helper method ``bzrlib.tests.randomize_suite`` which returns a
 
7801
  randomized copy of the input suite. (Robert Collins)
 
7802
 
 
7803
* New helper method ``bzrlib.tests.split_suite_by_re`` which splits a test
 
7804
  suite into two according to a regular expression. (Robert Collins)
 
7805
 
 
7806
* Parametrize all http tests for the transport implementations, the http
 
7807
  protocol versions (1.0 and 1.1) and the authentication schemes.
 
7808
  (Vincent Ladeuil)
 
7809
 
 
7810
* The ``exclude_pattern`` and ``random_order`` parameters to the function
 
7811
  ``bzrlib.tests.filter_suite_by_re`` have been deprecated. (Robert Collins)
 
7812
 
 
7813
* The method ``bzrlib.tests.sort_suite_by_re`` has been deprecated. It is
 
7814
  replaced by the new helper methods added in this release. (Robert Collins)
 
7815
 
 
7816
 
 
7817
bzr 1.0
 
7818
#######
 
7819
 
 
7820
:Released: 2007-12-14
 
7821
 
 
7822
Documentation
 
7823
*************
 
7824
 
 
7825
* More improvements and fixes to the User Guide.  (Ian Clatworthy)
 
7826
 
 
7827
* Add information on cherrypicking/rebasing to the User Guide.
 
7828
  (Ian Clatworthy)
 
7829
 
 
7830
* Improve bug tracker integration documentation. (Ian Clatworthy)
 
7831
 
 
7832
* Minor edits to ``Bazaar in five minutes`` from David Roberts and
 
7833
  to the rebasing section of the User Guide from Aaron Bentley.
 
7834
  (Ian Clatworthy)
 
7835
 
 
7836
 
 
7837
bzr 1.0rc3
 
7838
##########
 
7839
 
 
7840
:Released: 2007-12-11
 
7841
 
 
7842
Changes
 
7843
*******
 
7844
 
 
7845
* If a traceback occurs, users are now asked to report the bug
 
7846
  through Launchpad (https://bugs.launchpad.net/bzr/), rather than
 
7847
  by mail to the mailing list.
 
7848
  (Martin Pool)
 
7849
 
 
7850
Bugfixes
 
7851
********
 
7852
 
 
7853
* Fix Makefile rules for doc generation. (Ian Clatworthy, #175207)
 
7854
 
 
7855
* Give more feedback during long http downloads by making readv deliver data
 
7856
  as it arrives for urllib, and issue more requests for pycurl. High latency
 
7857
  networks are better handled by urllib, the pycurl implementation give more
 
7858
  feedback but also incur more latency.
 
7859
  (Vincent Ladeuil, #173010)
 
7860
 
 
7861
* Implement _make_parents_provider on RemoteRepository, allowing generating
 
7862
  bundles against branches on a smart server.  (Andrew Bennetts, #147836)
 
7863
 
 
7864
Documentation
 
7865
*************
 
7866
 
 
7867
* Improved user guide.  (Ian Clatworthy)
 
7868
 
 
7869
* The single-page quick reference guide is now available as a PDF.
 
7870
  (Ian Clatworthy)
 
7871
 
 
7872
Internals
 
7873
*********
 
7874
 
 
7875
* readv urllib http implementation is now a real iterator above the
 
7876
  underlying socket and deliver data as soon as it arrives. 'get' still
 
7877
  wraps its output in a StringIO.
 
7878
  (Vincent Ladeuil)
 
7879
 
 
7880
 
 
7881
bzr 1.0rc2
 
7882
##########
 
7883
 
 
7884
:Released: 2007-12-07
 
7885
 
 
7886
Improvements
 
7887
************
 
7888
 
 
7889
* Added a --coverage option to selftest. (Andrew Bennetts)
 
7890
 
 
7891
* Annotate merge (merge-type=weave) now supports cherrypicking.
 
7892
  (Aaron Bentley)
 
7893
 
 
7894
* ``bzr commit`` now doesn't print the revision number twice. (Matt
 
7895
  Nordhoff, #172612)
 
7896
 
 
7897
* New configuration option ``bugtracker_<tracker_abbrevation>_url`` to
 
7898
  define locations of bug trackers that are not directly supported by
 
7899
  bzr or a plugin. The URL will be treated as a template and ``{id}``
 
7900
  placeholders will be replaced by specific bug IDs.  (Lukáš Lalinský)
 
7901
 
 
7902
* Support logging single merge revisions with short and line log formatters.
 
7903
  (Kent Gibson)
 
7904
 
 
7905
* User Guide enhanced with suggested readability improvements from
 
7906
  Matt Revell and corrections from John Arbash Meinel. (Ian Clatworthy)
 
7907
 
 
7908
* Quick Start Guide renamed to Quick Start Card, moved down in
 
7909
  the catalog, provided in pdf and png format and updated to refer
 
7910
  to ``send`` instead of ``bundle``. (Ian Clatworthy, #165080)
 
7911
 
 
7912
* ``switch`` can now be used on heavyweight checkouts as well as
 
7913
  lightweight ones. After switching a heavyweight checkout, the
 
7914
  local branch is a mirror/cache of the new bound branch and
 
7915
  uncommitted changes in the working tree are merged. As a safety
 
7916
  check, if there are local commits in a checkout which have not
 
7917
  been committed to the previously bound branch, then ``switch``
 
7918
  fails unless the ``--force`` option is given. This option is
 
7919
  now also required if the branch a lightweight checkout is pointing
 
7920
  to has been moved. (Ian Clatworthy)
 
7921
 
 
7922
Internals
 
7923
*********
 
7924
 
 
7925
* New -Dhttp debug option reports http connections, requests and responses.
 
7926
  (Vincent Ladeuil)
 
7927
 
 
7928
* New -Dmerge debug option, which emits merge plans for merge-type=weave.
 
7929
 
 
7930
Bugfixes
 
7931
********
 
7932
 
 
7933
* Better error message when running ``bzr cat`` on a non-existant branch.
 
7934
  (Lukáš Lalinský, #133782)
 
7935
 
 
7936
* Catch OSError 17 (file exists) in final phase of tree transform and show
 
7937
  filename to user.
 
7938
  (Alexander Belchenko, #111758)
 
7939
 
 
7940
* Catch ShortReadvErrors while using pycurl. Also make readv more robust by
 
7941
  allowing multiple GET requests to be issued if too many ranges are
 
7942
  required.
 
7943
  (Vincent Ladeuil, #172701)
 
7944
 
 
7945
* Check for missing basis texts when fetching from packs to packs.
 
7946
  (John Arbash Meinel, #165290)
 
7947
 
 
7948
* Fall back to showing e-mail in ``log --short/--line`` if the
 
7949
  committer/author has only e-mail. (Lukáš Lalinský, #157026)
 
7950
 
 
7951
API Breaks
 
7952
**********
 
7953
 
 
7954
* Deprecate not passing a ``location`` argument to commit reporters'
 
7955
  ``started`` methods. (Matt Nordhoff)
 
7956
 
 
7957
 
 
7958
bzr 1.0rc1
 
7959
##########
 
7960
 
 
7961
:Released: 2007-11-30
 
7962
 
 
7963
Notes When Upgrading
 
7964
********************
 
7965
 
 
7966
* The default repository format is now ``pack-0.92``.  This
 
7967
  default is used when creating new repositories with ``init`` and
 
7968
  ``init-repo``, and when branching over bzr+ssh or bzr+hpss.
 
7969
  (See https://bugs.launchpad.net/bugs/164626)
 
7970
 
 
7971
  This format can be read and written by Bazaar 0.92 and later, and
 
7972
  data can be transferred to and from older formats.
 
7973
 
 
7974
  To upgrade, please reconcile your repository (``bzr reconcile``), and then
 
7975
  upgrade (``bzr upgrade``).
 
7976
 
 
7977
  ``pack-0.92`` offers substantially better scaling and performance than the
 
7978
  previous knits format. Some operations are slower where the code already
 
7979
  had bad scaling characteristics under knits, the pack format makes such
 
7980
  operations more visible as part of being more scalable overall. We will
 
7981
  correct such operations over the coming releases and encourage the filing
 
7982
  of bugs on any operation which you observe to be slower in a packs
 
7983
  repository. One particular case that we do not intend to fix is pulling
 
7984
  data from a pack repository into a knit repository over a high latency
 
7985
  link;  downgrading such data requires reinsertion of the file texts, and
 
7986
  this is a classic space/time tradeoff. The current implementation is
 
7987
  conservative on memory usage because we need to support converting data
 
7988
  from any tree without problems.
 
7989
  (Robert Collins, Martin Pool, #164476)
 
7990
 
 
7991
Changes
 
7992
*******
 
7993
 
 
7994
* Disable detection of plink.exe as possible ssh vendor. Plink vendor
 
7995
  still available if user selects it explicitly with BZR_SSH environment
 
7996
  variable. (Alexander Belchenko, workaround for bug #107593)
 
7997
 
 
7998
* The pack format is now accessible as "pack-0.92", or "pack-0.92-subtree"
 
7999
  to enable the subtree functions (for example, for bzr-svn).
 
8000
  (Martin Pool)
 
8001
 
 
8002
Features
 
8003
********
 
8004
 
 
8005
* New ``authentication.conf`` file holding the password or other credentials
 
8006
  for remote servers. This can be used for ssh, sftp, smtp and other
 
8007
  supported transports.
 
8008
  (Vincent Ladeuil)
 
8009
 
 
8010
* New rich-root and rich-root-pack formats, recording the same data about
 
8011
  tree roots that's recorded for all other directories.
 
8012
  (Aaron Bentley, #164639)
 
8013
 
 
8014
* ``pack-0.92`` repositories can now be reconciled.
 
8015
  (Robert Collins, #154173)
 
8016
 
 
8017
* ``switch`` command added for changing the branch a lightweight checkout
 
8018
  is associated with and updating the tree to reflect the latest content
 
8019
  accordingly. This command was previously part of the BzrTools plug-in.
 
8020
  (Ian Clatworthy, Aaron Bentley, David Allouche)
 
8021
 
 
8022
* ``reconfigure`` command can now convert branches, trees, or checkouts to
 
8023
  lightweight checkouts.  (Aaron Bentley)
 
8024
 
 
8025
Performance
 
8026
***********
 
8027
 
 
8028
* Commit updates the state of the working tree via a delta rather than
 
8029
  supplying entirely new basis trees. For commit of a single specified file
 
8030
  this reduces the wall clock time for commit by roughly a 30%.
 
8031
  (Robert Collins, Martin Pool)
 
8032
 
 
8033
* Commit with many automatically found deleted paths no longer performs
 
8034
  linear scanning for the children of those paths during inventory
 
8035
  iteration. This should fix commit performance blowing out when many such
 
8036
  paths occur during commit. (Robert Collins, #156491)
 
8037
 
 
8038
* Fetch with pack repositories will no longer read the entire history graph.
 
8039
  (Robert Collins, #88319)
 
8040
 
 
8041
* Revert takes out an appropriate lock when reverting to a basis tree, and
 
8042
  does not read the basis inventory twice. (Robert Collins)
 
8043
 
 
8044
* Diff does not require an inventory to be generated on dirstate trees.
 
8045
  (Aaron Bentley, #149254)
 
8046
 
 
8047
* New annotate merge (--merge-type=weave) implementation is fast on
 
8048
  versionedfiles withough cached annotations, e.g. pack-0.92.
 
8049
  (Aaron Bentley)
 
8050
 
 
8051
Improvements
 
8052
************
 
8053
 
 
8054
* ``bzr merge`` now warns when it encounters a criss-cross merge.
 
8055
  (Aaron Bentley)
 
8056
 
 
8057
* ``bzr send`` now doesn't require the target e-mail address to be
 
8058
  specified on the command line if an interactive e-mail client is used.
 
8059
  (Lukáš Lalinský)
 
8060
 
 
8061
* ``bzr tags`` now prints the revision number for each tag, instead of
 
8062
  the revision id, unless --show-ids is passed. In addition, tags can be
 
8063
  sorted chronologically instead of lexicographically with --sort=time.
 
8064
  (Adeodato Simó, #120231)
 
8065
 
 
8066
* Windows standalone version of bzr is able to load system-wide plugins from
 
8067
  "plugins" subdirectory in installation directory. In addition standalone
 
8068
  installer write to the registry (HKLM\SOFTWARE\Bazaar) useful info
 
8069
  about paths and bzr version. (Alexander Belchenko, #129298)
 
8070
 
 
8071
Documentation
 
8072
*************
 
8073
 
 
8074
Bug Fixes
 
8075
*********
 
8076
 
 
8077
* A progress bar has been added for knitpack -> knitpack fetching.
 
8078
  (Robert Collins, #157789, #159147)
 
8079
 
 
8080
* Branching from a branch via smart server now preserves the repository
 
8081
  format. (Andrew Bennetts,  #164626)
 
8082
 
 
8083
* ``commit`` is now able to invoke an external editor in a non-ascii
 
8084
  directory. (Daniel Watkins, #84043)
 
8085
 
 
8086
* Catch connection errors for ftp.
 
8087
  (Vincent Ladeuil, #164567)
 
8088
 
 
8089
* ``check`` no longer reports spurious unreferenced text versions.
 
8090
  (Robert Collins, John A Meinel, #162931, #165071)
 
8091
 
 
8092
* Conflicts are now resolved recursively by ``revert``.
 
8093
  (Aaron Bentley, #102739)
 
8094
 
 
8095
* Detect invalid transport reuse attempts by catching invalid URLs.
 
8096
  (Vincent Ladeuil, #161819)
 
8097
 
 
8098
* Deleting a file without removing it shows a correct diff, not a traceback.
 
8099
  (Aaron Bentley)
 
8100
 
 
8101
* Do no use timeout in HttpServer anymore.
 
8102
  (Vincent Ladeuil, #158972).
 
8103
 
 
8104
* Don't catch the exceptions related to the http pipeline status before
 
8105
  retrying an http request or some programming errors may be masked.
 
8106
  (Vincent Ladeuil, #160012)
 
8107
 
 
8108
* Fix ``bzr rm`` to not delete modified and ignored files.
 
8109
  (Lukáš Lalinský, #172598)
 
8110
 
 
8111
* Fix exception when revisionspec contains merge revisons but log
 
8112
  formatter doesn't support merge revisions. (Kent Gibson, #148908)
 
8113
 
 
8114
* Fix exception when ScopeReplacer is assigned to before any members have
 
8115
  been retrieved.  (Aaron Bentley)
 
8116
 
 
8117
* Fix multiple connections during checkout --lightweight.
 
8118
  (Vincent Ladeuil, #159150)
 
8119
 
 
8120
* Fix possible error in insert_data_stream when copying between
 
8121
  pack repositories over bzr+ssh or bzr+http.
 
8122
  KnitVersionedFile.get_data_stream now makes sure that requested
 
8123
  compression parents are sent before any delta hunks that depend
 
8124
  on them.
 
8125
  (Martin Pool, #164637)
 
8126
 
 
8127
* Fix typo in limiting offsets coalescing for http, leading to
 
8128
  whole files being downloaded instead of parts.
 
8129
  (Vincent Ladeuil, #165061)
 
8130
 
 
8131
* FTP server errors don't error in the error handling code.
 
8132
  (Robert Collins, #161240)
 
8133
 
 
8134
* Give a clearer message when a pull fails because the source needs
 
8135
  to be reconciled.
 
8136
  (Martin Pool, #164443)
 
8137
 
 
8138
* It is clearer when a plugin cannot be loaded because of its name, and a
 
8139
  suggestion for an acceptable name is given. (Daniel Watkins, #103023)
 
8140
 
 
8141
* Leave port as None in transport objects if user doesn't
 
8142
  specify a port in urls.
 
8143
  (vincent Ladeuil, #150860)
 
8144
 
 
8145
* Make sure Repository.fetch(self) is properly a no-op for all
 
8146
  Repository implementations. (John Arbash Meinel, #158333)
 
8147
 
 
8148
* Mark .bzr directories as "hidden" on Windows.
 
8149
  (Alexander Belchenko, #71147)
 
8150
 
 
8151
* ``merge --uncommitted`` can now operate on a single file.
 
8152
  (Aaron Bentley, Lukáš Lalinský, #136890)
 
8153
 
 
8154
* Obsolete packs are now cleaned up by pack and autopack operations.
 
8155
  (Robert Collins, #153789)
 
8156
 
 
8157
* Operations pulling data from a smart server where the underlying
 
8158
  repositories are not both annotated/both unannotated will now work.
 
8159
  (Robert Collins, #165304).
 
8160
 
 
8161
* Reconcile now shows progress bars. (Robert Collins, #159351)
 
8162
 
 
8163
* ``RemoteBranch`` was not initializing ``self._revision_id_to_revno_map``
 
8164
  properly. (John Arbash Meinel, #162486)
 
8165
 
 
8166
* Removing an already-removed file reports the file does not exist. (Daniel
 
8167
  Watkins, #152811)
 
8168
 
 
8169
* Rename on Windows is able to change filename case.
 
8170
  (Alexander Belchenko, #77740)
 
8171
 
 
8172
* Return error instead of a traceback for ``bzr log -r0``.
 
8173
  (Kent Gibson, #133751)
 
8174
 
 
8175
* Return error instead of a traceback when bzr is unable to create
 
8176
  symlink on some platforms (e.g. on Windows).
 
8177
  (Alexander Belchenko, workaround for #81689)
 
8178
 
 
8179
* Revert doesn't crash when restoring a single file from a deleted
 
8180
  directory. (Aaron Bentley)
 
8181
 
 
8182
* Stderr output via logging mechanism now goes through encoded wrapper
 
8183
  and no more uses utf-8, but terminal encoding instead. So all unicode
 
8184
  strings now should be readable in non-utf-8 terminal.
 
8185
  (Alexander Belchenko, #54173)
 
8186
 
 
8187
* The error message when ``move --after`` should be used makes how to do so
 
8188
  clearer. (Daniel Watkins, #85237)
 
8189
 
 
8190
* Unicode-safe output from ``bzr info``. The output will be encoded
 
8191
  using the terminal encoding and unrepresentable characters will be
 
8192
  replaced by '?'. (Lukáš Lalinský, #151844)
 
8193
 
 
8194
* Working trees are no longer created when pushing into a local no-trees
 
8195
  repo. (Daniel Watkins, #50582)
 
8196
 
 
8197
* Upgrade util/configobj to version 4.4.0.
 
8198
  (Vincent Ladeuil, #151208).
 
8199
 
 
8200
* Wrap medusa ftp test server as an FTPServer feature.
 
8201
  (Vincent Ladeuil, #157752)
 
8202
 
 
8203
API Breaks
 
8204
**********
 
8205
 
 
8206
* ``osutils.backup_file`` is deprecated. Actually it's not used in bzrlib
 
8207
  during very long time. (Alexander Belchenko)
 
8208
 
 
8209
* The return value of
 
8210
  ``VersionedFile.iter_lines_added_or_present_in_versions`` has been
 
8211
  changed. Previously it was an iterator of lines, now it is an iterator of
 
8212
  (line, version_id) tuples. This change has been made to aid reconcile and
 
8213
  fetch operations. (Robert Collins)
 
8214
 
 
8215
* ``bzrlib.repository.get_versioned_file_checker`` is now private.
 
8216
  (Robert Collins)
 
8217
 
 
8218
* The Repository format registry default has been removed; it was previously
 
8219
  obsoleted by the bzrdir format default, which implies a default repository
 
8220
  format.
 
8221
  (Martin Pool)
 
8222
 
 
8223
Internals
 
8224
*********
 
8225
 
 
8226
* Added ``ContainerSerialiser`` and ``ContainerPushParser`` to
 
8227
  ``bzrlib.pack``.  These classes provide more convenient APIs for generating
 
8228
  and parsing containers from streams rather than from files.  (Andrew
 
8229
  Bennetts)
 
8230
 
 
8231
* New module ``lru_cache`` providing a cache for use by tasks that need
 
8232
  semi-random access to large amounts of data. (John A Meinel)
 
8233
 
 
8234
* InventoryEntry.diff is now deprecated.  Please use diff.DiffTree instead.
 
8235
 
 
8236
 
 
8237
bzr 0.92
 
8238
########
 
8239
 
 
8240
:Released: 2007-11-05
 
8241
 
 
8242
Changes
 
8243
*******
 
8244
 
 
8245
  * New uninstaller on Win32.  (Alexander Belchenko)
 
8246
 
 
8247
 
 
8248
bzr 0.92rc1
 
8249
###########
 
8250
 
 
8251
:Released: 2007-10-29
 
8252
 
 
8253
Changes
 
8254
*******
 
8255
 
 
8256
* ``bzr`` now returns exit code 4 if an internal error occurred, and
 
8257
  3 if a normal error occurred.  (Martin Pool)
 
8258
 
 
8259
* ``pull``, ``merge`` and ``push`` will no longer silently correct some
 
8260
  repository index errors that occured as a result of the Weave disk format.
 
8261
  Instead the ``reconcile`` command needs to be run to correct those
 
8262
  problems if they exist (and it has been able to fix most such problems
 
8263
  since bzr 0.8). Some new problems have been identified during this release
 
8264
  and you should run ``bzr check`` once on every repository to see if you
 
8265
  need to reconcile. If you cannot ``pull`` or ``merge`` from a remote
 
8266
  repository due to mismatched parent errors - a symptom of index errors -
 
8267
  you should simply take a full copy of that remote repository to a clean
 
8268
  directory outside any local repositories, then run reconcile on it, and
 
8269
  finally pull from it locally. (And naturally email the repositories owner
 
8270
  to ask them to upgrade and run reconcile).
 
8271
  (Robert Collins)
 
8272
 
 
8273
Features
 
8274
********
 
8275
 
 
8276
* New ``knitpack-experimental`` repository format. This is interoperable with
 
8277
  the ``dirstate-tags`` format but uses a smarter storage design that greatly
 
8278
  speeds up many operations, both local and remote. This new format can be
 
8279
  used as an option to the ``init``, ``init-repository`` and ``upgrade``
 
8280
  commands. (Robert Collins)
 
8281
 
 
8282
* For users of bzr-svn (and those testing the prototype subtree support) that
 
8283
  wish to try packs, a new ``knitpack-subtree-experimental`` format has also
 
8284
  been added. This is interoperable with the ``dirstate-subtrees`` format.
 
8285
  (Robert Collins)
 
8286
 
 
8287
* New ``reconfigure`` command. (Aaron Bentley)
 
8288
 
 
8289
* New ``revert --forget-merges`` command, which removes the record of a pending
 
8290
  merge without affecting the working tree contents.  (Martin Pool)
 
8291
 
 
8292
* New ``bzr_remote_path`` configuration variable allows finer control of
 
8293
  remote bzr locations than BZR_REMOTE_PATH environment variable.
 
8294
  (Aaron Bentley)
 
8295
 
 
8296
* New ``launchpad-login`` command to tell Bazaar your Launchpad
 
8297
  user ID.  This can then be used by other functions of the
 
8298
  Launchpad plugin. (James Henstridge)
 
8299
 
 
8300
Performance
 
8301
***********
 
8302
 
 
8303
* Commit in quiet mode is now slightly faster as the information to
 
8304
  output is no longer calculated. (Ian Clatworthy)
 
8305
 
 
8306
* Commit no longer checks for new text keys during insertion when the
 
8307
  revision id was deterministically unique. (Robert Collins)
 
8308
 
 
8309
* Committing a change which is not a merge and does not change the number of
 
8310
  files in the tree is faster by utilising the data about whether files are
 
8311
  changed to determine if the tree is unchanged rather than recalculating
 
8312
  it at the end of the commit process. (Robert Collins)
 
8313
 
 
8314
* Inventory serialisation no longer double-sha's the content.
 
8315
  (Robert Collins)
 
8316
 
 
8317
* Knit text reconstruction now avoids making copies of the lines list for
 
8318
  interim texts when building a single text. The new ``apply_delta`` method
 
8319
  on ``KnitContent`` aids this by allowing modification of the revision id
 
8320
  such objects represent. (Robert Collins)
 
8321
 
 
8322
* Pack indices are now partially parsed for specific key lookup using a
 
8323
  bisection approach. (Robert Collins)
 
8324
 
 
8325
* Partial commits are now approximately 40% faster by walking over the
 
8326
  unselected current tree more efficiently. (Robert Collins)
 
8327
 
 
8328
* XML inventory serialisation takes 20% less time while being stricter about
 
8329
  the contents. (Robert Collins)
 
8330
 
 
8331
* Graph ``heads()`` queries have been fixed to no longer access all history
 
8332
  unnecessarily. (Robert Collins)
 
8333
 
 
8334
Improvements
 
8335
************
 
8336
 
 
8337
* ``bzr+https://`` smart server across https now supported.
 
8338
  (John Ferlito, Martin Pool, #128456)
 
8339
 
 
8340
* Mutt is now a supported mail client; set ``mail_client=mutt`` in your
 
8341
  bazaar.conf and ``send`` will use mutt. (Keir Mierle)
 
8342
 
 
8343
* New option ``-c``/``--change`` for ``merge`` command for cherrypicking
 
8344
  changes from one revision. (Alexander Belchenko, #141368)
 
8345
 
 
8346
* Show encodings, locale and list of plugins in the traceback message.
 
8347
  (Martin Pool, #63894)
 
8348
 
 
8349
* Experimental directory formats can now be marked with
 
8350
  ``experimental = True`` during registration. (Ian Clatworthy)
 
8351
 
 
8352
Documentation
 
8353
*************
 
8354
 
 
8355
* New *Bazaar in Five Minutes* guide.  (Matthew Revell)
 
8356
 
 
8357
* The hooks reference documentation is now converted to html as expected.
 
8358
  (Ian Clatworthy)
 
8359
 
 
8360
Bug Fixes
 
8361
*********
 
8362
 
 
8363
* Connection error reporting for the smart server has been fixed to
 
8364
  display a user friendly message instead of a traceback.
 
8365
  (Ian Clatworthy, #115601)
 
8366
 
 
8367
* Make sure to use ``O_BINARY`` when opening files to check their
 
8368
  sha1sum. (Alexander Belchenko, John Arbash Meinel, #153493)
 
8369
 
 
8370
* Fix a problem with Win32 handling of the executable bit.
 
8371
  (John Arbash Meinel, #149113)
 
8372
 
 
8373
* ``bzr+ssh://`` and ``sftp://`` URLs that do not specify ports explicitly
 
8374
  no longer assume that means port 22.  This allows people using OpenSSH to
 
8375
  override the default port in their ``~/.ssh/config`` if they wish.  This
 
8376
  fixes a bug introduced in bzr 0.91.  (Andrew Bennetts, #146715)
 
8377
 
 
8378
* Commands reporting exceptions can now be profiled and still have their
 
8379
  data correctly dumped to a file. For example, a ``bzr commit`` with
 
8380
  no changes still reports the operation as pointless but doing so no
 
8381
  longer throws away the profiling data if this command is run with
 
8382
  ``--lsprof-file callgrind.out.ci`` say. (Ian Clatworthy)
 
8383
 
 
8384
* Fallback to ftp when paramiko is not installed and sftp can't be used for
 
8385
  ``tests/commands`` so that the test suite is still usable without
 
8386
  paramiko.
 
8387
  (Vincent Ladeuil, #59150)
 
8388
 
 
8389
* Fix commit ordering in corner case. (Aaron Bentley, #94975)
 
8390
 
 
8391
* Fix long standing bug in partial commit when there are renames
 
8392
  left in tree. (Robert Collins, #140419)
 
8393
 
 
8394
* Fix selftest semi-random noise during http related tests.
 
8395
  (Vincent Ladeuil, #140614)
 
8396
 
 
8397
* Fix typo in ftp.py making the reconnection fail on temporary errors.
 
8398
  (Vincent Ladeuil, #154259)
 
8399
 
 
8400
* Fix failing test by comparing real paths to cover the case where the TMPDIR
 
8401
  contains a symbolic link.
 
8402
  (Vincent Ladeuil, #141382).
 
8403
 
 
8404
* Fix log against smart server branches that don't support tags.
 
8405
  (James Westby, #140615)
 
8406
 
 
8407
* Fix pycurl http implementation by defining error codes from
 
8408
  pycurl instead of relying on an old curl definition.
 
8409
  (Vincent Ladeuil, #147530)
 
8410
 
 
8411
* Fix 'unprintable error' message when displaying BzrCheckError and
 
8412
  some other exceptions on Python 2.5.
 
8413
  (Martin Pool, #144633)
 
8414
 
 
8415
* Fix ``Inventory.copy()`` and add test for it. (Jelmer Vernooij)
 
8416
 
 
8417
* Handles default value for ListOption in cmd_commit.
 
8418
  (Vincent Ladeuil, #140432)
 
8419
 
 
8420
* HttpServer and FtpServer need to be closed properly or a listening socket
 
8421
  will remain opened.
 
8422
  (Vincent Ladeuil, #140055)
 
8423
 
 
8424
* Monitor the .bzr directory created in the top level test
 
8425
  directory to detect leaking tests.
 
8426
  (Vincent Ladeuil, #147986)
 
8427
 
 
8428
* The basename, not the full path, is now used when checking whether
 
8429
  the profiling dump file begins with ``callgrind.out`` or not. This
 
8430
  fixes a bug reported by Aaron Bentley on IRC. (Ian Clatworthy)
 
8431
 
 
8432
* Trivial fix for invoking command ``reconfigure`` without arguments.
 
8433
  (Rob Weir, #141629)
 
8434
 
 
8435
* ``WorkingTree.rename_one`` will now raise an error if normalisation of the
 
8436
  new path causes bzr to be unable to access the file. (Robert Collins)
 
8437
 
 
8438
* Correctly detect a NoSuchFile when using a filezilla server. (Gary van der
 
8439
  Merwe)
 
8440
 
 
8441
API Breaks
 
8442
**********
 
8443
 
 
8444
* ``bzrlib.index.GraphIndex`` now requires a size parameter to the
 
8445
  constructor, for enabling bisection searches. (Robert Collins)
 
8446
 
 
8447
* ``CommitBuilder.record_entry_contents`` now requires the root entry of a
 
8448
  tree be supplied to it, previously failing to do so would trigger a
 
8449
  deprecation warning. (Robert Collins)
 
8450
 
 
8451
* ``KnitVersionedFile.add*`` will no longer cache added records even when
 
8452
  enable_cache() has been called - the caching feature is now exclusively for
 
8453
  reading existing data. (Robert Collins)
 
8454
 
 
8455
* ``ReadOnlyLockError`` is deprecated; ``LockFailed`` is usually more
 
8456
  appropriate.  (Martin Pool)
 
8457
 
 
8458
* Removed ``bzrlib.transport.TransportLogger`` - please see the new
 
8459
  ``trace+`` transport instead. (Robert Collins)
 
8460
 
 
8461
* Removed previously deprecated varargs interface to ``TestCase.run_bzr`` and
 
8462
  deprecated methods ``TestCase.capture`` and ``TestCase.run_bzr_captured``.
 
8463
  (Martin Pool)
 
8464
 
 
8465
* Removed previous deprecated ``basis_knit`` parameter to the
 
8466
  ``KnitVersionedFile`` constructor. (Robert Collins)
 
8467
 
 
8468
* Special purpose method ``TestCase.run_bzr_decode`` is moved to the test_non_ascii
 
8469
  class that needs it.
 
8470
  (Martin Pool)
 
8471
 
 
8472
* The class ``bzrlib.repofmt.knitrepo.KnitRepository3`` has been folded into
 
8473
  ``KnitRepository`` by parameters to the constructor. (Robert Collins)
 
8474
 
 
8475
* The ``VersionedFile`` interface now allows content checks to be bypassed
 
8476
  by supplying check_content=False.  This saves nearly 30% of the minimum
 
8477
  cost to store a version of a file. (Robert Collins)
 
8478
 
 
8479
* Tree's with bad state such as files with no length or sha will no longer
 
8480
  be silently accepted by the repository XML serialiser. To serialise
 
8481
  inventories without such data, pass working=True to write_inventory.
 
8482
  (Robert Collins)
 
8483
 
 
8484
* ``VersionedFile.fix_parents`` has been removed as a harmful API.
 
8485
  ``VersionedFile.join`` will no longer accept different parents on either
 
8486
  side of a join - it will either ignore them, or error, depending on the
 
8487
  implementation. See notes when upgrading for more information.
 
8488
  (Robert Collins)
 
8489
 
 
8490
Internals
 
8491
*********
 
8492
 
 
8493
* ``bzrlib.transport.Transport.put_file`` now returns the number of bytes
 
8494
  put by the method call, to allow avoiding stat-after-write or
 
8495
  housekeeping in callers. (Robert Collins)
 
8496
 
 
8497
* ``bzrlib.xml_serializer.Serializer`` is now responsible for checking that
 
8498
  mandatory attributes are present on serialisation and deserialisation.
 
8499
  This fixes some holes in API usage and allows better separation between
 
8500
  physical storage and object serialisation. (Robert Collins)
 
8501
 
 
8502
* New class ``bzrlib.errors.InternalBzrError`` which is just a convenient
 
8503
  shorthand for deriving from BzrError and setting internal_error = True.
 
8504
  (Robert Collins)
 
8505
 
 
8506
* New method ``bzrlib.mutabletree.update_to_one_parent_via_delta`` for
 
8507
  moving the state of a parent tree to a new version via a delta rather than
 
8508
  a complete replacement tree. (Robert Collins)
 
8509
 
 
8510
* New method ``bzrlib.osutils.minimum_path_selection`` useful for removing
 
8511
  duplication from user input, when a user mentions both a path and an item
 
8512
  contained within that path. (Robert Collins)
 
8513
 
 
8514
* New method ``bzrlib.repository.Repository.is_write_locked`` useful for
 
8515
  determining if a repository is write locked. (Robert Collins)
 
8516
 
 
8517
* New method on ``bzrlib.tree.Tree`` ``path_content_summary`` provides a
 
8518
  tuple containing the key information about a path for commit processing
 
8519
  to complete. (Robert Collins)
 
8520
 
 
8521
* New method on xml serialisers, write_inventory_to_lines, which matches the
 
8522
  API used by knits for adding content. (Robert Collins)
 
8523
 
 
8524
* New module ``bzrlib.bisect_multi`` with generic multiple-bisection-at-once
 
8525
  logic, currently only available for byte-based lookup
 
8526
  (``bisect_multi_bytes``). (Robert Collins)
 
8527
 
 
8528
* New helper ``bzrlib.tuned_gzip.bytes_to_gzip`` which takes a byte string
 
8529
  and returns a gzipped version of the same. This is used to avoid a bunch
 
8530
  of api friction during adding of knit hunks. (Robert Collins)
 
8531
 
 
8532
* New parameter on ``bzrlib.transport.Transport.readv``
 
8533
  ``adjust_for_latency`` which changes readv from returning strictly the
 
8534
  requested data to inserted return larger ranges and in forward read order
 
8535
  to reduce the effect of network latency. (Robert Collins)
 
8536
 
 
8537
* New parameter yield_parents on ``Inventory.iter_entries_by_dir`` which
 
8538
  causes the parents of a selected id to be returned recursively, so all the
 
8539
  paths from the root down to each element of selected_file_ids are
 
8540
  returned. (Robert Collins)
 
8541
 
 
8542
* Knit joining has been enhanced to support plain to annotated conversion
 
8543
  and annotated to plain conversion. (Ian Clatworthy)
 
8544
 
 
8545
* The CommitBuilder method ``record_entry_contents`` now returns summary
 
8546
  information about the effect of the commit on the repository. This tuple
 
8547
  contains an inventory delta item if the entry changed from the basis, and a
 
8548
  boolean indicating whether a new file graph node was recorded.
 
8549
  (Robert Collins)
 
8550
 
 
8551
* The python path used in the Makefile can now be overridden.
 
8552
  (Andrew Bennetts, Ian Clatworthy)
 
8553
 
 
8554
Testing
 
8555
*******
 
8556
 
 
8557
* New transport implementation ``trace+`` which is useful for testing,
 
8558
  logging activity taken to its _activity attribute. (Robert Collins)
 
8559
 
 
8560
* When running bzr commands within the test suite, internal exceptions are
 
8561
  not caught and reported in the usual way, but rather allowed to propagate
 
8562
  up and be visible to the test suite.  A new API ``run_bzr_catch_user_errors``
 
8563
  makes this behavior available to other users.
 
8564
  (Martin Pool)
 
8565
 
 
8566
* New method ``TestCase.call_catch_warnings`` for testing methods that
 
8567
  raises a Python warning.  (Martin Pool)
 
8568
 
 
8569
 
 
8570
bzr 0.91
 
8571
########
 
8572
 
 
8573
:Released: 2007-09-26
 
8574
 
 
8575
Bug Fixes
 
8576
*********
 
8577
 
 
8578
* Print a warning instead of aborting the ``python setup.py install``
 
8579
  process if building of a C extension is not possible.
 
8580
  (Lukáš Lalinský, Alexander Belchenko)
 
8581
 
 
8582
* Fix commit ordering in corner case (Aaron Bentley, #94975)
 
8583
 
 
8584
* Fix ''bzr info bzr://host/'' and other operations on ''bzr://' URLs with
 
8585
  an implicit port.  We were incorrectly raising PathNotChild due to
 
8586
  inconsistent treatment of the ''_port'' attribute on the Transport object.
 
8587
  (Andrew Bennetts, #133965)
 
8588
 
 
8589
* Make RemoteRepository.sprout cope gracefully with servers that don't
 
8590
  support the ``Repository.tarball`` request.
 
8591
  (Andrew Bennetts)
 
8592
 
 
8593
 
 
8594
bzr 0.91rc2
 
8595
###########
 
8596
 
 
8597
:Released: 2007-09-11
 
8598
 
 
8599
* Replaced incorrect tarball for previous release; a debug statement was left
 
8600
  in bzrlib/remote.py.
 
8601
 
 
8602
 
 
8603
bzr 0.91rc1
 
8604
###########
 
8605
 
 
8606
:Released: 2007-09-11
 
8607
 
 
8608
Changes
 
8609
*******
 
8610
 
 
8611
* The default branch and repository format has changed to
 
8612
  ``dirstate-tags``, so tag commands are active by default.
 
8613
  This format is compatible with Bazaar 0.15 and later.
 
8614
  This incidentally fixes bug #126141.
 
8615
  (Martin Pool)
 
8616
 
 
8617
* ``--quiet`` or ``-q`` is no longer a global option. If present, it
 
8618
  must now appear after the command name. Scripts doing things like
 
8619
  ``bzr -q missing`` need to be rewritten as ``bzr missing -q``.
 
8620
  (Ian Clatworthy)
 
8621
 
 
8622
Features
 
8623
********
 
8624
 
 
8625
* New option ``--author`` in ``bzr commit`` to specify the author of the
 
8626
  change, if it's different from the committer. ``bzr log`` and
 
8627
  ``bzr annotate`` display the author instead of the committer.
 
8628
  (Lukáš Lalinský)
 
8629
 
 
8630
* In addition to global options and command specific options, a set of
 
8631
  standard options are now supported. Standard options are legal for
 
8632
  all commands. The initial set of standard options are:
 
8633
 
 
8634
  * ``--help`` or ``-h`` - display help message
 
8635
  * ``--verbose`` or ``-v`` - display additional information
 
8636
  * ``--quiet``  or ``-q`` - only output warnings and errors.
 
8637
 
 
8638
  Unlike global options, standard options can be used in aliases and
 
8639
  may have command-specific help. (Ian Clatworthy)
 
8640
 
 
8641
* Verbosity level processing has now been unified. If ``--verbose``
 
8642
  or ``-v`` is specified on the command line multiple times, the
 
8643
  verbosity level is made positive the first time then increased.
 
8644
  If ``--quiet`` or ``-q`` is specified on the command line
 
8645
  multiple times, the verbosity level is made negative the first
 
8646
  time then decreased. To get the default verbosity level of zero,
 
8647
  either specify none of the above , ``--no-verbose`` or ``--no-quiet``.
 
8648
  Note that most commands currently ignore the magnitude of the
 
8649
  verbosity level but do respect *quiet vs normal vs verbose* when
 
8650
  generating output. (Ian Clatworthy)
 
8651
 
 
8652
* ``Branch.hooks`` now supports ``pre_commit`` hook. The hook's signature
 
8653
  is documented in BranchHooks constructor. (Nam T. Nguyen, #102747)
 
8654
 
 
8655
* New ``Repository.stream_knit_data_for_revisions`` request added to the
 
8656
  network protocol for greatly reduced roundtrips when retrieving a set of
 
8657
  revisions. (Andrew Bennetts)
 
8658
 
 
8659
Bug Fixes
 
8660
*********
 
8661
 
 
8662
* ``bzr plugins`` now lists the version number for each plugin in square
 
8663
  brackets after the path. (Robert Collins, #125421)
 
8664
 
 
8665
* Pushing, pulling and branching branches with subtree references was not
 
8666
  copying the subtree weave, preventing the file graph from being accessed
 
8667
  and causing errors in commits in clones. (Robert Collins)
 
8668
 
 
8669
* Suppress warning "integer argument expected, got float" from Paramiko,
 
8670
  which sometimes caused false test failures.  (Martin Pool)
 
8671
 
 
8672
* Fix bug in bundle 4 that could cause attempts to write data to wrong
 
8673
  versionedfile.  (Aaron Bentley)
 
8674
 
 
8675
* Diffs generated using "diff -p" no longer break the patch parser.
 
8676
  (Aaron Bentley)
 
8677
 
 
8678
* get_transport treats an empty possible_transports list the same as a non-
 
8679
  empty one.  (Aaron Bentley)
 
8680
 
 
8681
* patch verification for merge directives is reactivated, and works with
 
8682
  CRLF and CR files.  (Aaron Bentley)
 
8683
 
 
8684
* Accept ..\ as a path in revision specifiers. This fixes for example
 
8685
  "-r branch:..\other-branch" on Windows.  (Lukáš Lalinský)
 
8686
 
 
8687
* ``BZR_PLUGIN_PATH`` may now contain trailing slashes.
 
8688
  (Blake Winton, #129299)
 
8689
 
 
8690
* man page no longer lists hidden options (#131667, Aaron Bentley)
 
8691
 
 
8692
* ``uncommit --help`` now explains the -r option adequately.  (Daniel
 
8693
  Watkins, #106726)
 
8694
 
 
8695
* Error messages are now better formatted with parameters (such as
 
8696
  filenames) quoted when necessary. This avoids confusion when directory
 
8697
  names ending in a '.' at the end of messages were confused with a
 
8698
  full stop that may or not have been there. (Daniel Watkins, #129791)
 
8699
 
 
8700
* Fix ``status FILE -r X..Y``. (Lukáš Lalinský)
 
8701
 
 
8702
* If a particular command is an alias, ``help`` will show the alias
 
8703
  instead of claiming there is no help for said alias. (Daniel Watkins,
 
8704
  #133548)
 
8705
 
 
8706
* TreeTransform-based operations, like pull, merge, revert, and branch,
 
8707
  now roll back if they encounter an error.  (Aaron Bentley, #67699)
 
8708
 
 
8709
* ``bzr commit`` now exits cleanly if a character unsupported by the
 
8710
  current encoding is used in the commit message.  (Daniel Watkins,
 
8711
  #116143)
 
8712
 
 
8713
* bzr send uses default values for ranges when only half of an elipsis
 
8714
  is specified ("-r..5" or "-r5..").  (#61685, Aaron Bentley)
 
8715
 
 
8716
* Avoid trouble when Windows ssh calls itself 'plink' but no plink
 
8717
  binary is present.  (Martin Albisetti, #107155)
 
8718
 
 
8719
* ``bzr remove`` should remove clean subtrees.  Now it will remove (without
 
8720
  needing ``--force``) subtrees that contain no files with text changes or
 
8721
  modified files.  With ``--force`` it removes the subtree regardless of
 
8722
  text changes or unknown files. Directories with renames in or out (but
 
8723
  not changed otherwise) will now be removed without needing ``--force``.
 
8724
  Unknown ignored files will be deleted without needing ``--force``.
 
8725
  (Marius Kruger, #111665)
 
8726
 
 
8727
* When two plugins conflict, the source of both the losing and now the
 
8728
  winning definition is shown.  (Konstantin Mikhaylov, #5454)
 
8729
 
 
8730
* When committing to a branch, the location being committed to is
 
8731
  displayed.  (Daniel Watkins, #52479)
 
8732
 
 
8733
* ``bzr --version`` takes care about encoding of stdout, especially
 
8734
  when output is redirected. (Alexander Belchenko, #131100)
 
8735
 
 
8736
* Prompt for an ftp password if none is provided.
 
8737
  (Vincent Ladeuil, #137044)
 
8738
 
 
8739
* Reuse bound branch associated transport to avoid multiple
 
8740
  connections.
 
8741
  (Vincent Ladeuil, #128076, #131396)
 
8742
 
 
8743
* Overwrite conflicting tags by ``push`` and ``pull`` if the
 
8744
  ``--overwrite`` option is specified.  (Lukáš Lalinský, #93947)
 
8745
 
 
8746
* In checkouts, tags are copied into the master branch when created,
 
8747
  changed or deleted, and are copied into the checkout when it is
 
8748
  updated.  (Martin Pool, #93856, #93860)
 
8749
 
 
8750
* Print a warning instead of aborting the ``python setup.py install``
 
8751
  process if building of a C extension is not possible.
 
8752
  (Lukáš Lalinský, Alexander Belchenko)
 
8753
 
 
8754
Improvements
 
8755
************
 
8756
 
 
8757
* Add the option "--show-diff" to the commit command in order to display
 
8758
  the diff during the commit log creation. (Goffredo Baroncelli)
 
8759
 
 
8760
* ``pull`` and ``merge`` are much faster at installing bundle format 4.
 
8761
  (Aaron Bentley)
 
8762
 
 
8763
* ``pull -v`` no longer includes deltas, making it much faster.
 
8764
  (Aaron Bentley)
 
8765
 
 
8766
* ``send`` now sends the directive as an attachment by default.
 
8767
  (Aaron Bentley, Lukáš Lalinský, Alexander Belchenko)
 
8768
 
 
8769
* Documentation updates (Martin Albisetti)
 
8770
 
 
8771
* Help on debug flags is now included in ``help global-options``.
 
8772
  (Daniel Watkins, #124853)
 
8773
 
 
8774
* Parameters passed on the command line are checked to ensure they are
 
8775
  supported by the encoding in use. (Daniel Watkins)
 
8776
 
 
8777
* The compression used within the bzr repository has changed from zlib
 
8778
  level 9 to the zlib default level. This improves commit performance with
 
8779
  only a small increase in space used (and in some cases a reduction in
 
8780
  space). (Robert Collins)
 
8781
 
 
8782
* Initial commit no longer SHAs files twice and now reuses the path
 
8783
  rather than looking it up again, making it faster.
 
8784
  (Ian Clatworthy)
 
8785
 
 
8786
* New option ``-c``/``--change`` for ``diff`` and ``status`` to show
 
8787
  changes in one revision.  (Lukáš Lalinský)
 
8788
 
 
8789
* If versioned files match a given ignore pattern, a warning is now
 
8790
  given. (Daniel Watkins, #48623)
 
8791
 
 
8792
* ``bzr status`` now has -S as a short name for --short and -V as a
 
8793
  short name for --versioned. These have been added to assist users
 
8794
  migrating from Subversion: ``bzr status -SV`` is now like
 
8795
  ``svn status -q``.  (Daniel Watkins, #115990)
 
8796
 
 
8797
* Added C implementation of  ``PatienceSequenceMatcher``, which is about
 
8798
  10x faster than the Python version. This speeds up commands that
 
8799
  need file diffing, such as ``bzr commit`` or ``bzr diff``.
 
8800
  (Lukáš Lalinský)
 
8801
 
 
8802
* HACKING has been extended with a large section on core developer tasks.
 
8803
  (Ian Clatworthy)
 
8804
 
 
8805
* Add ``branches`` and ``standalone-trees`` as online help topics and
 
8806
  include them as Concepts within the User Reference.
 
8807
  (Paul Moore, Ian Clatworthy)
 
8808
 
 
8809
* ``check`` can detect versionedfile parent references that are
 
8810
  inconsistent with revision and inventory info, and ``reconcile`` can fix
 
8811
  them.  These faulty references were generated by 0.8-era releases,
 
8812
  so repositories which were manipulated by old bzrs should be
 
8813
  checked, and possibly reconciled ASAP.  (Aaron Bentley, Andrew Bennetts)
 
8814
 
 
8815
API Breaks
 
8816
**********
 
8817
 
 
8818
* ``Branch.append_revision`` is removed altogether; please use
 
8819
  ``Branch.set_last_revision_info`` instead.  (Martin Pool)
 
8820
 
 
8821
* CommitBuilder now advertises itself as requiring the root entry to be
 
8822
  supplied. This only affects foreign repository implementations which reuse
 
8823
  CommitBuilder directly and have changed record_entry_contents to require
 
8824
  that the root not be supplied. This should be precisely zero plugins
 
8825
  affected. (Robert Collins)
 
8826
 
 
8827
* The ``add_lines`` methods on ``VersionedFile`` implementations has changed
 
8828
  its return value to include the sha1 and length of the inserted text. This
 
8829
  allows the avoidance of double-sha1 calculations during commit.
 
8830
  (Robert Collins)
 
8831
 
 
8832
* ``Transport.should_cache`` has been removed.  It was not called in the
 
8833
  previous release.  (Martin Pool)
 
8834
 
 
8835
Testing
 
8836
*******
 
8837
 
 
8838
* Tests may now raise TestNotApplicable to indicate they shouldn't be
 
8839
  run in a particular scenario.  (Martin Pool)
 
8840
 
 
8841
* New function multiply_tests_from_modules to give a simpler interface
 
8842
  to test parameterization.  (Martin Pool, Robert Collins)
 
8843
 
 
8844
* ``Transport.should_cache`` has been removed.  It was not called in the
 
8845
  previous release.  (Martin Pool)
 
8846
 
 
8847
* NULL_REVISION is returned to indicate the null revision, not None.
 
8848
  (Aaron Bentley)
 
8849
 
 
8850
* Use UTF-8 encoded StringIO for log tests to avoid failures on
 
8851
  non-ASCII committer names.  (Lukáš Lalinský)
 
8852
 
 
8853
Internals
 
8854
*********
 
8855
 
 
8856
* ``bzrlib.plugin.all_plugins`` has been deprecated in favour of
 
8857
  ``bzrlib.plugin.plugins()`` which returns PlugIn objects that provide
 
8858
  useful functionality for determining the path of a plugin, its tests, and
 
8859
  its version information. (Robert Collins)
 
8860
 
 
8861
* Add the option user_encoding to the function 'show_diff_trees()'
 
8862
  in order to move the user encoding at the UI level. (Goffredo Baroncelli)
 
8863
 
 
8864
* Add the function make_commit_message_template_encoded() and the function
 
8865
  edit_commit_message_encoded() which handle encoded strings.
 
8866
  This is done in order to mix the commit messages (which is a unicode
 
8867
  string), and the diff which is a raw string. (Goffredo Baroncelli)
 
8868
 
 
8869
* CommitBuilder now defaults to using add_lines_with_ghosts, reducing
 
8870
  overhead on non-weave repositories which don't require all parents to be
 
8871
  present. (Robert Collins)
 
8872
 
 
8873
* Deprecated method ``find_previous_heads`` on
 
8874
  ``bzrlib.inventory.InventoryEntry``. This has been superseded by the use
 
8875
  of ``parent_candidates`` and a separate heads check via the repository
 
8876
  API. (Robert Collins)
 
8877
 
 
8878
* New trace function ``mutter_callsite`` will print out a subset of the
 
8879
  stack to the log, which can be useful for gathering debug details.
 
8880
  (Robert Collins)
 
8881
 
 
8882
* ``bzrlib.pack.ContainerWriter`` now tracks how many records have been
 
8883
  added via a public attribute records_written. (Robert Collins)
 
8884
 
 
8885
* New method ``bzrlib.transport.Transport.get_recommended_page_size``.
 
8886
  This provides a hint to users of transports as to the reasonable
 
8887
  minimum data to read. In principle this can take latency and
 
8888
  bandwidth into account on a per-connection basis, but for now it
 
8889
  just has hard coded values based on the url. (e.g. http:// has a large
 
8890
  page size, file:// has a small one.) (Robert Collins)
 
8891
 
 
8892
* New method on ``bzrlib.transport.Transport`` ``open_write_stream`` allows
 
8893
  incremental addition of data to a file without requiring that all the
 
8894
  data be buffered in memory. (Robert Collins)
 
8895
 
 
8896
* New methods on ``bzrlib.knit.KnitVersionedFile``:
 
8897
  ``get_data_stream(versions)``, ``insert_data_stream(stream)`` and
 
8898
  ``get_format_signature()``.  These provide some infrastructure for
 
8899
  efficiently streaming the knit data for a set of versions over the smart
 
8900
  protocol.
 
8901
 
 
8902
* Knits with no annotation cache still produce correct annotations.
 
8903
  (Aaron Bentley)
 
8904
 
 
8905
* Three new methods have been added to ``bzrlib.trace``:
 
8906
  ``set_verbosity_level``, ``get_verbosity_level`` and ``is_verbose``.
 
8907
  ``set_verbosity_level`` expects a numeric value: negative for quiet,
 
8908
  zero for normal, positive for verbose. The size of the number can be
 
8909
  used to determine just how quiet or verbose the application should be.
 
8910
  The existing ``be_quiet`` and ``is_quiet`` routines have been
 
8911
  integrated into this new scheme. (Ian Clatworthy)
 
8912
 
 
8913
* Options can now be delcared with a ``custom_callback`` parameter. If
 
8914
  set, this routine is called after the option is processed. This feature
 
8915
  is now used by the standard options ``verbose`` and ``quiet`` so that
 
8916
  setting one implicitly resets the other. (Ian Clatworthy)
 
8917
 
 
8918
* Rather than declaring a new option from scratch in order to provide
 
8919
  custom help, a centrally registered option can be decorated using the
 
8920
  new ``bzrlib.Option.custom_help`` routine. In particular, this routine
 
8921
  is useful when declaring better help for the ``verbose`` and ``quiet``
 
8922
  standard options as the base definition of these is now more complex
 
8923
  than before thanks to their use of a custom callback. (Ian Clatworthy)
 
8924
 
 
8925
* Tree._iter_changes(specific_file=[]) now iterates through no files,
 
8926
  instead of iterating through all files.  None is used to iterate through
 
8927
  all files.  (Aaron Bentley)
 
8928
 
 
8929
* WorkingTree.revert() now accepts None to revert all files.  The use of
 
8930
  [] to revert all files is deprecated.  (Aaron Bentley)
 
8931
 
 
8932
 
 
8933
bzr 0.90
 
8934
########
 
8935
 
 
8936
:Released: 2007-08-28
 
8937
 
 
8938
Improvements
 
8939
************
 
8940
 
 
8941
* Documentation is now organized into multiple directories with a level
 
8942
  added for different languages or locales. Added the Mini Tutorial
 
8943
  and Quick Start Summary (en) documents from the Wiki, improving the
 
8944
  content and readability of the former. Formatted NEWS as Release Notes
 
8945
  complete with a Table of Conents, one heading per release. Moved the
 
8946
  Developer Guide into the main document catalog and provided a link
 
8947
  from the developer document catalog back to the main one.
 
8948
  (Ian Clatworthy, Sabin Iacob, Alexander Belchenko)
 
8949
 
 
8950
 
 
8951
API Changes
 
8952
***********
 
8953
 
 
8954
* The static convenience method ``BzrDir.create_repository``
 
8955
  is deprecated.  Callers should instead create a ``BzrDir`` instance
 
8956
  and call ``create_repository`` on that.  (Martin Pool)
 
8957
 
 
8958
 
 
8959
bzr 0.90rc1
 
8960
###########
 
8961
 
 
8962
:Released: 2007-08-14
 
8963
 
 
8964
Bugfixes
 
8965
********
 
8966
 
 
8967
* ``bzr init`` should connect to the remote location one time only.  We
 
8968
  have been connecting several times because we forget to pass around the
 
8969
  Transport object. This modifies ``BzrDir.create_branch_convenience``,
 
8970
  so that we can give it the Transport we already have.
 
8971
  (John Arbash Meinel, Vincent Ladeuil, #111702)
 
8972
 
 
8973
* Get rid of sftp connection cache (get rid of the FTP one too).
 
8974
  (Vincent Ladeuil, #43731)
 
8975
 
 
8976
* bzr branch {local|remote} remote don't try to create a working tree
 
8977
  anymore.
 
8978
  (Vincent Ladeuil, #112173)
 
8979
 
 
8980
* All identified multiple connections for a single bzr command have been
 
8981
  fixed. See bzrlib/tests/commands directory.
 
8982
  (Vincent Ladeuil)
 
8983
 
 
8984
* ``bzr rm`` now does not insist on ``--force`` to delete files that
 
8985
  have been renamed but not otherwise modified.  (Marius Kruger,
 
8986
  #111664)
 
8987
 
 
8988
* ``bzr selftest --bench`` no longer emits deprecation warnings
 
8989
  (Lukáš Lalinský)
 
8990
 
 
8991
* ``bzr status`` now honours FILE parameters for conflict lists
 
8992
  (Aaron Bentley, #127606)
 
8993
 
 
8994
* ``bzr checkout`` now honours -r when reconstituting a working tree.
 
8995
  It also honours -r 0.  (Aaron Bentley, #127708)
 
8996
 
 
8997
* ``bzr add *`` no more fails on Windows if working tree contains
 
8998
  non-ascii file names. (Kuno Meyer, #127361)
 
8999
 
 
9000
* allow ``easy_install bzr`` runs without fatal errors.
 
9001
  (Alexander Belchenko, #125521)
 
9002
 
 
9003
* Graph._filter_candidate_lca does not raise KeyError if a candidate
 
9004
  is eliminated just before it would normally be examined.  (Aaron Bentley)
 
9005
 
 
9006
* SMTP connection failures produce a nice message, not a traceback.
 
9007
  (Aaron Bentley)
 
9008
 
 
9009
Improvements
 
9010
************
 
9011
 
 
9012
* Don't show "dots" progress indicators when run non-interactively, such
 
9013
  as from cron.  (Martin Pool)
 
9014
 
 
9015
* ``info`` now formats locations more nicely and lists "submit" and
 
9016
  "public" branches (Aaron Bentley)
 
9017
 
 
9018
* New ``pack`` command that will trigger database compression within
 
9019
  the repository (Robert Collins)
 
9020
 
 
9021
* Implement ``_KnitIndex._load_data`` in a pyrex extension. The pyrex
 
9022
  version is approximately 2-3x faster at parsing a ``.kndx`` file.
 
9023
  Which yields a measurable improvement for commands which have to
 
9024
  read from the repository, such as a 1s => 0.75s improvement in
 
9025
  ``bzr diff`` when there are changes to be shown.  (John Arbash Meinel)
 
9026
 
 
9027
* Merge is now faster.  Depending on the scenario, it can be more than 2x
 
9028
  faster. (Aaron Bentley)
 
9029
 
 
9030
* Give a clearer warning, and allow ``python setup.py install`` to
 
9031
  succeed even if pyrex is not available.
 
9032
  (John Arbash Meinel)
 
9033
 
 
9034
* ``DirState._read_dirblocks`` now has an optional Pyrex
 
9035
  implementation. This improves the speed of any command that has to
 
9036
  read the entire DirState. (``diff``, ``status``, etc, improve by
 
9037
  about 10%).
 
9038
  ``bisect_dirblocks`` has also been improved, which helps all
 
9039
  ``_get_entry`` type calls (whenever we are searching for a
 
9040
  particular entry in the in-memory DirState).
 
9041
  (John Arbash Meinel)
 
9042
 
 
9043
* ``bzr pull`` and ``bzr push`` no longer do a complete walk of the
 
9044
  branch revision history for ui display unless -v is supplied.
 
9045
  (Robert Collins)
 
9046
 
 
9047
* ``bzr log -rA..B`` output shifted to the left margin if the log only
 
9048
  contains merge revisions. (Kent Gibson)
 
9049
 
 
9050
* The ``plugins`` command is now public with improved help.
 
9051
  (Ian Clatworthy)
 
9052
 
 
9053
* New bundle and merge directive formats are faster to generate, and
 
9054
 
 
9055
* Annotate merge now works when there are local changes. (Aaron Bentley)
 
9056
 
 
9057
* Commit now only shows the progress in terms of directories instead of
 
9058
  entries. (Ian Clatworthy)
 
9059
 
 
9060
* Fix ``KnitRepository.get_revision_graph`` to not request the graph 2
 
9061
  times. This makes ``get_revision_graph`` 2x faster. (John Arbash
 
9062
  Meinel)
 
9063
 
 
9064
* Fix ``VersionedFile.get_graph()`` to avoid using
 
9065
  ``set.difference_update(other)``, which has bad scaling when
 
9066
  ``other`` is large. This improves ``VF.get_graph([version_id])`` for
 
9067
  a 12.5k graph from 2.9s down to 200ms. (John Arbash Meinel)
 
9068
 
 
9069
* The ``--lsprof-file`` option now generates output for KCacheGrind if
 
9070
  the file starts with ``callgrind.out``. This matches the default file
 
9071
  filtering done by KCacheGrind's Open Dialog. (Ian Clatworthy)
 
9072
 
 
9073
* Fix ``bzr update`` to avoid an unnecessary
 
9074
  ``branch.get_master_branch`` call, which avoids 1 extra connection
 
9075
  to the remote server. (Partial fix for #128076, John Arbash Meinel)
 
9076
 
 
9077
* Log errors from the smart server in the trace file, to make debugging
 
9078
  test failures (and live failures!) easier.  (Andrew Bennetts)
 
9079
 
 
9080
* The HTML version of the man page has been superceded by a more
 
9081
  comprehensive manual called the Bazaar User Reference. This manual
 
9082
  is completed generated from the online help topics. As part of this
 
9083
  change, limited reStructuredText is now explicitly supported in help
 
9084
  topics and command help with 'unnatural' markup being removed prior
 
9085
  to display by the online help or inclusion in the man page.
 
9086
  (Ian Clatworthy)
 
9087
 
 
9088
* HTML documentation now use files extension ``*.html``
 
9089
  (Alexander Belchenko)
 
9090
 
 
9091
* The cache of ignore definitions is now cleared in WorkingTree.unlock()
 
9092
  so that changes to .bzrignore aren't missed. (#129694, Daniel Watkins)
 
9093
 
 
9094
* ``bzr selftest --strict`` fails if there are any missing features or
 
9095
  expected test failures. (Daniel Watkins, #111914)
 
9096
 
 
9097
* Link to registration survey added to README. (Ian Clatworthy)
 
9098
 
 
9099
* Windows standalone installer show link to registration survey
 
9100
  when installation finished. (Alexander Belchenko)
 
9101
 
 
9102
Library API Breaks
 
9103
******************
 
9104
 
 
9105
* Deprecated dictionary ``bzrlib.option.SHORT_OPTIONS`` removed.
 
9106
  Options are now required to provide a help string and it must
 
9107
  comply with the style guide by being one or more sentences with an
 
9108
  initial capital and final period. (Martin Pool)
 
9109
 
 
9110
* KnitIndex.get_parents now returns tuples. (Robert Collins)
 
9111
 
 
9112
* Ancient unused ``Repository.text_store`` attribute has been removed.
 
9113
  (Robert Collins)
 
9114
 
 
9115
* The ``bzrlib.pack`` interface has changed to use tuples of bytestrings
 
9116
  rather than just bytestrings, making it easier to represent multiple
 
9117
  element names. As this interface was not used by any internal facilities
 
9118
  since it was introduced in 0.18 no API compatibility is being preserved.
 
9119
  The serialised form of these packs is identical with 0.18 when a single
 
9120
  element tuple is in use. (Robert Collins)
 
9121
 
 
9122
Internals
 
9123
*********
 
9124
 
 
9125
* merge now uses ``iter_changes`` to calculate changes, which makes room for
 
9126
  future performance increases.  It is also more consistent with other
 
9127
  operations that perform comparisons, and reduces reliance on
 
9128
  Tree.inventory.  (Aaron Bentley)
 
9129
 
 
9130
* Refactoring of transport classes connected to a remote server.
 
9131
  ConnectedTransport is a new class that serves as a basis for all
 
9132
  transports needing to connect to a remote server.  transport.split_url
 
9133
  have been deprecated, use the static method on the object instead. URL
 
9134
  tests have been refactored too.
 
9135
  (Vincent Ladeuil)
 
9136
 
 
9137
* Better connection sharing for ConnectedTransport objects.
 
9138
  transport.get_transport() now accepts a 'possible_transports' parameter.
 
9139
  If a newly requested transport can share a connection with one of the
 
9140
  list, it will.
 
9141
  (Vincent Ladeuil)
 
9142
 
 
9143
* Most functions now accept ``bzrlib.revision.NULL_REVISION`` to indicate
 
9144
  the null revision, and consider using ``None`` for this purpose
 
9145
  deprecated.  (Aaron Bentley)
 
9146
 
 
9147
* New ``index`` module with abstract index functionality. This will be
 
9148
  used during the planned changes in the repository layer. Currently the
 
9149
  index layer provides a graph aware immutable index, a builder for the
 
9150
  same index type to allow creating them, and finally a composer for
 
9151
  such indices to allow the use of many indices in a single query. The
 
9152
  index performance is not optimised, however the API is stable to allow
 
9153
  development on top of the index. (Robert Collins)
 
9154
 
 
9155
* ``bzrlib.dirstate.cmp_by_dirs`` can be used to compare two paths by
 
9156
  their directory sections. This is equivalent to comparing
 
9157
  ``path.split('/')``, only without having to split the paths.
 
9158
  This has a Pyrex implementation available.
 
9159
  (John Arbash Meinel)
 
9160
 
 
9161
* New transport decorator 'unlistable+' which disables the list_dir
 
9162
  functionality for testing.
 
9163
 
 
9164
* Deprecated ``change_entry`` in transform.py. (Ian Clatworthy)
 
9165
 
 
9166
* RevisionTree.get_weave is now deprecated.  Tree.plan_merge is now used
 
9167
  for performing annotate-merge.  (Aaron Bentley)
 
9168
 
 
9169
* New EmailMessage class to create email messages. (Adeodato Simó)
 
9170
 
 
9171
* Unused functions on the private interface KnitIndex have been removed.
 
9172
  (Robert Collins)
 
9173
 
 
9174
* New ``knit.KnitGraphIndex`` which provides a ``KnitIndex`` layered on top
 
9175
  of a ``index.GraphIndex``. (Robert Collins)
 
9176
 
 
9177
* New ``knit.KnitVersionedFile.iter_parents`` method that allows querying
 
9178
  the parents of many knit nodes at once, reducing round trips to the
 
9179
  underlying index. (Robert Collins)
 
9180
 
 
9181
* Graph now has an is_ancestor method, various bits use it.
 
9182
  (Aaron Bentley)
 
9183
 
 
9184
* The ``-Dhpss`` flag now includes timing information. As well as
 
9185
  logging when a new connection is opened. (John Arbash Meinel)
 
9186
 
 
9187
* ``bzrlib.pack.ContainerWriter`` now returns an offset, length tuple to
 
9188
  callers when inserting data, allowing generation of readv style access
 
9189
  during pack creation, without needing a separate pass across the output
 
9190
  pack to gather such details. (Robert Collins)
 
9191
 
 
9192
* ``bzrlib.pack.make_readv_reader`` allows readv based access to pack
 
9193
  files that are stored on a transport. (Robert Collins)
 
9194
 
 
9195
* New ``Repository.has_same_location`` method that reports if two
 
9196
  repository objects refer to the same repository (although with some risk
 
9197
  of false negatives).  (Andrew Bennetts)
 
9198
 
 
9199
* InterTree.compare now passes require_versioned on correctly.
 
9200
  (Marius Kruger)
 
9201
 
 
9202
* New methods on Repository - ``start_write_group``,
 
9203
  ``commit_write_group``, ``abort_write_group`` and ``is_in_write_group`` -
 
9204
  which provide a clean hook point for transactional Repositories - ones
 
9205
  where all the data for a fetch or commit needs to be made atomically
 
9206
  available in one step. This allows the write lock to remain while making
 
9207
  a series of data insertions.  (e.g. data conversion). (Robert Collins)
 
9208
 
 
9209
* In ``bzrlib.knit`` the internal interface has been altered to use
 
9210
  3-tuples (index, pos, length) rather than two-tuples (pos, length) to
 
9211
  describe where data in a knit is, allowing knits to be split into
 
9212
  many files. (Robert Collins)
 
9213
 
 
9214
* ``bzrlib.knit._KnitData`` split into cache management and physical access
 
9215
  with two access classes - ``_PackAccess`` and ``_KnitAccess`` defined.
 
9216
  The former provides access into a .pack file, and the latter provides the
 
9217
  current production repository form of .knit files. (Robert Collins)
 
9218
 
 
9219
Testing
 
9220
*******
 
9221
 
 
9222
* Remove selftest ``--clean-output``, ``--numbered-dirs`` and
 
9223
  ``--keep-output`` options, which are obsolete now that tests
 
9224
  are done within directories in $TMPDIR.  (Martin Pool)
 
9225
 
 
9226
* The SSH_AUTH_SOCK environment variable is now reset to avoid
 
9227
  interaction with any running ssh agents.  (Jelmer Vernooij, #125955)
 
9228
 
 
9229
* run_bzr_subprocess handles parameters the same way as run_bzr:
 
9230
  either a string or a list of strings should be passed as the first
 
9231
  parameter.  Varargs-style parameters are deprecated. (Aaron Bentley)
 
9232
 
 
9233
 
 
9234
bzr 0.18
 
9235
########
 
9236
 
 
9237
:Released:  2007-07-17
 
9238
 
 
9239
Bugfixes
 
9240
********
 
9241
 
 
9242
* Fix 'bzr add' crash under Win32 (Kuno Meyer)
 
9243
 
 
9244
 
 
9245
bzr 0.18rc1
 
9246
###########
 
9247
 
 
9248
:Released:  2007-07-10
 
9249
 
 
9250
Bugfixes
 
9251
********
 
9252
 
 
9253
* Do not suppress pipe errors, etc. in non-display commands
 
9254
  (Alexander Belchenko, #87178)
 
9255
 
 
9256
* Display a useful error message when the user requests to annotate
 
9257
  a file that is not present in the specified revision.
 
9258
  (James Westby, #122656)
 
9259
 
 
9260
* Commands that use status flags now have a reference to 'help
 
9261
  status-flags'.  (Daniel Watkins, #113436)
 
9262
 
 
9263
* Work around python-2.4.1 inhability to correctly parse the
 
9264
  authentication header.
 
9265
  (Vincent Ladeuil, #121889)
 
9266
 
 
9267
* Use exact encoding for merge directives. (Adeodato Simó, #120591)
 
9268
 
 
9269
* Fix tempfile permissions error in smart server tar bundling under
 
9270
  Windows. (Martin _, #119330)
 
9271
 
 
9272
* Fix detection of directory entries in the inventory. (James Westby)
 
9273
 
 
9274
* Fix handling of http code 400: Bad Request When issuing too many ranges.
 
9275
  (Vincent Ladeuil, #115209)
 
9276
 
 
9277
* Issue a CONNECT request when connecting to an https server
 
9278
  via a proxy to enable SSL tunneling.
 
9279
  (Vincent Ladeuil, #120678)
 
9280
 
 
9281
* Fix ``bzr log -r`` to support selecting merge revisions, both
 
9282
  individually and as part of revision ranges.
 
9283
  (Kent Gibson, #4663)
 
9284
 
 
9285
* Don't leave cruft behind when failing to acquire a lockdir.
 
9286
  (Martin Pool, #109169)
 
9287
 
 
9288
* Don't use the '-f' strace option during tests.
 
9289
  (Vincent Ladeuil, #102019).
 
9290
 
 
9291
* Warn when setting ``push_location`` to a value that will be masked by
 
9292
  locations.conf.  (Aaron Bentley, #122286)
 
9293
 
 
9294
* Fix commit ordering in corner case (Aaron Bentley, #94975)
 
9295
 
 
9296
*  Make annotate behave in a non-ASCII world (Adeodato Simó).
 
9297
 
 
9298
Improvements
 
9299
************
 
9300
 
 
9301
* The --lsprof-file option now dumps a text rendering of the profiling
 
9302
  information if the filename ends in ".txt". It will also convert the
 
9303
  profiling information to a format suitable for KCacheGrind if the
 
9304
  output filename ends in ".callgrind". Fixes to the lsprofcalltree
 
9305
  conversion process by Jean Paul Calderone and Itamar were also merged.
 
9306
  See http://ddaa.net/blog/python/lsprof-calltree. (Ian Clatworthy)
 
9307
 
 
9308
* ``info`` now defaults to non-verbose mode, displaying only paths and
 
9309
  abbreviated format info.  ``info -v`` displays all the information
 
9310
  formerly displayed by ``info``.  (Aaron Bentley, Adeodato Simó)
 
9311
 
 
9312
* ``bzr missing`` now has better option names ``--this`` and ``--other``.
 
9313
  (Elliot Murphy)
 
9314
 
 
9315
* The internal ``weave-list`` command has become ``versionedfile-list``,
 
9316
  and now lists knits as well as weaves.  (Aaron Bentley)
 
9317
 
 
9318
* Automatic merge base selection uses a faster algorithm that chooses
 
9319
  better bases in criss-cross merge situations (Aaron Bentley)
 
9320
 
 
9321
* Progress reporting in ``commit`` has been improved. The various logical
 
9322
  stages are now reported on as follows, namely:
 
9323
 
 
9324
  * Collecting changes [Entry x/y] - Stage n/m
 
9325
  * Saving data locally - Stage n/m
 
9326
  * Uploading data to master branch - Stage n/m
 
9327
  * Updating the working tree - Stage n/m
 
9328
  * Running post commit hooks - Stage n/m
 
9329
 
 
9330
  If there is no master branch, the 3rd stage is omitted and the total
 
9331
  number of stages is adjusted accordingly.
 
9332
 
 
9333
  Each hook that is run after commit is listed with a name (as hooks
 
9334
  can be slow it is useful feedback).
 
9335
  (Ian Clatworthy, Robert Collins)
 
9336
 
 
9337
* Various operations that are now faster due to avoiding unnecessary
 
9338
  topological sorts. (Aaron Bentley)
 
9339
 
 
9340
* Make merge directives robust against broken bundles. (Aaron Bentley)
 
9341
 
 
9342
* The lsprof filename note is emitted via trace.note(), not standard
 
9343
  output.  (Aaron Bentley)
 
9344
 
 
9345
* ``bzrlib`` now exports explicit API compatibility information to assist
 
9346
  library users and plugins. See the ``bzrlib.api`` module for details.
 
9347
  (Robert Collins)
 
9348
 
 
9349
* Remove unnecessary lock probes when acquiring a lockdir.
 
9350
  (Martin Pool)
 
9351
 
 
9352
* ``bzr --version`` now shows the location of the bzr log file, which
 
9353
  is especially useful on Windows.  (Martin Pool)
 
9354
 
 
9355
* -D now supports hooks to get debug tracing of hooks (though its currently
 
9356
  minimal in nature). (Robert Collins)
 
9357
 
 
9358
* Long log format reports deltas on merge revisions.
 
9359
  (John Arbash Meinel, Kent Gibson)
 
9360
 
 
9361
* Make initial push over ftp more resilient. (John Arbash Meinel)
 
9362
 
 
9363
* Print a summary of changes for update just like pull does.
 
9364
  (Daniel Watkins, #113990)
 
9365
 
 
9366
* Add a -Dhpss option to trace smart protocol requests and responses.
 
9367
  (Andrew Bennetts)
 
9368
 
 
9369
Library API Breaks
 
9370
******************
 
9371
 
 
9372
* Testing cleanups -
 
9373
  ``bzrlib.repository.RepositoryTestProviderAdapter`` has been moved
 
9374
  to ``bzrlib.tests.repository_implementations``;
 
9375
  ``bzrlib.repository.InterRepositoryTestProviderAdapter`` has been moved
 
9376
  to ``bzrlib.tests.interrepository_implementations``;
 
9377
  ``bzrlib.transport.TransportTestProviderAdapter`` has moved to
 
9378
  ``bzrlib.tests.test_transport_implementations``.
 
9379
  ``bzrlib.branch.BranchTestProviderAdapter`` has moved to
 
9380
  ``bzrlib.tests.branch_implementations``.
 
9381
  ``bzrlib.bzrdir.BzrDirTestProviderAdapter`` has moved to
 
9382
  ``bzrlib.tests.bzrdir_implementations``.
 
9383
  ``bzrlib.versionedfile.InterVersionedFileTestProviderAdapter`` has moved
 
9384
  to ``bzrlib.tests.interversionedfile_implementations``.
 
9385
  ``bzrlib.store.revision.RevisionStoreTestProviderAdapter`` has moved to
 
9386
  ``bzrlib.tests.revisionstore_implementations``.
 
9387
  ``bzrlib.workingtree.WorkingTreeTestProviderAdapter`` has moved to
 
9388
  ``bzrlib.tests.workingtree_implementations``.
 
9389
  These changes are an API break in the testing infrastructure only.
 
9390
  (Robert Collins)
 
9391
 
 
9392
* Relocate TestCaseWithRepository to be more central. (Robert Collins)
 
9393
 
 
9394
* ``bzrlib.add.smart_add_tree`` will no longer perform glob expansion on
 
9395
  win32. Callers of the function should do this and use the new
 
9396
  ``MutableTree.smart_add`` method instead. (Robert Collins)
 
9397
 
 
9398
* ``bzrlib.add.glob_expand_for_win32`` is now
 
9399
  ``bzrlib.win32utils.glob_expand``.  (Robert Collins)
 
9400
 
 
9401
* ``bzrlib.add.FastPath`` is now private and moved to
 
9402
  ``bzrlib.mutabletree._FastPath``. (Robert Collins, Martin Pool)
 
9403
 
 
9404
* ``LockDir.wait`` removed.  (Martin Pool)
 
9405
 
 
9406
* The ``SmartServer`` hooks API has changed for the ``server_started`` and
 
9407
  ``server_stopped`` hooks. The first parameter is now an iterable of
 
9408
  backing URLs rather than a single URL. This is to reflect that many
 
9409
  URLs may map to the external URL of the server. E.g. the server interally
 
9410
  may have a chrooted URL but also the local file:// URL will be at the
 
9411
  same location. (Robert Collins)
 
9412
 
 
9413
Internals
 
9414
*********
 
9415
 
 
9416
* New SMTPConnection class to unify email handling.  (Adeodato Simó)
 
9417
 
 
9418
* Fix documentation of BzrError. (Adeodato Simó)
 
9419
 
 
9420
* Make BzrBadParameter an internal error. (Adeodato Simó)
 
9421
 
 
9422
* Remove use of 'assert False' to raise an exception unconditionally.
 
9423
  (Martin Pool)
 
9424
 
 
9425
* Give a cleaner error when failing to decode knit index entry.
 
9426
  (Martin Pool)
 
9427
 
 
9428
* TreeConfig would mistakenly search the top level when asked for options
 
9429
  from a section. It now respects the section argument and only
 
9430
  searches the specified section. (James Westby)
 
9431
 
 
9432
* Improve ``make api-docs`` output. (John Arbash Meinel)
 
9433
 
 
9434
* Use os.lstat rather than os.stat for osutils.make_readonly and
 
9435
  osutils.make_writeable. This makes the difftools plugin more
 
9436
  robust when dangling symlinks are found. (Elliot Murphy)
 
9437
 
 
9438
* New ``-Dlock`` option to log (to ~/.bzr.log) information on when
 
9439
  lockdirs are taken or released.  (Martin Pool)
 
9440
 
 
9441
* ``bzrlib`` Hooks are now nameable using ``Hooks.name_hook``. This
 
9442
  allows a nicer UI when hooks are running as the current hook can
 
9443
  be displayed. (Robert Collins)
 
9444
 
 
9445
* ``Transport.get`` has had its interface made more clear for ease of use.
 
9446
  Retrieval of a directory must now fail with either 'PathError' at open
 
9447
  time, or raise 'ReadError' on a read. (Robert Collins)
 
9448
 
 
9449
* New method ``_maybe_expand_globs`` on the ``Command`` class for
 
9450
  dealing with unexpanded glob lists - e.g. on the win32 platform. This
 
9451
  was moved from ``bzrlib.add._prepare_file_list``. (Robert Collins)
 
9452
 
 
9453
* ``bzrlib.add.smart_add`` and ``bzrlib.add.smart_add_tree`` are now
 
9454
  deprecated in favour of ``MutableTree.smart_add``. (Robert Collins,
 
9455
  Martin Pool)
 
9456
 
 
9457
* New method ``external_url`` on Transport for obtaining the url to
 
9458
  hand to external processes. (Robert Collins)
 
9459
 
 
9460
* Teach windows installers to build pyrex/C extensions.
 
9461
  (Alexander Belchenko)
 
9462
 
 
9463
Testing
 
9464
*******
 
9465
 
 
9466
* Removed the ``--keep-output`` option from selftest and clean up test
 
9467
  directories as they're used.  This reduces the IO load from
 
9468
  running the test suite and cuts the time by about half.
 
9469
  (Andrew Bennetts, Martin Pool)
 
9470
 
 
9471
* Add scenarios as a public attribute on the TestAdapter classes to allow
 
9472
  modification of the generated scenarios before adaption and easier
 
9473
  testing. (Robert Collins)
 
9474
 
 
9475
* New testing support class ``TestScenarioApplier`` which multiplies
 
9476
  out a single teste by a list of supplied scenarios. (RobertCollins)
 
9477
 
 
9478
* Setting ``repository_to_test_repository`` on a repository_implementations
 
9479
  test will cause it to be called during repository creation, allowing the
 
9480
  testing of repository classes which are not based around the Format
 
9481
  concept. For example a repository adapter can be tested in this manner,
 
9482
  by altering the repository scenarios to include a scenario that sets this
 
9483
  attribute during the test parameterisation in
 
9484
  ``bzrlib.tests.repository.repository_implementations``. (Robert Collins)
 
9485
 
 
9486
* Clean up many of the APIs for blackbox testing of Bazaar.  The standard
 
9487
  interface is now self.run_bzr.  The command to run can be passed as
 
9488
  either a list of parameters, a string containing the command line, or
 
9489
  (deprecated) varargs parameters.  (Martin Pool)
 
9490
 
 
9491
* The base TestCase now isolates tests from -D parameters by clearing
 
9492
  ``debug.debug_flags`` and restores it afterwards. (Robert Collins)
 
9493
 
 
9494
* Add a relpath parameter to get_transport methods in test framework to
 
9495
  avoid useless cloning.
 
9496
  (Vincent Ladeuil, #110448)
 
9497
 
 
9498
 
 
9499
bzr 0.17
 
9500
########
 
9501
 
 
9502
:Released:  2007-06-18
 
9503
 
 
9504
Bugfixes
 
9505
********
 
9506
 
 
9507
* Fix crash of commit due to wrong lookup of filesystem encoding.
 
9508
  (Colin Watson, #120647)
 
9509
 
 
9510
* Revert logging just to stderr in commit as broke unicode filenames.
 
9511
  (Aaron Bentley, Ian Clatworthy, #120930)
 
9512
 
 
9513
 
 
9514
bzr 0.17rc1
 
9515
###########
 
9516
 
 
9517
:Released:  2007-06-12
 
9518
 
 
9519
Notes When Upgrading
 
9520
********************
 
9521
 
 
9522
* The kind() and is_executable() APIs on the WorkingTree interface no
 
9523
  longer implicitly (read) locks and unlocks the tree. This *might*
 
9524
  impact some plug-ins and tools using this part of the API. If you find
 
9525
  an issue that may be caused by this change, please let us know,
 
9526
  particularly the plug-in/tool maintainer. If encountered, the API
 
9527
  fix is to surround kind() and is_executable() calls with lock_read()
 
9528
  and unlock() like so::
 
9529
 
 
9530
    work_tree.lock_read()
 
9531
    try:
 
9532
        kind = work_tree.kind(...)
 
9533
    finally:
 
9534
        work_tree.unlock()
 
9535
 
 
9536
Internals
 
9537
*********
 
9538
* Rework of LogFormatter API to provide beginning/end of log hooks and to
 
9539
  encapsulate the details of the revision to be logged in a LogRevision
 
9540
  object.
 
9541
  In long log formats, merge revision ids are only shown when --show-ids
 
9542
  is specified, and are labelled "revision-id:", as per mainline
 
9543
  revisions, instead of "merged:". (Kent Gibson)
 
9544
 
 
9545
* New ``BranchBuilder`` API which allows the construction of particular
 
9546
  histories quickly. Useful for testing and potentially other applications
 
9547
  too. (Robert Collins)
 
9548
 
 
9549
Improvements
 
9550
************
 
9551
 
 
9552
* There are two new help topics, working-trees and repositories that
 
9553
  attempt to explain these concepts. (James Westby, John Arbash Meinel,
 
9554
  Aaron Bentley)
 
9555
 
 
9556
* Added ``bzr log --limit`` to report a limited number of revisions.
 
9557
  (Kent Gibson, #3659)
 
9558
 
 
9559
* Revert does not try to preserve file contents that were originally
 
9560
  produced by reverting to a historical revision.  (Aaron Bentley)
 
9561
 
 
9562
* ``bzr log --short`` now includes ``[merge]`` for revisions which
 
9563
  have more than one parent. This is a small improvement to help
 
9564
  understanding what changes have occurred
 
9565
  (John Arbash Meinel, #83887)
 
9566
 
 
9567
* TreeTransform avoids many renames when contructing large trees,
 
9568
  improving speed.  3.25x speedups have been observed for construction of
 
9569
  kernel-sized-trees, and checkouts are 1.28x faster.  (Aaron Bentley)
 
9570
 
 
9571
* Commit on large trees is now faster. In my environment, a commit of
 
9572
  a small change to the Mozilla tree (55k files) has dropped from
 
9573
  66 seconds to 32 seconds. For a small tree of 600 files, commit of a
 
9574
  small change is 33% faster. (Ian Clatworthy)
 
9575
 
 
9576
* New --create-prefix option to bzr init, like for push.  (Daniel Watkins,
 
9577
  #56322)
 
9578
 
 
9579
Bugfixes
 
9580
********
 
9581
 
 
9582
* ``bzr push`` should only connect to the remote location one time.
 
9583
  We have been connecting 3 times because we forget to pass around
 
9584
  the Transport object. This adds ``BzrDir.clone_on_transport()``, so
 
9585
  that we can pass in the Transport that we already have.
 
9586
  (John Arbash Meinel, #75721)
 
9587
 
 
9588
* ``DirState.set_state_from_inventory()`` needs to properly order
 
9589
  based on split paths, not just string paths.
 
9590
  (John Arbash Meinel, #115947)
 
9591
 
 
9592
* Let TestUIFactoy encode the password prompt with its own stdout.
 
9593
  (Vincent Ladeuil, #110204)
 
9594
 
 
9595
* pycurl should take use the range header that takes the range hint
 
9596
  into account.
 
9597
  (Vincent Ladeuil, #112719)
 
9598
 
 
9599
* WorkingTree4.get_file_sha1 no longer raises an exception when invoked
 
9600
  on a missing file.  (Aaron Bentley, #118186)
 
9601
 
 
9602
* WorkingTree.remove works correctly with tree references, and when pwd is
 
9603
  not the tree root. (Aaron Bentley)
 
9604
 
 
9605
* Merge no longer fails when a file is renamed in one tree and deleted
 
9606
  in the other. (Aaron Bentley, #110279)
 
9607
 
 
9608
* ``revision-info`` now accepts dotted revnos, doesn't require a tree,
 
9609
  and defaults to the last revision (Matthew Fuller, #90048)
 
9610
 
 
9611
* Tests no longer fail when BZR_REMOTE_PATH is set in the environment.
 
9612
  (Daniel Watkins, #111958)
 
9613
 
 
9614
* ``bzr branch -r revid:foo`` can be used to branch any revision in
 
9615
  your repository. (Previously Branch6 only supported revisions in your
 
9616
  mainline). (John Arbash Meinel, #115343)
 
9617
 
 
9618
bzr 0.16
 
9619
########
 
9620
 
 
9621
:Released:  2007-05-07
 
9622
 
 
9623
Bugfixes
 
9624
********
 
9625
 
 
9626
* Handle when you have 2 directories with similar names, but one has a
 
9627
  hyphen. (``'abc'`` versus ``'abc-2'``). The WT4._iter_changes
 
9628
  iterator was using direct comparison and ``'abc/a'`` sorts after
 
9629
  ``'abc-2'``, but ``('abc', 'a')`` sorts before ``('abc-2',)``.
 
9630
  (John Arbash Meinel, #111227)
 
9631
 
 
9632
* Handle when someone renames a file on disk without telling bzr.
 
9633
  Previously we would report the first file as missing, but not show
 
9634
  the new unknown file. (John Arbash Meinel, #111288)
 
9635
 
 
9636
* Avoid error when running hooks after pulling into or pushing from
 
9637
  a branch bound to a smartserver branch.  (Martin Pool, #111968)
 
9638
 
 
9639
Improvements
 
9640
************
 
9641
 
 
9642
* Move developer documentation to doc/developers/. This reduces clutter in
 
9643
  the root of the source tree and allows HACKING to be split into multiple
 
9644
  files. (Robert Collins, Alexander Belchenko)
 
9645
 
 
9646
* Clean up the ``WorkingTree4._iter_changes()`` internal loops as well as
 
9647
  ``DirState.update_entry()``. This optimizes the core logic for ``bzr
 
9648
  diff`` and ``bzr status`` significantly improving the speed of
 
9649
  both. (John Arbash Meinel)
 
9650
 
 
9651
bzr 0.16rc2
 
9652
###########
 
9653
 
 
9654
:Released:  2007-04-30
 
9655
 
 
9656
Bugfixes
 
9657
********
 
9658
 
 
9659
* Handle the case when you delete a file, and then rename another file
 
9660
  on top of it. Also handle the case of ``bzr rm --keep foo``. ``bzr
 
9661
  status`` should show the removed file and an unknown file in its
 
9662
  place. (John Arbash Meinel, #109993)
 
9663
 
 
9664
* Bundles properly read and write revision properties that have an
 
9665
  empty value. And when the value is not ASCII.
 
9666
  (John Arbash Meinel, #109613)
 
9667
 
 
9668
* Fix the bzr commit message to be in text mode.
 
9669
  (Alexander Belchenko, #110901)
 
9670
 
 
9671
* Also handle when you rename a file and create a file where it used
 
9672
  to be. (John Arbash Meinel, #110256)
 
9673
 
 
9674
* ``WorkingTree4._iter_changes`` should not descend into unversioned
 
9675
  directories. (John Arbash Meinel, #110399)
 
9676
 
 
9677
bzr 0.16rc1
 
9678
###########
 
9679
 
 
9680
:Released:  2007-04-26
 
9681
 
 
9682
Notes When Upgrading
 
9683
********************
 
9684
 
 
9685
* ``bzr remove`` and ``bzr rm`` will now remove the working file, if
 
9686
  it could be recovered again.
 
9687
  This has been done for consistency with svn and the unix rm command.
 
9688
  The old ``remove`` behaviour has been retained in the new option
 
9689
  ``bzr remove --keep``, which will just stop versioning the file,
 
9690
  but not delete it.
 
9691
  ``bzr remove --force`` have been added which will always delete the
 
9692
  files.
 
9693
  ``bzr remove`` is also more verbose.
 
9694
  (Marius Kruger, #82602)
 
9695
 
 
9696
Improvements
 
9697
************
 
9698
 
 
9699
* Merge directives can now be supplied as input to `merge` and `pull`,
 
9700
  like bundles can.  (Aaron Bentley)
 
9701
 
 
9702
* Sending the SIGQUIT signal to bzr, which can be done on Unix by
 
9703
  pressing Control-Backslash, drops bzr into a debugger.  Type ``'c'``
 
9704
  to continue.  This can be disabled by setting the environment variable
 
9705
  ``BZR_SIGQUIT_PDB=0``.  (Martin Pool)
 
9706
 
 
9707
* selftest now supports --list-only to list tests instead of running
 
9708
  them. (Ian Clatworthy)
 
9709
 
 
9710
* selftest now supports --exclude PATTERN (or -x PATTERN) to exclude
 
9711
  tests with names that match that regular expression.
 
9712
  (Ian Clatworthy, #102679)
 
9713
 
 
9714
* selftest now supports --randomize SEED to run tests in a random order.
 
9715
  SEED is typically the value 'now' meaning 'use the current time'.
 
9716
  (Ian Clatworthy, #102686)
 
9717
 
 
9718
* New option ``--fixes`` to commit, which stores bug fixing annotations as
 
9719
  revision properties. Built-in support for Launchpad, Debian, Trac and
 
9720
  Bugzilla bug trackers. (Jonathan Lange, James Henstridge, Robert Collins)
 
9721
 
 
9722
* New API, ``bzrlib.bugtracker.tracker_registry``, for adding support for
 
9723
  other bug trackers to ``fixes``. (Jonathan Lange, James Henstridge,
 
9724
  Robert Collins)
 
9725
 
 
9726
* ``selftest`` has new short options ``-f`` and ``-1``.  (Martin
 
9727
  Pool)
 
9728
 
 
9729
* ``bzrlib.tsort.MergeSorter`` optimizations. Change the inner loop
 
9730
  into using local variables instead of going through ``self._var``.
 
9731
  Improves the time to ``merge_sort`` a 10k revision graph by
 
9732
  approximately 40% (~700->400ms).  (John Arbash Meinel)
 
9733
 
 
9734
* ``make docs`` now creates a man page at ``man1/bzr.1`` fixing bug 107388.
 
9735
  (Robert Collins)
 
9736
 
 
9737
* ``bzr help`` now provides cross references to other help topics using
 
9738
  the _see_also facility on command classes. Likewise the bzr_man
 
9739
  documentation, and the bzr.1 man page also include this information.
 
9740
  (Robert Collins)
 
9741
 
 
9742
* Tags are now included in logs, that use the long log formatter.
 
9743
  (Erik Bågfors, Alexander Belchenko)
 
9744
 
 
9745
* ``bzr help`` provides a clearer message when a help topic cannot be
 
9746
  found. (Robert Collins, #107656)
 
9747
 
 
9748
* ``bzr help`` now accepts optional prefixes for command help. The help
 
9749
  for all commands can now be found at ``bzr help commands/COMMANDNAME``
 
9750
  as well as ``bzr help COMMANDNAME`` (which only works for commands
 
9751
  where the name is not the same as a more general help topic).
 
9752
  (Robert Collins)
 
9753
 
 
9754
* ``bzr help PLUGINNAME`` will now return the module docstring from the
 
9755
  plugin PLUGINNAME. (Robert Collins, #50408)
 
9756
 
 
9757
* New help topic ``urlspec`` which lists the availables transports.
 
9758
  (Goffredo Baroncelli)
 
9759
 
 
9760
* doc/server.txt updated to document the default bzr:// port
 
9761
  and also update the blurb about the hpss' current status.
 
9762
  (Robert Collins, #107125).
 
9763
 
 
9764
* ``bzr serve`` now listens on interface 0.0.0.0 by default, making it
 
9765
  serve out to the local LAN (and anyone in the world that can reach the
 
9766
  machine running ``bzr serve``. (Robert Collins, #98918)
 
9767
 
 
9768
* A new smart server protocol version has been added.  It prefixes requests
 
9769
  and responses with an explicit version identifier so that future protocol
 
9770
  revisions can be dealt with gracefully.  (Andrew Bennetts, Robert Collins)
 
9771
 
 
9772
* The bzr protocol version 2 indicates success or failure in every response
 
9773
  without depending on particular commands encoding that consistently,
 
9774
  allowing future client refactorings to be much more robust about error
 
9775
  handling. (Robert Collins, Martin Pool, Andrew Bennetts)
 
9776
 
 
9777
* The smart protocol over HTTP client has been changed to always post to the
 
9778
  same ``.bzr/smart`` URL under the original location when it can.  This allows
 
9779
  HTTP servers to only have to pass URLs ending in .bzr/smart to the smart
 
9780
  server handler, and not arbitrary ``.bzr/*/smart`` URLs.  (Andrew Bennetts)
 
9781
 
 
9782
* digest authentication is now supported for proxies and HTTP by the urllib
 
9783
  based http implementation. Tested against Apache 2.0.55 and Squid
 
9784
  2.6.5. Basic and digest authentication are handled coherently for HTTP
 
9785
  and proxy: if the user is provided in the url (bzr command line for HTTP,
 
9786
  proxy environment variables for proxies), the password is prompted for
 
9787
  (only once). If the password is provided, it is taken into account. Once
 
9788
  the first authentication is successful, all further authentication
 
9789
  roundtrips are avoided by preventively setting the right authentication
 
9790
  header(s).
 
9791
  (Vincent Ladeuil).
 
9792
 
 
9793
Internals
 
9794
*********
 
9795
 
 
9796
* bzrlib API compatability with 0.8 has been dropped, cleaning up some
 
9797
  code paths. (Robert Collins)
 
9798
 
 
9799
* Change the format of chroot urls so that they can be safely manipulated
 
9800
  by generic url utilities without causing the resulting urls to have
 
9801
  escaped the chroot. A side effect of this is that creating a chroot
 
9802
  requires an explicit action using a ChrootServer.
 
9803
  (Robert Collins, Andrew Bennetts)
 
9804
 
 
9805
* Deprecate ``Branch.get_root_id()`` because branches don't have root ids,
 
9806
  rather than fixing bug #96847.  (Aaron Bentley)
 
9807
 
 
9808
* ``WorkingTree.apply_inventory_delta`` provides a better alternative to
 
9809
  ``WorkingTree._write_inventory``.  (Aaron Bentley)
 
9810
 
 
9811
* Convenience method ``TestCase.expectFailure`` ensures that known failures
 
9812
  do not silently pass.  (Aaron Bentley)
 
9813
 
 
9814
* ``Transport.local_abspath`` now raises ``NotLocalUrl`` rather than
 
9815
  ``TransportNotPossible``. (Martin Pool, Ian Clatworthy)
 
9816
 
 
9817
* New SmartServer hooks facility. There are two initial hooks documented
 
9818
  in ``bzrlib.transport.smart.SmartServerHooks``. The two initial hooks allow
 
9819
  plugins to execute code upon server startup and shutdown.
 
9820
  (Robert Collins).
 
9821
 
 
9822
* SmartServer in standalone mode will now close its listening socket
 
9823
  when it stops, rather than waiting for garbage collection. This primarily
 
9824
  fixes test suite hangs when a test tries to connect to a shutdown server.
 
9825
  It may also help improve behaviour when dealing with a server running
 
9826
  on a specific port (rather than dynamically assigned ports).
 
9827
  (Robert Collins)
 
9828
 
 
9829
* Move most SmartServer code into a new package, bzrlib/smart.
 
9830
  bzrlib/transport/remote.py contains just the Transport classes that used
 
9831
  to be in bzrlib/transport/smart.py.  (Andrew Bennetts)
 
9832
 
 
9833
* urllib http implementation avoid roundtrips associated with
 
9834
  401 (and 407) errors once the authentication succeeds.
 
9835
  (Vincent Ladeuil).
 
9836
 
 
9837
* urlib http now supports querying the user for a proxy password if
 
9838
  needed. Realm is shown in the prompt for both HTTP and proxy
 
9839
  authentication when the user is required to type a password.
 
9840
  (Vincent Ladeuil).
 
9841
 
 
9842
* Renamed SmartTransport (and subclasses like SmartTCPTransport) to
 
9843
  RemoteTransport (and subclasses to RemoteTCPTransport, etc).  This is more
 
9844
  consistent with its new home in ``bzrlib/transport/remote.py``, and because
 
9845
  it's not really a "smart" transport, just one that does file operations
 
9846
  via remote procedure calls.  (Andrew Bennetts)
 
9847
 
 
9848
* The ``lock_write`` method of ``LockableFiles``, ``Repository`` and
 
9849
  ``Branch`` now accept a ``token`` keyword argument, so that separate
 
9850
  instances of those objects can share a lock if it has the right token.
 
9851
  (Andrew Bennetts, Robert Collins)
 
9852
 
 
9853
* New method ``get_branch_reference`` on ``BzrDir`` allows the detection of
 
9854
  branch references - which the smart server component needs.
 
9855
 
 
9856
* The Repository API ``make_working_trees`` is now permitted to return
 
9857
  False when ``set_make_working_trees`` is not implemented - previously
 
9858
  an unimplemented ``set_make_working_trees`` implied the result True
 
9859
  from ``make_working_trees``. This has been changed to accomodate the
 
9860
  smart server, where it does not make sense (at this point) to ever
 
9861
  make working trees by default. (Robert Collins)
 
9862
 
 
9863
* Command objects can now declare related help topics by having _see_also
 
9864
  set to a list of related topic. (Robert Collins)
 
9865
 
 
9866
* ``bzrlib.help`` now delegates to the Command class for Command specific
 
9867
  help. (Robert Collins)
 
9868
 
 
9869
* New class ``TransportListRegistry``, derived from the Registry class, which
 
9870
  simplifies tracking the available Transports. (Goffredo Baroncelli)
 
9871
 
 
9872
* New function ``Branch.get_revision_id_to_revno_map`` which will
 
9873
  return a dictionary mapping revision ids to dotted revnos. Since
 
9874
  dotted revnos are defined in the context of the branch tip, it makes
 
9875
  sense to generate them from a ``Branch`` object.
 
9876
  (John Arbash Meinel)
 
9877
 
 
9878
* Fix the 'Unprintable error' message display to use the repr of the
 
9879
  exception that prevented printing the error because the str value
 
9880
  for it is often not useful in debugging (e.g. KeyError('foo') has a
 
9881
  str() of 'foo' but a repr of 'KeyError('foo')' which is much more
 
9882
  useful. (Robert Collins)
 
9883
 
 
9884
* ``urlutils.normalize_url`` now unescapes unreserved characters, such as "~".
 
9885
  (Andrew Bennetts)
 
9886
 
 
9887
Bugfixes
 
9888
********
 
9889
 
 
9890
* Don't fail bundle selftest if email has 'two' embedded.
 
9891
  (Ian Clatworthy, #98510)
 
9892
 
 
9893
* Remove ``--verbose`` from ``bzr bundle``. It didn't work anyway.
 
9894
  (Robert Widhopf-Fenk, #98591)
 
9895
 
 
9896
* Remove ``--basis`` from the checkout/branch commands - it didn't work
 
9897
  properly and is no longer beneficial.
 
9898
  (Robert Collins, #53675, #43486)
 
9899
 
 
9900
* Don't produce encoding error when adding duplicate files.
 
9901
  (Aaron Bentley)
 
9902
 
 
9903
* Fix ``bzr log <file>`` so it only logs the revisions that changed
 
9904
  the file, and does it faster.
 
9905
  (Kent Gibson, John Arbash Meinel, #51980, #69477)
 
9906
 
 
9907
* Fix ``InterDirstateTre._iter_changes`` to handle when we come across
 
9908
  an empty versioned directory, which now has files in it.
 
9909
  (John Arbash Meinel, #104257)
 
9910
 
 
9911
* Teach ``common_ancestor`` to shortcut when the tip of one branch is
 
9912
  inside the ancestry of the other. Saves a lot of graph processing
 
9913
  (with an ancestry of 16k revisions, ``bzr merge ../already-merged``
 
9914
  changes from 2m10s to 13s).  (John Arbash Meinel, #103757)
 
9915
 
 
9916
* Fix ``show_diff_trees`` to handle the case when a file is modified,
 
9917
  and the containing directory is renamed. (The file path is different
 
9918
  in this versus base, but it isn't marked as a rename).
 
9919
  (John Arbash Meinel, #103870)
 
9920
 
 
9921
* FTP now works even when the FTP server does not support atomic rename.
 
9922
  (Aaron Bentley, #89436)
 
9923
 
 
9924
* Correct handling in bundles and merge directives of timezones with
 
9925
  that are not an integer number of hours offset from UTC.  Always
 
9926
  represent the epoch time in UTC to avoid problems with formatting
 
9927
  earlier times on win32.  (Martin Pool, Alexander Belchenko, John
 
9928
  Arbash Meinel)
 
9929
 
 
9930
* Typo in the help for ``register-branch`` fixed. (Robert Collins, #96770)
 
9931
 
 
9932
* "dirstate" and "dirstate-tags" formats now produce branches compatible
 
9933
  with old versions of bzr. (Aaron Bentley, #107168))
 
9934
 
 
9935
* Handle moving a directory when children have been added, removed,
 
9936
  and renamed. (John Arbash Meinel, #105479)
 
9937
 
 
9938
* Don't preventively use basic authentication for proxy before receiving a
 
9939
  407 error. Otherwise people willing to use other authentication schemes
 
9940
  may expose their password in the clear (or nearly). This add one
 
9941
  roundtrip in case basic authentication should be used, but plug the
 
9942
  security hole.
 
9943
  (Vincent Ladeuil)
 
9944
 
 
9945
* Handle http and proxy digest authentication.
 
9946
  (Vincent Ladeuil, #94034).
 
9947
 
 
9948
Testing
 
9949
*******
 
9950
 
 
9951
* Added ``bzrlib.strace.strace`` which will strace a single callable and
 
9952
  return a StraceResult object which contains just the syscalls involved
 
9953
  in running it. (Robert Collins)
 
9954
 
 
9955
* New test method ``reduceLockdirTimeout`` to drop the default (ui-centric)
 
9956
  default time down to one suitable for tests. (Andrew Bennetts)
 
9957
 
 
9958
* Add new ``vfs_transport_factory`` attribute on tests which provides the
 
9959
  common vfs backing for both the readonly and readwrite transports.
 
9960
  This allows the RemoteObject tests to back onto local disk or memory,
 
9961
  and use the existing ``transport_server`` attribute all tests know about
 
9962
  to be the smart server transport. This in turn allows tests to
 
9963
  differentiate between 'transport to access the branch', and
 
9964
  'transport which is a VFS' - which matters in Remote* tests.
 
9965
  (Robert Collins, Andrew Bennetts)
 
9966
 
 
9967
* The ``make_branch_and_tree`` method for tests will now create a
 
9968
  lightweight checkout for the tree if the ``vfs_transport_factory`` is not
 
9969
  a LocalURLServer. (Robert Collins, Andrew Bennetts)
 
9970
 
 
9971
* Branch implementation tests have been audited to ensure that all urls
 
9972
  passed to Branch APIs use proper urls, except when local-disk paths
 
9973
  are intended. This is so that tests correctly access the test transport
 
9974
  which is often not equivalent to local disk in Remote* tests. As part
 
9975
  of this many tests were adjusted to remove dependencies on local disk
 
9976
  access.
 
9977
  (Robert Collins, Andrew Bennetts)
 
9978
 
 
9979
* Mark bzrlib.tests and bzrlib.tests.TestUtil as providing assertFOO helper
 
9980
  functions by adding a ``__unittest`` global attribute. (Robert Collins,
 
9981
  Andrew Bennetts, Martin Pool, Jonathan Lange)
 
9982
 
 
9983
* Refactored proxy and authentication handling to simplify the
 
9984
  implementation of new auth schemes for both http and proxy.
 
9985
  (Vincent Ladeuil)
 
9986
 
 
9987
bzr 0.15
 
9988
########
 
9989
 
 
9990
:Released: 2007-04-01
 
9991
 
 
9992
Bugfixes
 
9993
********
 
9994
 
 
9995
* Handle incompatible repositories as a user issue when fetching.
 
9996
  (Aaron Bentley)
 
9997
 
 
9998
* Don't give a recommendation to upgrade when branching or
 
9999
  checking out a branch that contains an old-format working tree.
 
10000
  (Martin Pool)
 
10001
 
 
10002
bzr 0.15rc3
 
10003
###########
 
10004
 
 
10005
:Released:  2007-03-26
 
10006
 
 
10007
Changes
 
10008
*******
 
10009
 
 
10010
* A warning is now displayed when opening working trees in older
 
10011
  formats, to encourage people to upgrade to WorkingTreeFormat4.
 
10012
  (Martin Pool)
 
10013
 
 
10014
Improvements
 
10015
************
 
10016
 
 
10017
* HTTP redirections are now taken into account when a branch (or a
 
10018
  bundle) is accessed for the first time. A message is issued at each
 
10019
  redirection to inform the user. In the past, http redirections were
 
10020
  silently followed for each request which significantly degraded the
 
10021
  performances. The http redirections are not followed anymore by
 
10022
  default, instead a RedirectRequested exception is raised. For bzrlib
 
10023
  users needing to follow http redirections anyway,
 
10024
  ``bzrlib.transport.do_catching_redirections`` provide an easy transition
 
10025
  path.  (vila)
 
10026
 
 
10027
Internals
 
10028
*********
 
10029
 
 
10030
* Added ``ReadLock.temporary_write_lock()`` to allow upgrading an OS read
 
10031
  lock to an OS write lock. Linux can do this without unlocking, Win32
 
10032
  needs to unlock in between. (John Arbash Meinel)
 
10033
 
 
10034
* New parameter ``recommend_upgrade`` to ``BzrDir.open_workingtree``
 
10035
  to silence (when false) warnings about opening old formats.
 
10036
  (Martin Pool)
 
10037
 
 
10038
* Fix minor performance regression with bzr-0.15 on pre-dirstate
 
10039
  trees. (We were reading the working inventory too many times).
 
10040
  (John Arbash Meinel)
 
10041
 
 
10042
* Remove ``Branch.get_transaction()`` in favour of a simple cache of
 
10043
  ``revision_history``.  Branch subclasses should override
 
10044
  ``_gen_revision_history`` rather than ``revision_history`` to make use of
 
10045
  this cache, and call ``_clear_revision_history_cache`` and
 
10046
  ``_cache_revision_history`` at appropriate times. (Andrew Bennetts)
 
10047
 
 
10048
Bugfixes
 
10049
********
 
10050
 
 
10051
* Take ``smtp_server`` from user config into account.
 
10052
  (vila, #92195)
 
10053
 
 
10054
* Restore Unicode filename handling for versioned and unversioned files.
 
10055
  (John Arbash Meinel, #92608)
 
10056
 
 
10057
* Don't fail during ``bzr commit`` if a file is marked removed, and
 
10058
  the containing directory is auto-removed.  (John Arbash Meinel, #93681)
 
10059
 
 
10060
* ``bzr status FILENAME`` failed on Windows because of an uncommon
 
10061
  errno. (``ERROR_DIRECTORY == 267 != ENOTDIR``).
 
10062
  (Wouter van Heyst, John Arbash Meinel, #90819)
 
10063
 
 
10064
* ``bzr checkout source`` should create a local branch in the same
 
10065
  format as source. (John Arbash Meinel, #93854)
 
10066
 
 
10067
* ``bzr commit`` with a kind change was failing to update the
 
10068
  last-changed-revision for directories.  The
 
10069
  InventoryDirectory._unchanged only looked at the ``parent_id`` and name,
 
10070
  ignoring the fact that the kind could have changed, too.
 
10071
  (John Arbash Meinel, #90111)
 
10072
 
 
10073
* ``bzr mv dir/subdir other`` was incorrectly updating files inside
 
10074
  the directory. So that there was a chance it would break commit,
 
10075
  etc. (John Arbash Meinel, #94037)
 
10076
 
 
10077
* Correctly handles mutiple permanent http redirections.
 
10078
  (vila, #88780)
 
10079
 
 
10080
bzr 0.15rc2
 
10081
###########
 
10082
 
 
10083
:Released:  2007-03-14
 
10084
 
 
10085
Notes When Upgrading
 
10086
********************
 
10087
 
 
10088
* Release 0.15rc2 of bzr changes the ``bzr init-repo`` command to
 
10089
  default to ``--trees`` instead of ``--no-trees``.
 
10090
  Existing shared repositories are not affected.
 
10091
 
 
10092
Improvements
 
10093
************
 
10094
 
 
10095
* New ``merge-directive`` command to generate machine- and human-readable
 
10096
  merge requests.  (Aaron Bentley)
 
10097
 
 
10098
* New ``submit:`` revision specifier makes it easy to diff against the
 
10099
  common ancestor with the submit location (Aaron Bentley)
 
10100
 
 
10101
* Added support for Putty's SSH implementation. (Dmitry Vasiliev)
 
10102
 
 
10103
* Added ``bzr status --versioned`` to report only versioned files,
 
10104
  not unknowns. (Kent Gibson)
 
10105
 
 
10106
* Merge now autodetects the correct line-ending style for its conflict
 
10107
  markers.  (Aaron Bentley)
 
10108
 
 
10109
Internals
 
10110
*********
 
10111
 
 
10112
* Refactored SSH vendor registration into SSHVendorManager class.
 
10113
  (Dmitry Vasiliev)
 
10114
 
 
10115
Bugfixes
 
10116
********
 
10117
 
 
10118
* New ``--numbered-dirs`` option to ``bzr selftest`` to use
 
10119
  numbered dirs for TestCaseInTempDir. This is default behavior
 
10120
  on Windows. Anyone can force named dirs on Windows
 
10121
  with ``--no-numbered-dirs``. (Alexander Belchenko)
 
10122
 
 
10123
* Fix ``RevisionSpec_revid`` to handle the Unicode strings passed in
 
10124
  from the command line. (Marien Zwart, #90501)
 
10125
 
 
10126
* Fix ``TreeTransform._iter_changes`` when both the source and
 
10127
  destination are missing. (Aaron Bentley, #88842)
 
10128
 
 
10129
* Fix commit of merges with symlinks in dirstate trees.
 
10130
  (Marien Zwart)
 
10131
 
 
10132
* Switch the ``bzr init-repo`` default from --no-trees to --trees.
 
10133
  (Wouter van Heyst, #53483)
 
10134
 
 
10135
 
 
10136
bzr 0.15rc1
 
10137
###########
 
10138
 
 
10139
:Released:  2007-03-07
 
10140
 
 
10141
Surprises
 
10142
*********
 
10143
 
 
10144
* The default disk format has changed. Please run 'bzr upgrade' in your
 
10145
  working trees to upgrade. This new default is compatible for network
 
10146
  operations, but not for local operations. That is, if you have two
 
10147
  versions of bzr installed locally, after upgrading you can only use the
 
10148
  bzr 0.15 version. This new default does not enable tags or nested-trees
 
10149
  as they are incompatible with bzr versions before 0.15 over the network.
 
10150
 
 
10151
* For users of bzrlib: Two major changes have been made to the working tree
 
10152
  api in bzrlib. The first is that many methods and attributes, including
 
10153
  the inventory attribute, are no longer valid for use until one of
 
10154
  ``lock_read``/``lock_write``/``lock_tree_write`` has been called,
 
10155
  and become invalid again after unlock is called. This has been done
 
10156
  to improve performance and correctness as part of the dirstate
 
10157
  development.
 
10158
  (Robert Collins, John A Meinel, Martin Pool, and others).
 
10159
 
 
10160
* For users of bzrlib: The attribute 'tree.inventory' should be considered
 
10161
  readonly. Previously it was possible to directly alter this attribute, or
 
10162
  its contents, and have the tree notice this. This has been made
 
10163
  unsupported - it may work in some tree formats, but in the newer dirstate
 
10164
  format such actions will have no effect and will be ignored, or even
 
10165
  cause assertions. All operations possible can still be carried out by a
 
10166
  combination of the tree API, and the bzrlib.transform API. (Robert
 
10167
  Collins, John A Meinel, Martin Pool, and others).
 
10168
 
 
10169
Improvements
 
10170
************
 
10171
 
 
10172
* Support for OS Windows 98. Also .bzr.log on any windows system
 
10173
  saved in My Documents folder. (Alexander Belchenko)
 
10174
 
 
10175
* ``bzr mv`` enhanced to support already moved files.
 
10176
  In the past the mv command would have failed if the source file doesn't
 
10177
  exist. In this situation ``bzr mv`` would now detect that the file has
 
10178
  already moved and update the repository accordingly, if the target file
 
10179
  does exist.
 
10180
  A new option ``--after`` has been added so that if two files already
 
10181
  exist, you could notify Bazaar that you have moved a (versioned) file
 
10182
  and replaced it with another. Thus in this case ``bzr move --after``
 
10183
  will only update the Bazaar identifier.
 
10184
  (Steffen Eichenberg, Marius Kruger)
 
10185
 
 
10186
* ``ls`` now works on treeless branches and remote branches.
 
10187
  (Aaron Bentley)
 
10188
 
 
10189
* ``bzr help global-options`` describes the global options.
 
10190
  (Aaron Bentley)
 
10191
 
 
10192
* ``bzr pull --overwrite`` will now correctly overwrite checkouts.
 
10193
  (Robert Collins)
 
10194
 
 
10195
* Files are now allowed to change kind (e.g. from file to symlink).
 
10196
  Supported by ``commit``, ``revert`` and ``status``
 
10197
  (Aaron Bentley)
 
10198
 
 
10199
* ``inventory`` and ``unknowns`` hidden in favour of ``ls``
 
10200
  (Aaron Bentley)
 
10201
 
 
10202
* ``bzr help checkouts`` descibes what checkouts are and some possible
 
10203
  uses of them. (James Westby, Aaron Bentley)
 
10204
 
 
10205
* A new ``-d`` option to push, pull and merge overrides the default
 
10206
  directory.  (Martin Pool)
 
10207
 
 
10208
* Branch format 6: smaller, and potentially faster than format 5.  Supports
 
10209
  ``append_history_only`` mode, where the log view and revnos do not change,
 
10210
  except by being added to.  Stores policy settings in
 
10211
  ".bzr/branch/branch.conf".
 
10212
 
 
10213
* ``append_only`` branches:  Format 6 branches may be configured so that log
 
10214
  view and revnos are always consistent.  Either create the branch using
 
10215
  "bzr init --append-revisions-only" or edit the config file as descriped
 
10216
  in docs/configuration.txt.
 
10217
 
 
10218
* rebind: Format 6 branches retain the last-used bind location, so if you
 
10219
  "bzr unbind", you can "bzr bind" to bind to the previously-selected
 
10220
  bind location.
 
10221
 
 
10222
* Builtin tags support, created and deleted by the ``tag`` command and
 
10223
  stored in the branch.  Tags can be accessed with the revisionspec
 
10224
  ``-rtag:``, and listed with ``bzr tags``.  Tags are not versioned
 
10225
  at present. Tags require a network incompatible upgrade. To perform this
 
10226
  upgrade, run ``bzr upgrade --dirstate-tags`` in your branch and
 
10227
  repositories. (Martin Pool)
 
10228
 
 
10229
* The ``bzr://`` transport now has a well-known port number, 4155,
 
10230
  which it will use by default.  (Andrew Bennetts, Martin Pool)
 
10231
 
 
10232
* Bazaar now looks for user-installed plugins before looking for site-wide
 
10233
  plugins. (Jonathan Lange)
 
10234
 
 
10235
* ``bzr resolve`` now detects and marks resolved text conflicts.
 
10236
  (Aaron Bentley)
 
10237
 
 
10238
Internals
 
10239
*********
 
10240
 
 
10241
* Internally revision ids and file ids are now passed around as utf-8
 
10242
  bytestrings, rather than treating them as Unicode strings. This has
 
10243
  performance benefits for Knits, since we no longer need to decode the
 
10244
  revision id for each line of content, nor for each entry in the index.
 
10245
  This will also help with the future dirstate format.
 
10246
  (John Arbash Meinel)
 
10247
 
 
10248
* Reserved ids (any revision-id ending in a colon) are rejected by
 
10249
  versionedfiles, repositories, branches, and working trees
 
10250
  (Aaron Bentley)
 
10251
 
 
10252
* Minor performance improvement by not creating a ProgressBar for
 
10253
  every KnitIndex we create. (about 90ms for a bzr.dev tree)
 
10254
  (John Arbash Meinel)
 
10255
 
 
10256
* New easier to use Branch hooks facility. There are five initial hooks,
 
10257
  all documented in bzrlib.branch.BranchHooks.__init__ - ``'set_rh'``,
 
10258
  ``'post_push'``, ``'post_pull'``, ``'post_commit'``,
 
10259
  ``'post_uncommit'``. These hooks fire after the matching operation
 
10260
  on a branch has taken place, and were originally added for the
 
10261
  branchrss plugin. (Robert Collins)
 
10262
 
 
10263
* New method ``Branch.push()`` which should be used when pushing from a
 
10264
  branch as it makes performance and policy decisions to match the UI
 
10265
  level command ``push``. (Robert Collins).
 
10266
 
 
10267
* Add a new method ``Tree.revision_tree`` which allows access to cached
 
10268
  trees for arbitrary revisions. This allows the in development dirstate
 
10269
  tree format to provide access to the callers to cached copies of
 
10270
  inventory data which are cheaper to access than inventories from the
 
10271
  repository.
 
10272
  (Robert Collins, Martin Pool)
 
10273
 
 
10274
* New ``Branch.last_revision_info`` method, this is being done to allow
 
10275
  optimization of requests for both the number of revisions and the last
 
10276
  revision of a branch with smartservers and potentially future branch
 
10277
  formats. (Wouter van Heyst, Robert Collins)
 
10278
 
 
10279
* Allow ``'import bzrlib.plugins.NAME'`` to work when the plugin NAME has not
 
10280
  yet been loaded by ``load_plugins()``. This allows plugins to depend on each
 
10281
  other for code reuse without requiring users to perform file-renaming
 
10282
  gymnastics. (Robert Collins)
 
10283
 
 
10284
* New Repository method ``'gather_stats'`` for statistic data collection.
 
10285
  This is expected to grow to cover a number of related uses mainly
 
10286
  related to bzr info. (Robert Collins)
 
10287
 
 
10288
* Log formatters are now managed with a registry.
 
10289
  ``log.register_formatter`` continues to work, but callers accessing
 
10290
  the FORMATTERS dictionary directly will not.
 
10291
 
 
10292
* Allow a start message to be passed to the ``edit_commit_message``
 
10293
  function.  This will be placed in the message offered to the user
 
10294
  for editing above the separator. It allows a template commit message
 
10295
  to be used more easily. (James Westby)
 
10296
 
 
10297
* ``GPGStrategy.sign()`` will now raise ``BzrBadParameterUnicode`` if
 
10298
  you pass a Unicode string rather than an 8-bit string. Callers need
 
10299
  to be updated to encode first. (John Arbash Meinel)
 
10300
 
 
10301
* Branch.push, pull, merge now return Result objects with information
 
10302
  about what happened, rather than a scattering of various methods.  These
 
10303
  are also passed to the post hooks.  (Martin Pool)
 
10304
 
 
10305
* File formats and architecture is in place for managing a forest of trees
 
10306
  in bzr, and splitting up existing trees into smaller subtrees, and
 
10307
  finally joining trees to make a larger tree. This is the first iteration
 
10308
  of this support, and the user-facing aspects still require substantial
 
10309
  work.  If you wish to experiment with it, use ``bzr upgrade
 
10310
  --dirstate-with-subtree`` in your working trees and repositories.
 
10311
  You can use the hidden commands ``split`` and ``join`` and to create
 
10312
  and manipulate nested trees, but please consider using the nested-trees
 
10313
  branch, which contains substantial UI improvements, instead.
 
10314
  http://code.aaronbentley.com/bzr/bzrrepo/nested-trees/
 
10315
  (Aaron Bentley, Martin Pool, Robert Collins).
 
10316
 
 
10317
Bugfixes
 
10318
********
 
10319
 
 
10320
* ``bzr annotate`` now uses dotted revnos from the viewpoint of the
 
10321
  branch, rather than the last changed revision of the file.
 
10322
  (John Arbash Meinel, #82158)
 
10323
 
 
10324
* Lock operations no longer hang if they encounter a permission problem.
 
10325
  (Aaron Bentley)
 
10326
 
 
10327
* ``bzr push`` can resume a push that was canceled before it finished.
 
10328
  Also, it can push even if the target directory exists if you supply
 
10329
  the ``--use-existing-dir`` flag.
 
10330
  (John Arbash Meinel, #30576, #45504)
 
10331
 
 
10332
* Fix http proxy authentication when user and an optional
 
10333
  password appears in the ``*_proxy`` vars. (Vincent Ladeuil,
 
10334
  #83954).
 
10335
 
 
10336
* ``bzr log branch/file`` works for local treeless branches
 
10337
  (Aaron Bentley, #84247)
 
10338
 
 
10339
* Fix problem with UNC paths on Windows 98. (Alexander Belchenko, #84728)
 
10340
 
 
10341
* Searching location of CA bundle for PyCurl in env variable
 
10342
  (``CURL_CA_BUNDLE``), and on win32 along the PATH.
 
10343
  (Alexander Belchenko, #82086)
 
10344
 
 
10345
* ``bzr init`` works with unicode argument LOCATION.
 
10346
  (Alexander Belchenko, #85599)
 
10347
 
 
10348
* Raise ``DependencyNotPresent`` if pycurl do not support https.
 
10349
  (Vincent Ladeuil, #85305)
 
10350
 
 
10351
* Invalid proxy env variables should not cause a traceback.
 
10352
  (Vincent Ladeuil, #87765)
 
10353
 
 
10354
* Ignore patterns normalised to use '/' path separator.
 
10355
  (Kent Gibson, #86451)
 
10356
 
 
10357
* bzr rocks. It sure does! Fix case. (Vincent Ladeuil, #78026)
 
10358
 
 
10359
* Fix bzrtools shelve command for removed lines beginning with "--"
 
10360
  (Johan Dahlberg, #75577)
 
10361
 
 
10362
Testing
 
10363
*******
 
10364
 
 
10365
* New ``--first`` option to ``bzr selftest`` to run specified tests
 
10366
  before the rest of the suite.  (Martin Pool)
 
10367
 
 
10368
 
 
10369
bzr 0.14
 
10370
########
 
10371
 
 
10372
:Released:  2007-01-23
 
10373
 
 
10374
Improvements
 
10375
************
 
10376
 
 
10377
* ``bzr help global-options`` describes the global options. (Aaron Bentley)
 
10378
 
 
10379
Bug Fixes
 
10380
*********
 
10381
 
 
10382
* Skip documentation generation tests if the tools to do so are not
 
10383
  available. Fixes running selftest for installled copies of bzr.
 
10384
  (John Arbash Meinel, #80330)
 
10385
 
 
10386
* Fix the code that discovers whether bzr is being run from it's
 
10387
  working tree to handle the case when it isn't but the directory
 
10388
  it is in is below a repository. (James Westby, #77306)
 
10389
 
 
10390
 
 
10391
bzr 0.14rc1
 
10392
###########
 
10393
 
 
10394
:Released:  2007-01-16
 
10395
 
 
10396
Improvements
 
10397
************
 
10398
 
 
10399
* New connection: ``bzr+http://`` which supports tunnelling the smart
 
10400
  protocol over an HTTP connection. If writing is enabled on the bzr
 
10401
  server, then you can write over the http connection.
 
10402
  (Andrew Bennetts, John Arbash Meinel)
 
10403
 
 
10404
* Aliases now support quotation marks, so they can contain whitespace
 
10405
  (Marius Kruger)
 
10406
 
 
10407
* PyCurlTransport now use a single curl object. By specifying explicitly
 
10408
  the 'Range' header, we avoid the need to use two different curl objects
 
10409
  (and two connections to the same server). (Vincent Ladeuil)
 
10410
 
 
10411
* ``bzr commit`` does not prompt for a message until it is very likely to
 
10412
  succeed.  (Aaron Bentley)
 
10413
 
 
10414
* ``bzr conflicts`` now takes --text to list pathnames of text conflicts
 
10415
  (Aaron Bentley)
 
10416
 
 
10417
* Fix ``iter_lines_added_or_present_in_versions`` to use a set instead
 
10418
  of a list while checking if a revision id was requested. Takes 10s
 
10419
  off of the ``fileids_affected_by_revision_ids`` time, which is 10s
 
10420
  of the ``bzr branch`` time. Also improve ``fileids_...`` time by
 
10421
  filtering lines with a regex rather than multiple ``str.find()``
 
10422
  calls. (saves another 300ms) (John Arbash Meinel)
 
10423
 
 
10424
* Policy can be set for each configuration key. This allows keys to be
 
10425
  inherited properly across configuration entries. For example, this
 
10426
  should enable you to do::
 
10427
 
 
10428
    [/home/user/project]
 
10429
    push_location = sftp://host/srv/project/
 
10430
    push_location:policy = appendpath
 
10431
 
 
10432
  And then a branch like ``/home/user/project/mybranch`` should get an
 
10433
  automatic push location of ``sftp://host/srv/project/mybranch``.
 
10434
  (James Henstridge)
 
10435
 
 
10436
* Added ``bzr status --short`` to make status report svn style flags
 
10437
  for each file.  For example::
 
10438
 
 
10439
    $ bzr status --short
 
10440
    A  foo
 
10441
    A  bar
 
10442
    D  baz
 
10443
    ?  wooley
 
10444
 
 
10445
* 'bzr selftest --clean-output' allows easily clean temporary tests
 
10446
  directories without running tests. (Alexander Belchenko)
 
10447
 
 
10448
* ``bzr help hidden-commands`` lists all hidden commands. (Aaron Bentley)
 
10449
 
 
10450
* ``bzr merge`` now has an option ``--pull`` to fall back to pull if
 
10451
  local is fully merged into remote. (Jan Hudec)
 
10452
 
 
10453
* ``bzr help formats`` describes available directory formats. (Aaron Bentley)
 
10454
 
 
10455
Internals
 
10456
*********
 
10457
 
 
10458
* A few tweaks directly to ``fileids_affected_by_revision_ids`` to
 
10459
  help speed up processing, as well allowing to extract unannotated
 
10460
  lines. Between the two ``fileids_affected_by_revision_ids`` is
 
10461
  improved by approx 10%. (John Arbash Meinel)
 
10462
 
 
10463
* Change Revision serialization to only write out millisecond
 
10464
  resolution. Rather than expecting floating point serialization to
 
10465
  preserve more resolution than we need. (Henri Weichers, Martin Pool)
 
10466
 
 
10467
* Test suite ends cleanly on Windows.  (Vincent Ladeuil)
 
10468
 
 
10469
* When ``encoding_type`` attribute of class Command is equal to 'exact',
 
10470
  force sys.stdout to be a binary stream on Windows, and therefore
 
10471
  keep exact line-endings (without LF -> CRLF conversion).
 
10472
  (Alexander Belchenko)
 
10473
 
 
10474
* Single-letter short options are no longer globally declared.  (Martin
 
10475
  Pool)
 
10476
 
 
10477
* Before using detected user/terminal encoding bzr should check
 
10478
  that Python has corresponding codec. (Alexander Belchenko)
 
10479
 
 
10480
* Formats for end-user selection are provided via a FormatRegistry (Aaron Bentley)
 
10481
 
 
10482
Bug Fixes
 
10483
*********
 
10484
 
 
10485
* ``bzr missing --verbose`` was showing adds/removals in the wrong
 
10486
  direction. (John Arbash Meinel)
 
10487
 
 
10488
* ``bzr annotate`` now defaults to showing dotted revnos for merged
 
10489
  revisions. It cuts them off at a depth of 12 characters, but you can
 
10490
  supply ``--long`` to see the full number. You can also use
 
10491
  ``--show-ids`` to display the original revision ids, rather than
 
10492
  revision numbers and committer names. (John Arbash Meinel, #75637)
 
10493
 
 
10494
* bzr now supports Win32 UNC path (e.g. ``\HOST\path``.
 
10495
  (Alexander Belchenko, #57869)
 
10496
 
 
10497
* Win32-specific: output of cat, bundle and diff commands don't mangle
 
10498
  line-endings (Alexander Belchenko, #55276)
 
10499
 
 
10500
* Replace broken fnmatch based ignore pattern matching with custom pattern
 
10501
  matcher.
 
10502
  (Kent Gibson, Jan Hudec #57637)
 
10503
 
 
10504
* pycurl and urllib can detect short reads at different places. Update
 
10505
  the test suite to test more cases. Also detect http error code 416
 
10506
  which was raised for that specific bug. Also enhance the urllib
 
10507
  robustness by detecting invalid ranges (and pycurl's one by detecting
 
10508
  short reads during the initial GET). (Vincent Ladeuil, #73948)
 
10509
 
 
10510
* The urllib connection sharing interacts badly with urllib2
 
10511
  proxy setting (the connections didn't go thru the proxy
 
10512
  anymore). Defining a proper ProxyHandler solves the
 
10513
  problem.  (Vincent Ladeuil, #74759)
 
10514
 
 
10515
* Use urlutils to generate relative URLs, not osutils
 
10516
  (Aaron Bentley, #76229)
 
10517
 
 
10518
* ``bzr status`` in a readonly directory should work without giving
 
10519
  lots of errors. (John Arbash Meinel, #76299)
 
10520
 
 
10521
* Mention the revisionspec topic for the revision option help.
 
10522
  (Wouter van Heyst, #31663)
 
10523
 
 
10524
* Allow plugins import from zip archives.
 
10525
  (Alexander Belchenko, #68124)
 
10526
 
 
10527
 
 
10528
bzr 0.13
 
10529
########
 
10530
 
 
10531
:Released:  2006-12-05
 
10532
 
 
10533
No changes from 0.13rc
 
10534
 
 
10535
 
 
10536
bzr 0.13rc1
 
10537
###########
 
10538
 
 
10539
:Released:  2006-11-27
 
10540
 
 
10541
Improvements
 
10542
************
 
10543
 
 
10544
* New command ``bzr remove-tree`` allows the removal of the working
 
10545
  tree from a branch.
 
10546
  (Daniel Silverstone)
 
10547
 
 
10548
* urllib uses shared keep-alive connections, so http
 
10549
  operations are substantially faster.
 
10550
  (Vincent Ladeuil, #53654)
 
10551
 
 
10552
* ``bzr export`` allows an optional branch parameter, to export a bzr
 
10553
  tree from some other url. For example:
 
10554
  ``bzr export bzr.tar.gz http://bazaar-vcs.org/bzr/bzr.dev``
 
10555
  (Daniel Silverstone)
 
10556
 
 
10557
* Added ``bzr help topics`` to the bzr help system. This gives a
 
10558
  location for general information, outside of a specific command.
 
10559
  This includes updates for ``bzr help revisionspec`` the first topic
 
10560
  included. (Goffredo Baroncelli, John Arbash Meinel, #42714)
 
10561
 
 
10562
* WSGI-compatible HTTP smart server.  See ``doc/http_smart_server.txt``.
 
10563
  (Andrew Bennetts)
 
10564
 
 
10565
* Knit files will now cache full texts only when the size of the
 
10566
  deltas is as large as the size of the fulltext. (Or after 200
 
10567
  deltas, whichever comes first). This has the most benefit on large
 
10568
  files with small changes, such as the inventory for a large project.
 
10569
  (eg For a project with 2500 files, and 7500 revisions, it changes
 
10570
  the size of inventory.knit from 11MB to 5.4MB) (John Arbash Meinel)
 
10571
 
 
10572
Internals
 
10573
*********
 
10574
 
 
10575
* New -D option given before the command line turns on debugging output
 
10576
  for particular areas.  -Derror shows tracebacks on all errors.
 
10577
  (Martin Pool)
 
10578
 
 
10579
* Clean up ``bzr selftest --benchmark bundle`` to correct an import,
 
10580
  and remove benchmarks that take longer than 10min to run.
 
10581
  (John Arbash Meinel)
 
10582
 
 
10583
* Use ``time.time()`` instead of ``time.clock()`` to decide on
 
10584
  progress throttling. Because ``time.clock()`` is actually CPU time,
 
10585
  so over a high-latency connection, too many updates get throttled.
 
10586
  (John Arbash Meinel)
 
10587
 
 
10588
* ``MemoryTransport.list_dir()`` would strip the first character for
 
10589
  files or directories in root directory. (John Arbash Meinel)
 
10590
 
 
10591
* New method ``get_branch_reference`` on 'BzrDir' allows the detection of
 
10592
  branch references - which the smart server component needs.
 
10593
 
 
10594
* New ``ChrootTransportDecorator``, accessible via the ``chroot+`` url
 
10595
  prefix.  It disallows any access to locations above a set URL.  (Andrew
 
10596
  Bennetts)
 
10597
 
 
10598
Bug Fixes
 
10599
*********
 
10600
 
 
10601
* Now ``_KnitIndex`` properly decode revision ids when loading index data.
 
10602
  And optimize the knit index parsing code.
 
10603
  (Dmitry Vasiliev, John Arbash Meinel)
 
10604
 
 
10605
* ``bzrlib/bzrdir.py`` was directly referencing ``bzrlib.workingtree``,
 
10606
  without importing it. This prevented ``bzr upgrade`` from working
 
10607
  unless a plugin already imported ``bzrlib.workingtree``
 
10608
  (John Arbash Meinel, #70716)
 
10609
 
 
10610
* Suppress the traceback on invalid URLs (Vincent Ladeuil, #70803).
 
10611
 
 
10612
* Give nicer error message when an http server returns a 403
 
10613
  error code. (Vincent Ladeuil, #57644).
 
10614
 
 
10615
* When a multi-range http GET request fails, try a single
 
10616
  range one. If it fails too, forget about ranges. Remember that until
 
10617
  the death of the transport and propagates that to the clones.
 
10618
  (Vincent Ladeuil, #62276, #62029).
 
10619
 
 
10620
* Handles user/passwords supplied in url from command
 
10621
  line (for the urllib implementation). Don't request already
 
10622
  known passwords (Vincent Ladeuil, #42383, #44647, #48527)
 
10623
 
 
10624
* ``_KnitIndex.add_versions()`` dictionary compresses revision ids as they
 
10625
  are added. This fixes bug where fetching remote revisions records
 
10626
  them as full references rather than integers.
 
10627
  (John Arbash Meinel, #64789)
 
10628
 
 
10629
* ``bzr ignore`` strips trailing slashes in patterns.
 
10630
  Also ``bzr ignore`` rejects absolute paths. (Kent Gibson, #4559)
 
10631
 
 
10632
* ``bzr ignore`` takes multiple arguments. (Cheuksan Edward Wang, #29488)
 
10633
 
 
10634
* mv correctly handles paths that traverse symlinks.
 
10635
  (Aaron Bentley, #66964)
 
10636
 
 
10637
* Give nicer looking error messages when failing to connect over ssh.
 
10638
  (John Arbash Meinel, #49172)
 
10639
 
 
10640
* Pushing to a remote branch does not currently update the remote working
 
10641
  tree. After a remote push, ``bzr status`` and ``bzr diff`` on the remote
 
10642
  machine now show that the working tree is out of date.
 
10643
  (Cheuksan Edward Wang #48136)
 
10644
 
 
10645
* Use patiencediff instead of difflib for determining deltas to insert
 
10646
  into knits. This avoids the O(N^3) behavior of difflib. Patience
 
10647
  diff should be O(N^2). (Cheuksan Edward Wang, #65714)
 
10648
 
 
10649
* Running ``bzr log`` on nonexistent file gives an error instead of the
 
10650
  entire log history. (Cheuksan Edward Wang #50793)
 
10651
 
 
10652
* ``bzr cat`` can look up contents of removed or renamed files. If the
 
10653
  pathname is ambiguous, i.e. the files in the old and new trees have
 
10654
  different id's, the default is the file in the new tree. The user can
 
10655
  use "--name-from-revision" to select the file in the old tree.
 
10656
  (Cheuksan Edward Wang, #30190)
 
10657
 
 
10658
Testing
 
10659
*******
 
10660
 
 
10661
* TestingHTTPRequestHandler really handles the Range header
 
10662
  (previously it was ignoring it and returning the whole file,).
 
10663
 
 
10664
bzr 0.12
 
10665
########
 
10666
 
 
10667
:Released:  2006-10-30
 
10668
 
 
10669
Internals
 
10670
*********
 
10671
 
 
10672
* Clean up ``bzr selftest --benchmark bundle`` to correct an import,
 
10673
  and remove benchmarks that take longer than 10min to run.
 
10674
  (John Arbash Meinel)
 
10675
 
 
10676
bzr 0.12rc1
 
10677
###########
 
10678
 
 
10679
:Released:  2006-10-23
 
10680
 
 
10681
Improvements
 
10682
************
 
10683
 
 
10684
* ``bzr log`` now shows dotted-decimal revision numbers for all revisions,
 
10685
  rather than just showing a decimal revision number for revisions on the
 
10686
  mainline. These revision numbers are not yet accepted as input into bzr
 
10687
  commands such as log, diff etc. (Robert Collins)
 
10688
 
 
10689
* revisions can now be specified using dotted-decimal revision numbers.
 
10690
  For instance, ``bzr diff -r 1.2.1..1.2.3``. (Robert Collins)
 
10691
 
 
10692
* ``bzr help commands`` output is now shorter (Aaron Bentley)
 
10693
 
 
10694
* ``bzr`` now uses lazy importing to reduce the startup time. This has
 
10695
  a moderate effect on lots of actions, especially ones that have
 
10696
  little to do. For example ``bzr rocks`` time is down to 116ms from
 
10697
  283ms. (John Arbash Meinel)
 
10698
 
 
10699
* New Registry class to provide name-to-object registry-like support,
 
10700
  for example for schemes where plugins can register new classes to
 
10701
  do certain tasks (e.g. log formatters). Also provides lazy registration
 
10702
  to allow modules to be loaded on request.
 
10703
  (John Arbash Meinel, Adeodato Simó)
 
10704
 
 
10705
API Incompatability
 
10706
*******************
 
10707
 
 
10708
* LogFormatter subclasses show now expect the 'revno' parameter to
 
10709
  show() to be a string rather than an int. (Robert Collins)
 
10710
 
 
10711
Internals
 
10712
*********
 
10713
 
 
10714
* ``TestCase.run_bzr``, ``run_bzr_captured``, and ``run_bzr_subprocess``
 
10715
  can take a ``working_dir='foo'`` parameter, which will change directory
 
10716
  for the command. (John Arbash Meinel)
 
10717
 
 
10718
* ``bzrlib.lazy_regex.lazy_compile`` can be used to create a proxy
 
10719
  around a regex, which defers compilation until first use.
 
10720
  (John Arbash Meinel)
 
10721
 
 
10722
* ``TestCase.run_bzr_subprocess`` defaults to supplying the
 
10723
  ``--no-plugins`` parameter to ensure test reproducability, and avoid
 
10724
  problems with system-wide installed plugins. (John Arbash Meinel)
 
10725
 
 
10726
* Unique tree root ids are now supported. Newly created trees still
 
10727
  use the common root id for compatibility with bzr versions before 0.12.
 
10728
  (Aaron Bentley)
 
10729
 
 
10730
* ``WorkingTree.set_root_id(None)`` is now deprecated. Please
 
10731
  pass in ``inventory.ROOT_ID`` if you want the default root id value.
 
10732
  (Robert Collins, John Arbash Meinel)
 
10733
 
 
10734
* New method ``WorkingTree.flush()`` which will write the current memory
 
10735
  inventory out to disk. At the same time, ``read_working_inventory`` will
 
10736
  no longer trash the current tree inventory if it has been modified within
 
10737
  the current lock, and the tree will now ``flush()`` automatically on
 
10738
  ``unlock()``. ``WorkingTree.set_root_id()`` has been updated to take
 
10739
  advantage of this functionality. (Robert Collins, John Arbash Meinel)
 
10740
 
 
10741
* ``bzrlib.tsort.merge_sorted`` now accepts ``generate_revnos``. This
 
10742
  parameter will cause it to add another column to its output, which
 
10743
  contains the dotted-decimal revno for each revision, as a tuple.
 
10744
  (Robert Collins)
 
10745
 
 
10746
* ``LogFormatter.show_merge`` is deprecated in favour of
 
10747
  ``LogFormatter.show_merge_revno``. (Robert Collins)
 
10748
 
 
10749
Bug Fixes
 
10750
*********
 
10751
 
 
10752
* Avoid circular imports by creating a deprecated function for
 
10753
  ``bzrlib.tree.RevisionTree``. Callers should have been using
 
10754
  ``bzrlib.revisontree.RevisionTree`` anyway. (John Arbash Meinel,
 
10755
  #66349)
 
10756
 
 
10757
* Don't use ``socket.MSG_WAITALL`` as it doesn't exist on all
 
10758
  platforms. (Martin Pool, #66356)
 
10759
 
 
10760
* Don't require ``Content-Type`` in range responses. Assume they are a
 
10761
  single range if ``Content-Type`` does not exist.
 
10762
  (John Arbash Meinel, #62473)
 
10763
 
 
10764
* bzr branch/pull no longer complain about progress bar cleanup when
 
10765
  interrupted during fetch.  (Aaron Bentley, #54000)
 
10766
 
 
10767
* ``WorkingTree.set_parent_trees()`` uses the trees to directly write
 
10768
  the basis inventory, rather than going through the repository. This
 
10769
  allows us to have 1 inventory read, and 2 inventory writes when
 
10770
  committing a new tree. (John Arbash Meinel)
 
10771
 
 
10772
* When reverting, files that are not locally modified that do not exist
 
10773
  in the target are deleted, not just unversioned (Aaron Bentley)
 
10774
 
 
10775
* When trying to acquire a lock, don't fail immediately. Instead, try
 
10776
  a few times (up to 1 hour) before timing out. Also, report why the
 
10777
  lock is unavailable (John Arbash Meinel, #43521, #49556)
 
10778
 
 
10779
* Leave HttpTransportBase daughter classes decides how they
 
10780
  implement cloning. (Vincent Ladeuil, #61606)
 
10781
 
 
10782
* diff3 does not indicate conflicts on clean merge. (Aaron Bentley)
 
10783
 
 
10784
* If a commit fails, the commit message is stored in a file at the root of
 
10785
  the tree for later commit. (Cheuksan Edward Wang, Stefan Metzmacher,
 
10786
  #32054)
 
10787
 
 
10788
Testing
 
10789
*******
 
10790
 
 
10791
* New test base class TestCaseWithMemoryTransport offers memory-only
 
10792
  testing facilities: its not suitable for tests that need to mutate disk
 
10793
  state, but most tests should not need that and should be converted to
 
10794
  TestCaseWithMemoryTransport. (Robert Collins)
 
10795
 
 
10796
* ``TestCase.make_branch_and_memory_tree`` now takes a format
 
10797
  option to set the BzrDir, Repository and Branch formats of the
 
10798
  created objects. (Robert Collins, John Arbash Meinel)
 
10799
 
 
10800
bzr 0.11
 
10801
########
 
10802
 
 
10803
:Released:  2006-10-02
 
10804
 
 
10805
* Smart server transport test failures on windows fixed. (Lukáš Lalinský).
 
10806
 
 
10807
bzr 0.11rc2
 
10808
###########
 
10809
 
 
10810
:Released:  2006-09-27
 
10811
 
 
10812
Bug Fixes
 
10813
*********
 
10814
 
 
10815
* Test suite hangs on windows fixed. (Andrew Bennets, Alexander Belchenko).
 
10816
 
 
10817
* Commit performance regression fixed. (Aaron Bentley, Robert Collins, John
 
10818
  Arbash Meinel).
 
10819
 
 
10820
bzr 0.11rc1
 
10821
###########
 
10822
 
 
10823
:Released:  2006-09-25
 
10824
 
 
10825
Improvements
 
10826
************
 
10827
 
 
10828
* Knit files now wait to create their contents until the first data is
 
10829
  added. The old code used to create an empty .knit and a .kndx with just
 
10830
  the header. However, this caused a lot of extra round trips over sftp.
 
10831
  This can change the time for ``bzr push`` to create a new remote branch
 
10832
  from 160s down to 100s. This also affects ``bzr commit`` performance when
 
10833
  adding new files, ``bzr commit`` on a new kernel-like tree drops from 50s
 
10834
  down to 40s (John Arbash Meinel, #44692)
 
10835
 
 
10836
* When an entire subtree has been deleted, commit will now report that
 
10837
  just the top of the subtree has been deleted, rather than reporting
 
10838
  all the individual items. (Robert Collins)
 
10839
 
 
10840
* Commit performs one less XML parse. (Robert Collins)
 
10841
 
 
10842
* ``bzr checkout`` now operates on readonly branches as well
 
10843
  as readwrite branches. This fixes bug #39542. (Robert Collins)
 
10844
 
 
10845
* ``bzr bind`` no longer synchronises history with the master branch.
 
10846
  Binding should be followed by an update or push to synchronise the
 
10847
  two branches. This is closely related to the fix for bug #39542.
 
10848
  (Robert Collins)
 
10849
 
 
10850
* ``bzrlib.lazy_import.lazy_import`` function to create on-demand
 
10851
  objects.  This allows all imports to stay at the global scope, but
 
10852
  modules will not actually be imported if they are not used.
 
10853
  (John Arbash Meinel)
 
10854
 
 
10855
* Support ``bzr://`` and ``bzr+ssh://`` urls to work with the new RPC-based
 
10856
  transport which will be used with the upcoming high-performance smart
 
10857
  server. The new command ``bzr serve`` will invoke bzr in server mode,
 
10858
  which processes these requests. (Andrew Bennetts, Robert Collins, Martin
 
10859
  Pool)
 
10860
 
 
10861
* New command ``bzr version-info`` which can be used to get a summary
 
10862
  of the current state of the tree. This is especially useful as part
 
10863
  of a build commands. See ``doc/version_info.txt`` for more information
 
10864
  (John Arbash Meinel)
 
10865
 
 
10866
Bug Fixes
 
10867
*********
 
10868
 
 
10869
* ``'bzr inventory [FILE...]'`` allows restricting the file list to a
 
10870
  specific set of files. (John Arbash Meinel, #3631)
 
10871
 
 
10872
* Don't abort when annotating empty files (John Arbash Meinel, #56814)
 
10873
 
 
10874
* Add ``Stanza.to_unicode()`` which can be passed to another Stanza
 
10875
  when nesting stanzas. Also, add ``read_stanza_unicode`` to handle when
 
10876
  reading a nested Stanza. (John Arbash Meinel)
 
10877
 
 
10878
* Transform._set_mode() needs to stat the right file.
 
10879
  (John Arbash Meinel, #56549)
 
10880
 
 
10881
* Raise WeaveFormatError rather than StopIteration when trying to read
 
10882
  an empty Weave file. (John Arbash Meinel, #46871)
 
10883
 
 
10884
* Don't access e.code for generic URLErrors, only HTTPErrors have .code.
 
10885
  (Vincent Ladeuil, #59835)
 
10886
 
 
10887
* Handle boundary="" lines properly to allow access through a Squid proxy.
 
10888
  (John Arbash Meinel, #57723)
 
10889
 
 
10890
* revert now removes newly-added directories (Aaron Bentley, #54172)
 
10891
 
 
10892
* ``bzr upgrade sftp://`` shouldn't fail to upgrade v6 branches if there
 
10893
  isn't a working tree. (David Allouche, #40679)
 
10894
 
 
10895
* Give nicer error messages when a user supplies an invalid --revision
 
10896
  parameter. (John Arbash Meinel, #55420)
 
10897
 
 
10898
* Handle when LANG is not recognized by python. Emit a warning, but
 
10899
  just revert to using 'ascii'. (John Arbash Meinel, #35392)
 
10900
 
 
10901
* Don't use ``preexec_fn`` on win32, as it is not supported by subprocess.
 
10902
  (John Arbash Meinel)
 
10903
 
 
10904
* Skip specific tests when the dependencies aren't met. This includes
 
10905
  some ``setup.py`` tests when ``python-dev`` is not available, and
 
10906
  some tests that depend on paramiko. (John Arbash Meinel, Mattheiu Moy)
 
10907
 
 
10908
* Fallback to Paramiko properly, if no ``ssh`` executable exists on
 
10909
  the system. (Andrew Bennetts, John Arbash Meinel)
 
10910
 
 
10911
* ``Branch.bind(other_branch)`` no longer takes a write lock on the
 
10912
  other branch, and will not push or pull between the two branches.
 
10913
  API users will need to perform a push or pull or update operation if they
 
10914
  require branch synchronisation to take place. (Robert Collins, #47344)
 
10915
 
 
10916
* When creating a tarball or zipfile export, export unicode names as utf-8
 
10917
  paths. This may not work perfectly on all platforms, but has the best
 
10918
  chance of working in the common case. (John Arbash Meinel, #56816)
 
10919
 
 
10920
* When committing, only files that exist in working tree or basis tree
 
10921
  may be specified (Aaron Bentley, #50793)
 
10922
 
 
10923
Portability
 
10924
***********
 
10925
 
 
10926
* Fixes to run on Python 2.5 (Brian M. Carlson, Martin Pool, Marien Zwart)
 
10927
 
 
10928
Internals
 
10929
*********
 
10930
 
 
10931
* TestCaseInTempDir now creates a separate directory for HOME, rather
 
10932
  than having HOME set to the same location as the working directory.
 
10933
  (John Arbash Meinel)
 
10934
 
 
10935
* ``run_bzr_subprocess()`` can take an optional ``env_changes={}`` parameter,
 
10936
  which will update os.environ inside the spawned child. It also can
 
10937
  take a ``universal_newlines=True``, which helps when checking the output
 
10938
  of the command. (John Arbash Meinel)
 
10939
 
 
10940
* Refactor SFTP vendors to allow easier re-use when ssh is used.
 
10941
  (Andrew Bennetts)
 
10942
 
 
10943
* ``Transport.list_dir()`` and ``Transport.iter_files_recursive()`` should always
 
10944
  return urlescaped paths. This is now tested (there were bugs in a few
 
10945
  of the transports) (Andrew Bennetts, David Allouche, John Arbash Meinel)
 
10946
 
 
10947
* New utility function ``symbol_versioning.deprecation_string``. Returns the
 
10948
  formatted string for a callable, deprecation format pair. (Robert Collins)
 
10949
 
 
10950
* New TestCase helper applyDeprecated. This allows you to call a callable
 
10951
  which is deprecated without it spewing to the screen, just by supplying
 
10952
  the deprecation format string issued for it. (Robert Collins)
 
10953
 
 
10954
* Transport.append and Transport.put have been deprecated in favor of
 
10955
  ``.append_bytes``, ``.append_file``, ``.put_bytes``, and
 
10956
  ``.put_file``. This removes the ambiguity in what type of object the
 
10957
  functions take.  ``Transport.non_atomic_put_{bytes,file}`` has also
 
10958
  been added. Which works similarly to ``Transport.append()`` except for
 
10959
  SFTP, it doesn't have a round trip when opening the file. Also, it
 
10960
  provides functionality for creating a parent directory when trying
 
10961
  to create a file, rather than raise NoSuchFile and forcing the
 
10962
  caller to repeat their request.
 
10963
  (John Arbash Meinel)
 
10964
 
 
10965
* WorkingTree has a new api ``unversion`` which allow the unversioning of
 
10966
  entries by their file id. (Robert Collins)
 
10967
 
 
10968
* ``WorkingTree.pending_merges`` is deprecated.  Please use the
 
10969
  ``get_parent_ids`` (introduced in 0.10) method instead. (Robert Collins)
 
10970
 
 
10971
* WorkingTree has a new ``lock_tree_write`` method which locks the branch for
 
10972
  read rather than write. This is appropriate for actions which only need
 
10973
  the branch data for reference rather than mutation. A new decorator
 
10974
  ``needs_tree_write_lock`` is provided in the workingtree module. Like the
 
10975
  ``needs_read_lock`` and ``needs_write_lock`` decorators this allows static
 
10976
  declaration of the locking requirements of a function to ensure that
 
10977
  a lock is taken out for casual scripts. (Robert Collins, #54107)
 
10978
 
 
10979
* All WorkingTree methods which write to the tree, but not to the branch
 
10980
  have been converted to use ``needs_tree_write_lock`` rather than
 
10981
  ``needs_write_lock``. Also converted is the revert, conflicts and tree
 
10982
  transform modules. This provides a modest performance improvement on
 
10983
  metadir style trees, due to the reduce lock-acquisition, and a more
 
10984
  significant performance improvement on lightweight checkouts from
 
10985
  remote branches, where trivial operations used to pay a significant
 
10986
  penalty. It also provides the basis for allowing readonly checkouts.
 
10987
  (Robert Collins)
 
10988
 
 
10989
* Special case importing the standard library 'copy' module. This shaves
 
10990
  off 40ms of startup time, while retaining compatibility. See:
 
10991
  ``bzrlib/inspect_for_copy.py`` for more details. (John Arbash Meinel)
 
10992
 
 
10993
* WorkingTree has a new parent class MutableTree which represents the
 
10994
  specialisations of Tree which are able to be altered. (Robert Collins)
 
10995
 
 
10996
* New methods mkdir and ``put_file_bytes_non_atomic`` on MutableTree that
 
10997
  mutate the tree and its contents. (Robert Collins)
 
10998
 
 
10999
* Transport behaviour at the root of the URL is now defined and tested.
 
11000
  (Andrew Bennetts, Robert Collins)
 
11001
 
 
11002
Testing
 
11003
*******
 
11004
 
 
11005
* New test helper classs MemoryTree. This is typically accessed via
 
11006
  ``self.make_branch_and_memory_tree()`` in test cases. (Robert Collins)
 
11007
 
 
11008
* Add ``start_bzr_subprocess`` and ``stop_bzr_subprocess`` to allow test
 
11009
  code to continue running concurrently with a subprocess of bzr.
 
11010
  (Andrew Bennetts, Robert Collins)
 
11011
 
 
11012
* Add a new method ``Transport.get_smart_client()``. This is provided to
 
11013
  allow upgrades to a richer interface than the VFS one provided by
 
11014
  Transport. (Andrew Bennetts, Martin Pool)
 
11015
 
 
11016
bzr 0.10
 
11017
########
 
11018
 
 
11019
:Released:  2006-08-29
 
11020
 
 
11021
Improvements
 
11022
************
 
11023
* 'merge' now takes --uncommitted, to apply uncommitted changes from a
 
11024
  tree.  (Aaron Bentley)
 
11025
 
 
11026
* 'bzr add --file-ids-from' can be used to specify another path to use
 
11027
  for creating file ids, rather than generating all new ones. Internally,
 
11028
  the 'action' passed to ``smart_add_tree()`` can return ``file_ids`` that
 
11029
  will be used, rather than having bzrlib generate new ones.
 
11030
  (John Arbash Meinel, #55781)
 
11031
 
 
11032
* ``bzr selftest --benchmark`` now allows a ``--cache-dir`` parameter.
 
11033
  This will cache some of the intermediate trees, and decrease the
 
11034
  setup time for benchmark tests. (John Arbash Meinel)
 
11035
 
 
11036
* Inverse forms are provided for all boolean options.  For example,
 
11037
  --strict has --no-strict, --no-recurse has --recurse (Aaron Bentley)
 
11038
 
 
11039
* Serialize out Inventories directly, rather than using ElementTree.
 
11040
  Writing out a kernel sized inventory drops from 2s down to ~350ms.
 
11041
  (Robert Collins, John Arbash Meinel)
 
11042
 
 
11043
Bug Fixes
 
11044
*********
 
11045
 
 
11046
* Help diffutils 2.8.4 get along with binary tests (Marien Zwart: #57614)
 
11047
 
 
11048
* Change LockDir so that if the lock directory doesn't exist when
 
11049
  ``lock_write()`` is called, an attempt will be made to create it.
 
11050
  (John Arbash Meinel, #56974)
 
11051
 
 
11052
* ``bzr uncommit`` preserves pending merges. (John Arbash Meinel, #57660)
 
11053
 
 
11054
* Active FTP transport now works as intended. (ghozzy, #56472)
 
11055
 
 
11056
* Really fix mutter() so that it won't ever raise a UnicodeError.
 
11057
  It means it is possible for ~/.bzr.log to contain non UTF-8 characters.
 
11058
  But it is a debugging log, not a real user file.
 
11059
  (John Arbash Meinel, #56947, #53880)
 
11060
 
 
11061
* Change Command handle to allow Unicode command and options.
 
11062
  At present we cannot register Unicode command names, so we will get
 
11063
  BzrCommandError('unknown command'), or BzrCommandError('unknown option')
 
11064
  But that is better than a UnicodeError + a traceback.
 
11065
  (John Arbash Meinel, #57123)
 
11066
 
 
11067
* Handle TZ=UTC properly when reading/writing revisions.
 
11068
  (John Arbash Meinel, #55783, #56290)
 
11069
 
 
11070
* Use ``GPG_TTY`` to allow gpg --cl to work with gpg-agent in a pipeline,
 
11071
  (passing text to sign in on stdin). (John Arbash Meinel, #54468)
 
11072
 
 
11073
* External diff does the right thing for binaries even in foreign
 
11074
  languages. (John Arbash Meinel, #56307)
 
11075
 
 
11076
* Testament handles more cases when content is unicode. Specific bug was
 
11077
  in handling of revision properties.
 
11078
  (John Arbash Meinel, Holger Krekel, #54723)
 
11079
 
 
11080
* The bzr selftest was failing on installed versions due to a bug in a new
 
11081
  test helper. (John Arbash Meinel, Robert Collins, #58057)
 
11082
 
 
11083
Internals
 
11084
*********
 
11085
 
 
11086
* ``bzrlib.cache_utf8`` contains ``encode()`` and ``decode()`` functions
 
11087
  which can be used to cache the conversion between utf8 and Unicode.
 
11088
  Especially helpful for some of the knit annotation code, which has to
 
11089
  convert revision ids to utf8 to annotate lines in storage.
 
11090
  (John Arbash Meinel)
 
11091
 
 
11092
* ``setup.py`` now searches the filesystem to find all packages which
 
11093
  need to be installed. This should help make the life of packagers
 
11094
  easier. (John Arbash Meinel)
 
11095
 
 
11096
bzr 0.9.0
 
11097
#########
 
11098
 
 
11099
:Released:  2006-08-11
 
11100
 
 
11101
Surprises
 
11102
*********
 
11103
 
 
11104
* The hard-coded built-in ignore rules have been removed. There are
 
11105
  now two rulesets which are enforced. A user global one in
 
11106
  ``~/.bazaar/ignore`` which will apply to every tree, and the tree
 
11107
  specific one '.bzrignore'.
 
11108
  ``~/.bazaar/ignore`` will be created if it does not exist, but with
 
11109
  a more conservative list than the old default.
 
11110
  This fixes bugs with default rules being enforced no matter what.
 
11111
  The old list of ignore rules from bzr is available by
 
11112
  running 'bzr ignore --old-default-rules'.
 
11113
  (Robert Collins, Martin Pool, John Arbash Meinel)
 
11114
 
 
11115
* 'branches.conf' has been changed to 'locations.conf', since it can apply
 
11116
  to more locations than just branch locations.
 
11117
  (Aaron Bentley)
 
11118
 
 
11119
Improvements
 
11120
************
 
11121
 
 
11122
* The revision specifier "revno:" is extended to accept the syntax
 
11123
  revno:N:branch. For example,
 
11124
  revno:42:http://bazaar-vcs.org/bzr/bzr.dev/ means revision 42 in
 
11125
  bzr.dev.  (Matthieu Moy)
 
11126
 
 
11127
* Tests updates to ensure proper URL handling, UNICODE support, and
 
11128
  proper printing when the user's terminal encoding cannot display
 
11129
  the path of a file that has been versioned.
 
11130
  ``bzr branch`` can take a target URL rather than only a local directory.
 
11131
  ``Branch.get_parent()/set_parent()`` now save a relative path if possible,
 
11132
  and normalize the parent based on root, allowing access across
 
11133
  different transports. (John Arbash Meinel, Wouter van Heyst, Martin Pool)
 
11134
  (Malone #48906, #42699, #40675, #5281, #3980, #36363, #43689,
 
11135
  #42517, #42514)
 
11136
 
 
11137
* On Unix, detect terminal width using an ioctl not just $COLUMNS.
 
11138
  Use terminal width for single-line logs from ``bzr log --line`` and
 
11139
  pending-merge display.  (Robert Widhopf-Fenk, Gustavo Niemeyer)
 
11140
  (Malone #3507)
 
11141
 
 
11142
* On Windows, detect terminal width using GetConsoleScreenBufferInfo.
 
11143
  (Alexander Belchenko)
 
11144
 
 
11145
* Speedup improvement for 'date:'-revision search. (Guillaume Pinot).
 
11146
 
 
11147
* Show the correct number of revisions pushed when pushing a new branch.
 
11148
  (Robert Collins).
 
11149
 
 
11150
* 'bzr selftest' now shows a progress bar with the number of tests, and
 
11151
  progress made. 'make check' shows tests in -v mode, to be more useful
 
11152
  for the PQM status window. (Robert Collins).
 
11153
  When using a progress bar, failed tests are printed out, rather than
 
11154
  being overwritten by the progress bar until the suite finishes.
 
11155
  (John Arbash Meinel)
 
11156
 
 
11157
* 'bzr selftest --benchmark' will run a new benchmarking selftest.
 
11158
  'bzr selftest --benchmark --lsprof-timed' will use lsprofile to generate
 
11159
  profile data for the individual profiled calls, allowing for fine
 
11160
  grained analysis of performance.
 
11161
  (Robert Collins, Martin Pool).
 
11162
 
 
11163
* 'bzr commit' shows a progress bar. This is useful for commits over sftp
 
11164
  where commit can take an appreciable time. (Robert Collins)
 
11165
 
 
11166
* 'bzr add' is now less verbose in telling you what ignore globs were
 
11167
  matched by files being ignored. Instead it just tells you how many
 
11168
  were ignored (because you might reasonably be expecting none to be
 
11169
  ignored). 'bzr add -v' is unchanged and will report every ignored
 
11170
  file. (Robert Collins).
 
11171
 
 
11172
* ftp now has a test server if medusa is installed. As part of testing,
 
11173
  ftp support has been improved, including support for supplying a
 
11174
  non-standard port. (John Arbash Meinel).
 
11175
 
 
11176
* 'bzr log --line' shows the revision number, and uses only the
 
11177
  first line of the log message (#5162, Alexander Belchenko;
 
11178
  Matthieu Moy)
 
11179
 
 
11180
* 'bzr status' has had the --all option removed. The 'bzr ls' command
 
11181
  should be used to retrieve all versioned files. (Robert Collins)
 
11182
 
 
11183
* 'bzr bundle OTHER/BRANCH' will create a bundle which can be sent
 
11184
  over email, and applied on the other end, while maintaining ancestry.
 
11185
  This bundle can be applied with either 'bzr merge' or 'bzr pull',
 
11186
  the same way you would apply another branch.
 
11187
  (John Arbash Meinel, Aaron Bentley)
 
11188
 
 
11189
* 'bzr whoami' can now be used to set your identity from the command line,
 
11190
  for a branch or globally.  (Robey Pointer)
 
11191
 
 
11192
* 'bzr checkout' now aliased to 'bzr co', and 'bzr annotate' to 'bzr ann'.
 
11193
  (Michael Ellerman)
 
11194
 
 
11195
* 'bzr revert DIRECTORY' now reverts the contents of the directory as well.
 
11196
  (Aaron Bentley)
 
11197
 
 
11198
* 'bzr get sftp://foo' gives a better error when paramiko is not present.
 
11199
  Also updates things like 'http+pycurl://' if pycurl is not present.
 
11200
  (John Arbash Meinel) (Malone #47821, #52204)
 
11201
 
 
11202
* New env variable ``BZR_PROGRESS_BAR``, sets the default progress bar type.
 
11203
  Can be set to 'none' or 'dummy' to disable the progress bar, 'dots' or
 
11204
  'tty' to create the respective type. (John Arbash Meinel, #42197, #51107)
 
11205
 
 
11206
* Improve the help text for 'bzr diff' to explain what various options do.
 
11207
  (John Arbash Meinel, #6391)
 
11208
 
 
11209
* 'bzr uncommit -r 10' now uncommits revisions 11.. rather than uncommitting
 
11210
  revision 10. This makes -r10 more in line with what other commands do.
 
11211
  'bzr uncommit' also now saves the pending merges of the revisions that
 
11212
  were removed. So it is safe to uncommit after a merge, fix something,
 
11213
  and commit again. (John Arbash Meinel, #32526, #31426)
 
11214
 
 
11215
* 'bzr init' now also works on remote locations.
 
11216
  (Wouter van Heyst, #48904)
 
11217
 
 
11218
* HTTP support has been updated. When using pycurl we now support
 
11219
  connection keep-alive, which reduces dns requests and round trips.
 
11220
  And for both urllib and pycurl we support multi-range requests,
 
11221
  which decreases the number of round-trips. Performance results for
 
11222
  ``bzr branch http://bazaar-vcs.org/bzr/bzr.dev/`` indicate
 
11223
  http branching is now 2-3x faster, and ``bzr pull`` in an existing
 
11224
  branch is as much as 4x faster.
 
11225
  (Michael Ellerman, Johan Rydberg, John Arbash Meinel, #46768)
 
11226
 
 
11227
* Performance improvements for sftp. Branching and pulling are now up to
 
11228
  2x faster. Utilize paramiko.readv() support for async requests if it
 
11229
  is available (paramiko > 1.6) (John Arbash Meinel)
 
11230
 
 
11231
Bug Fixes
 
11232
*********
 
11233
 
 
11234
* Fix shadowed definition of TestLocationConfig that caused some
 
11235
  tests not to run.
 
11236
  (Erik Bågfors, Michael Ellerman, Martin Pool, #32587)
 
11237
 
 
11238
* Fix unnecessary requirement of sign-my-commits that it be run from
 
11239
  a working directory.  (Martin Pool, Robert Collins)
 
11240
 
 
11241
* 'bzr push location' will only remember the push location if it succeeds
 
11242
  in connecting to the remote location. (John Arbash Meinel, #49742)
 
11243
 
 
11244
* 'bzr revert' no longer toggles the executable bit on win32
 
11245
  (John Arbash Meinel, #45010)
 
11246
 
 
11247
* Handle broken pipe under win32 correctly. (John Arbash Meinel)
 
11248
 
 
11249
* sftp tests now work correctly on win32 if you have a newer paramiko
 
11250
  (John Arbash Meinel)
 
11251
 
 
11252
* Cleanup win32 test suite, and general cleanup of places where
 
11253
  file handles were being held open. (John Arbash Meinel)
 
11254
 
 
11255
* When specifying filenames for 'diff -r x..y', the name of the file in the
 
11256
  working directory can be used, even if its name is different in both x
 
11257
  and y.
 
11258
 
 
11259
* File-ids containing single- or double-quotes are handled correctly by
 
11260
  push. (Aaron Bentley, #52227)
 
11261
 
 
11262
* Normalize unicode filenames to ensure cross-platform consistency.
 
11263
  (John Arbash Meinel, #43689)
 
11264
 
 
11265
* The argument parser can now handle '-' as an argument. Currently
 
11266
  no code interprets it specially (it is mostly handled as a file named
 
11267
  '-'). But plugins, and future operations can use it.
 
11268
  (John Arbash meinel, #50984)
 
11269
 
 
11270
* Bundles can properly read binary files with a plain '\r' in them.
 
11271
  (John Arbash Meinel, #51927)
 
11272
 
 
11273
* Tuning ``iter_entries()`` to be more efficient (John Arbash Meinel, #5444)
 
11274
 
 
11275
* Lots of win32 fixes (the test suite passes again).
 
11276
  (John Arbash Meinel, #50155)
 
11277
 
 
11278
* Handle openbsd returning None for sys.getfilesystemencoding() (#41183)
 
11279
 
 
11280
* Support ftp APPE (append) to allow Knits to be used over ftp (#42592)
 
11281
 
 
11282
* Removals are only committed if they match the filespec (or if there is
 
11283
  no filespec).  (#46635, Aaron Bentley)
 
11284
 
 
11285
* smart-add recurses through all supplied directories
 
11286
  (John Arbash Meinel, #52578)
 
11287
 
 
11288
* Make the bundle reader extra lines before and after the bundle text.
 
11289
  This allows you to parse an email with the bundle inline.
 
11290
  (John Arbash Meinel, #49182)
 
11291
 
 
11292
* Change the file id generator to squash a little bit more. Helps when
 
11293
  working with long filenames on windows. (Also helps for unicode filenames
 
11294
  not generating hidden files). (John Arbash Meinel, #43801)
 
11295
 
 
11296
* Restore terminal mode on C-c while reading sftp password.  (#48923,
 
11297
  Nicholas Allen, Martin Pool)
 
11298
 
 
11299
* Timestamps are rounded to 1ms, and revision entries can be recreated
 
11300
  exactly. (John Arbash Meinel, Jamie Wilkinson, #40693)
 
11301
 
 
11302
* Branch.base has changed to a URL, but ~/.bazaar/locations.conf should
 
11303
  use local paths, since it is user visible (John Arbash Meinel, #53653)
 
11304
 
 
11305
* ``bzr status foo`` when foo was unversioned used to cause a full delta
 
11306
  to be generated (John Arbash Meinel, #53638)
 
11307
 
 
11308
* When reading revision properties, an empty value should be considered
 
11309
  the empty string, not None (John Arbash Meinel, #47782)
 
11310
 
 
11311
* ``bzr diff --diff-options`` can now handle binary files being changed.
 
11312
  Also, the output is consistent when --diff-options is not supplied.
 
11313
  (John Arbash Meinel, #54651, #52930)
 
11314
 
 
11315
* Use the right suffixes for loading plugins (John Arbash Meinel, #51810)
 
11316
 
 
11317
* Fix ``Branch.get_parent()`` to handle the case when the parent is not
 
11318
  accessible (John Arbash Meinel, #52976)
 
11319
 
 
11320
Internals
 
11321
*********
 
11322
 
 
11323
* Combine the ignore rules into a single regex rather than looping over
 
11324
  them to reduce the threshold where  N^2 behaviour occurs in operations
 
11325
  like status. (Jan Hudec, Robert Collins).
 
11326
 
 
11327
* Appending to ``bzrlib.DEFAULT_IGNORE`` is now deprecated. Instead, use
 
11328
  one of the add functions in bzrlib.ignores. (John Arbash Meinel)
 
11329
 
 
11330
* 'bzr push' should only push the ancestry of the current revision, not
 
11331
  all of the history in the repository. This is especially important for
 
11332
  shared repositories. (John Arbash Meinel)
 
11333
 
 
11334
* ``bzrlib.delta.compare_trees`` now iterates in alphabetically sorted order,
 
11335
  rather than randomly walking the inventories. (John Arbash Meinel)
 
11336
 
 
11337
* Doctests are now run in temporary directories which are cleaned up when
 
11338
  they finish, rather than using special ScratchDir/ScratchBranch objects.
 
11339
  (Martin Pool)
 
11340
 
 
11341
* Split ``check`` into separate methods on the branch and on the repository,
 
11342
  so that it can be specialized in ways that are useful or efficient for
 
11343
  different formats.  (Martin Pool, Robert Collins)
 
11344
 
 
11345
* Deprecate ``Repository.all_revision_ids``; most methods don't really need
 
11346
  the global revision graph but only that part leading up to a particular
 
11347
  revision.  (Martin Pool, Robert Collins)
 
11348
 
 
11349
* Add a BzrDirFormat ``control_formats`` list which allows for control formats
 
11350
  that do not use '.bzr' to store their data - i.e. '.svn', '.hg' etc.
 
11351
  (Robert Collins, Jelmer Vernooij).
 
11352
 
 
11353
* ``bzrlib.diff.external_diff`` can be redirected to any file-like object.
 
11354
  Uses subprocess instead of spawnvp.
 
11355
  (James Henstridge, John Arbash Meinel, #4047, #48914)
 
11356
 
 
11357
* New command line option '--profile-imports', which will install a custom
 
11358
  importer to log time to import modules and regex compilation time to
 
11359
  sys.stderr (John Arbash Meinel)
 
11360
 
 
11361
* 'EmptyTree' is now deprecated, please use ``repository.revision_tree(None)``
 
11362
  instead. (Robert Collins)
 
11363
 
 
11364
* "RevisionTree" is now in bzrlib/revisiontree.py. (Robert Collins)
 
11365
 
 
11366
bzr 0.8.2
 
11367
#########
 
11368
 
 
11369
:Released:  2006-05-17
 
11370
 
 
11371
Bug Fixes
 
11372
*********
 
11373
 
 
11374
* setup.py failed to install launchpad plugin.  (Martin Pool)
 
11375
 
 
11376
bzr 0.8.1
 
11377
#########
 
11378
 
 
11379
:Released:  2006-05-16
 
11380
 
 
11381
Bug Fixes
 
11382
*********
 
11383
 
 
11384
* Fix failure to commit a merge in a checkout.  (Martin Pool,
 
11385
  Robert Collins, Erik Bågfors, #43959)
 
11386
 
 
11387
* Nicer messages from 'commit' in the case of renames, and correct
 
11388
  messages when a merge has occured. (Robert Collins, Martin Pool)
 
11389
 
 
11390
* Separate functionality from assert statements as they are skipped in
 
11391
  optimized mode of python. Add the same check to pending merges.
 
11392
  (Olaf Conradi, #44443)
 
11393
 
 
11394
Changes
 
11395
*******
 
11396
 
 
11397
* Do not show the None revision in output of bzr ancestry. (Olaf Conradi)
 
11398
 
 
11399
* Add info on standalone branches without a working tree.
 
11400
  (Olaf Conradi, #44155)
 
11401
 
 
11402
* Fix bug in knits when raising InvalidRevisionId. (Olaf Conradi, #44284)
 
11403
 
 
11404
Changes
 
11405
*******
 
11406
 
 
11407
* Make editor invocation comply with Debian Policy. First check
 
11408
  environment variables VISUAL and EDITOR, then try editor from
 
11409
  alternatives system. If that all fails, fall back to the pre-defined
 
11410
  list of editors. (Olaf Conradi, #42904)
 
11411
 
 
11412
New Features
 
11413
************
 
11414
 
 
11415
* New 'register-branch' command registers a public branch into
 
11416
  Launchpad.net, where it can be associated with bugs, etc.
 
11417
  (Martin Pool, Bjorn Tillenius, Robert Collins)
 
11418
 
 
11419
Internals
 
11420
*********
 
11421
 
 
11422
* New public api in InventoryEntry - ``describe_change(old, new)`` which
 
11423
  provides a human description of the changes between two old and
 
11424
  new. (Robert Collins, Martin Pool)
 
11425
 
 
11426
Testing
 
11427
*******
 
11428
 
 
11429
* Fix test case for bzr info in upgrading a standalone branch to metadir,
 
11430
  uses bzrlib api now. (Olaf Conradi)
 
11431
 
 
11432
bzr 0.8
 
11433
#######
 
11434
 
 
11435
:Released:  2006-05-08
 
11436
 
 
11437
Notes When Upgrading
 
11438
********************
 
11439
 
 
11440
Release 0.8 of bzr introduces a new format for history storage, called
 
11441
'knit', as an evolution of to the 'weave' format used in 0.7.  Local
 
11442
and remote operations are faster using knits than weaves.  Several
 
11443
operations including 'init', 'init-repo', and 'upgrade' take a
 
11444
--format option that controls this.  Branching from an existing branch
 
11445
will keep the same format.
 
11446
 
 
11447
It is possible to merge, pull and push between branches of different
 
11448
formats but this is slower than moving data between homogenous
 
11449
branches.  It is therefore recommended (but not required) that you
 
11450
upgrade all branches for a project at the same time.  Information on
 
11451
formats is shown by 'bzr info'.
 
11452
 
 
11453
bzr 0.8 now allows creation of 'repositories', which hold the history
 
11454
of files and revisions for several branches.  Previously bzr kept all
 
11455
the history for a branch within the .bzr directory at the root of the
 
11456
branch, and this is still the default.  To create a repository, use
 
11457
the new 'bzr init-repo' command.  Branches exist as directories under
 
11458
the repository and contain just a small amount of information
 
11459
indicating the current revision of the branch.
 
11460
 
 
11461
bzr 0.8 also supports 'checkouts', which are similar to in cvs and
 
11462
subversion.  Checkouts are associated with a branch (optionally in a
 
11463
repository), which contains all the historical information.  The
 
11464
result is that a checkout can be deleted without losing any
 
11465
already-committed revisions.  A new 'update' command is also available.
 
11466
 
 
11467
Repositories and checkouts are not supported with the 0.7 storage
 
11468
format.  To use them you must upgrad to either knits, or to the
 
11469
'metaweave' format, which uses weaves but changes the .bzr directory
 
11470
arrangement.
 
11471
 
 
11472
 
 
11473
Improvements
 
11474
************
 
11475
 
 
11476
* sftp paths can now be relative, or local, according to the lftp
 
11477
  convention. Paths now take the form::
 
11478
 
 
11479
      sftp://user:pass@host:port/~/relative/path
 
11480
      or
 
11481
      sftp://user:pass@host:port/absolute/path
 
11482
 
 
11483
* The FTP transport now tries to reconnect after a temporary
 
11484
  failure. ftp put is made atomic. (Matthieu Moy)
 
11485
 
 
11486
* The FTP transport now maintains a pool of connections, and
 
11487
  reuses them to avoid multiple connections to the same host (like
 
11488
  sftp did). (Daniel Silverstone)
 
11489
 
 
11490
* The ``bzr_man.py`` file has been removed. To create the man page now,
 
11491
  use ``./generate_docs.py man``. The new program can also create other files.
 
11492
  Run ``python generate_docs.py --help`` for usage information.
 
11493
  (Hans Ulrich Niedermann & James Blackwell).
 
11494
 
 
11495
* Man Page now gives full help (James Blackwell).
 
11496
  Help also updated to reflect user config now being stored in .bazaar
 
11497
  (Hans Ulrich Niedermann)
 
11498
 
 
11499
* It's now possible to set aliases in bazaar.conf (Erik Bågfors)
 
11500
 
 
11501
* Pull now accepts a --revision argument (Erik Bågfors)
 
11502
 
 
11503
* ``bzr re-sign`` now allows multiple revisions to be supplied on the command
 
11504
  line. You can now use the following command to sign all of your old
 
11505
  commits::
 
11506
 
 
11507
    find .bzr/revision-store// -name my@email-* \
 
11508
      | sed 's/.*\/\/..\///' \
 
11509
      | xargs bzr re-sign
 
11510
 
 
11511
* Upgrade can now upgrade over the network. (Robert Collins)
 
11512
 
 
11513
* Two new commands 'bzr checkout' and 'bzr update' allow for CVS/SVN-alike
 
11514
  behaviour.  By default they will cache history in the checkout, but
 
11515
  with --lightweight almost all data is kept in the master branch.
 
11516
  (Robert Collins)
 
11517
 
 
11518
* 'revert' unversions newly-versioned files, instead of deleting them.
 
11519
 
 
11520
* 'merge' is more robust.  Conflict messages have changed.
 
11521
 
 
11522
* 'merge' and 'revert' no longer clobber existing files that end in '~' or
 
11523
  '.moved'.
 
11524
 
 
11525
* Default log format can be set in configuration and plugins can register
 
11526
  their own formatters. (Erik Bågfors)
 
11527
 
 
11528
* New 'reconcile' command will check branch consistency and repair indexes
 
11529
  that can become out of sync in pre 0.8 formats. (Robert Collins,
 
11530
  Daniel Silverstone)
 
11531
 
 
11532
* New 'bzr init --format' and 'bzr upgrade --format' option to control
 
11533
  what storage format is created or produced.  (Robert Collins,
 
11534
  Martin Pool)
 
11535
 
 
11536
* Add parent location to 'bzr info', if there is one.  (Olaf Conradi)
 
11537
 
 
11538
* New developer commands 'weave-list' and 'weave-join'.  (Martin Pool)
 
11539
 
 
11540
* New 'init-repository' command, plus support for repositories in 'init'
 
11541
  and 'branch' (Aaron Bentley, Erik Bågfors, Robert Collins)
 
11542
 
 
11543
* Improve output of 'info' command. Show all relevant locations related to
 
11544
  working tree, branch and repository. Use kibibytes for binary quantities.
 
11545
  Fix off-by-one error in missing revisions of working tree.  Make 'info'
 
11546
  work on branches, repositories and remote locations.  Show locations
 
11547
  relative to the shared repository, if applicable.  Show locking status
 
11548
  of locations.  (Olaf Conradi)
 
11549
 
 
11550
* Diff and merge now safely handle binary files. (Aaron Bentley)
 
11551
 
 
11552
* 'pull' and 'push' now normalise the revision history, so that any two
 
11553
  branches with the same tip revision will have the same output from 'log'.
 
11554
  (Robert Collins)
 
11555
 
 
11556
* 'merge' accepts --remember option to store parent location, like 'push'
 
11557
  and 'pull'. (Olaf Conradi)
 
11558
 
 
11559
* bzr status and diff when files given as arguments do not exist
 
11560
  in the relevant trees.  (Martin Pool, #3619)
 
11561
 
 
11562
* Add '.hg' to the default ignore list.  (Martin Pool)
 
11563
 
 
11564
* 'knit' is now the default disk format. This improves disk performance and
 
11565
  utilization, increases incremental pull performance, robustness with SFTP
 
11566
  and allows checkouts over SFTP to perform acceptably.
 
11567
  The initial Knit code was contributed by Johan Rydberg based on a
 
11568
  specification by Martin Pool.
 
11569
  (Robert Collins, Aaron Bentley, Johan Rydberg, Martin Pool).
 
11570
 
 
11571
* New tool to generate all-in-one html version of the manual.  (Alexander
 
11572
  Belchenko)
 
11573
 
 
11574
* Hitting CTRL-C while doing an SFTP push will no longer cause stale locks
 
11575
  to be left in the SFTP repository. (Robert Collins, Martin Pool).
 
11576
 
 
11577
* New option 'diff --prefix' to control how files are named in diff
 
11578
  output, with shortcuts '-p0' and '-p1' corresponding to the options for
 
11579
  GNU patch.  (Alexander Belchenko, Goffredo Baroncelli, Martin Pool)
 
11580
 
 
11581
* Add --revision option to 'annotate' command.  (Olaf Conradi)
 
11582
 
 
11583
* If bzr shows an unexpected revision-history after pulling (perhaps due
 
11584
  to a reweave) it can now be corrected by 'bzr reconcile'.
 
11585
  (Robert Collins)
 
11586
 
 
11587
Changes
 
11588
*******
 
11589
 
 
11590
* Commit is now verbose by default, and shows changed filenames and the
 
11591
  new revision number.  (Robert Collins, Martin Pool)
 
11592
 
 
11593
* Unify 'mv', 'move', 'rename'.  (Matthew Fuller, #5379)
 
11594
 
 
11595
* 'bzr -h' shows help.  (Martin Pool, Ian Bicking, #35940)
 
11596
 
 
11597
* Make 'pull' and 'push' remember location on failure using --remember.
 
11598
  (Olaf Conradi)
 
11599
 
 
11600
* For compatibility, make old format for using weaves inside metadir
 
11601
  available as 'metaweave' format.  Rename format 'metadir' to 'default'.
 
11602
  Clean up help for option --format in commands 'init', 'init-repo' and
 
11603
  'upgrade'.  (Olaf Conradi)
 
11604
 
 
11605
Internals
 
11606
*********
 
11607
 
 
11608
* The internal storage of history, and logical branch identity have now
 
11609
  been split into Branch, and Repository. The common locking and file
 
11610
  management routines are now in bzrlib.lockablefiles.
 
11611
  (Aaron Bentley, Robert Collins, Martin Pool)
 
11612
 
 
11613
* Transports can now raise DependencyNotPresent if they need a library
 
11614
  which is not installed, and then another implementation will be
 
11615
  tried.  (Martin Pool)
 
11616
 
 
11617
* Remove obsolete (and no-op) `decode` parameter to `Transport.get`.
 
11618
  (Martin Pool)
 
11619
 
 
11620
* Using Tree Transform for merge, revert, tree-building
 
11621
 
 
11622
* WorkingTree.create, Branch.create, ``WorkingTree.create_standalone``,
 
11623
  Branch.initialize are now deprecated. Please see ``BzrDir.create_*`` for
 
11624
  replacement API's. (Robert Collins)
 
11625
 
 
11626
* New BzrDir class represents the .bzr control directory and manages
 
11627
  formatting issues. (Robert Collins)
 
11628
 
 
11629
* New repository.InterRepository class encapsulates Repository to
 
11630
  Repository actions and allows for clean selection of optimised code
 
11631
  paths. (Robert Collins)
 
11632
 
 
11633
* ``bzrlib.fetch.fetch`` and ``bzrlib.fetch.greedy_fetch`` are now
 
11634
  deprecated, please use ``branch.fetch`` or ``repository.fetch``
 
11635
  depending on your needs. (Robert Collins)
 
11636
 
 
11637
* deprecated methods now have a ``is_deprecated`` flag on them that can
 
11638
  be checked, if you need to determine whether a given callable is
 
11639
  deprecated at runtime. (Robert Collins)
 
11640
 
 
11641
* Progress bars are now nested - see
 
11642
  ``bzrlib.ui.ui_factory.nested_progress_bar``.
 
11643
  (Robert Collins, Robey Pointer)
 
11644
 
 
11645
* New API call ``get_format_description()`` for each type of format.
 
11646
  (Olaf Conradi)
 
11647
 
 
11648
* Changed ``branch.set_parent()`` to accept None to remove parent.
 
11649
  (Olaf Conradi)
 
11650
 
 
11651
* Deprecated BzrError AmbiguousBase.  (Olaf Conradi)
 
11652
 
 
11653
* WorkingTree.branch is now a read only property.  (Robert Collins)
 
11654
 
 
11655
* bzrlib.ui.text.TextUIFactory now accepts a ``bar_type`` parameter which
 
11656
  can be None or a factory that will create a progress bar. This is
 
11657
  useful for testing or for overriding the bzrlib.progress heuristic.
 
11658
  (Robert Collins)
 
11659
 
 
11660
* New API method ``get_physical_lock_status()`` to query locks present on a
 
11661
  transport.  (Olaf Conradi)
 
11662
 
 
11663
* Repository.reconcile now takes a thorough keyword parameter to allow
 
11664
  requesting an indepth reconciliation, rather than just a data-loss
 
11665
  check. (Robert Collins)
 
11666
 
 
11667
* ``bzrlib.ui.ui_factory protocol`` now supports ``get_boolean`` to prompt
 
11668
  the user for yes/no style input. (Robert Collins)
 
11669
 
 
11670
Testing
 
11671
*******
 
11672
 
 
11673
* SFTP tests now shortcut the SSH negotiation, reducing test overhead
 
11674
  for testing SFTP protocol support. (Robey Pointer)
 
11675
 
 
11676
* Branch formats are now tested once per implementation (see ``bzrlib.
 
11677
  tests.branch_implementations``. This is analagous to the transport
 
11678
  interface tests, and has been followed up with working tree,
 
11679
  repository and BzrDir tests. (Robert Collins)
 
11680
 
 
11681
* New test base class TestCaseWithTransport provides a transport aware
 
11682
  test environment, useful for testing any transport-interface using
 
11683
  code. The test suite option --transport controls the transport used
 
11684
  by this class (when its not being used as part of implementation
 
11685
  contract testing). (Robert Collins)
 
11686
 
 
11687
* Close logging handler on disabling the test log. This will remove the
 
11688
  handler from the internal list inside python's logging module,
 
11689
  preventing shutdown from closing it twice.  (Olaf Conradi)
 
11690
 
 
11691
* Move test case for uncommit to blackbox tests.  (Olaf Conradi)
 
11692
 
 
11693
* ``run_bzr`` and ``run_bzr_captured`` now accept a 'stdin="foo"'
 
11694
  parameter which will provide String("foo") to the command as its stdin.
 
11695
 
 
11696
bzr 0.7
 
11697
#######
 
11698
 
 
11699
:Released: 2006-01-09
 
11700
 
 
11701
Changes
 
11702
*******
 
11703
 
 
11704
* .bzrignore is excluded from exports, on the grounds that it's a bzr
 
11705
  internal-use file and may not be wanted.  (Jamie Wilkinson)
 
11706
 
 
11707
* The "bzr directories" command were removed in favor of the new
 
11708
  --kind option to the "bzr inventory" command.  To list all
 
11709
  versioned directories, now use "bzr inventory --kind directory".
 
11710
  (Johan Rydberg)
 
11711
 
 
11712
* Under Windows configuration directory is now ``%APPDATA%\bazaar\2.0``
 
11713
  by default. (John Arbash Meinel)
 
11714
 
 
11715
* The parent of Bzr configuration directory can be set by ``BZR_HOME``
 
11716
  environment variable. Now the path for it is searched in ``BZR_HOME``,
 
11717
  then in HOME. Under Windows the order is: ``BZR_HOME``, ``APPDATA``
 
11718
  (usually points to ``C:\Documents and Settings\User Name\Application Data``),
 
11719
  ``HOME``. (John Arbash Meinel)
 
11720
 
 
11721
* Plugins with the same name in different directories in the bzr plugin
 
11722
  path are no longer loaded: only the first successfully loaded one is
 
11723
  used. (Robert Collins)
 
11724
 
 
11725
* Use systems' external ssh command to open connections if possible.
 
11726
  This gives better integration with user settings such as ProxyCommand.
 
11727
  (James Henstridge)
 
11728
 
 
11729
* Permissions on files underneath .bzr/ are inherited from the .bzr
 
11730
  directory. So for a shared repository, simply doing 'chmod -R g+w .bzr/'
 
11731
  will mean that future file will be created with group write permissions.
 
11732
 
 
11733
* configure.in and config.guess are no longer in the builtin default
 
11734
  ignore list.
 
11735
 
 
11736
* '.sw[nop]' pattern ignored, to ignore vim swap files for nameless
 
11737
  files.  (John Arbash Meinel, Martin Pool)
 
11738
 
 
11739
Improvements
 
11740
************
 
11741
 
 
11742
* "bzr INIT dir" now initializes the specified directory, and creates
 
11743
  it if it does not exist.  (John Arbash Meinel)
 
11744
 
 
11745
* New remerge command (Aaron Bentley)
 
11746
 
 
11747
* Better zsh completion script.  (Steve Borho)
 
11748
 
 
11749
* 'bzr diff' now returns 1 when there are changes in the working
 
11750
  tree. (Robert Collins)
 
11751
 
 
11752
* 'bzr push' now exists and can push changes to a remote location.
 
11753
  This uses the transport infrastructure, and can store the remote
 
11754
  location in the ~/.bazaar/branches.conf configuration file.
 
11755
  (Robert Collins)
 
11756
 
 
11757
* Test directories are only kept if the test fails and the user requests
 
11758
  that they be kept.
 
11759
 
 
11760
* Tweaks to short log printing
 
11761
 
 
11762
* Added branch nicks, new nick command, printing them in log output.
 
11763
  (Aaron Bentley)
 
11764
 
 
11765
* If ``$BZR_PDB`` is set, pop into the debugger when an uncaught exception
 
11766
  occurs.  (Martin Pool)
 
11767
 
 
11768
* Accept 'bzr resolved' (an alias for 'bzr resolve'), as this is
 
11769
  the same as Subversion.  (Martin Pool)
 
11770
 
 
11771
* New ftp transport support (on ftplib), for ftp:// and aftp://
 
11772
  URLs.  (Daniel Silverstone)
 
11773
 
 
11774
* Commit editor temporary files now start with ``bzr_log.``, to allow
 
11775
  text editors to match the file name and set up appropriate modes or
 
11776
  settings.  (Magnus Therning)
 
11777
 
 
11778
* Improved performance when integrating changes from a remote weave.
 
11779
  (Goffredo Baroncelli)
 
11780
 
 
11781
* Sftp will attempt to cache the connection, so it is more likely that
 
11782
  a connection will be reused, rather than requiring multiple password
 
11783
  requests.
 
11784
 
 
11785
* bzr revno now takes an optional argument indicating the branch whose
 
11786
  revno should be printed.  (Michael Ellerman)
 
11787
 
 
11788
* bzr cat defaults to printing the last version of the file.
 
11789
  (Matthieu Moy, #3632)
 
11790
 
 
11791
* New global option 'bzr --lsprof COMMAND' runs bzr under the lsprof
 
11792
  profiler.  (Denys Duchier)
 
11793
 
 
11794
* Faster commits by reading only the headers of affected weave files.
 
11795
  (Denys Duchier)
 
11796
 
 
11797
* 'bzr add' now takes a --dry-run parameter which shows you what would be
 
11798
  added, but doesn't actually add anything. (Michael Ellerman)
 
11799
 
 
11800
* 'bzr add' now lists how many files were ignored per glob.  add --verbose
 
11801
  lists the specific files.  (Aaron Bentley)
 
11802
 
 
11803
* 'bzr missing' now supports displaying changes in diverged trees and can
 
11804
  be limited to show what either end of the comparison is missing.
 
11805
  (Aaron Bently, with a little prompting from Daniel Silverstone)
 
11806
 
 
11807
Bug Fixes
 
11808
*********
 
11809
 
 
11810
* SFTP can walk up to the root path without index errors. (Robert Collins)
 
11811
 
 
11812
* Fix bugs in running bzr with 'python -O'.  (Martin Pool)
 
11813
 
 
11814
* Error when run with -OO
 
11815
 
 
11816
* Fix bug in reporting http errors that don't have an http error code.
 
11817
  (Martin Pool)
 
11818
 
 
11819
* Handle more cases of pipe errors in display commands
 
11820
 
 
11821
* Change status to 3 for all errors
 
11822
 
 
11823
* Files that are added and unlinked before committing are completely
 
11824
  ignored by diff and status
 
11825
 
 
11826
* Stores with some compressed texts and some uncompressed texts are now
 
11827
  able to be used. (John A Meinel)
 
11828
 
 
11829
* Fix for bzr pull failing sometimes under windows
 
11830
 
 
11831
* Fix for sftp transport under windows when using interactive auth
 
11832
 
 
11833
* Show files which are both renamed and modified as such in 'bzr
 
11834
  status' output.  (Daniel Silverstone, #4503)
 
11835
 
 
11836
* Make annotate cope better with revisions committed without a valid
 
11837
  email address.  (Marien Zwart)
 
11838
 
 
11839
* Fix representation of tab characters in commit messages.
 
11840
  (Harald Meland)
 
11841
 
 
11842
* List of plugin directories in ``BZR_PLUGIN_PATH`` environment variable is
 
11843
  now parsed properly under Windows. (Alexander Belchenko)
 
11844
 
 
11845
* Show number of revisions pushed/pulled/merged. (Robey Pointer)
 
11846
 
 
11847
* Keep a cached copy of the basis inventory to speed up operations
 
11848
  that need to refer to it.  (Johan Rydberg, Martin Pool)
 
11849
 
 
11850
* Fix bugs in bzr status display of non-ascii characters.
 
11851
  (Martin Pool)
 
11852
 
 
11853
* Remove Makefile.in from default ignore list.
 
11854
  (Tollef Fog Heen, Martin Pool, #6413)
 
11855
 
 
11856
* Fix failure in 'bzr added'.  (Nathan McCallum, Martin Pool)
 
11857
 
 
11858
Testing
 
11859
*******
 
11860
 
 
11861
* Fix selftest asking for passwords when there are no SFTP keys.
 
11862
  (Robey Pointer, Jelmer Vernooij)
 
11863
 
 
11864
* Fix selftest run with 'python -O'.  (Martin Pool)
 
11865
 
 
11866
* Fix HTTP tests under Windows. (John Arbash Meinel)
 
11867
 
 
11868
* Make tests work even if HOME is not set (Aaron Bentley)
 
11869
 
 
11870
* Updated ``build_tree`` to use fixed line-endings for tests which read
 
11871
  the file cotents and compare. Make some tests use this to pass under
 
11872
  Windows. (John Arbash Meinel)
 
11873
 
 
11874
* Skip stat and symlink tests under Windows. (Alexander Belchenko)
 
11875
 
 
11876
* Delay in selftest/testhashcash is now issued under win32 and Cygwin.
 
11877
  (John Arbash Meinel)
 
11878
 
 
11879
* Use terminal width to align verbose test output.  (Martin Pool)
 
11880
 
 
11881
* Blackbox tests are maintained within the bzrlib.tests.blackbox directory.
 
11882
  If adding a new test script please add that to
 
11883
  ``bzrlib.tests.blackbox.__init__``. (Robert Collins)
 
11884
 
 
11885
* Much better error message if one of the test suites can't be
 
11886
  imported.  (Martin Pool)
 
11887
 
 
11888
* Make check now runs the test suite twice - once with the default locale,
 
11889
  and once with all locales forced to C, to expose bugs. This is not
 
11890
  trivially done within python, so for now its only triggered by running
 
11891
  Make check. Integrators and packagers who wish to check for full
 
11892
  platform support should run 'make check' to test the source.
 
11893
  (Robert Collins)
 
11894
 
 
11895
* Tests can now run TestSkipped if they can't execute for any reason.
 
11896
  (Martin Pool) (NB: TestSkipped should only be raised for correctable
 
11897
  reasons - see the wiki spec ImprovingBzrTestSuite).
 
11898
 
 
11899
* Test sftp with relative, absolute-in-homedir and absolute-not-in-homedir
 
11900
  paths for the transport tests. Introduce blackbox remote sftp tests that
 
11901
  test the same permutations. (Robert Collins, Robey Pointer)
 
11902
 
 
11903
* Transport implementation tests are now independent of the local file
 
11904
  system, which allows tests for esoteric transports, and for features
 
11905
  not available in the local file system. They also repeat for variations
 
11906
  on the URL scheme that can introduce issues in the transport code,
 
11907
  see bzrlib.transport.TransportTestProviderAdapter() for this.
 
11908
  (Robert Collins).
 
11909
 
 
11910
* ``TestCase.build_tree`` uses the transport interface to build trees,
 
11911
  pass in a transport parameter to give it an existing connection.
 
11912
  (Robert Collins).
 
11913
 
 
11914
Internals
 
11915
*********
 
11916
 
 
11917
* WorkingTree.pull has been split across Branch and WorkingTree,
 
11918
  to allow Branch only pulls. (Robert Collins)
 
11919
 
 
11920
* ``commands.display_command`` now returns the result of the decorated
 
11921
  function. (Robert Collins)
 
11922
 
 
11923
* LocationConfig now has a ``set_user_option(key, value)`` call to save
 
11924
  a setting in its matching location section (a new one is created
 
11925
  if needed). (Robert Collins)
 
11926
 
 
11927
* Branch has two new methods, ``get_push_location`` and
 
11928
  ``set_push_location`` to respectively, get and set the push location.
 
11929
  (Robert Collins)
 
11930
 
 
11931
* ``commands.register_command`` now takes an optional flag to signal that
 
11932
  the registrant is planning to decorate an existing command. When
 
11933
  given multiple plugins registering a command is not an error, and
 
11934
  the original command class (whether built in or a plugin based one) is
 
11935
  returned to the caller. There is a new error 'MustUseDecorated' for
 
11936
  signalling when a wrapping command should switch to the original
 
11937
  version. (Robert Collins)
 
11938
 
 
11939
* Some option parsing errors will raise 'BzrOptionError', allowing
 
11940
  granular detection for decorating commands. (Robert Collins).
 
11941
 
 
11942
* ``Branch.read_working_inventory`` has moved to
 
11943
  ``WorkingTree.read_working_inventory``. This necessitated changes to
 
11944
  ``Branch.get_root_id``, and a move of ``Branch.set_inventory`` to
 
11945
  WorkingTree as well. To make it clear that a WorkingTree cannot always
 
11946
  be obtained ``Branch.working_tree()`` will raise
 
11947
  ``errors.NoWorkingTree`` if one cannot be obtained. (Robert Collins)
 
11948
 
 
11949
* All pending merges operations from Branch are now on WorkingTree.
 
11950
  (Robert Collins)
 
11951
 
 
11952
* The follow operations from Branch have moved to WorkingTree::
 
11953
 
 
11954
      add()
 
11955
      commit()
 
11956
      move()
 
11957
      rename_one()
 
11958
      unknowns()
 
11959
 
 
11960
  (Robert Collins)
 
11961
 
 
11962
* ``bzrlib.add.smart_add_branch`` is now ``smart_add_tree``. (Robert Collins)
 
11963
 
 
11964
* New "rio" serialization format, similar to rfc-822. (Martin Pool)
 
11965
 
 
11966
* Rename selftests to ``bzrlib.tests.test_foo``.  (John A Meinel, Martin
 
11967
  Pool)
 
11968
 
 
11969
* ``bzrlib.plugin.all_plugins`` has been changed from an attribute to a
 
11970
  query method. (Robert Collins)
 
11971
 
 
11972
* New options to read only the table-of-contents of a weave.
 
11973
  (Denys Duchier)
 
11974
 
 
11975
* Raise NoSuchFile when someone tries to add a non-existant file.
 
11976
  (Michael Ellerman)
 
11977
 
 
11978
* Simplify handling of DivergedBranches in ``cmd_pull()``.
 
11979
  (Michael Ellerman)
 
11980
 
 
11981
* Branch.controlfile* logic has moved to lockablefiles.LockableFiles, which
 
11982
  is exposed as ``Branch().control_files``. Also this has been altered with the
 
11983
  controlfile pre/suffix replaced by simple method names like 'get' and
 
11984
  'put'. (Aaron Bentley, Robert Collins).
 
11985
 
 
11986
* Deprecated functions and methods can now be marked as such using the
 
11987
  ``bzrlib.symbol_versioning`` module. Marked method have their docstring
 
11988
  updated and will issue a DeprecationWarning using the warnings module
 
11989
  when they are used. (Robert Collins)
 
11990
 
 
11991
* ``bzrlib.osutils.safe_unicode`` now exists to provide parameter coercion
 
11992
  for functions that need unicode strings. (Robert Collins)
 
11993
 
 
11994
bzr 0.6
 
11995
#######
 
11996
 
 
11997
:Released: 2005-10-28
 
11998
 
 
11999
Improvements
 
12000
************
 
12001
 
 
12002
* pull now takes --verbose to show you what revisions are added or removed
 
12003
  (John A Meinel)
 
12004
 
 
12005
* merge now takes a --show-base option to include the base text in
 
12006
  conflicts.
 
12007
  (Aaron Bentley)
 
12008
 
 
12009
* The config files are now read using ConfigObj, so '=' should be used as
 
12010
  a separator, not ':'.
 
12011
  (Aaron Bentley)
 
12012
 
 
12013
* New 'bzr commit --strict' option refuses to commit if there are
 
12014
  any unknown files in the tree.  To commit, make sure all files are
 
12015
  either ignored, added, or deleted.  (Michael Ellerman)
 
12016
 
 
12017
* The config directory is now ~/.bazaar, and there is a single file
 
12018
  ~/.bazaar/bazaar.conf storing email, editor and other preferences.
 
12019
  (Robert Collins)
 
12020
 
 
12021
* 'bzr add' no longer takes a --verbose option, and a --quiet option
 
12022
  has been added that suppresses all output.
 
12023
 
 
12024
* Improved zsh completion support in contrib/zsh, from Clint
 
12025
  Adams.
 
12026
 
 
12027
* Builtin 'bzr annotate' command, by Martin Pool with improvements from
 
12028
  Goffredo Baroncelli.
 
12029
 
 
12030
* 'bzr check' now accepts -v for verbose reporting, and checks for
 
12031
  ghosts in the branch. (Robert Collins)
 
12032
 
 
12033
* New command 're-sign' which will regenerate the gpg signature for
 
12034
  a revision. (Robert Collins)
 
12035
 
 
12036
* If you set ``check_signatures=require`` for a path in
 
12037
  ``~/.bazaar/branches.conf`` then bzr will invoke your
 
12038
  ``gpg_signing_command`` (defaults to gpg) and record a digital signature
 
12039
  of your commit. (Robert Collins)
 
12040
 
 
12041
* New sftp transport, based on Paramiko.  (Robey Pointer)
 
12042
 
 
12043
* 'bzr pull' now accepts '--clobber' which will discard local changes
 
12044
  and make this branch identical to the source branch. (Robert Collins)
 
12045
 
 
12046
* Just give a quieter warning if a plugin can't be loaded, and
 
12047
  put the details in .bzr.log.  (Martin Pool)
 
12048
 
 
12049
* 'bzr branch' will now set the branch-name to the last component of the
 
12050
  output directory, if one was supplied.
 
12051
 
 
12052
* If the option ``post_commit`` is set to one (or more) python function
 
12053
  names (must be in the bzrlib namespace), then they will be invoked
 
12054
  after the commit has completed, with the branch and ``revision_id`` as
 
12055
  parameters. (Robert Collins)
 
12056
 
 
12057
* Merge now has a retcode of 1 when conflicts occur. (Robert Collins)
 
12058
 
 
12059
* --merge-type weave is now supported for file contents.  Tree-shape
 
12060
  changes are still three-way based.  (Martin Pool, Aaron Bentley)
 
12061
 
 
12062
* 'bzr check' allows the first revision on revision-history to have
 
12063
  parents - something that is expected for cheap checkouts, and occurs
 
12064
  when conversions from baz do not have all history.  (Robert Collins).
 
12065
 
 
12066
* 'bzr merge' can now graft unrelated trees together, if your specify
 
12067
  0 as a base. (Aaron Bentley)
 
12068
 
 
12069
* 'bzr commit branch' and 'bzr commit branch/file1 branch/file2' now work
 
12070
  (Aaron Bentley)
 
12071
 
 
12072
* Add '.sconsign*' to default ignore list.  (Alexander Belchenko)
 
12073
 
 
12074
* 'bzr merge --reprocess' minimizes conflicts
 
12075
 
 
12076
Testing
 
12077
*******
 
12078
 
 
12079
* The 'bzr selftest --pattern' option for has been removed, now
 
12080
  test specifiers on the command line can be simple strings, or
 
12081
  regexps, or both. (Robert Collins)
 
12082
 
 
12083
* Passing -v to selftest will now show the time each test took to
 
12084
  complete, which will aid in analysing performance regressions and
 
12085
  related questions. (Robert Collins)
 
12086
 
 
12087
* 'bzr selftest' runs all tests, even if one fails, unless '--one'
 
12088
  is given. (Martin Pool)
 
12089
 
 
12090
* There is a new method for TestCaseInTempDir, assertFileEqual, which
 
12091
  will check that a given content is equal to the content of the named
 
12092
  file. (Robert Collins)
 
12093
 
 
12094
* Fix test suite's habit of leaving many temporary log files in $TMPDIR.
 
12095
  (Martin Pool)
 
12096
 
 
12097
Internals
 
12098
*********
 
12099
 
 
12100
* New 'testament' command and concept for making gpg-signatures
 
12101
  of revisions that are not tied to a particular internal
 
12102
  representation.  (Martin Pool).
 
12103
 
 
12104
* Per-revision properties ('revprops') as key-value associated
 
12105
  strings on each revision created when the revision is committed.
 
12106
  Intended mainly for the use of external tools.  (Martin Pool).
 
12107
 
 
12108
* Config options have moved from bzrlib.osutils to bzrlib.config.
 
12109
  (Robert Collins)
 
12110
 
 
12111
* Improved command line option definitions allowing explanations
 
12112
  for individual options, among other things.  Contributed by
 
12113
  Magnus Therning.
 
12114
 
 
12115
* Config options have moved from bzrlib.osutils to bzrlib.config.
 
12116
  Configuration is now done via the config.Config interface:
 
12117
  Depending on whether you have a Branch, a Location or no information
 
12118
  available, construct a ``*Config``, and use its ``signature_checking``,
 
12119
  ``username`` and ``user_email`` methods. (Robert Collins)
 
12120
 
 
12121
* Plugins are now loaded under bzrlib.plugins, not bzrlib.plugin, and
 
12122
  they are made available for other plugins to use. You should not
 
12123
  import other plugins during the ``__init__`` of your plugin though, as
 
12124
  no ordering is guaranteed, and the plugins directory is not on the
 
12125
  python path. (Robert Collins)
 
12126
 
 
12127
* Branch.relpath has been moved to WorkingTree.relpath. WorkingTree no
 
12128
  no longer takes an inventory, rather it takes an option branch
 
12129
  parameter, and if None is given will open the branch at basedir
 
12130
  implicitly. (Robert Collins)
 
12131
 
 
12132
* Cleaner exception structure and error reporting.  Suggested by
 
12133
  Scott James Remnant.  (Martin Pool)
 
12134
 
 
12135
* Branch.remove has been moved to WorkingTree, which has also gained
 
12136
  ``lock_read``, ``lock_write`` and ``unlock`` methods for convenience.
 
12137
  (Robert Collins)
 
12138
 
 
12139
* Two decorators, ``needs_read_lock`` and ``needs_write_lock`` have been
 
12140
  added to the branch module. Use these to cause a function to run in a
 
12141
  read or write lock respectively. (Robert Collins)
 
12142
 
 
12143
* ``Branch.open_containing`` now returns a tuple (Branch, relative-path),
 
12144
  which allows direct access to the common case of 'get me this file
 
12145
  from its branch'. (Robert Collins)
 
12146
 
 
12147
* Transports can register using ``register_lazy_transport``, and they
 
12148
  will be loaded when first used.  (Martin Pool)
 
12149
 
 
12150
* 'pull' has been factored out of the command as ``WorkingTree.pull()``.
 
12151
  A new option to WorkingTree.pull has been added, clobber, which will
 
12152
  ignore diverged history and pull anyway.
 
12153
  (Robert Collins)
 
12154
 
 
12155
* config.Config has a ``get_user_option`` call that accepts an option name.
 
12156
  This will be looked up in branches.conf and bazaar.conf as normal.
 
12157
  It is intended that this be used by plugins to support options -
 
12158
  options of built in programs should have specific methods on the config.
 
12159
  (Robert Collins)
 
12160
 
 
12161
* ``merge.merge_inner`` now has tempdir as an optional parameter.
 
12162
  (Robert Collins)
 
12163
 
 
12164
* Tree.kind is not recorded at the top level of the hierarchy, as it was
 
12165
  missing on EmptyTree, leading to a bug with merge on EmptyTrees.
 
12166
  (Robert Collins)
 
12167
 
 
12168
* ``WorkingTree.__del__`` has been removed, it was non deterministic and not
 
12169
  doing what it was intended to. See ``WorkingTree.__init__`` for a comment
 
12170
  about future directions. (Robert Collins/Martin Pool)
 
12171
 
 
12172
* bzrlib.transport.http has been modified so that only 404 urllib errors
 
12173
  are returned as NoSuchFile. Other exceptions will propagate as normal.
 
12174
  This allows debuging of actual errors. (Robert Collins)
 
12175
 
 
12176
* bzrlib.transport.Transport now accepts *ONLY* url escaped relative paths
 
12177
  to apis like 'put', 'get' and 'has'. This is to provide consistent
 
12178
  behaviour - it operates on url's only. (Robert Collins)
 
12179
 
 
12180
* Transports can register using ``register_lazy_transport``, and they
 
12181
  will be loaded when first used.  (Martin Pool)
 
12182
 
 
12183
* ``merge_flex`` no longer calls ``conflict_handler.finalize()``, instead that
 
12184
  is called by ``merge_inner``. This is so that the conflict count can be
 
12185
  retrieved (and potentially manipulated) before returning to the caller
 
12186
  of ``merge_inner``. Likewise 'merge' now returns the conflict count to the
 
12187
  caller. (Robert Collins)
 
12188
 
 
12189
* ``revision.revision_graph`` can handle having only partial history for
 
12190
  a revision - that is no revisions in the graph with no parents.
 
12191
  (Robert Collins).
 
12192
 
 
12193
* New ``builtins.branch_files`` uses the standard ``file_list`` rules to
 
12194
  produce a branch and a list of paths, relative to that branch
 
12195
  (Aaron Bentley)
 
12196
 
 
12197
* New TestCase.addCleanup facility.
 
12198
 
 
12199
* New ``bzrlib.version_info`` tuple (similar to ``sys.version_info``),
 
12200
  which can be used by programs importing bzrlib.
 
12201
 
 
12202
Bug Fixes
 
12203
*********
 
12204
 
 
12205
* Better handling of branches in directories with non-ascii names.
 
12206
  (Joel Rosdahl, Panagiotis Papadakos)
 
12207
 
 
12208
* Upgrades of trees with no commits will not fail due to accessing
 
12209
  [-1] in the revision-history. (Andres Salomon)
 
12210
 
 
12211
 
 
12212
bzr 0.1.1
 
12213
#########
 
12214
 
 
12215
:Released: 2005-10-12
 
12216
 
 
12217
Bug Fixes
 
12218
*********
 
12219
 
 
12220
* Fix problem in pulling over http from machines that do not
 
12221
  allow directories to be listed.
 
12222
 
 
12223
* Avoid harmless warning about invalid hash cache after
 
12224
  upgrading branch format.
 
12225
 
 
12226
Performance
 
12227
***********
 
12228
 
 
12229
* Avoid some unnecessary http operations in branch and pull.
 
12230
 
 
12231
 
 
12232
bzr 0.1
 
12233
#######
 
12234
 
 
12235
:Released: 2005-10-11
 
12236
 
 
12237
Notes
 
12238
*****
 
12239
 
 
12240
* 'bzr branch' over http initially gives a very high estimate
 
12241
  of completion time but it should fall as the first few
 
12242
  revisions are pulled in.  branch is still slow on
 
12243
  high-latency connections.
 
12244
 
 
12245
Bug Fixes
 
12246
*********
 
12247
 
 
12248
* bzr-man.py has been updated to work again. Contributed by
 
12249
  Rob Weir.
 
12250
 
 
12251
* Locking is now done with fcntl.lockf which works with NFS
 
12252
  file systems. Contributed by Harald Meland.
 
12253
 
 
12254
* When a merge encounters a file that has been deleted on
 
12255
  one side and modified on the other, the old contents are
 
12256
  written out to foo.BASE and foo.SIDE, where SIDE is this
 
12257
  or OTHER. Contributed by Aaron Bentley.
 
12258
 
 
12259
* Export was choosing incorrect file paths for the content of
 
12260
  the tarball, this has been fixed by Aaron Bentley.
 
12261
 
 
12262
* Commit will no longer commit without a log message, an
 
12263
  error is returned instead. Contributed by Jelmer Vernooij.
 
12264
 
 
12265
* If you commit a specific file in a sub directory, any of its
 
12266
  parent directories that are added but not listed will be
 
12267
  automatically included. Suggested by Michael Ellerman.
 
12268
 
 
12269
* bzr commit and upgrade did not correctly record new revisions
 
12270
  for files with only a change to their executable status.
 
12271
  bzr will correct this when it encounters it. Fixed by
 
12272
  Robert Collins
 
12273
 
 
12274
* HTTP tests now force off the use of ``http_proxy`` for the duration.
 
12275
  Contributed by Gustavo Niemeyer.
 
12276
 
 
12277
* Fix problems in merging weave-based branches that have
 
12278
  different partial views of history.
 
12279
 
 
12280
* Symlink support: working with symlinks when not in the root of a
 
12281
  bzr tree was broken, patch from Scott James Remnant.
 
12282
 
 
12283
Improvements
 
12284
************
 
12285
 
 
12286
* 'branch' now accepts a --basis parameter which will take advantage
 
12287
  of local history when making a new branch. This allows faster
 
12288
  branching of remote branches. Contributed by Aaron Bentley.
 
12289
 
 
12290
* New tree format based on weave files, called version 5.
 
12291
  Existing branches can be upgraded to this format using
 
12292
  'bzr upgrade'.
 
12293
 
 
12294
* Symlinks are now versionable. Initial patch by
 
12295
  Erik Toubro Nielsen, updated to head by Robert Collins.
 
12296
 
 
12297
* Executable bits are tracked on files. Patch from Gustavo
 
12298
  Niemeyer.
 
12299
 
 
12300
* 'bzr status' now shows unknown files inside a selected directory.
 
12301
  Patch from Heikki Paajanen.
 
12302
 
 
12303
* Merge conflicts are recorded in .bzr. Two new commands 'conflicts'
 
12304
  and 'resolve' have needed added, which list and remove those
 
12305
  merge conflicts respectively. A conflicted tree cannot be committed
 
12306
  in. Contributed by Aaron Bentley.
 
12307
 
 
12308
* 'rm' is now an alias for 'remove'.
 
12309
 
 
12310
* Stores now split out their content in a single byte prefixed hash,
 
12311
  dropping the density of files per directory by 256. Contributed by
 
12312
  Gustavo Niemeyer.
 
12313
 
 
12314
* 'bzr diff -r branch:URL' will now perform a diff between two branches.
 
12315
  Contributed by Robert Collins.
 
12316
 
 
12317
* 'bzr log' with the default formatter will show merged revisions,
 
12318
  indented to the right. Initial implementation contributed by Gustavo
 
12319
  Niemeyer, made incremental by Robert Collins.
 
12320
 
 
12321
 
 
12322
Internals
 
12323
*********
 
12324
 
 
12325
* Test case failures have the exception printed after the log
 
12326
  for your viewing pleasure.
 
12327
 
 
12328
* InventoryEntry is now an abstract base class, use one of the
 
12329
  concrete InventoryDirectory etc classes instead.
 
12330
 
 
12331
* Branch raises an UnsupportedFormatError when it detects a
 
12332
  bzr branch it cannot understand. This allows for precise
 
12333
  handling of such circumstances.
 
12334
 
 
12335
* Remove RevisionReference class; ``Revision.parent_ids`` is now simply a
 
12336
  list of their ids and ``parent_sha1s`` is a list of their corresponding
 
12337
  sha1s (for old branches only at the moment.)
 
12338
 
 
12339
* New method-object style interface for Commit() and Fetch().
 
12340
 
 
12341
* Renamed ``Branch.last_patch()`` to ``Branch.last_revision()``, since
 
12342
  we call them revisions not patches.
 
12343
 
 
12344
* Move ``copy_branch`` to ``bzrlib.clone.copy_branch``.  The destination
 
12345
  directory is created if it doesn't exist.
 
12346
 
 
12347
* Inventories now identify the files which were present by
 
12348
  giving the revision *of that file*.
 
12349
 
 
12350
* Inventory and Revision XML contains a version identifier.
 
12351
  This must be consistent with the overall branch version
 
12352
  but allows for more flexibility in future upgrades.
 
12353
 
 
12354
Testing
 
12355
*******
 
12356
 
 
12357
* Removed testsweet module so that tests can be run after
 
12358
  bzr installed by 'bzr selftest'.
 
12359
 
 
12360
* 'bzr selftest' command-line arguments can now be partial ids
 
12361
  of tests to run, e.g. ``bzr selftest test_weave``
 
12362
 
 
12363
 
 
12364
bzr 0.0.9
 
12365
#########
 
12366
 
 
12367
:Released: 2005-09-23
 
12368
 
 
12369
Bug Fixes
 
12370
*********
 
12371
 
 
12372
* Fixed "branch -r" option.
 
12373
 
 
12374
* Fix remote access to branches containing non-compressed history.
 
12375
  (Robert Collins).
 
12376
 
 
12377
* Better reliability of http server tests.  (John Arbash-Meinel)
 
12378
 
 
12379
* Merge graph maximum distance calculation fix.  (Aaron Bentley)
 
12380
 
 
12381
* Various minor bug in windows support have been fixed, largely in the
 
12382
  test suite. Contributed by Alexander Belchenko.
 
12383
 
 
12384
Improvements
 
12385
************
 
12386
 
 
12387
* Status now accepts a -r argument to give status between chosen
 
12388
  revisions. Contributed by Heikki Paajanen.
 
12389
 
 
12390
* Revision arguments no longer use +/-/= to control ranges, instead
 
12391
  there is a 'before' namespace, which limits the successive namespace.
 
12392
  For example '$ bzr log -r date:yesterday..before:date:today' will
 
12393
  select everything from yesterday and before today. Contributed by
 
12394
  Robey Pointer
 
12395
 
 
12396
* There is now a bzr.bat file created by distutils when building on
 
12397
  Windows. Contributed by Alexander Belchenko.
 
12398
 
 
12399
Internals
 
12400
*********
 
12401
 
 
12402
* Removed uuid() as it was unused.
 
12403
 
 
12404
* Improved 'fetch' code for pulling revisions from one branch into
 
12405
  another (used by pull, merged, etc.)
 
12406
 
 
12407
 
 
12408
bzr 0.0.8
 
12409
#########
 
12410
 
 
12411
:Released: 2005-09-20
 
12412
 
 
12413
 
 
12414
Improvements
 
12415
************
 
12416
 
 
12417
* Adding a file whose parent directory is not versioned will
 
12418
  implicitly add the parent, and so on up to the root. This means
 
12419
  you should never need to explictly add a directory, they'll just
 
12420
  get added when you add a file in the directory.  Contributed by
 
12421
  Michael Ellerman.
 
12422
 
 
12423
* Ignore ``.DS_Store`` (contains Mac metadata) by default.
 
12424
  (Nir Soffer)
 
12425
 
 
12426
* If you set ``BZR_EDITOR`` in the environment, it is checked in
 
12427
  preference to EDITOR and the config file for the interactive commit
 
12428
  editing program. Related to this is a bugfix where a missing program
 
12429
  set in EDITOR would cause editing to fail, now the fallback program
 
12430
  for the operating system is still tried.
 
12431
 
 
12432
* Files that are not directories/symlinks/regular files will no longer
 
12433
  cause bzr to fail, it will just ignore them by default. You cannot add
 
12434
  them to the tree though - they are not versionable.
 
12435
 
 
12436
 
 
12437
Internals
 
12438
*********
 
12439
 
 
12440
* Refactor xml packing/unpacking.
 
12441
 
 
12442
Bug Fixes
 
12443
*********
 
12444
 
 
12445
* Fixed 'bzr mv' by Ollie Rutherfurd.
 
12446
 
 
12447
* Fixed strange error when trying to access a nonexistent http
 
12448
  branch.
 
12449
 
 
12450
* Make sure that the hashcache gets written out if it can't be
 
12451
  read.
 
12452
 
 
12453
 
 
12454
Portability
 
12455
***********
 
12456
 
 
12457
* Various Windows fixes from Ollie Rutherfurd.
 
12458
 
 
12459
* Quieten warnings about locking; patch from Matt Lavin.
 
12460
 
 
12461
 
 
12462
bzr-0.0.7
 
12463
#########
 
12464
 
 
12465
:Released: 2005-09-02
 
12466
 
 
12467
New Features
 
12468
************
 
12469
 
 
12470
* ``bzr shell-complete`` command contributed by Clint Adams to
 
12471
  help with intelligent shell completion.
 
12472
 
 
12473
* New expert command ``bzr find-merge-base`` for debugging merges.
 
12474
 
 
12475
 
 
12476
Enhancements
 
12477
************
 
12478
 
 
12479
* Much better merge support.
 
12480
 
 
12481
* merge3 conflicts are now reported with markers like '<<<<<<<'
 
12482
  (seven characters) which is the same as CVS and pleases things
 
12483
  like emacs smerge.
 
12484
 
 
12485
 
 
12486
Bug Fixes
 
12487
*********
 
12488
 
 
12489
* ``bzr upgrade`` no longer fails when trying to fix trees that
 
12490
  mention revisions that are not present.
 
12491
 
 
12492
* Fixed bugs in listing plugins from ``bzr plugins``.
 
12493
 
 
12494
* Fix case of $EDITOR containing options for the editor.
 
12495
 
 
12496
* Fix log -r refusing to show the last revision.
 
12497
  (Patch from Goffredo Baroncelli.)
 
12498
 
 
12499
 
 
12500
Changes
 
12501
*******
 
12502
 
 
12503
* ``bzr log --show-ids`` shows the revision ids of all parents.
 
12504
 
 
12505
* Externally provided commands on your $BZRPATH no longer need
 
12506
  to recognize --bzr-usage to work properly, and can just handle
 
12507
  --help themselves.
 
12508
 
 
12509
 
 
12510
Library
 
12511
*******
 
12512
 
 
12513
* Changed trace messages to go through the standard logging
 
12514
  framework, so that they can more easily be redirected by
 
12515
  libraries.
 
12516
 
 
12517
 
 
12518
 
 
12519
bzr-0.0.6
 
12520
#########
 
12521
 
 
12522
:Released: 2005-08-18
 
12523
 
 
12524
New Features
 
12525
************
 
12526
 
 
12527
* Python plugins, automatically loaded from the directories on
 
12528
  ``BZR_PLUGIN_PATH`` or ``~/.bzr.conf/plugins`` by default.
 
12529
 
 
12530
* New 'bzr mkdir' command.
 
12531
 
 
12532
* Commit mesage is fetched from an editor if not given on the
 
12533
  command line; patch from Torsten Marek.
 
12534
 
 
12535
* ``bzr log -m FOO`` displays commits whose message matches regexp
 
12536
  FOO.
 
12537
 
 
12538
* ``bzr add`` with no arguments adds everything under the current directory.
 
12539
 
 
12540
* ``bzr mv`` does move or rename depending on its arguments, like
 
12541
  the Unix command.
 
12542
 
 
12543
* ``bzr missing`` command shows a summary of the differences
 
12544
  between two trees.  (Merged from John Arbash-Meinel.)
 
12545
 
 
12546
* An email address for commits to a particular tree can be
 
12547
  specified by putting it into .bzr/email within a branch.  (Based
 
12548
  on a patch from Heikki Paajanen.)
 
12549
 
 
12550
 
 
12551
Enhancements
 
12552
************
 
12553
 
 
12554
* Faster working tree operations.
 
12555
 
 
12556
 
 
12557
Changes
 
12558
*******
 
12559
 
 
12560
* 3rd-party modules shipped with bzr are copied within the bzrlib
 
12561
  python package, so that they can be installed by the setup
 
12562
  script without clashing with anything already existing on the
 
12563
  system.  (Contributed by Gustavo Niemeyer.)
 
12564
 
 
12565
* Moved plugins directory to bzrlib/, so that there's a standard
 
12566
  plugin directory which is not only installed with bzr itself but
 
12567
  is also available when using bzr from the development tree.
 
12568
  ``BZR_PLUGIN_PATH`` and ``DEFAULT_PLUGIN_PATH`` are then added to the
 
12569
  standard plugins directory.
 
12570
 
 
12571
* When exporting to a tarball with ``bzr export --format tgz``, put
 
12572
  everything under a top directory rather than dumping it into the
 
12573
  current directory.   This can be overridden with the ``--root``
 
12574
  option.  Patch from William Dodé and John Meinel.
 
12575
 
 
12576
* New ``bzr upgrade`` command to upgrade the format of a branch,
 
12577
  replacing ``bzr check --update``.
 
12578
 
 
12579
* Files within store directories are no longer marked readonly on
 
12580
  disk.
 
12581
 
 
12582
* Changed ``bzr log`` output to a more compact form suggested by
 
12583
  John A Meinel.  Old format is available with the ``--long`` or
 
12584
  ``-l`` option, patched by William Dodé.
 
12585
 
 
12586
* By default the commit command refuses to record a revision with
 
12587
  no changes unless the ``--unchanged`` option is given.
 
12588
 
 
12589
* The ``--no-plugins``, ``--profile`` and ``--builtin`` command
 
12590
  line options must come before the command name because they
 
12591
  affect what commands are available; all other options must come
 
12592
  after the command name because their interpretation depends on
 
12593
  it.
 
12594
 
 
12595
* ``branch`` and ``clone`` added as aliases for ``branch``.
 
12596
 
 
12597
* Default log format is back to the long format; the compact one
 
12598
  is available with ``--short``.
 
12599
 
 
12600
 
 
12601
Bug Fixes
 
12602
*********
 
12603
 
 
12604
* Fix bugs in committing only selected files or within a subdirectory.
 
12605
 
 
12606
 
 
12607
bzr-0.0.5
 
12608
#########
 
12609
 
 
12610
:Released:  2005-06-15
 
12611
 
 
12612
Changes
 
12613
*******
 
12614
 
 
12615
* ``bzr`` with no command now shows help rather than giving an
 
12616
  error.  Suggested by Michael Ellerman.
 
12617
 
 
12618
* ``bzr status`` output format changed, because svn-style output
 
12619
  doesn't really match the model of bzr.  Now files are grouped by
 
12620
  status and can be shown with their IDs.  ``bzr status --all``
 
12621
  shows all versioned files and unknown files but not ignored files.
 
12622
 
 
12623
* ``bzr log`` runs from most-recent to least-recent, the reverse
 
12624
  of the previous order.  The previous behaviour can be obtained
 
12625
  with the ``--forward`` option.
 
12626
 
 
12627
* ``bzr inventory`` by default shows only filenames, and also ids
 
12628
  if ``--show-ids`` is given, in which case the id is the second
 
12629
  field.
 
12630
 
 
12631
 
 
12632
Enhancements
 
12633
************
 
12634
 
 
12635
* New 'bzr whoami --email' option shows only the email component
 
12636
  of the user identification, from Jo Vermeulen.
 
12637
 
 
12638
* New ``bzr ignore PATTERN`` command.
 
12639
 
 
12640
* Nicer error message for broken pipe, interrupt and similar
 
12641
  conditions that don't indicate an internal error.
 
12642
 
 
12643
* Add ``.*.sw[nop] .git .*.tmp *,v`` to default ignore patterns.
 
12644
 
 
12645
* Per-branch locks keyed on ``.bzr/branch-lock``, available in
 
12646
  either read or write mode.
 
12647
 
 
12648
* New option ``bzr log --show-ids`` shows revision and file ids.
 
12649
 
 
12650
* New usage ``bzr log FILENAME`` shows only revisions that
 
12651
  affected that file.
 
12652
 
 
12653
* Changed format for describing changes in ``bzr log -v``.
 
12654
 
 
12655
* New option ``bzr commit --file`` to take a message from a file,
 
12656
  suggested by LarstiQ.
 
12657
 
 
12658
* New syntax ``bzr status [FILE...]`` contributed by Bartosz
 
12659
  Oler.  File may be in a branch other than the working directory.
 
12660
 
 
12661
* ``bzr log`` and ``bzr root`` can be given an http URL instead of
 
12662
  a filename.
 
12663
 
 
12664
* Commands can now be defined by external programs or scripts
 
12665
  in a directory on $BZRPATH.
 
12666
 
 
12667
* New "stat cache" avoids reading the contents of files if they
 
12668
  haven't changed since the previous time.
 
12669
 
 
12670
* If the Python interpreter is too old, try to find a better one
 
12671
  or give an error.  Based on a patch from Fredrik Lundh.
 
12672
 
 
12673
* New optional parameter ``bzr info [BRANCH]``.
 
12674
 
 
12675
* New form ``bzr commit SELECTED`` to commit only selected files.
 
12676
 
 
12677
* New form ``bzr log -r FROM:TO`` shows changes in selected
 
12678
  range; contributed by John A Meinel.
 
12679
 
 
12680
* New option ``bzr diff --diff-options 'OPTS'`` allows passing
 
12681
  options through to an external GNU diff.
 
12682
 
 
12683
* New option ``bzr add --no-recurse`` to add a directory but not
 
12684
  their contents.
 
12685
 
 
12686
* ``bzr --version`` now shows more information if bzr is being run
 
12687
  from a branch.
 
12688
 
 
12689
 
 
12690
Bug Fixes
 
12691
*********
 
12692
 
 
12693
* Fixed diff format so that added and removed files will be
 
12694
  handled properly by patch.  Fix from Lalo Martins.
 
12695
 
 
12696
* Various fixes for files whose names contain spaces or other
 
12697
  metacharacters.
 
12698
 
 
12699
 
 
12700
Testing
 
12701
*******
 
12702
 
 
12703
* Converted black-box test suites from Bourne shell into Python;
 
12704
  now run using ``./testbzr``.  Various structural improvements to
 
12705
  the tests.
 
12706
 
 
12707
* testbzr by default runs the version of bzr found in the same
 
12708
  directory as the tests, or the one given as the first parameter.
 
12709
 
 
12710
* testbzr also runs the internal tests, so the only command
 
12711
  required to check is just ``./testbzr``.
 
12712
 
 
12713
* testbzr requires python2.4, but can be used to test bzr running
 
12714
  under a different version.
 
12715
 
 
12716
* Tests added for many other changes in this release.
 
12717
 
 
12718
 
 
12719
Internal
 
12720
********
 
12721
 
 
12722
* Included ElementTree library upgraded to 1.2.6 by Fredrik Lundh.
 
12723
 
 
12724
* Refactor command functions into Command objects based on HCT by
 
12725
  Scott James Remnant.
 
12726
 
 
12727
* Better help messages for many commands.
 
12728
 
 
12729
* Expose ``bzrlib.open_tracefile()`` to start the tracefile; until
 
12730
  this is called trace messages are just discarded.
 
12731
 
 
12732
* New internal function ``find_touching_revisions()`` and hidden
 
12733
  command touching-revisions trace the changes to a given file.
 
12734
 
 
12735
* Simpler and faster ``compare_inventories()`` function.
 
12736
 
 
12737
* ``bzrlib.open_tracefile()`` takes a tracefilename parameter.
 
12738
 
 
12739
* New AtomicFile class.
 
12740
 
 
12741
* New developer commands ``added``, ``modified``.
 
12742
 
 
12743
 
 
12744
Portability
 
12745
***********
 
12746
 
 
12747
* Cope on Windows on python2.3 by using the weaker random seed.
 
12748
  2.4 is now only recommended.
 
12749
 
 
12750
 
 
12751
bzr-0.0.4
 
12752
#########
 
12753
 
 
12754
:Released:  2005-04-22
 
12755
 
 
12756
Enhancements
 
12757
************
 
12758
 
 
12759
* 'bzr diff' optionally takes a list of files to diff.  Still a bit
 
12760
  basic.  Patch from QuantumG.
 
12761
 
 
12762
* More default ignore patterns.
 
12763
 
 
12764
* New 'bzr log --verbose' shows a list of files changed in the
 
12765
  changeset.  Patch from Sebastian Cote.
 
12766
 
 
12767
* Roll over ~/.bzr.log if it gets too large.
 
12768
 
 
12769
* Command abbreviations 'ci', 'st', 'stat', '?' based on a patch
 
12770
  by Jason Diamon.
 
12771
 
 
12772
* New 'bzr help commands' based on a patch from Denys Duchier.
 
12773
 
 
12774
 
 
12775
Changes
 
12776
*******
 
12777
 
 
12778
* User email is determined by looking at $BZREMAIL or ~/.bzr.email
 
12779
  or $EMAIL.  All are decoded by the locale preferred encoding.
 
12780
  If none of these are present user@hostname is used.  The host's
 
12781
  fully-qualified name is not used because that tends to fail when
 
12782
  there are DNS problems.
 
12783
 
 
12784
* New 'bzr whoami' command instead of username user-email.
 
12785
 
 
12786
 
 
12787
Bug Fixes
 
12788
*********
 
12789
 
 
12790
* Make commit safe for hardlinked bzr trees.
 
12791
 
 
12792
* Some Unicode/locale fixes.
 
12793
 
 
12794
* Partial workaround for ``difflib.unified_diff`` not handling
 
12795
  trailing newlines properly.
 
12796
 
 
12797
 
 
12798
Internal
 
12799
********
 
12800
 
 
12801
* Allow docstrings for help to be in PEP0257 format.  Patch from
 
12802
  Matt Brubeck.
 
12803
 
 
12804
* More tests in test.sh.
 
12805
 
 
12806
* Write profile data to a temporary file not into working
 
12807
  directory and delete it when done.
 
12808
 
 
12809
* Smaller .bzr.log with process ids.
 
12810
 
 
12811
 
 
12812
Portability
 
12813
***********
 
12814
 
 
12815
* Fix opening of ~/.bzr.log on Windows.  Patch from Andrew
 
12816
  Bennetts.
 
12817
 
 
12818
* Some improvements in handling paths on Windows, based on a patch
 
12819
  from QuantumG.
 
12820
 
 
12821
 
 
12822
bzr-0.0.3
 
12823
#########
 
12824
 
 
12825
:Released:  2005-04-06
 
12826
 
 
12827
Enhancements
 
12828
************
 
12829
 
 
12830
* New "directories" internal command lists versioned directories
 
12831
  in the tree.
 
12832
 
 
12833
* Can now say "bzr commit --help".
 
12834
 
 
12835
* New "rename" command to rename one file to a different name
 
12836
  and/or directory.
 
12837
 
 
12838
* New "move" command to move one or more files into a different
 
12839
  directory.
 
12840
 
 
12841
* New "renames" command lists files renamed since base revision.
 
12842
 
 
12843
* New cat command contributed by janmar.
 
12844
 
 
12845
Changes
 
12846
*******
 
12847
 
 
12848
* .bzr.log is placed in $HOME (not pwd) and is always written in
 
12849
  UTF-8.  (Probably not a completely good long-term solution, but
 
12850
  will do for now.)
 
12851
 
 
12852
Portability
 
12853
***********
 
12854
 
 
12855
* Workaround for difflib bug in Python 2.3 that causes an
 
12856
  exception when comparing empty files.  Reported by Erik Toubro
 
12857
  Nielsen.
 
12858
 
 
12859
Internal
 
12860
********
 
12861
 
 
12862
* Refactored inventory storage to insert a root entry at the top.
 
12863
 
 
12864
Testing
 
12865
*******
 
12866
 
 
12867
* Start of shell-based black-box testing in test.sh.
 
12868
 
 
12869
 
 
12870
bzr-0.0.2.1
 
12871
###########
 
12872
 
 
12873
Portability
 
12874
***********
 
12875
 
 
12876
* Win32 fixes from Steve Brown.
 
12877
 
 
12878
 
 
12879
bzr-0.0.2
 
12880
#########
 
12881
 
 
12882
:Codename: "black cube"
 
12883
:Released: 2005-03-31
 
12884
 
 
12885
Enhancements
 
12886
************
 
12887
 
 
12888
* Default ignore list extended (see bzrlib/__init__.py).
 
12889
 
 
12890
* Patterns in .bzrignore are now added to the default ignore list,
 
12891
  rather than replacing it.
 
12892
 
 
12893
* Ignore list isn't reread for every file.
 
12894
 
 
12895
* More help topics.
 
12896
 
 
12897
* Reinstate the 'bzr check' command to check invariants of the
 
12898
  branch.
 
12899
 
 
12900
* New 'ignored' command lists which files are ignored and why;
 
12901
  'deleted' lists files deleted in the current working tree.
 
12902
 
 
12903
* Performance improvements.
 
12904
 
 
12905
* New global --profile option.
 
12906
 
 
12907
* Ignore patterns like './config.h' now correctly match files in
 
12908
  the root directory only.
 
12909
 
 
12910
 
 
12911
bzr-0.0.1
 
12912
#########
 
12913
 
 
12914
:Released:  2005-03-26
 
12915
 
 
12916
Enhancements
 
12917
************
 
12918
 
 
12919
* More information from info command.
 
12920
 
 
12921
* Can now say "bzr help COMMAND" for more detailed help.
 
12922
 
 
12923
* Less file flushing and faster performance when writing logs and
 
12924
  committing to stores.
 
12925
 
 
12926
* More useful verbose output from some commands.
 
12927
 
 
12928
Bug Fixes
 
12929
*********
 
12930
 
 
12931
* Fix inverted display of 'R' and 'M' during 'commit -v'.
 
12932
 
 
12933
Portability
 
12934
***********
 
12935
 
 
12936
* Include a subset of ElementTree-1.2.20040618 to make
 
12937
  installation easier.
 
12938
 
 
12939
* Fix time.localtime call to work with Python 2.3 (the minimum
 
12940
  supported).
 
12941
 
 
12942
 
 
12943
bzr-0.0.0.69
 
12944
############
 
12945
 
 
12946
:Released:  2005-03-22
 
12947
 
 
12948
Enhancements
 
12949
************
 
12950
 
 
12951
* First public release.
 
12952
 
 
12953
* Storage of local versions: init, add, remove, rm, info, log,
 
12954
  diff, status, etc.
 
12955
 
 
12956
 
 
12957
..
 
12958
   vim: tw=74 ft=rst ff=unix encoding=utf-8