~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Martin von Gagern
  • Date: 2010-04-20 08:47:38 UTC
  • mfrom: (5167 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5195.
  • Revision ID: martin.vgagern@gmx.net-20100420084738-ygymnqmdllzrhpfn
merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
--------------------
 
1
####################
2
2
Bazaar Release Notes
3
 
--------------------
4
 
 
5
 
.. contents::
6
 
 
7
 
IN DEVELOPMENT
8
 
--------------
9
 
 
10
 
  CHANGES:
11
 
 
12
 
    * ``bzr log file`` has been changed. It now uses a different method
13
 
      for determining which revisions to show as merging the changes to
14
 
      the file. It now only shows revisions which merged the change
15
 
      towards your mainline. This simplifies the output, makes it faster,
16
 
      and reduces memory consumption.  (John Arbash Meinel)
17
 
 
18
 
    * ``bzr+http//`` will now optionally load plugins and write logs on the
19
 
      server. (Marius Kruger)
20
 
 
21
 
  FEATURES
22
 
 
23
 
    * bzr is now compatible with python-2.6. python-2.6 is not yet officially
24
 
      supported (nor released, tests were conducted with the dev version of
25
 
      python-2.6rc2), but all known problems have been fixed . Feedback
26
 
      welcome.
27
 
      (Vincent Ladeuil, #269535)
28
 
 
29
 
  IMPROVEMENTS:
30
 
 
31
 
    * ``bzr annotate`` will now include uncommitted changes from the local
32
 
      working tree by default. Such uncommitted changes are given the
33
 
      revision number they would get if a commit was done, followed with a
34
 
      ? to indicate that its not actually known. (Robert Collins, #3439)
35
 
 
36
 
    * ``bzr branch`` now accepts a ``--standalone`` option, which creates a
37
 
      standalone branch regardless of the presence of shared repositories.
38
 
      (Daniel Watkins)
39
 
 
40
 
    * ``bzr push`` is faster in the case there are no new revisions to
41
 
      push.  It is also faster if there are no tags in the local branch.
42
 
      (Andrew Bennetts)
43
 
 
44
 
    * File changes during a commit will update the tree stat cache.
45
 
      (Robert Collins)
46
 
 
47
 
    * Location aliases can now accept a trailing path.  (Micheal Hudson)
48
 
 
49
 
    * New hooks ``Lock.hooks`` when LockDirs are acquired and released. 
50
 
      (Robert Collins, MartinPool)
51
 
 
52
 
    * Switching in heavyweight checkouts uses the master branch's context, not
53
 
      the checkout's context.  (Adrian Wilkins)
54
 
 
55
 
    * ``status`` on large trees is now faster, due to optimisations in the
56
 
      walkdirs code. Of particular note, the walkdirs code now performs
57
 
      a temporary ``chdir()`` while reading a single directory; if your
58
 
      platform has non thread-local current working directories (and is
59
 
      not windows which has its own implementation), this may introduce a
60
 
      race condition during concurrent uses of bzrlib. The bzrlib CLI
61
 
      will not encounter this as it is single threaded for working tree
62
 
      operations. (Robert Collins)
63
 
 
64
 
    * The C extensions now build on python 2.4 (Robert Collins, #271939)
65
 
 
66
 
  BUG FIXES:
67
 
 
68
 
    * Branching from a shared repository on a smart server into a new
69
 
      repository now preserves the repository format.
70
 
      (Andrew Bennetts, #269214)
71
 
 
72
 
    * ``bzr log`` now accepts a ``--change`` option.
73
 
      (Vincent Ladeuil, #248427)
74
 
 
75
 
    * ``bzr missing`` now accepts an ``--include-merges`` option.
76
 
      (Vincent Ladeuil, #233817)
77
 
 
78
 
    * Don't try to filter (internally) '.bzr' from the files to be deleted if
79
 
      it's not there.
80
 
      (Vincent Ladeuil, #272648)
81
 
 
82
 
    * Fix '_in_buffer' AttributeError when using the -Dhpss debug flag.
83
 
      (Andrew Bennetts)
84
 
 
85
 
    * Fix TooManyConcurrentRequests errors caused by a connection failure
86
 
      when doing ``bzr pull`` or ``bzr merge`` from a ``bzr+ssh`` URL.
87
 
      (Andrew Bennetts, #246233)
88
 
 
89
 
    * Fixed ``bzr st -r branch:PATH_TO_BRANCH`` where the other branch
90
 
      is in a different repository than the current one.
91
 
      (Lukáš Lalinský, #144421)
92
 
 
93
 
    * Make the first line of the manpage preamble a comment again.
94
 
      (David Futcher, #242106)
95
 
 
96
 
    * The autopacking logic will now always create a single new pack from
97
 
      all of the content which it deems is worth moving. This avoids the
98
 
      'repack a single pack' bug and should result in better packing
99
 
      overall.  (John Arbash Meinel, #242510, #172644)
100
 
 
101
 
    * Trivial documentation fix.
102
 
      (John Arbash Meinel, #270471)
103
 
 
104
 
  DOCUMENTATION:
105
 
 
106
 
    * Explain revision/range identifiers. (Daniel Clemente)
107
 
 
108
 
  API CHANGES:
109
 
 
110
 
    * ``CommitBuilder.record_entry_contents`` returns one more element in
111
 
      its result tuple - an optional file system hash for the hash cache
112
 
      to use. (Robert Collins)
113
 
 
114
 
    * ``dirstate.DirState.update_entry`` will now only calculate the sha1
115
 
      of a file if it is likely to be needed in determining the output
116
 
      of iter_changes. (Robert Collins)
117
 
 
118
 
    * The PackRepository, RepositoryPackCollection, NewPack classes have a
119
 
      slightly changed interface to support different index types; as a
120
 
      result other users of these classes need to supply the index types
121
 
      they want. (Robert Collins)
122
 
 
123
 
  TESTING:
124
 
 
125
 
    * ``bzrlib.tests.repository_implementations`` has been renamed to
126
 
      ``bzrlib.tests.per_repository`` so that we have a common structure
127
 
      (and it is shorter). (John Arbash Meinel, #239343)
128
 
 
129
 
    * ``LocalTransport.abspath()`` now returns a drive letter if the
130
 
      transport has one, fixing numerous tests on Windows.
131
 
      (Mark Hammond)
132
 
 
133
 
    * The full test suite is passing again on OSX.
134
 
      (Guillermo Gonzalez, Vincent Ladeuil)
135
 
 
136
 
    * PreviewTree is now tested via intertree_implementations.
137
 
      (Aaron Bentley)
138
 
 
139
 
  INTERNALS:
140
 
 
141
 
    * A new hook, ``Branch.open``, has been added, which is called when
142
 
      branch objects are opened. (Robert Collins)
143
 
 
144
 
    * ``bzrlib.osutils._walkdirs_utf8`` has been refactored into common
145
 
      tree walking, and modular directory listing code to aid future
146
 
      performance optimisations and refactoring. (Robert Collins)
147
 
 
148
 
    * ``bzrlib.trace.debug_memory`` can be used to get a quick memory dump
149
 
      in the middle of processing. It only reports memory if
150
 
      ``/proc/PID/status`` is available. (John Arbash Meinel)
151
 
 
152
 
    * New method ``RevisionSpec.as_tree`` for representing the revision
153
 
      specifier as a revision tree object. (Lukáš Lalinský)
154
 
 
155
 
    * New race-free method on MutableTree ``get_file_with_stat`` for use
156
 
      when generating stat cache results. (Robert Collins)
157
 
 
158
 
    * New win32utils.get_local_appdata_location() provides access to a local
159
 
      directory for storing data.  (Mark Hammond)
160
 
 
161
 
    * To be compatible with python-2.6 a few new rules should be
162
 
      observed. 'message' attribute can't be used anymore in exception
163
 
      classes, 'sha' and 'md5' modules have been deprecated (use
164
 
      osutils.[md5|sha]), object__init__ and object.__new__ don't accept
165
 
      parameters anymore.
166
 
      (Vincent Ladeuil)
167
 
 
168
 
bzr 1.7.1rc1 2008-09-24
169
 
-----------------------
 
3
####################
 
4
 
 
5
.. contents:: List of Releases
 
6
   :depth: 1
 
7
 
 
8
bzr 2.2b2
 
9
#########
 
10
 
 
11
:2.2b2: NOT RELEASED YET
 
12
 
 
13
Compatibility Breaks
 
14
********************
 
15
 
 
16
New Features
 
17
************
 
18
 
 
19
* ``bzr diff`` now supports a --format option, which can be used to 
 
20
  select alternative diff formats. (Jelmer Vernooij, #555994)
 
21
 
 
22
* ``bzr pack`` now supports a ``--clean-obsolete-packs`` option that
 
23
  can save disk space by deleting obsolete pack files created during the
 
24
  pack operation.
 
25
  (Parth Malwankar, #304320)
 
26
 
 
27
Bug Fixes
 
28
*********
 
29
 
 
30
* ``bzr dpush``, ``bzr push`` and ``bzr send`` will now issue a warning
 
31
  instead of failing when dirty trees are involved. The corresponding
 
32
  ``dpush_strict``, ``push_strict`` and ``send_strict`` should be set to
 
33
  True explicitly to get the previous behaviour.  
 
34
  (Vincent Ladeuil, #519319)
 
35
 
 
36
* ``bzr export`` to tar file does not fail if any parent directory
 
37
  contains unicode characters. This works around upstream Python bug
 
38
  http://bugs.python.org/issue8396 .
 
39
  (Parth Malwankar, #413406)
 
40
 
 
41
* ``bzr update`` when a pending merge in the working tree has been merged
 
42
  into the master branch will no longer claim that old commits have become
 
43
  pending merges. (Robert Collins, #562079)
 
44
 
 
45
* ``bzrlib.mutabletree.MutableTree.commit`` will now support a passed in
 
46
  config as in previous versions of bzrlib. (Robert Collins)
 
47
 
 
48
* ``bzr selftest`` should not use ui.note() since it's not unicode safe.
 
49
  (Vincent Ladeuil, #563997)
 
50
 
 
51
* Fix glitch in the warning about unclean trees display.
 
52
  (Vincent Ladeuil, #562665)
 
53
 
 
54
* Help messages generated by ``RegistryOption.from_kwargs`` list the
 
55
  switches in alphabetical order, rather than in an undefined order.
 
56
  (Martin von Gagern, #559409)
 
57
 
 
58
* Make sure the ``ExecutablePath`` and ``InterpreterPath`` are set in
 
59
  Apport crash reports, to avoid "This problem report applies to a program
 
60
  which is not installed any more" error.
 
61
  (Martin Pool, James Westby, #528114)
 
62
 
 
63
* Repositories accessed via a smart server now reject being stacked on a
 
64
  repository in an incompatible format, as is the case when accessing them
 
65
  via other methods.  This was causing fetches from those repositories via
 
66
  a smart server (e.g. using ``bzr branch``) to receive invalid data.
 
67
  (Andrew Bennetts, #562380)
 
68
 
 
69
* Reset ``siginterrupt`` flag to False every time we handle a signal
 
70
  installed with ``set_signal_handler(..., restart_syscall=True)`` (from
 
71
  ``bzrlib.osutils``.  Reduces the likelihood of "Interrupted System Call"
 
72
  errors after two window resizes.
 
73
  (Andrew Bennetts)
 
74
 
 
75
* When invoked with a range revision, ``bzr log`` doesn't show revisions
 
76
  that are not part of the ancestry anymore.
 
77
  (Vincent Ladeuil, #474807)
 
78
 
 
79
Improvements
 
80
************
 
81
 
 
82
* ``bzr commit`` will prompt before using a commit message that was
 
83
  generated by a template and not edited by the user.
 
84
  (Robert Collins, #530265)
 
85
 
 
86
* ``bzr diff`` read-locks the trees and branches only once, saving about
 
87
  10-20ms on ``bzr diff`` in a bzr.dev tree.
 
88
  (Andrew Bennetts)
 
89
 
 
90
* ``bzr missing`` read-locks the branches only once.
 
91
  (Andrew Bennetts)
 
92
  
 
93
* ``bzr pull`` locks the branches and tree only once.
 
94
  (Andrew Bennetts)
 
95
  
 
96
* Index lookups in pack repositories search recently hit pack files first.  
 
97
  In repositories with many pack files this can greatly reduce the
 
98
  number of files accessed, the number of bytes read, and the number of
 
99
  read calls.  An incremental pull via plain HTTP takes half the time and
 
100
  bytes for a moderately large repository.  (Andrew Bennetts)
 
101
 
 
102
* Index lookups only re-order the indexes when the hit files aren't
 
103
  already first. Reduces the cost of reordering
 
104
  (John Arbash Meinel, #562429)
 
105
 
 
106
* Less code is loaded at startup.  (Cold-cache start time is about 10-20%
 
107
  less.)
 
108
  (Martin Pool, #553017)
 
109
 
 
110
Documentation
 
111
*************
 
112
 
 
113
API Changes
 
114
***********
 
115
 
 
116
* ``bzrlib.diff.get_trees_and_branches_to_diff`` is deprecated.  Use
 
117
  ``get_trees_and_branches_to_diff_locked`` instead.
 
118
  (Andrew Bennetts)
 
119
  
 
120
Internals
 
121
*********
 
122
 
 
123
* ``bzrlib.commands.Command.run_direct`` is no longer needed - the pre
 
124
  2.1 method of calling run() to perform testing or direct use via the API
 
125
  is now possible again. As part of this, the _operation attribute on
 
126
  Command is now transient and only exists for the duration of ``run()``.
 
127
  (Robert Collins)
 
128
 
 
129
Testing
 
130
*******
 
131
 
 
132
 
 
133
bzr 2.2.0b1
 
134
###########
 
135
 
 
136
:2.2.0b1: Not released yet
 
137
 
 
138
Compatibility Breaks
 
139
********************
 
140
 
 
141
* BTreeGraphIndex can now take an offset to indicate that the data starts
 
142
  somewhere other than then beginning of the file. (John Arbash Meinel)
 
143
 
 
144
* Deleted very old hidden commands ``versionedfile-list``,
 
145
  ``weave-plan-merge``, ``weave-merge-text``.
 
146
  (Martin Pool)
 
147
 
 
148
* ``Repository.get_inventory_sha1()`` and ``Repository.get_revision_xml()`` 
 
149
  have been removed. (Jelmer Vernooij)
 
150
 
 
151
* ``Repository.get_revision_inventory()`` has been removed in favor of
 
152
  ``Repository.get_inventory()``. (Jelmer Vernooij)
 
153
 
 
154
* All test servers have been moved out of the bzrlib.transport hierarchy to
 
155
  bzrlib.tests.test_server *except* for MemoryServer, ChrootServer and
 
156
  PathFilteringServer. ``bzrlib`` users may encounter test failures that can
 
157
  be fixed by updating the related imports from ``bzrlib.transport.xxx`` to
 
158
  ``bzrlib.tests.test_server``.
 
159
  (Vincent Ladeuil)
 
160
 
 
161
* ``BranchReferenceFormat.initialize()`` now takes an optional name argument
 
162
  as its second parameter, for consistency with the initialize() method of
 
163
  other formats. (Jelmer Vernooij)
 
164
 
 
165
New Features
 
166
************
 
167
 
 
168
* Added ``bzr remove-branch`` command that can remove a local or remote 
 
169
  branch. (Jelmer Vernooij, #276295)
 
170
 
 
171
* ``bzr export`` now takes an optional argument ``--per-file-timestamps``
 
172
  to set file mtimes to the last timestamp of the last revision in which
 
173
  they were changed rather than the current time. (Jelmer Vernooij)
 
174
 
 
175
* If the Apport crash-reporting tool is available, bzr crashes are now
 
176
  stored into the ``/var/crash`` apport spool directory, and the user is
 
177
  invited to report them to the developers from there, either
 
178
  automatically or by running ``apport-bug``.  No information is sent
 
179
  without specific permission from the user.  (Martin Pool, #515052)
 
180
 
 
181
* Parsing of command lines, for example in ``diff --using``, no longer
 
182
  treats backslash as an escape character on Windows.   (Gordon Tyler,
 
183
  #392248)
 
184
 
 
185
* Plugins can be disabled by defining ``BZR_DISABLE_PLUGINS`` as
 
186
  a list of plugin names separated by ':' (';' on windows).
 
187
  (Vincent Ladeuil, #411413)
 
188
 
 
189
* Plugins can be loaded from arbitrary locations by defining
 
190
  ``BZR_PLUGINS_AT`` as a list of name@path separated by ':' (';' on
 
191
  windows). This takes precedence over ``BZR_PLUGIN_PATH`` for the
 
192
  specified plugins. This is targeted at plugin developers for punctual
 
193
  needs and *not* intended to replace ``BZR_PLUGIN_PATH``.  
 
194
  (Vincent Ladeuil, #82693)
 
195
 
 
196
* Tag names can now be determined automatically by ``automatic_tag_name`` 
 
197
  hooks on ``Branch`` if they are not specified on the command line.
 
198
  (Jelmer Vernooij)
 
199
 
 
200
* Tree-shape conflicts can be resolved by providing ``--take-this`` and
 
201
  ``--take-other`` to the ``bzr resolve`` command. Just marking the conflict
 
202
  as resolved is still accessible via the ``--done`` default action.
 
203
  (Vincent Ladeuil)
 
204
 
 
205
* Merges can be proposed on Launchpad with the new lp-propose-merge command.
 
206
  (Aaron Bentley, Jonathan Lange)
 
207
 
 
208
Bug Fixes
 
209
*********
 
210
 
 
211
* Added docstring for ``Tree.iter_changes``
 
212
  (John Arbash Meinel, #304182)
 
213
 
 
214
* Allow additional arguments to
 
215
  ``RemoteRepository.add_inventory_by_delta()``. (Jelmer Vernooij, #532631)
 
216
 
 
217
* Allow exporting a single file using ``bzr export``.
 
218
  (Michal Junák, #511987)
 
219
 
 
220
* Allow syscalls to automatically restart when ``TextUIFactory``'s
 
221
  SIGWINCH handler is invoked, avoiding ``EINTR`` errors during blocking
 
222
  IO, which are often poorly handled by Python's libraries and parts of
 
223
  bzrlib.  (Andrew Bennetts, #496813)
 
224
 
 
225
* Avoid infinite recursion when probing for apport.
 
226
  (Vincent Ladeuil, #516934)
 
227
 
 
228
* Avoid ``malloc(0)`` in ``patiencediff``, which is non-portable.
 
229
  (Martin Pool, #331095)
 
230
 
 
231
* Avoid truncating svn URLs.
 
232
  (Martin Pool, Martin von Gagern, #545185)
 
233
 
 
234
* ``bzr add`` will not add conflict related files unless explicitly required.
 
235
  (Vincent Ladeuil, #322767, #414589)
 
236
 
 
237
* ``bzr dump-btree`` now works on ``*.cix`` and ``*.six`` files.  Those
 
238
  indices do not have reference lists, so ``dump-btree`` will simply show
 
239
  ``None`` instead.  (Andrew Bennetts, #488607)
 
240
 
 
241
* ``bzr help`` will no longer trigger the get_missing_command hook when
 
242
  doing a topic lookup. This avoids prompting (like 'no command plugins/loom,
 
243
  did you mean log?') when getting help. In future we may trigger the hook 
 
244
  deliberately when no help topics match from any help index.
 
245
  (Robert Collins, #396261)
 
246
 
 
247
* ``bzr log -n0 -r..A.B.C`` should not crash but just consider the None
 
248
  revspec as representing the first revision of the branch.
 
249
  (Vincent Ladeuil, #519862)
 
250
 
 
251
* ``bzr remove-tree`` can now remove multiple working trees.
 
252
  (Jared Hance, Andrew Bennetts, #253137)
 
253
 
 
254
* ``bzr resolve --take-this`` and ``--take-other`` now correctly renames
 
255
  the kept file on content conflicts where one side deleted the file.
 
256
  (Vincent Ladeuil, #529968)
 
257
 
 
258
* ``bzr upgrade`` now creates the ``backup.bzr`` directory with the same
 
259
  permissions as ``.bzr`` directory on a POSIX OS.
 
260
  (Parth Malwankar, #262450)
 
261
 
 
262
* ``bzr upgrade`` now names backup directory as ``backup.bzr.~N~`` instead
 
263
  of ``backup.bzr``. This directory is ignored by bzr commands such as
 
264
  ``add``.
 
265
  (Parth Malwankar, #335033, #300001)
 
266
 
 
267
* Cope with non-utf8 characters inside ``.bzrignore``.
 
268
  (Jason Spashett, #183504)
 
269
 
 
270
* Correctly interpret "451 Rename/move failure: Directory not empty" from
 
271
  ftp servers while trying to take a lock.
 
272
  (Martin Pool, #528722)
 
273
 
 
274
* DirStateRevisionTree.kind() was returning wrong result when 'kind'
 
275
  changes occured between the workingtree and one of its parents.
 
276
  (Vincent Ladeuil, #535547)
 
277
 
 
278
* Fix ``log`` to better check ancestors even if merged revisions are involved.
 
279
  (Vincent Ladeuil, #476293)
 
280
 
 
281
* Loading a plugin from a given path with ``BZR_PLUGINS_AT`` doesn't depend
 
282
  on os.lisdir() order and is now reliable.
 
283
  (Vincent Ladeuil, #552922).
 
284
 
 
285
* Many IO operations that returned ``EINTR`` were retried even if it
 
286
  wasn't safe to do so via careless use of ``until_no_eintr``.  Bazaar now
 
287
  only retries operations that are safe to retry, and in some cases has
 
288
  switched to operations that can be retried (e.g. ``sock.send`` rather than
 
289
  ``sock.sendall``).
 
290
  (Andrew Bennetts, Martin <gzlist@googlemail.com>, #496813)
 
291
 
 
292
* Path conflicts now support --take-this and --take-other even when a
 
293
  deletion is involved.
 
294
  (Vincent Ladeuil, #531967)
 
295
 
 
296
* Network transfer amounts and rates are now displayed in SI units according
 
297
  to the Ubuntu Units Policy <https://wiki.ubuntu.com/UnitsPolicy>.
 
298
  (Gordon Tyler, #514399)
 
299
 
 
300
* Support kind markers for socket and fifo filesystem objects. This
 
301
  prevents ``bzr status --short`` from crashing when those files are
 
302
  present.  (John Arbash Meinel, #303275)
 
303
 
 
304
* ``bzr mkdir DIR`` will not create DIR unless DIR's parent is a versioned
 
305
   directory. (Parth Malwankar, #138600)
 
306
 
 
307
* SSH child processes will now ignore SIGQUIT on nix systems so breaking into
 
308
  the debugger won't kill the session.
 
309
  (Martin <gzlist@googlemail.com>, #162502)
 
310
 
 
311
* Tolerate patches with leading noise in ``bzr-handle-patch``.
 
312
  (Toshio Kuratomi, Martin Pool, #502076)
 
313
 
 
314
* ``update -r`` now supports updating to revisions that are not on
 
315
  mainline (i.e. it supports dotted revisions).
 
316
  (Parth Malwankar, #517800)
 
317
 
 
318
* ``.bazaar``, ``.bazaar/bazaar.conf`` and ``.bzr.log`` inherit user and
 
319
  group ownership from the containing directory. This allow bzr to work
 
320
  better with sudo.
 
321
  (Parth Malwankar, #376388)
 
322
 
 
323
* Use first apparent author not committer in GNU Changelog format.
 
324
  (Martin von Gagern, #513322)
 
325
 
 
326
API Changes
 
327
***********
 
328
 
 
329
* ``bzrlib.merge_directive._BaseMergeDirective`` has been renamed to 
 
330
  ``bzrlib.merge_directive.BaseMergeDirective`` and is now public.
 
331
  (Jelmer Vernooij)
 
332
 
 
333
* ``BranchFormat.initialize`` now takes an optional ``name`` of the colocated 
 
334
  branch to create. (Jelmer Vernooij)
 
335
 
 
336
* ``BzrDir.get_branch_transport`` now takes an optional ``name`` of the 
 
337
  colocated branch to open. (Jelmer Vernooij)
 
338
 
 
339
* Added ``bzrlib.osutils.set_signal_handler``, a convenience function that
 
340
  can set a signal handler and call ``signal.siginterrupt(signum,
 
341
  False)`` for it, if the platform and Python version supports it.
 
342
  (Andrew Bennetts, #496813)
 
343
 
 
344
* New ``bzrlib.initialize`` is recommended for programs using bzrlib to 
 
345
  run when starting up; it sets up several things that previously needed
 
346
  to be done separately.
 
347
  (Martin Pool, #507710)
 
348
 
 
349
* Exporters now support a ``per_file_timestamps`` argument to write out the 
 
350
  timestamp of the commit in which a file revision was introduced.
 
351
  (Jelmer Vernooij)
 
352
 
 
353
* New method ``BzrDir.list_branches()`` that returns a sequence of branches 
 
354
  present in a control directory. (Jelmer Vernooij)
 
355
 
 
356
* New method ``Repository.get_known_graph_ancestry()``. 
 
357
  (Jelmer Vernooij, #495502)
 
358
 
 
359
* New transport methods ``readlink``, ``symlink`` and ``hardlink``.
 
360
  (Neil Santos)
 
361
 
 
362
* Remove unused ``CommandFailed`` exception.
 
363
  (Martin Pool)
 
364
 
 
365
Internals
 
366
*********
 
367
 
 
368
* ``bzrlib.branchbuilder.BranchBuilder.build_snapshot`` now accepts a
 
369
  ``message_callback`` in the same way that commit does. (Robert Collins)
 
370
 
 
371
* ``bzrlib.builtins.Commit.run`` raises ``bzrlib.errors.BoundBranchOutOfDate``
 
372
  rather than ``bzrlib.errors.BzrCommandError`` when the bound branch is out
 
373
  of date. (Gary van der Merwe)
 
374
 
 
375
* ``bzrlib.commands.run_bzr`` is more extensible: callers can supply the
 
376
  functions to load or disable plugins if they wish to use a different
 
377
  plugin mechanism; the --help, --version and no-command name code paths
 
378
  now use the generic pluggable command lookup infrastructure.
 
379
  (Robert Collins)
 
380
 
 
381
* ``bzrlib.errors.BoundBranchOutOfDate`` has a new field ``extra_help``
 
382
  which can be set to add extra help to the error. (Gary van der Merwe)
 
383
 
 
384
* New method ``Branch.automatic_tag_name`` that can be used to find the
 
385
  tag name for a particular revision automatically. (Jelmer Vernooij)
 
386
 
 
387
* The methods ``BzrDir.create_branch()``, ``BzrDir.destroy_branch()`` and 
 
388
  ``BzrDir.open_branch()`` now take an optional ``name`` argument. 
 
389
  (Jelmer Vernooij)
 
390
 
 
391
Testing
 
392
*******
 
393
 
 
394
* bzr now has a ``.testr.conf`` file in its source tree configured
 
395
  appropriately for running tests with Testrepository
 
396
  (``https://launchpad.net/testrepository``). (Robert Collins)
 
397
 
 
398
* Documentation about testing with ``subunit`` has been tweaked.
 
399
  (Robert Collins)
 
400
 
 
401
* Known failures has been added for resolve --take-other on ParentLoop
 
402
  conflicts. This reflects bug #537956 without fixing it.
 
403
  (Vincent Ladeuil)
 
404
 
 
405
* New ``bzrlib.tests.test_import_tariff`` can make assertions about what
 
406
  Python modules are loaded, to guard against startup time or library
 
407
  dependency regressions.
 
408
  (Martin Pool)
 
409
 
 
410
* PQM will now run with subunit output. To analyze a PQM error use
 
411
  tribunal, or cat log | subunit-filter | subunit2pyunit. (Robert Collins)
 
412
 
 
413
* Stop sending apport crash files to ``.cache`` in the directory from
 
414
  which ``bzr selftest`` was run.  (Martin Pool, #422350)
 
415
 
 
416
* Tests no longer fail if "close() called during concurrent
 
417
  operation on the same file object" occurs when closing the log file
 
418
  (which can happen if a thread tries to write to the log file at the
 
419
  wrong moment).  An warning will be written to ``stderr`` when this
 
420
  happens, and another warning will be written if the log file could not
 
421
  be closed after retrying 100 times.  (Andrew Bennetts, #531746)
 
422
 
 
423
bzr 2.1.1
 
424
#########
 
425
 
 
426
:2.1.1: 2010-03-24
 
427
 
 
428
This is a small bugfix release.  Upgrading is recommended for anyone
 
429
running 2.1.0 or earlier.
 
430
 
 
431
Bug Fixes
 
432
*********
 
433
 
 
434
* Allow syscalls to automatically restart when ``TextUIFactory``'s
 
435
  SIGWINCH handler is invoked, avoiding ``EINTR`` errors during blocking
 
436
  IO, which are often poorly handled by Python's libraries and parts of
 
437
  bzrlib.  (Andrew Bennetts, #496813)
 
438
 
 
439
* Avoid ``malloc(0)`` in ``patiencediff``, which is non-portable.
 
440
  (Martin Pool, #331095)
 
441
 
 
442
* Fix plugin packaging on Windows. (Ian Clatworthy, #524162)
 
443
 
 
444
* Fix stub sftp test server to call os.getcwdu().
 
445
  (Vincent Ladeuil, #526221, #526353)
 
446
 
 
447
* Fixed CHM generation by moving the NEWS section template into
 
448
  a separate file. (Ian Clatworthy, #524184)
 
449
 
 
450
* Merge correctly when this_tree is not a WorkingTree.  (Aaron Bentley)
 
451
 
 
452
* Register SIGWINCH handler only when creating a ``TextUIFactory``; avoids
 
453
  problems importing bzrlib from a non-main thread.
 
454
  (Elliot Murphy, #521989)
 
455
 
 
456
* Standardize the error handling when creating a new ``StaticTuple``
 
457
  (problems will raise TypeError). (Matt Nordhoff, #457979)
 
458
 
 
459
* Warn if pyrex is too old to compile the new ``SimpleSet`` and
 
460
  ``StaticTuple`` extensions, rather than having the build fail randomly.
 
461
  (John Arbash Meinel, #449776)
 
462
 
 
463
Documentation
 
464
*************
 
465
 
 
466
* Added a link to the Desktop Guide. (Ian Clatworthy)
 
467
 
 
468
* Added What's New in Bazaar 2.1 document. (Ian Clatworthy)
 
469
 
 
470
* Drop Google Analytics from the core docs as they caused problems
 
471
  in the CHM files. (Ian Clatworthy, #502010)
 
472
 
 
473
API Changes
 
474
***********
 
475
 
 
476
* Added ``bzrlib.osutils.set_signal_handler``, a convenience function that
 
477
  can set a signal handler and call ``signal.siginterrupt(signum,
 
478
  False)`` for it, if the platform and Python version supports it.
 
479
  (Andrew Bennetts, #496813)
 
480
 
 
481
 
 
482
bzr 2.1.0
 
483
#########
 
484
 
 
485
:Codename: Strasbourg
 
486
:2.1.0: 2010-02-11
 
487
 
 
488
This release marks our second long-term-stable series. The Bazaar team
 
489
has decided that we will continue to make bugfix-only 2.0.x and 2.1.x
 
490
releases, along with 2.2 development releases. 
 
491
 
 
492
This is a fairly incremental update, focusing on polish and bugfixing.
 
493
There are no changes for supported disk formats. Key updates include
 
494
reduced memory consumption for many operations, a new per-file merge
 
495
hook, ignore patterns can now include '!' to exclude files, globbing
 
496
support for all commands on Windows, and support for addressing home
 
497
directories via ``bzr+ssh://host/~/`` syntax.
 
498
 
 
499
Users are encouraged to upgrade from the 2.0 stable series.
 
500
 
 
501
Bug Fixes
 
502
*********
 
503
 
 
504
* Don't require testtools to use sftp.
 
505
  (Vincent Ladeuil, #516183)
 
506
 
 
507
* Fix "AttributeError in Inter1and2Helper" during fetch.
 
508
  (Martin Pool, #513432)
 
509
 
 
510
* ``bzr update`` performs the two merges in a more logical order and will stop
 
511
  when it encounters conflicts.  
 
512
  (Gerard Krol, #113809)
 
513
 
 
514
* Give a better error message when doing ``bzr bind`` in an already bound
 
515
  branch.  (Neil Martinsen-Burrell, #513063)
 
516
 
 
517
* Ignore ``KeyError`` from ``remove_index`` during ``_abort_write_group``
 
518
  in a pack repository, which can happen harmlessly if the abort occurs during
 
519
  finishing the write group.  Also use ``bzrlib.cleanup`` so that any
 
520
  other errors that occur while aborting the individual packs won't be
 
521
  hidden by secondary failures when removing the corresponding indices.
 
522
  (Andrew Bennetts, #423015)
 
523
 
 
524
* Set the mtime of files exported to a directory by ``bzr export`` all to
 
525
  the same value to avoid confusing ``make`` and other date-based build
 
526
  systems. (Robert Collins, #515631)
 
527
 
 
528
Improvements
 
529
************
 
530
 
 
531
* Fetching into experimental formats will now print a warning. (Jelmer
 
532
  Vernooij)
 
533
 
 
534
API Changes
 
535
***********
 
536
 
 
537
* ``Repository.deserialise_inventory`` has been renamed to 
 
538
  ``Repository._deserialise_inventory`` to indicate it is private.
 
539
  (Jelmer Vernooij)
 
540
 
 
541
* ``Repository.get_inventory_xml`` has been renamed to 
 
542
  ``Repository._get_inventory_xml`` to indicate it is private. 
 
543
  (Jelmer Vernooij)
 
544
 
 
545
* ``Repository.serialise_inventory`` has been renamed to 
 
546
  ``Repository._serialise_inventory`` to indicate it is private.
 
547
 
 
548
* Using the ``bzrlib.chk_map`` module from within multiple threads at the
 
549
  same time was broken due to race conditions with a module level page
 
550
  cache. This shows up as a KeyError in the ``bzrlib.lru_cache`` code with
 
551
  ``bzrlib.chk_map`` in the backtrace, and can be triggered without using
 
552
  the same high level objects such as ``bzrlib.repository.Repository``
 
553
  from different threads. chk_map now uses a thread local cache which may
 
554
  increase memory pressure on processes using threads.
 
555
  (Robert Collins, John Arbash Meinel, #514090)
 
556
 
 
557
* The new ``merge_file_content`` should now be ok with tests to avoid
 
558
  regressions.
 
559
  (Vincent Ladeuil, #515597)
 
560
 
 
561
Internals
 
562
*********
 
563
 
 
564
* Use ``bzrlib.cleanup`` rather than less robust ``try``/``finally``
 
565
  blocks in several places in ``bzrlib.merge``.  This avoids masking prior
 
566
  errors when errors like ``ImmortalPendingDeletion`` occur during cleanup
 
567
  in ``do_merge``.
 
568
  (Andrew Bennetts, #517275)
 
569
 
 
570
API Changes
 
571
***********
 
572
 
 
573
* The ``remove_index`` method of
 
574
  ``bzrlib.repofmt.pack_repo.AggregateIndex`` no longer takes a ``pack``
 
575
  argument.  This argument was always ignored.
 
576
  (Andrew Bennetts, #423015)
 
577
 
 
578
bzr 2.1.0rc2
 
579
############
 
580
 
 
581
:Codename: after the bubbles
 
582
:2.1.0rc2: 2010-01-29
 
583
 
 
584
This is a quick-turn-around to update a small issue with our new per-file
 
585
merge hook. We expect no major changes from this to the final 2.1.0.
 
586
 
 
587
API Changes
 
588
***********
 
589
 
 
590
* The new ``merge_file_content`` hook point has been altered to provide a
 
591
  better API where state for extensions can be stored rather than the
 
592
  too-simple function based approach. This fixes a performance regression
 
593
  where branch configuration would be parsed per-file during merge. As
 
594
  part of this the included news_merger has been refactored into a base
 
595
  helper class ``bzrlib.merge.ConfigurableFileMerger``.
 
596
  (Robert Collins, John Arbash Meinel, #513822)
 
597
 
 
598
 
 
599
bzr 2.1.0rc1
 
600
############
 
601
 
 
602
:Codename: the 'new' stable
 
603
:2.1.0rc1: 2009-01-21
 
604
 
 
605
This is the first stable release candidate for Bazaar's 2.1 series. From
 
606
this point onwards, the 2.1 series will be considered stable (as the 2.0
 
607
series) and only bugfixes are expected to be incorporated. The dozen or so
 
608
bugfixes in the 2.0.4 release are also included in this release (along
 
609
with more than 15 more bugfixes). Some of the interesting features are
 
610
support for per-file merge hooks, ``bzr unshelve --preview``, support
 
611
for using ! in ignore files to exclude files from being ignored, a small
 
612
memory leak was squashed, and many ``ObjectNotLocked`` errors were fixed.
 
613
This looks to be a very good start for a new stable series.
 
614
 
 
615
 
 
616
New Features
 
617
************
 
618
 
 
619
* Add bug information to log output when available.
 
620
  (Neil Martinsen-Burrell, Guillermo Gonzalez, #251729)
 
621
 
 
622
* Added ``merge_file_content`` hook point to ``Merger``, allowing plugins
 
623
  to register custom merge logic, e.g. to provide smarter merging for
 
624
  particular files.
 
625
 
 
626
* Bazaar now includes the ``news_merge`` plugin.  It is disabled by
 
627
  default, to enable it add a ``news_merge_files`` option to your
 
628
  configuration.  Consult ``bzr help news_merge`` for more information.
 
629
  (Andrew Bennetts)
 
630
  
 
631
* ``bzr branch`` now takes a ``--bind`` option. This lets you
 
632
  branch and bind all in one command. (Ian Clatworthy)
 
633
 
 
634
* ``bzr switch`` now takes a ``--revision`` option, to allow switching to
 
635
  a specific revision of a branch. (Daniel Watkins, #183559)
 
636
 
 
637
* ``bzr unshelve --preview`` can now be used to show how a patch on the
 
638
  shelf would be applied to the working tree.
 
639
  (Guilherme Salgado, #308122)
 
640
 
 
641
* ``bzr update`` now takes a ``--revision`` argument. This lets you
 
642
  change the revision of the working tree to any revision in the
 
643
  ancestry of the current or master branch. (Matthieu Moy, Mark Hammond,
 
644
  Martin Pool, #45719)
 
645
 
 
646
* ``-Dbytes`` can now be used to display the total number of bytes
 
647
  transferred for the current command. This information is always logged
 
648
  to ``.bzr.log`` for later inspection. (John Arbash Meinel)
 
649
 
 
650
* New ignore patterns.  Patterns prefixed with '!' are exceptions to 
 
651
  ignore patterns and take precedence over regular ignores.  Such 
 
652
  exceptions are used to specify files that should be versioned which 
 
653
  would otherwise be ignored.  Patterns prefixed with '!!' act as regular 
 
654
  ignore patterns, but have highest precedence, even over the '!' 
 
655
  exception patterns. (John Whitley, #428031)
 
656
 
 
657
* The ``supress_warnings`` configuration option has been introduced to disable
 
658
  various warnings (it currently only supports the ``format_deprecation``
 
659
  warning). The new option can be set in any of the following locations:
 
660
  ``bazaar.conf``, ``locations.conf`` and/or ``branch.conf``.
 
661
  (Ted Gould, Matthew Fuller, Vincent Ladeuil)
 
662
 
 
663
Bug Fixes
 
664
*********
 
665
 
 
666
* Always show a message if an OS error occurs while trying to run a
 
667
  user-specified commit message editor.
 
668
  (Martin Pool, #504842)
 
669
 
 
670
* ``bzr diff`` will now use the epoch when it is unable to determine 
 
671
  the timestamp of a file, if the revision it was introduced in is a
 
672
  ghost. (Jelmer Vernooij, #295611)
 
673
 
 
674
* ``bzr switch -b`` can now create branches that are located using directory
 
675
  services such as ``lp:``, even when the branch name doesn't contain a
 
676
  '/'.  (Neil Martinsen-Burrell, #495263)
 
677
 
 
678
* ``bzr unshelve`` has improved messages about what it is doing.
 
679
  (Neil Martinsen-Burrell, #496917)
 
680
 
 
681
* Concurrent autopacking is more resilient to already-renamed pack files.
 
682
  If we find that a file we are about to obsolete is already obsoleted, we
 
683
  do not try to rename it, and we leave the file in ``obsolete_packs``.
 
684
  The code is also fault tolerant if a file goes missing, assuming that
 
685
  another process already removed the file.
 
686
  (John Arbash Meinel, Gareth White, #507557)
 
687
 
 
688
* Fix "Too many concurrent requests" in reconcile when network connection
 
689
  fails.  (Andrew Bennetts, #503878)
 
690
 
 
691
* Fixed a side effect mutation of ``RemoteBzrDirFormat._network_name``
 
692
  that caused some tests to fail when run in a non-default order.
 
693
  Probably no user impact.  (Martin Pool, #504102)
 
694
 
 
695
* Fixed ``ObjectNotLocked`` error in ``bzr cat -rbranch:../foo FILE``.
 
696
  (Andrew Bennetts, #506274)
 
697
 
 
698
* FTP transports support Unicode paths by encoding/decoding them as utf8.
 
699
  (Vincent Ladeuil, #472161)
 
700
 
 
701
* Listen to the SIGWINCH signal to update the terminal width.
 
702
  (Vincent Ladeuil, #316357)
 
703
 
 
704
* Progress bars are now hidden when ``--quiet`` is given.
 
705
  (Martin Pool, #320035)
 
706
 
 
707
* ``SilentUIFactory`` now supports ``make_output_stream`` and discards
 
708
  whatever is written to it.  This un-breaks some plugin tests that
 
709
  depended on this behaviour.
 
710
  (Martin Pool, #499757)
 
711
 
 
712
* When operations update the working tree, all affected files should end
 
713
  up with the same mtime. (eg. when versioning a generated file, if you
 
714
  update the source and the generated file together, the generated file
 
715
  should appear up-to-date.)
 
716
  (John Arbash Meinel, Martin <gzlist>, #488724)
 
717
 
 
718
Improvements
 
719
************
 
720
 
 
721
* Added ``add_cleanup`` and ``cleanup_now`` to ``bzrlib.command.Command``.
 
722
  All the builtin commands now use ``add_cleanup`` rather than
 
723
  ``try``/``finally`` blocks where applicable as it is simpler and more
 
724
  robust.  (Andrew Bennetts)
 
725
 
 
726
* All except a small number of storage formats are now hidden, making
 
727
  the help for numerous commands far more digestible. (Ian Clatworthy)
 
728
 
 
729
* Attempts to open a shared repository as a branch (e.g. ``bzr branch
 
730
  path/to/repo``) will now include "location is a repository" as a hint in
 
731
  the error message.  (Brian de Alwis, Andrew Bennetts, #440952)
 
732
 
 
733
* Push will now inform the user when they are trying to push to a foreign 
 
734
  VCS for which roundtripping is not supported, and will suggest them to 
 
735
  use dpush. (Jelmer Vernooij)
 
736
 
 
737
* The version of bzr being run is now written to the log file.
 
738
  (__monty__, #257170)
 
739
 
 
740
* Transport network activity indicator is shown more of the time when
 
741
  Bazaar is doing network IO.
 
742
  (Martin Pool)
 
743
 
 
744
Documentation
 
745
*************
 
746
 
 
747
* Add documentation on creating merges with more than one parent.
 
748
  (Neil Martinsen-Burrell, #481526)
 
749
 
 
750
* Better explain the --uncommitted option of merge.
 
751
  (Neil Martinsen-Burrell, #505088)
 
752
 
 
753
* Improve discussion of pending merges in the documentation for
 
754
  ``revert``.  (Neil Martinsen-Burrell, #505093)
 
755
 
 
756
* Improved help for ``bzr send``. 
 
757
  (Martin Pool, Bojan Nikolic)
 
758
 
 
759
* There is a System Administrator's Guide in ``doc/en/admin-guide``,
 
760
  including discussions of installation, relevant plugins, security and 
 
761
  backup. (Neil Martinsen-Burrell)
 
762
 
 
763
* The ``conflicts`` help topic has been renamed to ``conflict-types``.
 
764
  (Ian Clatworthy)
 
765
 
 
766
* The User Reference is now presented as a series of topics.
 
767
  Many of the included topics have link and format tweaks applied.
 
768
  (Ian Clatworthy)
 
769
 
 
770
API Changes
 
771
***********
 
772
 
 
773
* Added ``cachedproperty`` decorator to ``bzrlib.decorators``.
 
774
  (Andrew Bennetts)
 
775
 
 
776
* Many test features were renamed from ``FooFeature`` to ``foo_feature``
 
777
  to be consistent with instances being lower case and classes being
 
778
  CamelCase. For the features that were more likely to be used, we added a
 
779
  deprecation thunk, but not all. (John Arbash Meinel)
 
780
 
 
781
* Merger classes (such as ``Merge3Merger``) now expect a ``this_branch``
 
782
  parameter in their constructors, and provide ``this_branch`` as an
 
783
  attribute. (Andrew Bennetts)
 
784
  
 
785
* The Branch hooks pre_change_branch_tip no longer masks exceptions raised
 
786
  by plugins - the original exceptions are now preserved. (Robert Collins)
 
787
 
 
788
* The Transport ``Server.tearDown`` method is now renamed to
 
789
  ``stop_server`` and ``setUp`` to ``start_server`` for consistency with
 
790
  our normal naming pattern, and to avoid confusion with Python's
 
791
  ``TestCase.tearDown``.  (Martin Pool)
 
792
 
 
793
* ``WorkingTree.update`` implementations must now accept a ``revision``
 
794
  parameter.
 
795
 
 
796
Internals
 
797
*********
 
798
 
 
799
* Added ``BzrDir.open_branchV3`` smart server request, which can receive
 
800
  a string of details (such as "location is a repository") as part of a
 
801
  ``nobranch`` response.  (Andrew Bennetts, #440952)
 
802
  
 
803
* New helper osutils.UnicodeOrBytesToBytesWriter which encodes unicode
 
804
  objects but passes str objects straight through. This is used for
 
805
  selftest but may be useful for diff and other operations that generate
 
806
  mixed output. (Robert Collins)
 
807
 
 
808
* New exception ``NoRoundtrippingSupport``, for use by foreign branch 
 
809
  plugins. (Jelmer Vernooij)
 
810
 
 
811
Testing
 
812
*******
 
813
 
 
814
* ``bzrlib.tests.permute_for_extension`` is a helper that simplifies
 
815
  running all tests in the current module, once against a pure python
 
816
  implementation, and once against an extension (pyrex/C) implementation.
 
817
  It can be used to dramatically simplify the implementation of
 
818
  ``load_tests``.  (John Arbash Meinel)
 
819
 
 
820
* ``bzrlib.tests.TestCase`` now subclasses ``testtools.testcase.TestCase``.
 
821
  This permits features in testtools such as getUniqueInteger and
 
822
  getUniqueString to be used. Because of this, testtools version 0.9.2 or
 
823
  newer is now a dependency to run bzr selftest. Running with versions of
 
824
  testtools less than 0.9.2 will cause bzr to error while loading the test
 
825
  suite. (Robert Collins)
 
826
 
 
827
* Shell-like tests now support the command "mv" for moving files.  The
 
828
  syntax for ``mv file1 file2``, ``mv dir1 dir2`` and ``mv file dir`` is
 
829
  supported.  (Neil Martinsen-Burrell)
 
830
 
 
831
* The test progress bar no longer distinguishes tests that 'errored' from
 
832
  tests that 'failed' - they're all just failures.
 
833
  (Martin Pool)
 
834
 
 
835
bzr 2.0.6
 
836
#########
 
837
 
 
838
:2.0.6: NOT RELEASED YET
 
839
 
 
840
Bug Fixes
 
841
*********
 
842
 
 
843
* ``bzr revert`` now only takes write lock on working tree, instead of on 
 
844
  both working tree and branch.
 
845
  (Danny van Heumen, #498409)
 
846
 
 
847
* ``bzr upgrade`` now creates the ``backup.bzr`` directory with the same
 
848
  permissions as ``.bzr`` directory on a POSIX OS.
 
849
  (Parth Malwankar, #262450)
 
850
 
 
851
* Additional merges after an unrelated branch has been merged with its
 
852
  history no longer crash when deleted files are involved.
 
853
  (Vincent Ladeuil, John Arbash Meinel, #375898)
 
854
 
 
855
bzr 2.0.5
 
856
#########
 
857
 
 
858
:2.0.5: 2010-03-23
 
859
 
 
860
This fifth release in our 2.0 series addresses several user-inconvenience
 
861
bugs.  None are critical, but upgrading is recommended for all users on
 
862
earlier 2.0 releases.
 
863
 
 
864
Bug Fixes
 
865
*********
 
866
 
 
867
* Avoid ``malloc(0)`` in ``patiencediff``, which is non-portable.
 
868
  (Martin Pool, #331095)
 
869
 
 
870
* Concurrent autopacking is more resilient to already-renamed pack files.
 
871
  If we find that a file we are about to obsolete is already obsoleted, we
 
872
  do not try to rename it, and we leave the file in ``obsolete_packs``.
 
873
  The code is also fault tolerant if a file goes missing, assuming that
 
874
  another process already removed the file.
 
875
  (John Arbash Meinel, Gareth White, #507557)
 
876
 
 
877
* Cope with the lockdir ``held/info`` file being empty, which seems to
 
878
  happen fairly often if the process is suddenly interrupted while taking
 
879
  a lock.
 
880
  (Martin Pool, #185103)
 
881
 
 
882
* Give the warning about potentially slow cross-format fetches much
 
883
  earlier on in the fetch operation.  Don't show this message during
 
884
  upgrades, and show the correct format indication for remote
 
885
  repositories.
 
886
  (Martin Pool, #456077, #515356, #513157)
 
887
 
 
888
* Handle renames correctly when there are files or directories that 
 
889
  differ only in case.  (Chris Jones, Martin Pool, #368931)
 
890
 
 
891
* If ``bzr push --create-prefix`` triggers an unexpected ``NoSuchFile``
 
892
  error, report that error rather than failing with an unhelpful
 
893
  ``UnboundLocalError``.
 
894
  (Andrew Bennetts, #423563)
 
895
 
 
896
* Running ``bzr`` command without any arguments now shows bzr
 
897
  version number along with rest of the help text.
 
898
  (Parth Malwankar, #369501)
 
899
 
 
900
* Use osutils.O_NOINHERIT for some files on win32 to avoid PermissionDenied
 
901
  errors.
 
902
  (Inada Naoki, #524560)
 
903
 
 
904
Documentation
 
905
*************
 
906
 
 
907
* Added ``location-alias`` help topic.
 
908
  (Andrew Bennetts, #337834)
 
909
 
 
910
* Fixed CHM generation by moving the NEWS section template into
 
911
  a separate file. (Ian Clatworthy, #524184)
 
912
 
 
913
 
 
914
bzr 2.0.4
 
915
#########
 
916
 
 
917
:Codename: smooth sailing
 
918
:2.0.4: 2010-01-21
 
919
 
 
920
The fourth bugfix-only release in the 2.0 series contains more than a
 
921
dozen bugfixes relative to 2.0.3. The primary focus is on handling
 
922
interruptions and concurrent operations more cleanly, there is also a fair
 
923
improvement to ``bzr export`` when exporting a remote branch.
 
924
 
 
925
 
 
926
Bug Fixes
 
927
*********
 
928
 
 
929
* ``bzr annotate`` on another branch with ``-r branch:...`` no longer
 
930
  fails with an ``ObjectNotLocked`` error.  (Andrew Bennetts, #496590)
 
931
 
 
932
* ``bzr export dir`` now requests all file content as a record stream,
 
933
  rather than requsting the file content one file-at-a-time. This can make
 
934
  exporting over the network significantly faster (54min => 9min in one
 
935
  case). (John Arbash Meinel, #343218)
 
936
 
 
937
* ``bzr serve`` no longer slowly leaks memory. The compiled
 
938
  ``bzrlib.bencode.Encoder()`` class was using ``__del__`` to cleanup and
 
939
  free resources, and it should have been using ``__dealloc__``.
 
940
  This will likely have an impact on any other process that is serving for
 
941
  an extended period of time.  (John Arbash Meinel, #494406)
 
942
 
 
943
* Check for SIGINT (Ctrl-C) and other signals immediately if ``readdir``
 
944
  returns ``EINTR`` by calling ``PyErr_CheckSignals``.  This affected the
 
945
  optional ``_readdir_pyx`` extension.  (Andrew Bennetts, #495023)
 
946
 
 
947
* Concurrent autopacks will no longer lose a newly created pack file.
 
948
  There was a race condition, where if the reload happened at the right
 
949
  time, the second packer would forget the name of the newly added pack
 
950
  file. (John Arbash Meinel, Gareth White, #507566)
 
951
 
 
952
* Give a clearer message if the lockdir disappears after being apparently
 
953
  successfully taken.  (Martin Pool, #498378)
 
954
 
 
955
* Give a warning when fetching between repositories (local or remote) with
 
956
  sufficiently different formats that the content will need to be
 
957
  serialized (ie ``InterDifferingSerializer`` or ``inventory-deltas``), so
 
958
  the user has a clue that upgrading could make it faster.
 
959
  (Martin Pool, #456077)
 
960
 
 
961
* If we fail to open ``~/.bzr.log`` write a clear message to stderr rather
 
962
  than using ``warning()``. The log file is opened before logging is set
 
963
  up, and it leads to very confusing: 'no handlers for "bzr"' messages for
 
964
  users, rather than something nicer.
 
965
  (John Arbash Meinel, Barry Warsaw, #503886)
 
966
 
 
967
* Refuse to build with any Pyrex 0.9.4 release, as they have known bugs.
 
968
  (Martin Pool, John Arbash Meinel, #449372)
 
969
 
 
970
* ``setup.py bdist_rpm`` now properly finds extra files needed for the
 
971
  build. (there is still the distutils bug
 
972
  http://bugs.python.org/issue644744) (Joe Julian, #175839)
 
973
 
 
974
* The 2a format wasn't properly restarting autopacks when something
 
975
  changed underneath it (like another autopack). Now concurrent
 
976
  autopackers will properly succeed. (John Arbash Meinel, #495000)
 
977
 
 
978
* ``TreeTransform`` can now handle when a delta says that the file id for
 
979
  the tree root changes. Rather than trying to rename your working
 
980
  directory, or failing early saying that you can't have multiple
 
981
  tree roots. This also fixes revert, update, and pull when the root id
 
982
  changes.  (John Arbash Meinel, #494269, #504390)
 
983
 
 
984
* ``_update_current_block`` no longer suppresses exceptions, so ^C at just
 
985
  the right time will get propagated, rather than silently failing to move
 
986
  the block pointer. (John Arbash Meinel, Gareth White, #495023)
 
987
 
 
988
Testing
 
989
*******
 
990
 
 
991
* We have a new ``test_source`` that ensures all pyrex ``cdef`` functions
 
992
  handle exceptions somehow. (Possibly by setting ``# cannot_raise``
 
993
  rather than an ``except ?:`` clause.) This should help prevent bugs like
 
994
  bug #495023. (John Arbash Meinel)
 
995
 
 
996
 
 
997
bzr 2.1.0b4
 
998
###########
 
999
 
 
1000
:Codename: san francisco airport
 
1001
:2.1.0b4: 2009-12-14
 
1002
 
 
1003
The fourth beta release in the 2.1 series brings with it a significant
 
1004
number of bugfixes (~20). The test suite is once again (finally) "green"
 
1005
on Windows, and should remain that way for future releases. There are a
 
1006
few performance related updates (faster upgrade and log), and several UI
 
1007
tweaks. There has also been a significant number of tweaks to the runtime
 
1008
documentation. 2.1.0b4 include everything from the 2.0.3 release.
 
1009
 
 
1010
 
 
1011
Compatibility Breaks
 
1012
********************
 
1013
 
 
1014
* The BZR_SSH environmental variable may now be set to the path of a secure
 
1015
  shell client. If currently set to the value ``ssh`` it will now guess the
 
1016
  vendor of the program with that name, to restore the old behaviour that
 
1017
  indicated the SSH Corporation client use ``sshcorp`` instead as the magic
 
1018
  string. (Martin <gzlist@googlemail.com>, #176292)
 
1019
 
 
1020
New Features
 
1021
************
 
1022
 
 
1023
* ``bzr commit`` now has a ``--commit-time`` option.
 
1024
  (Alexander Sack, #459276)
 
1025
 
 
1026
* ``-Dhpss`` now increases logging done when run on the bzr server,
 
1027
  similarly to how it works on the client. (John Arbash Meinel)
 
1028
 
 
1029
* New option ``bzr unshelve --keep`` applies the changes and leaves them
 
1030
  on the shelf.  (Martin Pool, Oscar Fuentes, #492091)
 
1031
 
 
1032
* The ``BZR_COLUMNS`` envrionment variable can be set to force bzr to
 
1033
  respect a given terminal width. This can be useful when output is
 
1034
  redirected or in obscure cases where the default value is not
 
1035
  appropriate. Pagers can use it to get a better control of the line
 
1036
  lengths. 
 
1037
  (Vincent Ladeuil)
 
1038
 
 
1039
* The new command ``bzr lp-mirror`` will request that Launchpad update its
 
1040
  mirror of a local branch. This command will only function if launchpadlib
 
1041
  is installed.
 
1042
  (Jonathan Lange)
 
1043
 
 
1044
 
 
1045
Bug Fixes
 
1046
*********
 
1047
 
 
1048
* After renaming a file, the dirstate could accidentally reference
 
1049
  ``source\\path`` rather than ``source/path`` on Windows. This might be a
 
1050
  source of some dirstate-related failures. (John Arbash Meinel)
 
1051
 
 
1052
* ``bzr commit`` now detects commit messages that looks like file names
 
1053
  and issues a warning.
 
1054
  (Gioele Barabucci, #73073)
 
1055
 
 
1056
* ``bzr ignore /`` no longer causes an IndexError. (Gorden Tyler, #456036)
 
1057
 
 
1058
* ``bzr log -n0 -rN`` should not return revisions beyond its merged revisions.
 
1059
  (#325618, #484109, Marius Kruger)
 
1060
 
 
1061
* ``bzr merge --weave`` and ``--lca`` will now create ``.BASE`` files for
 
1062
  files with conflicts (similar to ``--merge3``). The contents of the file
 
1063
  is a synthesis of all bases used for the merge.
 
1064
  (John Arbash Meinel, #40412)
 
1065
 
 
1066
* ``bzr mv --quiet`` really is quiet now.  (Gordon Tyler, #271790)
 
1067
 
 
1068
* ``bzr serve`` is more clear about the risk of supplying --allow-writes.
 
1069
  (Robert Collins, #84659)
 
1070
 
 
1071
* ``bzr serve --quiet`` really is quiet now.  (Gordon Tyler, #252834)
 
1072
 
 
1073
* Fix bug with redirected URLs over authenticated HTTP.
 
1074
  (Glen Mailer, Neil Martinsen-Burrell, Vincent Ladeuil, #395714)
 
1075
 
 
1076
* Interactive merge doesn't leave branch locks behind.  (Aaron Bentley)
 
1077
 
 
1078
* Lots of bugfixes for the test suite on Windows. We should once again
 
1079
  have a test suite with no failures on Windows. (John Arbash Meinel)
 
1080
 
 
1081
* ``osutils.terminal_width()`` obeys the BZR_COLUMNS environment
 
1082
  variable but returns None if the terminal is not a tty (when output is
 
1083
  redirected for example). Also fixes its usage under OSes that doesn't
 
1084
  provide termios.TIOCGWINSZ. Make sure the corresponding tests runs on
 
1085
  windows too.
 
1086
  (Joke de Buhr, Vincent Ladeuil, #353370, #62539)
 
1087
  (John Arbash Meinel, Vincent Ladeuil, #492561)
 
1088
 
 
1089
* Terminate ssh subprocesses when no references to them remain, fixing
 
1090
  subprocess and file descriptor leaks.  (Andrew Bennetts, #426662)
 
1091
  
 
1092
* The ``--hardlink`` option of ``bzr branch`` and ``bzr checkout`` now
 
1093
  works for 2a format trees.  Only files unaffected by content filters
 
1094
  will be hardlinked.  (Andrew Bennetts, #408193)
 
1095
 
 
1096
* The new glob expansion on Windows would replace all ``\`` characters
 
1097
  with ``/`` even if it there wasn't a glob to expand, the arg was quoted,
 
1098
  etc. Now only change slashes if there is something being glob expanded.
 
1099
  (John Arbash Meinel, #485771)
 
1100
 
 
1101
* Use our faster ``KnownGraph.heads()`` functionality when computing the
 
1102
  new rich-root heads. This can cut a conversion time in half (mysql from
 
1103
  13.5h => 6.2h) (John Arbash Meinel, #487632)
 
1104
 
 
1105
* When launching a external diff tool via bzr diff --using, temporary files
 
1106
  are no longer created, rather, the path to the file in the working tree is
 
1107
  passed to the external diff tool. This allows the file to be edited if the
 
1108
  diff tool provides for this. (Gary van der Merwe, #490738)
 
1109
  
 
1110
* The launchpad-open command can now be used from a subdirectory of a
 
1111
  branch, not just from the root of the branch. 
 
1112
  (Neil Martinsen-Burrell, #489102)
 
1113
 
 
1114
 
 
1115
Improvements
 
1116
************
 
1117
 
 
1118
* ``bzr log`` is now faster. (Ian Clatworthy)
 
1119
 
 
1120
* ``bzr update`` provides feedback on which branch it is up to date with.
 
1121
  (Neil Martinsen-Burrell)
 
1122
 
 
1123
* ``bzr upgrade`` from pre-2a to 2a can be significantly faster (4x).
 
1124
  For details see the xml8 patch and heads() improvements.
 
1125
  (John Arbash Meinel)
 
1126
 
 
1127
* ``bzrlib.urlutils.local_path_from_url`` now accepts
 
1128
  'file://localhost/' as well as 'file:///' URLs on POSIX.  (Michael
 
1129
  Hudson)
 
1130
 
 
1131
* The progress bar now shows only a spinner and per-operation counts,
 
1132
  not an overall progress bar.  The previous bar was often not correlated
 
1133
  with real overall operation progress, either because the operations take
 
1134
  nonlinear time, or because at the start of the operation Bazaar couldn't
 
1135
  estimate how much work there was to do.  (Martin Pool)
 
1136
 
 
1137
Documentation
 
1138
*************
 
1139
 
 
1140
* Lots of documentation tweaks for inline help topics and command help
 
1141
  information.
 
1142
 
 
1143
API Changes
 
1144
***********
 
1145
 
 
1146
* ``bzrlib.textui`` (vestigial module) removed.  (Martin Pool)
 
1147
 
 
1148
* The Launchpad plugin now has a function ``login`` which will log in to
 
1149
  Launchpad with launchpadlib, and ``load_branch`` which will return the
 
1150
  Launchpad Branch object corresponding to a given Bazaar Branch object.
 
1151
  (Jonathan Lange)
 
1152
 
 
1153
Internals
 
1154
*********
 
1155
 
 
1156
* New test Feature: ``ModuleAvailableFeature``. It is designed to make it
 
1157
  easier to handle what tests you want to run based on what modules can be
 
1158
  imported. (Rather than lots of custom-implemented features that were
 
1159
  basically copy-and-pasted.) (John Arbash Meinel)
 
1160
 
 
1161
* ``osutils.timer_func()`` can be used to get either ``time.time()`` or
 
1162
  ``time.clock()`` when you want to do performance timing.
 
1163
  ``time.time()`` is limited to 15ms resolution on Windows, but
 
1164
  ``time.clock()`` gives CPU and not wall-clock time on other platforms.
 
1165
  (John Arbash Meinel)
 
1166
 
 
1167
* Several code paths that were calling ``Transport.get().read()`` have
 
1168
  been changed to the equalivent ``Transport.get_bytes()``. The main
 
1169
  difference is that the latter will explicitly call ``file.close()``,
 
1170
  rather than expecting the garbage collector to handle it. This helps
 
1171
  with some race conditions on Windows during the test suite and sftp
 
1172
  tests. (John Arbash Meinel)
 
1173
 
 
1174
Testing
 
1175
*******
 
1176
 
 
1177
* TestCaseWithMemoryTransport no longer sets $HOME and $BZR_HOME to
 
1178
  unicode strings. (Michael Hudson, #464174)
 
1179
 
 
1180
 
 
1181
bzr 2.0.3
 
1182
#########
 
1183
 
 
1184
:Codename: little italy
 
1185
:2.0.3: 2009-12-14
 
1186
 
 
1187
 
 
1188
The third stable release of Bazaar has a small handful of bugfixes. As
 
1189
expected, this has no internal or external compatibility changes versus
 
1190
2.0.2 (or 2.0.0).
 
1191
 
 
1192
Bug Fixes
 
1193
*********
 
1194
 
 
1195
* ``bzr push --use-existing-dir`` no longer crashes if the directory
 
1196
  exists but contains an invalid ``.bzr`` directory.
 
1197
  (Andrew Bennetts, #423563)
 
1198
 
 
1199
* Content filters are now applied correctly after pull, merge and switch.
 
1200
  (Ian Clatworthy, #385879)
 
1201
 
 
1202
* Fix a potential segfault in the groupcompress hash map handling code.
 
1203
  When inserting new entries, if the final hash bucket was empty, we could
 
1204
  end up trying to access if ``(last_entry+1)->ptr == NULL``.
 
1205
  (John Arbash Meinel, #490228)
 
1206
 
 
1207
* Improve "Binary files differ" hunk handling.  (Aaron Bentley, #436325)
 
1208
 
 
1209
 
 
1210
bzr 2.1.0b3
 
1211
###########
 
1212
 
 
1213
:Codename: after sprint recovery
 
1214
:2.1.0b3: 2009-11-16
 
1215
 
 
1216
This release was pushed up from its normal release cycle due to a
 
1217
regression in python 2.4 compatibility in 2.1.0b2.  Since this regression
 
1218
was caught before 2.1.0b2 was officially announced, the full changelog
 
1219
includes both 2.1.0b3 and 2.1.0b2 changes.
 
1220
 
 
1221
Highlights of 2.1.0b3 are: new globbing code for all commands on Windows,
 
1222
the test suite now conforms to python's trunk enhanced semantics (skip,
 
1223
etc.), and ``bzr info -v`` will now report the correct branch and repo
 
1224
formats for Remote objects.
 
1225
 
 
1226
 
 
1227
New Features
 
1228
************
 
1229
 
 
1230
* Users can define a shelve editor to provide shelf functionality at a
 
1231
  granularity finer than per-patch-hunk. (Aaron Bentley)
 
1232
 
 
1233
Bug Fixes
 
1234
*********
 
1235
 
 
1236
* Fix for shell completion and short options.  (Benoît PIERRE)
 
1237
 
 
1238
* Fix ``bzr --profile-imports`` with Python 2.6.  (Martin Pool)
 
1239
 
 
1240
* Hooks daughter classes should always call the base constructor.
 
1241
  (Alexander Belchenko, Vincent Ladeuil, #389648) 
 
1242
 
 
1243
* Improve "Binary files differ" hunk handling.  (Aaron Bentley, #436325)
 
1244
 
 
1245
* On Windows, do glob expansion at the command-line level (as is usually
 
1246
  done in bash, etc.) This means that *all* commands get glob expansion
 
1247
  (bzr status, bzr add, bzr mv, etc). It uses a custom command line
 
1248
  parser, which allows us to know if a given section was quoted. It means
 
1249
  you can now do ``bzr ignore "*.py"``.
 
1250
  (John Arbash Meinel, #425510, #426410, #194450)
 
1251
 
 
1252
* Sanitize commit messages that come in from the '-m' flag. We translate
 
1253
  '\r\n' => '\n' and a plain '\r' => '\n'. The storage layer doesn't
 
1254
  allow those because XML store silently translate it anyway. (The parser
 
1255
  auto-translates \r\n => \n in ways that are hard for us to catch.)
 
1256
 
 
1257
* Show correct branch and repository format descriptions in 
 
1258
  ``bzr info -v`` on a smart server location.  (Andrew Bennetts, #196080)
 
1259
 
 
1260
* The fix for bug #186920 accidentally broke compatibility with python
 
1261
  2.4.  (Vincent Ladeuil, #475585)
 
1262
 
 
1263
* Using ``Repository.get_commit_builder().record_iter_changes()`` now
 
1264
  correctly sets ``self.inv_sha1`` to a sha1 string and
 
1265
  ``self.new_inventory`` to an Inventory instance after calling
 
1266
  ``self.finish_inventory()``. (Previously it accidently set both values
 
1267
  as a tuple on ``self.inv_sha1``. This was missed because
 
1268
  ``repo.add_revision`` ignores the supplied inventory sha1 and recomputes
 
1269
  the sha1 from the repo directly. (John Arbash Meinel)
 
1270
 
 
1271
* Shelve command refuse to run if there is no real terminal.
 
1272
  (Alexander Belchenko)
 
1273
 
 
1274
* Avoid unnecessarily flushing of trace file; it's now unbuffered at the
 
1275
  Python level.  (Martin Pool)
 
1276
 
 
1277
Documentation
 
1278
*************
 
1279
 
 
1280
* Include Japanese translations for documentation (Inada Naoki)
 
1281
 
 
1282
* New API ``ui_factory.make_output_stream`` to be used for sending bulk
 
1283
  (rather than user-interaction) data to stdout.  This automatically
 
1284
  coordinates with progress bars or other terminal activity, and can be
 
1285
  overridden by GUIs.
 
1286
  (Martin Pool, 493944)
 
1287
 
 
1288
Internals
 
1289
*********
 
1290
 
 
1291
* Some of the core groupcompress functionality now releases the GIL before
 
1292
  operation. Similar to how zlib and bz2 operate without the GIL in the
 
1293
  core compression and decompression routines. (John Arbash Meinel)
 
1294
 
 
1295
Testing
 
1296
*******
 
1297
 
 
1298
* -Dhpssvfs will now trigger on ``RemoteBzrDir._ensure_real``, providing
 
1299
  more debugging of VFS access triggers. (Robert Collins)
 
1300
 
 
1301
* KnownFailure is now signalled to ``ExtendedTestResult`` using the same
 
1302
  method that Python 2.7 uses - ``addExpectedFailure``. (Robert Collins)
 
1303
 
 
1304
* ``--parallel=fork`` is now compatible with --subunit.
 
1305
  (Robert Collins, Vincent Ladeuil, #419776)
 
1306
 
 
1307
* Reporting of failures shows test ids not descriptions and thus shows
 
1308
  parameterised tests correctly. (Robert Collins)
 
1309
 
 
1310
* TestNotApplicable is now handled within the TestCase.run method rather
 
1311
  than being looked for within ``ExtendedTestResult.addError``. This
 
1312
  provides better handling with other ``TestResult`` objects, degrading to
 
1313
  sucess rather than error. (Robert Collins)
 
1314
 
 
1315
* The private method ``_testConcluded`` on ``ExtendedTestResult`` has been
 
1316
  removed - it was empty and unused. (Robert Collins)
 
1317
 
 
1318
* UnavailableFeature is now handled within the TestCase.run method rather
 
1319
  than being looked for within addError. If the Result object does not
 
1320
  have an addNotSupported method, addSkip is attempted instead, and
 
1321
  failing that addSuccess. (Robert Collins)
 
1322
 
 
1323
* When a TestResult does not have an addSkip method, skipped tests are now
 
1324
  reported as successful tests, rather than as errors. This change is
 
1325
  to make it possible to get a clean test run with a less capable
 
1326
  TestResult. (Robert Collins)
 
1327
 
 
1328
 
 
1329
 
 
1330
bzr 2.1.0b2
 
1331
###########
 
1332
 
 
1333
:Codename: a load off my mind
 
1334
:2.1.0b2: 2009-11-02
 
1335
 
 
1336
This is our second feature-filled release since 2.0, pushing us down the
 
1337
path to a 2.1.0. Once again, all bugfixes in 2.0.2 are present in 2.1.0b2.
 
1338
 
 
1339
Key highlights in this release are: improved handling of
 
1340
failures-during-cleanup for commit, fixing a long-standing bug with
 
1341
``bzr+http`` and shared repositories, all ``lp:`` urls to be resolved
 
1342
behind proxies, and a new StaticTuple datatype, allowing us to reduce
 
1343
memory consumption (50%) and garbage collector overhead (40% faster) for
 
1344
many operations.
 
1345
 
 
1346
* A new ``--concurrency`` option has been added as well as an associated
 
1347
  BZR_CONCURRENCY environment variable to specify the number of
 
1348
  processes that can be run concurrently when running ``bzr selftest``. The
 
1349
  command-line option overrides the environment variable if both are
 
1350
  specified. If none is specified. the number of processes is obtained
 
1351
  from the OS as before.  (Matt Nordhoff, Vincent Ladeuil)
 
1352
 
 
1353
Bug Fixes
 
1354
*********
 
1355
 
 
1356
* ``bzr+http`` servers no longer give spurious jail break errors when
 
1357
  serving branches inside a shared repository.  (Andrew Bennetts, #348308)
 
1358
 
 
1359
* Errors during commit are handled more robustly so that knock-on errors
 
1360
  are less likely to occur, and will not obscure the original error if
 
1361
  they do occur.  This fixes some causes of ``TooManyConcurrentRequests``
 
1362
  and similar errors.  (Andrew Bennetts, #429747, #243391)
 
1363
 
 
1364
* Launchpad urls can now be resolved from behind proxies.
 
1365
  (Gordon Tyler, Vincent Ladeuil, #186920)
 
1366
 
 
1367
* Reduce the strictness for StaticTuple, instead add a debug flag
 
1368
  ``-Dstatic_tuple`` which will change apis to be strict and raise errors.
 
1369
  This way, most users won't see failures, but developers can improve
 
1370
  internals. (John Arbash Meinel, #471193)
 
1371
 
 
1372
* TreeTransform.adjust_path updates the limbo paths of descendants of adjusted
 
1373
  files.  (Aaron Bentley)
 
1374
 
 
1375
* Unicode paths are now handled correctly and consistently by the smart
 
1376
  server.  (Andrew Bennetts, Michael Hudson, #458762)
 
1377
 
 
1378
Improvements
 
1379
************
 
1380
 
 
1381
* When reading index files, we now use a ``StaticTuple`` rather than a
 
1382
  plain ``tuple`` object. This generally gives a 20% decrease in peak
 
1383
  memory, and can give a performance boost up to 40% on large projects.
 
1384
  (John Arbash Meinel)
 
1385
 
 
1386
* Peak memory under certain operations has been reduced significantly.
 
1387
  (eg, 'bzr branch launchpad standalone' is cut in half)
 
1388
  (John Arbash Meinel)
 
1389
 
 
1390
Documentation
 
1391
*************
 
1392
 
 
1393
* Filtered views user documentation upgraded to refer to format 2a
 
1394
  instead of pre-2.0 formats. (Ian Clatworthy)
 
1395
 
 
1396
API Changes
 
1397
***********
 
1398
 
 
1399
* Remove deprecated ``CLIUIFactory``.  (Martin Pool)
 
1400
 
 
1401
* ``UIFactory`` now has new ``show_error``, ``show_message`` and
 
1402
  ``show_warning`` methods, which can be hooked by non-text UIs.  
 
1403
  (Martin Pool)
 
1404
 
 
1405
Internals
 
1406
*********
 
1407
 
 
1408
* Added ``bzrlib._simple_set_pyx``. This is a hybrid between a Set and a
 
1409
  Dict (it only holds keys, but you can lookup the object located at a
 
1410
  given key). It has significantly reduced memory consumption versus the
 
1411
  builtin objects (1/2 the size of Set, 1/3rd the size of Dict). This is
 
1412
  used as the interning structure for StaticTuple objects.
 
1413
  (John Arbash Meinel)
 
1414
 
 
1415
* ``bzrlib._static_tuple_c.StaticTuple`` is now available and used by
 
1416
  the btree index parser and the chk map parser. This class functions
 
1417
  similarly to ``tuple`` objects. However, it can only point to a limited
 
1418
  collection of types.  (Currently StaticTuple, str, unicode, None, bool,
 
1419
  int, long, float, but not subclasses).  This allows us to remove it from
 
1420
  the garbage collector (it cannot be in a cycle), it also allows us to
 
1421
  intern the objects. In testing, this can reduce peak memory by 20-40%,
 
1422
  and significantly improve performance by removing objects from being
 
1423
  inspected by the garbage collector.  (John Arbash Meinel)
 
1424
 
 
1425
* ``GroupCompressBlock._ensure_content()`` will now release the
 
1426
  ``zlib.decompressobj()`` when the first request is for all of the
 
1427
  content. (Previously it would only be released if you made a request for
 
1428
  part of the content, and then all of it later.) This turns out to be a
 
1429
  significant memory savings, as a ``zstream`` carries around approx 260kB
 
1430
  of internal state and buffers. (For branching bzr.dev this drops peak
 
1431
  memory from 382MB => 345MB.) (John Arbash Meinel)
 
1432
 
 
1433
* When streaming content between ``2a`` format repositories, we now clear
 
1434
  caches from earlier versioned files. (So 'revisions' is cleared when we
 
1435
  start reading 'inventories', etc.) This can have a significant impact on
 
1436
  peak memory for initial copies (~200MB). (John Arbash Meinel)
 
1437
 
 
1438
 
 
1439
bzr 2.0.2
 
1440
#########
 
1441
 
 
1442
:Codename: after the scare
 
1443
:2.0.2: 2009-11-02
 
1444
 
 
1445
The second in our "let's keep the stable bugfixes flowing" series. As
 
1446
expected this has a few (~9) bugfixes relative to 2.0.1, and no major api
 
1447
changes or features.
 
1448
 
 
1449
Bug Fixes
 
1450
*********
 
1451
 
 
1452
* Avoid "NoneType has no attribute st_mode" error when files disappear
 
1453
  from a directory while it's being read.  (Martin Pool, #446033)
 
1454
 
 
1455
* Content filters are now applied correctly after revert.
 
1456
  (Ian Clatworthy)
 
1457
 
 
1458
* Diff parsing handles "Binary files differ" hunks.  (Aaron Bentley, #436325)
 
1459
 
 
1460
* Fetching from stacked pre-2a repository via a smart server no longer
 
1461
  fails intermittently with "second push failed to complete".
 
1462
  (Andrew Bennetts, #437626)
 
1463
 
 
1464
* Fix typos left after test_selftest refactoring.
 
1465
  (Vincent Ladeuil, Matt Nordhoff, #461149)
 
1466
 
 
1467
* Fixed ``ObjectNotLocked`` errors during ``bzr log -r NNN somefile``.
 
1468
  (Andrew Bennetts, #445171)
 
1469
  
 
1470
* PreviewTree file names are not limited by the encoding of the temp
 
1471
  directory's filesystem. (Aaron Bentley, #436794)
 
1472
 
 
1473
Improvements
 
1474
************
 
1475
 
 
1476
* ``bzr log`` now read-locks branches exactly once, so makes better use of
 
1477
  data caches.  (Andrew Bennetts)
 
1478
 
 
1479
Documentation
 
1480
*************
 
1481
 
 
1482
* Filtered views user documentation upgraded to refer to format 2a
 
1483
  instead of pre-2.0 formats. (Ian Clatworthy)
 
1484
 
 
1485
 
 
1486
bzr 2.1.0b1
 
1487
###########
 
1488
 
 
1489
:Codename: While the cat is away
 
1490
:2.1.0b1: 2009-10-14
 
1491
 
 
1492
This is the first development release in the new split "stable" and
 
1493
"development" series. As such, the release is a snapshot of bzr.dev
 
1494
without creating a release candidate first. This release includes a
 
1495
fair amount of internal changes, with deprecated code being removed,
 
1496
and several new feature developments. People looking for a stable code
 
1497
base with only bugfixes should focus on the 2.0.1 release. All bugfixes
 
1498
present in 2.0.1 are present in 2.1.0b1.
 
1499
 
 
1500
Highlights include support for ``bzr+ssh://host/~/homedir`` style urls,
 
1501
finer control over the plugin search path via extended BZR_PLUGIN_PATH
 
1502
syntax, visible warnings when extension modules fail to load, and improved
 
1503
error handling during unlocking.
 
1504
 
 
1505
 
 
1506
New Features
 
1507
************
 
1508
 
 
1509
* Bazaar can now send mail through Apple OS X Mail.app. 
 
1510
  (Brian de Alwis)
 
1511
 
 
1512
* ``bzr+ssh`` and ``bzr`` paths can now be relative to home directories
 
1513
  specified in the URL.  Paths starting with a path segment of ``~`` are
 
1514
  relative to the home directory of the user running the server, and paths
 
1515
  starting with ``~user`` are relative to the home directory of the named
 
1516
  user.  For example, for a user "bob" with a home directory of
 
1517
  ``/home/bob``, these URLs are all equivalent:
 
1518
 
 
1519
  * ``bzr+ssh://bob@host/~/repo``
 
1520
  * ``bzr+ssh://bob@host/~bob/repo``
 
1521
  * ``bzr+ssh://bob@host/home/bob/repo``
 
1522
 
 
1523
  If ``bzr serve`` was invoked with a ``--directory`` argument, then no
 
1524
  home directories outside that directory will be accessible via this
 
1525
  method.
 
1526
 
 
1527
  This is a feature of ``bzr serve``, so pre-2.1 clients will
 
1528
  automatically benefit from this feature when ``bzr`` on the server is
 
1529
  upgraded.  (Andrew Bennetts, #109143)
 
1530
 
 
1531
* Extensions can now be compiled if either Cython or Pyrex is available.
 
1532
  Currently Pyrex is preferred, but that may change in the future.
 
1533
  (Arkanes)
 
1534
 
 
1535
* Give more control on BZR_PLUGIN_PATH by providing a way to refer to or
 
1536
  disable the user, site and core plugin directories.
 
1537
  (Vincent Ladeuil, #412930, #316192, #145612)
 
1538
 
 
1539
Bug Fixes
 
1540
*********
 
1541
 
 
1542
* Bazaar's native protocol code now correctly handles EINTR, which most
 
1543
  noticeably occurs if you break in to the debugger while connected to a
 
1544
  bzr+ssh server.  You can now can continue from the debugger (by typing
 
1545
  'c') and the process continues.  However, note that pressing C-\ in the
 
1546
  shell may still kill the SSH process, which is bug 162509, so you must
 
1547
  sent a signal to the bzr process specifically, for example by typing
 
1548
  ``kill -QUIT PID`` in another shell.  (Martin Pool, #341535)
 
1549
 
 
1550
* ``bzr add`` in a tree that has files with ``\r`` or ``\n`` in the
 
1551
  filename will issue a warning and skip over those files.
 
1552
  (Robert Collins, #3918)
 
1553
 
 
1554
* ``bzr dpush`` now aborts if uncommitted changes (including pending merges)
 
1555
  are present in the working tree. The configuration option ``dpush_strict``
 
1556
  can be used to set the default for this behavior.
 
1557
  (Vincent Ladeuil, #438158)
 
1558
 
 
1559
* ``bzr merge`` and ``bzr remove-tree`` now requires --force if pending
 
1560
  merges are present in the working tree.
 
1561
  (Vincent Ladeuil, #426344)
 
1562
 
 
1563
* Clearer message when Bazaar runs out of memory, instead of a ``MemoryError``
 
1564
  traceback.  (Martin Pool, #109115)
 
1565
 
 
1566
* Don't give a warning on Windows when failing to import ``_readdir_pyx``
 
1567
  as it is never built. (John Arbash Meinel, #430645)
 
1568
 
 
1569
* Don't restrict the command name used to run the test suite.
 
1570
  (Vincent Ladeuil, #419950)
 
1571
 
 
1572
* ftp transports were built differently when the kerberos python module was
 
1573
  present leading to obscure failures related to ASCII/BINARY modes.
 
1574
  (Vincent Ladeuil, #443041)
 
1575
 
 
1576
* Network streams now decode adjacent records of the same type into a
 
1577
  single stream, reducing layering churn. (Robert Collins)
 
1578
 
 
1579
* PreviewTree behaves correctly when get_file_mtime is invoked on an unmodified
 
1580
  file. (Aaron Bentley, #251532)
 
1581
 
 
1582
* Registry objects should not use iteritems() when asked to use items().
 
1583
  (Vincent Ladeuil, #430510)
 
1584
 
 
1585
* Weave based repositories couldn't be cloned when committers were using
 
1586
  domains or user ids embedding '.sig'. Now they can.
 
1587
  (Matthew Fuller, Vincent Ladeuil, #430868)
 
1588
 
 
1589
Improvements
 
1590
************
 
1591
 
 
1592
* Revision specifiers can now be given in a more DWIM form, without
 
1593
  needing explicit prefixes for specifiers like tags or revision id's.
 
1594
  See ``bzr help revisionspec`` for full details.  (Matthew Fuller)
 
1595
 
 
1596
* Bazaar gives a warning before exiting, and writes into ``.bzr.log``, if 
 
1597
  compiled extensions can't be loaded.  This typically indicates a
 
1598
  packaging or installation problem.  In this case Bazaar will keep
 
1599
  running using pure-Python versions, but this may be substantially
 
1600
  slower.  The warning can be disabled by setting
 
1601
  ``ignore_missing_extensions = True`` in ``bazaar.conf``.
 
1602
  See also <https://answers.launchpad.net/bzr/+faq/703>.
 
1603
  (Martin Pool, #406113, #430529)
 
1604
 
 
1605
* Secondary errors that occur during Branch.unlock and Repository.unlock
 
1606
  no longer obscure the original error.  These methods now use a new
 
1607
  decorator, ``only_raises``.  This fixes many causes of
 
1608
  ``TooManyConcurrentRequests`` and similar errors.
 
1609
  (Andrew Bennetts, #429747)
 
1610
 
 
1611
Documentation
 
1612
*************
 
1613
 
 
1614
* Describe the new shell-like test feature. (Vincent Ladeuil)
 
1615
 
 
1616
* Help on hooks no longer says 'Not deprecated' for hooks that are
 
1617
  currently supported. (Ian Clatworthy, #422415)
 
1618
 
 
1619
API Changes
 
1620
***********
 
1621
 
 
1622
* ``bzrlib.user_encoding`` has been removed; use
 
1623
  ``bzrlib.osutils.get_user_encoding`` instead.  (Martin Pool)
 
1624
 
 
1625
* ``bzrlib.tests`` now uses ``stopTestRun`` for its ``TestResult``
 
1626
  subclasses - the same as python's unittest module. (Robert Collins)
 
1627
  
 
1628
* ``diff._get_trees_to_diff`` has been renamed to 
 
1629
  ``diff.get_trees_and_branches_to_diff``. It is now a public API, and it 
 
1630
  returns the old and new branches. (Gary van der Merwe)
 
1631
 
 
1632
* ``bzrlib.trace.log_error``, ``error`` and ``info`` have been deprecated.
 
1633
  (Martin Pool)
 
1634
 
 
1635
* ``MutableTree.has_changes()`` does not require a tree parameter anymore. It
 
1636
  now defaults to comparing to the basis tree. It now checks for pending
 
1637
  merges too.  ``Merger.check_basis`` has been deprecated and replaced by the
 
1638
  corresponding has_changes() calls. ``Merge.compare_basis``,
 
1639
  ``Merger.file_revisions`` and ``Merger.ensure_revision_trees`` have also
 
1640
  been deprecated.
 
1641
  (Vincent Ladeuil, #440631)
 
1642
 
 
1643
* ``ProgressTask.note`` is deprecated.
 
1644
  (Martin Pool)
 
1645
 
 
1646
Internals
 
1647
*********
 
1648
 
 
1649
* Added ``-Drelock`` debug flag.  It will ``note`` a message every time a
 
1650
  repository or branch object is unlocked then relocked the same way.
 
1651
  (Andrew Bennetts)
 
1652
  
 
1653
* ``BTreeLeafParser.extract_key`` has been tweaked slightly to reduce
 
1654
  mallocs while parsing the index (approx 3=>1 mallocs per key read).
 
1655
  This results in a 10% speedup while reading an index.
 
1656
  (John Arbash Meinel)
 
1657
 
 
1658
* The ``bzrlib.lsprof`` module has a new class ``BzrProfiler`` which makes
 
1659
  profiling in some situations like callbacks and generators easier.
 
1660
  (Robert Collins)
 
1661
 
 
1662
Testing
 
1663
*******
 
1664
 
 
1665
* Passing ``--lsprof-tests -v`` to bzr selftest will cause lsprof output to
 
1666
  be output for every test. Note that this is very verbose! (Robert Collins)
 
1667
 
 
1668
* Setting ``BZR_TEST_PDB=1`` when running selftest will cause a pdb
 
1669
  post_mortem to be triggered when a test failure occurs. (Robert Collins)
 
1670
 
 
1671
* Shell-like tests can now be written. Code in ``bzrlib/tests/script.py`` ,
 
1672
  documentation in ``developers/testing.txt`` for details.
 
1673
  (Vincent Ladeuil)
 
1674
 
 
1675
* Some tests could end up with the same id, that was dormant for
 
1676
  a long time.
 
1677
  (Vincent Ladeuil, #442980)
 
1678
 
 
1679
* Stop showing the number of tests due to missing features in the test
 
1680
  progress bar.  (Martin Pool)
 
1681
 
 
1682
* Test parameterisation now does a shallow copy, not a deep copy of the test
 
1683
  to be parameterised. This is not expected to break external use of test
 
1684
  parameterisation, and is substantially faster. (Robert Collins)
 
1685
 
 
1686
* Tests that try to open a bzr dir on an arbitrary transport will now
 
1687
  fail unless they have explicitly permitted the transport via
 
1688
  ``self.permit_url``. The standard test factories such as ``self.get_url``
 
1689
  will permit the urls they provide automatically, so only exceptional
 
1690
  tests should need to do this. (Robert Collins)
 
1691
 
 
1692
* The break-in test no longer cares about clean shutdown of the child,
 
1693
  instead it is happy if the debugger starts up. (Robert  Collins)
 
1694
 
 
1695
* The full test suite is expected to pass when the C extensions are not
 
1696
  present. (Vincent Ladeuil, #430749)
 
1697
 
 
1698
 
 
1699
bzr 2.0.1
 
1700
#########
 
1701
 
 
1702
:Codename: Stability First
 
1703
:2.0.1: 2009-10-14
 
1704
 
 
1705
The first of our new ongoing bugfix-only stable releases has arrived. It
 
1706
includes a collection of 12 bugfixes applied to bzr 2.0.0, but does not
 
1707
include any of the feature development in the 2.1.0 series.
 
1708
 
 
1709
 
 
1710
Bug Fixes
 
1711
*********
 
1712
 
 
1713
* ``bzr add`` in a tree that has files with ``\r`` or ``\n`` in the
 
1714
  filename will issue a warning and skip over those files.
 
1715
  (Robert Collins, #3918)
 
1716
 
 
1717
* bzr will attempt to authenticate with SSH servers that support
 
1718
  ``keyboard-interactive`` auth but not ``password`` auth when using
 
1719
  Paramiko.   (Andrew Bennetts, #433846)
 
1720
 
 
1721
* Fixed fetches from a stacked branch on a smart server that were failing
 
1722
  with some combinations of remote and local formats.  This was causing
 
1723
  "unknown object type identifier 60" errors.  (Andrew Bennetts, #427736)
 
1724
 
 
1725
* Fixed ``ObjectNotLocked`` errors when doing some log and diff operations
 
1726
  on branches via a smart server.  (Andrew Bennetts, #389413)
 
1727
 
 
1728
* Handle things like ``bzr add foo`` and ``bzr rm foo`` when the tree is
 
1729
  at the root of a drive. ``osutils._cicp_canonical_relpath`` always
 
1730
  assumed that ``abspath()`` returned a path that did not have a trailing
 
1731
  ``/``, but that is not true when working at the root of the filesystem.
 
1732
  (John Arbash Meinel, Jason Spashett, #322807)
 
1733
 
 
1734
* Hide deprecation warnings for 'final' releases for python2.6.
 
1735
  (John Arbash Meinel, #440062)
 
1736
 
 
1737
* Improve the time for ``bzr log DIR`` for 2a format repositories.
 
1738
  We had been using the same code path as for <2a formats, which required
 
1739
  iterating over all objects in all revisions.
 
1740
  (John Arbash Meinel, #374730)
 
1741
 
 
1742
* Make sure that we unlock the tree if we fail to create a TreeTransform
 
1743
  object when doing a merge, and there is limbo, or pending-deletions
 
1744
  directory.  (Gary van der Merwe, #427773)
 
1745
 
 
1746
* Occasional IndexError on renamed files have been fixed. Operations that
 
1747
  set a full inventory in the working tree will now go via the
 
1748
  apply_inventory_delta code path which is simpler and easier to
 
1749
  understand than dirstates set_state_from_inventory method. This may
 
1750
  have a small performance impact on operations built on _write_inventory,
 
1751
  but such operations are already doing full tree scans, so no radical
 
1752
  performance change should be observed. (Robert Collins, #403322)
 
1753
 
 
1754
* Retrieving file text or mtime from a _PreviewTree has good performance when
 
1755
  there are many changes.  (Aaron Bentley)
 
1756
 
 
1757
* The CHK index pages now use an unlimited cache size. With a limited
 
1758
  cache and a large project, the random access of chk pages could cause us
 
1759
  to download the entire cix file many times.
 
1760
  (John Arbash Meinel, #402623)
 
1761
 
 
1762
* When a file kind becomes unversionable after being added, a sensible
 
1763
  error will be shown instead of a traceback. (Robert Collins, #438569)
 
1764
 
 
1765
Documentation
 
1766
*************
 
1767
 
 
1768
* Improved README. (Ian Clatworthy)
 
1769
 
 
1770
* Improved upgrade documentation for Launchpad branches.
 
1771
  (Barry Warsaw)
 
1772
 
 
1773
 
 
1774
bzr 2.0.0
 
1775
#########
 
1776
 
 
1777
:2.0.0: 2009-09-22
 
1778
:Codename: Instant Karma
 
1779
 
 
1780
This release of Bazaar makes the 2a (previously 'brisbane-core') format
 
1781
the default when new branches or repositories are created.  This format is
 
1782
substantially smaller and faster for many operations.  Most of the work in
 
1783
this release focuses on bug fixes and stabilization, covering both 2a and
 
1784
previous formats.  (See the Upgrade Guide for information on migrating
 
1785
existing projects.)
 
1786
 
 
1787
This release also improves the documentation content and presentation,
 
1788
including adding Windows HtmlHelp manuals.
 
1789
 
 
1790
The Bazaar team decided that 2.0 will be a long-term supported release,
 
1791
with bugfix-only 2.0.x releases based on it, continuing for at least six
 
1792
months or until the following stable release.
 
1793
 
 
1794
Changes from 2.0.0rc2 to final
 
1795
******************************
 
1796
 
 
1797
* Officially branded as 2.0.0 rather than 2.0 to clarify between things
 
1798
  that "want to happen on the 2.0.x stable series" versus things that want
 
1799
  to "land in 2.0.0". (Changes how bzrlib._format_version_tuple() handles
 
1800
  micro = 0.) (John Arbash Meinel)
 
1801
 
 
1802
 
 
1803
bzr 2.0.0rc2
 
1804
############
 
1805
 
 
1806
:2.0.0rc2: 2009-09-10
 
1807
 
 
1808
New Features
 
1809
************
 
1810
 
 
1811
* Added post_commit hook for mutable trees. This allows the keywords
 
1812
  plugin to expand keywords on files changed by the commit.
 
1813
  (Ian Clatworthy, #408841)
 
1814
 
 
1815
Bug Fixes
 
1816
*********
 
1817
 
 
1818
* Bazaar's native protocol code now correctly handles EINTR, which most
 
1819
  noticeably occurs if you break in to the debugger while connected to a
 
1820
  bzr+ssh server.  You can now can continue from the debugger (by typing
 
1821
  'c') and the process continues.  However, note that pressing C-\ in the
 
1822
  shell may still kill the SSH process, which is bug 162509, so you must
 
1823
  sent a signal to the bzr process specifically, for example by typing
 
1824
  ``kill -QUIT PID`` in another shell.  (Martin Pool, #341535)
 
1825
 
 
1826
* ``bzr check`` in pack-0.92, 1.6 and 1.9 format repositories will no
 
1827
  longer report incorrect errors about ``Missing inventory ('TREE_ROOT', ...)``
 
1828
  (Robert Collins, #416732)
 
1829
 
 
1830
* ``bzr info -v`` on a 2a format still claimed that it was a "Development
 
1831
  format" (John Arbash Meinel, #424392)
 
1832
 
 
1833
* ``bzr log stacked-branch`` shows the full log including
 
1834
  revisions that are in the fallback repository. (Regressed in 2.0rc1).
 
1835
  (John Arbash Meinel, #419241)
 
1836
 
 
1837
* Clearer message when Bazaar runs out of memory, instead of a ``MemoryError``
 
1838
  traceback.  (Martin Pool, #109115)
 
1839
 
 
1840
* Conversion to 2a will create a single pack for all the new revisions (as
 
1841
  long as it ran without interruption). This improves both ``bzr upgrade``
 
1842
  and ``bzr pull`` or ``bzr merge`` from local branches in older formats.
 
1843
  The autopack logic that occurs every 100 revisions during local
 
1844
  conversions was not returning that pack's identifier, which resulted in
 
1845
  the partial packs created during the conversion not being consolidated
 
1846
  at the end of the conversion process. (Robert Collins, #423818)
 
1847
 
 
1848
* Fetches from 2a to 2a are now again requested in 'groupcompress' order.
 
1849
  Groups that are seen as 'underutilized' will be repacked on-the-fly.
 
1850
  This means that when the source is fully packed, there is minimal
 
1851
  overhead during the fetch, but if the source is poorly packed the result
 
1852
  is a fairly well packed repository (not as good as 'bzr pack' but
 
1853
  good-enough.) (Robert Collins, John Arbash Meinel, #402652)
 
1854
 
 
1855
* Fix a potential segmentation fault when doing 'log' of a branch that had
 
1856
  ghosts in its mainline.  (Evaluating None as a tuple is bad.)
 
1857
  (John Arbash Meinel, #419241)
 
1858
 
 
1859
* ``groupcompress`` sort order is now more stable, rather than relying on
 
1860
  ``topo_sort`` ordering. The implementation is now
 
1861
  ``KnownGraph.gc_sort``. (John Arbash Meinel)
 
1862
 
 
1863
* Local data conversion will generate correct deltas. This is a critical
 
1864
  bugfix vs 2.0rc1, and all 2.0rc1 users should upgrade to 2.0rc2 before
 
1865
  converting repositories. (Robert Collins, #422849)
 
1866
 
 
1867
* Network streams now decode adjacent records of the same type into a
 
1868
  single stream, reducing layering churn. (Robert Collins)
 
1869
 
 
1870
* Prevent some kinds of incomplete data from being committed to a 2a
 
1871
  repository, such as revisions without inventories, a missing chk_bytes
 
1872
  record for an inventory, or a missing text referenced by an inventory.
 
1873
  (Andrew Bennetts, #423506, #406687)
 
1874
  
 
1875
Documentation
 
1876
*************
 
1877
 
 
1878
* Fix assertion error about "_remember_remote_is_before" when pushing to
 
1879
  older smart servers.
 
1880
  (Andrew Bennetts, #418931)
 
1881
 
 
1882
* Help on hooks no longer says 'Not deprecated' for hooks that are
 
1883
  currently supported. (Ian Clatworthy, #422415)
 
1884
 
 
1885
* PDF and CHM (Windows HtmlHelp) formats are now supported for the
 
1886
  user documentation. The HTML documentation is better broken up into
 
1887
  topics. (Ian Clatworthy)
 
1888
 
 
1889
* The developer and foreign language documents are now separated
 
1890
  out so that searching in the HTML and CHM files produces more
 
1891
  useful results. (Ian Clatworthy)
 
1892
 
 
1893
* The main table of contents now provides links to the new Migration Docs
 
1894
  and Plugins Guide. (Ian Clatworthy)
 
1895
 
 
1896
 
 
1897
bzr 2.0.0rc1
 
1898
############
 
1899
 
 
1900
:Codename: no worries
 
1901
:2.0.0rc1: 2009-08-26
 
1902
 
 
1903
Compatibility Breaks
 
1904
********************
 
1905
 
 
1906
* The default format for bzr is now ``2a``. This format brings many
 
1907
  significant performance and size improvements. bzr can pull from
 
1908
  any existing repository into a ``2a`` one, but can only transfer
 
1909
  from ``2a`` into ``rich-root`` repositories. The Upgrade guide
 
1910
  has more information about this change. (Robert Collins)
 
1911
 
 
1912
* On Windows auto-detection of Putty's plink.exe is disabled.
 
1913
  Default SSH client for Windows is paramiko. User still can force
 
1914
  usage of plink if explicitly set environment variable BZR_SSH=plink.
 
1915
  (#414743, Alexander Belchenko)
 
1916
 
 
1917
New Features
 
1918
************
 
1919
 
 
1920
* ``bzr branch --switch`` can now switch the checkout in the current directory
 
1921
  to the newly created branch. (Lukáš Lalinský)
 
1922
 
 
1923
Bug Fixes
 
1924
*********
 
1925
 
 
1926
* Further tweaks to handling of ``bzr add`` messages about ignored files.
 
1927
  (Jason Spashett, #76616)
 
1928
 
 
1929
* Fetches were being requested in 'groupcompress' order, but weren't
 
1930
  recombining the groups. Thus they would 'fragment' to get the correct
 
1931
  order, but not 'recombine' to actually benefit from it. Until we get
 
1932
  recombining to work, switching to 'unordered' fetches avoids the
 
1933
  fragmentation. (John Arbash Meinel, #402645)
 
1934
 
 
1935
* Fix a pycurl related test failure on karmic by recognizing an error
 
1936
  raised by newer versions of pycurl.
 
1937
  (Vincent Ladeuil, #306264)
 
1938
 
 
1939
* Fix a test failure on karmic by making a locale test more robust.
 
1940
  (Vincent Ladeuil, #413514)
 
1941
 
 
1942
* Fix IndexError printing CannotBindAddress errors.
 
1943
  (Martin Pool, #286871)
 
1944
 
 
1945
* Fix "Revision ... not present" errors when upgrading stacked branches,
 
1946
  or when doing fetches from a stacked source to a stacked target.
 
1947
  (Andrew Bennetts, #399140)
 
1948
 
 
1949
* ``bzr branch`` of 2a repositories over HTTP is much faster.  bzr now
 
1950
  batches together small fetches from 2a repositories, rather than
 
1951
  fetching only a few hundred bytes at a time.
 
1952
  (Andrew Bennetts, #402657)
 
1953
 
 
1954
Improvements
 
1955
************
 
1956
 
 
1957
* A better description of the platform is shown in crash tracebacks, ``bzr
 
1958
  --version`` and ``bzr selftest``.
 
1959
  (Martin Pool, #409137)
 
1960
 
 
1961
* bzr can now (again) capture crash data through the apport library, 
 
1962
  so that a single human-readable file can be attached to bug reports.
 
1963
  This can be disabled by using ``-Dno_apport`` on the command line, or by
 
1964
  putting ``no_apport`` into the ``debug_flags`` section of
 
1965
  ``bazaar.conf``.
 
1966
  (Martin Pool, Robert Collins, #389328)
 
1967
 
 
1968
* ``bzr push`` locally on windows will no longer give a locking error with
 
1969
  dirstate based formats. (Robert Collins)
 
1970
 
 
1971
* ``bzr shelve`` and ``bzr unshelve`` now work on windows.
 
1972
  (Robert Collins, #305006)
 
1973
 
 
1974
* Commit of specific files no longer prevents using the iter_changes
 
1975
  codepath. On 2a repositories, commit of specific files should now be as
 
1976
  fast, or slightly faster, than a full commit. (Robert Collins)
 
1977
 
 
1978
* The internal core code that handles specific file operations like
 
1979
  ``bzr st FILENAME`` or ``bzr commit FILENAME`` has been changed to
 
1980
  include the parent directories if they have altered, and when a
 
1981
  directory stops being a directory its children are always included. This
 
1982
  fixes a number of causes for ``InconsistentDelta`` errors, and permits
 
1983
  faster commit of specific paths. (Robert Collins, #347649)
 
1984
 
 
1985
Documentation
 
1986
*************
 
1987
 
 
1988
* New developer documentation for content filtering.
 
1989
  (Martin Pool)
 
1990
 
 
1991
API Changes
 
1992
***********
 
1993
 
 
1994
* ``bzrlib.shelf_ui`` has had the ``from_args`` convenience methods of its
 
1995
  classes changed to manage lock lifetime of the trees they open in a way
 
1996
  consistent with reader-exclusive locks. (Robert Collins, #305006)
 
1997
 
 
1998
Testing
 
1999
*******
 
2000
 
 
2001
bzr 1.18.1
 
2002
##########
 
2003
 
 
2004
:Codename:     nein nein nein!
 
2005
:1.18.1:       2009-09-09
 
2006
 
 
2007
This release fixes two small but worthwhile bugs relevant to users on
 
2008
Microsoft Windows: some commands that failed on with locking errors will
 
2009
now work, and a bug that caused poor performance after committing a file
 
2010
with line-ending conversion has now been fixed.  It also fixes a bug in
 
2011
pushing to older servers.
 
2012
 
 
2013
Bug Fixes
 
2014
*********
 
2015
 
 
2016
* Fixed a problem where using content filtering and especially end-of-line
 
2017
  conversion will commit too many copies a file.
 
2018
  (Martin Pool, #415508)
 
2019
 
 
2020
* Fix assertion error about ``_remember_remote_is_before`` in
 
2021
  ``set_tags_bytes`` when pushing to older smart servers.  
 
2022
  (Andrew Bennetts, Alexander Belchenko, #418931)
 
2023
 
 
2024
Improvements
 
2025
************
 
2026
 
 
2027
* ``bzr push`` locally on Windows will no longer give a locking error with
 
2028
  dirstate based formats. (Robert Collins)
 
2029
 
 
2030
* ``bzr shelve`` and ``bzr unshelve`` now work on Windows.
 
2031
  (Robert Collins, #305006)
 
2032
 
 
2033
API Changes
 
2034
***********
 
2035
 
 
2036
* ``bzrlib.shelf_ui`` has had the ``from_args`` convenience methods of its
 
2037
  classes changed to manage lock lifetime of the trees they open in a way
 
2038
  consistent with reader-exclusive locks. (Robert Collins, #305006)
 
2039
 
 
2040
* ``Tree.path_content_summary`` may return a size of None, when called on
 
2041
  a tree with content filtering where the size of the canonical form
 
2042
  cannot be cheaply determined.  (Martin Pool)
 
2043
 
 
2044
* When manually creating transport servers in test cases, a new helper
 
2045
  ``TestCase.start_server`` that registers a cleanup and starts the server
 
2046
  should be used. (Robert Collins)
 
2047
 
 
2048
bzr 1.18
 
2049
########
 
2050
 
 
2051
Compatibility Breaks
 
2052
********************
 
2053
 
 
2054
* Committing directly to a stacked branch from a lightweight checkout will
 
2055
  no longer work. In previous versions this would appear to work but would
 
2056
  generate repositories with insufficient data to create deltas, leading
 
2057
  to later errors when branching or reading from the repository.
 
2058
  (Robert Collins, bug #375013)
 
2059
 
 
2060
New Features
 
2061
************
 
2062
 
 
2063
Bug Fixes
 
2064
*********
 
2065
 
 
2066
* Fetching from 2a branches from a version-2 bzr protocol would fail to
 
2067
  copy the internal inventory pages from the CHK store. This cannot happen
 
2068
  in normal use as all 2a compatible clients and servers support the
 
2069
  version-3 protocol, but it does cause test suite failures when testing
 
2070
  downlevel protocol behaviour. (Robert Collins)
 
2071
 
 
2072
* Fix a test failure on karmic by making a locale test more robust.
 
2073
  (Vincent Ladeuil, #413514)
 
2074
 
 
2075
* Fixed "Pack ... already exists" error when running ``bzr pack`` on a
 
2076
  fully packed 2a repository.  (Andrew Bennetts, #382463)
 
2077
 
 
2078
* Further tweaks to handling of ``bzr add`` messages about ignored files.
 
2079
  (Jason Spashett, #76616)
 
2080
 
 
2081
* Properly handle fetching into a stacked branch while converting the
 
2082
  data, especially when there are also ghosts. The code was filling in
 
2083
  parent inventories incorrectly, and also not handling when one of the
 
2084
  parents was a ghost. (John Arbash Meinel, #402778, #412198)
 
2085
 
 
2086
* ``RemoteStreamSource.get_stream_for_missing_keys`` will fetch CHK
 
2087
  inventory pages when appropriate (by falling back to the vfs stream
 
2088
  source).  (Andrew Bennetts, #406686)
 
2089
 
 
2090
* StreamSource generates rich roots from non-rich root sources correctly
 
2091
  now.  (Andrew Bennetts, #368921)
 
2092
 
 
2093
* When deciding whether a repository was compatible for upgrading or
 
2094
  fetching, we previously incorrectly checked the default repository
 
2095
  format for the bzrdir format, rather than the format that was actually
 
2096
  present on disk.  (Martin Pool, #408824)
 
2097
 
 
2098
Improvements
 
2099
************
 
2100
 
 
2101
* A better description of the platform is shown in crash tracebacks, ``bzr
 
2102
  --version`` and ``bzr selftest``.
 
2103
  (Martin Pool, #409137)
 
2104
 
 
2105
* Cross-format fetches (such as between 1.9-rich-root and 2a) via the
 
2106
  smart server are more efficient now.  They send inventory deltas rather
 
2107
  than full inventories.  The smart server has two new requests,
 
2108
  ``Repository.get_stream_1.19`` and ``Repository.insert_stream_1.19`` to
 
2109
  support this.  (Andrew Bennetts, #374738, #385826)
 
2110
 
 
2111
* Extracting the full ancestry and computing the ``merge_sort`` is now
 
2112
  significantly faster. This effects things like ``bzr log -n0``. (For
 
2113
  example, ``bzr log -r -10..-1 -n0 bzr.dev`` is 2.5s down to 1.0s.
 
2114
  (John Arbash Meinel)
 
2115
 
 
2116
Documentation
 
2117
*************
 
2118
 
 
2119
API Changes
 
2120
***********
 
2121
 
 
2122
Internals
 
2123
*********
 
2124
 
 
2125
* ``-Dstrict_locks`` can now be used to check that read and write locks
 
2126
  are treated properly w.r.t. exclusivity. (We don't try to take an OS
 
2127
  read lock on a file that we already have an OS write lock on.) This is
 
2128
  now set by default for all tests, if you have a test which cannot be
 
2129
  fixed, you can use ``self.thisFailsStrictLockCheck()`` as a
 
2130
  compatibility knob. (John Arbash Meinel)
 
2131
 
 
2132
* InterDifferingSerializer is now only used locally.  Other fetches that
 
2133
  would have used InterDifferingSerializer now use the more network
 
2134
  friendly StreamSource, which now automatically does the same
 
2135
  transformations as InterDifferingSerializer.  (Andrew Bennetts)
 
2136
 
 
2137
* ``KnownGraph`` now has a ``.topo_sort`` and ``.merge_sort`` member which
 
2138
  are implemented in pyrex and significantly faster. This is exposed along
 
2139
  with ``CombinedGraphIndex.find_ancestry()`` as
 
2140
  ``VersionedFiles.get_known_graph_ancestry(keys)``.
 
2141
  (John Arbash Meinel)
 
2142
 
 
2143
* RemoteBranch.open now honours ignore_fallbacks correctly on bzr-v2
 
2144
  protocols. (Robert Collins)
 
2145
 
 
2146
* The index code now has some specialized routines to extract the full
 
2147
  ancestry of a key in a more efficient manner.
 
2148
  ``CombinedGraphIndex.find_ancestry()``. (Time to get ancestry for
 
2149
  bzr.dev drops from 1.5s down to 300ms. For OOo from 33s => 10.5s) (John
 
2150
  Arbash Meinel)
 
2151
 
 
2152
Testing
 
2153
*******
 
2154
 
 
2155
* Install the test ssl certificate and key so that installed bzr
 
2156
  can run the https tests. (Denys Duchier, #392401)
 
2157
  
 
2158
 
 
2159
bzr 1.18rc1
 
2160
###########
 
2161
 
 
2162
:Codename: little traveller
 
2163
:1.18:    2009-08-20
 
2164
:1.18rc1: 2009-08-10
 
2165
 
 
2166
This release of Bazaar marches on towards the 2.0 release in which the 2a
 
2167
'brisbane-core' format becomes generally recommended.  Most of the work in
 
2168
this release now focusses on bug fixes and stabilization, covering both 2a
 
2169
and previous formats.  There is a new text-mode interactive merge feature,
 
2170
a new guide to migration to 2a format in the user documentation, and
 
2171
pushing branches to a smart server is now much faster.  
 
2172
 
 
2173
The Bazaar team decided that 2.0 will be a long-term supported release,
 
2174
with bugfix-only releases based on it continuing for at least six months
 
2175
or until the following stable release.
 
2176
 
 
2177
There are no changes from 1.18rc1 to 1.18.
 
2178
 
 
2179
New Features
 
2180
************
 
2181
 
 
2182
* ``bzr merge --interactive`` applies a user-selected portion of the
 
2183
  merge.  The UI is similar to ``shelve``.  (Aaron Bentley)
 
2184
 
 
2185
* ``bzr reconfigure`` now takes options ``--stacked-on URL`` and
 
2186
  ``--unstacked`` to change stacking of a branch.
 
2187
  (Martin Pool, #391411)
 
2188
 
 
2189
Bug Fixes
 
2190
*********
 
2191
 
 
2192
* Annotating on a stacked branch will now succeed in simple scenarios.
 
2193
  There are still some complex scenarios where it will fail (bug #399884)
 
2194
  (John Arbash Meinel, #393366)
 
2195
 
 
2196
* A progress bar is no longer left dangling when ``bzr selftest``
 
2197
  completes, and the progress bar updates with zero latency so the
 
2198
  displayed test name is always the one that's actually running.
 
2199
  (Martin Pool, #123688)
 
2200
 
 
2201
* Authenticating against an ssh server now uses ``auth_none`` to determine
 
2202
  if password authentication is even supported. This fixes a bug where
 
2203
  users would be prompted for a launchpad password, even though launchpad
 
2204
  only supports publickey authentication. (John Arbash Meinel, #375867)
 
2205
 
 
2206
* BranchBuilder now accepts timezone to avoid test failures in countries far
 
2207
  from GMT. (Vincent Ladeuil, #397716)
 
2208
 
 
2209
* ``bzr commit`` no longer saves the unversioning of missing files until
 
2210
  the commit has completed on the branch. This means that aborting a
 
2211
  commit that found a missing file will leave the tree unedited.
 
2212
  (Robert Collins, #282402)
 
2213
 
 
2214
* ``bzr mv`` no longer takes out branch locks, which allows it to work
 
2215
  when the branch is readonly. (Robert Collins, #216541)
 
2216
 
 
2217
* ``bzr revert .`` no longer generates an InconsistentDelta error when
 
2218
  there are missing subtrees. (Robert Collins, #367632)
 
2219
 
 
2220
* ``bzr send`` now generates valid bundles with ``--2a`` formats. However,
 
2221
  do to internal changes necessary to support this, older clients will
 
2222
  fail when trying to insert them. For newer clients, the bundle can be
 
2223
  used to apply the changes to any rich-root compatible format.
 
2224
  (John Arbash Meinel, #393349)
 
2225
 
 
2226
* Cope with FTP servers that don't support restart/append by falling back
 
2227
  to reading and then rewriting the whole file, such as TahoeLAFS.  (This
 
2228
  fallback may be slow for some access patterns.)  (Nils Durner, #294709)
 
2229
 
 
2230
* Encode the paths in ``mbcs`` encoding on Windows when spawning an
 
2231
  external diff client. This at least allows supporting filenames that are
 
2232
  not ascii, but are present in the current locale. Ideally we would be
 
2233
  able to pass the Unicode path, but that would be client dependent.
 
2234
  (John Arbash Meinel, #382709)
 
2235
 
 
2236
* Fix a compile bug on Solaris having to do with const and
 
2237
  pointer-to-pointers. (John Arbash Meinel, #408441)
 
2238
 
 
2239
* Fixed a NameError that occurs when merging or pulling from a URL that
 
2240
  causes a redirection loop when bzr tries to read a URL as a bundle.
 
2241
  (Andrew Bennetts, #400847)
 
2242
 
 
2243
* Fix ``AttributeError: 'TestUIFactory' object has no attribute 'tick'``
 
2244
  running send and similar commands on 2a formats.
 
2245
  (Martin Pool, #408201)
 
2246
  
 
2247
* Fix crash in some invocations of ``bzr status`` in format 2a.
 
2248
  (Martin Pool, #403523)
 
2249
 
 
2250
* Fixed export to existing directory: if directory is empty then export 
 
2251
  will succeed, otherwise it fails with error.
 
2252
  (Alexander Belchenko, #406174)
 
2253
 
 
2254
* Fixed spurious "Source branch does not support stacking" warning when
 
2255
  pushing. (Andrew Bennetts, #388908)
 
2256
 
 
2257
* Fixed spurious transport activity indicator appearing while tests are
 
2258
  running.  (Martin Pool, #343532)
 
2259
 
 
2260
* Merge now correctly handles empty right-hand revision specs.
 
2261
  (Aaron Bentley, #333961)
 
2262
 
 
2263
* Renames to lexographically lower basenames in trees that have never been
 
2264
  committed to will no longer corrupt the dirstate. This was caused by an
 
2265
  bug in the dirstate update_minimal method. (Robert Collins, #395556)
 
2266
 
 
2267
* Requests for unknown methods no longer cause the smart server to log
 
2268
  lots of backtraces about ``UnknownSmartMethod``, ``do_chunk`` or
 
2269
  ``do_end``.  (Andrew Bennetts, #338561)
 
2270
 
 
2271
* Shelve will not shelve the initial add of the tree root.  (Aaron Bentley)
 
2272
 
 
2273
* Streaming from bzr servers where there is a chain of stacked branches
 
2274
  (A stacked on B stacked on C) will now work. (Robert Collins, #406597)
 
2275
 
 
2276
* The environment variable ``BZR_PROGRESS_BAR`` set to either ``text`` or ``none``
 
2277
  always forces progress bars either on or off respectively.  Otherwise,
 
2278
  they're turned on if ``TERM`` is not ``dumb`` and stderr is a terminal.
 
2279
  bzr always uses the 'text' user interface when run as a command, so
 
2280
  ``BZR_USE_TEXT_UI`` is no longer needed.
 
2281
  (Martin Pool, #339385, #387717)
 
2282
 
 
2283
* The optional ``_knit_load_data_pyx`` C extension was never being
 
2284
  imported.  This caused significant slowdowns when reading data from
 
2285
  repositories.  (Andrew Bennetts, #405653)
 
2286
  
 
2287
* The ``--hardlink`` option to ``branch`` and ``checkout`` is not
 
2288
  supported at the moment on workingtree formats that can do content
 
2289
  filtering.  (See <https://bugs.edge.launchpad.net/bzr/+bug/408193>.)
 
2290
  bzr now says so, rather than just ignoring the option.  (Martin Pool)
 
2291
 
 
2292
* There was a bug in ``osutils.relpath`` that was only triggered on
 
2293
  Windows. Essentially if you were at the root of a drive, and did
 
2294
  something to a branch/repo on another drive, we would go into an
 
2295
  infinite loop while trying to find a 'relative path'.
 
2296
  (John Arbash Meinel, #394227)
 
2297
 
 
2298
* ``WorkingTree4.unversion`` will no longer fail to unversion ids which
 
2299
  were present in a parent tree but renamed in the working tree.
 
2300
  (Robert Collins, #187207)
 
2301
 
 
2302
Improvements
 
2303
************
 
2304
 
 
2305
* Can now rename/move files even if they have been removed from the inventory.
 
2306
  (Marius Kruger)
 
2307
 
 
2308
* Pushing branches with tags via ``bzr://`` and ``bzr+ssh://`` is much
 
2309
  faster, using a new ``Branch.set_tags_bytes`` smart server verb rather
 
2310
  than VFS methods.  For example, pushes of small branches with tags take
 
2311
  11 rather than 18 smart server requests.  (Andrew Bennetts, #398608)
 
2312
 
 
2313
* Sending Ctrl-Break on Windows will now drop you into the debugger, in
 
2314
  the same way that sending Ctrl-\\ does on other platforms.
 
2315
  (John Arbash Meinel)
 
2316
 
 
2317
Documentation
 
2318
*************
 
2319
 
 
2320
* Added Bazaar 2.0 Upgrade Guide. (Ian Clatworthy)
 
2321
 
 
2322
API Changes
 
2323
***********
 
2324
 
 
2325
* ``CLIUIFactory`` is deprecated; use ``TextUIFactory`` instead if you
 
2326
  need to subclass or create a specific class, or better yet the existing
 
2327
  ``make_ui_for_terminal``.  ``SilentUIFactory`` is clarified to do no
 
2328
  user interaction at all, rather than trying to read from stdin but not
 
2329
  writing any output, which would be strange if reading prompts or
 
2330
  passwords.  (Martin Pool)
 
2331
 
 
2332
* New TransformPreview.commit() allows committing without a working tree.
 
2333
  (Aaron Bentley)
 
2334
 
 
2335
* ``pb`` parameter to ``TextTestResult`` is deprecated and ignored.
 
2336
  (Martin Pool)
 
2337
 
 
2338
* ProgressTasks now prefer to talk direct to their ProgressView not to the
 
2339
  UIFactory. 
 
2340
  (Martin Pool)
 
2341
 
 
2342
* ``WorkingTree._check`` now requires a references dict with keys matching
 
2343
  those returned by ``WorkingTree._get_check_refs``. (Robert Collins)
 
2344
 
 
2345
Internals
 
2346
*********
 
2347
 
 
2348
* ``CHKInventory.path2id`` uses the parent_id to basename hash to avoid
 
2349
  reading the entries along the path, reducing work to lookup ids from
 
2350
  paths. (Robert Collins)
 
2351
 
 
2352
* ``CHKMap.apply_delta`` now raises ``InconsistentDelta`` if a delta adds
 
2353
  as new a key which was already mapped. (Robert Collins)
 
2354
 
 
2355
* Inventory delta application catches more cases of corruption and can
 
2356
  prevent corrupt deltas from affecting consistency of data structures on
 
2357
  disk. (Robert Collins)
 
2358
 
 
2359
* --subunit support now adds timestamps if the subunit version supports
 
2360
  it. (Robert Collins)
 
2361
 
 
2362
* The Windows all-in-one installer now bundles the PyQt image format
 
2363
  plugins, which allows previewing more images as part of 'qdiff'.
 
2364
  (Alexander Belchenko)
 
2365
 
 
2366
 
 
2367
Testing
 
2368
*******
 
2369
 
 
2370
* Merge directive cherrypick tests must use the same root id.
 
2371
  (Martin Pool, #409684)
 
2372
 
 
2373
* Spurious failure in ``check`` tests on rich-root formats fixed.
 
2374
  (Martin Pool, #408199)
 
2375
 
 
2376
* The ``bzrlib.tests.TextTestRunner`` will no longer call
 
2377
  ``countTestsCases`` on the test being run. Progress information is
 
2378
  instead handled by having the test passed in call ``result.progress``
 
2379
  before running its contents. This improves the behaviour when using
 
2380
  ``TextTestRunner`` with test suites that don't support
 
2381
  ``countTestsCases``. (Robert Collins)
 
2382
 
 
2383
 
 
2384
bzr 1.17.1 (unreleased)
 
2385
#######################
 
2386
 
 
2387
Bug Fixes
 
2388
*********
 
2389
 
 
2390
* The optional ``_knit_load_data_pyx`` C extension was never being
 
2391
  imported.  This caused significant slowdowns when reading data from
 
2392
  knit format repositories.  (Andrew Bennetts, #405653)
 
2393
  
 
2394
 
 
2395
bzr 1.17
 
2396
########
 
2397
:Codename: so-late-its-brunch
 
2398
:1.17rc1: 2009-07-13
 
2399
:1.17: 2009-07-20
 
2400
 
 
2401
 
 
2402
Bazaar continues to blaze a straight and shining path to the 2.0 release and
 
2403
the elevation of the ``2a`` beta format to the full glory of "supported and
 
2404
stable".
 
2405
 
 
2406
Highlights in this release include greatly reduced memory consumption during
 
2407
commits, faster ``ls``, faster ``annotate``, faster network operations if
 
2408
you're specifying a revision number and the final destruction of those
 
2409
annoying progress bar artifacts.
 
2410
 
 
2411
 
 
2412
Changes from 1.17rc1 to 1.17final
 
2413
*********************************
 
2414
 
 
2415
* Change an extension to call the python ``frozenset()`` rather than the C
 
2416
  api ``PyFrozenSet_New``. It turns out that python2.4 did not expose the
 
2417
  C api. (John Arbash Meinel, #399366)
 
2418
 
 
2419
* Fixes for the Makefile and the rename of ``generate_docs.py`` to
 
2420
  ``tools/generate_docs.py`` to allow everything to be built on Windows.
 
2421
  (John Arbash Meinel, #399356)
 
2422
 
 
2423
* ``bzr serve`` once again applies a ``ChrootServer`` to the given
 
2424
  directory before serving it. (Andrew Bennetts, #400535)
 
2425
 
 
2426
 
 
2427
Compatibility Breaks
 
2428
********************
 
2429
 
 
2430
* ``bzr register-branch`` from the Launchpad plugin now refers to "project"
 
2431
  instead of "product" which is the correct Launchpad terminology.  The
 
2432
  --product option is deprecated and users should switch to using --project.
 
2433
  (Neil Martinsen-Burrell, #238764)
 
2434
 
 
2435
 
 
2436
New Features
 
2437
************
 
2438
 
 
2439
* ``bzr push`` now aborts if uncommitted changes (including pending merges)
 
2440
  are present in the working tree (if one is present) and no revision is
 
2441
  specified. The configuration option ``push_strict`` can be used to set the
 
2442
  default for this behavior.  (Vincent Ladeuil, #284038, #322808, #65286)
 
2443
 
 
2444
* ``bzr revno`` and ``bzr revision-info`` now have a ``--tree`` option to
 
2445
  show revision info for the working tree instead of the branch.
 
2446
  (Matthew Fuller, John Arbash Meinel)
 
2447
 
 
2448
* ``bzr send`` now aborts if uncommitted changes (including pending merges)
 
2449
  are present in the working tree and no revision is specified. The
 
2450
  configuration option ``send_strict`` can be used to set the default for this
 
2451
  behavior.
 
2452
  (Vincent Ladeuil, #206577)
 
2453
 
 
2454
* ``bzr switch --create-branch/-b`` can now be used to create and switch
 
2455
  to a new branch. Supplying a name without a ``/`` will create the branch
 
2456
  relative to the existing branch. (similar to how ``bzr switch name``
 
2457
  works when the branch already exists.) (John Arbash Meinel)
 
2458
 
 
2459
 
 
2460
Bug Fixes
 
2461
*********
 
2462
 
 
2463
* Accept uppercase "Y/N" to prompts such as from break lock. 
 
2464
  (#335182, Tim Powell, Martin Pool)
 
2465
 
 
2466
* Add documentation about diverged branches and how to fix them in the
 
2467
  centralized workflow with local commits.  Mention ``bzr help
 
2468
  diverged-branches`` when a push fails because the branches have
 
2469
  diverged.  (Neil Martinsen-Burrell, #269477)
 
2470
 
 
2471
* Annotate would sometimes 'latch on' to trivial lines, causing important
 
2472
  lines to be incorrectly annotated. (John Arbash Meinel, #387952)
 
2473
 
 
2474
* Automatic format upgrades triggered by default stacking policies on a
 
2475
  1.16rc1 (or later) smart server work again.
 
2476
  (Andrew Bennetts, #388675)
 
2477
 
 
2478
* Avoid progress bar artifacts being left behind on the screen.
 
2479
  (Martin Pool, #321935)
 
2480
 
 
2481
* Better message in ``bzr split`` error suggesting a rich root format.
 
2482
  (Neil Martinsen-Burrell, #220067)
 
2483
 
 
2484
* ``Branch.set_append_revisions_only`` now works with branches on a smart
 
2485
  server. (Andrew Bennetts, #365865)
 
2486
 
 
2487
* By default, ``bzr branch`` will fail if the target directory exists, but
 
2488
  does not already have a control directory.  The flag ``--use-existing-dir``
 
2489
  will allow operation to proceed.  (Alexander Belchenko, #307554)
 
2490
 
 
2491
* ``bzr ls DIR --from-root`` now shows only things in DIR, not everything.
 
2492
  (Ian Clatworthy)
 
2493
 
 
2494
* Fetch between repositories does not error if they have inconsistent data
 
2495
  that should be irrelevant to the fetch operation. (Aaron Bentley)
 
2496
 
 
2497
* Fix ``AttributeError`` exception when reconfiguring lightweight checkout 
 
2498
  of a remote repository.
 
2499
  (Jelmer Vernooij, #332194)
 
2500
 
 
2501
* Fix bug in decoding v3 smart server messages when receiving multiple
 
2502
  lots of excess bytes after an end-of-message.
 
2503
  (Andrew Bennetts)
 
2504
 
 
2505
* Force deletion of readonly files during merge, update and other tree
 
2506
  transforms.
 
2507
  (Craig Hewetson, Martin Pool, #218206)
 
2508
 
 
2509
* Force socket shutdown in threaded http test servers to avoid client hangs
 
2510
  (pycurl).  (Vincent Ladeuil, #383920).
 
2511
 
 
2512
* ``LRUCache`` will maintain the linked list pointers even if a nodes
 
2513
  cleanup function raises an exception. (John Arbash Meinel, #396838)
 
2514
 
 
2515
* Progress bars are now suppressed again when the environment variable
 
2516
  ``BZR_PROGRESS_BAR`` is set to ``none``.
 
2517
  (Martin Pool, #339385)
 
2518
 
 
2519
* Reduced memory consumption during ``bzr commit`` of large files. For
 
2520
  pre 2a formats, should be down to ~3x the size of a file.
 
2521
  For ``--2a`` format repositories, it is down to the size of the file
 
2522
  content plus the size of the compressed text.  Related to bug #109114.
 
2523
  (John Arbash Meinel)
 
2524
 
 
2525
* Set hidden attribute on .bzr directory below unicode path should never
 
2526
  fail with error. The operation should succeed even if bzr unable to set 
 
2527
  the attribute.  (Alexander Belchenko, related to bug #335362).
 
2528
  
 
2529
* Stacking will no longer accept requests to stack on the same
 
2530
  branch/repository. Existing branches that incorrectly reference the same
 
2531
  repository in a stacking configuration will now raise
 
2532
  UnstackableLocationError when the branch is opened. This can be fixed by
 
2533
  removing the stacking location inside ``.bzr/branch``.
 
2534
  (Robert Collins, #376243)
 
2535
 
 
2536
* The ``log+`` decorator, useful in debugging or profiling, could cause
 
2537
  "AttributeError: 'list' object has no attribute 'next'".  This is now
 
2538
  fixed.  The log decorator no longer shows the elapsed time or transfer
 
2539
  rate because they're available in the log prefixes and the transport
 
2540
  activity display respectively.
 
2541
  (Martin Pool, #340347)
 
2542
 
 
2543
* Unshelve works correctly when multiple zero-length files are present on
 
2544
  the shelf. (Aaron Bentley, #363444)
 
2545
 
 
2546
* Progress bars no longer show the network transport scheme or direction.
 
2547
  (Martin Pool)
 
2548
 
 
2549
* launchpad-login now respects the 'verbose' option.
 
2550
  (Jonathan Lange, #217031)
 
2551
 
 
2552
 
 
2553
Internals
 
2554
*********
 
2555
 
 
2556
* ``bzrlib.user_encoding`` is now officially deprecated. It is not
 
2557
  possible to write a deprecation wrapper, but the variable will be
 
2558
  removed in the near future. Use ``bzrlib.osutils.get_user_encoding()``
 
2559
  instead. (Alexander Belchenko)
 
2560
 
 
2561
* Command lookup has had hooks added. ``bzrlib.Command.hooks`` has
 
2562
  three new hook points: ``get_command``, ``get_missing_command`` and
 
2563
  ``list_commands``, which allow just-in-time command name provision
 
2564
  rather than requiring all command names be known a-priori.
 
2565
  (Robert Collins)
 
2566
 
 
2567
* ``get_app_path`` from win32utils.py now supports REG_EXPAND_SZ data type
 
2568
  and can read path to wordpad.exe. (Alexander Belchenko, #392046)
 
2569
 
 
2570
* ``graph.KnownGraph`` has been added. This is a class that can give
 
2571
  answers to ``heads()`` very quickly. However, it has the assumption that
 
2572
  the whole graph has already been loaded. This is true during
 
2573
  ``annotate`` so it is used there with good success (as much as 2x faster
 
2574
  for files with long ancestry and 'cherrypicked' changes.)
 
2575
  (John Arbash Meinel, Vincent Ladeuil)
 
2576
 
 
2577
* OS file locks are now taken out using ``CreateFile`` rather than
 
2578
  ``LockFileEx`` on Windows. The locking remains exclusive with
 
2579
  ``LockFileEx`` but now it also works on older versions of Windows (such
 
2580
  as Win98). (Martin <gzlist>)
 
2581
 
 
2582
* pack <=> pack fetching is now done via a ``PackStreamSource`` rather
 
2583
  than the ``Packer`` code. The user visible change is that we now
 
2584
  properly fetch the minimum number of texts for non-smart fetching.
 
2585
  (John Arbash Meinel)
 
2586
 
 
2587
 
 
2588
* ``VersionedFiles._add_text`` is a new api that lets us insert text into
 
2589
  the repository as a single string, rather than a list of lines. This can
 
2590
  improve memory overhead and performance of committing large files.
 
2591
  (Currently a private api, used only by commit). (John Arbash Meinel)
 
2592
 
 
2593
 
 
2594
Improvements
 
2595
************
 
2596
 
 
2597
* ``bzr annotate`` can now be significantly faster. The time for
 
2598
  ``bzr annotate NEWS`` is down to 7s from 22s in 1.16. Files with long
 
2599
  histories and lots of 'duplicate insertions' will be improved more than
 
2600
  others. (John Arbash Meinel, Vincent Ladeuil)
 
2601
 
 
2602
* ``bzr ls`` is now faster. On OpenOffice.org, the time drops from 2.4
 
2603
  to 1.1 seconds. The improvement for ``bzr ls -r-1`` is more
 
2604
  substantial dropping from 54.3 to 1.1 seconds. (Ian Clatworthy)
 
2605
 
 
2606
* Improve "Path(s) are not versioned" error reporting for some commands.
 
2607
  (Benoît PIERRE)
 
2608
 
 
2609
* Initial commit performance in ``--2a`` repositories has been improved by
 
2610
  making it cheaper to build the initial CHKMap. (John Arbash Meinel)
 
2611
 
 
2612
* Resolving a revno to a revision id on a branch accessed via ``bzr://``
 
2613
  or ``bzr+ssh://`` is now much faster and involves no VFS operations.
 
2614
  This speeds up commands like ``bzr pull -r 123``.  (Andrew Bennetts)
 
2615
 
 
2616
* ``revision-info`` now properly aligns the revnos/revids in the output
 
2617
  and doesn't traceback when given revisions not in the current branch.
 
2618
  Performance is also significantly improved when requesting multiple revs
 
2619
  at once.  (Matthew Fuller, John Arbash Meinel)
 
2620
 
 
2621
* Tildes are no longer escaped by Transports. (Andy Kilner)
 
2622
 
 
2623
 
 
2624
Documentation
 
2625
*************
 
2626
 
 
2627
* Avoid bad text wrapping in generated documentation.  Slightly better
 
2628
  formatting in the user reference.
 
2629
  (Martin Pool, #249908)
 
2630
 
 
2631
* Minor clarifications to the help for End-Of-Line conversions.
 
2632
  (Ian Clatworthy)
 
2633
 
 
2634
API Changes
 
2635
***********
 
2636
 
 
2637
* Removed overspecific error class ``InvalidProgressBarType``.
 
2638
  (Martin Pool)
 
2639
 
 
2640
* The method ``ProgressView._show_transport_activity`` is now
 
2641
  ``show_transport_activity`` because it's part of the contract between
 
2642
  this class and the UI.  (Martin Pool)
 
2643
 
 
2644
 
 
2645
bzr 1.16.1
 
2646
##########
 
2647
 
 
2648
:Released: 2009-06-26
 
2649
 
 
2650
End user testing of the 2a format revealed two serious bugs. The first,
 
2651
#365615, caused bzr to raise AbsentContentFactory errors when autopacking.
 
2652
This meant that commits or pushes to 2a-format repositories failed
 
2653
intermittently.
 
2654
 
 
2655
The second bug, #390563, caused the smart server to raise AbsentContentFactory
 
2656
when streaming 2a stacked 2a-format branches. This particularly affected
 
2657
branches stored on Launchpad in the 2a format.
 
2658
 
 
2659
Both of these bugs cause command failures only, neither of them cause data
 
2660
corruption or data loss. And, of course, both of these bugs are now fixed.
 
2661
 
 
2662
Bug Fixes
 
2663
*********
 
2664
 
 
2665
* We now properly request a more minimal set of file texts when fetching
 
2666
  multiple revisions. (Robert Collins, John Arbash Meinel, #390563)
 
2667
 
 
2668
* Repositories using CHK pages (which includes the new 2a format) will no
 
2669
  longer error during commit or push operations when an autopack operation
 
2670
  is triggered. (Robert Collins, #365615)
 
2671
 
 
2672
* ``chk_map.iter_interesting_nodes`` now properly uses the *intersection*
 
2673
  of referenced nodes rather than the *union* to determine what
 
2674
  uninteresting pages we still need to look at. Prior to this,
 
2675
  incrementally pushing to stacked branch would push the minimal data, but
 
2676
  fetching everything would request extra texts. There are some unhandled
 
2677
  cases wrt trees of different depths, but this fixes the common cases.
 
2678
  (Robert Collins, John Arbash Meinel, #390563)
 
2679
 
 
2680
* ``GroupCompress`` repositories now take advantage of the pack hints
 
2681
  parameter to permit cross-format fetching to incrementally pack the
 
2682
  converted data. (Robert Collins)
 
2683
 
 
2684
* ``Repository.commit_write_group`` now returns opaque data about what
 
2685
  was committed, for passing to the ``Repository.pack``. Repositories
 
2686
  without atomic commits will still return None. (Robert Collins)
 
2687
 
 
2688
* ``Repository.pack`` now takes an optional ``hint`` parameter
 
2689
  which will support doing partial packs for repositories that can do
 
2690
  that. (Robert Collins)
 
2691
 
 
2692
* RepositoryFormat has a new attribute 'pack_compresses' which is True
 
2693
  when doing a pack operation changes the compression of content in the
 
2694
  repository. (Robert Collins)
 
2695
 
 
2696
* ``StreamSink`` and ``InterDifferingSerialiser`` will call
 
2697
  ``Repository.pack`` with the hint returned by
 
2698
  ``Repository.commit_write_group`` if the formats were different and the
 
2699
  repository can increase compression by doing a pack operation.
 
2700
  (Robert Collins, #376748)
 
2701
 
 
2702
 
 
2703
bzr 1.16
 
2704
########
 
2705
:Codename: yesterday-in-california
 
2706
:1.16rc1: 2009-06-11
 
2707
:1.16: 2009-06-18
 
2708
 
 
2709
This version of Bazaar contains the beta release of the new ``2a`` repository
 
2710
format, suitable for testing by fearless, advanced users. This format or an
 
2711
updated version of it will become the default format in Bazaar 2.0. Please
 
2712
read the NEWS entry before even thinking about upgrading to the new format.
 
2713
 
 
2714
Also included are speedups for many operations on huge projects, a bug fix for
 
2715
pushing stacked new stacked branches to smart servers and the usual bevy of
 
2716
bug fixes and improvements.
 
2717
 
 
2718
 
 
2719
Changes from 1.16rc1 to 1.16final
 
2720
*********************************
 
2721
 
 
2722
* Fix the nested tree flag check so that upgrade from development formats to
 
2723
  2a can work correctly.
 
2724
  (Jelmer Vernooij, #388727)
 
2725
 
 
2726
* Automatic format upgrades triggered by default stacking policies on a
 
2727
  1.16rc1 (or later) smart server work again.
 
2728
  (Andrew Bennetts, #388675)
 
2729
 
 
2730
 
 
2731
Compatibility Breaks
 
2732
********************
 
2733
 
 
2734
* Display prompt on stderr (instead of stdout) when querying users so
 
2735
  that the output of commands can be safely redirected.
 
2736
  (Vincent Ladeuil, #376582)
 
2737
 
 
2738
 
 
2739
New Features
 
2740
************
 
2741
 
 
2742
* A new repository format ``2a`` has been added.  This is a beta release
 
2743
  of the brisbane-core (aka group-compress) project.  This format now
 
2744
  suitable for wider testing by advanced users willing to deal with some
 
2745
  bugs.  We would appreciate test reports, either positive or negative.
 
2746
  Format 2a is substantially smaller and faster for many operations on
 
2747
  many trees.  This format or an updated version will become the default
 
2748
  in bzr 2.0.
 
2749
 
 
2750
  This is a rich-root format, so this repository format can be used with
 
2751
  bzr-svn.  Bazaar branches in previous non-rich-root formats can be
 
2752
  converted (including by merge, push and pull) to format 2a, but not vice
 
2753
  versa.  We recommend upgrading previous development formats to 2a.
 
2754
 
 
2755
  Upgrading to this format can take considerable time because it expands
 
2756
  and more concisely repacks the full history.
 
2757
 
 
2758
  If you use stacked branches, you must upgrade the stacked branches
 
2759
  before the stacked-on branches.  (See <https://bugs.launchpad.net/bugs/374735>)
 
2760
 
 
2761
* ``--development7-rich-root`` is a new dev format, similar to ``--dev6``
 
2762
  but using a Revision serializer using bencode rather than XML.
 
2763
  (Jelmer Vernooij, John Arbash Meinel)
 
2764
 
 
2765
* mail_client=claws now supports --body (and message body hooks).  Also uses
 
2766
  configured from address.  (Barry Warsaw)
 
2767
 
 
2768
Improvements
 
2769
************
 
2770
 
 
2771
 
 
2772
* ``--development6-rich-root`` can now stack. (Modulo some smart-server
 
2773
  bugs with stacking and non default formats.)
 
2774
  (John Arbash Meinel, #373455)
 
2775
 
 
2776
* ``--development6-rich-root`` delays generating a delta index for the
 
2777
  first object inserted into a group. This has a beneficial impact on
 
2778
  ``bzr commit`` since each committed texts goes to its own group. For
 
2779
  committing a 90MB file, it drops peak memory by about 200MB, and speeds
 
2780
  up commit from 7s => 4s. (John Arbash Meinel)
 
2781
 
 
2782
* Numerous operations are now faster for huge projects, i.e. those
 
2783
  with a large number of files and/or a large number of revisions,
 
2784
  particularly when the latest development format is used. These
 
2785
  operations (and improvements on OpenOffice.org) include:
 
2786
 
 
2787
  * branch in a shared repository (2X faster)
 
2788
  * branch --no-tree (100X faster)
 
2789
  * diff (2X faster)
 
2790
  * tags (70X faster)
 
2791
 
 
2792
  (Ian Clatworthy)
 
2793
 
 
2794
* Pyrex version of ``bencode`` support. This provides optimized support
 
2795
  for both encoding and decoding, and is now found at ``bzrlib.bencode``.
 
2796
  ``bzrlib.utils.bencode`` is now deprecated.
 
2797
  (Alexander Belchenko, Jelmer Vernooij, John Arbash Meinel)
 
2798
 
 
2799
 
 
2800
Bug Fixes
 
2801
*********
 
2802
 
 
2803
* Bazaar can now pass attachment files to the mutt email client.
 
2804
  (Edwin Grubbs, #384158)
 
2805
 
 
2806
* Better message in ``bzr add`` output suggesting using ``bzr ignored`` to
 
2807
  see which files can also be added.  (Jason Spashett, #76616)
 
2808
 
 
2809
* ``bzr pull -r 123`` from a stacked branch on a smart server no longer fails.
 
2810
  Also, the ``Branch.revision_history()`` API now works in the same
 
2811
  situation.  (Andrew Bennetts, #380314)
 
2812
  
 
2813
* ``bzr serve`` on Windows no longer displays a traceback simply because a
 
2814
  TCP client disconnected. (Andrew Bennetts)
 
2815
 
 
2816
* Clarify the rules for locking and fallback repositories. Fix bugs in how
 
2817
  ``RemoteRepository`` was handling fallbacks along with the
 
2818
  ``_real_repository``. (Andrew Bennetts, John Arbash Meinel, #375496)
 
2819
 
 
2820
* Fix a small bug with fetching revisions w/ ghosts into a new stacked
 
2821
  branch. Not often triggered, because it required ghosts to be part of
 
2822
  the fetched revisions, not in the stacked-on ancestry.
 
2823
  (John Arbash Meinel)
 
2824
 
 
2825
* Fix status and commit to work with content filtered trees, addressing
 
2826
  numerous bad bugs with line-ending support. (Ian Clatworthy, #362030)
 
2827
 
 
2828
* Fix problem of "directory not empty" when contending for a lock over
 
2829
  sftp.  (Martin Pool, #340352)
 
2830
 
 
2831
* Fix rule handling so that eol is optional, not mandatory.
 
2832
  (Ian Clatworthy, #379370)
 
2833
 
 
2834
* Pushing a new stacked branch to a 1.15 smart server was broken due to a
 
2835
  bug in the ``BzrDirFormat.initialize_ex`` smart verb.  This is fixed in
 
2836
  1.16, but required changes to the network protocol, so the
 
2837
  ``BzrDirFormat.initialize_ex`` verb has been removed and replaced with a
 
2838
  corrected ``BzrDirFormat.initialize_ex_1.16`` verb.  1.15 clients will
 
2839
  still work with a 1.16 server as they will fallback to slower (and
 
2840
  bug-free) methods.
 
2841
  (Jonathan Lange, Robert Collins, Andrew Bennetts, #385132)
 
2842
 
 
2843
* Reconcile can now deal with text revisions that originated in revisions 
 
2844
  that are ghosts. (Jelmer Vernooij, #336749)
 
2845
 
 
2846
* Support cloning of branches with ghosts in the left hand side history.
 
2847
  (Jelmer Vernooij, #248540)
 
2848
 
 
2849
* The ''bzr diff'' now catches OSError from osutils.rmtree and logs a
 
2850
  helpful message to the trace file, unless the temp directory really was
 
2851
  removed (which would be very strange).  Since the diff operation has
 
2852
  succeeded from the user's perspective, no output is written to stderr 
 
2853
  or stdout.  (Maritza Mendez, #363837)
 
2854
 
 
2855
* Translate errors received from a smart server in response to a
 
2856
  ``BzrDirFormat.initialize`` or ``BzrDirFormat.initialize_ex`` request.
 
2857
  This was causing tracebacks even for mundane errors like
 
2858
  ``PermissionDenied``.  (Andrew Bennetts, #381329)
 
2859
 
 
2860
Documentation
 
2861
*************
 
2862
 
 
2863
* Added directory structure and started translation of docs in Russian.
 
2864
  (Alexey Shtokalo, Alexander Iljin, Alexander Belchenko, Dmitry Vasiliev,
 
2865
  Volodymyr Kotulskyi)
 
2866
 
 
2867
API Changes
 
2868
***********
 
2869
 
 
2870
* Added osutils.parent_directories(). (Ian Clatworthy)
 
2871
 
 
2872
* ``bzrlib.progress.ProgressBar``, ``ChildProgress``, ``DotsProgressBar``,
 
2873
  ``TTYProgressBar`` and ``child_progress`` are now deprecated; use
 
2874
  ``ui_factory.nested_progress_bar`` instead.  (Martin Pool)
 
2875
 
 
2876
* ``graph.StackedParentsProvider`` is now a public API, replacing
 
2877
  ``graph._StackedParentsProvider``. The api is now considered stable and ready
 
2878
  for external users. (Gary van der Merwe)
 
2879
 
 
2880
* ``bzrlib.user_encoding`` is deprecated in favor of
 
2881
  ``get_user_encoding``.  (Alexander Belchenko)
 
2882
 
 
2883
* TreeTransformBase no longer assumes that limbo is provided via disk.
 
2884
  DiskTreeTransform now provides disk functionality.  (Aaron Bentley)
 
2885
 
 
2886
Internals
 
2887
*********
 
2888
 
 
2889
* Remove ``weave.py`` script for accessing internals of old weave-format
 
2890
  repositories.  (Martin Pool)
 
2891
 
 
2892
Testing
 
2893
*******
 
2894
 
 
2895
* ``make check`` no longer repeats the test run in ``LANG=C``.
 
2896
  (Martin Pool, #386180)
 
2897
 
 
2898
* The number of cores is now correctly detected on OSX. (John Szakmeister)
 
2899
 
 
2900
* The number of cores is also detected on Solaris and win32. (Vincent Ladeuil)
 
2901
 
 
2902
* The number of cores is also detected on FreeBSD. (Matthew Fuller)
 
2903
 
 
2904
 
 
2905
bzr 1.15
 
2906
########
 
2907
:1.15rc1: 2009-05-16
 
2908
:1.15: 2009-05-22
 
2909
:1.15.1: 2009-06-09
 
2910
 
 
2911
The smart server will no longer raise 'NoSuchRevision' when streaming content
 
2912
with a size mismatch in a reconstructed graph search. New command ``bzr
 
2913
dpush``. Plugins can now define their own annotation tie-breaker when two
 
2914
revisions introduce the exact same line.
 
2915
 
 
2916
Changes from 1.15.1 to 1.15.2
 
2917
*****************************
 
2918
 
 
2919
* Use zdll on Windows to build ``_chk_map_pyx`` extension.
 
2920
  (Alexander Belchenko)
 
2921
 
 
2922
Changes from 1.15final to 1.15.1
 
2923
*********************************
 
2924
 
 
2925
* Translate errors received from a smart server in response to a
 
2926
  ``BzrDirFormat.initialize`` or ``BzrDirFormat.initialize_ex`` request.
 
2927
  This was causing tracebacks even for mundane errors like
 
2928
  ``PermissionDenied``.  (Andrew Bennetts, #381329)
 
2929
 
 
2930
Changes from 1.15rc1 to 1.15final
 
2931
*********************************
 
2932
 
 
2933
* No changes
 
2934
 
 
2935
Compatibility Breaks
 
2936
********************
 
2937
 
 
2938
* ``bzr ls`` is no longer recursive by default. To recurse, use the
 
2939
  new ``-R`` option. The old ``--non-recursive`` option has been removed.
 
2940
  If you alias ``ls`` to ``ls -R``, you can disable recursion using
 
2941
  ``--no-recursive`` instead.  (Ian Clatworthy)
 
2942
 
 
2943
New Features
 
2944
************
 
2945
 
 
2946
* New command ``bzr dpush`` that can push changes to foreign 
 
2947
  branches (svn, git) without setting custom bzr-specific metadata.
 
2948
  (Jelmer Vernooij)
 
2949
 
 
2950
* The new development format ``--development6-rich-root`` now supports
 
2951
  stacking. We chose not to use a new format marker, since old clients
 
2952
  will just fail to open stacked branches, the same as if we used a new
 
2953
  format flag. (John Arbash Meinel, #373455)
 
2954
 
 
2955
* Plugins can now define their own annotation tie-breaker when two revisions
 
2956
  introduce the exact same line. See ``bzrlib.annotate._break_annotation_tie``
 
2957
  Be aware though that this is temporary, private (as indicated by the leading
 
2958
  '_') and a first step to address the problem. (Vincent Ladeuil, #348459)
 
2959
 
 
2960
* New command ``bzr dpush`` that can push changes to foreign 
 
2961
  branches (svn, git) without setting custom bzr-specific metadata.
 
2962
  (Jelmer Vernooij)
 
2963
 
 
2964
* ``bzr send`` will now check the ``child_submit_format`` setting in
 
2965
  the submit branch to determine what format to use, if none was 
 
2966
  specified on the command-line.  (Jelmer Vernooij)
 
2967
 
 
2968
Improvements
 
2969
************
 
2970
 
 
2971
* -Dhpss output now includes the number of VFS calls made to the remote
 
2972
  server. (Jonathan Lange)
 
2973
 
 
2974
* ``--coverage`` works for code running in threads too.
 
2975
  (Andrew Bennets, Vincent Ladeuil)
 
2976
 
 
2977
* ``bzr pull`` now has a ``--local`` option to only make changes to the
 
2978
  local branch, and not the bound master branch.
 
2979
  (Gary van der Merwe, #194716)
 
2980
 
 
2981
* ``bzr rm *`` is now as fast as ``bzr rm * --keep``. (Johan Walles, #180116)
 
2982
 
 
2983
Bug Fixes
 
2984
*********
 
2985
 
 
2986
* Adding now works properly when path contains a symbolic link.
 
2987
  (Geoff Bache, #183831)
 
2988
 
 
2989
* An error is now raised for unknown eol values. (Brian de Alwis, #358199)
 
2990
 
 
2991
* ``bzr merge --weave`` will now generate a conflict if one side deletes a
 
2992
  line, and the other side modifies the line. (John Arbash Meinel, #328171)
 
2993
 
 
2994
* ``bzr reconfigure --standalone`` no longer raises IncompatibleRepositories.
 
2995
  (Martin von Gagern, #248932)
 
2996
 
 
2997
* ``bzr send`` works to send emails again using MAPI.
 
2998
  (Neil Martinsen-Burrell, #346998)
 
2999
 
 
3000
* Check for missing parent inventories in StreamSink.  This prevents
 
3001
  incomplete stacked branches being created by 1.13 bzr:// and
 
3002
  bzr+ssh:// clients (which have bug #354036).  Instead, the server now
 
3003
  causes those clients to send the missing records.  (Andrew Bennetts)
 
3004
 
 
3005
* Correctly handle http servers proposing multiple authentication schemes.
 
3006
  (Vincent Ladeuil, #366107)
 
3007
 
 
3008
* End-Of-Line content filters are now loaded correctly.
 
3009
  (Ian Clatworthy, Brian de Alwis, #355280)
 
3010
 
 
3011
* Fix a bug in the pure-python ``GroupCompress`` code when handling copies
 
3012
  longer than 64KiB. (John Arbash Meinel, #364900)
 
3013
 
 
3014
* Fix TypeError in running ``bzr break-lock`` on some URLs.
 
3015
  (Alexander Belchenko, Martin Pool, #365891)
 
3016
 
 
3017
* Non-recursive ``bzr ls`` now works properly when a path is specified.
 
3018
  (Jelmer Vernooij, #357863)
 
3019
 
 
3020
* ssh usernames (defined in ~/.ssh/config) are honoured for bzr+ssh connections.
 
3021
  (Vincent Ladeuil, #367726)
 
3022
 
 
3023
* Several bugs related to unicode symlinks have been fixed and the test suite
 
3024
  enhanced to better catch regressions for them. (Vincent Ladeuil)
 
3025
 
 
3026
* The smart server will no longer raise 'NoSuchRevision' when streaming
 
3027
  content with a size mismatch in a reconstructed graph search: it assumes
 
3028
  that the client will make sure it is happy with what it got, and this
 
3029
  sort of mismatch is normal for stacked environments.
 
3030
  bzr 1.13.0/1 will stream from unstacked branches only - in that case not
 
3031
  getting all the content expected would be a bug. However the graph
 
3032
  search is how we figured out what we wanted, so a mismatch is both odd
 
3033
  and unrecoverable without starting over, and starting over will end up
 
3034
  with the same data as if we just permitted the mismatch. If data is
 
3035
  gc'd, doing a new search will find only the truncated data, so sending
 
3036
  only the truncated data seems reasonable. bzr versions newer than this
 
3037
  will stream from stacked branches and check the stream to find missing
 
3038
  content in the stacked-on branch, and thus will handle the situation
 
3039
  implicitly.  (Robert Collins, #360791)
 
3040
 
 
3041
* Upgrading to, or fetching into a 'rich-root' format will now correctly
 
3042
  set the root data the same way that reconcile does.
 
3043
  (Robert Collins, #368921)
 
3044
 
 
3045
* Using unicode Windows API to obtain command-line arguments.
 
3046
  (Alexander Belchenko, #375934)
 
3047
 
 
3048
Documentation
 
3049
*************
 
3050
 
 
3051
API Changes
 
3052
***********
 
3053
 
 
3054
* ``InterPackRepo.fetch`` and ``RepoFetcher`` now raise ``NoSuchRevision``
 
3055
  instead of ``InstallFailed`` when they detect a missing revision.
 
3056
  ``InstallFailed`` itself has been deleted. (Jonathan Lange)
 
3057
 
 
3058
* Not passing arguments to ``bzrlib.commands.main()`` will now grab the
 
3059
  arguments from ``osutils.get_unicode_argv()`` which has proper support
 
3060
  for unicode arguments on windows. Further, the supplied arguments are now 
 
3061
  required to be unicode strings, rather than user_encoded strings.
 
3062
  (Alexander Belchenko)
 
3063
 
 
3064
Internals
 
3065
*********
 
3066
 
 
3067
* ``bzrlib.branch.Branch.set_parent`` is now present on the base branch
 
3068
  class and will call ``_set_parent_location`` after doing unicode 
 
3069
  encoding. (Robert Collins)
 
3070
 
 
3071
* ``bzrlib.remote.RemoteBranch._set_parent_location`` will use a new verb
 
3072
  ``Branch.set_parent_location`` removing further VFS operations.
 
3073
  (Robert Collins)
 
3074
 
 
3075
* ``bzrlib.bzrdir.BzrDir._get_config`` now returns a ``TransportConfig``
 
3076
  or similar when the dir supports configuration settings. The base class
 
3077
  defaults to None. There is a matching new server verb
 
3078
  ``BzrDir.get-config_file`` to reduce roundtrips for getting BzrDir
 
3079
  configuration. (Robert Collins)
 
3080
 
 
3081
* ``bzrlib.tests.ExtendedTestResult`` has new methods ``startTests``
 
3082
  called before the first test is started, ``done`` called after the last
 
3083
  test completes, and a new parameter ``strict``. (Robert Collins)
 
3084
 
 
3085
* ``-Dhpss`` when passed to bzr will cause a backtrace to be printed when
 
3086
  VFS operations are started on a smart server repository. This should not
 
3087
  occur on regular push and pull operations, and is a key indicator for
 
3088
  performance regressions. (Robert Collins)
 
3089
 
 
3090
* ``-Dlock`` when passed to the selftest (e.g. ``bzr -Dlock selftest``) will
 
3091
  cause mismatched physical locks to cause test errors rather than just
 
3092
  reporting to the screen. (Robert Collins)
 
3093
 
 
3094
* -Dprogress will cause pdb to start up if a progress view jumps
 
3095
  backwards. (Robert Collins)
 
3096
 
 
3097
* Fallback ``CredentialStore`` instances registered with ``fallback=True``
 
3098
  are now be able to provide credentials if obtaining credentials 
 
3099
  via ~/.bazaar/authentication.conf fails. (Jelmer Vernooij, 
 
3100
  Vincent Ladeuil, #321918)
 
3101
 
 
3102
* New hook ``Lock.lock_broken`` which runs when a lock is
 
3103
  broken. This is mainly for testing that lock/unlock are
 
3104
  balanced in tests. (Vincent Ladeuil)
 
3105
 
 
3106
* New MergeDirective hook 'merge_request_body' allows hooks to supply or
 
3107
  alter a body for the message produced by ``bzr send``.
 
3108
 
 
3109
* New smart server verb ``BzrDir.initialize_ex`` which implements a
 
3110
  refactoring to the core of clone allowing less round trips on new
 
3111
  branches. (Robert Collins)
 
3112
 
 
3113
* New method ``Tags.rename_revisions`` that can rename revision ids tags
 
3114
  are pointing at. (Jelmer Vernooij)
 
3115
 
 
3116
* Updated the bundled ``ConfigObj`` library to 4.6.0 (Matt Nordhoff)
 
3117
 
 
3118
Testing
 
3119
*******
 
3120
 
 
3121
* ``bzr selftest`` will now fail if lock/unlock are not correctly balanced in
 
3122
  tests. Using ``-Dlock`` will turn the related failures into warnings.
 
3123
  (Vincent Ladeuil, Robert Collins)
 
3124
 
 
3125
bzr 1.14
 
3126
########
 
3127
:Codename: brisbane-core
 
3128
:1.14rc1: 2009-04-06
 
3129
:1.14rc2: 2009-04-19
 
3130
:1.14: 2009-04-28
 
3131
:1.14.1: 2009-05-01
 
3132
 
 
3133
New formats 1.14 and 1.14-rich-root supporting End-Of-Line (EOL) conversions,
 
3134
keyword templating (via the bzr-keywords plugin) and generic content filtering.
 
3135
End-of-line conversion is now supported for formats supporting content
 
3136
filtering.
 
3137
 
 
3138
Changes from 1.14final to 1.14.1
 
3139
********************************
 
3140
 
 
3141
* Change api_minimum_version back to api_minimum_version = (1, 13, 0)
 
3142
 
 
3143
Changes from 1.14rc2 to 1.14final
 
3144
*********************************
 
3145
 
 
3146
* Fix a bug in the pure-python ``GroupCompress`` code when handling copies
 
3147
  longer than 64KiB. (John Arbash Meinel, #364900)
 
3148
 
 
3149
Changes from 1.14rc1 to 1.14rc2
 
3150
*******************************
 
3151
 
 
3152
* Fix for bug 358037 Revision not in
 
3153
  bzrlib.groupcompress.GroupCompressVersionedFiles (Brian de Alwis, 
 
3154
  John A Meinel)
 
3155
 
 
3156
* Fix for bug 354036 ErrorFromSmartServer - AbsentContentFactory object has no
 
3157
  attribute 'get_bytes_as' exception while pulling from Launchpad 
 
3158
  (Jean-Francois Roy, Andrew Bennetts, Robert Collins)
 
3159
 
 
3160
* Fix for bug 355280 eol content filters are never loaded and thus never
 
3161
  applied (Brian de Alwis, Ian Clatworthy)
 
3162
 
 
3163
* bzr.dev -r4280  Change _fetch_uses_deltas = False for CHK repos until we can
 
3164
  write a better fix. (John Arbash Meinel, Robert Collins)
 
3165
 
 
3166
* Fix for bug 361574 uncommit recommends undefined --levels and -n options
 
3167
  (Marius Kruger, Ian Clatworthy)
 
3168
 
 
3169
* bzr.dev r4289 as cherrypicked at lp:~spiv/bzr/stacking-cherrypick-1.14 
 
3170
  (Andrew Bennetts, Robert Collins)
 
3171
 
 
3172
Compatibility Breaks
 
3173
********************
 
3174
 
 
3175
* A previously disabled code path to accelerate getting configuration
 
3176
  settings from a smart server has been reinstated. We think this *may*
 
3177
  cause a incompatibility with servers older than bzr 0.15. We intend
 
3178
  to issue a point release to address this if it turns out to be a
 
3179
  problem. (Robert Collins, Andrew Bennetts)
 
3180
 
 
3181
* bzr no longer autodetects nested trees as 'tree-references'.  They
 
3182
  must now be explicitly added tree references.  At the commandline, use
 
3183
  join --reference instead of add.  (Aaron Bentley)
 
3184
 
 
3185
* The ``--long`` log format (the default) no longer shows merged
 
3186
  revisions implicitly, making it consistent with the ``short`` and
 
3187
  ``line`` log formats.  To see merged revisions for just a given
 
3188
  revision, use ``bzr log -n0 -rX``. To see every merged revision,
 
3189
  use ``bzr log -n0``.  (Ian Clatworthy)
 
3190
 
 
3191
New Features
 
3192
************
 
3193
 
 
3194
* New formats ``1.14`` and ``1.14-rich-root`` supporting End-Of-Line
 
3195
  (EOL) conversions, keyword templating (via the bzr-keywords plugin)
 
3196
  and generic content filtering. These formats replace the experimental
 
3197
  ``development-wt5`` and ``development-wt5-rich-root`` formats
 
3198
  respectively, but have support for filtered views disabled.
 
3199
  (Ian Clatworthy)
 
3200
 
 
3201
* New ``mv --auto`` option recognizes renames after they occur.
 
3202
  (Aaron Bentley)
 
3203
 
 
3204
* ``bzr`` can now get passwords from stdin without requiring a controlling
 
3205
  terminal (i.e. by redirecting stdin). (Vincent Ladeuil)
 
3206
 
 
3207
* ``bzr log`` now supports filtering of multiple files and directories
 
3208
  and will show changes that touch any of them. Furthermore,
 
3209
  directory filtering now shows the changes to any children of that
 
3210
  directory, not just the directory object itself.
 
3211
  (Ian Clatworthy, #97715)
 
3212
 
 
3213
* ``bzr shelve`` can now apply changes without storing anything on the
 
3214
  shelf, via the new --destroy option.  (Aaron Bentley)
 
3215
 
 
3216
* ``bzr send`` now accepts --body to specify an initial message body.
 
3217
  (Aaron bentley)
 
3218
 
 
3219
* ``bzr xxx --usage`` where xxx is a command now shows a usage
 
3220
  message and the options without the descriptive help sections
 
3221
  (like Description and Examples). A message is also given
 
3222
  explaining how to see the complete help, i.e. ``bzr help xxx``.
 
3223
  (Ian Clatworthy)
 
3224
 
 
3225
* Content filters can now be used to provide custom conversion
 
3226
  between the canonical format of content (i.e. as stored) and
 
3227
  the convenience format of content (i.e. as created in working
 
3228
  trees). See ``bzr help content-filters`` for further details.
 
3229
  (Ian Clatworthy, Alexander Belchenko)
 
3230
 
 
3231
* End-of-line conversion is now supported for formats supporting
 
3232
  content filtering. See ``bzr help eol`` for details.
 
3233
  (Ian Clatworthy)
 
3234
 
 
3235
* Newly-blessed `join` command allows combining two trees into one.
 
3236
  (Aaron Bentley)
 
3237
 
 
3238
Improvements
 
3239
************
 
3240
 
 
3241
* A new format name alias ``default-rich-root`` has been added and
 
3242
  points at the closest relative of the default format that supports 
 
3243
  rich roots. (Jelmer Vernooij, #338061)
 
3244
 
 
3245
* Branching from a stacked branch using ``bzr*://`` will now stream
 
3246
  the data when the target repository does not need topological
 
3247
  ordering, reducing round trips and network overhead. This uses the
 
3248
  existing smart server methods added in 1.13, so will work on any
 
3249
  1.13 or newer server. (Robert Collins, Andrew Bennetts)
 
3250
 
 
3251
* ``bzr cat`` and ``bzr export`` now supports a ``--filters`` option
 
3252
  that displays/saves the content after content filters are applied.
 
3253
  (Ian Clatworthy)
 
3254
 
 
3255
* ``bzr ignore`` gives a more informative message when existing
 
3256
  version controlled files match the ignore pattern. (Neil
 
3257
  Martinsen-Burrell, #248895)
 
3258
 
 
3259
* ``bzr log`` now has ``--include-merges`` as an alias for ``--levels 0``.
 
3260
  (Ian Clatworthy)
 
3261
 
 
3262
* ``bzr send`` is faster on repositories with deep histories.
 
3263
  (Ian Clatworthy)
 
3264
 
 
3265
* IPv6 literals are accepted in URLs.
 
3266
  (stlman, Martin Pool, Jelmer Vernooij, #165014)
 
3267
 
 
3268
* Progress bars now show the rate of network activity for
 
3269
  ``bzr+ssh://`` and ``bzr://`` connections.  (Andrew Bennetts)
 
3270
 
 
3271
* Prompt for user names if they are not in the configuration. 
 
3272
  (Jelmer Vernooij, #256612)
 
3273
 
 
3274
* Pushing to a stacked pack-format branch on a 1.12 or older smart server
 
3275
  now takes many less round trips.  (Andrew Bennetts, Robert Collins,
 
3276
  #294479)
 
3277
  
 
3278
* Streaming push can be done to older repository formats.  This is
 
3279
  implemented using a new ``Repository.insert_stream_locked`` RPC.
 
3280
  (Andrew Bennetts, Robert Collins)
 
3281
 
 
3282
* The "ignoring files outside view: .." message has been re-worded
 
3283
  to "Ignoring files outside view. View is .." to reduce confusion
 
3284
  about what was being considered and what was being ignored.
 
3285
  (Ian Clatworthy)
 
3286
 
 
3287
* The ``long`` log formatter now shows [merge] indicators. If
 
3288
  only one level of revisions is displayed and merges are found,
 
3289
  the ``long`` and ``short`` log formatters now tell the user
 
3290
  how to see the hidden merged revisions.  (Ian Clatworthy)
 
3291
 
 
3292
* The ``brisbane-core`` project has delivered its beta format
 
3293
  ``development6-rich-root``. This format is suitable for judicious
 
3294
  testing by early adopters. In particular if you are benchmarking bzr
 
3295
  performance please be sure to test using this format. At this stage
 
3296
  more information is best obtained by contacting the Bazaar mailing list
 
3297
  or IRC channel if you are interested in using this format. We will make
 
3298
  end user documentation available closer to blessing the format as
 
3299
  production ready. (Robert Collins, John Arbash Meinel, Ian Clatworthy,
 
3300
  Vincent Ladeuil, Andrew Bennetts, Martin Pool)
 
3301
 
 
3302
* Tildes are no longer escaped. No more %7Euser/project/branch!
 
3303
  (Jonathan Lange)
 
3304
 
 
3305
Bug Fixes
 
3306
*********
 
3307
 
 
3308
* Pushing a new stacked branch will also push the parent inventories for
 
3309
  revisions at the stacking boundary.  This makes sure that the stacked
 
3310
  branch has enough data to calculate inventory deltas for all of its
 
3311
  revisions (without requiring the fallback branch).  This avoids
 
3312
  "'AbsentContentFactory' object has no attribute 'get_bytes_as'" errors
 
3313
  when fetching the stacked branch from a 1.13 (or later) smart server.
 
3314
  This partially fixes #354036.  (Andrew Bennetts, Robert Collins)
 
3315
 
 
3316
* End-Of-Line content filters are now loaded correctly.
 
3317
  (Ian Clatworthy, Brian de Alwis, #355280)
 
3318
 
 
3319
* Authentication plugins now receive all the parameters from the request
 
3320
  itself (aka host, port, realm, path, etc). Previously, only the 
 
3321
  authentication section name, username and encoded password were 
 
3322
  provided. (Jean-Francois Roy)
 
3323
 
 
3324
* bzr gives a better message if an invalid regexp is passed to ``bzr log
 
3325
  -m``.  (Anne Mohsen, Martin Pool)
 
3326
 
 
3327
* ``bzr split`` now says "See also: join" (Aaron Bentley, #335015)
 
3328
 
 
3329
* ``bzr version-info`` now works in empty branches. (Jelmer Vernooij,
 
3330
  #313028)
 
3331
 
 
3332
* Fix "is not a stackable format" error when pushing a
 
3333
  stackable-format branch with an unstackable-format repository to a
 
3334
  destination with a default stacking policy.  (Andrew Bennetts)
 
3335
 
 
3336
* Fixed incorrect "Source format does not support stacking" warning
 
3337
  when pushing to a smart server.  (Andrew Bennetts, #334114)
 
3338
 
 
3339
* Fix 'make check-dist-tarball' failure by converting paths to unicode when
 
3340
  needed. (Vincent Ladeuil, #355454)
 
3341
 
 
3342
* Fixed "Specified file 'x/y/z' is outside current view: " occurring
 
3343
  on ``bzr add x/y/z`` in formats supporting views when no view is
 
3344
  defined.  (Ian Clatworthy, #344708)
 
3345
 
 
3346
* It is no longer possible to fetch between repositories while the
 
3347
  target repository is in a write group. This prevents race conditions
 
3348
  that prevent the use of RPC's to perform fetch, and thus allows
 
3349
  optimising more operations. (Robert Collins, Andrew Bennetts)
 
3350
 
 
3351
* ``merge --force`` works again. (Robert Collins, #342105)
 
3352
 
 
3353
* No more warnings are issued about ``sha`` being deprecated under python-2.6.
 
3354
  (Vincent Ladeuil, #346593)
 
3355
 
 
3356
* Pushing a new branch to a server that has a stacking policy will now
 
3357
  upgrade from the local branch format when the stacking policy points at
 
3358
  a branch which is itself stackable, because we know the client can read
 
3359
  both branches, we know that the trunk for the project can be read too,
 
3360
  so the upgrade will not inconvenience users. (Robert Collins, #345169)
 
3361
 
 
3362
* Pushing a new stacked branch will also push the parent inventories for
 
3363
  revisions at the stacking boundary.  This makes sure that the stacked
 
3364
  branch has enough data to calculate inventory deltas for all of its
 
3365
  revisions (without requiring the fallback branch).  This avoids
 
3366
  "'AbsentContentFactory' object has no attribute 'get_bytes_as'" errors
 
3367
  when fetching the stacked branch from a 1.13 (or later) smart server.
 
3368
  This partially fixes #354036.  (Andrew Bennetts, Robert Collins)
 
3369
 
 
3370
* The full test suite is passing again on OSX. Several minor issues (mostly
 
3371
  test related) have been fixed. (Vincent Ladeuil, #355273).
 
3372
 
 
3373
* The GNU Changelog formatter is slightly improved in the case where
 
3374
  the delta is empty, and now correctly claims not to support tags.
 
3375
  (Andrea Bolognani)
 
3376
 
 
3377
* Shelve can now shelve changes to a symlink target.
 
3378
  (James Westby, #341558)
 
3379
 
 
3380
* The help for the ``info`` command has been corrected.
 
3381
  (Ian Clatworthy, #351931)
 
3382
 
 
3383
* Upgrade will now use a sensible default format if the source repository
 
3384
  uses rich roots.  (Jelmer Vernooij, #252908)
 
3385
 
 
3386
Documentation
 
3387
*************
 
3388
 
 
3389
* Expanded the index of the developer documentation. (Eric Siegerman)
 
3390
 
 
3391
* New topic `bzr help debug-flags`.  (Martin Pool)
 
3392
 
 
3393
* The generated manpage now explicitly lists aliases as commands.
 
3394
  (James Westby, #336998)
 
3395
 
 
3396
API Changes
 
3397
***********
 
3398
 
 
3399
* APIs deprecated in 1.6 and previous versions of bzr are now removed.
 
3400
  (Martin Pool)
 
3401
 
 
3402
* ``CommitReporter`` is no longer called with ``unchanged`` status during
 
3403
  commit - this was a full-tree overhead that bzr no longer performs.
 
3404
  (Robert Collins)
 
3405
 
 
3406
* New abstract ``UIFactory`` method ``get_username`` which will be called to 
 
3407
  obtain the username to use when connecting to remote machines. 
 
3408
  (Jelmer Vernooij)
 
3409
 
 
3410
* New API ``Inventory.filter()`` added that filters an inventory by
 
3411
  a set of file-ids so that only those fileids, their parents and
 
3412
  their children are included.  (Ian Clatworthy)
 
3413
 
 
3414
* New sort order for ``get_record_stream`` ``groupcompress`` which
 
3415
  sorts optimally for use with groupcompress compressors. (John Arbash
 
3416
  Meinel, Robert Collins)
 
3417
 
 
3418
* Repository APIs ``get_deltas_for_revisions()`` and
 
3419
  ``get_revision_delta()`` now support an optional ``specific_fileids``
 
3420
  parameter. If provided, the deltas are filtered so that only those
 
3421
  file-ids, their parents and their children are included.
 
3422
  (Ian Clatworthy)
 
3423
 
 
3424
* The ``get_credentials`` and ``set_credentials`` methods of 
 
3425
  ``AuthenticationConfig`` now accept an optional realm argument.
 
3426
  (Jean-Francois Roy)
 
3427
 
 
3428
* The ``pb`` argument to ``fetch()`` is deprecated.
 
3429
  (Martin Pool)
 
3430
 
 
3431
* The ``Serializer`` class and the serializer ``format registry`` have moved
 
3432
  from ``bzrlib.xml_serializer`` to ``bzrlib.serializer``. (Jelmer Vernooij)
 
3433
 
 
3434
* The smart server jail now hooks into BzrDir.open to prevent any BzrDir
 
3435
  that is not inside the backing transport from being opened.  See the
 
3436
  module documentation for ``bzrlib.smart.request`` for details.
 
3437
  (Andrew Bennetts, Robert Collins)
 
3438
 
 
3439
* ``Tree.get_symlink_target`` now always returns a unicode string result
 
3440
  or None. Previously it would return the bytes from reading the link
 
3441
  which could be in any arbitrary encoding. (Robert Collins)
 
3442
 
 
3443
Testing
 
3444
*******
 
3445
 
 
3446
* ``bzrlib.tests.TestCase`` now fails the test if its own ``setUp``
 
3447
  and ``tearDown`` weren't called.  This catches faulty tests that
 
3448
  forget to upcall when overriding ``setUp`` and ``tearDown``.  Those
 
3449
  faulty tests were not properly isolated.
 
3450
  (Andrew Bennetts, Robert Collins)
 
3451
 
 
3452
* Fix test_msgeditor.MsgEditorTest test isolation.
 
3453
  (Vincent Ladeuil, #347130)
 
3454
 
 
3455
* ``medusa`` is not used anymore as an FTP test server starting with
 
3456
  python2.6. A new FTP test server based on ``pyftplib`` can be used
 
3457
  instead. This new server is a soft dependency as medusa which is still
 
3458
  preferred if both are available (modulo python version).
 
3459
  (Vincent Ladeuil)
 
3460
 
 
3461
Internals
 
3462
*********
 
3463
 
 
3464
* Added ``chk_map`` for fast, trie-based storage of tuple to string maps.
 
3465
  (Robert Collins, John Arbash Meinel, Vincent Ladeuil)
 
3466
 
 
3467
* Added ``bzrlib.chk_map`` for fast, trie-based storage of tuple to string
 
3468
  maps.  (Robert Collins, John Arbash Meinel, Vincent Ladeuil)
 
3469
 
 
3470
* Added ``bzrlib.inventory_delta`` module.  This will be used for
 
3471
  serializing and deserializing inventory deltas for more efficient
 
3472
  streaming on the network.  (Robert Collins, Andrew Bennetts)
 
3473
 
 
3474
* ``Branch._get_config`` has been added, which splits out access to the
 
3475
  specific config file from the branch. This is used to let RemoteBranch
 
3476
  avoid constructing real branch objects to access configuration settings.
 
3477
  (Robert Collins, Andrew Bennetts)
 
3478
 
 
3479
* ``Branch`` now implements ``set_stacked_on_url`` in the base class as
 
3480
  the implementation is generic and should impact foreign formats. This
 
3481
  helps performance for ``RemoteBranch`` push operations to new stacked
 
3482
  branches. (Robert Collins, Andrew Bennetts)
 
3483
 
 
3484
* ``BtreeIndex._spill_mem_keys_to_disk()`` now generates disk index with
 
3485
  optmizations turned off. This only has effect when processing > 100,000
 
3486
  keys during something like ``bzr pack``. (John Arbash Meinel)
 
3487
 
 
3488
* ``bzr selftest`` now accepts ``--subunit`` to run in subunit output
 
3489
  mode. Requires ``lp:subunit`` installed to work, but is not a hard
 
3490
  dependency. (Robert Collins)
 
3491
 
 
3492
* ``BzrDir.open_branch`` now takes an optional ``ignore_fallbacks``
 
3493
  parameter for controlling opening of stacked branches.
 
3494
  (Andrew Bennetts, Robert Collins)
 
3495
  
 
3496
* ``CommitBuilder`` has a new method, ``record_iter_changes`` which works
 
3497
  in terms of an iter_changes iterator rather than full tree scanning.
 
3498
  (Robert Collins)
 
3499
 
 
3500
* ``DirState`` can now be passed a custom ``SHA1Provider`` object
 
3501
  enabling it to store the SHA1 and stat of the canonical (post
 
3502
  content filtered) form. (Ian Clatworthy)
 
3503
 
 
3504
* New ``assertLength`` method based on one Martin has squirreled away
 
3505
  somewhere. (Robert Collins, Martin Pool)
 
3506
 
 
3507
* New hook ``BzrDir.pre_open`` which runs before opening ``BzrDir``
 
3508
  objects, allowing better enforcement of the smart server jail when
 
3509
  dealing with stacked branches. (Robert Collins, Andrew Bennetts)
 
3510
 
 
3511
* New hook ``RioVersionInfoBuilder.revision``, allowing extra entries 
 
3512
  to be added to the stanza that is printed for a particular revision.
 
3513
  (Jelmer Vernooij)
 
3514
 
 
3515
* New repository method ``refresh_data`` to cause any repository to
 
3516
  make visible data inserted into the repository by a smart server
 
3517
  fetch operation. (Robert Collins, Andrew Bennetts)
 
3518
 
 
3519
* ``register_filter_stack_map`` now takes an optional fallback parameter,
 
3520
  a callable to invoke if a preference has a value not in the map
 
3521
  of filter stacks. This enhancement allows, for example,  bzr-svn to
 
3522
  handle existing svn properties that define a list of keywords to be
 
3523
  expanded.  (Ian Clatworthy)
 
3524
 
 
3525
* ``RemoteBranchConfig`` will use a new verb ``Branch.set_config_option``
 
3526
  to write config settings to smart servers that support this, saving
 
3527
  5 round trips on the stacked streaming acceptance test.
 
3528
  (Robert Collins, Andrew Bennetts)
 
3529
 
 
3530
* ``RemoteBranch`` now provides ``_get_config`` for access to just the
 
3531
  branch specific configuration from a remote server, which uses the 
 
3532
  already existing ``Branch.get_config_file`` smart verb.
 
3533
  (Robert Collins, Andrew Bennetts)
 
3534
 
 
3535
* ``RemoteRepository`` will now negatively cache missing revisions during
 
3536
  ``get_parent_map`` while read-locked. Write-locks are unaffected.
 
3537
  (Robert Collins, Andrew Bennetts)
 
3538
 
 
3539
* Removed ``InterRemoteToOther``, ``InterOtherToRemote`` and
 
3540
  ``InterPackToRemotePack`` classes, as they are now unnecessary.
 
3541
  (Andrew Bennetts)
 
3542
 
 
3543
* ``RepositoryFormat`` as a new attribute ``fast_deltas`` to indicate
 
3544
  whether the repository can efficiently generate deltas between trees
 
3545
  regardless of tree size. (Robert Collins)
 
3546
 
 
3547
* ``Repository.iter_files_bytes()`` now properly returns an "iterable of
 
3548
  byte strings" (aka 'chunked') for the content. It previously was
 
3549
  returning a plain string, which worked, but performed very poorly when
 
3550
  building a working tree (file.writelines(str) is very inefficient). This
 
3551
  can have a large effect on ``bzr checkout`` times. (John Arbash Meinel)
 
3552
 
 
3553
* selftest now supports a --parallel option, with values of 'fork' or
 
3554
  'subprocess' to run the test suite in parallel. Currently only linux
 
3555
  machine work, other platforms need patches submitted. (Robert Collins,
 
3556
  Vincent Ladeuil)
 
3557
 
 
3558
* ``tests.run_suite`` has a new parameter ``suite_decorators``, a list of 
 
3559
  callables to use to decorate the test suite. Such decorators can add or
 
3560
  remove tests, or even remote the test suite to another machine if
 
3561
  desired. (Robert Collins)
 
3562
 
 
3563
* The smart server verb ``Repository.get_parent_map`` can now include
 
3564
  information about ghosts when the special revision ``include-missing:``
 
3565
  is in the requested parents map list. With this flag, ghosts are
 
3566
  included as ``missing:REVISION_ID``. (Robert Collins, Andrew Bennetts)
 
3567
 
 
3568
* ``_walk_to_common_revisions`` will now batch up at least 50
 
3569
  revisions before calling ``get_parent_map`` on the target,
 
3570
  regardless of ``InterRepository``.
 
3571
  (Andrew Bennetts, Robert Collins)
 
3572
 
 
3573
bzr 1.13
 
3574
########
 
3575
 
 
3576
:Codename: paraskavedekatriaphobia
 
3577
:1.13: 2009-03-14
 
3578
:1.13rc1: 2009-03-10
 
3579
:1.13.1: 2009-03-23
 
3580
:1.13.2: 2009-04-27
 
3581
 
 
3582
GNU Changelog output can now be produced by ``bzr log --gnu-changelog``.  Debug
 
3583
flags can now be set in ``~/.bazaar/bazaar.conf``.  Lightweight checkouts and
 
3584
stacked branches should both be much faster over remote connections.  
 
3585
 
 
3586
Changes From 1.13.1 to 1.13.2
 
3587
*****************************
 
3588
 
 
3589
A regression was found in the 1.13.1 release. When bzr 1.13.1 and earlier push
 
3590
a stacked branch they do not take care to push all the parent inventories for
 
3591
the transferred revisions. This means that a smart server serving that branch
 
3592
often cannot calculate inventory deltas for the branch (because smart server
 
3593
does not/cannot open fallback repositories). Prior to 1.13 the server did not
 
3594
have a verb to stream revisions out of a repository, so that's why this bug has
 
3595
appeared now.
 
3596
 
 
3597
Bug Fixes
 
3598
*********
 
3599
 
 
3600
* Fix for bug 354036 ErrorFromSmartServer - AbsentContentFactory object has no
 
3601
  attribute 'get_bytes_as' exception while pulling from Launchpad 
 
3602
  (Jean-Francois Roy, Andrew Bennetts, Robert Collins)
 
3603
 
 
3604
Changes From 1.13final to 1.13.1
 
3605
********************************
 
3606
 
 
3607
A couple regessions where found in the 1.13 release. The pyrex-generated C
 
3608
extensions are missing from the .tar.gz and .zip files.  Documentation on how
 
3609
to generate GNU ChangeLogs is wrong.
 
3610
 
 
3611
Bug Fixes
 
3612
*********
 
3613
 
 
3614
* Change ``./bzr``'s ``_script_version`` to match ./bzrlib/__init__.py
 
3615
  version_info. (Bob Tanner, Martin Pool, #345232)
 
3616
 
 
3617
* Distribution archives for 1.13 do not contain generated C extension modules
 
3618
  (Jean-Francois Roy, Bob Tanner, #344465)
 
3619
 
 
3620
* GNU ChangeLog output can now be produced by bzr log --format gnu-changelog is
 
3621
  incorrect (Deejay, Bob Tanner, Martin Pool, Robert Collins, #343928)
 
3622
 
 
3623
* ``merge --force`` works again. (Robert Collins, #342105)
 
3624
 
 
3625
Changes From 1.13rc1 to 1.13final
 
3626
*********************************
 
3627
 
 
3628
* Fix "is not a stackable format" error when pushing a
 
3629
  stackable-format branch with an unstackable-format repository to a
 
3630
  destination with a default stacking policy.  (Andrew Bennetts)
 
3631
 
 
3632
* Progress bars now show the rate of network activity for
 
3633
  ``bzr+ssh://`` and ``bzr://`` connections.  (Andrew Bennetts)
 
3634
 
 
3635
Compatibility Breaks
 
3636
********************
 
3637
 
 
3638
* ``bzr log --line`` now indicates which revisions are merges with
 
3639
  `[merge]` after the date.  Scripts which parse the output of this
 
3640
  command may need to be adjusted.
 
3641
  (Neil Martinsen-Burrell)
 
3642
 
 
3643
New Features
 
3644
************
 
3645
 
 
3646
* ``bzr reconfigure`` now supports --with-trees and --with-no-trees
 
3647
  options to change the default tree-creation policy of shared
 
3648
  repositories.  (Matthew Fuller, Marius Kruger, #145033)
 
3649
 
 
3650
* Debug flags can now be set in ``~/.bazaar/bazaar.conf``.
 
3651
  (Martin Pool)
 
3652
 
 
3653
* Filtered views provide a mask over the tree so that users can focus
 
3654
  on a subset of a tree when doing their work. See ``Filtered views``
 
3655
  in chapter 7 of the User Guide and ``bzr help view`` for details.
 
3656
  (Ian Clatworthy)
 
3657
 
 
3658
* GNU Changelog output can now be produced by ``bzr log --gnu-changelog``.
 
3659
  (Andrea Bolognani, Martin Pool)
 
3660
 
 
3661
* The ``-Dmemory`` flag now gives memory information on Windows.
 
3662
  (John Arbash Meinel)
 
3663
 
 
3664
* Multiple authors for a commit can now be recorded by using the "--author"
 
3665
  option multiple times. (James Westby, #185772)
 
3666
 
 
3667
* New clean-tree command, from bzrtools.  (Aaron Bentley, Jelmer Vernooij)
 
3668
 
 
3669
* New command ``bzr launchpad-open`` opens a Launchpad web page for that
 
3670
  branch in your web browser, as long as the branch is on Launchpad at all.
 
3671
  (Jonathan Lange)
 
3672
 
 
3673
* New API for getting bugs fixed by a revision: Revision.iter_bugs().
 
3674
  (Jonathan Lange)
 
3675
 
 
3676
Improvements
 
3677
************
 
3678
 
 
3679
* All bzr ``Hooks`` classes are now registered in
 
3680
  ``bzrlib.hooks.known_hooks``. This removes the separate list from
 
3681
  ``bzrlib.tests`` and ensures that all hooks registered there are
 
3682
  correctly isolated by the test suite (previously
 
3683
  ``MutableTreeHooks`` were not being isolated correctly). Further, 
 
3684
  documentation for hooks is now dynamically generated from the
 
3685
  present HookPoints. ``bzr hooks`` will now also report on all the
 
3686
  hooks present in the ``bzrlib.hooks.known_hooks`` registry.
 
3687
  (Robert Collins)
 
3688
 
 
3689
* ``bzr add`` no longer prints ``add completed`` on success. Failure
 
3690
  still prints an error message. (Robert Collins)
 
3691
 
 
3692
* ``bzr branch`` now has a ``--no-tree`` option which turns off the
 
3693
  generation of a working tree in the new branch.
 
3694
  (Daniel Watkins, John Klinger, #273993)
 
3695
 
 
3696
* Bazaar will now point out ``bzr+ssh://`` to the user when they 
 
3697
  use ssh://. (Jelmer Vernooij, #330535)
 
3698
 
 
3699
* ``bzr -v info`` now omits the number of committers branch statistic,
 
3700
  making it many times faster for large projects. To include that
 
3701
  statistic in the output, use ``bzr -vv info``.
 
3702
  (Ian Clatworthy)
 
3703
 
 
3704
* ``bzr push`` to a ``bzr`` url (``bzr://``, ``bzr+ssh://`` etc) will
 
3705
  stream if the server is version 1.13 or greater, reducing roundtrips
 
3706
  significantly. (Andrew Bennetts, Robert Collins)
 
3707
 
 
3708
* Lightweight Checkouts and Stacked Branches should both be much
 
3709
  faster over remote connections. Building the working tree now
 
3710
  batches up requests into approx 5MB requests, rather than a separate
 
3711
  request for each file. (John Arbash Meinel)
 
3712
 
 
3713
* Support for GSSAPI authentication when using HTTP or HTTPS. 
 
3714
  (Jelmer Vernooij)
 
3715
 
 
3716
* The ``bzr shelve`` prompt now includes a '?' help option to explain the
 
3717
  short options better. (Daniel Watkins, #327429)
 
3718
 
 
3719
* ``bzr lp-open`` now falls back to the push location if it cannot find a
 
3720
  public location. (Jonathan Lange, #332372)
 
3721
 
 
3722
* ``bzr lp-open`` will try to find the Launchpad URL for the location
 
3723
  passed on the command line. This makes ``bzr lp-open lp:foo`` work as
 
3724
  expected. (Jonathan Lange, #332705)
 
3725
 
 
3726
* ``bzr send`` now supports MH-E via ``emacsclient``. (Eric Gillespie)
 
3727
 
 
3728
Bug Fixes
 
3729
*********
 
3730
 
 
3731
* Allows ``bzr log <FILE>`` to be called in an empty branch without
 
3732
  backtracing. (Vincent Ladeuil, #346431)
 
3733
 
 
3734
* Bazaar now gives a better message including the filename if it's
 
3735
  unable to read a file in the working directory, for example because
 
3736
  of a permission error.  (Martin Pool, #338653)
 
3737
 
 
3738
* ``bzr cat -r<old> <path>`` doesn't traceback anymore when <path> has a
 
3739
  file id in the working tree different from the one in revision <old>.
 
3740
  (Vincent Ladeuil, #341517, #253806)
 
3741
 
 
3742
* ``bzr send`` help is more specific about how to apply merge
 
3743
  directives.  (Neil Martinsen-Burrell, #253470)
 
3744
 
 
3745
* ``bzr missing`` now uses ``Repository.get_revision_delta()`` rather
 
3746
  than fetching trees and determining a delta itself. (Jelmer
 
3747
  Vernooij, #315048)
 
3748
 
 
3749
* ``bzr push`` to a smart server no longer causes "Revision
 
3750
  {set([('null:',)])} not present ..." errors when the branch has
 
3751
  multiple root revisions. (Andrew Bennetts, #317654)
 
3752
 
 
3753
* ``bzr shelve`` now properly handle patches with no terminating newline.
 
3754
  (Benoît PIERRE, #303569)
 
3755
 
 
3756
* ``bzr unshelve`` gives a more palatable error if passed a non-integer
 
3757
  shelf id. (Daniel Watkins)
 
3758
 
 
3759
* Export now handles files that are not present in the tree.
 
3760
  (James Westby, #174539)
 
3761
 
 
3762
* Fixed incorrect "Source format does not support stacking" warning
 
3763
  when pushing to a smart server.  (Andrew Bennetts, #334114)
 
3764
  
 
3765
* Fixed "sprout() got an unexpected keyword argument 'source_branch'"
 
3766
  error branching from old repositories.
 
3767
  (Martin Pool, #321695)
 
3768
 
 
3769
* Make ``bzr push --quiet <non-local location>`` less chatty.
 
3770
  (Kent Gibson, #221461)
 
3771
 
 
3772
* Many Branch hooks would not fire with ``bzr://`` and ``bzr+ssh://``
 
3773
  branches, and this was not noticed due to a bug in the test logic
 
3774
  for branches. This is now fixed and a test added to prevent it
 
3775
  reoccuring. (Robert Collins, Andrew Bennetts)
 
3776
 
 
3777
* Restore the progress bar on Windows. We were disabling it when TERM
 
3778
  wasn't set, but Windows doesn't set TERM. (Alexander Belchenko,
 
3779
  #334808)
 
3780
 
 
3781
* ``setup.py build_ext`` now gives a proper error when an extension
 
3782
  fails to build. (John Arbash Meinel)
 
3783
 
 
3784
* Symlinks to non ascii file names are now supported.
 
3785
  (Robert Collins, Vincent Ladeuil, #339055, #272444)    
 
3786
 
 
3787
* Under rare circumstances (aka nobody reported a bug about it), the ftp
 
3788
  transport could revert to ascii mode. It now stays in binary mode except
 
3789
  when needed.  (Vincent Ladeuil)
 
3790
 
 
3791
* Unshelve does not generate warnings about progress bars.
 
3792
  (Aaron Bentley, #328148)
 
3793
 
 
3794
* shelve cleans up properly when unversioned files are specified.
 
3795
  (Benoît Pierre, Aaron Bentley)
 
3796
 
 
3797
Documentation
 
3798
*************
 
3799
 
 
3800
* Added ``Organizing your workspace`` to the User Guide appendices,
 
3801
  summarizing some common ways of organizing trees, branches and
 
3802
  repositories and the processes/workflows implied/enabled by each.
 
3803
  (Ian Clatworthy)
 
3804
 
 
3805
* Hooks can now be self documenting. ``bzrlib.hooks.Hooks.create_hook``
 
3806
  is the entry point for this feature. (Robert Collins)
 
3807
 
 
3808
* The documentation for ``shelve`` and ``unshelve`` has been clarified.
 
3809
  (Daniel Watkins, #327421, #327425)
 
3810
 
 
3811
API Changes
 
3812
***********
 
3813
 
 
3814
* ``bzr selftest`` now fails if the bazaar sources contain trailing
 
3815
  whitespace, non-unix style line endings and files not ending in a
 
3816
  newline. About 372 files and 3243 lines with trailing whitespace was
 
3817
  updated to comply with this. The code already complied with the other
 
3818
  criteria, but now it is enforced. (Marius Kruger)
 
3819
 
 
3820
* ``bzrlib.branch.PushResult`` was renamed to 
 
3821
  ``bzrlib.branch.BranchPushResult``. (Jelmer Vernooij)
 
3822
 
 
3823
* ``Branch.fetch`` and ``Repository.fetch`` now return None rather
 
3824
  than a count of copied revisions and failed revisions. A while back
 
3825
  we stopped ever reporting failed revisions because we started
 
3826
  erroring instead, and the copied revisions count is not used in the
 
3827
  UI at all - indeed it only reflects the repository status not
 
3828
  changes to the branch itself. (Robert Collins)
 
3829
 
 
3830
* ``Inventory.apply_delta`` now raises an AssertionError if a file-id
 
3831
  appears multiple times within the delta. (Ian Clatworthy)
 
3832
 
 
3833
* MutableTree.commit now favours the "authors" argument, with the old
 
3834
  "author" argument being deprecated.
 
3835
 
 
3836
* Remove deprecated EmptyTree.  (Martin Pool)
 
3837
 
 
3838
* ``Repository.fetch`` now accepts an optional ``fetch_spec``
 
3839
  parameter.  A ``SearchResult`` or ``MiniSearchResult`` may be passed
 
3840
  to ``fetch_spec`` instead of a ``last_revision`` to specify exactly
 
3841
  which revisions to fetch. (Andrew Bennetts)
 
3842
 
 
3843
* ``RepositoryAcquisitionPolicy.acquire_repository`` now returns a
 
3844
  tuple of ``(repository, is_new_flag)``, rather than just the
 
3845
  repository.  (Andrew Bennetts)
 
3846
 
 
3847
* Revision.get_apparent_author() is now deprecated, replaced by
 
3848
  Revision.get_apparent_authors(), which returns a list. The former
 
3849
  now returns the first item that would be returned from the second.
 
3850
 
 
3851
* The ``BranchBuilder`` test helper now accepts a ``timestamp``
 
3852
  parameter to ``build_commit`` and ``build_snapshot``.  (Martin Pool)
 
3853
 
 
3854
* The ``_fetch_*`` attributes on ``Repository`` are now on
 
3855
  ``RepositoryFormat``, more accurately reflecting their intent (they
 
3856
  describe a disk format capability, not state of a particular
 
3857
  repository of that format). (Robert Collins)
 
3858
 
 
3859
Internals
 
3860
*********
 
3861
 
 
3862
* Branching from a non-stacked branch on a smart protocol is now
 
3863
  free of virtual file system methods.
 
3864
  (Robert Collins, Andrew Bennetts)
 
3865
 
 
3866
* Branch and Repository creation on a bzr+ssh://server are now done
 
3867
  via RPC calls rather than VFS calls, reducing round trips for
 
3868
  pushing new branches substantially. (Robert Collins)
 
3869
 
 
3870
* ``Branch.clone`` now takes the ``repository_policy`` formerly used
 
3871
  inside ``BzrDir.clone_on_transport``, allowing stacking to be
 
3872
  configured before the branch tags and revision tip are set. This
 
3873
  fixes a race condition cloning stacked branches that would cause
 
3874
  plugins to have hooks called on non-stacked instances.
 
3875
  (Robert Collins, #334187)
 
3876
 
 
3877
* ``BzrDir.cloning_metadir`` now has a RPC call. (Robert Collins)
 
3878
 
 
3879
* ``BzrDirFormat.__str__`` now uses the human readable description
 
3880
  rather than the sometimes-absent disk label. (Robert Collins)
 
3881
 
 
3882
* ``bzrlib.fetch`` is now composed of a sender and a sink component
 
3883
  allowing for decoupling over a network connection. Fetching from
 
3884
  or into a RemoteRepository with a 1.13 server will use this to
 
3885
  stream the operation.
 
3886
  (Andrew Bennetts, Robert Collins)
 
3887
 
 
3888
* ``bzrlib.tests.run_suite`` accepts a runner_class parameter
 
3889
  supporting the use of different runners. (Robert Collins)
 
3890
 
 
3891
* Change how file_ids and revision_ids are interned as part of
 
3892
  inventory deserialization. Now we use the real ``intern()``, rather
 
3893
  than our own workaround that would also cache a Unicode copy of the
 
3894
  string, and never emptied the cache. This should slightly reduce
 
3895
  memory consumption. (John Arbash Meinel)
 
3896
 
 
3897
* New branch method ``create_clone_on_transport`` that returns a
 
3898
  branch object. (Robert Collins)
 
3899
 
 
3900
* New hook Commands['extend_command'] to allow plugins to access a
 
3901
  command object before the command is run (or help generated from
 
3902
  it), without overriding the command. (Robert Collins)
 
3903
 
 
3904
* New version of the ``BzrDir.find_repository`` verb supporting
 
3905
  ``_network_name`` to support removing more _ensure_real calls.
 
3906
  (Robert Collins)
 
3907
 
 
3908
* ``RemoteBranchFormat`` no longer claims to have a disk format string.
 
3909
  (Robert Collins)
 
3910
 
 
3911
* ``Repository`` objects now have ``suspend_write_group`` and
 
3912
  ``resume_write_group`` methods.  These are currently only useful
 
3913
  with pack repositories. (Andrew Bennetts, Robert Collins)
 
3914
 
 
3915
* ``BzrDirFormat``, ``BranchFormat`` and ``RepositoryFormat`` objects
 
3916
  now have a ``network_name`` for passing the format across RPC calls.
 
3917
  (Robert Collins, Andrew Bennetts)
 
3918
 
 
3919
* ``RepositoryFormat`` objects now all have a new attribute
 
3920
  ``_serializer`` used by fetch when reserialising is required.
 
3921
  (Robert Collins, Andrew Bennetts)
 
3922
 
 
3923
* Some methods have been pulled up from ``BzrBranch`` to ``Branch``
 
3924
  to aid branch types that are not bzr branch objects (like
 
3925
  RemoteBranch). (Robert Collins, Andrew Bennetts)
 
3926
 
 
3927
* Test adaptation has been made consistent throughout the built in
 
3928
  tests. ``TestScenarioApplier``, ``multiply_tests_from_modules``,
 
3929
  ``adapt_tests``, ``adapt_modules`` have all been deleted. Please
 
3930
  use ``multiply_tests``, or for lower level needs ``apply_scenarios``
 
3931
  and ``apply_scenario``. (Robert Collins)
 
3932
 
 
3933
* ``TestSkipped`` is now detected by TestCase and passed to the
 
3934
  ``TestResult`` by calling ``addSkip``. For older TestResult objects,
 
3935
  where ``addSkip`` is not available, ``addError`` is still called.
 
3936
  This permits test filtering in subunit to strip out skipped tests
 
3937
  resulting in a faster fix-shrink-list-run cycle. This is compatible
 
3938
  with the testtools protocol for skips. (Robert Collins)
 
3939
 
 
3940
* The ``_index`` of ``KnitVersionedFiles`` now supports the ability
 
3941
  to scan an underlying index that is going to be incorporated into
 
3942
  the ``KnitVersionedFiles`` object, to determine if it has missing
 
3943
  delta references. The method is ``scan_unvalidated_index``.
 
3944
  (Andrew Bennetts, Robert Collins)
 
3945
 
 
3946
* There is a RemoteSink object which handles pushing to smart servers.
 
3947
  (Andrew Bennetts, Robert Collins)
 
3948
 
 
3949
* ``TransportTraceDecorator`` now logs ``put_bytes_non_atomic`` and
 
3950
  ``rmdir`` calls. (Robert Collins)
 
3951
 
 
3952
* ``VersionedFiles`` record adapters have had their signature change
 
3953
  from ``(record, record.get_bytes_as(record.storage_kind))`` to
 
3954
  ``(record)`` reducing excess duplication and allowing adapters
 
3955
  to access private data in record to obtain content more
 
3956
  efficiently. (Robert Collins)
 
3957
 
 
3958
* We no longer probe to see if we should create a working tree during
 
3959
  clone if we cannot get a local_abspath for the new bzrdir.
 
3960
  (Robert Collins)
 
3961
 
 
3962
 
 
3963
bzr 1.12
 
3964
########
 
3965
 
 
3966
:Codename: 1234567890
 
3967
:1.12: 2009-02-13
 
3968
:1.12rc1: 2009-02-10
 
3969
 
 
3970
This release of Bazaar contains many improvements to the speed,
 
3971
documentation and functionality of ``bzr log`` and the display of logged
 
3972
revisions by ``bzr status``.  bzr now also gives a better indication of
 
3973
progress, both in the way operations are drawn onto a text terminal, and
 
3974
by showing the rate of network IO.
 
3975
 
 
3976
Changes from RC1 to Final
 
3977
*************************
 
3978
 
 
3979
* ``bzr init --development-wt5[-rich-root]`` would fail because of
 
3980
  circular import errors. (John Arbash Meinel, #328135)
 
3981
 
 
3982
* Expanded the help for log and added a new help topic called
 
3983
  ``log-formats``.  (Ian Clatworthy)
 
3984
 
 
3985
Compatibility Breaks
 
3986
********************
 
3987
 
 
3988
* By default, ``bzr status`` after a merge now shows just the pending
 
3989
  merge tip revisions. This improves the signal-to-noise ratio after
 
3990
  merging from trunk and completes much faster. To see all merged
 
3991
  revisions, use the new ``-v`` flag.  (Ian Clatworthy)
 
3992
 
 
3993
* ``bzr log --line`` now shows any tags after the date and before
 
3994
  the commit message. If you have scripts which parse the output
 
3995
  from this command, you may need to adjust them accordingly.
 
3996
  (Ian Clatworthy)
 
3997
 
 
3998
* ``bzr log --short`` now shows any additional revision properties
 
3999
  after the date and before the commit message.  Scripts that parse 
 
4000
  output of the log command in this situation may need to adjust.
 
4001
  (Neil Martinsen-Burrell)
 
4002
 
 
4003
* The experimental formats ``1.12-preview`` and ``1.12-preview-rich-root``
 
4004
  have been renamed ``development-wt5`` and ``development-wt5-rich-root``
 
4005
  respectively, given they are not ready for release in 1.12.
 
4006
  (Ian Clatworthy)
 
4007
 
 
4008
* ``read_bundle_from_url`` has been deprecated. (Vincent Ladeuil)
 
4009
 
 
4010
New Features
 
4011
************
 
4012
 
 
4013
* Add support for filtering ``bzr missing`` on revisions.  Remote revisions
 
4014
  can be filtered using ``bzr missing -r -20..-10`` and local revisions can
 
4015
  be filtered using ``bzr missing --my-revision -20..-10``.
 
4016
  (Marius Kruger)
 
4017
 
 
4018
* ``bzr log -p`` displays the patch diff for each revision.
 
4019
  When logging a file, the diff only includes changes to that file.
 
4020
  (Ian Clatworthy, #202331, #227335)
 
4021
 
 
4022
* ``bzr log`` supports a new option called ``-n N`` or ``--level N``.
 
4023
  A value of 0 (zero) means "show all nested merge revisions" while
 
4024
  a value of 1 (one) means "show just the top level". Values above
 
4025
  1 can be used to see a limited amount of nesting. That can be
 
4026
  useful for seeing the level or two below PQM submits for example.
 
4027
  To force the ``--short`` and ``--line`` formats to display all nested
 
4028
  merge revisions just like ``--long`` does by default, use a command
 
4029
  like ``bzr log --short -n0``. To display just the mainline using
 
4030
  ``--long`` format, ``bzr log --long -n1``.
 
4031
  (Ian Clatworthy)
 
4032
 
 
4033
Improvements
 
4034
************
 
4035
 
 
4036
* ``bzr add`` more clearly communicates success vs failure.
 
4037
  (Daniel Watkins)
 
4038
 
 
4039
* ``bzr init`` will now print a little less verbose output.
 
4040
  (Marius Kruger)
 
4041
 
 
4042
* ``bzr log`` is now much faster in many use cases, particularly
 
4043
  at incrementally displaying results and filtering by a
 
4044
  revision range. (Ian Clatworthy)
 
4045
 
 
4046
* ``bzr log --short`` and ``bzr log --line`` now show tags, if any,
 
4047
  for each revision. The tags are shown comma-separated inside
 
4048
  ``{}``. For short format, the tags appear at the end of line
 
4049
  before the optional ``[merge]`` indicator. For line format,
 
4050
  the tags appear after the date. (Ian Clatworthy)
 
4051
 
 
4052
* Progress bars now show the rate of activity for some sftp 
 
4053
  operations, and they are drawn different.  (Martin Pool, #172741)
 
4054
 
 
4055
* Progress bars now show the rate of activity for urllib and pycurl based
 
4056
  http client implementations. The operations are tracked at the socket
 
4057
  level for better precision.
 
4058
  (Vincent Ladeuil)
 
4059
 
 
4060
* Rule-based preferences can now accept multiple patterns for a set of
 
4061
  rules.  (Marius Kruger)
 
4062
 
 
4063
* The ``ancestor:`` revision spec will now default to referring to the
 
4064
  parent of the branch if no other location is given.
 
4065
  (Daniel Watkins, #198417)
 
4066
 
 
4067
* The debugger started as a result of setting ``$BZR_PDB`` works
 
4068
  around a bug in ``pdb``, http://bugs.python.org/issue4150.  The bug
 
4069
  can cause truncated tracebacks in Python versions before 2.6.
 
4070
  (Andrew Bennetts)
 
4071
 
 
4072
* VirtualVersionedFiles now implements
 
4073
  ``iter_lines_added_or_present_in_keys``. This allows the creation of 
 
4074
  new branches based on stacked bzr-svn branches. (#311997)
 
4075
 
 
4076
Bug Fixes
 
4077
*********
 
4078
 
 
4079
* ``bzr annotate --show-ids`` doesn't give a backtrace on empty files
 
4080
  anymore.
 
4081
  (Anne Mohsen, Vincent Ladeuil, #314525)
 
4082
 
 
4083
* ``bzr log FILE`` now correctly shows mainline revisions merging
 
4084
  a change to FILE when the ``--short`` and ``--line`` log formats
 
4085
  are used. (Ian Clatworthy, #317417)
 
4086
 
 
4087
* ``bzr log -rX..Y FILE`` now shows the history of FILE provided
 
4088
  it existed in Y or X, even if the file has since been deleted or
 
4089
  renamed. If no range is given, the current/basis tree and
 
4090
  initial tree are searched in that order. More generally, log
 
4091
  now interprets filenames in their historical context.
 
4092
  (Ian Clatworthy, #175520)
 
4093
 
 
4094
* ``bzr status`` now reports nonexistent files and continues, then
 
4095
  errors (with code 3) at the end.  (Karl Fogel, #306394)
 
4096
 
 
4097
* Don't require the present compression base in knits to be the same
 
4098
  when adding records in knits. (Jelmer Vernooij, #307394)
 
4099
 
 
4100
* Fix a problem with CIFS client/server lag on Windows colliding with
 
4101
  an invariant-per-process algorithm for generating AtomicFile names
 
4102
  (Adrian Wilkins, #304023)
 
4103
 
 
4104
* Many socket operations now handle EINTR by retrying the operation.
 
4105
  Previously EINTR was treated as an unrecoverable failure.  There is
 
4106
  a new ``until_no_eintr`` helper function in ``bzrlib.osutils``.
 
4107
  (Andrew Bennetts)
 
4108
 
 
4109
* Support symlinks with non-ascii characters in the symlink filename.
 
4110
  (Jelmer Vernooij, #319323)
 
4111
 
 
4112
* There was a bug in how we handled resolving when a file is deleted
 
4113
  in one branch, and modified in the other. If there was a criss-cross
 
4114
  merge, we would cause the deletion to conflict a second time.
 
4115
  (Vincent Ladeuil, John Arbash Meinel)
 
4116
 
 
4117
* There was another bug in how we chose the correct intermediate LCA in
 
4118
  criss-cross merges leading to several kind of changes be incorrectly
 
4119
  handled.
 
4120
  (John Arbash Meinel, Vincent Ladeuil)
 
4121
 
 
4122
* Unshelve now handles deleted paths without crashing. (Robert Collins)
 
4123
 
 
4124
Documentation
 
4125
*************
 
4126
 
 
4127
* Improved plugin developer documentation.  (Martin Pool)
 
4128
 
 
4129
API Changes
 
4130
***********
 
4131
 
 
4132
* ``ProgressBarStack`` is deprecated; instead use
 
4133
  ``ui_factory.nested_progress_bar`` to create new progress bars.
 
4134
  (Martin Pool)
 
4135
 
 
4136
* ForeignVcsMapping() now requires a ForeignVcs object as first
 
4137
  argument. (Jelmer Vernooij)
 
4138
 
 
4139
* ForeignVcsMapping.show_foreign_revid() has been moved to
 
4140
  ForeignVcs. (Jelmer Vernooij)
 
4141
 
 
4142
* ``read_bundle_from_url`` is deprecated in favor of
 
4143
  ``read_mergeable_from_url``.  (Vincent Ladeuil)
 
4144
 
 
4145
* Revision specifiers are now registered in
 
4146
  ``bzrlib.revisionspec.revspec_registry``, and the old list of 
 
4147
  revisionspec classes (``bzrlib.revisionspec.SPEC_TYPES``) has been
 
4148
  deprecated. (Jelmer Vernooij, #321183)
 
4149
 
 
4150
* The progress and UI classes have changed; the main APIs remain the
 
4151
  same but code that provides a new UI or progress bar class may
 
4152
  need to be updated.  (Martin Pool)
 
4153
 
 
4154
Internals
 
4155
*********
 
4156
 
 
4157
* Default User Interface (UI) is CLIUIFactory when bzr runs in a dumb
 
4158
  terminal. It is sometimes desirable do override this default by forcing
 
4159
  bzr to use TextUIFactory. This can be achieved by setting the
 
4160
  BZR_USE_TEXT_UI environment variable (emacs shells, as opposed to
 
4161
  compile buffers, are such an example).
 
4162
  (Vincent Ladeuil)
 
4163
 
 
4164
* New API ``Branch.iter_merge_sorted_revisions()`` that iterates over
 
4165
  ``(revision_id, depth, revno, end_of_merge)`` tuples.
 
4166
  (Ian Clatworthy)
 
4167
 
 
4168
* New ``Branch.dotted_revno_to_revision_id()`` and
 
4169
  ``Branch.revision_id_to_dotted_revno()`` APIs that pick the most
 
4170
  efficient way of doing the mapping.
 
4171
  (Ian Clatworthy)
 
4172
 
 
4173
* Refactor cmd_serve so that it's a little easier to build commands that
 
4174
  extend it, and perhaps even a bit easier to read.  (Jonathan Lange)
 
4175
 
 
4176
* ``TreeDelta.show()`` now accepts a ``filter`` parameter allowing log
 
4177
  formatters to retrict the output.
 
4178
  (Vincent Ladeuil)
 
4179
 
 
4180
 
 
4181
bzr 1.11
 
4182
########
 
4183
 
 
4184
:Codename: "Eyes up!"
 
4185
:Released: 2009-01-19
 
4186
 
 
4187
This first monthly release of Bazaar for 2009 improves Bazaar's operation
 
4188
in Windows, Mac OS X, and other situations where file names are matched
 
4189
without regard to capitalization: Bazaar tries to match the case of an
 
4190
existing file.  This release of Bazaar also improves the efficiency of
 
4191
Tortoise Windows Shell integration and lets it work on 64-bit platforms.
 
4192
 
 
4193
The UI through which Bazaar supports historic formats has been improved,
 
4194
so 'bzr help formats' now gives a simpler and shorter list, with clear
 
4195
advice.
 
4196
 
 
4197
This release also fixes a number of bugs, particularly a glitch that can
 
4198
occur when there are concurrent writes to a pack repository.
 
4199
 
 
4200
Bug Fixes
 
4201
*********
 
4202
 
 
4203
* Fix failing test when CompiledChunksToLines is not available.
 
4204
  (Vincent Ladeuil)
 
4205
 
 
4206
* Stacked branches don't repeatedly open their transport connection.
 
4207
  (John Arbash Meinel)
 
4208
 
 
4209
 
 
4210
 
 
4211
bzr 1.11rc1
 
4212
###########
 
4213
 
 
4214
:Codename: "Eyes up!"
 
4215
:Released: 2009-01-09
 
4216
 
 
4217
Changes
 
4218
*******
 
4219
 
 
4220
* Formats using Knit-based repository formats are now explicitly
 
4221
  marked as deprecated. (Ian Clatworthy)
 
4222
 
 
4223
New Features
 
4224
************
 
4225
 
 
4226
* Add support for `bzr tags -r 1..2`, that is we now support showing
 
4227
  tags applicable for a specified revision range. (Marius Kruger)
 
4228
 
 
4229
* ``authentication.conf`` now accepts pluggable read-only credential
 
4230
  stores. Such a plugin (``netrc_credential_store``) is now included,
 
4231
  handles the ``$HOME/.netrc`` file and can server as an example to
 
4232
  implement other plugins.
 
4233
  (Vincent Ladeuil)
 
4234
 
 
4235
* ``shelve --list`` can now be used to list shelved changes.
 
4236
  (Aaron Bentley)
 
4237
 
 
4238
Improvements
 
4239
************
 
4240
 
 
4241
* Add trailing slash to directories in all output of ``bzr ls``, except
 
4242
  ``bzr ls --null``. (Gordon P. Hemsley, #306424)
 
4243
 
 
4244
* ``bzr revision-info`` now supports a -d option to specify an
 
4245
  alternative branch. (Michael Hudson)
 
4246
 
 
4247
* Add connection to a C++ implementation of the Windows Shell Extension
 
4248
  which is able to fully replace the current Python implemented one.
 
4249
  Advantages include 64bit support and reduction in overhead for
 
4250
  processes which drag in shell extensions.
 
4251
  (Mark Hammond)
 
4252
 
 
4253
* Support the Claws mail client directly, rather than via
 
4254
  xdg-email. This prevents the display of an unnecessary modal
 
4255
  dialog in Claws, informing the user that a file has been
 
4256
  attached to the message, and works around bug #291847 in
 
4257
  xdg-utils which corrupts the destination address.
 
4258
 
 
4259
* When working on a case-insensitive case-preserving file-system, as
 
4260
  commonly found with Windows, bzr will often ignore the case of the
 
4261
  arguments specified by the user in preference to the case of an existing
 
4262
  item on the file-system or in the inventory to help prevent
 
4263
  counter-intuitive behaviour on Windows. (Mark Hammond)
 
4264
 
 
4265
Bug Fixes
 
4266
*********
 
4267
  
 
4268
* Allow BzrDir implementation to implement backing up of 
 
4269
  control directory. (#139691)
 
4270
 
 
4271
* ``bzr push`` creating a new stacked branch will now only open a
 
4272
  single connection to the target machine. (John Arbash Meinel)
 
4273
 
 
4274
* Don't call iteritems on transport_list_registry, because it may
 
4275
  change during iteration.  (Martin Pool, #277048)
 
4276
 
 
4277
* Don't make a broken branch when pushing an unstackable-format branch
 
4278
  that's in a stackable shared repository to a location with default
 
4279
  stack-on location.  (Andrew Bennetts, #291046)
 
4280
 
 
4281
* Don't require embedding user in HTTP(S) URLs do use authentication.conf.
 
4282
  (Ben Jansen, Vincent Ladeuil, #300347)
 
4283
 
 
4284
* Fix a problem with CIFS client/server lag on windows colliding with
 
4285
  an invariant-per-process algorithm for generating AtomicFile names
 
4286
  (Adrian Wilkins, #304023)
 
4287
 
 
4288
* Fix bogus setUp signature in UnavailableFTPServer.
 
4289
  (Gary van der Merwe, #313498)
 
4290
 
 
4291
* Fix compilation error in ``_dirstate_helpers_c`` on SunOS/Solaris.
 
4292
  (Jari Aalto)
 
4293
 
 
4294
* Fix SystemError in ``_patiencediff_c`` module by calling
 
4295
  PyErr_NoMemory() before returning NULL in PatienceSequenceMatcher_new.
 
4296
  (Andrew Bennetts, #303206)
 
4297
 
 
4298
* Give proper error message for diff with non-existent dotted revno.
 
4299
  (Marius Kruger, #301969)
 
4300
 
 
4301
* Handle EACCES (permission denied) errors when launching a message
 
4302
  editor, and emit warnings when a configured editor cannot be
 
4303
  started. (Andrew Bennetts)
 
4304
 
 
4305
* ``$HOME/.netrc`` file is now recognized as a read-only credential store
 
4306
  if configured in ``authentication.conf`` with 'password_encoding=netrc'
 
4307
  in the appropriate sections.
 
4308
  (Vincent Ladeuil, #103029)
 
4309
 
 
4310
* Opening a stacked branch now properly shares the connection, rather
 
4311
  than opening a new connection for the stacked-on branch.
 
4312
  (John Arbash meinel)
 
4313
 
 
4314
* Preserve transport decorators while following redirections.
 
4315
  (Vincent Ladeuil, #245964, #270863)
 
4316
 
 
4317
* Provides a finer and more robust filter for accepted redirections.
 
4318
  (Vincent Ladeuil, #303959, #265070)
 
4319
 
 
4320
* ``shelve`` paths are now interpreted relative to the current working
 
4321
  tree.  (Aaron Bentley)
 
4322
 
 
4323
* ``Transport.readv()`` defaults to not reading more than 100MB in a
 
4324
  single array. Further ``RemoteTransport.readv`` sets this to 5MB to
 
4325
  work better with how it splits its requests.
 
4326
  (John Arbash Meinel, #303538)
 
4327
 
 
4328
* Pack repositories are now able to reload the pack listing and retry
 
4329
  the current operation if another action causes the data to be
 
4330
  repacked.  (John Arbash Meinel, #153786)
 
4331
 
 
4332
* ``pull -v`` now respects the log_format configuration variable.
 
4333
  (Aaron Bentley)
 
4334
 
 
4335
* ``push -v`` now works on non-initial pushes.  (Aaron Bentley)
 
4336
 
 
4337
* Use the short status format when the short format is used for log.
 
4338
  (Vincent Ladeuil, #87179)
 
4339
 
 
4340
* Allow files to be renamed or moved via remove + add-by-id. (Charles
 
4341
  Duffy, #314251)
 
4342
 
 
4343
Documentation
 
4344
*************
 
4345
 
 
4346
* Improved the formats help topic to explain why multiple formats
 
4347
  exist and to provide guidelines in selecting one. Introduced
 
4348
  two new supporting help topics: current-formats and other-formats.
 
4349
  (Ian Clatworthy)
 
4350
 
 
4351
API Changes
 
4352
***********
 
4353
 
 
4354
* ``LRUCache(after_cleanup_size)`` was renamed to
 
4355
  ``after_cleanup_count`` and the old name deprecated. The new name is
 
4356
  used for clarity, and to avoid confusion with
 
4357
  ``LRUSizeCache(after_cleanup_size)``. (John Arbash Meinel)
 
4358
 
 
4359
* New ``ForeignRepository`` base class, to help with foreign branch 
 
4360
  support (e.g. svn).  (Jelmer Vernooij)
 
4361
 
 
4362
* ``node_distances`` and ``select_farthest`` can no longer be imported
 
4363
  from ``bzrlib.graph``.  They can still be imported from
 
4364
  ``bzrlib.deprecated_graph``, which has been the preferred way to
 
4365
  import them since before 1.0.  (Andrew Bennetts)
 
4366
  
 
4367
* The logic in commit now delegates inventory basis calculations to
 
4368
  the ``CommitBuilder`` object; this requires that the commit builder
 
4369
  in use has been updated to support the new ``recording_deletes`` and
 
4370
  ``record_delete`` methods. (Robert Collins)
 
4371
 
 
4372
Testing
 
4373
*******
 
4374
 
 
4375
* An HTTPS server is now available (it requires python-2.6). Future bzr
 
4376
  versions will allow the use of the python-2.6 ssl module that can be
 
4377
  installed for 2.5 and 2.4.
 
4378
 
 
4379
* ``bzr selftest`` now fails if new trailing white space is added to
 
4380
  the bazaar sources. It only checks changes not committed yet. This
 
4381
  means that PQM will now reject changes that introduce new trailing
 
4382
  whitespace. (Marius Kruger)
 
4383
 
 
4384
* Introduced new experimental formats called ``1.12-preview`` and
 
4385
  ``1.12-preview-rich-root`` to enable testing of related pending
 
4386
  features, namely content filtering and filtered views.
 
4387
  (Ian Clatworthy)
 
4388
 
 
4389
Internals
 
4390
*********
 
4391
 
 
4392
* Added an ``InventoryEntry`` cache when deserializing inventories.
 
4393
  Can cut the time to iterate over multiple RevisionsTrees in half.
 
4394
  (John Arbash Meinel)
 
4395
 
 
4396
* Added ``bzrlib.fifo_cache.FIFOCache`` which is designed to have
 
4397
  minimal overhead versus using a plain dict for cache hits, at the
 
4398
  cost of not preserving the 'active' set as well as an ``LRUCache``.
 
4399
  (John Arbash Meinel)
 
4400
 
 
4401
* ``bzrlib.patience_diff.unified_diff`` now properly uses a tab
 
4402
  character to separate the filename from the date stamp, and doesn't
 
4403
  add trailing whitespace when a date stamp is not supplied.
 
4404
  (Adeodato Simó, John Arbash Meinel)
 
4405
 
 
4406
* ``DirStateWorkingTree`` and ``DirStateWorkingTreeFormat`` added
 
4407
  as base classes of ``WorkingTree4`` and ``WorkingTreeFormat4``
 
4408
  respectively. (Ian Clatworthy)
 
4409
 
 
4410
* ``KnitVersionedFiles._check_should_delta()`` now uses the
 
4411
  ``get_build_details`` api to avoid multiple hits to the index, and
 
4412
  to properly follow the ``compression_parent`` rather than assuming
 
4413
  it is the left-hand parent. (John Arbash Meinel)
 
4414
 
 
4415
* ``KnitVersionedFiles.get_record_stream()`` will now chose a
 
4416
  more optimal ordering when the keys are requested 'unordered'.
 
4417
  Previously the order was fully random, now the records should be
 
4418
  returned from each pack in turn, in forward I/O order.
 
4419
  (John Arbash Meinel)
 
4420
    
 
4421
* ``mutter()`` will now flush the ``~/.bzr.log`` if it has been more
 
4422
  than 2s since the last time it flushed. (John Arbash Meinel)
 
4423
 
 
4424
* New method ``bzrlib.repository.Repository.add_inventory_by_delta``
 
4425
  allows adding an inventory via an inventory delta, which can be
 
4426
  more efficient for some repository types. (Robert Collins)
 
4427
 
 
4428
* Repository ``CommitBuilder`` objects can now accumulate an inventory
 
4429
  delta. To enable this functionality call ``builder.recording_deletes``
 
4430
  and additionally call ``builder.record_delete`` when a delete
 
4431
  against the basis occurs. (Robert Collins)
 
4432
 
 
4433
* The default http handler has been changed from pycurl to urllib.
 
4434
  The default is still pycurl for https connections. (The only
 
4435
  advantage of pycurl is that it checks ssl certificates.)
 
4436
  (John Arbash Meinel)
 
4437
 
 
4438
* ``VersionedFiles.get_record_stream()`` can now return objects with a
 
4439
  storage_kind of ``chunked``. This is a collection (list/tuple) of
 
4440
  strings. You can use ``osutils.chunks_to_lines()`` to turn them into
 
4441
  guaranteed 'lines' or you can use ``''.join(chunks)`` to turn it
 
4442
  into a fulltext. This allows for some very good memory savings when
 
4443
  asking for many texts that share ancestry, as the individual chunks
 
4444
  can be shared between versions of the file. (John Arbash Meinel)
 
4445
 
 
4446
* ``pull -v`` and ``push -v`` use new function
 
4447
  ``bzrlib.log.show_branch_change`` (Aaron Bentley)
 
4448
 
 
4449
 
 
4450
 
 
4451
bzr 1.10
 
4452
########
 
4453
 
 
4454
:Released: 2008-12-05
 
4455
 
 
4456
Bazaar 1.10 has several performance improvements for copying revisions
 
4457
(especially for small updates to large projects).  There has also been a
 
4458
significant amount of effort in polishing stacked branches.  The commands
 
4459
``shelve`` and ``unshelve`` have become core commands, with an improved
 
4460
implementation.
 
4461
 
 
4462
The only changes versus bzr-1.10rc1 are bugfixes for stacked branches.
 
4463
 
 
4464
bug Fixes
 
4465
*********
 
4466
 
 
4467
* Don't set a pack write cache size from RepoFetcher, because the
 
4468
  cache is not coherent with reads and causes ShortReadvErrors.
 
4469
  This reverses the change that fixed #294479.
 
4470
  (Martin Pool, #303856)
 
4471
 
 
4472
* Properly handle when a revision can be inserted as a delta versus
 
4473
  when it needs to be expanded to a fulltext for stacked branches.
 
4474
  There was a bug involving merge revisions. As a method to help
 
4475
  prevent future difficulties, also make stacked fetches sort
 
4476
  topologically. (John Arbash Meinel, #304841)
 
4477
 
 
4478
 
 
4479
bzr 1.10rc1
 
4480
###########
 
4481
 
 
4482
:Released: 2008-11-28
 
4483
 
 
4484
This release of Bazaar focuses on performance improvements when pushing
 
4485
and pulling revisions, both locally and to remote networks.  The popular
 
4486
``shelve`` and ``unshelve`` commands, used to interactively revert and
 
4487
restore work in progress, have been merged from bzrtools into the bzr
 
4488
core.  There are also bug fixes for portability, and for stacked branches.
 
4489
 
 
4490
New Features
 
4491
************
 
4492
 
 
4493
* New ``commit_message_template`` hook that is called by the commit
 
4494
  code to generate a template commit message. (Jelmer Vernooij)
 
4495
 
 
4496
* New `shelve` and `unshelve` commands allow undoing and redoing changes.
 
4497
  (Aaron Bentley)
 
4498
 
 
4499
Improvements
 
4500
************
 
4501
 
 
4502
* ``(Remote)Branch.copy_content_into`` no longer generates the full revision
 
4503
  history just to set the last revision info.
 
4504
  (Andrew Bennetts, John Arbash Meinel)
 
4505
 
 
4506
* Fetches between formats with different serializers (such as
 
4507
  pack-0.92-subtree and 1.9-rich-root) are faster now.  This is due to
 
4508
  operating on batches of 100 revisions at time rather than
 
4509
  one-by-one.  (Andrew Bennetts, John Arbash Meinel)
 
4510
 
 
4511
* Search index files corresponding to pack files we've already used
 
4512
  before searching others, because they are more likely to have the
 
4513
  keys we're looking for.  This reduces the number of iix and tix
 
4514
  files accessed when pushing 1 new revision, for instance.
 
4515
  (John Arbash Meinel)
 
4516
 
 
4517
* Signatures to transfer are calculated more efficiently in
 
4518
  ``item_keys_introduced_by``.  (Andrew Bennetts, John Arbash Meinel)
 
4519
 
 
4520
* The generic fetch code can once again copy revisions and signatures
 
4521
  without extracting them completely to fulltexts and then serializing
 
4522
  them back down into byte strings. This is a significant performance
 
4523
  improvement when fetching from a stacked branch.
 
4524
  (John Arbash Meinel, #300289)
 
4525
 
 
4526
* When making a large readv() request over ``bzr+ssh``, break up the
 
4527
  request into more manageable chunks. Because the RPC is not yet able
 
4528
  to stream, this helps keep us from buffering too much information at
 
4529
  once. (John Arbash Meinel)
 
4530
 
 
4531
Bug Fixes
 
4532
*********
 
4533
 
 
4534
* Better message when the user needs to set their Launchpad ID.
 
4535
  (Martin Pool, #289148)
 
4536
 
 
4537
* ``bzr commit --local`` doesn't access the master branch anymore.
 
4538
  This fixes a regression introduced in 1.9.  (Marius Kruger, #299313)
 
4539
 
 
4540
* Don't call the system ``chdir()`` with an empty path. Sun OS seems
 
4541
  to give an error in that case.  Also, don't count on ``getcwd()``
 
4542
  being able to allocate a new buffer, which is a gnu extension.
 
4543
  (John Arbash Meinel, Martin Pool, Harry Hirsch, #297831)
 
4544
 
 
4545
* Don't crash when requesting log --forward <file> for a revision range
 
4546
  starting with a dotted revno.
 
4547
  (Vincent Ladeuil, #300055)
 
4548
 
 
4549
* Don't create text deltas spanning stacked repositories; this could
 
4550
  cause "Revision X not present in Y" when later accessing them.
 
4551
  (Martin Pool, #288751)
 
4552
 
 
4553
* Pack repositories are now able to reload the pack listing and retry
 
4554
  the current operation if another action causes the data to be
 
4555
  repacked.  (John Arbash Meinel, #153786)
 
4556
 
 
4557
* PermissionDenied errors from smart servers no longer cause
 
4558
  "PermissionDenied: "None"" on the client.
 
4559
  (Andrew Bennetts, #299254)
 
4560
 
 
4561
* Pushing to a stacked pack repository now batches writes, the same
 
4562
  way writes are batched to ordinary pack repository.  This makes
 
4563
  pushing to a stacked branch over the network much faster.
 
4564
  (Andrew Bennetts, #294479)
 
4565
 
 
4566
* TooManyConcurrentRequests no longer occur when a fetch fails and
 
4567
  tries to abort a write group.  This allows the root cause (e.g. a
 
4568
  network interruption) to be reported.  (Andrew Bennetts, #297014)
 
4569
 
 
4570
* RemoteRepository.get_parent_map now uses fallback repositories.
 
4571
  (Aaron Bentley, #297991?, #293679?)
 
4572
 
 
4573
API Changes
 
4574
***********
 
4575
 
 
4576
* ``CommitBuilder`` now validates the strings it will be committing,
 
4577
  to ensure that they do not have characters that will not be properly
 
4578
  round-tripped. For now, it just checks for characters that are
 
4579
  invalid in the XML form. (John Arbash Meinel, #295161)
 
4580
 
 
4581
* Constructor parameters for NewPack (internal to pack repositories)
 
4582
  have changed incompatibly.
 
4583
 
 
4584
* ``Repository.abort_write_group`` now accepts an optional
 
4585
  ``suppress_errors`` flag.  Repository implementations that override
 
4586
  ``abort_write_group`` will need to be updated to accept the new
 
4587
  argument.  Subclasses that only override ``_abort_write_group``
 
4588
  don't need to change.
 
4589
 
 
4590
* Transport implementations must provide copy_tree_to_transport.  A default
 
4591
  implementation is provided for Transport subclasses.
 
4592
 
 
4593
Testing
 
4594
*******
 
4595
 
 
4596
* ``bzr selftest`` now fails if no doctests are found in a module
 
4597
  that's expected to have them.  (Martin Pool)
 
4598
 
 
4599
* Doctests now only report the first failure.  (Martin Pool)
 
4600
 
 
4601
 
 
4602
bzr 1.9
 
4603
#######
 
4604
 
 
4605
:Released: 2008-11-07
 
4606
 
 
4607
This release of Bazaar adds a new repository format, ``1.9``, with smaller
 
4608
and more efficient index files.  This format can be specified when
 
4609
creating a new repository, or used to losslessly upgrade an existing
 
4610
repository.  bzr 1.9 also speeds most operations over the smart server
 
4611
protocol, makes annotate faster, and uses less memory when making
 
4612
checkouts or pulling large amounts of data.
 
4613
 
 
4614
Bug Fixes
 
4615
*********
 
4616
 
 
4617
* Fix "invalid property value 'branch-nick' for None" regression with
 
4618
  branches bound to svn branches.  (Martin Pool, #293440)
 
4619
 
 
4620
* Fix SSL/https on Python2.6.  (Vincent Ladeuil, #293054)
 
4621
 
 
4622
* ``SFTPTransport.readv()`` had a bug when requests were out-of-order.
 
4623
  This only triggers some-of-the-time on Knit format repositories.
 
4624
  (John Arbash Meinel, #293746)
 
4625
 
 
4626
 
 
4627
bzr 1.9rc1
 
4628
##########
 
4629
 
 
4630
:Released: 2008-10-31
 
4631
 
 
4632
New Features
 
4633
************
 
4634
 
 
4635
* New Branch hook ``transform_fallback_location`` allows a function to
 
4636
  be called when looking up the stacked source. (Michael Hudson)
 
4637
 
 
4638
* New repository formats ``1.9`` and ``1.9-rich-root``. These have all
 
4639
  the functionality of ``1.6``, but use the new btree indexes.
 
4640
  These indexes are both smaller and faster for access to historical
 
4641
  information.  (John Arbash Meinel)
 
4642
 
 
4643
Improvements
 
4644
************
 
4645
 
 
4646
* ``BTreeIndex`` code now is able to prefetch extra pages to help tune
 
4647
  the tradeoff between bandwidth and latency. Should be tuned
 
4648
  appropriately to not impact commands which need minimal information,
 
4649
  but provide a significant boost to ones that need more context. Only
 
4650
  has a direct impact on the ``--development2`` format which uses
 
4651
  btree's for the indexes. (John Arbash Meinel)
 
4652
 
 
4653
* ``bzr dump-btree`` is a hidden command introduced to allow dumping
 
4654
  the contents of a compressed btree file.  (John Arbash Meinel)
 
4655
 
 
4656
* ``bzr pack`` now tells the index builders to optimize for size. For
 
4657
  btree index repositories, this can save 25% of the index size
 
4658
  (mostly in the text indexes). (John Arbash Meinel)
 
4659
 
 
4660
* ``bzr push`` to an existing branch or repository on a smart server
 
4661
  is faster, due to Bazaar making more use of the ``get_parent_map``
 
4662
  RPC when querying the remote branch's revision graph.
 
4663
  (Andrew Bennetts)
 
4664
 
 
4665
* default username for bzr+ssh and sftp can be configured in
 
4666
  authentication.conf. (Aaron Bentley)
 
4667
 
 
4668
* launchpad-login now provides a default username for bzr+ssh and sftp
 
4669
  URLs, allowing username-free URLs to work for everyone. (Aaron Bentley)
 
4670
 
 
4671
* ``lp:`` lookups no longer include usernames, making them shareable and
 
4672
  shorter. (Aaron Bentley)
 
4673
 
 
4674
* New ``PackRepository.autopack`` smart server RPC, which does
 
4675
  autopacking entirely on the server.  This is much faster than
 
4676
  autopacking via plain file methods, which downloads a large amount
 
4677
  of pack data and then re-uploads the same pack data into a single
 
4678
  file.  This fixes a major (although infrequent) cause of lengthy
 
4679
  delays when using a smart server.  For example, pushing the 10th
 
4680
  revision to a repository with 9 packs now takes 44 RPCs rather than
 
4681
  179, and much less bandwidth too.  This requires Bazaar 1.9 on both
 
4682
  the client and the server, otherwise the client will fallback to the
 
4683
  slower method.  (Andrew Bennetts)
 
4684
 
 
4685
Bug Fixes
 
4686
*********
 
4687
 
 
4688
* A failure to load a plugin due to an IncompatibleAPI exception is
 
4689
  now correctly reported. (Robert Collins, #279451)
 
4690
 
 
4691
* API versioning support now has a multiple-version checking api
 
4692
  ``require_any_api``. (Robert Collins, #279447)
 
4693
 
 
4694
* ``bzr branch --stacked`` from a smart server to a standalone branch
 
4695
  works again.  This fixes a regression in 1.7 and 1.8.
 
4696
  (Andrew Bennetts, #270397)
 
4697
 
 
4698
* ``bzr co`` uses less memory. It used to unpack the entire WT into
 
4699
  memory before writing it to disk. This was a little bit faster, but
 
4700
  consumed lots of memory. (John Arbash Meinel, #269456)
 
4701
 
 
4702
* ``bzr missing --quiet`` no longer prints messages about whether
 
4703
  there are missing revisions.  The exit code indicates whether there
 
4704
  were or not.  (Martin Pool, #284748)
 
4705
 
 
4706
* Fixes to the ``annotate`` code. The fast-path which re-used the
 
4707
  stored deltas was accidentally disabled all the time, instead of
 
4708
  only when a branch was stacked. Second, the code would accidentally
 
4709
  re-use a delta even if it wasn't against the left-parent, this
 
4710
  could only happen if ``bzr reconcile`` decided that the parent
 
4711
  ordering was incorrect in the file graph.  (John Arbash Meinel)
 
4712
 
 
4713
* "Permission denied" errors that occur when pushing a new branch to a
 
4714
  smart server no longer cause tracebacks.  (Andrew Bennetts, #278673)
 
4715
 
 
4716
* Some compatibility fixes for building the extensions with MSVC and
 
4717
  for python2.4. (John Arbash Meinel, #277484)
 
4718
 
 
4719
* The index logic is now able to reload the list of pack files if and
 
4720
  index ends up disappearing. We still don't reload if the pack data
 
4721
  itself goes missing after checking the index. This bug appears as a
 
4722
  transient failure (file not found) when another process is writing
 
4723
  to the repository.  (John Arbash Meinel, #153786)
 
4724
 
 
4725
* ``bzr switch`` and ``bzr bind`` will now update the branch nickname if
 
4726
  it was previously set. All checkouts will now refer to the bound branch
 
4727
  for a nickname if one was not explicitly set.
 
4728
  (Marius Kruger, #230903)
 
4729
 
 
4730
Documentation
 
4731
*************
 
4732
 
 
4733
* Improved hook documentation. (Michael Ernst)
 
4734
 
 
4735
API Changes
 
4736
***********
 
4737
 
 
4738
* commands.plugins_cmds is now a CommandRegistry, not a dict.
 
4739
 
 
4740
Internals
 
4741
*********
 
4742
 
 
4743
* New AuthenticationConfig.set_credentials method allows easy programmatic
 
4744
  configuration of authetication credentials.
 
4745
 
 
4746
 
 
4747
bzr 1.8
 
4748
#######
 
4749
 
 
4750
:Released: 2008-10-16
 
4751
 
 
4752
Bazaar 1.8 includes several fixes that improve working tree performance,
 
4753
display of revision logs, and merges.  The bzr testsuite now passes on OS
 
4754
X and Python 2.6, and almost completely passes on Windows.  The
 
4755
smartserver code has gained several bug fixes and performance
 
4756
improvements, and can now run server-side hooks within an http server.
 
4757
 
 
4758
Bug Fixes
 
4759
*********
 
4760
 
 
4761
* Fix "Must end write group" error when another error occurs during
 
4762
  ``bzr push``.  (Andrew Bennetts, #230902)
 
4763
 
 
4764
Portability
 
4765
***********
 
4766
 
 
4767
* Some Pyrex versions require the WIN32 macro defined to compile on
 
4768
  that platform.  (Alexander Belchenko, Martin Pool, #277481)
 
4769
 
 
4770
 
 
4771
bzr 1.8rc1
 
4772
##########
 
4773
 
 
4774
:Released: 2008-10-07
 
4775
 
 
4776
Changes
 
4777
*******
 
4778
 
 
4779
* ``bzr log file`` has been changed. It now uses a different method
 
4780
  for determining which revisions to show as merging the changes to
 
4781
  the file. It now only shows revisions which merged the change
 
4782
  towards your mainline. This simplifies the output, makes it faster,
 
4783
  and reduces memory consumption.  (John Arbash Meinel)
 
4784
 
 
4785
* ``bzr merge`` now defaults to having ``--reprocess`` set, whenever
 
4786
  ``--show-base`` is not supplied.  (John Arbash Meinel)
 
4787
 
 
4788
* ``bzr+http//`` will now optionally load plugins and write logs on the
 
4789
  server. (Marius Kruger)
 
4790
 
 
4791
* ``bzrlib._dirstate_helpers_c.pyx`` does not compile correctly with
 
4792
  Pyrex 0.9.4.1 (it generates C code which causes segfaults). We
 
4793
  explicitly blacklist that version of the compiler for that
 
4794
  extension. Packaged versions will include .c files created with
 
4795
  pyrex >= 0.9.6 so it doesn't effect releases, only users running
 
4796
  from the source tree. (John Arbash Meinel, #276868)
 
4797
 
 
4798
Features
 
4799
********
 
4800
 
 
4801
* bzr is now compatible with python-2.6. python-2.6 is not yet officially
 
4802
  supported (nor released, tests were conducted with the dev version of
 
4803
  python-2.6rc2), but all known problems have been fixed.  Feedback
 
4804
  welcome.
 
4805
  (Vincent Ladeuil, #269535)
 
4806
 
 
4807
Improvements
 
4808
************
 
4809
 
 
4810
* ``bzr annotate`` will now include uncommitted changes from the local
 
4811
  working tree by default. Such uncommitted changes are given the
 
4812
  revision number they would get if a commit was done, followed with a
 
4813
  ? to indicate that its not actually known. (Robert Collins, #3439)
 
4814
 
 
4815
* ``bzr branch`` now accepts a ``--standalone`` option, which creates a
 
4816
  standalone branch regardless of the presence of shared repositories.
 
4817
  (Daniel Watkins)
 
4818
 
 
4819
* ``bzr push`` is faster in the case there are no new revisions to
 
4820
  push.  It is also faster if there are no tags in the local branch.
 
4821
  (Andrew Bennetts)
 
4822
 
 
4823
* File changes during a commit will update the tree stat cache.
 
4824
  (Robert Collins)
 
4825
 
 
4826
* Location aliases can now accept a trailing path.  (Micheal Hudson)
 
4827
 
 
4828
* New hooks ``Lock.hooks`` when LockDirs are acquired and released.
 
4829
  (Robert Collins, MartinPool)
 
4830
 
 
4831
* Switching in heavyweight checkouts uses the master branch's context, not
 
4832
  the checkout's context.  (Adrian Wilkins)
 
4833
 
 
4834
* ``status`` on large trees is now faster, due to optimisations in the
 
4835
  walkdirs code. Of particular note, the walkdirs code now performs
 
4836
  a temporary ``chdir()`` while reading a single directory; if your
 
4837
  platform has non thread-local current working directories (and is
 
4838
  not windows which has its own implementation), this may introduce a
 
4839
  race condition during concurrent uses of bzrlib. The bzrlib CLI
 
4840
  will not encounter this as it is single threaded for working tree
 
4841
  operations. (Robert Collins)
 
4842
 
 
4843
* The C extensions now build on python 2.4 (Robert Collins, #271939)
 
4844
 
 
4845
* The ``-Dhpss`` debug flag now reports the number of smart server
 
4846
  calls per medium to stderr.  This is in addition to the existing
 
4847
  detailed logging to the .bzr.log trace file.  (Andrew Bennetts)
 
4848
 
 
4849
Bug Fixes
 
4850
*********
 
4851
 
 
4852
* Avoid random failures arising from misinterpreted ``errno`` values
 
4853
  in ``_readdir_pyx.read_dir``.
 
4854
  (Martin Pool, #279381)
 
4855
 
 
4856
* Branching from a shared repository on a smart server into a new
 
4857
  repository now preserves the repository format.
 
4858
  (Andrew Bennetts, #269214)
 
4859
 
 
4860
* ``bzr log`` now accepts a ``--change`` option.
 
4861
  (Vincent Ladeuil, #248427)
 
4862
 
 
4863
* ``bzr missing`` now accepts an ``--include-merges`` option.
 
4864
  (Vincent Ladeuil, #233817)
 
4865
 
 
4866
* Don't try to filter (internally) '.bzr' from the files to be deleted if
 
4867
  it's not there.
 
4868
  (Vincent Ladeuil, #272648)
 
4869
 
 
4870
* Fix '_in_buffer' AttributeError when using the -Dhpss debug flag.
 
4871
  (Andrew Bennetts)
 
4872
 
 
4873
* Fix TooManyConcurrentRequests errors caused by a connection failure
 
4874
  when doing ``bzr pull`` or ``bzr merge`` from a ``bzr+ssh`` URL.
 
4875
  (Andrew Bennetts, #246233)
 
4876
 
 
4877
* Fixed ``bzr st -r branch:PATH_TO_BRANCH`` where the other branch
 
4878
  is in a different repository than the current one.
 
4879
  (Lukáš Lalinský, #144421)
 
4880
 
 
4881
* Make the first line of the manpage preamble a comment again.
 
4882
  (David Futcher, #242106)
 
4883
 
 
4884
* Remove use of optional parameter in GSSAPI FTP support, since
 
4885
  it breaks newer versions of Python-Kerberos. (Jelmer Vernooij)
 
4886
 
 
4887
* The autopacking logic will now always create a single new pack from
 
4888
  all of the content which it deems is worth moving. This avoids the
 
4889
  'repack a single pack' bug and should result in better packing
 
4890
  overall.  (John Arbash Meinel, #242510, #172644)
 
4891
 
 
4892
* Trivial documentation fix.
 
4893
  (John Arbash Meinel, #270471)
 
4894
 
 
4895
* ``bzr switch`` and ``bzr bind`` will now update the branch nickname if
 
4896
  it was previously set. All checkouts will now refer to the bound branch
 
4897
  for a nickname if one was not explicitly set.
 
4898
  (Marius Kruger, #230903)
 
4899
 
 
4900
Documentation
 
4901
*************
 
4902
 
 
4903
* Explain revision/range identifiers. (Daniel Clemente)
 
4904
 
 
4905
API Changes
 
4906
***********
 
4907
 
 
4908
* ``CommitBuilder.record_entry_contents`` returns one more element in
 
4909
  its result tuple - an optional file system hash for the hash cache
 
4910
  to use. (Robert Collins)
 
4911
 
 
4912
* ``dirstate.DirState.update_entry`` will now only calculate the sha1
 
4913
  of a file if it is likely to be needed in determining the output
 
4914
  of iter_changes. (Robert Collins)
 
4915
 
 
4916
* The PackRepository, RepositoryPackCollection, NewPack classes have a
 
4917
  slightly changed interface to support different index types; as a
 
4918
  result other users of these classes need to supply the index types
 
4919
  they want. (Robert Collins)
 
4920
 
 
4921
Testing
 
4922
*******
 
4923
 
 
4924
* ``bzrlib.tests.repository_implementations`` has been renamed to
 
4925
  ``bzrlib.tests.per_repository`` so that we have a common structure
 
4926
  (and it is shorter). (John Arbash Meinel, #239343)
 
4927
 
 
4928
* ``LocalTransport.abspath()`` now returns a drive letter if the
 
4929
  transport has one, fixing numerous tests on Windows.
 
4930
  (Mark Hammond)
 
4931
 
 
4932
* PreviewTree is now tested via intertree_implementations.
 
4933
  (Aaron Bentley)
 
4934
 
 
4935
* The full test suite is passing again on OSX.
 
4936
  (Guillermo Gonzalez, Vincent Ladeuil)
 
4937
 
 
4938
* The full test suite passes when run with ``-Eallow_debug``.
 
4939
  (Andrew Bennetts)
 
4940
 
 
4941
Internals
 
4942
*********
 
4943
 
 
4944
* A new hook, ``Branch.open``, has been added, which is called when
 
4945
  branch objects are opened. (Robert Collins)
 
4946
 
 
4947
* ``bzrlib.osutils._walkdirs_utf8`` has been refactored into common
 
4948
  tree walking, and modular directory listing code to aid future
 
4949
  performance optimisations and refactoring. (Robert Collins)
 
4950
 
 
4951
* ``bzrlib.trace.debug_memory`` can be used to get a quick memory dump
 
4952
  in the middle of processing. It only reports memory if
 
4953
  ``/proc/PID/status`` is available. (John Arbash Meinel)
 
4954
 
 
4955
* New method ``RevisionSpec.as_tree`` for representing the revision
 
4956
  specifier as a revision tree object. (Lukáš Lalinský)
 
4957
 
 
4958
* New race-free method on MutableTree ``get_file_with_stat`` for use
 
4959
  when generating stat cache results. (Robert Collins)
 
4960
 
 
4961
* New win32utils.get_local_appdata_location() provides access to a local
 
4962
  directory for storing data.  (Mark Hammond)
 
4963
 
 
4964
* To be compatible with python-2.6 a few new rules should be
 
4965
  observed. 'message' attribute can't be used anymore in exception
 
4966
  classes, 'sha' and 'md5' modules have been deprecated (use
 
4967
  osutils.[md5|sha]), object__init__ and object.__new__ don't accept
 
4968
  parameters anymore.
 
4969
  (Vincent Ladeuil)
 
4970
 
 
4971
 
 
4972
bzr 1.7.1
 
4973
#########
 
4974
 
 
4975
:Released:  2008-10-01
 
4976
 
 
4977
No changes from 1.7.1rc1.
 
4978
 
 
4979
 
 
4980
bzr 1.7.1rc1
 
4981
############
 
4982
 
 
4983
:Released: 2008-09-24
170
4984
 
171
4985
This release just includes an update to how the merge algorithm handles
172
4986
file paths when we encounter complex history.
173
4987
 
174
 
  FEATURES:
175
 
 
176
 
    * If we encounter a criss-cross in history, use information from
177
 
      direct Least Common Ancestors to resolve inventory shape (locations
178
 
      of files, adds, deletes, etc). This is similar in concept to using
179
 
      ``--lca`` for merging file texts, only applied to paths.
180
 
      (John Arbash Meinel)
181
 
 
182
 
 
183
 
bzr 1.7 2008-09-23
184
 
------------------
 
4988
Features
 
4989
********
 
4990
 
 
4991
* If we encounter a criss-cross in history, use information from
 
4992
  direct Least Common Ancestors to resolve inventory shape (locations
 
4993
  of files, adds, deletes, etc). This is similar in concept to using
 
4994
  ``--lca`` for merging file texts, only applied to paths.
 
4995
  (John Arbash Meinel)
 
4996
 
 
4997
 
 
4998
bzr 1.7
 
4999
#######
 
5000
 
 
5001
:Released: 2008-09-23
185
5002
 
186
5003
This release includes many bug fixes and a few performance and feature
187
5004
improvements.  ``bzr rm`` will now scan for missing files and remove them,
190
5007
been brought in, with an eye on using it in a future repository format.
191
5008
There are only minor installer changes since bzr-1.7rc2.
192
5009
 
193
 
  FEATURES
194
 
 
195
 
    * Some small updates to the win32 installer. Include localization
196
 
      files found in plugins, and include the builtin distutils as part of
197
 
      packaging qbzr. (Mark Hammond)
198
 
 
199
 
 
200
 
bzr 1.7rc2 2008-09-17
201
 
---------------------
 
5010
Features
 
5011
********
 
5012
 
 
5013
* Some small updates to the win32 installer. Include localization
 
5014
  files found in plugins, and include the builtin distutils as part of
 
5015
  packaging qbzr. (Mark Hammond)
 
5016
 
 
5017
 
 
5018
bzr 1.7rc2
 
5019
##########
 
5020
 
 
5021
:Released: 2008-09-17
202
5022
 
203
5023
A few bug fixes from 1.7rc1. The biggest change is a new
204
5024
``RemoteBranch.get_stacked_on_url`` rpc. This allows clients that are
205
5025
trying to access a Stacked branch over the smart protocol, to properly
206
5026
connect to the stacked-on location.
207
5027
 
208
 
  BUG FIXES:
209
 
 
210
 
    * Branching from a shared repository on a smart server into a new
211
 
      repository now preserves the repository format.
212
 
      (Andrew Bennetts, #269214)
213
 
 
214
 
   * Branching from a stacked branch via ``bzr+ssh`` can properly connect
215
 
     to the stacked-on branch.  (Martin Pool, #261315)
216
 
 
217
 
    * ``bzr init`` no longer re-opens the BzrDir multiple times.
218
 
      (Vincent Ladeuil)
219
 
 
220
 
    * Fix '_in_buffer' AttributeError when using the -Dhpss debug flag.
221
 
      (Andrew Bennetts)
222
 
 
223
 
 
224
 
bzr 1.7rc1 2008-09-09
225
 
---------------------
 
5028
Bug Fixes
 
5029
*********
 
5030
 
 
5031
* Branching from a shared repository on a smart server into a new
 
5032
  repository now preserves the repository format.
 
5033
  (Andrew Bennetts, #269214)
 
5034
 
 
5035
* Branching from a stacked branch via ``bzr+ssh`` can properly connect
 
5036
  to the stacked-on branch.  (Martin Pool, #261315)
 
5037
 
 
5038
* ``bzr init`` no longer re-opens the BzrDir multiple times.
 
5039
  (Vincent Ladeuil)
 
5040
 
 
5041
* Fix '_in_buffer' AttributeError when using the -Dhpss debug flag.
 
5042
  (Andrew Bennetts)
 
5043
 
 
5044
 
 
5045
bzr 1.7rc1
 
5046
##########
 
5047
 
 
5048
:Released: 2008-09-09
226
5049
 
227
5050
This release candidate for bzr 1.7 has several bug fixes and a few
228
5051
performance and feature improvements.  ``bzr rm`` will now scan for
232
5055
it in a future repository format.
233
5056
 
234
5057
 
235
 
  CHANGES:
236
 
 
237
 
    * ``bzr export`` can now export a subdirectory of a project.
238
 
      (Robert Collins)
239
 
 
240
 
    * ``bzr remove-tree`` will now refuse to remove a tree with uncommitted
241
 
      changes, unless the ``--force`` option is specified.
242
 
      (Lukáš Lalinský, #74101)
243
 
 
244
 
    * ``bzr rm`` will now scan for files that are missing and remove just
245
 
      them automatically, much as ``bzr add`` scans for new files that
246
 
      are not ignored and adds them automatically. (Robert Collins)
247
 
 
248
 
  FEATURES
249
 
 
250
 
    * Support for GSSAPI authentication when using FTP as documented in 
251
 
      RFC2228. (Jelmer Vernooij, #49623)
252
 
 
253
 
    * Add support for IPv6 in the smart server. (Jelmer Vernooij, #165014)
254
 
 
255
 
  IMPROVEMENTS:
256
 
 
257
 
    * A url like ``log+file:///tmp`` will log all access to that Transport 
258
 
      to ``.bzr.log``, which may help in debugging or profiling.
259
 
      (Martin Pool)
260
 
 
261
 
    * ``bzr branch`` and ``bzr push`` use the default stacking policy if the
262
 
      branch format supports it. (Aaron Bentley)
263
 
 
264
 
    * ``bzr init`` and ``bzr init-repo`` will now print out the same as
265
 
      ``bzr info`` if it completed successfully.
266
 
      (Marius Kruger)
267
 
 
268
 
    * ``bzr uncommit`` logs the old tip revision id, and displays how to
269
 
      restore the branch to that tip using ``bzr pull``.  This allows you
270
 
      to recover if you realize you uncommitted the wrong thing.
271
 
      (John Arbash Meinel)
272
 
 
273
 
    * Fix problems in accessing stacked repositories over ``bzr://``.
274
 
      (Martin Pool, #261315)
275
 
 
276
 
    * ``SFTPTransport.readv()`` was accidentally using ``list += string``,
277
 
      which 'works', but adds each character separately to the list,
278
 
      rather than using ``list.append(string)``. Fixing this makes the
279
 
      SFTP transport a little bit faster (~20%) and use a bit less memory.
280
 
      (John Arbash Meinel)
281
 
 
282
 
    * When reading index files, if we happen to read the whole file in a
283
 
      single request treat it as a ``_buffer_all`` request. This happens
284
 
      most often on small indexes over remote transports, where we default
285
 
      to reading 64kB. It saves a round trip for each small index during
286
 
      fetch operations. Also, if we have read more than 50% of an index
287
 
      file, trigger a ``_buffer_all`` on the next request. This works
288
 
      around some inefficiencies because reads don't fall neatly on page
289
 
      boundaries, so we would ignore those bytes, but request them again
290
 
      later. This could trigger a total read size of more than the whole
291
 
      file. (John Arbash Meinel)
292
 
 
293
 
  BUG FIXES:
294
 
 
295
 
    * ``bzr rm`` is now aliased to ``bzr del`` for the convenience of svn
296
 
      users. (Robert Collins, #205416)
297
 
 
298
 
    * Catch the infamous "select/poll returned error" which occurs when
299
 
      pycurl try to send a body request to an HTTP/1.0 server which has
300
 
      already refused to handle the request. (Vincent Ladeuil, #225020)
301
 
 
302
 
    * Fix ``ObjectNotLocked`` errors when using various commands
303
 
      (including ``bzr cat`` and ``bzr annotate``) in combination with a
304
 
      smart server URL.  (Andrew Bennetts, #237067)
305
 
 
306
 
    * ``FTPTransport.stat()`` would return ``0000`` as the permission bits
307
 
      for the containing ``.bzr/`` directory (it does not implement
308
 
      permissions). This would cause us to set all subdirectories to
309
 
      ``0700`` and files to ``0600`` rather than leaving them unmodified.
310
 
      Now we ignore ``0000`` as the permissions and assume they are
311
 
      invalid. (John Arbash Meinel, #259855)
312
 
 
313
 
    * Merging from a previously joined branch will no longer cause 
314
 
      a traceback. (Jelmer Vernooij, #203376)
315
 
 
316
 
    * Pack operations on windows network shares will work even with large
317
 
      files. (Robert Collins, #255656)
318
 
 
319
 
    * Running ``bzr st PATH_TO_TREE`` will no longer suppress merge
320
 
      status. Status is also about 7% faster on mozilla sized trees
321
 
      when the path to the root of the tree has been given. Users of
322
 
      the internal ``show_tree_status`` function should be aware that
323
 
      the show_pending flag is now authoritative for showing pending
324
 
      merges, as it was originally. (Robert Collins, #225204)
325
 
 
326
 
    * Set valid default _param_name for Option so that ListOption can embed
327
 
      '-' in names. (Vincent Ladeuil, #263249)
328
 
 
329
 
    * Show proper error rather than traceback when an unknown revision 
330
 
      id is specified to ``bzr cat-revision``. (Jelmer Vernooij, #175569)
331
 
 
332
 
    * Trailing text in the dirstate file could cause the C dirstate parser
333
 
      to try to allocate an invalid amount of memory. We now properly
334
 
      check and test for parsing a dirstate with invalid trailing data.
335
 
      (John Arbash Meinel, #186014)
336
 
 
337
 
    * Unexpected error responses from a smart server no longer cause the
338
 
      client to traceback.  (Andrew Bennetts, #263527)
339
 
      
340
 
    * Use a Windows api function to get a Unicode host name, rather than
341
 
      assuming the host name is ascii.
342
 
      (Mark Hammond, John Arbash Meinel, #256550)
343
 
 
344
 
    * ``WorkingTree4`` trees will now correctly report missing-and-new
345
 
      paths in the output of ``iter_changes``. (Robert Collins)
346
 
 
347
 
  DOCUMENTATION:
348
 
 
349
 
    * Updated developer documentation.  (Martin Pool)
350
 
 
351
 
  API CHANGES:
352
 
 
353
 
    * Exporters now take 4 parameters. (Robert Collins)
354
 
 
355
 
    * ``Tree.iter_changes`` will now return False for the content change
356
 
      field when a file is missing in the basis tree and not present in
357
 
      the target tree. Previously it returned True unconditionally.
358
 
      (Robert Collins)
359
 
 
360
 
    * The deprecated ``Branch.abspath`` and unimplemented 
361
 
      ``Branch.rename_one`` and ``Branch.move`` were removed. (Jelmer Vernooij)
362
 
 
363
 
    * BzrDir.clone_on_transport implementations must now accept a stacked_on
364
 
      parameter.  (Aaron Bentley)
365
 
 
366
 
    * BzrDir.cloning_metadir implementations must now take a require_stacking
367
 
      parameter.  (Aaron Bentley)
368
 
 
369
 
  TESTING:
370
 
 
371
 
    * ``addCleanup`` now takes ``*arguments`` and ``**keyword_arguments``
372
 
      which are then passed to the cleanup callable as it is run. In
373
 
      addition, addCleanup no longer requires that the callables passed to
374
 
      it be unique. (Jonathan Lange)
375
 
 
376
 
    * Fix some tests that fail on Windows because files are deleted while 
377
 
      still in use. 
378
 
      (Mark Hammond)
379
 
 
380
 
    * ``selftest``'s ``--starting-with`` option can now use predefined
381
 
      prefixes so that one can say ``bzr selftest -s bp.loom`` instead of
382
 
      ``bzr selftest -s bzrlib.plugins.loom``. (Vincent Ladeuil)
383
 
 
384
 
    * ``selftest``'s ``--starting-with`` option now accepts multiple values.
385
 
      (Vincent Ladeuil)
386
 
 
387
 
  INTERNALS:
388
 
 
389
 
    * A new plugin interface, ``bzrlib.log.log_adapters``, has been added.
390
 
      This allows dynamic log output filtering by plugins.
391
 
      (Robert Collins)
392
 
 
393
 
    * ``bzrlib.btree_index`` is now available, providing a b-tree index
394
 
      layer. The design is memory conservative (limited memory cache),
395
 
      faster to seek (approx 100 nodes per page, gives 100-way fan out),
396
 
      and stores compressed pages allowing more keys per page.
397
 
      (Robert Collins, John Arbash Meinel)
398
 
 
399
 
    * ``bzrlib.diff.DiffTree.show_diff`` now skips changes where the kind
400
 
      is unknown in both source and target.
401
 
      (Robert Collins, Aaron Bentley)
402
 
 
403
 
    * ``GraphIndexBuilder.add_node`` and ``BTreeBuilder`` have been
404
 
      streamlined a bit. This should make creating large indexes faster.
405
 
      (In benchmarking, it now takes less time to create a BTree index than
406
 
      it takes to read the GraphIndex one.) (John Arbash Meinel)
407
 
 
408
 
    * Mail clients for `bzr send` are now listed in a registry.  This
409
 
      allows plugins to add new clients by registering them with
410
 
      ``bzrlib.mail_client.mail_client_registry``.  All of the built-in
411
 
      clients now use this mechanism.  (Neil Martinsen-Burrell)
412
 
 
413
 
 
414
 
bzr 1.6.1 2008-09-05
415
 
--------------------
 
5058
Changes
 
5059
*******
 
5060
 
 
5061
* ``bzr export`` can now export a subdirectory of a project.
 
5062
  (Robert Collins)
 
5063
 
 
5064
* ``bzr remove-tree`` will now refuse to remove a tree with uncommitted
 
5065
  changes, unless the ``--force`` option is specified.
 
5066
  (Lukáš Lalinský, #74101)
 
5067
 
 
5068
* ``bzr rm`` will now scan for files that are missing and remove just
 
5069
  them automatically, much as ``bzr add`` scans for new files that
 
5070
  are not ignored and adds them automatically. (Robert Collins)
 
5071
 
 
5072
Features
 
5073
********
 
5074
 
 
5075
* Support for GSSAPI authentication when using FTP as documented in
 
5076
  RFC2228. (Jelmer Vernooij, #49623)
 
5077
 
 
5078
* Add support for IPv6 in the smart server. (Jelmer Vernooij, #165014)
 
5079
 
 
5080
Improvements
 
5081
************
 
5082
 
 
5083
* A url like ``log+file:///tmp`` will log all access to that Transport
 
5084
  to ``.bzr.log``, which may help in debugging or profiling.
 
5085
  (Martin Pool)
 
5086
 
 
5087
* ``bzr branch`` and ``bzr push`` use the default stacking policy if the
 
5088
  branch format supports it. (Aaron Bentley)
 
5089
 
 
5090
* ``bzr init`` and ``bzr init-repo`` will now print out the same as
 
5091
  ``bzr info`` if it completed successfully.
 
5092
  (Marius Kruger)
 
5093
 
 
5094
* ``bzr uncommit`` logs the old tip revision id, and displays how to
 
5095
  restore the branch to that tip using ``bzr pull``.  This allows you
 
5096
  to recover if you realize you uncommitted the wrong thing.
 
5097
  (John Arbash Meinel)
 
5098
 
 
5099
* Fix problems in accessing stacked repositories over ``bzr://``.
 
5100
  (Martin Pool, #261315)
 
5101
 
 
5102
* ``SFTPTransport.readv()`` was accidentally using ``list += string``,
 
5103
  which 'works', but adds each character separately to the list,
 
5104
  rather than using ``list.append(string)``. Fixing this makes the
 
5105
  SFTP transport a little bit faster (~20%) and use a bit less memory.
 
5106
  (John Arbash Meinel)
 
5107
 
 
5108
* When reading index files, if we happen to read the whole file in a
 
5109
  single request treat it as a ``_buffer_all`` request. This happens
 
5110
  most often on small indexes over remote transports, where we default
 
5111
  to reading 64kB. It saves a round trip for each small index during
 
5112
  fetch operations. Also, if we have read more than 50% of an index
 
5113
  file, trigger a ``_buffer_all`` on the next request. This works
 
5114
  around some inefficiencies because reads don't fall neatly on page
 
5115
  boundaries, so we would ignore those bytes, but request them again
 
5116
  later. This could trigger a total read size of more than the whole
 
5117
  file. (John Arbash Meinel)
 
5118
 
 
5119
Bug Fixes
 
5120
*********
 
5121
 
 
5122
* ``bzr rm`` is now aliased to ``bzr del`` for the convenience of svn
 
5123
  users. (Robert Collins, #205416)
 
5124
 
 
5125
* Catch the infamous "select/poll returned error" which occurs when
 
5126
  pycurl try to send a body request to an HTTP/1.0 server which has
 
5127
  already refused to handle the request. (Vincent Ladeuil, #225020)
 
5128
 
 
5129
* Fix ``ObjectNotLocked`` errors when using various commands
 
5130
  (including ``bzr cat`` and ``bzr annotate``) in combination with a
 
5131
  smart server URL.  (Andrew Bennetts, #237067)
 
5132
 
 
5133
* ``FTPTransport.stat()`` would return ``0000`` as the permission bits
 
5134
  for the containing ``.bzr/`` directory (it does not implement
 
5135
  permissions). This would cause us to set all subdirectories to
 
5136
  ``0700`` and files to ``0600`` rather than leaving them unmodified.
 
5137
  Now we ignore ``0000`` as the permissions and assume they are
 
5138
  invalid. (John Arbash Meinel, #259855)
 
5139
 
 
5140
* Merging from a previously joined branch will no longer cause
 
5141
  a traceback. (Jelmer Vernooij, #203376)
 
5142
 
 
5143
* Pack operations on windows network shares will work even with large
 
5144
  files. (Robert Collins, #255656)
 
5145
 
 
5146
* Running ``bzr st PATH_TO_TREE`` will no longer suppress merge
 
5147
  status. Status is also about 7% faster on mozilla sized trees
 
5148
  when the path to the root of the tree has been given. Users of
 
5149
  the internal ``show_tree_status`` function should be aware that
 
5150
  the show_pending flag is now authoritative for showing pending
 
5151
  merges, as it was originally. (Robert Collins, #225204)
 
5152
 
 
5153
* Set valid default _param_name for Option so that ListOption can embed
 
5154
  '-' in names. (Vincent Ladeuil, #263249)
 
5155
 
 
5156
* Show proper error rather than traceback when an unknown revision
 
5157
  id is specified to ``bzr cat-revision``. (Jelmer Vernooij, #175569)
 
5158
 
 
5159
* Trailing text in the dirstate file could cause the C dirstate parser
 
5160
  to try to allocate an invalid amount of memory. We now properly
 
5161
  check and test for parsing a dirstate with invalid trailing data.
 
5162
  (John Arbash Meinel, #186014)
 
5163
 
 
5164
* Unexpected error responses from a smart server no longer cause the
 
5165
  client to traceback.  (Andrew Bennetts, #263527)
 
5166
 
 
5167
* Use a Windows api function to get a Unicode host name, rather than
 
5168
  assuming the host name is ascii.
 
5169
  (Mark Hammond, John Arbash Meinel, #256550)
 
5170
 
 
5171
* ``WorkingTree4`` trees will now correctly report missing-and-new
 
5172
  paths in the output of ``iter_changes``. (Robert Collins)
 
5173
 
 
5174
Documentation
 
5175
*************
 
5176
 
 
5177
* Updated developer documentation.  (Martin Pool)
 
5178
 
 
5179
API Changes
 
5180
***********
 
5181
 
 
5182
* Exporters now take 4 parameters. (Robert Collins)
 
5183
 
 
5184
* ``Tree.iter_changes`` will now return False for the content change
 
5185
  field when a file is missing in the basis tree and not present in
 
5186
  the target tree. Previously it returned True unconditionally.
 
5187
  (Robert Collins)
 
5188
 
 
5189
* The deprecated ``Branch.abspath`` and unimplemented
 
5190
  ``Branch.rename_one`` and ``Branch.move`` were removed. (Jelmer Vernooij)
 
5191
 
 
5192
* BzrDir.clone_on_transport implementations must now accept a stacked_on
 
5193
  parameter.  (Aaron Bentley)
 
5194
 
 
5195
* BzrDir.cloning_metadir implementations must now take a require_stacking
 
5196
  parameter.  (Aaron Bentley)
 
5197
 
 
5198
Testing
 
5199
*******
 
5200
 
 
5201
* ``addCleanup`` now takes ``*arguments`` and ``**keyword_arguments``
 
5202
  which are then passed to the cleanup callable as it is run. In
 
5203
  addition, addCleanup no longer requires that the callables passed to
 
5204
  it be unique. (Jonathan Lange)
 
5205
 
 
5206
* Fix some tests that fail on Windows because files are deleted while
 
5207
  still in use.
 
5208
  (Mark Hammond)
 
5209
 
 
5210
* ``selftest``'s ``--starting-with`` option can now use predefined
 
5211
  prefixes so that one can say ``bzr selftest -s bp.loom`` instead of
 
5212
  ``bzr selftest -s bzrlib.plugins.loom``. (Vincent Ladeuil)
 
5213
 
 
5214
* ``selftest``'s ``--starting-with`` option now accepts multiple values.
 
5215
  (Vincent Ladeuil)
 
5216
 
 
5217
Internals
 
5218
*********
 
5219
 
 
5220
* A new plugin interface, ``bzrlib.log.log_adapters``, has been added.
 
5221
  This allows dynamic log output filtering by plugins.
 
5222
  (Robert Collins)
 
5223
 
 
5224
* ``bzrlib.btree_index`` is now available, providing a b-tree index
 
5225
  layer. The design is memory conservative (limited memory cache),
 
5226
  faster to seek (approx 100 nodes per page, gives 100-way fan out),
 
5227
  and stores compressed pages allowing more keys per page.
 
5228
  (Robert Collins, John Arbash Meinel)
 
5229
 
 
5230
* ``bzrlib.diff.DiffTree.show_diff`` now skips changes where the kind
 
5231
  is unknown in both source and target.
 
5232
  (Robert Collins, Aaron Bentley)
 
5233
 
 
5234
* ``GraphIndexBuilder.add_node`` and ``BTreeBuilder`` have been
 
5235
  streamlined a bit. This should make creating large indexes faster.
 
5236
  (In benchmarking, it now takes less time to create a BTree index than
 
5237
  it takes to read the GraphIndex one.) (John Arbash Meinel)
 
5238
 
 
5239
* Mail clients for `bzr send` are now listed in a registry.  This
 
5240
  allows plugins to add new clients by registering them with
 
5241
  ``bzrlib.mail_client.mail_client_registry``.  All of the built-in
 
5242
  clients now use this mechanism.  (Neil Martinsen-Burrell)
 
5243
 
 
5244
 
 
5245
bzr 1.6.1
 
5246
#########
 
5247
 
 
5248
:Released: 2008-09-05
416
5249
 
417
5250
A couple regressions were found in the 1.6 release. There was a
418
5251
performance issue when using ``bzr+ssh`` to branch large repositories,
419
5252
and some problems with stacking and ``rich-root`` capable repositories.
420
5253
 
421
5254
 
422
 
bzr 1.6.1rc2 2008-09-03
423
 
-----------------------
424
 
 
425
 
  BUG FIXES:
426
 
 
427
 
    * Copying between ``rich-root`` and ``rich-root-pack`` (and vice
428
 
      versa) was accidentally using the inter-model fetcher, instead of
429
 
      recognizing that both were 'rich root' formats.
430
 
      (John Arbash Meinel, #264321)
431
 
 
432
 
 
433
 
bzr 1.6.1rc1 2008-08-29
434
 
-----------------------
 
5255
bzr 1.6.1rc2
 
5256
############
 
5257
 
 
5258
:Released: 2008-09-03
 
5259
 
 
5260
Bug Fixes
 
5261
*********
 
5262
 
 
5263
* Copying between ``rich-root`` and ``rich-root-pack`` (and vice
 
5264
  versa) was accidentally using the inter-model fetcher, instead of
 
5265
  recognizing that both were 'rich root' formats.
 
5266
  (John Arbash Meinel, #264321)
 
5267
 
 
5268
 
 
5269
bzr 1.6.1rc1
 
5270
############
 
5271
 
 
5272
:Released: 2008-08-29
435
5273
 
436
5274
This release fixes a few regressions found in the 1.6 client. Fetching
437
5275
changes was using an O(N^2) buffering algorithm, so for large projects it
446
5284
I should also clarify that none of this is data loss level issues, but
447
5285
still sufficient enough to warrant an updated release.
448
5286
 
449
 
  BUG FIXES:
450
 
 
451
 
    * ``RemoteTransport.readv()`` was being inefficient about how it
452
 
      buffered the readv data and processed it. It would keep appending to
453
 
      the same string (causing many copies) and then pop bytes out of the
454
 
      start of the string (causing more copies).
455
 
      With this patch "bzr+ssh://local" can improve dramatically,
456
 
      especially for projects with large files.
457
 
      (John Arbash Meinel)
458
 
 
459
 
    * Revision texts were always meant to be stored as fulltexts. There
460
 
      was a bug in a bzr.dev version that would accidentally create deltas
461
 
      when copying from a Pack repo to a Knit repo. This has been fixed,
462
 
      but to support those repositories, we know always request full texts
463
 
      for Revision texts. (John Arbash Meinel, #261339)
464
 
 
465
 
    * The previous ``--1.6-rich-root`` format used an incorrect xml
466
 
      serializer, which would accidentally support fetching from a
467
 
      repository that supported subtrees, even though the local one would
468
 
      not. We deprecated that format, and introduced a new one that uses
469
 
      the correct serializer ``--1.6.1-rich-root``.
470
 
      (John Arbash Meinel, #262333)
471
 
 
472
 
 
473
 
bzr 1.6 2008-08-25
474
 
------------------
 
5287
Bug Fixes
 
5288
*********
 
5289
 
 
5290
* ``RemoteTransport.readv()`` was being inefficient about how it
 
5291
  buffered the readv data and processed it. It would keep appending to
 
5292
  the same string (causing many copies) and then pop bytes out of the
 
5293
  start of the string (causing more copies).
 
5294
  With this patch "bzr+ssh://local" can improve dramatically,
 
5295
  especially for projects with large files.
 
5296
  (John Arbash Meinel)
 
5297
 
 
5298
* Revision texts were always meant to be stored as fulltexts. There
 
5299
  was a bug in a bzr.dev version that would accidentally create deltas
 
5300
  when copying from a Pack repo to a Knit repo. This has been fixed,
 
5301
  but to support those repositories, we know always request full texts
 
5302
  for Revision texts. (John Arbash Meinel, #261339)
 
5303
 
 
5304
* The previous ``--1.6-rich-root`` format used an incorrect xml
 
5305
  serializer, which would accidentally support fetching from a
 
5306
  repository that supported subtrees, even though the local one would
 
5307
  not. We deprecated that format, and introduced a new one that uses
 
5308
  the correct serializer ``--1.6.1-rich-root``.
 
5309
  (John Arbash Meinel, #262333)
 
5310
 
 
5311
 
 
5312
bzr 1.6
 
5313
#######
 
5314
 
 
5315
:Released: 2008-08-25
475
5316
 
476
5317
Finally, the long awaited bzr 1.6 has been released. This release includes
477
5318
new features like Stacked Branches, improved weave merge, and an updated
484
5325
TortoiseBzr in the standalone Windows installer.
485
5326
 
486
5327
 
487
 
bzr 1.6rc5 2008-08-19
488
 
---------------------
489
 
 
490
 
  BUG FIXES: 
491
 
 
492
 
    * Disable automatic detection of stacking based on a containing
493
 
      directory of the target. It interacted badly with push, and needs a
494
 
      bit more work to get the edges polished before it should happen
495
 
      automatically. (John Arbash Meinel, #259275)
496
 
      (This change was reverted when merged to bzr.dev)
497
 
  
498
 
 
499
 
bzr 1.6rc4 2008-08-18
500
 
---------------------
501
 
 
502
 
  BUG FIXES: 
503
 
 
504
 
    * Fix a regression in knit => pack fetching.  We had a logic
505
 
      inversion, causing the fetch to insert fulltexts in random order,
506
 
      rather than preserving deltas.  (John Arbash Meinel, #256757)
507
 
 
508
 
 
509
 
bzr 1.6rc3 2008-08-14
510
 
---------------------
511
 
 
512
 
  CHANGES:
513
 
 
514
 
    * Disable reading ``.bzrrules`` as a per-branch rule preferences
515
 
      file. The feature was not quite ready for a full release.
516
 
      (Robert Collins)
517
 
 
518
 
  IMPROVEMENTS:
519
 
 
520
 
    * Update the windows installer to bundle TortoiseBzr and ``qbzr``
521
 
      into the standalone installer. This will be the first official
522
 
      windows release that installs Tortoise by default.
523
 
      (Mark Hammond)
524
 
 
525
 
  BUG FIXES: 
526
 
 
527
 
    * Fix a regression in ``bzr+http`` support. There was a missing
528
 
      function (``_read_line``) that needed to be carried over from
529
 
      ``bzr+ssh`` support. (Andrew Bennetts)
530
 
 
531
 
    * ``GraphIndex`` objects will internally read an entire index if more
532
 
      than 1/20th of their keyspace is requested in a single operation.
533
 
      This largely mitigates a performance regression in ``bzr log FILE``
534
 
      and completely corrects the performance regression in ``bzr log``.
535
 
      The regression was caused by removing an accomodation which had been
536
 
      supporting the index format in use. A newer index format is in
537
 
      development which is substantially faster. (Robert Collins)
538
 
 
539
 
 
540
 
bzr 1.6rc2 2008-08-13
541
 
---------------------
 
5328
bzr 1.6rc5
 
5329
##########
 
5330
 
 
5331
:Released: 2008-08-19
 
5332
 
 
5333
Bug Fixes
 
5334
*********
 
5335
 
 
5336
* Disable automatic detection of stacking based on a containing
 
5337
  directory of the target. It interacted badly with push, and needs a
 
5338
  bit more work to get the edges polished before it should happen
 
5339
  automatically. (John Arbash Meinel, #259275)
 
5340
  (This change was reverted when merged to bzr.dev)
 
5341
 
 
5342
 
 
5343
bzr 1.6rc4
 
5344
##########
 
5345
 
 
5346
:Released: 2008-08-18
 
5347
 
 
5348
Bug Fixes
 
5349
*********
 
5350
 
 
5351
* Fix a regression in knit => pack fetching.  We had a logic
 
5352
  inversion, causing the fetch to insert fulltexts in random order,
 
5353
  rather than preserving deltas.  (John Arbash Meinel, #256757)
 
5354
 
 
5355
 
 
5356
bzr 1.6rc3
 
5357
##########
 
5358
 
 
5359
:Released: 2008-08-14
 
5360
 
 
5361
Changes
 
5362
*******
 
5363
 
 
5364
* Disable reading ``.bzrrules`` as a per-branch rule preferences
 
5365
  file. The feature was not quite ready for a full release.
 
5366
  (Robert Collins)
 
5367
 
 
5368
Improvements
 
5369
************
 
5370
 
 
5371
* Update the windows installer to bundle TortoiseBzr and ``qbzr``
 
5372
  into the standalone installer. This will be the first official
 
5373
  windows release that installs Tortoise by default.
 
5374
  (Mark Hammond)
 
5375
 
 
5376
Bug Fixes
 
5377
*********
 
5378
 
 
5379
* Fix a regression in ``bzr+http`` support. There was a missing
 
5380
  function (``_read_line``) that needed to be carried over from
 
5381
  ``bzr+ssh`` support. (Andrew Bennetts)
 
5382
 
 
5383
* ``GraphIndex`` objects will internally read an entire index if more
 
5384
  than 1/20th of their keyspace is requested in a single operation.
 
5385
  This largely mitigates a performance regression in ``bzr log FILE``
 
5386
  and completely corrects the performance regression in ``bzr log``.
 
5387
  The regression was caused by removing an accomodation which had been
 
5388
  supporting the index format in use. A newer index format is in
 
5389
  development which is substantially faster. (Robert Collins)
 
5390
 
 
5391
 
 
5392
bzr 1.6rc2
 
5393
##########
 
5394
 
 
5395
:Released: 2008-08-13
542
5396
 
543
5397
This release candidate has a few minor bug fixes, and some regression
544
5398
fixes for Windows.
545
5399
 
546
 
  BUG FIXES:
547
 
 
548
 
    * ``bzr upgrade`` on remote branches accessed via bzr:// and
549
 
      bzr+ssh:// now works.  (Andrew Bennetts)
550
 
 
551
 
    * Change the ``get_format_description()`` strings for
552
 
      ``RepositoryFormatKnitPack5`` et al to be single line messages.
553
 
      (Aaron Bentley)
554
 
 
555
 
    * Fix for a regression on Win32 where we would try to call
556
 
      ``os.listdir()`` on a file and not catch the exception properly.
557
 
      (Windows raises a different exception.) This would manifest in
558
 
      places like ``bzr rm file`` or ``bzr switch``.
559
 
      (Mark Hammond, John Arbash Meinel)
560
 
 
561
 
    * ``Inventory.copy()`` was failing to set the revision property for
562
 
      the root entry. (Jelmer Vernooij)
563
 
 
564
 
    * sftp transport: added missing ``FileExists`` case to
565
 
      ``_translate_io_exception`` (Christophe Troestler, #123475)
566
 
 
567
 
    * The help for ``bzr ignored`` now suggests ``bzr ls --ignored`` for
568
 
      scripting use. (Robert Collins, #3834)
569
 
 
570
 
    * The default ``annotate`` logic will now always assign the
571
 
      last-modified value of a line to one of the revisions that modified
572
 
      it, rather than a merge revision. This would happen when both sides
573
 
      claimed to have modified the line resulting in the same text. The
574
 
      choice is arbitrary but stable, so merges in different directions
575
 
      will get the same results.  (John Arbash Meinel, #232188)
576
 
 
577
 
 
578
 
bzr 1.6rc1 2008-08-06
579
 
---------------------
 
5400
Bug Fixes
 
5401
*********
 
5402
 
 
5403
* ``bzr upgrade`` on remote branches accessed via bzr:// and
 
5404
  bzr+ssh:// now works.  (Andrew Bennetts)
 
5405
 
 
5406
* Change the ``get_format_description()`` strings for
 
5407
  ``RepositoryFormatKnitPack5`` et al to be single line messages.
 
5408
  (Aaron Bentley)
 
5409
 
 
5410
* Fix for a regression on Win32 where we would try to call
 
5411
  ``os.listdir()`` on a file and not catch the exception properly.
 
5412
  (Windows raises a different exception.) This would manifest in
 
5413
  places like ``bzr rm file`` or ``bzr switch``.
 
5414
  (Mark Hammond, John Arbash Meinel)
 
5415
 
 
5416
* ``Inventory.copy()`` was failing to set the revision property for
 
5417
  the root entry. (Jelmer Vernooij)
 
5418
 
 
5419
* sftp transport: added missing ``FileExists`` case to
 
5420
  ``_translate_io_exception`` (Christophe Troestler, #123475)
 
5421
 
 
5422
* The help for ``bzr ignored`` now suggests ``bzr ls --ignored`` for
 
5423
  scripting use. (Robert Collins, #3834)
 
5424
 
 
5425
* The default ``annotate`` logic will now always assign the
 
5426
  last-modified value of a line to one of the revisions that modified
 
5427
  it, rather than a merge revision. This would happen when both sides
 
5428
  claimed to have modified the line resulting in the same text. The
 
5429
  choice is arbitrary but stable, so merges in different directions
 
5430
  will get the same results.  (John Arbash Meinel, #232188)
 
5431
 
 
5432
 
 
5433
bzr 1.6rc1
 
5434
##########
 
5435
 
 
5436
:Released: 2008-08-06
580
5437
 
581
5438
This release candidate for bzr 1.6 solidifies the new branch stacking
582
5439
feature.  Bazaar now recommends that users upgrade all knit repositories,
584
5441
upgrade support for knit repostories for the forseeable future.  Several
585
5442
other bugs and performance issues were fixed.
586
5443
 
587
 
  CHANGES:
588
 
 
589
 
    * Knit format repositories are deprecated and bzr will now emit
590
 
      warnings whenever it encounters one.  Use ``bzr upgrade`` to upgrade
591
 
      knit repositories to pack format.  (Andrew Bennetts)
592
 
 
593
 
  IMPROVEMENTS:
594
 
 
595
 
    * ``bzr check`` can now be told which elements at a location it should
596
 
      check.  (Daniel Watkins)
597
 
 
598
 
    * Commit now supports ``--exclude`` (or ``-x``) to exclude some files
599
 
      from the commit. (Robert Collins, #3117)
600
 
 
601
 
    * Fetching data between repositories that have the same model but no 
602
 
      optimised fetcher will not reserialise all the revisions, increasing
603
 
      performance. (Robert Collins, John Arbash Meinel)
604
 
 
605
 
    * Give a more specific error when target branch is not reachable.
606
 
      (James Westby)
607
 
 
608
 
    * Implemented a custom ``walkdirs_utf8`` implementation for win32.
609
 
      This uses a pyrex extension to get direct access to the
610
 
      ``FindFirstFileW`` style apis, rather than using ``listdir`` +
611
 
      ``lstat``. Shows a very strong improvement in commands like
612
 
      ``status`` and ``diff`` which have to iterate the working tree.
613
 
      Anywhere from 2x-6x faster depending on the size of the tree (bigger
614
 
      trees, bigger benefit.) (John Arbash Meinel)
615
 
 
616
 
    * New registry for log properties handles  and the method in 
617
 
      LongLogFormatter to display the custom properties returned by the 
618
 
      registered handlers. (Guillermo Gonzalez, #162469)
619
 
 
620
 
  BUG FIXES:
621
 
 
622
 
    * Add more tests that stacking does not create deltas spanning
623
 
      physical repository boundaries.
624
 
      (Martin Pool, #252428)
625
 
 
626
 
    * Better message about incompatible repositories.
627
 
      (Martin Pool, #206258)
628
 
 
629
 
    * ``bzr branch --stacked`` ensures the destination branch format can
630
 
      support stacking, even if the origin does not.
631
 
      (Martin Pool)
632
 
 
633
 
    * ``bzr export`` no longer exports ``.bzrrules``.
634
 
      (Ian Clatworthy)
635
 
 
636
 
    * ``bzr serve --directory=/`` now correctly allows the whole
637
 
      filesystem to be accessed on Windows, not just the root of the drive
638
 
      that Python is running from.
639
 
      (Adrian Wilkins, #240910)
640
 
 
641
 
    * Deleting directories by hand before running ``bzr rm`` will not
642
 
      cause subsequent errors in ``bzr st`` and ``bzr commit``.
643
 
      (Robert Collins, #150438)
644
 
 
645
 
    * Fix a test case that was failing if encoding wasn't UTF-8.
646
 
      (John Arbash Meinel, #247585)
647
 
 
648
 
    * Fix "no buffer space available" error when branching with the new
649
 
      smart server protocol to or from Windows.
650
 
      (Andrew Bennetts, #246180)
651
 
 
652
 
    * Fixed problem in branching from smart server.
653
 
      (#249256, Michael Hudson, Martin Pool) 
654
 
 
655
 
    * Handle a file turning in to a directory in TreeTransform.
656
 
      (James Westby, #248448)
657
 
 
658
 
  API CHANGES:
659
 
 
660
 
    * ``MutableTree.commit`` has an extra optional keywork parameter
661
 
      ``exclude`` that will be unconditionally supplied by the command
662
 
      line UI - plugins that add tree formats may need an update.
663
 
      (Robert Collins)
664
 
 
665
 
    * The API minimum version for plugin compatibility has been raised to
666
 
      1.6 - there are significant changes throughout the code base.
667
 
      (Robert Collins)
668
 
 
669
 
    * The generic fetch code now uses three attributes on Repository objects
670
 
      to control fetch. The streams requested are controlled via :
671
 
      ``_fetch_order`` and ``_fetch_uses_deltas``. Setting these
672
 
      appropriately allows different repository implementations to recieve
673
 
      data in their optimial form. If the ``_fetch_reconcile`` is set then
674
 
      a reconcile operation is triggered at the end of the fetch.
675
 
      (Robert Collins)
676
 
 
677
 
    * The ``put_on_disk`` and ``get_tar_item`` methods in
678
 
      ``InventoryEntry`` were deprecated. (Ian Clatworthy)
679
 
 
680
 
    * ``Repository.is_shared`` doesn't take a read lock. It didn't
681
 
      need one in the first place (nobody cached the value, and
682
 
      ``RemoteRepository`` wasn't taking one either). This saves a round
683
 
      trip when probing Pack repositories, as they read the ``pack-names``
684
 
      file when locked. And during probe, locking the repo isn't very
685
 
      useful. (John Arbash Meinel)
686
 
 
687
 
  INTERNALS:
688
 
 
689
 
    * ``bzrlib.branchbuilder.BranchBuilder`` is now much more capable of
690
 
      putting together a real history without having to create a full
691
 
      WorkingTree. It is recommended that tests that are not directly
692
 
      testing the WorkingTree use BranchBuilder instead.  See
693
 
      ``BranchBuilder.build_snapshot`` or
694
 
      ``TestCaseWithMemoryTree.make_branch_builder``.  (John Arbash Meinel)
695
 
 
696
 
    * ``bzrlib.builtins.internal_tree_files`` broken into two giving a new
697
 
      helper ``safe_relpath_files`` - used by the new ``exclude``
698
 
      parameter to commit. (Robert Collins)
699
 
 
700
 
    * Make it easier to introduce new WorkingTree formats.
701
 
      (Ian Clatworthy)
702
 
 
703
 
    * The code for exporting trees was refactored not to use the
704
 
      deprecated ``InventoryEntry`` methods. (Ian Clatworthy)
705
 
 
706
 
    * RuleSearchers return () instead of [] now when there are no matches.
707
 
      (Ian Clatworthy)
708
 
 
709
 
 
710
 
bzr 1.6beta3 2008-07-17
711
 
-----------------------
 
5444
Changes
 
5445
*******
 
5446
 
 
5447
* Knit format repositories are deprecated and bzr will now emit
 
5448
  warnings whenever it encounters one.  Use ``bzr upgrade`` to upgrade
 
5449
  knit repositories to pack format.  (Andrew Bennetts)
 
5450
 
 
5451
Improvements
 
5452
************
 
5453
 
 
5454
* ``bzr check`` can now be told which elements at a location it should
 
5455
  check.  (Daniel Watkins)
 
5456
 
 
5457
* Commit now supports ``--exclude`` (or ``-x``) to exclude some files
 
5458
  from the commit. (Robert Collins, #3117)
 
5459
 
 
5460
* Fetching data between repositories that have the same model but no
 
5461
  optimised fetcher will not reserialise all the revisions, increasing
 
5462
  performance. (Robert Collins, John Arbash Meinel)
 
5463
 
 
5464
* Give a more specific error when target branch is not reachable.
 
5465
  (James Westby)
 
5466
 
 
5467
* Implemented a custom ``walkdirs_utf8`` implementation for win32.
 
5468
  This uses a pyrex extension to get direct access to the
 
5469
  ``FindFirstFileW`` style apis, rather than using ``listdir`` +
 
5470
  ``lstat``. Shows a very strong improvement in commands like
 
5471
  ``status`` and ``diff`` which have to iterate the working tree.
 
5472
  Anywhere from 2x-6x faster depending on the size of the tree (bigger
 
5473
  trees, bigger benefit.) (John Arbash Meinel)
 
5474
 
 
5475
* New registry for log properties handles  and the method in
 
5476
  LongLogFormatter to display the custom properties returned by the
 
5477
  registered handlers. (Guillermo Gonzalez, #162469)
 
5478
 
 
5479
Bug Fixes
 
5480
*********
 
5481
 
 
5482
* Add more tests that stacking does not create deltas spanning
 
5483
  physical repository boundaries.
 
5484
  (Martin Pool, #252428)
 
5485
 
 
5486
* Better message about incompatible repositories.
 
5487
  (Martin Pool, #206258)
 
5488
 
 
5489
* ``bzr branch --stacked`` ensures the destination branch format can
 
5490
  support stacking, even if the origin does not.
 
5491
  (Martin Pool)
 
5492
 
 
5493
* ``bzr export`` no longer exports ``.bzrrules``.
 
5494
  (Ian Clatworthy)
 
5495
 
 
5496
* ``bzr serve --directory=/`` now correctly allows the whole
 
5497
  filesystem to be accessed on Windows, not just the root of the drive
 
5498
  that Python is running from.
 
5499
  (Adrian Wilkins, #240910)
 
5500
 
 
5501
* Deleting directories by hand before running ``bzr rm`` will not
 
5502
  cause subsequent errors in ``bzr st`` and ``bzr commit``.
 
5503
  (Robert Collins, #150438)
 
5504
 
 
5505
* Fix a test case that was failing if encoding wasn't UTF-8.
 
5506
  (John Arbash Meinel, #247585)
 
5507
 
 
5508
* Fix "no buffer space available" error when branching with the new
 
5509
  smart server protocol to or from Windows.
 
5510
  (Andrew Bennetts, #246180)
 
5511
 
 
5512
* Fixed problem in branching from smart server.
 
5513
  (#249256, Michael Hudson, Martin Pool)
 
5514
 
 
5515
* Handle a file turning in to a directory in TreeTransform.
 
5516
  (James Westby, #248448)
 
5517
 
 
5518
API Changes
 
5519
***********
 
5520
 
 
5521
* ``MutableTree.commit`` has an extra optional keywork parameter
 
5522
  ``exclude`` that will be unconditionally supplied by the command
 
5523
  line UI - plugins that add tree formats may need an update.
 
5524
  (Robert Collins)
 
5525
 
 
5526
* The API minimum version for plugin compatibility has been raised to
 
5527
  1.6 - there are significant changes throughout the code base.
 
5528
  (Robert Collins)
 
5529
 
 
5530
* The generic fetch code now uses three attributes on Repository objects
 
5531
  to control fetch. The streams requested are controlled via :
 
5532
  ``_fetch_order`` and ``_fetch_uses_deltas``. Setting these
 
5533
  appropriately allows different repository implementations to recieve
 
5534
  data in their optimial form. If the ``_fetch_reconcile`` is set then
 
5535
  a reconcile operation is triggered at the end of the fetch.
 
5536
  (Robert Collins)
 
5537
 
 
5538
* The ``put_on_disk`` and ``get_tar_item`` methods in
 
5539
  ``InventoryEntry`` were deprecated. (Ian Clatworthy)
 
5540
 
 
5541
* ``Repository.is_shared`` doesn't take a read lock. It didn't
 
5542
  need one in the first place (nobody cached the value, and
 
5543
  ``RemoteRepository`` wasn't taking one either). This saves a round
 
5544
  trip when probing Pack repositories, as they read the ``pack-names``
 
5545
  file when locked. And during probe, locking the repo isn't very
 
5546
  useful. (John Arbash Meinel)
 
5547
 
 
5548
Internals
 
5549
*********
 
5550
 
 
5551
* ``bzrlib.branchbuilder.BranchBuilder`` is now much more capable of
 
5552
  putting together a real history without having to create a full
 
5553
  WorkingTree. It is recommended that tests that are not directly
 
5554
  testing the WorkingTree use BranchBuilder instead.  See
 
5555
  ``BranchBuilder.build_snapshot`` or
 
5556
  ``TestCaseWithMemoryTree.make_branch_builder``.  (John Arbash Meinel)
 
5557
 
 
5558
* ``bzrlib.builtins.internal_tree_files`` broken into two giving a new
 
5559
  helper ``safe_relpath_files`` - used by the new ``exclude``
 
5560
  parameter to commit. (Robert Collins)
 
5561
 
 
5562
* Make it easier to introduce new WorkingTree formats.
 
5563
  (Ian Clatworthy)
 
5564
 
 
5565
* The code for exporting trees was refactored not to use the
 
5566
  deprecated ``InventoryEntry`` methods. (Ian Clatworthy)
 
5567
 
 
5568
* RuleSearchers return () instead of [] now when there are no matches.
 
5569
  (Ian Clatworthy)
 
5570
 
 
5571
 
 
5572
bzr 1.6beta3
 
5573
############
 
5574
 
 
5575
:Released: 2008-07-17
712
5576
 
713
5577
This release adds a new 'stacked branches' feature allowing branches to
714
5578
share storage without being in the same repository or on the same machine.
716
5580
weaves, aliases for related locations, faster bzr+ssh push, and several
717
5581
bug fixes.
718
5582
 
719
 
  FEATURES:
720
 
 
721
 
    * New ``pre_change_branch_tip`` hook that is called before the
722
 
      branch tip is moved, while the branch is write-locked.  See the User
723
 
      Reference for signature details.  (Andrew Bennetts)
724
 
 
725
 
    * Rule-based preferences can now be defined for selected files in
726
 
      selected branches, allowing commands and plugins to provide
727
 
      custom behaviour for files matching defined patterns.
728
 
      See ``Rule-based preferences`` (part of ``Configuring Bazaar``)
729
 
      in the User Guide and ``bzr help rules`` for more information.
730
 
      (Ian Clatworthy)
731
 
 
732
 
    * Sites may suggest a branch to stack new branches on.  (Aaron Bentley)
733
 
 
734
 
    * Stacked branches are now supported. See ``bzr help branch`` and 
735
 
      ``bzr help push``.  Branches must be in the ``development1`` format
736
 
      to stack, though the stacked-on branch can be of any format. 
737
 
      (Robert Collins)
738
 
 
739
 
  IMPROVEMENTS:
740
 
 
741
 
    * ``bzr export --format=tgz --root=NAME -`` to export a gzipped tarball 
742
 
      to stdout; also ``tar`` and ``tbz2``.
743
 
      (Martin Pool)
744
 
 
745
 
    * ``bzr (re)merge --weave`` will now use a standard Weave algorithm,
746
 
      rather than the annotation-based merge it was using. It does so by
747
 
      building up a Weave of the important texts, without needing to build
748
 
      the full ancestry. (John Arbash Meinel, #238895)
749
 
 
750
 
    * ``bzr send`` documents and better supports ``emacsclient`` (proper
751
 
      escaping of mail headers and handling of the MUA Mew).
752
 
      (Christophe Troestler)
753
 
 
754
 
    * Remembered locations can be specified by aliases, e.g. :parent, :public,
755
 
      :submit.  (Aaron Bentley)
756
 
 
757
 
    * The smart protocol now has improved support for setting branches'
758
 
      revision info directly.  This makes operations like push
759
 
      faster.  The new request method name is
760
 
      ``Branch.set_last_revision_ex``.  (Andrew Bennetts)
761
 
 
762
 
  BUG FIXES:
763
 
 
764
 
    * Bazaar is now able to be a client to the web server of IIS 6 and 7.
765
 
      The broken implementations of RFC822 in Python and RFC2046 in IIS
766
 
      combined with boundary-line checking in Bazaar previously made this
767
 
      impossible. (NB, IIS 5 does not suffer from this problem).
768
 
      (Adrian Wilkins, #247585)
769
 
 
770
 
    * ``bzr log --long`` with a ghost in your mainline now handles that
771
 
      ghost properly. (John Arbash Meinel, #243536)
772
 
 
773
 
    * ``check`` handles the split-up .bzr layout correctly, so no longer
774
 
      requires a branch to be present.
775
 
      (Daniel Watkins, #64783)
776
 
 
777
 
    * Clearer message about how to set the PYTHONPATH if bzrlib can't be
778
 
      loaded. 
779
 
      (Martin Pool, #205230)
780
 
 
781
 
    * Errors about missing libraries are now shown without a traceback,
782
 
      and with a suggestion to install the library.  The full traceback is 
783
 
      still in ``.bzr.log`` and can be shown with ``-Derror``.
784
 
      (Martin Pool, #240161)
785
 
 
786
 
    * Fetch from a stacked branch copies all required data.
787
 
      (Aaron Bentley, #248506)
788
 
 
789
 
    * Handle urls such as ftp://user@host.com@www.host.com where the user
790
 
      name contains an @.
791
 
      (Neil Martinsen-Burrell, #228058)
792
 
 
793
 
    * ``needs_read_lock`` and ``needs_write_lock`` now suppress an error during
794
 
      ``unlock`` if there was an error in the original function. This helps
795
 
      most when there is a failure with a smart server action, since often the
796
 
      connection closes and we cannot unlock.
797
 
      (Andrew Bennetts, John Arbash Meinel, #125784)
798
 
 
799
 
    * Obsolete hidden command ``bzr fetch`` removed.
800
 
      (Martin Pool, #172870)
801
 
 
802
 
    * Raise the correct exception when doing ``-rbefore:0`` or ``-c0``.
803
 
      (John Arbash Meinel, #239933)
804
 
 
805
 
    * You can now compare file revisions in Windows diff programs from 
806
 
      Cygwin Bazaar.
807
 
      (Matt McClure, #209281)
808
 
 
809
 
    * revision_history now tolerates mainline ghosts for Branch format 6.
810
 
      (Aaron Bentley, #235055)
811
 
 
812
 
    * Set locale from environment for third party libs.
813
 
      (Martin von Gagern, #128496)
814
 
 
815
 
  DOCUMENTATION:
816
 
 
817
 
    * Added *Using stacked branches* to the User Guide.
818
 
      (Ian Clatworthy)
819
 
 
820
 
    * Updated developer documentation.
821
 
      (Martin Pool)
822
 
 
823
 
  TESTING:
824
 
 
825
 
   * ``-Dmemory`` will cause /proc/PID/status to be catted before bzr
826
 
     exits, allowing low-key analysis of peak memory use. (Robert Collins)
827
 
 
828
 
   * ``TestCaseWithTransport.make_branch_and_tree`` tries harder to return
829
 
     a tree with a ``branch`` attribute of the right format.  This was
830
 
     preventing some ``RemoteBranch`` tests from actually running with
831
 
     ``RemoteBranch`` instances.  (Andrew Bennetts)
832
 
 
833
 
  API CHANGES:
834
 
 
835
 
    * Removed ``Repository.text_store``, ``control_store``, etc.  Instead,
836
 
      there are new attributes ``texts, inventories, revisions,
837
 
      signatures``, each of which is a ``VersionedFiles``.  See the
838
 
      Repository docstring for more details.
839
 
      (Robert Collins)
840
 
 
841
 
    * ``Branch.pull`` now accepts an ``_override_hook_target`` optional
842
 
      parameter.  If you have a subclass of ``Branch`` that overrides
843
 
      ``pull`` then you should add this parameter.  (Andrew Bennetts)
844
 
 
845
 
    * ``bzrlib.check.check()`` has been deprecated in favour of the more
846
 
      aptly-named ``bzrlib.check.check_branch()``.
847
 
      (Daniel Watkins)
848
 
 
849
 
    * ``Tree.print_file`` and ``Repository.print_file`` are deprecated.
850
 
      These methods are bad APIs because they write directly to sys.stdout.
851
 
      bzrlib does not use them internally, and there are no direct tests
852
 
      for them. (Alexander Belchenko)
853
 
 
854
 
  INTERNALS:
855
 
 
856
 
    * ``cat`` command no longer uses ``Tree.print_file()`` internally.
857
 
      (Alexander Belchenko)
858
 
 
859
 
    * New class method ``BzrDir.open_containing_tree_branch_or_repository``
860
 
      which eases the discovery of the tree, the branch and the repository
861
 
      containing a given location.
862
 
      (Daniel Watkins)
863
 
 
864
 
    * New ``versionedfile.KeyMapper`` interface to abstract out the access to
865
 
      underlying .knit/.kndx etc files in repositories with partitioned
866
 
      storage. (Robert Collins)
867
 
 
868
 
    * Obsolete developer-use command ``weave-join`` has been removed.
869
 
      (Robert Collins)
870
 
 
871
 
    * ``RemoteToOtherFetcher`` and ``get_data_stream_for_search`` removed,
872
 
      to support new ``VersionedFiles`` layering.
873
 
      (Robert Collins)
874
 
 
875
 
 
876
 
bzr 1.6beta2 2008-06-10
877
 
-----------------------
 
5583
Features
 
5584
********
 
5585
 
 
5586
* New ``pre_change_branch_tip`` hook that is called before the
 
5587
  branch tip is moved, while the branch is write-locked.  See the User
 
5588
  Reference for signature details.  (Andrew Bennetts)
 
5589
 
 
5590
* Rule-based preferences can now be defined for selected files in
 
5591
  selected branches, allowing commands and plugins to provide
 
5592
  custom behaviour for files matching defined patterns.
 
5593
  See ``Rule-based preferences`` (part of ``Configuring Bazaar``)
 
5594
  in the User Guide and ``bzr help rules`` for more information.
 
5595
  (Ian Clatworthy)
 
5596
 
 
5597
* Sites may suggest a branch to stack new branches on.  (Aaron Bentley)
 
5598
 
 
5599
* Stacked branches are now supported. See ``bzr help branch`` and
 
5600
  ``bzr help push``.  Branches must be in the ``development1`` format
 
5601
  to stack, though the stacked-on branch can be of any format.
 
5602
  (Robert Collins)
 
5603
 
 
5604
Improvements
 
5605
************
 
5606
 
 
5607
* ``bzr export --format=tgz --root=NAME -`` to export a gzipped tarball
 
5608
  to stdout; also ``tar`` and ``tbz2``.
 
5609
  (Martin Pool)
 
5610
 
 
5611
* ``bzr (re)merge --weave`` will now use a standard Weave algorithm,
 
5612
  rather than the annotation-based merge it was using. It does so by
 
5613
  building up a Weave of the important texts, without needing to build
 
5614
  the full ancestry. (John Arbash Meinel, #238895)
 
5615
 
 
5616
* ``bzr send`` documents and better supports ``emacsclient`` (proper
 
5617
  escaping of mail headers and handling of the MUA Mew).
 
5618
  (Christophe Troestler)
 
5619
 
 
5620
* Remembered locations can be specified by aliases, e.g. :parent, :public,
 
5621
  :submit.  (Aaron Bentley)
 
5622
 
 
5623
* The smart protocol now has improved support for setting branches'
 
5624
  revision info directly.  This makes operations like push
 
5625
  faster.  The new request method name is
 
5626
  ``Branch.set_last_revision_ex``.  (Andrew Bennetts)
 
5627
 
 
5628
Bug Fixes
 
5629
*********
 
5630
 
 
5631
* Bazaar is now able to be a client to the web server of IIS 6 and 7.
 
5632
  The broken implementations of RFC822 in Python and RFC2046 in IIS
 
5633
  combined with boundary-line checking in Bazaar previously made this
 
5634
  impossible. (NB, IIS 5 does not suffer from this problem).
 
5635
  (Adrian Wilkins, #247585)
 
5636
 
 
5637
* ``bzr log --long`` with a ghost in your mainline now handles that
 
5638
  ghost properly. (John Arbash Meinel, #243536)
 
5639
 
 
5640
* ``check`` handles the split-up .bzr layout correctly, so no longer
 
5641
  requires a branch to be present.
 
5642
  (Daniel Watkins, #64783)
 
5643
 
 
5644
* Clearer message about how to set the PYTHONPATH if bzrlib can't be
 
5645
  loaded.
 
5646
  (Martin Pool, #205230)
 
5647
 
 
5648
* Errors about missing libraries are now shown without a traceback,
 
5649
  and with a suggestion to install the library.  The full traceback is
 
5650
  still in ``.bzr.log`` and can be shown with ``-Derror``.
 
5651
  (Martin Pool, #240161)
 
5652
 
 
5653
* Fetch from a stacked branch copies all required data.
 
5654
  (Aaron Bentley, #248506)
 
5655
 
 
5656
* Handle urls such as ftp://user@host.com@www.host.com where the user
 
5657
  name contains an @.
 
5658
  (Neil Martinsen-Burrell, #228058)
 
5659
 
 
5660
* ``needs_read_lock`` and ``needs_write_lock`` now suppress an error during
 
5661
  ``unlock`` if there was an error in the original function. This helps
 
5662
  most when there is a failure with a smart server action, since often the
 
5663
  connection closes and we cannot unlock.
 
5664
  (Andrew Bennetts, John Arbash Meinel, #125784)
 
5665
 
 
5666
* Obsolete hidden command ``bzr fetch`` removed.
 
5667
  (Martin Pool, #172870)
 
5668
 
 
5669
* Raise the correct exception when doing ``-rbefore:0`` or ``-c0``.
 
5670
  (John Arbash Meinel, #239933)
 
5671
 
 
5672
* You can now compare file revisions in Windows diff programs from
 
5673
  Cygwin Bazaar.
 
5674
  (Matt McClure, #209281)
 
5675
 
 
5676
* revision_history now tolerates mainline ghosts for Branch format 6.
 
5677
  (Aaron Bentley, #235055)
 
5678
 
 
5679
* Set locale from environment for third party libs.
 
5680
  (Martin von Gagern, #128496)
 
5681
 
 
5682
Documentation
 
5683
*************
 
5684
 
 
5685
* Added *Using stacked branches* to the User Guide.
 
5686
  (Ian Clatworthy)
 
5687
 
 
5688
* Updated developer documentation.
 
5689
  (Martin Pool)
 
5690
 
 
5691
Testing
 
5692
*******
 
5693
 
 
5694
* ``-Dmemory`` will cause /proc/PID/status to be catted before bzr
 
5695
  exits, allowing low-key analysis of peak memory use. (Robert Collins)
 
5696
 
 
5697
* ``TestCaseWithTransport.make_branch_and_tree`` tries harder to return
 
5698
  a tree with a ``branch`` attribute of the right format.  This was
 
5699
  preventing some ``RemoteBranch`` tests from actually running with
 
5700
  ``RemoteBranch`` instances.  (Andrew Bennetts)
 
5701
 
 
5702
API Changes
 
5703
***********
 
5704
 
 
5705
* Removed ``Repository.text_store``, ``control_store``, etc.  Instead,
 
5706
  there are new attributes ``texts, inventories, revisions,
 
5707
  signatures``, each of which is a ``VersionedFiles``.  See the
 
5708
  Repository docstring for more details.
 
5709
  (Robert Collins)
 
5710
 
 
5711
* ``Branch.pull`` now accepts an ``_override_hook_target`` optional
 
5712
  parameter.  If you have a subclass of ``Branch`` that overrides
 
5713
  ``pull`` then you should add this parameter.  (Andrew Bennetts)
 
5714
 
 
5715
* ``bzrlib.check.check()`` has been deprecated in favour of the more
 
5716
  aptly-named ``bzrlib.check.check_branch()``.
 
5717
  (Daniel Watkins)
 
5718
 
 
5719
* ``Tree.print_file`` and ``Repository.print_file`` are deprecated.
 
5720
  These methods are bad APIs because they write directly to sys.stdout.
 
5721
  bzrlib does not use them internally, and there are no direct tests
 
5722
  for them. (Alexander Belchenko)
 
5723
 
 
5724
Internals
 
5725
*********
 
5726
 
 
5727
* ``cat`` command no longer uses ``Tree.print_file()`` internally.
 
5728
  (Alexander Belchenko)
 
5729
 
 
5730
* New class method ``BzrDir.open_containing_tree_branch_or_repository``
 
5731
  which eases the discovery of the tree, the branch and the repository
 
5732
  containing a given location.
 
5733
  (Daniel Watkins)
 
5734
 
 
5735
* New ``versionedfile.KeyMapper`` interface to abstract out the access to
 
5736
  underlying .knit/.kndx etc files in repositories with partitioned
 
5737
  storage. (Robert Collins)
 
5738
 
 
5739
* Obsolete developer-use command ``weave-join`` has been removed.
 
5740
  (Robert Collins)
 
5741
 
 
5742
* ``RemoteToOtherFetcher`` and ``get_data_stream_for_search`` removed,
 
5743
  to support new ``VersionedFiles`` layering.
 
5744
  (Robert Collins)
 
5745
 
 
5746
 
 
5747
bzr 1.6beta2
 
5748
############
 
5749
 
 
5750
:Released: 2008-06-10
878
5751
 
879
5752
This release contains further progress towards our 1.6 goals of shallow
880
5753
repositories, and contains a fix for some user-affecting bugs in the
881
5754
repository layer.  Building working trees during checkout and branch is
882
5755
now faster.
883
5756
 
884
 
  BUG FIXES:
885
 
 
886
 
    * Avoid KnitCorrupt error extracting inventories from some repositories.
887
 
      (The data is not corrupt; an internal check is detecting a problem
888
 
      reading from the repository.)
889
 
      (Martin Pool, Andrew Bennetts, Robert Collins, #234748)
890
 
 
891
 
    * ``bzr status`` was breaking if you merged the same revision twice.
892
 
      (John Arbash Meinel, #235407)
893
 
 
894
 
    * Fix infinite loop consuming 100% CPU when a connection is lost while
895
 
      reading a response body via the smart protocol v1 or v2.
896
 
      (Andrew Bennetts)
897
 
      
898
 
    * Inserting a bundle which changes the contents of a file with no trailing
899
 
      end of line, causing a knit snapshot in a 'knits' repository will no longer
900
 
      cause KnitCorrupt. (Robert Collins)
901
 
 
902
 
    * ``RemoteBranch.pull`` needs to return the ``self._real_branch``'s
903
 
      pull result. It was instead just returning None, which breaks ``bzr
904
 
      pull``. (John Arbash Meinel, #238149)
905
 
 
906
 
    * Sanitize branch nick before using it as an attachment filename in
907
 
      ``bzr send``. (Lukáš Lalinský, #210218)
908
 
 
909
 
    * Squash ``inv_entry.symlink_target`` to a plain string when
910
 
      generating DirState details. This prevents from getting a
911
 
      ``UnicodeError`` when you have symlinks and non-ascii filenames.
912
 
      (John Arbash Meinel, #135320)
913
 
 
914
 
  IMPROVEMENTS:
915
 
 
916
 
    * Added the 'alias' command to set/unset and display aliases. (Tim Penhey)
917
 
 
918
 
    * ``added``, ``modified``, and ``unknowns`` behaviour made consistent (all three
919
 
      now quote paths where required). Added ``--null`` option to ``added`` and 
920
 
      ``modified`` (for null-separated unknowns, use ``ls --unknown --null``)
921
 
      (Adrian Wilkins)
922
 
 
923
 
    * Faster branching (1.09x) and lightweight checkouts (1.06x) on large trees.
924
 
      (Ian Clatworthy, Aaron Bentley)
925
 
 
926
 
  DOCUMENTATION:
927
 
 
928
 
    * Added *Bazaar Zen* section to the User Guide. (Ian Clatworthy)
929
 
 
930
 
  TESTING:
931
 
 
932
 
    * Fix the test HTTPServer to be isolated from chdir calls made while it is
933
 
      running, allowing it to be used in blackbox tests. (Robert Collins)
934
 
 
935
 
  API CHANGES:
936
 
 
937
 
    * ``WorkingTree.set_parent_(ids/trees)`` will now filter out revisions
938
 
      which are in the ancestry of other revisions. So if you merge the same
939
 
      tree twice, or merge an ancestor of an existing merge, it will only
940
 
      record the newest. (If you merge a descendent, it will replace its
941
 
      ancestor). (John Arbash Meinel, #235407)
942
 
 
943
 
    * ``RepositoryPolicy.__init__`` now requires stack_on and stack_on_pwd,
944
 
      through the derived classes do not.  (Aaron Bentley)
945
 
 
946
 
  INTERNALS:
947
 
 
948
 
    * ``bzrlib.bzrdir.BzrDir.sprout`` now accepts ``stacked`` to control
949
 
      creating stacked branches. (Robert Collins)
950
 
 
951
 
    * Knit record serialisation is now stricter on what it will accept, to
952
 
      guard against potential internal bugs, or broken input. (Robert Collins)
953
 
 
954
 
 
955
 
bzr 1.6beta1 2008-06-02
956
 
-----------------------
957
 
 
 
5757
Bug Fixes
 
5758
*********
 
5759
 
 
5760
* Avoid KnitCorrupt error extracting inventories from some repositories.
 
5761
  (The data is not corrupt; an internal check is detecting a problem
 
5762
  reading from the repository.)
 
5763
  (Martin Pool, Andrew Bennetts, Robert Collins, #234748)
 
5764
 
 
5765
* ``bzr status`` was breaking if you merged the same revision twice.
 
5766
  (John Arbash Meinel, #235407)
 
5767
 
 
5768
* Fix infinite loop consuming 100% CPU when a connection is lost while
 
5769
  reading a response body via the smart protocol v1 or v2.
 
5770
  (Andrew Bennetts)
 
5771
 
 
5772
* Inserting a bundle which changes the contents of a file with no trailing
 
5773
  end of line, causing a knit snapshot in a 'knits' repository will no longer
 
5774
  cause KnitCorrupt. (Robert Collins)
 
5775
 
 
5776
* ``RemoteBranch.pull`` needs to return the ``self._real_branch``'s
 
5777
  pull result. It was instead just returning None, which breaks ``bzr
 
5778
  pull``. (John Arbash Meinel, #238149)
 
5779
 
 
5780
* Sanitize branch nick before using it as an attachment filename in
 
5781
  ``bzr send``. (Lukáš Lalinský, #210218)
 
5782
 
 
5783
* Squash ``inv_entry.symlink_target`` to a plain string when
 
5784
  generating DirState details. This prevents from getting a
 
5785
  ``UnicodeError`` when you have symlinks and non-ascii filenames.
 
5786
  (John Arbash Meinel, #135320)
 
5787
 
 
5788
Improvements
 
5789
************
 
5790
 
 
5791
* Added the 'alias' command to set/unset and display aliases. (Tim Penhey)
 
5792
 
 
5793
* ``added``, ``modified``, and ``unknowns`` behaviour made consistent (all three
 
5794
  now quote paths where required). Added ``--null`` option to ``added`` and
 
5795
  ``modified`` (for null-separated unknowns, use ``ls --unknown --null``)
 
5796
  (Adrian Wilkins)
 
5797
 
 
5798
* Faster branching (1.09x) and lightweight checkouts (1.06x) on large trees.
 
5799
  (Ian Clatworthy, Aaron Bentley)
 
5800
 
 
5801
Documentation
 
5802
*************
 
5803
 
 
5804
* Added *Bazaar Zen* section to the User Guide. (Ian Clatworthy)
 
5805
 
 
5806
Testing
 
5807
*******
 
5808
 
 
5809
* Fix the test HTTPServer to be isolated from chdir calls made while it is
 
5810
  running, allowing it to be used in blackbox tests. (Robert Collins)
 
5811
 
 
5812
API Changes
 
5813
***********
 
5814
 
 
5815
* ``WorkingTree.set_parent_(ids/trees)`` will now filter out revisions
 
5816
  which are in the ancestry of other revisions. So if you merge the same
 
5817
  tree twice, or merge an ancestor of an existing merge, it will only
 
5818
  record the newest. (If you merge a descendent, it will replace its
 
5819
  ancestor). (John Arbash Meinel, #235407)
 
5820
 
 
5821
* ``RepositoryPolicy.__init__`` now requires stack_on and stack_on_pwd,
 
5822
  through the derived classes do not.  (Aaron Bentley)
 
5823
 
 
5824
Internals
 
5825
*********
 
5826
 
 
5827
* ``bzrlib.bzrdir.BzrDir.sprout`` now accepts ``stacked`` to control
 
5828
  creating stacked branches. (Robert Collins)
 
5829
 
 
5830
* Knit record serialisation is now stricter on what it will accept, to
 
5831
  guard against potential internal bugs, or broken input. (Robert Collins)
 
5832
 
 
5833
bzr 1.6beta1
 
5834
############
 
5835
 
 
5836
:Released: 2008-06-02
958
5837
 
959
5838
Commands that work on the revision history such as push, pull, missing,
960
5839
uncommit and log are now substantially faster.  This release adds a
964
5843
and future extensions.
965
5844
 
966
5845
 
967
 
  NOTES WHEN UPGRADING:
968
 
 
969
 
    * There is a new version of the network protocol used for bzr://, bzr+ssh://
970
 
      and bzr+http:// connections.  This will allow more efficient requests and
971
 
      responses, and more graceful fallback when a server is too old to
972
 
      recognise a request from a more recent client.  Bazaar 1.6 will
973
 
      interoperate with 0.16 and later versions, but servers should be upgraded
974
 
      when possible.  Bazaar 1.6 no longer interoperates with 0.15 and earlier via
975
 
      these protocols.  Use alternatives like SFTP or upgrade those servers.
976
 
      (Andrew Bennetts, #83935)
977
 
 
978
 
  CHANGES:
979
 
 
980
 
    * Deprecation warnings will not be suppressed when running ``bzr selftest``
981
 
      so that developers can see if their code is using deprecated functions.
982
 
      (John Arbash Meinel)
983
 
 
984
 
  FEATURES:
985
 
 
986
 
    * Adding ``-Derror`` will now display a traceback when a plugin fails to
987
 
      load. (James Westby)
988
 
 
989
 
  IMPROVEMENTS:
990
 
 
991
 
    * ``bzr branch/push/pull -r XXX`` now have a helper function for finding
992
 
      the revno of the new revision (``Graph.find_distance_to_null``). This
993
 
      should make something like ``bzr branch -r -100`` in a shared, no-trees
994
 
      repository much snappier. (John Arbash Meinel)
995
 
 
996
 
    * ``bzr log --short -r X..Y`` no longer needs to access the full revision
997
 
      history. This makes it noticeably faster when logging the last few
998
 
      revisions. (John Arbash Meinel)
999
 
 
1000
 
    * ``bzr ls`` now accepts ``-V`` as an alias for ``--versioned``. 
1001
 
      (Jerad Cramp, #165086)
1002
 
 
1003
 
    * ``bzr missing`` uses the new ``Graph.find_unique_ancestors`` and
1004
 
      ``Graph.find_differences`` to determine missing revisions without having
1005
 
      to search the whole ancestry. (John Arbash Meinel, #174625)
1006
 
 
1007
 
    * ``bzr uncommit`` now uses partial history access, rather than always
1008
 
      extracting the full revision history for a branch. This makes it
1009
 
      resolve the appropriate revisions much faster (in testing it drops
1010
 
      uncommit from 1.5s => 0.4s). It also means ``bzr log --short`` is one
1011
 
      step closer to not using full revision history.
1012
 
      (John Arbash Meinel, #172649)
1013
 
 
1014
 
  BUGFIXES:
1015
 
 
1016
 
    * ``bzr merge --lca`` should handle when two revisions have no common
1017
 
      ancestor other than NULL_REVISION. (John Arbash Meinel, #235715)
1018
 
 
1019
 
    * ``bzr status`` was breaking if you merged the same revision twice.
1020
 
      (John Arbash Meinel, #235407)
1021
 
 
1022
 
    * ``bzr push`` with both ``--overwrite`` and ``-r NNN`` options no longer
1023
 
      fails.  (Andrew Bennetts, #234229)
1024
 
      
1025
 
    * Correctly track the base URL of a smart medium when using bzr+http://
1026
 
      URLs, which was causing spurious "No repository present" errors with
1027
 
      branches in shared repositories accessed over bzr+http.
1028
 
      (Andrew Bennetts, #230550)
1029
 
 
1030
 
    * Define ``_remote_is_at_least_1_2`` on ``SmartClientMedium`` so that all
1031
 
      implementations have the attribute.  Fixes 'PyCurlTransport' object has no
1032
 
      attribute '_remote_is_at_least_1_2' attribute errors.
1033
 
      (Andrew Bennetts, #220806)
1034
 
 
1035
 
    * Failure to delete an obsolete pack file should just give a warning
1036
 
      message, not a fatal error.  It may for example fail if the file is still
1037
 
      in use by another process.
1038
 
      (Martin Pool)
1039
 
      
1040
 
    * Fix MemoryError during large fetches over HTTP by limiting the amount of
1041
 
      data we try to read per ``recv`` call.  The problem was observed with
1042
 
      Windows and a proxy, but might affect other environments as well.
1043
 
      (Eric Holmberg, #215426)
1044
 
 
1045
 
    * Handle old merge directives correctly in Merger.from_mergeable.  Stricter
1046
 
      get_parent_map requirements exposed a latent bug here.  (Aaron Bentley)
1047
 
 
1048
 
    * Issue a warning and ignore passwords declared in authentication.conf when
1049
 
      used for an ssh scheme (sftp or bzr+ssh).
1050
 
      (Vincent Ladeuil, #203186)
1051
 
 
1052
 
    * Make both http implementations raise appropriate exceptions on 403
1053
 
      Forbidden when POSTing smart requests.
1054
 
      (Vincent Ladeuil, #230223)
1055
 
 
1056
 
    * Properly *title* header names in http requests instead of capitalizing
1057
 
      them.
1058
 
      (Vincent Ladeuil, #229076)
1059
 
 
1060
 
    * The "Unable to obtain lock" error message now also suggests using
1061
 
      ``bzr break-lock`` to fix it.  (Martin Albisetti, #139202)
1062
 
 
1063
 
    * Treat an encoding of '' as ascii; this can happen when bzr is run
1064
 
      under vim on Mac OS X.
1065
 
      (Neil Martinsen-Burrell)
1066
 
 
1067
 
    * ``VersionedFile.make_mpdiffs()`` was raising an exception that wasn't in
1068
 
      scope. (Daniel Fischer #235687)
1069
 
 
1070
 
  DOCUMENTATION:
1071
 
 
1072
 
    * Added directory structure and started translation of docs in spanish.
1073
 
      (Martin Albisetti, Lucio Albenga)
1074
 
 
1075
 
    * Incorporate feedback from Jelmer Vernooij and Neil Martinsen-Burrell
1076
 
      on the plugin and integration chapters of the User Guide.
1077
 
      (Ian Clatworthy)
1078
 
 
1079
 
    * More Bazaar developer documentation about packaging and release process,
1080
 
      and about use of Python reprs.
1081
 
      (Martin Pool, Martin Albisetti)
1082
 
 
1083
 
    * Updated Tortise strategy document. (Mark Hammond)
1084
 
 
1085
 
  TESTING:
1086
 
 
1087
 
    * ``bzrlib.tests.adapt_tests`` was broken and unused - it has been fixed.
1088
 
      (Robert Collins)
1089
 
 
1090
 
    * Fix the test HTTPServer to be isolated from chdir calls made while it is
1091
 
      running, allowing it to be used in blackbox tests. (Robert Collins)
1092
 
 
1093
 
    * New helper function for splitting test suites
1094
 
      ``split_suite_by_condition``. (Robert Collins)
1095
 
 
1096
 
  INTERNALS:
1097
 
 
1098
 
    * ``Branch.missing_revisions`` has been deprecated. Similar functionality
1099
 
      can be obtained using ``bzrlib.missing.find_unmerged``. The api was
1100
 
      fairly broken, and the function was unused, so we are getting rid of it.
1101
 
      (John Arbash Meinel)
1102
 
 
1103
 
  API CHANGES:
1104
 
 
1105
 
    * ``Branch.abspath`` is deprecated; use the Tree or Transport 
1106
 
      instead.  (Martin Pool)
1107
 
 
1108
 
    * ``Branch.update_revisions`` now takes an optional ``Graph``
1109
 
      object. This can be used by ``update_revisions`` when it is
1110
 
      checking ancestry, and allows callers to prefer request to go to a
1111
 
      local branch.  (John Arbash Meinel)
1112
 
 
1113
 
    * Branch, Repository, Tree and BzrDir should expose a Transport as an
1114
 
      attribute if they have one, rather than having it indirectly accessible
1115
 
      as ``.control_files._transport``.  This doesn't add a requirement
1116
 
      to support a Transport in cases where it was not needed before;
1117
 
      it just simplifies the way it is reached.  (Martin Pool)
1118
 
 
1119
 
    * ``bzr missing --mine-only`` will return status code 0 if you have no
1120
 
      new revisions, but the remote does. Similarly for ``--theirs-only``.
1121
 
      The new code only checks one side, so it doesn't know if the other
1122
 
      side has changes. This seems more accurate with the request anyway.
1123
 
      It also changes the output to print '[This|Other] branch is up to
1124
 
      date.' rather than displaying nothing.  (John Arbash Meinel)
1125
 
 
1126
 
    * ``LockableFiles.put_utf8``, ``put_bytes`` and ``controlfilename``
1127
 
      are now deprecated in favor of using Transport operations.
1128
 
      (Martin Pool)
1129
 
 
1130
 
    * Many methods on ``VersionedFile``, ``Repository`` and in
1131
 
      ``bzrlib.revision``  deprecated before bzrlib 1.5 have been removed.
1132
 
      (Robert Collins)
1133
 
 
1134
 
    * ``RevisionSpec.wants_revision_history`` can be set to False for a given
1135
 
      ``RevisionSpec``. This will disable the existing behavior of passing in
1136
 
      the full revision history to ``self._match_on``. Useful for specs that
1137
 
      don't actually need access to the full history. (John Arbash Meinel)
1138
 
 
1139
 
    * The constructors of ``SmartClientMedium`` and its subclasses now require a
1140
 
      ``base`` parameter.  ``SmartClientMedium`` implementations now also need
1141
 
      to provide a ``remote_path_from_transport`` method.  (Andrew Bennetts)
1142
 
      
1143
 
    * The default permissions for creating new files and directories 
1144
 
      should now be obtained from ``BzrDir._get_file_mode()`` and 
1145
 
      ``_get_dir_mode()``, rather than from LockableFiles.  The ``_set_file_mode``
1146
 
      and ``_set_dir_mode`` variables on LockableFiles which were advertised
1147
 
      as a way for plugins to control this are no longer consulted.
1148
 
      (Martin Pool)
1149
 
 
1150
 
    * ``VersionedFile.join`` is deprecated. This method required local
1151
 
      instances of both versioned file objects and was thus hostile to being
1152
 
      used for streaming from a smart server. The new get_record_stream and
1153
 
      insert_record_stream are meant to efficiently replace this method.
1154
 
      (Robert Collins)
1155
 
 
1156
 
    * ``WorkingTree.set_parent_(ids/trees)`` will now filter out revisions
1157
 
      which are in the ancestry of other revisions. So if you merge the same
1158
 
      tree twice, or merge an ancestor of an existing merge, it will only
1159
 
      record the newest. (If you merge a descendent, it will replace its
1160
 
      ancestor). (John Arbash Meinel, #235407)
1161
 
 
1162
 
    * ``WorkingTreeFormat2.stub_initialize_remote`` is now private.
1163
 
      (Martin Pool) 
1164
 
 
1165
 
 
1166
 
bzr 1.5 2008-05-16
1167
 
------------------
 
5846
Notes When Upgrading
 
5847
********************
 
5848
 
 
5849
* There is a new version of the network protocol used for bzr://, bzr+ssh://
 
5850
  and bzr+http:// connections.  This will allow more efficient requests and
 
5851
  responses, and more graceful fallback when a server is too old to
 
5852
  recognise a request from a more recent client.  Bazaar 1.6 will
 
5853
  interoperate with 0.16 and later versions, but servers should be upgraded
 
5854
  when possible.  Bazaar 1.6 no longer interoperates with 0.15 and earlier via
 
5855
  these protocols.  Use alternatives like SFTP or upgrade those servers.
 
5856
  (Andrew Bennetts, #83935)
 
5857
 
 
5858
Changes
 
5859
*******
 
5860
 
 
5861
* Deprecation warnings will not be suppressed when running ``bzr selftest``
 
5862
  so that developers can see if their code is using deprecated functions.
 
5863
  (John Arbash Meinel)
 
5864
 
 
5865
Features
 
5866
********
 
5867
 
 
5868
* Adding ``-Derror`` will now display a traceback when a plugin fails to
 
5869
  load. (James Westby)
 
5870
 
 
5871
Improvements
 
5872
************
 
5873
 
 
5874
* ``bzr branch/push/pull -r XXX`` now have a helper function for finding
 
5875
  the revno of the new revision (``Graph.find_distance_to_null``). This
 
5876
  should make something like ``bzr branch -r -100`` in a shared, no-trees
 
5877
  repository much snappier. (John Arbash Meinel)
 
5878
 
 
5879
* ``bzr log --short -r X..Y`` no longer needs to access the full revision
 
5880
  history. This makes it noticeably faster when logging the last few
 
5881
  revisions. (John Arbash Meinel)
 
5882
 
 
5883
* ``bzr ls`` now accepts ``-V`` as an alias for ``--versioned``.
 
5884
  (Jerad Cramp, #165086)
 
5885
 
 
5886
* ``bzr missing`` uses the new ``Graph.find_unique_ancestors`` and
 
5887
  ``Graph.find_differences`` to determine missing revisions without having
 
5888
  to search the whole ancestry. (John Arbash Meinel, #174625)
 
5889
 
 
5890
* ``bzr uncommit`` now uses partial history access, rather than always
 
5891
  extracting the full revision history for a branch. This makes it
 
5892
  resolve the appropriate revisions much faster (in testing it drops
 
5893
  uncommit from 1.5s => 0.4s). It also means ``bzr log --short`` is one
 
5894
  step closer to not using full revision history.
 
5895
  (John Arbash Meinel, #172649)
 
5896
 
 
5897
Bugfixes
 
5898
********
 
5899
 
 
5900
* ``bzr merge --lca`` should handle when two revisions have no common
 
5901
  ancestor other than NULL_REVISION. (John Arbash Meinel, #235715)
 
5902
 
 
5903
* ``bzr status`` was breaking if you merged the same revision twice.
 
5904
  (John Arbash Meinel, #235407)
 
5905
 
 
5906
* ``bzr push`` with both ``--overwrite`` and ``-r NNN`` options no longer
 
5907
  fails.  (Andrew Bennetts, #234229)
 
5908
 
 
5909
* Correctly track the base URL of a smart medium when using bzr+http://
 
5910
  URLs, which was causing spurious "No repository present" errors with
 
5911
  branches in shared repositories accessed over bzr+http.
 
5912
  (Andrew Bennetts, #230550)
 
5913
 
 
5914
* Define ``_remote_is_at_least_1_2`` on ``SmartClientMedium`` so that all
 
5915
  implementations have the attribute.  Fixes 'PyCurlTransport' object has no
 
5916
  attribute '_remote_is_at_least_1_2' attribute errors.
 
5917
  (Andrew Bennetts, #220806)
 
5918
 
 
5919
* Failure to delete an obsolete pack file should just give a warning
 
5920
  message, not a fatal error.  It may for example fail if the file is still
 
5921
  in use by another process.
 
5922
  (Martin Pool)
 
5923
 
 
5924
* Fix MemoryError during large fetches over HTTP by limiting the amount of
 
5925
  data we try to read per ``recv`` call.  The problem was observed with
 
5926
  Windows and a proxy, but might affect other environments as well.
 
5927
  (Eric Holmberg, #215426)
 
5928
 
 
5929
* Handle old merge directives correctly in Merger.from_mergeable.  Stricter
 
5930
  get_parent_map requirements exposed a latent bug here.  (Aaron Bentley)
 
5931
 
 
5932
* Issue a warning and ignore passwords declared in authentication.conf when
 
5933
  used for an ssh scheme (sftp or bzr+ssh).
 
5934
  (Vincent Ladeuil, #203186)
 
5935
 
 
5936
* Make both http implementations raise appropriate exceptions on 403
 
5937
  Forbidden when POSTing smart requests.
 
5938
  (Vincent Ladeuil, #230223)
 
5939
 
 
5940
* Properly *title* header names in http requests instead of capitalizing
 
5941
  them.
 
5942
  (Vincent Ladeuil, #229076)
 
5943
 
 
5944
* The "Unable to obtain lock" error message now also suggests using
 
5945
  ``bzr break-lock`` to fix it.  (Martin Albisetti, #139202)
 
5946
 
 
5947
* Treat an encoding of '' as ascii; this can happen when bzr is run
 
5948
  under vim on Mac OS X.
 
5949
  (Neil Martinsen-Burrell)
 
5950
 
 
5951
* ``VersionedFile.make_mpdiffs()`` was raising an exception that wasn't in
 
5952
  scope. (Daniel Fischer #235687)
 
5953
 
 
5954
Documentation
 
5955
*************
 
5956
 
 
5957
* Added directory structure and started translation of docs in spanish.
 
5958
  (Martin Albisetti, Lucio Albenga)
 
5959
 
 
5960
* Incorporate feedback from Jelmer Vernooij and Neil Martinsen-Burrell
 
5961
  on the plugin and integration chapters of the User Guide.
 
5962
  (Ian Clatworthy)
 
5963
 
 
5964
* More Bazaar developer documentation about packaging and release process,
 
5965
  and about use of Python reprs.
 
5966
  (Martin Pool, Martin Albisetti)
 
5967
 
 
5968
* Updated Tortise strategy document. (Mark Hammond)
 
5969
 
 
5970
Testing
 
5971
*******
 
5972
 
 
5973
* ``bzrlib.tests.adapt_tests`` was broken and unused - it has been fixed.
 
5974
  (Robert Collins)
 
5975
 
 
5976
* Fix the test HTTPServer to be isolated from chdir calls made while it is
 
5977
  running, allowing it to be used in blackbox tests. (Robert Collins)
 
5978
 
 
5979
* New helper function for splitting test suites
 
5980
  ``split_suite_by_condition``. (Robert Collins)
 
5981
 
 
5982
Internals
 
5983
*********
 
5984
 
 
5985
* ``Branch.missing_revisions`` has been deprecated. Similar functionality
 
5986
  can be obtained using ``bzrlib.missing.find_unmerged``. The api was
 
5987
  fairly broken, and the function was unused, so we are getting rid of it.
 
5988
  (John Arbash Meinel)
 
5989
 
 
5990
API Changes
 
5991
***********
 
5992
 
 
5993
* ``Branch.abspath`` is deprecated; use the Tree or Transport
 
5994
  instead.  (Martin Pool)
 
5995
 
 
5996
* ``Branch.update_revisions`` now takes an optional ``Graph``
 
5997
  object. This can be used by ``update_revisions`` when it is
 
5998
  checking ancestry, and allows callers to prefer request to go to a
 
5999
  local branch.  (John Arbash Meinel)
 
6000
 
 
6001
* Branch, Repository, Tree and BzrDir should expose a Transport as an
 
6002
  attribute if they have one, rather than having it indirectly accessible
 
6003
  as ``.control_files._transport``.  This doesn't add a requirement
 
6004
  to support a Transport in cases where it was not needed before;
 
6005
  it just simplifies the way it is reached.  (Martin Pool)
 
6006
 
 
6007
* ``bzr missing --mine-only`` will return status code 0 if you have no
 
6008
  new revisions, but the remote does. Similarly for ``--theirs-only``.
 
6009
  The new code only checks one side, so it doesn't know if the other
 
6010
  side has changes. This seems more accurate with the request anyway.
 
6011
  It also changes the output to print '[This|Other] branch is up to
 
6012
  date.' rather than displaying nothing.  (John Arbash Meinel)
 
6013
 
 
6014
* ``LockableFiles.put_utf8``, ``put_bytes`` and ``controlfilename``
 
6015
  are now deprecated in favor of using Transport operations.
 
6016
  (Martin Pool)
 
6017
 
 
6018
* Many methods on ``VersionedFile``, ``Repository`` and in
 
6019
  ``bzrlib.revision``  deprecated before bzrlib 1.5 have been removed.
 
6020
  (Robert Collins)
 
6021
 
 
6022
* ``RevisionSpec.wants_revision_history`` can be set to False for a given
 
6023
  ``RevisionSpec``. This will disable the existing behavior of passing in
 
6024
  the full revision history to ``self._match_on``. Useful for specs that
 
6025
  don't actually need access to the full history. (John Arbash Meinel)
 
6026
 
 
6027
* The constructors of ``SmartClientMedium`` and its subclasses now require a
 
6028
  ``base`` parameter.  ``SmartClientMedium`` implementations now also need
 
6029
  to provide a ``remote_path_from_transport`` method.  (Andrew Bennetts)
 
6030
 
 
6031
* The default permissions for creating new files and directories
 
6032
  should now be obtained from ``BzrDir._get_file_mode()`` and
 
6033
  ``_get_dir_mode()``, rather than from LockableFiles.  The ``_set_file_mode``
 
6034
  and ``_set_dir_mode`` variables on LockableFiles which were advertised
 
6035
  as a way for plugins to control this are no longer consulted.
 
6036
  (Martin Pool)
 
6037
 
 
6038
* ``VersionedFile.join`` is deprecated. This method required local
 
6039
  instances of both versioned file objects and was thus hostile to being
 
6040
  used for streaming from a smart server. The new get_record_stream and
 
6041
  insert_record_stream are meant to efficiently replace this method.
 
6042
  (Robert Collins)
 
6043
 
 
6044
* ``WorkingTree.set_parent_(ids/trees)`` will now filter out revisions
 
6045
  which are in the ancestry of other revisions. So if you merge the same
 
6046
  tree twice, or merge an ancestor of an existing merge, it will only
 
6047
  record the newest. (If you merge a descendent, it will replace its
 
6048
  ancestor). (John Arbash Meinel, #235407)
 
6049
 
 
6050
* ``WorkingTreeFormat2.stub_initialize_remote`` is now private.
 
6051
  (Martin Pool)
 
6052
 
 
6053
 
 
6054
bzr 1.5
 
6055
#######
 
6056
 
 
6057
:Released: 2008-05-16
1168
6058
 
1169
6059
This release of Bazaar includes several updates to the documentation, and fixes
1170
6060
to prepare for making rich root support the default format. Many bugs have been
1171
6061
squashed, including fixes to log, bzr+ssh inter-operation with older servers.
1172
6062
 
1173
 
  CHANGES:
1174
 
 
1175
 
    * Suppress deprecation warnings when bzrlib is a 'final' release. This way
1176
 
      users of packaged software won't be bothered with DeprecationWarnings,
1177
 
      but developers and testers will still see them. (John Arbash Meinel)
1178
 
 
1179
 
  DOCUMENTATION:
1180
 
 
1181
 
    * Incorporate feedback from Jelmer Vernooij and Neil Martinsen-Burrell
1182
 
      on the plugin and integration chapters of the User Guide.
1183
 
      (Ian Clatworthy)
1184
 
 
1185
 
 
1186
 
bzr 1.5rc1 2008-05-09
1187
 
---------------------
1188
 
 
1189
 
  NOTES WHEN UPGRADING:
1190
 
 
1191
 
  CHANGES:
1192
 
 
1193
 
    * Broader support of GNU Emacs mail clients. Set
1194
 
      ``mail_client=emacsclient`` in your bazaar.conf and ``send`` will pop the
1195
 
      bundle in a mail buffer according to the value of ``mail-user-agent``
1196
 
      variable. (Xavier Maillard)
1197
 
 
1198
 
  FEATURES:
1199
 
 
1200
 
  IMPROVEMENTS:
1201
 
 
1202
 
    * Diff now handles revision specs like "branch:" and "submit:" more
1203
 
      efficiently.  (Aaron Bentley, #202928)
1204
 
 
1205
 
    * More friendly error given when attempt to start the smart server
1206
 
      on an address already in use. (Andrea Corbellini, #200575)
1207
 
 
1208
 
    * Pull completes much faster when there is nothing to pull.
1209
 
      (Aaron Bentley)
1210
 
 
1211
 
  BUGFIXES:
1212
 
 
1213
 
    * Authentication.conf can define sections without password.
1214
 
      (Vincent Ladeuil, #199440)
1215
 
 
1216
 
    * Avoid muttering every time a child update does not cause a progress bar
1217
 
      update. (John Arbash Meinel, #213771)
1218
 
 
1219
 
    * ``Branch.reconcile()`` is now implemented. This allows ``bzr reconcile``
1220
 
      to fix when a Branch has a non-canonical mainline history. ``bzr check``
1221
 
      also detects this condition. (John Arbash Meinel, #177855)
1222
 
 
1223
 
    * ``bzr log -r ..X bzr://`` was failing, because it was getting a request
1224
 
      for ``revision_id=None`` which was not a string.
1225
 
      (John Arbash Meinel, #211661)
1226
 
 
1227
 
    * ``bzr commit`` now works with Microsoft's FTP service.
1228
 
      (Andreas Deininger)
1229
 
 
1230
 
    * Catch definitions outside sections in authentication.conf.
1231
 
      (Vincent Ladeuil, #217650)
1232
 
 
1233
 
    * Conversion from non-rich-root to rich-root(-pack) updates inventory
1234
 
      sha1s, even when bundles are used.  (Aaron Bentley, #181391)
1235
 
 
1236
 
    * Conversion from non-rich-root to rich-root(-pack) works correctly even
1237
 
      though search keys are not topologically sorted.  (Aaron Bentley)
1238
 
 
1239
 
    * Conversion from non-rich-root to rich-root(-pack) works even when a
1240
 
      parent revision has a different root id.  (Aaron Bentley, #177874)
1241
 
 
1242
 
    * Disable strace testing until strace is fixed (see bug #103133) and emit a
1243
 
      warning when selftest ends to remind us of leaking tests.
1244
 
      (Vincent Ladeuil, #226769)
1245
 
 
1246
 
    * Fetching all revisions from a repository does not cause pack collisions.
1247
 
      (Robert Collins, Aaron Bentley, #212908)
1248
 
 
1249
 
    * Fix error about "attempt to add line-delta in non-delta knit".
1250
 
      (Andrew Bennetts, #217701)
1251
 
 
1252
 
    * Pushing a branch in "dirstate" format (Branch5) over bzr+ssh would break
1253
 
      if the remote server was < version 1.2. This was due to a bug in the
1254
 
      RemoteRepository.get_parent_map() fallback code.
1255
 
      (John Arbash Meinel, #214894)
1256
 
 
1257
 
    * Remove leftover code in ``bzr_branch`` that inappropriately creates 
1258
 
      a ``branch-name`` file in the branch control directory.
1259
 
      (Martin Pool)
1260
 
 
1261
 
    * Set SO_REUSEADDR on server sockets of ``bzr serve`` to avoid problems
1262
 
      rebinding the socket when starting the server a second time.
1263
 
      (John Arbash Meinel, Martin Pool, #164288)
1264
 
 
1265
 
    * Severe performance degradation in fetching from knit repositories to
1266
 
      knits and packs due to parsing the entire revisions.kndx on every graph
1267
 
      walk iteration fixed by using the Repository.get_graph API.  There was
1268
 
      another regression in knit => knit fetching which re-read the index for
1269
 
      every revision each side had in common.
1270
 
      (Robert Collins, John Arbash Meinel)
1271
 
 
1272
 
    * When logging the changes to a particular file, there was a bug if there
1273
 
      were ghosts in the revision ancestry. (John Arbash Meinel, #209948)
1274
 
 
1275
 
    * xs4all's ftp server returns a temporary error when trying to list an
1276
 
      empty directory, rather than returning an empty list. Adding a
1277
 
      workaround so that we don't get spurious failures.
1278
 
      (John Arbash Meinel, #215522)
1279
 
 
1280
 
  DOCUMENTATION:
1281
 
 
1282
 
    * Expanded the User Guide to include new chapters on popular plugins and
1283
 
      integrating Bazaar into your environment. The *Best practices* chapter
1284
 
      was renamed to *Miscellaneous topics* as suggested by community
1285
 
      feedback as well. (Ian Clatworthy)
1286
 
 
1287
 
    * Document outlining strategies for TortoiseBzr. (Mark Hammond)
1288
 
 
1289
 
    * Improved the documentation on hooks. (Ian Clatworthy)
1290
 
 
1291
 
    * Update authentication docs regarding ssh agents.
1292
 
      (Vincent Ladeuil, #183705)
1293
 
 
1294
 
  TESTING:
1295
 
 
1296
 
    * Add ``thread_name_suffix`` parameter to SmartTCPServer_for_testing, to
1297
 
      make it easy to identify which test spawned a thread with an unhandled
1298
 
      exception. (Andrew Bennetts)
1299
 
 
1300
 
    * New ``--debugflag``/``-E`` option to ``bzr selftest`` for setting
1301
 
      options for debugging tests, these are complementary to the the -D
1302
 
      options.  The ``-Dselftest_debug`` global option has been replaced by the
1303
 
      ``-E=allow_debug`` option for selftest. (Andrew Bennetts)
1304
 
 
1305
 
    * Parameterised test ids are preserved correctly to aid diagnosis of test
1306
 
      failures. (Robert Collins, Andrew Bennetts)
1307
 
 
1308
 
    * selftest now accepts --starting-with <id> to load only the tests whose id
1309
 
      starts with the one specified. This greatly speeds up running the test
1310
 
      suite on a limited set of tests and can be used to run the tests for a
1311
 
      single module, a single class or even a single test.  (Vincent Ladeuil)
1312
 
 
1313
 
    * The test suite modules have been modified to define load_tests() instead
1314
 
      of test_suite(). That speeds up selective loading (via --load-list)
1315
 
      significantly and provides many examples on how to migrate (grep for
1316
 
      load_tests).  (Vincent Ladeuil)
1317
 
 
1318
 
  INTERNALS:
1319
 
 
1320
 
    * ``Hooks.install_hook`` is now deprecated in favour of
1321
 
      ``Hooks.install_named_hook`` which adds a required ``name`` parameter, to
1322
 
      avoid having to call ``Hooks.name_hook``. (Daniel Watkins)
1323
 
 
1324
 
    * Implement xml8 serializer.  (Aaron Bentley)
1325
 
 
1326
 
    * New form ``@deprecated_method(deprecated_in(1, 5, 0))`` for making 
1327
 
      deprecation wrappers.  (Martin Pool)
1328
 
 
1329
 
    * ``Repository.revision_parents`` is now deprecated in favour of 
1330
 
      ``Repository.get_parent_map([revid])[revid]``. (Jelmer Vernooij)
1331
 
 
1332
 
    * The Python ``assert`` statement is no longer used in Bazaar source, and 
1333
 
      a test checks this.  (Martin Pool)
1334
 
 
1335
 
  API CHANGES:
1336
 
 
1337
 
    * ``bzrlib.status.show_pending_merges`` requires the repository to be
1338
 
      locked by the caller. Callers should have been doing it anyway, but it
1339
 
      will now raise an exception if they do not. (John Arbash Meinel)
1340
 
 
1341
 
    * Repository.get_data_stream, Repository.get_data_stream_for_search(),
1342
 
      Repository.get_deltas_for_revsions(), Repository.revision_trees(),
1343
 
      Repository.item_keys_introduced_by() no longer take read locks.
1344
 
      (Aaron Bentley)
1345
 
 
1346
 
    * ``LockableFiles.get_utf8`` and ``.get`` are deprecated, as a start
1347
 
      towards removing LockableFiles and ``.control_files`` entirely.
1348
 
      (Martin Pool)
1349
 
 
1350
 
    * Methods deprecated prior to 1.1 have been removed.
1351
 
      (Martin Pool)
1352
 
 
1353
 
 
1354
 
bzr 1.4 2008-04-28
1355
 
------------------
 
6063
Changes
 
6064
*******
 
6065
 
 
6066
* Suppress deprecation warnings when bzrlib is a 'final' release. This way
 
6067
  users of packaged software won't be bothered with DeprecationWarnings,
 
6068
  but developers and testers will still see them. (John Arbash Meinel)
 
6069
 
 
6070
Documentation
 
6071
*************
 
6072
 
 
6073
* Incorporate feedback from Jelmer Vernooij and Neil Martinsen-Burrell
 
6074
  on the plugin and integration chapters of the User Guide.
 
6075
  (Ian Clatworthy)
 
6076
 
 
6077
 
 
6078
bzr 1.5rc1
 
6079
##########
 
6080
 
 
6081
:Released: 2008-05-09
 
6082
 
 
6083
Changes
 
6084
*******
 
6085
 
 
6086
* Broader support of GNU Emacs mail clients. Set
 
6087
  ``mail_client=emacsclient`` in your bazaar.conf and ``send`` will pop the
 
6088
  bundle in a mail buffer according to the value of ``mail-user-agent``
 
6089
  variable. (Xavier Maillard)
 
6090
 
 
6091
Improvements
 
6092
************
 
6093
 
 
6094
* Diff now handles revision specs like "branch:" and "submit:" more
 
6095
  efficiently.  (Aaron Bentley, #202928)
 
6096
 
 
6097
* More friendly error given when attempt to start the smart server
 
6098
  on an address already in use. (Andrea Corbellini, #200575)
 
6099
 
 
6100
* Pull completes much faster when there is nothing to pull.
 
6101
  (Aaron Bentley)
 
6102
 
 
6103
Bugfixes
 
6104
********
 
6105
 
 
6106
* Authentication.conf can define sections without password.
 
6107
  (Vincent Ladeuil, #199440)
 
6108
 
 
6109
* Avoid muttering every time a child update does not cause a progress bar
 
6110
  update. (John Arbash Meinel, #213771)
 
6111
 
 
6112
* ``Branch.reconcile()`` is now implemented. This allows ``bzr reconcile``
 
6113
  to fix when a Branch has a non-canonical mainline history. ``bzr check``
 
6114
  also detects this condition. (John Arbash Meinel, #177855)
 
6115
 
 
6116
* ``bzr log -r ..X bzr://`` was failing, because it was getting a request
 
6117
  for ``revision_id=None`` which was not a string.
 
6118
  (John Arbash Meinel, #211661)
 
6119
 
 
6120
* ``bzr commit`` now works with Microsoft's FTP service.
 
6121
  (Andreas Deininger)
 
6122
 
 
6123
* Catch definitions outside sections in authentication.conf.
 
6124
  (Vincent Ladeuil, #217650)
 
6125
 
 
6126
* Conversion from non-rich-root to rich-root(-pack) updates inventory
 
6127
  sha1s, even when bundles are used.  (Aaron Bentley, #181391)
 
6128
 
 
6129
* Conversion from non-rich-root to rich-root(-pack) works correctly even
 
6130
  though search keys are not topologically sorted.  (Aaron Bentley)
 
6131
 
 
6132
* Conversion from non-rich-root to rich-root(-pack) works even when a
 
6133
  parent revision has a different root id.  (Aaron Bentley, #177874)
 
6134
 
 
6135
* Disable strace testing until strace is fixed (see bug #103133) and emit a
 
6136
  warning when selftest ends to remind us of leaking tests.
 
6137
  (Vincent Ladeuil, #226769)
 
6138
 
 
6139
* Fetching all revisions from a repository does not cause pack collisions.
 
6140
  (Robert Collins, Aaron Bentley, #212908)
 
6141
 
 
6142
* Fix error about "attempt to add line-delta in non-delta knit".
 
6143
  (Andrew Bennetts, #217701)
 
6144
 
 
6145
* Pushing a branch in "dirstate" format (Branch5) over bzr+ssh would break
 
6146
  if the remote server was < version 1.2. This was due to a bug in the
 
6147
  RemoteRepository.get_parent_map() fallback code.
 
6148
  (John Arbash Meinel, #214894)
 
6149
 
 
6150
* Remove leftover code in ``bzr_branch`` that inappropriately creates
 
6151
  a ``branch-name`` file in the branch control directory.
 
6152
  (Martin Pool)
 
6153
 
 
6154
* Set SO_REUSEADDR on server sockets of ``bzr serve`` to avoid problems
 
6155
  rebinding the socket when starting the server a second time.
 
6156
  (John Arbash Meinel, Martin Pool, #164288)
 
6157
 
 
6158
* Severe performance degradation in fetching from knit repositories to
 
6159
  knits and packs due to parsing the entire revisions.kndx on every graph
 
6160
  walk iteration fixed by using the Repository.get_graph API.  There was
 
6161
  another regression in knit => knit fetching which re-read the index for
 
6162
  every revision each side had in common.
 
6163
  (Robert Collins, John Arbash Meinel)
 
6164
 
 
6165
* When logging the changes to a particular file, there was a bug if there
 
6166
  were ghosts in the revision ancestry. (John Arbash Meinel, #209948)
 
6167
 
 
6168
* xs4all's ftp server returns a temporary error when trying to list an
 
6169
  empty directory, rather than returning an empty list. Adding a
 
6170
  workaround so that we don't get spurious failures.
 
6171
  (John Arbash Meinel, #215522)
 
6172
 
 
6173
Documentation
 
6174
*************
 
6175
 
 
6176
* Expanded the User Guide to include new chapters on popular plugins and
 
6177
  integrating Bazaar into your environment. The *Best practices* chapter
 
6178
  was renamed to *Miscellaneous topics* as suggested by community
 
6179
  feedback as well. (Ian Clatworthy)
 
6180
 
 
6181
* Document outlining strategies for TortoiseBzr. (Mark Hammond)
 
6182
 
 
6183
* Improved the documentation on hooks. (Ian Clatworthy)
 
6184
 
 
6185
* Update authentication docs regarding ssh agents.
 
6186
  (Vincent Ladeuil, #183705)
 
6187
 
 
6188
Testing
 
6189
*******
 
6190
 
 
6191
* Add ``thread_name_suffix`` parameter to SmartTCPServer_for_testing, to
 
6192
  make it easy to identify which test spawned a thread with an unhandled
 
6193
  exception. (Andrew Bennetts)
 
6194
 
 
6195
* New ``--debugflag``/``-E`` option to ``bzr selftest`` for setting
 
6196
  options for debugging tests, these are complementary to the -D
 
6197
  options.  The ``-Dselftest_debug`` global option has been replaced by the
 
6198
  ``-E=allow_debug`` option for selftest. (Andrew Bennetts)
 
6199
 
 
6200
* Parameterised test ids are preserved correctly to aid diagnosis of test
 
6201
  failures. (Robert Collins, Andrew Bennetts)
 
6202
 
 
6203
* selftest now accepts --starting-with <id> to load only the tests whose id
 
6204
  starts with the one specified. This greatly speeds up running the test
 
6205
  suite on a limited set of tests and can be used to run the tests for a
 
6206
  single module, a single class or even a single test.  (Vincent Ladeuil)
 
6207
 
 
6208
* The test suite modules have been modified to define load_tests() instead
 
6209
  of test_suite(). That speeds up selective loading (via --load-list)
 
6210
  significantly and provides many examples on how to migrate (grep for
 
6211
  load_tests).  (Vincent Ladeuil)
 
6212
 
 
6213
Internals
 
6214
*********
 
6215
 
 
6216
* ``Hooks.install_hook`` is now deprecated in favour of
 
6217
  ``Hooks.install_named_hook`` which adds a required ``name`` parameter, to
 
6218
  avoid having to call ``Hooks.name_hook``. (Daniel Watkins)
 
6219
 
 
6220
* Implement xml8 serializer.  (Aaron Bentley)
 
6221
 
 
6222
* New form ``@deprecated_method(deprecated_in(1, 5, 0))`` for making
 
6223
  deprecation wrappers.  (Martin Pool)
 
6224
 
 
6225
* ``Repository.revision_parents`` is now deprecated in favour of
 
6226
  ``Repository.get_parent_map([revid])[revid]``. (Jelmer Vernooij)
 
6227
 
 
6228
* The Python ``assert`` statement is no longer used in Bazaar source, and
 
6229
  a test checks this.  (Martin Pool)
 
6230
 
 
6231
API Changes
 
6232
***********
 
6233
 
 
6234
* ``bzrlib.status.show_pending_merges`` requires the repository to be
 
6235
  locked by the caller. Callers should have been doing it anyway, but it
 
6236
  will now raise an exception if they do not. (John Arbash Meinel)
 
6237
 
 
6238
* Repository.get_data_stream, Repository.get_data_stream_for_search(),
 
6239
  Repository.get_deltas_for_revsions(), Repository.revision_trees(),
 
6240
  Repository.item_keys_introduced_by() no longer take read locks.
 
6241
  (Aaron Bentley)
 
6242
 
 
6243
* ``LockableFiles.get_utf8`` and ``.get`` are deprecated, as a start
 
6244
  towards removing LockableFiles and ``.control_files`` entirely.
 
6245
  (Martin Pool)
 
6246
 
 
6247
* Methods deprecated prior to 1.1 have been removed.
 
6248
  (Martin Pool)
 
6249
 
 
6250
 
 
6251
bzr 1.4 
 
6252
#######
 
6253
 
 
6254
:Released: 2008-04-28
1356
6255
 
1357
6256
This release of Bazaar includes handy improvements to the speed of log and
1358
6257
status, new options for several commands, improved documentation, and better
1362
6261
internal work in both the repository and network code to enable new features
1363
6262
and faster performance.
1364
6263
 
1365
 
  BUG FIXES:
1366
 
 
1367
 
    * Pushing a branch in "dirstate" format (Branch5) over bzr+ssh would break
1368
 
      if the remote server was < version 1.2.  This was due to a bug in the
1369
 
      RemoteRepository.get_parent_map() fallback code.
1370
 
      (John Arbash Meinel, Andrew Bennetts, #214894)
1371
 
 
1372
 
 
1373
 
bzr 1.4rc2 2008-04-21
1374
 
---------------------
1375
 
 
1376
 
  BUG FIXES:
1377
 
 
1378
 
    * ``bzr log -r ..X bzr://`` was failing, because it was getting a request
1379
 
      for ``revision_id=None`` which was not a string.
1380
 
      (John Arbash Meinel, #211661)
1381
 
 
1382
 
    * Fixed a bug in handling ghost revisions when logging changes in a 
1383
 
      particular file.  (John Arbash Meinel, #209948)
1384
 
 
1385
 
    * Fix error about "attempt to add line-delta in non-delta knit".
1386
 
      (Andrew Bennetts, #205156)
1387
 
 
1388
 
    * Fixed performance degradation in fetching from knit repositories to
1389
 
      knits and packs due to parsing the entire revisions.kndx on every graph
1390
 
      walk iteration fixed by using the Repository.get_graph API.  There was
1391
 
      another regression in knit => knit fetching which re-read the index for
1392
 
      every revision each side had in common.
1393
 
      (Robert Collins, John Arbash Meinel)
1394
 
 
1395
 
 
1396
 
bzr 1.4rc1 2008-04-11
1397
 
---------------------
1398
 
 
1399
 
  CHANGES:
1400
 
 
1401
 
   * bzr main script cannot be imported (Benjamin Peterson)
1402
 
 
1403
 
   * On Linux bzr additionally looks for plugins in arch-independent site
1404
 
     directory. (Toshio Kuratomi)
1405
 
 
1406
 
   * The ``set_rh`` branch hook is now deprecated. Please migrate
1407
 
     any plugins using this hook to use an alternative, e.g.
1408
 
     ``post_change_branch_tip``. (Ian Clatworthy)
1409
 
 
1410
 
   * When a plugin cannot be loaded as the file path is not a valid
1411
 
     python module name bzr will now strip a ``bzr_`` prefix from the
1412
 
     front of the suggested name, as many plugins (e.g. bzr-svn)
1413
 
     want to be installed without this prefix. It is a common mistake
1414
 
     to have a folder named "bzr-svn" for that plugin, especially
1415
 
     as this is what bzr branch lp:bzr-svn will give you. (James Westby,
1416
 
     Andrew Cowie)
1417
 
 
1418
 
   * UniqueIntegerBugTracker now appends bug-ids instead of joining
1419
 
     them to the base URL. Plugins that register bug trackers may
1420
 
     need a trailing / added to the base URL if one is not already there.
1421
 
     (James Wesby, Andrew Cowie)
1422
 
 
1423
 
  FEATURES:
1424
 
 
1425
 
    * Added start_commit hook for mutable trees. (Jelmer Vernooij, #186422)
1426
 
 
1427
 
    * ``status`` now accepts ``--no-pending`` to show the status without
1428
 
      listing pending merges, which speeds up the command a lot on large
1429
 
      histories.  (James Westby, #202830)
1430
 
 
1431
 
    * New ``post_change_branch_tip`` hook that is called after the
1432
 
      branch tip is moved but while the branch is still write-locked.
1433
 
      See the User Reference for signature details.
1434
 
      (Ian Clatworthy, James Henstridge)
1435
 
 
1436
 
    * Reconfigure can convert a branch to be standalone or to use a shared
1437
 
      repository.  (Aaron Bentley)
1438
 
 
1439
 
  IMPROVEMENTS:
1440
 
 
1441
 
    * The smart protocol now has support for setting branches' revision info
1442
 
      directly.  This should make operations like push slightly faster, and is a
1443
 
      step towards server-side hooks.  The new request method name is
1444
 
      ``Branch.set_last_revision_info``.  (Andrew Bennetts)
1445
 
 
1446
 
    * ``bzr commit --fixes`` now recognises "gnome" as a tag by default.
1447
 
      (James Westby, Andrew Cowie)
1448
 
 
1449
 
    * ``bzr switch`` will attempt to find branches to switch to relative to the
1450
 
      current branch. E.g. ``bzr switch branchname`` will look for
1451
 
      ``current_branch/../branchname``. (Robert Collins, Jelmer Vernooij,
1452
 
      Wouter van Heyst)
1453
 
 
1454
 
    * Diff is now more specific about execute-bit changes it describes
1455
 
      (Chad Miller)
1456
 
 
1457
 
    * Fetching data over HTTP is a bit faster when urllib is used.  This is done
1458
 
      by forcing it to recv 64k at a time when reading lines in HTTP headers,
1459
 
      rather than just 1 byte at a time.  (Andrew Bennetts)
1460
 
 
1461
 
    * Log --short and --line are much faster when -r is not specified.
1462
 
      (Aaron Bentley)
1463
 
 
1464
 
    * Merge is faster.  We no longer check a file's existence unnecessarily
1465
 
      when merging the execute bit.  (Aaron Bentley)
1466
 
 
1467
 
    * ``bzr status`` on an explicit list of files no longer shows pending
1468
 
      merges, making it much faster on large trees. (John Arbash Meinel)
1469
 
 
1470
 
    * The launchpad directory service now warns the user if they have not set
1471
 
      their launchpad login and are trying to resolve a URL using it, just
1472
 
      in case they want to do a write operation with it.  (James Westby)
1473
 
 
1474
 
    * The smart protocol client is slightly faster, because it now only queries
1475
 
      the server for the protocol version once per connection.  Also, the HTTP
1476
 
      transport will now automatically probe for and use a smart server if
1477
 
      one is present.  You can use the new ``nosmart+`` transport decorator
1478
 
      to get the old behaviour.  (Andrew Bennetts)
1479
 
 
1480
 
    * The ``version`` command takes a ``--short`` option to print just the
1481
 
      version number, for easier use in scripts.  (Martin Pool)
1482
 
 
1483
 
    * Various operations with revision specs and commands that calculate
1484
 
      revnos and revision ids are faster.  (John A. Meinel, Aaron Bentley)
1485
 
 
1486
 
  BUGFIXES:
1487
 
 
1488
 
    * Add ``root_client_path`` parameter to SmartWSGIApp and
1489
 
      SmartServerRequest.  This makes it possible to publish filesystem
1490
 
      locations that don't exactly match URL paths. SmartServerRequest
1491
 
      subclasses should use the new ``translate_client_path`` and
1492
 
      ``transport_from_client_path`` methods when dealing with paths received
1493
 
      from a client to take this into account.  (Andrew Bennetts, #124089)
1494
 
 
1495
 
    * ``bzr mv a b`` can be now used also to rename previously renamed
1496
 
      directories, not only files. (Lukáš Lalinský, #107967)
1497
 
 
1498
 
    * ``bzr uncommit --local`` can now remove revisions from the local
1499
 
      branch to be symmetric with ``bzr commit --local``.
1500
 
      (John Arbash Meinel, #93412)
1501
 
 
1502
 
    * Don't ask for a password if there is no real terminal.
1503
 
      (Alexander Belchenko, #69851)
1504
 
 
1505
 
    * Fix a bug causing a ValueError crash in ``parse_line_delta_iter`` when
1506
 
      fetching revisions from a knit to pack repository or vice versa using
1507
 
      bzr:// (including over http or ssh).
1508
 
      (#208418, Andrew Bennetts, Martin Pool, Robert Collins)
1509
 
 
1510
 
    * Fixed ``_get_line`` in ``bzrlib.smart.medium``, which was buggy.  Also
1511
 
      fixed ``_get_bytes`` in the same module to use the push back buffer.
1512
 
      These bugs had no known impact in normal use, but were problematic for
1513
 
      developers working on the code, and were likely to cause real bugs sooner
1514
 
      or later.  (Andrew Bennetts)
1515
 
 
1516
 
    * Implement handling of basename parameter for DefaultMail.  (James Westby)
1517
 
 
1518
 
    * Incompatibility with Paramiko versions newer than 1.7.2 was fixed.
1519
 
      (Andrew Bennetts, #213425)
1520
 
 
1521
 
    * Launchpad locations (lp: URLs) can be pulled.  (Aaron Bentley, #181945)
1522
 
 
1523
 
    * Merges that add files to deleted root directories complete.  They
1524
 
      do create conflicts.  (Aaron Bentley, #210092)
1525
 
 
1526
 
    * vsftp's return ``550 RNFR command failed.`` supported.
1527
 
      (Marcus Trautwig, #129786)
1528
 
 
1529
 
  DOCUMENTATION:
1530
 
 
1531
 
    * Improved documentation on send/merge relationship. (Peter Schuller)
1532
 
 
1533
 
    * Minor fixes to the User Guide. (Matthew Fuller)
1534
 
 
1535
 
    * Reduced the evangelism in the User Guide. (Ian Clatworthy)
1536
 
 
1537
 
    * Added Integrating with Bazaar document for developers (Martin Albisetti)
1538
 
 
1539
 
  API BREAKS:
1540
 
 
1541
 
    * Attempting to pull data from a ghost aware repository (e.g. knits) into a
1542
 
      non-ghost aware repository such as weaves will now fail if there are
1543
 
      ghosts.  (Robert Collins)
1544
 
 
1545
 
    * ``KnitVersionedFile`` no longer accepts an ``access_mode`` parameter, and
1546
 
      now requires the ``index`` and ``access_method`` parameters to be
1547
 
      supplied. A compatible shim has been kept in the new function
1548
 
      ``knit.make_file_knit``. (Robert Collins)
1549
 
 
1550
 
    * Log formatters must now provide log_revision instead of show and
1551
 
      show_merge_revno methods. The latter had been deprecated since the 0.17
1552
 
      release. (James Westby)
1553
 
 
1554
 
    * ``LoopbackSFTP`` is now called ``SocketAsChannelAdapter``.
1555
 
      (Andrew Bennetts)
1556
 
 
1557
 
    * ``osutils.backup_file`` is removed. (Alexander Belchenko)
1558
 
 
1559
 
    * ``Repository.get_revision_graph`` is deprecated, with no replacement
1560
 
      method. The method was size(history) and not desirable. (Robert Collins)
1561
 
 
1562
 
    * ``revision.revision_graph`` is deprecated, with no replacement function.
1563
 
      The function was size(history) and not desirable. (Robert Collins)
1564
 
 
1565
 
    * ``Transport.get_shared_medium`` is deprecated.  Use
1566
 
      ``Transport.get_smart_medium`` instead.  (Andrew Bennetts)
1567
 
 
1568
 
    * ``VersionedFile`` factories now accept a get_scope parameter rather
1569
 
      than using a call to ``transaction_finished``, allowing the removal of
1570
 
      the fixed list of versioned files per repository. (Robert Collins)
1571
 
 
1572
 
    * ``VersionedFile.annotate_iter`` is deprecated. While in principle this
1573
 
      allowed lower memory use, all users of annotations wanted full file 
1574
 
      annotations, and there is no storage format suitable for incremental
1575
 
      line-by-line annotation. (Robert Collins)
1576
 
 
1577
 
    * ``VersionedFile.clone_text`` is deprecated. This performance optimisation
1578
 
      is no longer used - reading the content of a file that is undergoing a
1579
 
      file level merge to identical state on two branches is rare enough, and
1580
 
      not expensive enough to special case. (Robert Collins)
1581
 
 
1582
 
    * ``VersionedFile.clear_cache`` and ``enable_cache`` are deprecated.
1583
 
      These methods added significant complexity to the ``VersionedFile``
1584
 
      implementation, but were only used for optimising fetches from knits - 
1585
 
      which can be done from outside the knit layer, or via a caching
1586
 
      decorator. As knits are not the default format, the complexity is no
1587
 
      longer worth paying. (Robert Collins)
1588
 
 
1589
 
    * ``VersionedFile.create_empty`` is removed. This method presupposed a
1590
 
      sensible mapping to a transport for individual files, but pack backed
1591
 
      versioned files have no such mapping. (Robert Collins)
1592
 
 
1593
 
    * ``VersionedFile.get_graph`` is deprecated, with no replacement method.
1594
 
      The method was size(history) and not desirable. (Robert Collins)
1595
 
 
1596
 
    * ``VersionedFile.get_graph_with_ghosts`` is deprecated, with no
1597
 
      replacement method.  The method was size(history) and not desirable.
1598
 
      (Robert Collins)
1599
 
 
1600
 
    * ``VersionedFile.get_parents`` is deprecated, please use
1601
 
      ``VersionedFile.get_parent_map``. (Robert Collins)
1602
 
 
1603
 
    * ``VersionedFile.get_sha1`` is deprecated, please use
1604
 
      ``VersionedFile.get_sha1s``. (Robert Collins)
1605
 
 
1606
 
    * ``VersionedFile.has_ghost`` is now deprecated, as it is both expensive
1607
 
      and unused outside of a single test. (Robert Collins)
1608
 
 
1609
 
    * ``VersionedFile.iter_parents`` is now deprecated in favour of
1610
 
      ``get_parent_map`` which can be used to instantiate a Graph on a
1611
 
      VersionedFile. (Robert Collins)
1612
 
 
1613
 
    * ``VersionedFileStore`` no longer uses the transaction parameter given
1614
 
      to most methods; amongst other things this means that the
1615
 
      get_weave_or_empty method no longer guarantees errors on a missing weave
1616
 
      in a readonly transaction, and no longer caches versioned file instances
1617
 
      which reduces memory pressure (but requires more careful management by
1618
 
      callers to preserve performance). (Robert Collins)
1619
 
 
1620
 
  TESTING:
1621
 
 
1622
 
    * New -Dselftest_debug flag disables clearing of the debug flags during
1623
 
      tests.  This is useful if you want to use e.g. -Dhpss to help debug a
1624
 
      failing test.  Be aware that using this feature is likely to cause
1625
 
      spurious test failures if used with the full suite. (Andrew Bennetts)
1626
 
 
1627
 
    * selftest --load-list now uses a new more agressive test loader that will
1628
 
      avoid loading unneeded modules and building their tests. Plugins can use
1629
 
      this new loader by defining a load_tests function instead of a test_suite
1630
 
      function. (a forthcoming patch will provide many examples on how to
1631
 
      implement this).
1632
 
      (Vincent Ladeuil)
1633
 
 
1634
 
    * selftest --load-list now does some sanity checks regarding duplicate test
1635
 
      IDs and tests present in the list but not found in the actual test suite.
1636
 
      (Vincent Ladeuil)
1637
 
 
1638
 
    * Slightly more concise format for the selftest progress bar, so there's
1639
 
      more space to show the test name.  (Martin Pool) ::
1640
 
 
1641
 
        [2500/10884, 1fail, 3miss in 1m29s] test_revisionnamespaces.TestRev
1642
 
 
1643
 
    * The test suite takes much less memory to run, and is a bit faster.  This
1644
 
      is done by clearing most attributes of TestCases after running them, if
1645
 
      they succeeded.  (Andrew Bennetts)
1646
 
 
1647
 
  INTERNALS:
1648
 
 
1649
 
    * Added ``_build_client_protocol`` to ``_SmartClient``.  (Andrew Bennetts)
1650
 
 
1651
 
    * Added basic infrastructure for automatic plugin suggestion.
1652
 
      (Martin Albisetti)
1653
 
 
1654
 
    * If a ``LockableFiles`` object is not explicitly unlocked (for example
1655
 
      because of a missing ``try/finally`` block, it will give a warning but
1656
 
      not automatically unlock itself.  (Previously they did.)  This
1657
 
      sometimes caused knock-on errors if for example the network connection
1658
 
      had already failed, and should not be relied upon by code. 
1659
 
      (Martin Pool, #109520)
1660
 
 
1661
 
    * ``make dist`` target to build a release tarball, and also 
1662
 
      ``check-dist-tarball`` and ``dist-upload-escudero``.  (Martin Pool)
1663
 
 
1664
 
    * The ``read_response_tuple`` method of ``SmartClientRequestProtocol*``
1665
 
      classes will now raise ``UnknownSmartMethod`` when appropriate, so that
1666
 
      callers don't need to try distinguish unknown request errors from other
1667
 
      errors.  (Andrew Bennetts)
1668
 
 
1669
 
    * ``set_make_working_trees`` is now implemented provided on all repository
1670
 
      implementations (Aaron Bentley)
1671
 
 
1672
 
    * ``VersionedFile`` now has a new method ``get_parent_map`` which, like
1673
 
      ``Graph.get_parent_map`` returns a dict of key:parents. (Robert Collins)
1674
 
 
1675
 
 
1676
 
bzr 1.3.1 2008-04-09
1677
 
--------------------
1678
 
 
1679
 
  No changes from 1.3.1rc1.
1680
 
 
1681
 
 
1682
 
bzr 1.3rc1 2008-04-04
1683
 
---------------------
1684
 
 
1685
 
  BUG FIXES:
1686
 
 
1687
 
    * Fix a bug causing a ValueError crash in ``parse_line_delta_iter`` when
1688
 
      fetching revisions from a knit to pack repository or vice versa using
1689
 
      bzr:// (including over http or ssh).  
1690
 
      (#208418, Andrew Bennetts, Martin Pool, Robert Collins)
1691
 
 
1692
 
 
1693
 
bzr 1.3 2008-03-20
1694
 
------------------
 
6264
Bug Fixes
 
6265
*********
 
6266
 
 
6267
* Pushing a branch in "dirstate" format (Branch5) over bzr+ssh would break
 
6268
  if the remote server was < version 1.2.  This was due to a bug in the
 
6269
  RemoteRepository.get_parent_map() fallback code.
 
6270
  (John Arbash Meinel, Andrew Bennetts, #214894)
 
6271
 
 
6272
 
 
6273
bzr 1.4rc2
 
6274
##########
 
6275
 
 
6276
:Released: 2008-04-21
 
6277
 
 
6278
Bug Fixes
 
6279
*********
 
6280
 
 
6281
* ``bzr log -r ..X bzr://`` was failing, because it was getting a request
 
6282
  for ``revision_id=None`` which was not a string.
 
6283
  (John Arbash Meinel, #211661)
 
6284
 
 
6285
* Fixed a bug in handling ghost revisions when logging changes in a
 
6286
  particular file.  (John Arbash Meinel, #209948)
 
6287
 
 
6288
* Fix error about "attempt to add line-delta in non-delta knit".
 
6289
  (Andrew Bennetts, #205156)
 
6290
 
 
6291
* Fixed performance degradation in fetching from knit repositories to
 
6292
  knits and packs due to parsing the entire revisions.kndx on every graph
 
6293
  walk iteration fixed by using the Repository.get_graph API.  There was
 
6294
  another regression in knit => knit fetching which re-read the index for
 
6295
  every revision each side had in common.
 
6296
  (Robert Collins, John Arbash Meinel)
 
6297
 
 
6298
 
 
6299
bzr 1.4rc1
 
6300
##########
 
6301
 
 
6302
:Released: 2008-04-11
 
6303
 
 
6304
Changes
 
6305
*******
 
6306
 
 
6307
* bzr main script cannot be imported (Benjamin Peterson)
 
6308
 
 
6309
* On Linux bzr additionally looks for plugins in arch-independent site
 
6310
  directory. (Toshio Kuratomi)
 
6311
 
 
6312
* The ``set_rh`` branch hook is now deprecated. Please migrate
 
6313
  any plugins using this hook to use an alternative, e.g.
 
6314
  ``post_change_branch_tip``. (Ian Clatworthy)
 
6315
 
 
6316
* When a plugin cannot be loaded as the file path is not a valid
 
6317
  python module name bzr will now strip a ``bzr_`` prefix from the
 
6318
  front of the suggested name, as many plugins (e.g. bzr-svn)
 
6319
  want to be installed without this prefix. It is a common mistake
 
6320
  to have a folder named "bzr-svn" for that plugin, especially
 
6321
  as this is what bzr branch lp:bzr-svn will give you. (James Westby,
 
6322
  Andrew Cowie)
 
6323
 
 
6324
* UniqueIntegerBugTracker now appends bug-ids instead of joining
 
6325
  them to the base URL. Plugins that register bug trackers may
 
6326
  need a trailing / added to the base URL if one is not already there.
 
6327
  (James Wesby, Andrew Cowie)
 
6328
 
 
6329
Features
 
6330
********
 
6331
 
 
6332
* Added start_commit hook for mutable trees. (Jelmer Vernooij, #186422)
 
6333
 
 
6334
* ``status`` now accepts ``--no-pending`` to show the status without
 
6335
  listing pending merges, which speeds up the command a lot on large
 
6336
  histories.  (James Westby, #202830)
 
6337
 
 
6338
* New ``post_change_branch_tip`` hook that is called after the
 
6339
  branch tip is moved but while the branch is still write-locked.
 
6340
  See the User Reference for signature details.
 
6341
  (Ian Clatworthy, James Henstridge)
 
6342
 
 
6343
* Reconfigure can convert a branch to be standalone or to use a shared
 
6344
  repository.  (Aaron Bentley)
 
6345
 
 
6346
Improvements
 
6347
************
 
6348
 
 
6349
* The smart protocol now has support for setting branches' revision info
 
6350
  directly.  This should make operations like push slightly faster, and is a
 
6351
  step towards server-side hooks.  The new request method name is
 
6352
  ``Branch.set_last_revision_info``.  (Andrew Bennetts)
 
6353
 
 
6354
* ``bzr commit --fixes`` now recognises "gnome" as a tag by default.
 
6355
  (James Westby, Andrew Cowie)
 
6356
 
 
6357
* ``bzr switch`` will attempt to find branches to switch to relative to the
 
6358
  current branch. E.g. ``bzr switch branchname`` will look for
 
6359
  ``current_branch/../branchname``. (Robert Collins, Jelmer Vernooij,
 
6360
  Wouter van Heyst)
 
6361
 
 
6362
* Diff is now more specific about execute-bit changes it describes
 
6363
  (Chad Miller)
 
6364
 
 
6365
* Fetching data over HTTP is a bit faster when urllib is used.  This is done
 
6366
  by forcing it to recv 64k at a time when reading lines in HTTP headers,
 
6367
  rather than just 1 byte at a time.  (Andrew Bennetts)
 
6368
 
 
6369
* Log --short and --line are much faster when -r is not specified.
 
6370
  (Aaron Bentley)
 
6371
 
 
6372
* Merge is faster.  We no longer check a file's existence unnecessarily
 
6373
  when merging the execute bit.  (Aaron Bentley)
 
6374
 
 
6375
* ``bzr status`` on an explicit list of files no longer shows pending
 
6376
  merges, making it much faster on large trees. (John Arbash Meinel)
 
6377
 
 
6378
* The launchpad directory service now warns the user if they have not set
 
6379
  their launchpad login and are trying to resolve a URL using it, just
 
6380
  in case they want to do a write operation with it.  (James Westby)
 
6381
 
 
6382
* The smart protocol client is slightly faster, because it now only queries
 
6383
  the server for the protocol version once per connection.  Also, the HTTP
 
6384
  transport will now automatically probe for and use a smart server if
 
6385
  one is present.  You can use the new ``nosmart+`` transport decorator
 
6386
  to get the old behaviour.  (Andrew Bennetts)
 
6387
 
 
6388
* The ``version`` command takes a ``--short`` option to print just the
 
6389
  version number, for easier use in scripts.  (Martin Pool)
 
6390
 
 
6391
* Various operations with revision specs and commands that calculate
 
6392
  revnos and revision ids are faster.  (John A. Meinel, Aaron Bentley)
 
6393
 
 
6394
Bugfixes
 
6395
********
 
6396
 
 
6397
* Add ``root_client_path`` parameter to SmartWSGIApp and
 
6398
  SmartServerRequest.  This makes it possible to publish filesystem
 
6399
  locations that don't exactly match URL paths. SmartServerRequest
 
6400
  subclasses should use the new ``translate_client_path`` and
 
6401
  ``transport_from_client_path`` methods when dealing with paths received
 
6402
  from a client to take this into account.  (Andrew Bennetts, #124089)
 
6403
 
 
6404
* ``bzr mv a b`` can be now used also to rename previously renamed
 
6405
  directories, not only files. (Lukáš Lalinský, #107967)
 
6406
 
 
6407
* ``bzr uncommit --local`` can now remove revisions from the local
 
6408
  branch to be symmetric with ``bzr commit --local``.
 
6409
  (John Arbash Meinel, #93412)
 
6410
 
 
6411
* Don't ask for a password if there is no real terminal.
 
6412
  (Alexander Belchenko, #69851)
 
6413
 
 
6414
* Fix a bug causing a ValueError crash in ``parse_line_delta_iter`` when
 
6415
  fetching revisions from a knit to pack repository or vice versa using
 
6416
  bzr:// (including over http or ssh).
 
6417
  (#208418, Andrew Bennetts, Martin Pool, Robert Collins)
 
6418
 
 
6419
* Fixed ``_get_line`` in ``bzrlib.smart.medium``, which was buggy.  Also
 
6420
  fixed ``_get_bytes`` in the same module to use the push back buffer.
 
6421
  These bugs had no known impact in normal use, but were problematic for
 
6422
  developers working on the code, and were likely to cause real bugs sooner
 
6423
  or later.  (Andrew Bennetts)
 
6424
 
 
6425
* Implement handling of basename parameter for DefaultMail.  (James Westby)
 
6426
 
 
6427
* Incompatibility with Paramiko versions newer than 1.7.2 was fixed.
 
6428
  (Andrew Bennetts, #213425)
 
6429
 
 
6430
* Launchpad locations (lp: URLs) can be pulled.  (Aaron Bentley, #181945)
 
6431
 
 
6432
* Merges that add files to deleted root directories complete.  They
 
6433
  do create conflicts.  (Aaron Bentley, #210092)
 
6434
 
 
6435
* vsftp's return ``550 RNFR command failed.`` supported.
 
6436
  (Marcus Trautwig, #129786)
 
6437
 
 
6438
Documentation
 
6439
*************
 
6440
 
 
6441
* Improved documentation on send/merge relationship. (Peter Schuller)
 
6442
 
 
6443
* Minor fixes to the User Guide. (Matthew Fuller)
 
6444
 
 
6445
* Reduced the evangelism in the User Guide. (Ian Clatworthy)
 
6446
 
 
6447
* Added Integrating with Bazaar document for developers (Martin Albisetti)
 
6448
 
 
6449
API Breaks
 
6450
**********
 
6451
 
 
6452
* Attempting to pull data from a ghost aware repository (e.g. knits) into a
 
6453
  non-ghost aware repository such as weaves will now fail if there are
 
6454
  ghosts.  (Robert Collins)
 
6455
 
 
6456
* ``KnitVersionedFile`` no longer accepts an ``access_mode`` parameter, and
 
6457
  now requires the ``index`` and ``access_method`` parameters to be
 
6458
  supplied. A compatible shim has been kept in the new function
 
6459
  ``knit.make_file_knit``. (Robert Collins)
 
6460
 
 
6461
* Log formatters must now provide log_revision instead of show and
 
6462
  show_merge_revno methods. The latter had been deprecated since the 0.17
 
6463
  release. (James Westby)
 
6464
 
 
6465
* ``LoopbackSFTP`` is now called ``SocketAsChannelAdapter``.
 
6466
  (Andrew Bennetts)
 
6467
 
 
6468
* ``osutils.backup_file`` is removed. (Alexander Belchenko)
 
6469
 
 
6470
* ``Repository.get_revision_graph`` is deprecated, with no replacement
 
6471
  method. The method was size(history) and not desirable. (Robert Collins)
 
6472
 
 
6473
* ``revision.revision_graph`` is deprecated, with no replacement function.
 
6474
  The function was size(history) and not desirable. (Robert Collins)
 
6475
 
 
6476
* ``Transport.get_shared_medium`` is deprecated.  Use
 
6477
  ``Transport.get_smart_medium`` instead.  (Andrew Bennetts)
 
6478
 
 
6479
* ``VersionedFile`` factories now accept a get_scope parameter rather
 
6480
  than using a call to ``transaction_finished``, allowing the removal of
 
6481
  the fixed list of versioned files per repository. (Robert Collins)
 
6482
 
 
6483
* ``VersionedFile.annotate_iter`` is deprecated. While in principle this
 
6484
  allowed lower memory use, all users of annotations wanted full file
 
6485
  annotations, and there is no storage format suitable for incremental
 
6486
  line-by-line annotation. (Robert Collins)
 
6487
 
 
6488
* ``VersionedFile.clone_text`` is deprecated. This performance optimisation
 
6489
  is no longer used - reading the content of a file that is undergoing a
 
6490
  file level merge to identical state on two branches is rare enough, and
 
6491
  not expensive enough to special case. (Robert Collins)
 
6492
 
 
6493
* ``VersionedFile.clear_cache`` and ``enable_cache`` are deprecated.
 
6494
  These methods added significant complexity to the ``VersionedFile``
 
6495
  implementation, but were only used for optimising fetches from knits -
 
6496
  which can be done from outside the knit layer, or via a caching
 
6497
  decorator. As knits are not the default format, the complexity is no
 
6498
  longer worth paying. (Robert Collins)
 
6499
 
 
6500
* ``VersionedFile.create_empty`` is removed. This method presupposed a
 
6501
  sensible mapping to a transport for individual files, but pack backed
 
6502
  versioned files have no such mapping. (Robert Collins)
 
6503
 
 
6504
* ``VersionedFile.get_graph`` is deprecated, with no replacement method.
 
6505
  The method was size(history) and not desirable. (Robert Collins)
 
6506
 
 
6507
* ``VersionedFile.get_graph_with_ghosts`` is deprecated, with no
 
6508
  replacement method.  The method was size(history) and not desirable.
 
6509
  (Robert Collins)
 
6510
 
 
6511
* ``VersionedFile.get_parents`` is deprecated, please use
 
6512
  ``VersionedFile.get_parent_map``. (Robert Collins)
 
6513
 
 
6514
* ``VersionedFile.get_sha1`` is deprecated, please use
 
6515
  ``VersionedFile.get_sha1s``. (Robert Collins)
 
6516
 
 
6517
* ``VersionedFile.has_ghost`` is now deprecated, as it is both expensive
 
6518
  and unused outside of a single test. (Robert Collins)
 
6519
 
 
6520
* ``VersionedFile.iter_parents`` is now deprecated in favour of
 
6521
  ``get_parent_map`` which can be used to instantiate a Graph on a
 
6522
  VersionedFile. (Robert Collins)
 
6523
 
 
6524
* ``VersionedFileStore`` no longer uses the transaction parameter given
 
6525
  to most methods; amongst other things this means that the
 
6526
  get_weave_or_empty method no longer guarantees errors on a missing weave
 
6527
  in a readonly transaction, and no longer caches versioned file instances
 
6528
  which reduces memory pressure (but requires more careful management by
 
6529
  callers to preserve performance). (Robert Collins)
 
6530
 
 
6531
Testing
 
6532
*******
 
6533
 
 
6534
* New -Dselftest_debug flag disables clearing of the debug flags during
 
6535
  tests.  This is useful if you want to use e.g. -Dhpss to help debug a
 
6536
  failing test.  Be aware that using this feature is likely to cause
 
6537
  spurious test failures if used with the full suite. (Andrew Bennetts)
 
6538
 
 
6539
* selftest --load-list now uses a new more agressive test loader that will
 
6540
  avoid loading unneeded modules and building their tests. Plugins can use
 
6541
  this new loader by defining a load_tests function instead of a test_suite
 
6542
  function. (a forthcoming patch will provide many examples on how to
 
6543
  implement this).
 
6544
  (Vincent Ladeuil)
 
6545
 
 
6546
* selftest --load-list now does some sanity checks regarding duplicate test
 
6547
  IDs and tests present in the list but not found in the actual test suite.
 
6548
  (Vincent Ladeuil)
 
6549
 
 
6550
* Slightly more concise format for the selftest progress bar, so there's
 
6551
  more space to show the test name.  (Martin Pool) ::
 
6552
 
 
6553
    [2500/10884, 1fail, 3miss in 1m29s] test_revisionnamespaces.TestRev
 
6554
 
 
6555
* The test suite takes much less memory to run, and is a bit faster.  This
 
6556
  is done by clearing most attributes of TestCases after running them, if
 
6557
  they succeeded.  (Andrew Bennetts)
 
6558
 
 
6559
Internals
 
6560
*********
 
6561
 
 
6562
* Added ``_build_client_protocol`` to ``_SmartClient``.  (Andrew Bennetts)
 
6563
 
 
6564
* Added basic infrastructure for automatic plugin suggestion.
 
6565
  (Martin Albisetti)
 
6566
 
 
6567
* If a ``LockableFiles`` object is not explicitly unlocked (for example
 
6568
  because of a missing ``try/finally`` block, it will give a warning but
 
6569
  not automatically unlock itself.  (Previously they did.)  This
 
6570
  sometimes caused knock-on errors if for example the network connection
 
6571
  had already failed, and should not be relied upon by code.
 
6572
  (Martin Pool, #109520)
 
6573
 
 
6574
* ``make dist`` target to build a release tarball, and also
 
6575
  ``check-dist-tarball`` and ``dist-upload-escudero``.  (Martin Pool)
 
6576
 
 
6577
* The ``read_response_tuple`` method of ``SmartClientRequestProtocol*``
 
6578
  classes will now raise ``UnknownSmartMethod`` when appropriate, so that
 
6579
  callers don't need to try distinguish unknown request errors from other
 
6580
  errors.  (Andrew Bennetts)
 
6581
 
 
6582
* ``set_make_working_trees`` is now implemented provided on all repository
 
6583
  implementations (Aaron Bentley)
 
6584
 
 
6585
* ``VersionedFile`` now has a new method ``get_parent_map`` which, like
 
6586
  ``Graph.get_parent_map`` returns a dict of key:parents. (Robert Collins)
 
6587
 
 
6588
 
 
6589
bzr 1.3.1
 
6590
#########
 
6591
 
 
6592
:Released: 2008-04-09
 
6593
 
 
6594
No changes from 1.3.1rc1.
 
6595
 
 
6596
 
 
6597
bzr 1.3.1rc1
 
6598
############
 
6599
 
 
6600
:Released: 2008-04-04
 
6601
 
 
6602
Bug Fixes
 
6603
*********
 
6604
 
 
6605
* Fix a bug causing a ValueError crash in ``parse_line_delta_iter`` when
 
6606
  fetching revisions from a knit to pack repository or vice versa using
 
6607
  bzr:// (including over http or ssh).
 
6608
  (#208418, Andrew Bennetts, Martin Pool, Robert Collins)
 
6609
 
 
6610
 
 
6611
bzr 1.3
 
6612
#######
 
6613
 
 
6614
:Released: 2008-03-20
1695
6615
 
1696
6616
Bazaar has become part of the GNU project <http://www.gnu.org>
1697
6617
 
1699
6619
substantially faster.  Several bugs have been fixed and several new options and
1700
6620
features have been added.
1701
6621
 
1702
 
  TESTING:
1703
 
 
1704
 
    * Avoid spurious failure of ``TestVersion.test_version`` matching
1705
 
      directory names.
1706
 
      (#202778, Martin Pool)
1707
 
 
1708
 
 
1709
 
bzr 1.3rc1 2008-03-16
1710
 
---------------------
1711
 
 
1712
 
  NOTES WHEN UPGRADING:
1713
 
 
1714
 
    * The backup directory created by ``upgrade`` is now called
1715
 
      ``backup.bzr``, not ``.bzr.backup``. (Martin Albisetti)
1716
 
 
1717
 
  CHANGES:
1718
 
 
1719
 
    * A new repository format 'development' has been added. This format will
1720
 
      represent the latest 'in-progress' format that the bzr developers are
1721
 
      interested in getting early-adopter testing and feedback on.
1722
 
      ``doc/developers/development-repo.txt`` has detailed information.
1723
 
      (Robert Collins)
1724
 
 
1725
 
    * BZR_LOG environment variable controls location of .bzr.log trace file. 
1726
 
      User can suppress writing messages to .bzr.log by using '/dev/null'
1727
 
      filename (on Linux) or 'NUL' (on Windows). If BZR_LOG variable 
1728
 
      is not defined but BZR_HOME is defined then default location
1729
 
      for .bzr.log trace file is ``$BZR_HOME/.bzr.log``.
1730
 
      (Alexander Belchenko)
1731
 
 
1732
 
    * ``launchpad`` builtin plugin now shipped as separate part in standalone
1733
 
      bzr.exe, installed to ``C:\Program Files\Bazaar\plugins`` directory, 
1734
 
      and standalone installer allows user to skip installation of this plugin.
1735
 
      (Alexander Belchenko)
1736
 
 
1737
 
    * Restore auto-detection of plink.exe on Windows. (Dmitry Vasiliev)
1738
 
 
1739
 
    * Version number is now shown as "1.2" or "1.2pr2", without zeroed or
1740
 
      missing final fields.  (Martin Pool)
1741
 
 
1742
 
  FEATURES:
1743
 
 
1744
 
    * ``branch`` and ``checkout`` can hard-link working tree files, which is
1745
 
      faster and saves space.  (Aaron Bentley)
1746
 
 
1747
 
    * ``bzr send`` will now also look at the ``child_submit_to`` setting in
1748
 
      the submit branch to determine the email address to send to. 
1749
 
      (Jelmer Vernooij)
1750
 
 
1751
 
  IMPROVEMENTS:
1752
 
 
1753
 
    * BzrBranch._lefthand_history is faster on pack repos.  (Aaron Bentley)
1754
 
 
1755
 
    * Branch6.generate_revision_history is faster.  (Aaron Bentley)
1756
 
 
1757
 
    * Directory services can now be registered, allowing special URLs to be
1758
 
      dereferenced into real URLs.  This is a generalization and cleanup of
1759
 
      the lp: transport lookup.  (Aaron Bentley)
1760
 
 
1761
 
    * Merge directives that are automatically attached to emails have nicer
1762
 
      filenames, based on branch-nick + revno. (Aaron Bentley)
1763
 
 
1764
 
    * ``push`` has a ``--revision`` option, to specify what revision to push up
1765
 
      to.  (Daniel Watkins)
1766
 
 
1767
 
    * Significantly reducing execution time and network traffic for trivial 
1768
 
      case of running ``bzr missing`` command for two identical branches.
1769
 
      (Alexander Belchenko)
1770
 
 
1771
 
    * Speed up operations that look at the revision graph (such as 'bzr log').
1772
 
      ``KnitPackRepositor.get_revision_graph`` uses ``Graph.iter_ancestry`` to
1773
 
      extract the revision history. This allows filtering ghosts while
1774
 
      stepping instead of needing to peek ahead. (John Arbash Meinel)
1775
 
 
1776
 
    * The ``hooks`` command lists installed hooks, to assist in debugging.
1777
 
      (Daniel Watkins)
1778
 
 
1779
 
    * Updates to how ``annotate`` work. Should see a measurable improvement in
1780
 
      performance and memory consumption for file with a lot of merges.
1781
 
      Also, correctly handle when a line is introduced by both parents (it
1782
 
      should be attributed to the first merge which notices this, and not
1783
 
      to all subsequent merges.) (John Arbash Meinel)
1784
 
 
1785
 
  BUGFIXES:
1786
 
 
1787
 
    * Autopacking no longer holds the full set of inventory lines in
1788
 
      memory while copying. For large repositories, this can amount to
1789
 
      hundreds of MB of ram consumption.
1790
 
      (Ian Clatworthy, John Arbash Meinel)
1791
 
 
1792
 
    * Cherrypicking when using ``--format=merge3`` now explictly excludes
1793
 
      BASE lines. (John Arbash Meinel, #151731)
1794
 
 
1795
 
    * Disable plink's interactive prompt for password.
1796
 
      (#107593, Dmitry Vasiliev)
1797
 
 
1798
 
    * Encode command line arguments from unicode to user_encoding before
1799
 
      invoking external mail client in `bzr send` command.
1800
 
      (#139318, Alexander Belchenko)
1801
 
 
1802
 
    * Fixed problem connecting to ``bzr+https://`` servers.
1803
 
      (#198793, John Ferlito)
1804
 
 
1805
 
    * Improved error reporting in the Launchpad plugin. (Daniel Watkins,
1806
 
      #196618)
1807
 
 
1808
 
    * Include quick-start-summary.svg file to python-based installer(s)
1809
 
      for Windows. (#192924, Alexander Belchenko)
1810
 
 
1811
 
    * lca merge now respects specified files. (Aaron Bentley)
1812
 
 
1813
 
    * Make version-info --custom imply --all. (#195560, James Westby)
1814
 
 
1815
 
    * ``merge --preview`` now works for merges that add or modify
1816
 
      symlinks (James Henstridge)
1817
 
 
1818
 
    * Redirecting the output from ``bzr merge`` (when the remembered
1819
 
      location is used) now works. (John Arbash Meinel)
1820
 
 
1821
 
    * setup.py script explicitly checks for Python version.
1822
 
      (Jari Aalto, Alexander Belchenko, #200569)
1823
 
 
1824
 
    * UnknownFormatErrors no longer refer to branches regardless of kind of
1825
 
      unknown format. (Daniel Watkins, #173980)
1826
 
 
1827
 
    * Upgrade bundled ConfigObj to version 4.5.2, which properly quotes #
1828
 
      signs, among other small improvements. (Matt Nordhoff, #86838)
1829
 
 
1830
 
    * Use correct indices when emitting LCA conflicts.  This fixes IndexError
1831
 
      errors.  (Aaron Bentley, #196780)
1832
 
 
1833
 
  DOCUMENTATION:
1834
 
 
1835
 
    * Explained how to use ``version-info --custom`` in the User Guide.
1836
 
      (Neil Martinsen-Burrell)
1837
 
 
1838
 
  API BREAKS:
1839
 
 
1840
 
    * Support for loading plugins from zip files and
1841
 
      ``bzrlib.plugin.load_from_zip()`` function are deprecated.
1842
 
      (Alexander Belchenko)
1843
 
 
1844
 
  TESTING:
1845
 
    
1846
 
    * Added missing blackbox tests for ``modified`` (Adrian Wilkins)
1847
 
 
1848
 
    * The branch interface tests were invalid for branches using rich-root
1849
 
      repositories because the empty string is not a valid file-id.
1850
 
      (Robert Collins)
1851
 
 
1852
 
  INTERNALS:
1853
 
 
1854
 
    * ``Graph.iter_ancestry`` returns the ancestry of revision ids. Similar to
1855
 
      ``Repository.get_revision_graph()`` except it includes ghosts and you can
1856
 
      stop part-way through. (John Arbash Meinel)
1857
 
 
1858
 
    * New module ``tools/package_mf.py`` provide custom module finder for
1859
 
      python packages (improves standard python library's modulefinder.py)
1860
 
      used by ``setup.py`` script while building standalone bzr.exe.
1861
 
      (Alexander Belchenko)
1862
 
 
1863
 
    * New remote method ``RemoteBzrDir.find_repositoryV2`` adding support for
1864
 
      detecting external lookup support on remote repositories. This method is
1865
 
      now attempted first when lookup up repositories, leading to an extra 
1866
 
      round trip on older bzr smart servers. (Robert Collins)
1867
 
 
1868
 
    * Repository formats have a new supported-feature attribute
1869
 
      ``supports_external_lookups`` used to indicate repositories which support
1870
 
      falling back to other repositories when they have partial data.
1871
 
      (Robert Collins)
1872
 
 
1873
 
    * ``Repository.get_revision_graph_with_ghosts`` and
1874
 
      ``bzrlib.revision.(common_ancestor,MultipleRevisionSources,common_graph)``
1875
 
      have been deprecated.  (John Arbash Meinel)
1876
 
 
1877
 
    * ``Tree.iter_changes`` is now a public API, replacing the work-in-progress
1878
 
      ``Tree._iter_changes``. The api is now considered stable and ready for
1879
 
      external users.  (Aaron Bentley)
1880
 
 
1881
 
    * The bzrdir format registry now accepts an ``alias`` keyword to
1882
 
      register_metadir, used to indicate that a format name is an alias for
1883
 
      some other format and thus should not be reported when describing the
1884
 
      format. (Robert Collins)
1885
 
 
1886
 
 
1887
 
bzr 1.2 2008-02-15
1888
 
------------------
1889
 
 
1890
 
  BUG FIXES:
1891
 
 
1892
 
    * Fix failing test in Launchpad plugin. (Martin Pool)
1893
 
 
1894
 
 
1895
 
bzr 1.2rc1 2008-02-13
1896
 
---------------------
1897
 
 
1898
 
  NOTES WHEN UPGRADING:
1899
 
  
1900
 
    * Fetching via the smart protocol may need to reconnect once during a fetch
1901
 
      if the remote server is running Bazaar 1.1 or earlier, because the client
1902
 
      attempts to use more efficient requests that confuse older servers.  You
1903
 
      may be required to re-enter a password or passphrase when this happens.
1904
 
      This won't happen if the server is upgraded to Bazaar 1.2.
1905
 
      (Andrew Bennetts)
1906
 
 
1907
 
  CHANGES:
1908
 
 
1909
 
    * Fetching via bzr+ssh will no longer fill ghosts by default (this is
1910
 
      consistent with pack-0.92 fetching over SFTP). (Robert Collins)
1911
 
 
1912
 
    * Formatting of ``bzr plugins`` output is changed to be more human-
1913
 
      friendly. Full path of plugins locations will be shown only with
1914
 
      ``--verbose`` command-line option. (Alexander Belchenko)
1915
 
 
1916
 
    * ``merge`` now prefers to use the submit branch, but will fall back to
1917
 
      parent branch.  For many users, this has no effect.  But some users who
1918
 
      pull and merge on the same branch will notice a change.  This change
1919
 
      makes it easier to work on a branch on two different machines, pulling
1920
 
      between the machines, while merging from the upstream.
1921
 
      ``merge --remember`` can now be used to set the submit_branch.
1922
 
      (Aaron Bentley)
1923
 
 
1924
 
  FEATURES:
1925
 
 
1926
 
    * ``merge --preview`` produces a diff of the changes merge would make,
1927
 
      but does not actually perform the merge.  (Aaron Bentley)
1928
 
 
1929
 
    * New smart method ``Repository.get_parent_map`` for getting revision
1930
 
      parent data. This returns additional parent information topologically
1931
 
      adjacent to the requested data to reduce round trip latency impacts.
1932
 
      (Robert Collins)
1933
 
 
1934
 
    * New smart method, ``Repository.stream_revisions_chunked``, for fetching
1935
 
      revision data that streams revision data via a chunked encoding.  This
1936
 
      avoids buffering large amounts of revision data on the server and on the
1937
 
      client, and sends less data to the server to request the revisions.
1938
 
      (Andrew Bennetts, Robert Collins, #178353)
1939
 
 
1940
 
    * The launchpad plugin now handles lp urls of the form
1941
 
      ``lp://staging/``, ``lp://demo/``, ``lp://dev/`` to use the appropriate
1942
 
      launchpad instance to do the resolution of the branch identities.
1943
 
      This is primarily of use to Launchpad developers, but can also
1944
 
      be used by other users who want to try out Launchpad as
1945
 
      a branch location without messing up their public Launchpad
1946
 
      account.  Branches that are pushed to the staging environment
1947
 
      have an expected lifetime of one day. (Tim Penhey)
1948
 
 
1949
 
  IMPROVEMENTS:
1950
 
 
1951
 
    * Creating a new branch no longer tries to read the entire revision-history
1952
 
      unnecessarily over smart server operations. (Robert Collins)
1953
 
 
1954
 
    * Fetching between different repository formats with compatible models now
1955
 
      takes advantage of the smart method to stream revisions.  (Andrew Bennetts)
1956
 
 
1957
 
    * The ``--coverage`` option is now global, rather specific to ``bzr
1958
 
      selftest``.  (Andrew Bennetts)
1959
 
 
1960
 
    * The ``register-branch`` command will now use the public url of the branch
1961
 
      containing the current directory, if one has been set and no explicit
1962
 
      branch is provided.  (Robert Collins)
1963
 
 
1964
 
    * Tweak the ``reannotate`` code path to optimize the 2-parent case.
1965
 
      Speeds up ``bzr annotate`` with a pack repository by approx 3:2.
1966
 
      (John Arbash Meinel)
1967
 
 
1968
 
  BUGFIXES:
1969
 
 
1970
 
    * Calculate remote path relative to the shared medium in _SmartClient.  This
1971
 
      is related to the problem in bug #124089.  (Andrew Bennetts)
1972
 
 
1973
 
    * Cleanly handle connection errors in smart protocol version two, the same
1974
 
      way as they are handled by version one.  (Andrew Bennetts)
1975
 
 
1976
 
    * Clearer error when ``version-info --custom`` is used without
1977
 
      ``--template`` (Lukáš Lalinský)
1978
 
 
1979
 
    * Don't raise UnavailableFeature during test setup when medusa is not
1980
 
      available or tearDown is never called leading to nasty side effects.
1981
 
      (#137823, Vincent Ladeuil)
1982
 
 
1983
 
    * If a plugin's test suite cannot be loaded, for example because of a syntax
1984
 
      error in the tests, then ``selftest`` fails, rather than just printing 
1985
 
      a warning.  (Martin Pool, #189771)
1986
 
      
1987
 
    * List possible values for BZR_SSH environment variable in env-variables
1988
 
      help topic. (Alexander Belchenko, #181842)
1989
 
 
1990
 
    * New methods ``push_log_file`` and ``pop_log_file`` to intercept messages:
1991
 
      popping the log redirection now precisely restores the previous state,
1992
 
      which makes it easier to use bzr log output from other programs.
1993
 
      TestCaseInTempDir no longer depends on a log redirection being established
1994
 
      by the test framework, which lets bzr tests cleanly run from a normal
1995
 
      unittest runner.
1996
 
      (#124153, #124849, Martin Pool, Jonathan Lange)
1997
 
 
1998
 
    * ``pull --quiet`` is now more quiet, in particular a message is no longer
1999
 
      printed when the remembered pull location is used. (James Westby,
2000
 
      #185907)
2001
 
 
2002
 
    * ``reconfigure`` can safely be interrupted while fetching.
2003
 
      (Aaron Bentley, #179316)
2004
 
 
2005
 
    * ``reconfigure`` preserves tags when converting to and from lightweight
2006
 
      checkouts.  (Aaron Bentley, #182040)
2007
 
 
2008
 
    * Stop polluting /tmp when running selftest.
2009
 
      (Vincent Ladeuil, #123623)
2010
 
 
2011
 
    * Switch from NFKC => NFC for normalization checks. NFC allows a few
2012
 
      more characters which should be considered valid.
2013
 
      (John Arbash Meinel, #185458)
2014
 
 
2015
 
    * The launchpad plugin now uses the ``edge`` xmlrpc server to avoid
2016
 
      interacting badly with a bug on the launchpad side. (Robert Collins)
2017
 
 
2018
 
    * Unknown hostnames when connecting to a ``bzr://`` URL no longer cause
2019
 
      tracebacks.  (Andrew Bennetts, #182849)
2020
 
 
2021
 
  API BREAKS:
2022
 
 
2023
 
    * Classes implementing Merge types like Merge3Merger must now accept (and
2024
 
      honour) a do_merge flag in their constructor.  (Aaron Bentley)
2025
 
 
2026
 
    * ``Repository.add_inventory`` and ``add_revision`` now require the caller
2027
 
      to previously take a write lock (and start a write group.)
2028
 
      (Martin Pool)
2029
 
 
2030
 
  TESTING:
2031
 
 
2032
 
    * selftest now accepts --load-list <file> to load a test id list. This
2033
 
      speeds up running the test suite on a limited set of tests.
2034
 
      (Vincent Ladeuil)
2035
 
 
2036
 
  INTERNALS:
2037
 
 
2038
 
    * Add a new method ``get_result`` to graph search objects. The resulting
2039
 
      ``SearchResult`` can be used to recreate the search later, which will
2040
 
      be useful in reducing network traffic. (Robert Collins)
2041
 
 
2042
 
    * Use convenience function to check whether two repository handles 
2043
 
      are referring to the same repository in ``Repository.get_graph``. 
2044
 
      (Jelmer Vernooij, #187162)
2045
 
 
2046
 
    * Fetching now passes the find_ghosts flag through to the 
2047
 
      ``InterRepository.missing_revision_ids`` call consistently for all
2048
 
      repository types. This will enable faster missing revision discovery with
2049
 
      bzr+ssh. (Robert Collins)
2050
 
 
2051
 
    * Fix error handling in Repository.insert_data_stream. (Lukas Lalinsky)
2052
 
 
2053
 
    * ``InterRepository.missing_revision_ids`` is now deprecated in favour of
2054
 
      ``InterRepository.search_missing_revision_ids`` which returns a 
2055
 
      ``bzrlib.graph.SearchResult`` suitable for making requests from the smart
2056
 
      server. (Robert Collins)
2057
 
 
2058
 
    * New error ``NoPublicBranch`` for commands that need a public branch to
2059
 
      operate. (Robert Collins)
2060
 
 
2061
 
    * New method ``iter_inventories`` on Repository for access to many
2062
 
      inventories. This is primarily used by the ``revision_trees`` method, as
2063
 
      direct access to inventories is discouraged. (Robert Collins)
2064
 
 
2065
 
    * New method ``next_with_ghosts`` on the Graph breadth-first-search objects
2066
 
      which will split out ghosts and present parents into two separate sets,
2067
 
      useful for code which needs to be aware of ghosts (e.g. fetching data
2068
 
      cares about ghosts during revision selection). (Robert Collins)
2069
 
 
2070
 
    * Record a timestamp against each mutter to the trace file, relative to the
2071
 
      first import of bzrlib.  (Andrew Bennetts)
2072
 
 
2073
 
    * ``Repository.get_data_stream`` is now deprecated in favour of
2074
 
      ``Repository.get_data_stream_for_search`` which allows less network
2075
 
      traffic when requesting data streams over a smart server. (Robert Collins)
2076
 
 
2077
 
    * ``RemoteBzrDir._get_tree_branch`` no longer triggers ``_ensure_real``,
2078
 
      removing one round trip on many network operations. (Robert Collins)
2079
 
 
2080
 
    * RemoteTransport's ``recommended_page_size`` method now returns 64k, like
2081
 
      SFTPTransport and HttpTransportBase.  (Andrew Bennetts)
2082
 
 
2083
 
    * Repository has a new method ``has_revisions`` which signals the presence
2084
 
      of many revisions by returning a set of the revisions listed which are
2085
 
      present. This can be done by index queries without reading data for parent
2086
 
      revision names etc. (Robert Collins)
2087
 
 
2088
 
 
2089
 
bzr 1.1 2008-01-15
2090
 
------------------
 
6622
Testing
 
6623
*******
 
6624
 
 
6625
* Avoid spurious failure of ``TestVersion.test_version`` matching
 
6626
  directory names.
 
6627
  (#202778, Martin Pool)
 
6628
 
 
6629
 
 
6630
bzr 1.3rc1
 
6631
##########
 
6632
 
 
6633
:Released: 2008-03-16
 
6634
 
 
6635
Notes When Upgrading
 
6636
********************
 
6637
 
 
6638
* The backup directory created by ``upgrade`` is now called
 
6639
  ``backup.bzr``, not ``.bzr.backup``. (Martin Albisetti)
 
6640
 
 
6641
Changes
 
6642
*******
 
6643
 
 
6644
* A new repository format 'development' has been added. This format will
 
6645
  represent the latest 'in-progress' format that the bzr developers are
 
6646
  interested in getting early-adopter testing and feedback on.
 
6647
  ``doc/developers/development-repo.txt`` has detailed information.
 
6648
  (Robert Collins)
 
6649
 
 
6650
* BZR_LOG environment variable controls location of .bzr.log trace file.
 
6651
  User can suppress writing messages to .bzr.log by using '/dev/null'
 
6652
  filename (on Linux) or 'NUL' (on Windows). If BZR_LOG variable
 
6653
  is not defined but BZR_HOME is defined then default location
 
6654
  for .bzr.log trace file is ``$BZR_HOME/.bzr.log``.
 
6655
  (Alexander Belchenko, #106117)
 
6656
 
 
6657
* ``launchpad`` builtin plugin now shipped as separate part in standalone
 
6658
  bzr.exe, installed to ``C:\Program Files\Bazaar\plugins`` directory,
 
6659
  and standalone installer allows user to skip installation of this plugin.
 
6660
  (Alexander Belchenko)
 
6661
 
 
6662
* Restore auto-detection of plink.exe on Windows. (Dmitry Vasiliev)
 
6663
 
 
6664
* Version number is now shown as "1.2" or "1.2pr2", without zeroed or
 
6665
  missing final fields.  (Martin Pool)
 
6666
 
 
6667
Features
 
6668
********
 
6669
 
 
6670
* ``branch`` and ``checkout`` can hard-link working tree files, which is
 
6671
  faster and saves space.  (Aaron Bentley)
 
6672
 
 
6673
* ``bzr send`` will now also look at the ``child_submit_to`` setting in
 
6674
  the submit branch to determine the email address to send to.
 
6675
  (Jelmer Vernooij)
 
6676
 
 
6677
Improvements
 
6678
************
 
6679
 
 
6680
* BzrBranch._lefthand_history is faster on pack repos.  (Aaron Bentley)
 
6681
 
 
6682
* Branch6.generate_revision_history is faster.  (Aaron Bentley)
 
6683
 
 
6684
* Directory services can now be registered, allowing special URLs to be
 
6685
  dereferenced into real URLs.  This is a generalization and cleanup of
 
6686
  the lp: transport lookup.  (Aaron Bentley)
 
6687
 
 
6688
* Merge directives that are automatically attached to emails have nicer
 
6689
  filenames, based on branch-nick + revno. (Aaron Bentley)
 
6690
 
 
6691
* ``push`` has a ``--revision`` option, to specify what revision to push up
 
6692
  to.  (Daniel Watkins)
 
6693
 
 
6694
* Significantly reducing execution time and network traffic for trivial
 
6695
  case of running ``bzr missing`` command for two identical branches.
 
6696
  (Alexander Belchenko)
 
6697
 
 
6698
* Speed up operations that look at the revision graph (such as 'bzr log').
 
6699
  ``KnitPackRepositor.get_revision_graph`` uses ``Graph.iter_ancestry`` to
 
6700
  extract the revision history. This allows filtering ghosts while
 
6701
  stepping instead of needing to peek ahead. (John Arbash Meinel)
 
6702
 
 
6703
* The ``hooks`` command lists installed hooks, to assist in debugging.
 
6704
  (Daniel Watkins)
 
6705
 
 
6706
* Updates to how ``annotate`` work. Should see a measurable improvement in
 
6707
  performance and memory consumption for file with a lot of merges.
 
6708
  Also, correctly handle when a line is introduced by both parents (it
 
6709
  should be attributed to the first merge which notices this, and not
 
6710
  to all subsequent merges.) (John Arbash Meinel)
 
6711
 
 
6712
Bugfixes
 
6713
********
 
6714
 
 
6715
* Autopacking no longer holds the full set of inventory lines in
 
6716
  memory while copying. For large repositories, this can amount to
 
6717
  hundreds of MB of ram consumption.
 
6718
  (Ian Clatworthy, John Arbash Meinel)
 
6719
 
 
6720
* Cherrypicking when using ``--format=merge3`` now explictly excludes
 
6721
  BASE lines. (John Arbash Meinel, #151731)
 
6722
 
 
6723
* Disable plink's interactive prompt for password.
 
6724
  (#107593, Dmitry Vasiliev)
 
6725
 
 
6726
* Encode command line arguments from unicode to user_encoding before
 
6727
  invoking external mail client in `bzr send` command.
 
6728
  (#139318, Alexander Belchenko)
 
6729
 
 
6730
* Fixed problem connecting to ``bzr+https://`` servers.
 
6731
  (#198793, John Ferlito)
 
6732
 
 
6733
* Improved error reporting in the Launchpad plugin. (Daniel Watkins,
 
6734
  #196618)
 
6735
 
 
6736
* Include quick-start-summary.svg file to python-based installer(s)
 
6737
  for Windows. (#192924, Alexander Belchenko)
 
6738
 
 
6739
* lca merge now respects specified files. (Aaron Bentley)
 
6740
 
 
6741
* Make version-info --custom imply --all. (#195560, James Westby)
 
6742
 
 
6743
* ``merge --preview`` now works for merges that add or modify
 
6744
  symlinks (James Henstridge)
 
6745
 
 
6746
* Redirecting the output from ``bzr merge`` (when the remembered
 
6747
  location is used) now works. (John Arbash Meinel)
 
6748
 
 
6749
* setup.py script explicitly checks for Python version.
 
6750
  (Jari Aalto, Alexander Belchenko, #200569)
 
6751
 
 
6752
* UnknownFormatErrors no longer refer to branches regardless of kind of
 
6753
  unknown format. (Daniel Watkins, #173980)
 
6754
 
 
6755
* Upgrade bundled ConfigObj to version 4.5.2, which properly quotes #
 
6756
  signs, among other small improvements. (Matt Nordhoff, #86838)
 
6757
 
 
6758
* Use correct indices when emitting LCA conflicts.  This fixes IndexError
 
6759
  errors.  (Aaron Bentley, #196780)
 
6760
 
 
6761
Documentation
 
6762
*************
 
6763
 
 
6764
* Explained how to use ``version-info --custom`` in the User Guide.
 
6765
  (Neil Martinsen-Burrell)
 
6766
 
 
6767
API Breaks
 
6768
**********
 
6769
 
 
6770
* Support for loading plugins from zip files and
 
6771
  ``bzrlib.plugin.load_from_zip()`` function are deprecated.
 
6772
  (Alexander Belchenko)
 
6773
 
 
6774
Testing
 
6775
*******
 
6776
 
 
6777
* Added missing blackbox tests for ``modified`` (Adrian Wilkins)
 
6778
 
 
6779
* The branch interface tests were invalid for branches using rich-root
 
6780
  repositories because the empty string is not a valid file-id.
 
6781
  (Robert Collins)
 
6782
 
 
6783
Internals
 
6784
*********
 
6785
 
 
6786
* ``Graph.iter_ancestry`` returns the ancestry of revision ids. Similar to
 
6787
  ``Repository.get_revision_graph()`` except it includes ghosts and you can
 
6788
  stop part-way through. (John Arbash Meinel)
 
6789
 
 
6790
* New module ``tools/package_mf.py`` provide custom module finder for
 
6791
  python packages (improves standard python library's modulefinder.py)
 
6792
  used by ``setup.py`` script while building standalone bzr.exe.
 
6793
  (Alexander Belchenko)
 
6794
 
 
6795
* New remote method ``RemoteBzrDir.find_repositoryV2`` adding support for
 
6796
  detecting external lookup support on remote repositories. This method is
 
6797
  now attempted first when lookup up repositories, leading to an extra
 
6798
  round trip on older bzr smart servers. (Robert Collins)
 
6799
 
 
6800
* Repository formats have a new supported-feature attribute
 
6801
  ``supports_external_lookups`` used to indicate repositories which support
 
6802
  falling back to other repositories when they have partial data.
 
6803
  (Robert Collins)
 
6804
 
 
6805
* ``Repository.get_revision_graph_with_ghosts`` and
 
6806
  ``bzrlib.revision.(common_ancestor,MultipleRevisionSources,common_graph)``
 
6807
  have been deprecated.  (John Arbash Meinel)
 
6808
 
 
6809
* ``Tree.iter_changes`` is now a public API, replacing the work-in-progress
 
6810
  ``Tree._iter_changes``. The api is now considered stable and ready for
 
6811
  external users.  (Aaron Bentley)
 
6812
 
 
6813
* The bzrdir format registry now accepts an ``alias`` keyword to
 
6814
  register_metadir, used to indicate that a format name is an alias for
 
6815
  some other format and thus should not be reported when describing the
 
6816
  format. (Robert Collins)
 
6817
 
 
6818
 
 
6819
bzr 1.2
 
6820
#######
 
6821
 
 
6822
:Released: 2008-02-15
 
6823
 
 
6824
Bug Fixes
 
6825
*********
 
6826
 
 
6827
* Fix failing test in Launchpad plugin. (Martin Pool)
 
6828
 
 
6829
 
 
6830
bzr 1.2rc1
 
6831
##########
 
6832
 
 
6833
:Released: 2008-02-13
 
6834
 
 
6835
Notes When Upgrading
 
6836
********************
 
6837
 
 
6838
* Fetching via the smart protocol may need to reconnect once during a fetch
 
6839
  if the remote server is running Bazaar 1.1 or earlier, because the client
 
6840
  attempts to use more efficient requests that confuse older servers.  You
 
6841
  may be required to re-enter a password or passphrase when this happens.
 
6842
  This won't happen if the server is upgraded to Bazaar 1.2.
 
6843
  (Andrew Bennetts)
 
6844
 
 
6845
Changes
 
6846
*******
 
6847
 
 
6848
* Fetching via bzr+ssh will no longer fill ghosts by default (this is
 
6849
  consistent with pack-0.92 fetching over SFTP). (Robert Collins)
 
6850
 
 
6851
* Formatting of ``bzr plugins`` output is changed to be more human-
 
6852
  friendly. Full path of plugins locations will be shown only with
 
6853
  ``--verbose`` command-line option. (Alexander Belchenko)
 
6854
 
 
6855
* ``merge`` now prefers to use the submit branch, but will fall back to
 
6856
  parent branch.  For many users, this has no effect.  But some users who
 
6857
  pull and merge on the same branch will notice a change.  This change
 
6858
  makes it easier to work on a branch on two different machines, pulling
 
6859
  between the machines, while merging from the upstream.
 
6860
  ``merge --remember`` can now be used to set the submit_branch.
 
6861
  (Aaron Bentley)
 
6862
 
 
6863
Features
 
6864
********
 
6865
 
 
6866
* ``merge --preview`` produces a diff of the changes merge would make,
 
6867
  but does not actually perform the merge.  (Aaron Bentley)
 
6868
 
 
6869
* New smart method ``Repository.get_parent_map`` for getting revision
 
6870
  parent data. This returns additional parent information topologically
 
6871
  adjacent to the requested data to reduce round trip latency impacts.
 
6872
  (Robert Collins)
 
6873
 
 
6874
* New smart method, ``Repository.stream_revisions_chunked``, for fetching
 
6875
  revision data that streams revision data via a chunked encoding.  This
 
6876
  avoids buffering large amounts of revision data on the server and on the
 
6877
  client, and sends less data to the server to request the revisions.
 
6878
  (Andrew Bennetts, Robert Collins, #178353)
 
6879
 
 
6880
* The launchpad plugin now handles lp urls of the form
 
6881
  ``lp://staging/``, ``lp://demo/``, ``lp://dev/`` to use the appropriate
 
6882
  launchpad instance to do the resolution of the branch identities.
 
6883
  This is primarily of use to Launchpad developers, but can also
 
6884
  be used by other users who want to try out Launchpad as
 
6885
  a branch location without messing up their public Launchpad
 
6886
  account.  Branches that are pushed to the staging environment
 
6887
  have an expected lifetime of one day. (Tim Penhey)
 
6888
 
 
6889
Improvements
 
6890
************
 
6891
 
 
6892
* Creating a new branch no longer tries to read the entire revision-history
 
6893
  unnecessarily over smart server operations. (Robert Collins)
 
6894
 
 
6895
* Fetching between different repository formats with compatible models now
 
6896
  takes advantage of the smart method to stream revisions.  (Andrew Bennetts)
 
6897
 
 
6898
* The ``--coverage`` option is now global, rather specific to ``bzr
 
6899
  selftest``.  (Andrew Bennetts)
 
6900
 
 
6901
* The ``register-branch`` command will now use the public url of the branch
 
6902
  containing the current directory, if one has been set and no explicit
 
6903
  branch is provided.  (Robert Collins)
 
6904
 
 
6905
* Tweak the ``reannotate`` code path to optimize the 2-parent case.
 
6906
  Speeds up ``bzr annotate`` with a pack repository by approx 3:2.
 
6907
  (John Arbash Meinel)
 
6908
 
 
6909
Bugfixes
 
6910
********
 
6911
 
 
6912
* Calculate remote path relative to the shared medium in _SmartClient.  This
 
6913
  is related to the problem in bug #124089.  (Andrew Bennetts)
 
6914
 
 
6915
* Cleanly handle connection errors in smart protocol version two, the same
 
6916
  way as they are handled by version one.  (Andrew Bennetts)
 
6917
 
 
6918
* Clearer error when ``version-info --custom`` is used without
 
6919
  ``--template`` (Lukáš Lalinský)
 
6920
 
 
6921
* Don't raise UnavailableFeature during test setup when medusa is not
 
6922
  available or tearDown is never called leading to nasty side effects.
 
6923
  (#137823, Vincent Ladeuil)
 
6924
 
 
6925
* If a plugin's test suite cannot be loaded, for example because of a syntax
 
6926
  error in the tests, then ``selftest`` fails, rather than just printing
 
6927
  a warning.  (Martin Pool, #189771)
 
6928
 
 
6929
* List possible values for BZR_SSH environment variable in env-variables
 
6930
  help topic. (Alexander Belchenko, #181842)
 
6931
 
 
6932
* New methods ``push_log_file`` and ``pop_log_file`` to intercept messages:
 
6933
  popping the log redirection now precisely restores the previous state,
 
6934
  which makes it easier to use bzr log output from other programs.
 
6935
  TestCaseInTempDir no longer depends on a log redirection being established
 
6936
  by the test framework, which lets bzr tests cleanly run from a normal
 
6937
  unittest runner.
 
6938
  (#124153, #124849, Martin Pool, Jonathan Lange)
 
6939
 
 
6940
* ``pull --quiet`` is now more quiet, in particular a message is no longer
 
6941
  printed when the remembered pull location is used. (James Westby,
 
6942
  #185907)
 
6943
 
 
6944
* ``reconfigure`` can safely be interrupted while fetching.
 
6945
  (Aaron Bentley, #179316)
 
6946
 
 
6947
* ``reconfigure`` preserves tags when converting to and from lightweight
 
6948
  checkouts.  (Aaron Bentley, #182040)
 
6949
 
 
6950
* Stop polluting /tmp when running selftest.
 
6951
  (Vincent Ladeuil, #123363)
 
6952
 
 
6953
* Switch from NFKC => NFC for normalization checks. NFC allows a few
 
6954
  more characters which should be considered valid.
 
6955
  (John Arbash Meinel, #185458)
 
6956
 
 
6957
* The launchpad plugin now uses the ``edge`` xmlrpc server to avoid
 
6958
  interacting badly with a bug on the launchpad side. (Robert Collins)
 
6959
 
 
6960
* Unknown hostnames when connecting to a ``bzr://`` URL no longer cause
 
6961
  tracebacks.  (Andrew Bennetts, #182849)
 
6962
 
 
6963
API Breaks
 
6964
**********
 
6965
 
 
6966
* Classes implementing Merge types like Merge3Merger must now accept (and
 
6967
  honour) a do_merge flag in their constructor.  (Aaron Bentley)
 
6968
 
 
6969
* ``Repository.add_inventory`` and ``add_revision`` now require the caller
 
6970
  to previously take a write lock (and start a write group.)
 
6971
  (Martin Pool)
 
6972
 
 
6973
Testing
 
6974
*******
 
6975
 
 
6976
* selftest now accepts --load-list <file> to load a test id list. This
 
6977
  speeds up running the test suite on a limited set of tests.
 
6978
  (Vincent Ladeuil)
 
6979
 
 
6980
Internals
 
6981
*********
 
6982
 
 
6983
* Add a new method ``get_result`` to graph search objects. The resulting
 
6984
  ``SearchResult`` can be used to recreate the search later, which will
 
6985
  be useful in reducing network traffic. (Robert Collins)
 
6986
 
 
6987
* Use convenience function to check whether two repository handles
 
6988
  are referring to the same repository in ``Repository.get_graph``.
 
6989
  (Jelmer Vernooij, #187162)
 
6990
 
 
6991
* Fetching now passes the find_ghosts flag through to the
 
6992
  ``InterRepository.missing_revision_ids`` call consistently for all
 
6993
  repository types. This will enable faster missing revision discovery with
 
6994
  bzr+ssh. (Robert Collins)
 
6995
 
 
6996
* Fix error handling in Repository.insert_data_stream. (Lukas Lalinsky)
 
6997
 
 
6998
* ``InterRepository.missing_revision_ids`` is now deprecated in favour of
 
6999
  ``InterRepository.search_missing_revision_ids`` which returns a
 
7000
  ``bzrlib.graph.SearchResult`` suitable for making requests from the smart
 
7001
  server. (Robert Collins)
 
7002
 
 
7003
* New error ``NoPublicBranch`` for commands that need a public branch to
 
7004
  operate. (Robert Collins)
 
7005
 
 
7006
* New method ``iter_inventories`` on Repository for access to many
 
7007
  inventories. This is primarily used by the ``revision_trees`` method, as
 
7008
  direct access to inventories is discouraged. (Robert Collins)
 
7009
 
 
7010
* New method ``next_with_ghosts`` on the Graph breadth-first-search objects
 
7011
  which will split out ghosts and present parents into two separate sets,
 
7012
  useful for code which needs to be aware of ghosts (e.g. fetching data
 
7013
  cares about ghosts during revision selection). (Robert Collins)
 
7014
 
 
7015
* Record a timestamp against each mutter to the trace file, relative to the
 
7016
  first import of bzrlib.  (Andrew Bennetts)
 
7017
 
 
7018
* ``Repository.get_data_stream`` is now deprecated in favour of
 
7019
  ``Repository.get_data_stream_for_search`` which allows less network
 
7020
  traffic when requesting data streams over a smart server. (Robert Collins)
 
7021
 
 
7022
* ``RemoteBzrDir._get_tree_branch`` no longer triggers ``_ensure_real``,
 
7023
  removing one round trip on many network operations. (Robert Collins)
 
7024
 
 
7025
* RemoteTransport's ``recommended_page_size`` method now returns 64k, like
 
7026
  SFTPTransport and HttpTransportBase.  (Andrew Bennetts)
 
7027
 
 
7028
* Repository has a new method ``has_revisions`` which signals the presence
 
7029
  of many revisions by returning a set of the revisions listed which are
 
7030
  present. This can be done by index queries without reading data for parent
 
7031
  revision names etc. (Robert Collins)
 
7032
 
 
7033
 
 
7034
bzr 1.1
 
7035
#######
 
7036
 
 
7037
:Released: 2008-01-15
2091
7038
 
2092
7039
(no changes from 1.1rc1)
2093
7040
 
2094
 
bzr 1.1rc1 2008-01-05
2095
 
---------------------
2096
 
 
2097
 
  CHANGES:
2098
 
   
2099
 
   * Dotted revision numbers have been revised. Instead of growing longer with
2100
 
     nested branches the branch number just increases. (eg instead of 1.1.1.1.1
2101
 
     we now report 1.2.1.) This helps scale long lived branches which have many
2102
 
     feature branches merged between them. (John Arbash Meinel)
2103
 
 
2104
 
   * The syntax ``bzr diff branch1 branch2`` is no longer supported.
2105
 
     Use ``bzr diff branch1 --new branch2`` instead. This change has
2106
 
     been made to remove the ambiguity where ``branch2`` is in fact a
2107
 
     specific file to diff within ``branch1``.
2108
 
 
2109
 
  FEATURES:
2110
 
 
2111
 
   * New option to use custom template-based formats in  ``bzr version-info``.
2112
 
     (Lukáš Lalinský)
2113
 
 
2114
 
   * diff '--using' allows an external diff tool to be used for files.
2115
 
     (Aaron Bentley)
2116
 
 
2117
 
   * New "lca" merge-type for fast everyday merging that also supports
2118
 
     criss-cross merges.  (Aaron Bentley)
2119
 
 
2120
 
  IMPROVEMENTS:
2121
 
 
2122
 
   * ``annotate`` now doesn't require a working tree. (Lukáš Lalinský,
2123
 
     #90049)
2124
 
 
2125
 
   * ``branch`` and ``checkout`` can now use files from a working tree to
2126
 
     to speed up the process.  For checkout, this requires the new
2127
 
     --files-from flag.  (Aaron Bentley)
2128
 
 
2129
 
   * ``bzr diff`` now sorts files in alphabetical order.  (Aaron Bentley)
2130
 
 
2131
 
   * ``bzr diff`` now works on branches without working trees. Tree-less
2132
 
     branches can also be compared to each other and to working trees using
2133
 
     the new diff options ``--old`` and ``--new``. Diffing between branches,
2134
 
     with or without trees, now supports specific file filtering as well.
2135
 
     (Ian Clatworthy, #6700)
2136
 
 
2137
 
   * ``bzr pack`` now orders revision texts in topological order, with newest
2138
 
     at the start of the file, promoting linear reads for ``bzr log`` and the
2139
 
     like. This partially fixes #154129. (Robert Collins)
2140
 
 
2141
 
   * Merge directives now fetch prerequisites from the target branch if
2142
 
     needed.  (Aaron Bentley)
2143
 
 
2144
 
   * pycurl now handles digest authentication.
2145
 
     (Vincent Ladeuil)
2146
 
 
2147
 
   * ``reconfigure`` can now convert from repositories.  (Aaron Bentley)
2148
 
 
2149
 
   * ``-l`` is now a short form for ``--limit`` in ``log``.  (Matt Nordhoff)
2150
 
 
2151
 
   * ``merge`` now warns when merge directives cause cherrypicks.
2152
 
     (Aaron Bentley)
2153
 
 
2154
 
   * ``split`` now supported, to enable splitting large trees into smaller
2155
 
     pieces.  (Aaron Bentley)
2156
 
 
2157
 
  BUGFIXES:
2158
 
 
2159
 
   * Avoid AttributeError when unlocking a pack repository when an error occurs.
2160
 
     (Martin Pool, #180208)
2161
 
 
2162
 
   * Better handle short reads when processing multiple range requests.
2163
 
     (Vincent Ladeuil, #179368)
2164
 
 
2165
 
   * build_tree acceleration uses the correct path when a file has been moved.
2166
 
     (Aaron Bentley)
2167
 
 
2168
 
   * ``commit`` now succeeds when a checkout and its master branch share a
2169
 
     repository.  (Aaron Bentley, #177592)
2170
 
 
2171
 
   * Fixed error reporting of unsupported timezone format in
2172
 
     ``log --timezone``. (Lukáš Lalinský, #178722)
2173
 
 
2174
 
   * Fixed Unicode encoding error in ``ignored`` when the output is
2175
 
     redirected to a pipe. (Lukáš Lalinský)
2176
 
 
2177
 
   * Fix traceback when sending large response bodies over the smart protocol
2178
 
     on Windows. (Andrew Bennetts, #115781)
2179
 
 
2180
 
   * Fix ``urlutils.relative_url`` for the case of two ``file:///`` URLs
2181
 
     pointed to different logical drives on Windows.
2182
 
     (Alexander Belchenko, #90847)
2183
 
 
2184
 
   * HTTP test servers are now compatible with the http protocol version 1.1.
2185
 
     (Vincent Ladeuil, #175524)
2186
 
 
2187
 
   * _KnitParentsProvider.get_parent_map now handles requests for ghosts
2188
 
     correctly, instead of erroring or attributing incorrect parents to ghosts.
2189
 
     (Aaron Bentley)
2190
 
 
2191
 
   * ``merge --weave --uncommitted`` now works.  (Aaron Bentley)
2192
 
 
2193
 
   * pycurl authentication handling was broken and incomplete. Fix handling of
2194
 
     user:pass embedded in the urls.
2195
 
     (Vincent Ladeuil, #177643)
2196
 
 
2197
 
   * Files inside non-directories are now handled like other conflict types.
2198
 
     (Aaron Bentley, #177390)
2199
 
 
2200
 
   * ``reconfigure`` is able to convert trees into lightweight checkouts.
2201
 
     (Aaron Bentley)
2202
 
 
2203
 
   * Reduce lockdir timeout to 0 when running ``bzr serve``.  (Andrew Bennetts,
2204
 
     #148087)
2205
 
 
2206
 
   * Test that the old ``version_info_format`` functions still work, even
2207
 
     though they are deprecated. (John Arbash Meinel, ShenMaq, #177872)
2208
 
 
2209
 
   * Transform failures no longer cause ImmortalLimbo errors (Aaron Bentley,
2210
 
     #137681)
2211
 
 
2212
 
   * ``uncommit`` works even when the commit messages of revisions to be
2213
 
     removed use characters not supported in the terminal encoding.
2214
 
     (Aaron Bentley)
2215
 
 
2216
 
   * When dumb http servers return whole files instead of the requested ranges,
2217
 
     read the remaining bytes by chunks to avoid overflowing network buffers.
2218
 
     (Vincent Ladeuil, #175886)
2219
 
 
2220
 
  DOCUMENTATION:
2221
 
 
2222
 
   * Minor tweaks made to the bug tracker integration documentation.
2223
 
     (Ian Clatworthy)
2224
 
 
2225
 
   * Reference material has now be moved out of the User Guide and added
2226
 
     to the User Reference. The User Reference has gained 4 sections as
2227
 
     a result: Authenication Settings, Configuration Settings, Conflicts
2228
 
     and Hooks. All help topics are now dumped into text format in the
2229
 
     doc/en/user-reference directory for those who like browsing that
2230
 
     information in their editor. (Ian Clatworthy)
2231
 
 
2232
 
   * *Using Bazaar with Launchpad* tutorial added. (Ian Clatworthy)
2233
 
 
2234
 
  INTERNALS:
2235
 
 
2236
 
    * find_* methods available for BzrDirs, Branches and WorkingTrees.
2237
 
      (Aaron Bentley)
2238
 
 
2239
 
    * Help topics can now be loaded from files. 
2240
 
      (Ian Clatworthy, Alexander Belchenko)
2241
 
 
2242
 
    * get_parent_map now always provides tuples as its output.  (Aaron Bentley)
2243
 
 
2244
 
    * Parent Providers should now implement ``get_parent_map`` returning a
2245
 
      dictionary instead of ``get_parents`` returning a list.
2246
 
      ``Graph.get_parents`` is now deprecated. (John Arbash Meinel,
2247
 
      Robert Collins)
2248
 
 
2249
 
    * Patience Diff now supports arbitrary python objects, as long as they
2250
 
      support ``hash()``. (John Arbash Meinel)
2251
 
 
2252
 
    * Reduce selftest overhead to establish test names by memoization.
2253
 
      (Vincent Ladeuil)
2254
 
 
2255
 
  API BREAKS:
2256
 
 
2257
 
  TESTING:
2258
 
 
2259
 
   * Modules can now customise their tests by defining a ``load_tests``
2260
 
     attribute. ``pydoc bzrlib.tests.TestUtil.TestLoader.loadTestsFromModule``
2261
 
     for the documentation on this attribute. (Robert Collins)
2262
 
 
2263
 
   * New helper function ``bzrlib.tests.condition_id_re`` which helps
2264
 
     filter tests based on a regular expression search on the tests id.
2265
 
     (Robert Collins)
2266
 
    
2267
 
   * New helper function ``bzrlib.tests.condition_isinstance`` which helps
2268
 
     filter tests based on class. (Robert Collins)
2269
 
    
2270
 
   * New helper function ``bzrlib.tests.exclude_suite_by_condition`` which
2271
 
     generalises the ``exclude_suite_by_re`` function. (Robert Collins)
2272
 
 
2273
 
   * New helper function ``bzrlib.tests.filter_suite_by_condition`` which
2274
 
     generalises the ``filter_suite_by_re`` function. (Robert Collins)
2275
 
 
2276
 
   * New helper method ``bzrlib.tests.exclude_tests_by_re`` which gives a new
2277
 
     TestSuite that does not contain tests from the input that matched a
2278
 
     regular expression. (Robert Collins)
2279
 
 
2280
 
   * New helper method ``bzrlib.tests.randomize_suite`` which returns a
2281
 
     randomized copy of the input suite. (Robert Collins)
2282
 
 
2283
 
   * New helper method ``bzrlib.tests.split_suite_by_re`` which splits a test
2284
 
     suite into two according to a regular expression. (Robert Collins)
2285
 
 
2286
 
   * Parametrize all http tests for the transport implementations, the http
2287
 
     protocol versions (1.0 and 1.1) and the authentication schemes.
2288
 
     (Vincent Ladeuil) 
2289
 
 
2290
 
   * The ``exclude_pattern`` and ``random_order`` parameters to the function
2291
 
     ``bzrlib.tests.filter_suite_by_re`` have been deprecated. (Robert Collins)
2292
 
 
2293
 
   * The method ``bzrlib.tests.sort_suite_by_re`` has been deprecated. It is 
2294
 
     replaced by the new helper methods added in this release. (Robert Collins)
2295
 
 
2296
 
 
2297
 
bzr 1.0 2007-12-14
2298
 
------------------
2299
 
 
2300
 
  DOCUMENTATION:
2301
 
 
2302
 
   * More improvements and fixes to the User Guide.  (Ian Clatworthy)
2303
 
 
2304
 
   * Add information on cherrypicking/rebasing to the User Guide.
2305
 
     (Ian Clatworthy)
2306
 
 
2307
 
   * Improve bug tracker integration documentation. (Ian Clatworthy)
2308
 
 
2309
 
   * Minor edits to ``Bazaar in five minutes`` from David Roberts and
2310
 
     to the rebasing section of the User Guide from Aaron Bentley.
2311
 
     (Ian Clatworthy)
2312
 
 
2313
 
 
2314
 
bzr 1.0rc3 2007-12-11
2315
 
---------------------
2316
 
 
2317
 
  CHANGES:
2318
 
   
2319
 
   * If a traceback occurs, users are now asked to report the bug 
2320
 
     through Launchpad (https://bugs.launchpad.net/bzr/), rather than 
2321
 
     by mail to the mailing list.
2322
 
     (Martin Pool)
2323
 
 
2324
 
  BUGFIXES:
2325
 
 
2326
 
   * Fix Makefile rules for doc generation. (Ian Clatworthy, #175207)
2327
 
 
2328
 
   * Give more feedback during long http downloads by making readv deliver data
2329
 
     as it arrives for urllib, and issue more requests for pycurl. High latency
2330
 
     networks are better handled by urllib, the pycurl implementation give more
2331
 
     feedback but also incur more latency.
2332
 
     (Vincent Ladeuil, #173010)
2333
 
 
2334
 
   * Implement _make_parents_provider on RemoteRepository, allowing generating
2335
 
     bundles against branches on a smart server.  (Andrew Bennetts, #147836)
2336
 
 
2337
 
  DOCUMENTATION:
2338
 
 
2339
 
   * Improved user guide.  (Ian Clatworthy)
2340
 
 
2341
 
   * The single-page quick reference guide is now available as a PDF.
2342
 
     (Ian Clatworthy)
2343
 
 
2344
 
  INTERNALS:
2345
 
 
2346
 
    * readv urllib http implementation is now a real iterator above the
2347
 
      underlying socket and deliver data as soon as it arrives. 'get' still
2348
 
      wraps its output in a StringIO.
2349
 
      (Vincent Ladeuil)
2350
 
 
2351
 
 
2352
 
bzr 1.0rc2 2007-12-07
2353
 
---------------------
2354
 
 
2355
 
  IMPROVEMENTS:
2356
 
 
2357
 
   * Added a --coverage option to selftest. (Andrew Bennetts)
2358
 
 
2359
 
   * Annotate merge (merge-type=weave) now supports cherrypicking.
2360
 
     (Aaron Bentley)
2361
 
 
2362
 
   * ``bzr commit`` now doesn't print the revision number twice. (Matt
2363
 
     Nordhoff, #172612)
2364
 
 
2365
 
   * New configuration option ``bugtracker_<tracker_abbrevation>_url`` to
2366
 
     define locations of bug trackers that are not directly supported by
2367
 
     bzr or a plugin. The URL will be treated as a template and ``{id}``
2368
 
     placeholders will be replaced by specific bug IDs.  (Lukáš Lalinský)
2369
 
 
2370
 
   * Support logging single merge revisions with short and line log formatters.
2371
 
     (Kent Gibson)
2372
 
 
2373
 
   * User Guide enhanced with suggested readability improvements from
2374
 
     Matt Revell and corrections from John Arbash Meinel. (Ian Clatworthy)
2375
 
 
2376
 
   * Quick Start Guide renamed to Quick Start Card, moved down in
2377
 
     the catalog, provided in pdf and png format and updated to refer
2378
 
     to ``send`` instead of ``bundle``. (Ian Clatworthy, #165080)
2379
 
 
2380
 
   * ``switch`` can now be used on heavyweight checkouts as well as
2381
 
     lightweight ones. After switching a heavyweight checkout, the
2382
 
     local branch is a mirror/cache of the new bound branch and
2383
 
     uncommitted changes in the working tree are merged. As a safety
2384
 
     check, if there are local commits in a checkout which have not
2385
 
     been committed to the previously bound branch, then ``switch``
2386
 
     fails unless the ``--force`` option is given. This option is
2387
 
     now also required if the branch a lightweight checkout is pointing
2388
 
     to has been moved. (Ian Clatworthy)
2389
 
 
2390
 
  INTERNALS:
2391
 
 
2392
 
    * New -Dhttp debug option reports http connections, requests and responses.
2393
 
      (Vincent Ladeuil)
2394
 
 
2395
 
    * New -Dmerge debug option, which emits merge plans for merge-type=weave.
2396
 
 
2397
 
  BUGFIXES:
2398
 
 
2399
 
   * Better error message when running ``bzr cat`` on a non-existant branch.
2400
 
     (Lukáš Lalinský, #133782)
2401
 
 
2402
 
   * Catch OSError 17 (file exists) in final phase of tree transform and show
2403
 
     filename to user.
2404
 
     (Alexander Belchenko, #111758)
2405
 
 
2406
 
   * Catch ShortReadvErrors while using pycurl. Also make readv more robust by
2407
 
     allowing multiple GET requests to be issued if too many ranges are
2408
 
     required.
2409
 
     (Vincent Ladeuil, #172701)
2410
 
 
2411
 
   * Check for missing basis texts when fetching from packs to packs.
2412
 
     (John Arbash Meinel, #165290)
2413
 
 
2414
 
   * Fall back to showing e-mail in ``log --short/--line`` if the 
2415
 
     committer/author has only e-mail. (Lukáš Lalinský, #157026)
2416
 
 
2417
 
  API BREAKS:
2418
 
 
2419
 
   * Deprecate not passing a ``location`` argument to commit reporters'
2420
 
     ``started`` methods. (Matt Nordhoff)
2421
 
 
2422
 
 
2423
 
bzr 1.0rc1 2007-11-30
2424
 
---------------------
2425
 
 
2426
 
  NOTES WHEN UPGRADING:
2427
 
 
2428
 
   * The default repository format is now ``pack-0.92``.  This 
2429
 
     default is used when creating new repositories with ``init`` and 
2430
 
     ``init-repo``, and when branching over bzr+ssh or bzr+hpss. 
2431
 
     (See https://bugs.launchpad.net/bugs/164626)
2432
 
 
2433
 
     This format can be read and written by Bazaar 0.92 and later, and 
2434
 
     data can be transferred to and from older formats.
2435
 
 
2436
 
     To upgrade, please reconcile your repository (``bzr reconcile``), and then
2437
 
     upgrade (``bzr upgrade``). 
2438
 
     
2439
 
     ``pack-0.92`` offers substantially better scaling and performance than the
2440
 
     previous knits format. Some operations are slower where the code already
2441
 
     had bad scaling characteristics under knits, the pack format makes such
2442
 
     operations more visible as part of being more scalable overall. We will
2443
 
     correct such operations over the coming releases and encourage the filing
2444
 
     of bugs on any operation which you observe to be slower in a packs
2445
 
     repository. One particular case that we do not intend to fix is pulling
2446
 
     data from a pack repository into a knit repository over a high latency
2447
 
     link;  downgrading such data requires reinsertion of the file texts, and
2448
 
     this is a classic space/time tradeoff. The current implementation is
2449
 
     conservative on memory usage because we need to support converting data
2450
 
     from any tree without problems.  
2451
 
     (Robert Collins, Martin Pool, #164476)
2452
 
 
2453
 
  CHANGES:
2454
 
 
2455
 
   * Disable detection of plink.exe as possible ssh vendor. Plink vendor
2456
 
     still available if user selects it explicitly with BZR_SSH environment
2457
 
     variable. (Alexander Belchenko, workaround for bug #107593)
2458
 
 
2459
 
   * The pack format is now accessible as "pack-0.92", or "pack-0.92-subtree" 
2460
 
     to enable the subtree functions (for example, for bzr-svn).  
2461
 
     See http://doc.bazaar-vcs.org/latest/developer/packrepo.html
2462
 
     (Martin Pool)
2463
 
 
2464
 
  FEATURES:
2465
 
 
2466
 
   * New ``authentication.conf`` file holding the password or other credentials
2467
 
     for remote servers. This can be used for ssh, sftp, smtp and other 
2468
 
     supported transports.
2469
 
     (Vincent Ladeuil)
2470
 
 
2471
 
   * New rich-root and rich-root-pack formats, recording the same data about
2472
 
     tree roots that's recorded for all other directories.
2473
 
     (Aaron Bentley, #164639)
2474
 
 
2475
 
   * ``pack-0.92`` repositories can now be reconciled.
2476
 
     (Robert Collins, #154173)
2477
 
 
2478
 
   * ``switch`` command added for changing the branch a lightweight checkout
2479
 
     is associated with and updating the tree to reflect the latest content
2480
 
     accordingly. This command was previously part of the BzrTools plug-in.
2481
 
     (Ian Clatworthy, Aaron Bentley, David Allouche)
2482
 
 
2483
 
   * ``reconfigure`` command can now convert branches, trees, or checkouts to
2484
 
     lightweight checkouts.  (Aaron Bentley)
2485
 
 
2486
 
  PERFORMANCE:
2487
 
 
2488
 
   * Commit updates the state of the working tree via a delta rather than
2489
 
     supplying entirely new basis trees. For commit of a single specified file
2490
 
     this reduces the wall clock time for commit by roughly a 30%.
2491
 
     (Robert Collins, Martin Pool)
2492
 
 
2493
 
   * Commit with many automatically found deleted paths no longer performs
2494
 
     linear scanning for the children of those paths during inventory
2495
 
     iteration. This should fix commit performance blowing out when many such
2496
 
     paths occur during commit. (Robert Collins, #156491)
2497
 
 
2498
 
   * Fetch with pack repositories will no longer read the entire history graph.
2499
 
     (Robert Collins, #88319)
2500
 
 
2501
 
   * Revert takes out an appropriate lock when reverting to a basis tree, and
2502
 
     does not read the basis inventory twice. (Robert Collins)
2503
 
 
2504
 
   * Diff does not require an inventory to be generated on dirstate trees.
2505
 
     (Aaron Bentley, #149254)
2506
 
 
2507
 
   * New annotate merge (--merge-type=weave) implementation is fast on
2508
 
     versionedfiles withough cached annotations, e.g. pack-0.92.
2509
 
     (Aaron Bentley)
2510
 
 
2511
 
  IMPROVEMENTS:
2512
 
 
2513
 
   * ``bzr merge`` now warns when it encounters a criss-cross merge.
2514
 
     (Aaron Bentley)
2515
 
 
2516
 
   * ``bzr send`` now doesn't require the target e-mail address to be
2517
 
     specified on the command line if an interactive e-mail client is used.
2518
 
     (Lukáš Lalinský)
2519
 
 
2520
 
   * ``bzr tags`` now prints the revision number for each tag, instead of
2521
 
     the revision id, unless --show-ids is passed. In addition, tags can be
2522
 
     sorted chronologically instead of lexicographically with --sort=time.
2523
 
     (Adeodato Simó, #120231)
2524
 
 
2525
 
   * Windows standalone version of bzr is able to load system-wide plugins from
2526
 
     "plugins" subdirectory in installation directory. In addition standalone
2527
 
     installer write to the registry (HKLM\SOFTWARE\Bazaar) useful info 
2528
 
     about paths and bzr version. (Alexander Belchenko, #129298)
2529
 
 
2530
 
  DOCUMENTATION:
2531
 
 
2532
 
  BUG FIXES:
2533
 
 
2534
 
   * A progress bar has been added for knitpack -> knitpack fetching.
2535
 
     (Robert Collins, #157789, #159147)
2536
 
 
2537
 
   * Branching from a branch via smart server now preserves the repository
2538
 
     format. (Andrew Bennetts,  #164626)
2539
 
     
2540
 
   * ``commit`` is now able to invoke an external editor in a non-ascii
2541
 
     directory. (Daniel Watkins, #84043)
2542
 
 
2543
 
   * Catch connection errors for ftp.
2544
 
     (Vincent Ladeuil, #164567)
2545
 
 
2546
 
   * ``check`` no longer reports spurious unreferenced text versions.
2547
 
     (Robert Collins, John A Meinel, #162931, #165071)
2548
 
 
2549
 
   * Conflicts are now resolved recursively by ``revert``.
2550
 
     (Aaron Bentley, #102739)
2551
 
 
2552
 
   * Detect invalid transport reuse attempts by catching invalid URLs.
2553
 
     (Vincent Ladeuil, #161819)
2554
 
 
2555
 
   * Deleting a file without removing it shows a correct diff, not a traceback.
2556
 
     (Aaron Bentley)
2557
 
 
2558
 
   * Do no use timeout in HttpServer anymore.
2559
 
     (Vincent Ladeuil, #158972).
2560
 
 
2561
 
   * Don't catch the exceptions related to the http pipeline status before
2562
 
     retrying an http request or some programming errors may be masked.
2563
 
     (Vincent Ladeuil, #160012)
2564
 
 
2565
 
   * Fix ``bzr rm`` to not delete modified and ignored files.
2566
 
     (Lukáš Lalinský, #172598)
2567
 
 
2568
 
   * Fix exception when revisionspec contains merge revisons but log
2569
 
     formatter doesn't support merge revisions. (Kent Gibson, #148908)
2570
 
 
2571
 
   * Fix exception when ScopeReplacer is assigned to before any members have
2572
 
     been retrieved.  (Aaron Bentley)
2573
 
 
2574
 
   * Fix multiple connections during checkout --lightweight.
2575
 
     (Vincent Ladeuil, #159150)
2576
 
 
2577
 
   * Fix possible error in insert_data_stream when copying between 
2578
 
     pack repositories over bzr+ssh or bzr+http.  
2579
 
     KnitVersionedFile.get_data_stream now makes sure that requested
2580
 
     compression parents are sent before any delta hunks that depend 
2581
 
     on them.
2582
 
     (Martin Pool, #164637)
2583
 
 
2584
 
   * Fix typo in limiting offsets coalescing for http, leading to
2585
 
     whole files being downloaded instead of parts.
2586
 
     (Vincent Ladeuil, #165061)
2587
 
 
2588
 
   * FTP server errors don't error in the error handling code.
2589
 
     (Robert Collins, #161240)
2590
 
 
2591
 
   * Give a clearer message when a pull fails because the source needs
2592
 
     to be reconciled.
2593
 
     (Martin Pool, #164443)
2594
 
 
2595
 
   * It is clearer when a plugin cannot be loaded because of its name, and a
2596
 
     suggestion for an acceptable name is given. (Daniel Watkins, #103023)
2597
 
 
2598
 
   * Leave port as None in transport objects if user doesn't
2599
 
     specify a port in urls.
2600
 
     (vincent Ladeuil, #150860)
2601
 
 
2602
 
   * Make sure Repository.fetch(self) is properly a no-op for all
2603
 
     Repository implementations. (John Arbash Meinel, #158333)
2604
 
 
2605
 
   * Mark .bzr directories as "hidden" on Windows.
2606
 
     (Alexander Belchenko, #71147)
2607
 
 
2608
 
   * ``merge --uncommitted`` can now operate on a single file.
2609
 
     (Aaron Bentley, Lukáš Lalinský, #136890)
2610
 
 
2611
 
   * Obsolete packs are now cleaned up by pack and autopack operations.
2612
 
     (Robert Collins, #153789)
2613
 
 
2614
 
   * Operations pulling data from a smart server where the underlying
2615
 
     repositories are not both annotated/both unannotated will now work.
2616
 
     (Robert Collins, #165304).
2617
 
 
2618
 
   * Reconcile now shows progress bars. (Robert Collins, #159351)
2619
 
 
2620
 
   * ``RemoteBranch`` was not initializing ``self._revision_id_to_revno_map``
2621
 
     properly. (John Arbash Meinel, #162486)
2622
 
 
2623
 
   * Removing an already-removed file reports the file does not exist. (Daniel
2624
 
     Watkins, #152811)
2625
 
 
2626
 
   * Rename on Windows is able to change filename case.
2627
 
     (Alexander Belchenko, #77740)
2628
 
 
2629
 
   * Return error instead of a traceback for ``bzr log -r0``.
2630
 
     (Kent Gibson, #133751)
2631
 
 
2632
 
   * Return error instead of a traceback when bzr is unable to create
2633
 
     symlink on some platforms (e.g. on Windows).
2634
 
     (Alexander Belchenko, workaround for #81689)
2635
 
 
2636
 
   * Revert doesn't crash when restoring a single file from a deleted
2637
 
     directory. (Aaron Bentley)
2638
 
 
2639
 
   * Stderr output via logging mechanism now goes through encoded wrapper
2640
 
     and no more uses utf-8, but terminal encoding instead. So all unicode
2641
 
     strings now should be readable in non-utf-8 terminal.
2642
 
     (Alexander Belchenko, #54173)
2643
 
 
2644
 
   * The error message when ``move --after`` should be used makes how to do so
2645
 
     clearer. (Daniel Watkins, #85237)
2646
 
 
2647
 
   * Unicode-safe output from ``bzr info``. The output will be encoded
2648
 
     using the terminal encoding and unrepresentable characters will be
2649
 
     replaced by '?'. (Lukáš Lalinský, #151844)
2650
 
 
2651
 
   * Working trees are no longer created when pushing into a local no-trees
2652
 
     repo. (Daniel Watkins, #50582)
2653
 
 
2654
 
   * Upgrade util/configobj to version 4.4.0.
2655
 
     (Vincent Ladeuil, #151208).
2656
 
 
2657
 
   * Wrap medusa ftp test server as an FTPServer feature.
2658
 
     (Vincent Ladeuil, #157752)
2659
 
 
2660
 
  API BREAKS:
2661
 
 
2662
 
   * ``osutils.backup_file`` is deprecated. Actually it's not used in bzrlib
2663
 
     during very long time. (Alexander Belchenko)
2664
 
 
2665
 
   * The return value of
2666
 
     ``VersionedFile.iter_lines_added_or_present_in_versions`` has been
2667
 
     changed. Previously it was an iterator of lines, now it is an iterator of
2668
 
     (line, version_id) tuples. This change has been made to aid reconcile and
2669
 
     fetch operations. (Robert Collins)
2670
 
 
2671
 
   * ``bzrlib.repository.get_versioned_file_checker`` is now private.
2672
 
     (Robert Collins)
2673
 
 
2674
 
   * The Repository format registry default has been removed; it was previously
2675
 
     obsoleted by the bzrdir format default, which implies a default repository
2676
 
     format.
2677
 
     (Martin Pool)
2678
 
 
2679
 
  INTERNALS:
2680
 
 
2681
 
   * Added ``ContainerSerialiser`` and ``ContainerPushParser`` to
2682
 
     ``bzrlib.pack``.  These classes provide more convenient APIs for generating
2683
 
     and parsing containers from streams rather than from files.  (Andrew
2684
 
     Bennetts)
2685
 
 
2686
 
   * New module ``lru_cache`` providing a cache for use by tasks that need
2687
 
     semi-random access to large amounts of data. (John A Meinel)
2688
 
 
2689
 
   * InventoryEntry.diff is now deprecated.  Please use diff.DiffTree instead.
2690
 
 
2691
 
  TESTING:
2692
 
 
2693
 
 
2694
 
bzr 0.92 2007-11-05
2695
 
-------------------
2696
 
 
2697
 
  CHANGES:
 
7041
bzr 1.1rc1
 
7042
##########
 
7043
 
 
7044
:Released: 2008-01-05
 
7045
 
 
7046
Changes
 
7047
*******
 
7048
 
 
7049
* Dotted revision numbers have been revised. Instead of growing longer with
 
7050
  nested branches the branch number just increases. (eg instead of 1.1.1.1.1
 
7051
  we now report 1.2.1.) This helps scale long lived branches which have many
 
7052
  feature branches merged between them. (John Arbash Meinel)
 
7053
 
 
7054
* The syntax ``bzr diff branch1 branch2`` is no longer supported.
 
7055
  Use ``bzr diff branch1 --new branch2`` instead. This change has
 
7056
  been made to remove the ambiguity where ``branch2`` is in fact a
 
7057
  specific file to diff within ``branch1``.
 
7058
 
 
7059
Features
 
7060
********
 
7061
 
 
7062
* New option to use custom template-based formats in  ``bzr version-info``.
 
7063
  (Lukáš Lalinský)
 
7064
 
 
7065
* diff '--using' allows an external diff tool to be used for files.
 
7066
  (Aaron Bentley)
 
7067
 
 
7068
* New "lca" merge-type for fast everyday merging that also supports
 
7069
  criss-cross merges.  (Aaron Bentley)
 
7070
 
 
7071
Improvements
 
7072
************
 
7073
 
 
7074
* ``annotate`` now doesn't require a working tree. (Lukáš Lalinský,
 
7075
  #90049)
 
7076
 
 
7077
* ``branch`` and ``checkout`` can now use files from a working tree to
 
7078
  to speed up the process.  For checkout, this requires the new
 
7079
  --files-from flag.  (Aaron Bentley)
 
7080
 
 
7081
* ``bzr diff`` now sorts files in alphabetical order.  (Aaron Bentley)
 
7082
 
 
7083
* ``bzr diff`` now works on branches without working trees. Tree-less
 
7084
  branches can also be compared to each other and to working trees using
 
7085
  the new diff options ``--old`` and ``--new``. Diffing between branches,
 
7086
  with or without trees, now supports specific file filtering as well.
 
7087
  (Ian Clatworthy, #6700)
 
7088
 
 
7089
* ``bzr pack`` now orders revision texts in topological order, with newest
 
7090
  at the start of the file, promoting linear reads for ``bzr log`` and the
 
7091
  like. This partially fixes #154129. (Robert Collins)
 
7092
 
 
7093
* Merge directives now fetch prerequisites from the target branch if
 
7094
  needed.  (Aaron Bentley)
 
7095
 
 
7096
* pycurl now handles digest authentication.
 
7097
  (Vincent Ladeuil)
 
7098
 
 
7099
* ``reconfigure`` can now convert from repositories.  (Aaron Bentley)
 
7100
 
 
7101
* ``-l`` is now a short form for ``--limit`` in ``log``.  (Matt Nordhoff)
 
7102
 
 
7103
* ``merge`` now warns when merge directives cause cherrypicks.
 
7104
  (Aaron Bentley)
 
7105
 
 
7106
* ``split`` now supported, to enable splitting large trees into smaller
 
7107
  pieces.  (Aaron Bentley)
 
7108
 
 
7109
Bugfixes
 
7110
********
 
7111
 
 
7112
* Avoid AttributeError when unlocking a pack repository when an error occurs.
 
7113
  (Martin Pool, #180208)
 
7114
 
 
7115
* Better handle short reads when processing multiple range requests.
 
7116
  (Vincent Ladeuil, #179368)
 
7117
 
 
7118
* build_tree acceleration uses the correct path when a file has been moved.
 
7119
  (Aaron Bentley)
 
7120
 
 
7121
* ``commit`` now succeeds when a checkout and its master branch share a
 
7122
  repository.  (Aaron Bentley, #177592)
 
7123
 
 
7124
* Fixed error reporting of unsupported timezone format in
 
7125
  ``log --timezone``. (Lukáš Lalinský, #178722)
 
7126
 
 
7127
* Fixed Unicode encoding error in ``ignored`` when the output is
 
7128
  redirected to a pipe. (Lukáš Lalinský)
 
7129
 
 
7130
* Fix traceback when sending large response bodies over the smart protocol
 
7131
  on Windows. (Andrew Bennetts, #115781)
 
7132
 
 
7133
* Fix ``urlutils.relative_url`` for the case of two ``file:///`` URLs
 
7134
  pointed to different logical drives on Windows.
 
7135
  (Alexander Belchenko, #90847)
 
7136
 
 
7137
* HTTP test servers are now compatible with the http protocol version 1.1.
 
7138
  (Vincent Ladeuil, #175524)
 
7139
 
 
7140
* _KnitParentsProvider.get_parent_map now handles requests for ghosts
 
7141
  correctly, instead of erroring or attributing incorrect parents to ghosts.
 
7142
  (Aaron Bentley)
 
7143
 
 
7144
* ``merge --weave --uncommitted`` now works.  (Aaron Bentley)
 
7145
 
 
7146
* pycurl authentication handling was broken and incomplete. Fix handling of
 
7147
  user:pass embedded in the urls.
 
7148
  (Vincent Ladeuil, #177643)
 
7149
 
 
7150
* Files inside non-directories are now handled like other conflict types.
 
7151
  (Aaron Bentley, #177390)
 
7152
 
 
7153
* ``reconfigure`` is able to convert trees into lightweight checkouts.
 
7154
  (Aaron Bentley)
 
7155
 
 
7156
* Reduce lockdir timeout to 0 when running ``bzr serve``.  (Andrew Bennetts,
 
7157
  #148087)
 
7158
 
 
7159
* Test that the old ``version_info_format`` functions still work, even
 
7160
  though they are deprecated. (John Arbash Meinel, ShenMaq, #177872)
 
7161
 
 
7162
* Transform failures no longer cause ImmortalLimbo errors (Aaron Bentley,
 
7163
  #137681)
 
7164
 
 
7165
* ``uncommit`` works even when the commit messages of revisions to be
 
7166
  removed use characters not supported in the terminal encoding.
 
7167
  (Aaron Bentley)
 
7168
 
 
7169
* When dumb http servers return whole files instead of the requested ranges,
 
7170
  read the remaining bytes by chunks to avoid overflowing network buffers.
 
7171
  (Vincent Ladeuil, #175886)
 
7172
 
 
7173
Documentation
 
7174
*************
 
7175
 
 
7176
* Minor tweaks made to the bug tracker integration documentation.
 
7177
  (Ian Clatworthy)
 
7178
 
 
7179
* Reference material has now be moved out of the User Guide and added
 
7180
  to the User Reference. The User Reference has gained 4 sections as
 
7181
  a result: Authenication Settings, Configuration Settings, Conflicts
 
7182
  and Hooks. All help topics are now dumped into text format in the
 
7183
  doc/en/user-reference directory for those who like browsing that
 
7184
  information in their editor. (Ian Clatworthy)
 
7185
 
 
7186
* *Using Bazaar with Launchpad* tutorial added. (Ian Clatworthy)
 
7187
 
 
7188
Internals
 
7189
*********
 
7190
 
 
7191
* find_* methods available for BzrDirs, Branches and WorkingTrees.
 
7192
  (Aaron Bentley)
 
7193
 
 
7194
* Help topics can now be loaded from files.
 
7195
  (Ian Clatworthy, Alexander Belchenko)
 
7196
 
 
7197
* get_parent_map now always provides tuples as its output.  (Aaron Bentley)
 
7198
 
 
7199
* Parent Providers should now implement ``get_parent_map`` returning a
 
7200
  dictionary instead of ``get_parents`` returning a list.
 
7201
  ``Graph.get_parents`` is now deprecated. (John Arbash Meinel,
 
7202
  Robert Collins)
 
7203
 
 
7204
* Patience Diff now supports arbitrary python objects, as long as they
 
7205
  support ``hash()``. (John Arbash Meinel)
 
7206
 
 
7207
* Reduce selftest overhead to establish test names by memoization.
 
7208
  (Vincent Ladeuil)
 
7209
 
 
7210
API Breaks
 
7211
**********
 
7212
 
 
7213
Testing
 
7214
*******
 
7215
 
 
7216
* Modules can now customise their tests by defining a ``load_tests``
 
7217
  attribute. ``pydoc bzrlib.tests.TestUtil.TestLoader.loadTestsFromModule``
 
7218
  for the documentation on this attribute. (Robert Collins)
 
7219
 
 
7220
* New helper function ``bzrlib.tests.condition_id_re`` which helps
 
7221
  filter tests based on a regular expression search on the tests id.
 
7222
  (Robert Collins)
 
7223
 
 
7224
* New helper function ``bzrlib.tests.condition_isinstance`` which helps
 
7225
  filter tests based on class. (Robert Collins)
 
7226
 
 
7227
* New helper function ``bzrlib.tests.exclude_suite_by_condition`` which
 
7228
  generalises the ``exclude_suite_by_re`` function. (Robert Collins)
 
7229
 
 
7230
* New helper function ``bzrlib.tests.filter_suite_by_condition`` which
 
7231
  generalises the ``filter_suite_by_re`` function. (Robert Collins)
 
7232
 
 
7233
* New helper method ``bzrlib.tests.exclude_tests_by_re`` which gives a new
 
7234
  TestSuite that does not contain tests from the input that matched a
 
7235
  regular expression. (Robert Collins)
 
7236
 
 
7237
* New helper method ``bzrlib.tests.randomize_suite`` which returns a
 
7238
  randomized copy of the input suite. (Robert Collins)
 
7239
 
 
7240
* New helper method ``bzrlib.tests.split_suite_by_re`` which splits a test
 
7241
  suite into two according to a regular expression. (Robert Collins)
 
7242
 
 
7243
* Parametrize all http tests for the transport implementations, the http
 
7244
  protocol versions (1.0 and 1.1) and the authentication schemes.
 
7245
  (Vincent Ladeuil)
 
7246
 
 
7247
* The ``exclude_pattern`` and ``random_order`` parameters to the function
 
7248
  ``bzrlib.tests.filter_suite_by_re`` have been deprecated. (Robert Collins)
 
7249
 
 
7250
* The method ``bzrlib.tests.sort_suite_by_re`` has been deprecated. It is
 
7251
  replaced by the new helper methods added in this release. (Robert Collins)
 
7252
 
 
7253
 
 
7254
bzr 1.0
 
7255
#######
 
7256
 
 
7257
:Released: 2007-12-14
 
7258
 
 
7259
Documentation
 
7260
*************
 
7261
 
 
7262
* More improvements and fixes to the User Guide.  (Ian Clatworthy)
 
7263
 
 
7264
* Add information on cherrypicking/rebasing to the User Guide.
 
7265
  (Ian Clatworthy)
 
7266
 
 
7267
* Improve bug tracker integration documentation. (Ian Clatworthy)
 
7268
 
 
7269
* Minor edits to ``Bazaar in five minutes`` from David Roberts and
 
7270
  to the rebasing section of the User Guide from Aaron Bentley.
 
7271
  (Ian Clatworthy)
 
7272
 
 
7273
 
 
7274
bzr 1.0rc3
 
7275
##########
 
7276
 
 
7277
:Released: 2007-12-11
 
7278
 
 
7279
Changes
 
7280
*******
 
7281
 
 
7282
* If a traceback occurs, users are now asked to report the bug
 
7283
  through Launchpad (https://bugs.launchpad.net/bzr/), rather than
 
7284
  by mail to the mailing list.
 
7285
  (Martin Pool)
 
7286
 
 
7287
Bugfixes
 
7288
********
 
7289
 
 
7290
* Fix Makefile rules for doc generation. (Ian Clatworthy, #175207)
 
7291
 
 
7292
* Give more feedback during long http downloads by making readv deliver data
 
7293
  as it arrives for urllib, and issue more requests for pycurl. High latency
 
7294
  networks are better handled by urllib, the pycurl implementation give more
 
7295
  feedback but also incur more latency.
 
7296
  (Vincent Ladeuil, #173010)
 
7297
 
 
7298
* Implement _make_parents_provider on RemoteRepository, allowing generating
 
7299
  bundles against branches on a smart server.  (Andrew Bennetts, #147836)
 
7300
 
 
7301
Documentation
 
7302
*************
 
7303
 
 
7304
* Improved user guide.  (Ian Clatworthy)
 
7305
 
 
7306
* The single-page quick reference guide is now available as a PDF.
 
7307
  (Ian Clatworthy)
 
7308
 
 
7309
Internals
 
7310
*********
 
7311
 
 
7312
* readv urllib http implementation is now a real iterator above the
 
7313
  underlying socket and deliver data as soon as it arrives. 'get' still
 
7314
  wraps its output in a StringIO.
 
7315
  (Vincent Ladeuil)
 
7316
 
 
7317
 
 
7318
bzr 1.0rc2
 
7319
##########
 
7320
 
 
7321
:Released: 2007-12-07
 
7322
 
 
7323
Improvements
 
7324
************
 
7325
 
 
7326
* Added a --coverage option to selftest. (Andrew Bennetts)
 
7327
 
 
7328
* Annotate merge (merge-type=weave) now supports cherrypicking.
 
7329
  (Aaron Bentley)
 
7330
 
 
7331
* ``bzr commit`` now doesn't print the revision number twice. (Matt
 
7332
  Nordhoff, #172612)
 
7333
 
 
7334
* New configuration option ``bugtracker_<tracker_abbrevation>_url`` to
 
7335
  define locations of bug trackers that are not directly supported by
 
7336
  bzr or a plugin. The URL will be treated as a template and ``{id}``
 
7337
  placeholders will be replaced by specific bug IDs.  (Lukáš Lalinský)
 
7338
 
 
7339
* Support logging single merge revisions with short and line log formatters.
 
7340
  (Kent Gibson)
 
7341
 
 
7342
* User Guide enhanced with suggested readability improvements from
 
7343
  Matt Revell and corrections from John Arbash Meinel. (Ian Clatworthy)
 
7344
 
 
7345
* Quick Start Guide renamed to Quick Start Card, moved down in
 
7346
  the catalog, provided in pdf and png format and updated to refer
 
7347
  to ``send`` instead of ``bundle``. (Ian Clatworthy, #165080)
 
7348
 
 
7349
* ``switch`` can now be used on heavyweight checkouts as well as
 
7350
  lightweight ones. After switching a heavyweight checkout, the
 
7351
  local branch is a mirror/cache of the new bound branch and
 
7352
  uncommitted changes in the working tree are merged. As a safety
 
7353
  check, if there are local commits in a checkout which have not
 
7354
  been committed to the previously bound branch, then ``switch``
 
7355
  fails unless the ``--force`` option is given. This option is
 
7356
  now also required if the branch a lightweight checkout is pointing
 
7357
  to has been moved. (Ian Clatworthy)
 
7358
 
 
7359
Internals
 
7360
*********
 
7361
 
 
7362
* New -Dhttp debug option reports http connections, requests and responses.
 
7363
  (Vincent Ladeuil)
 
7364
 
 
7365
* New -Dmerge debug option, which emits merge plans for merge-type=weave.
 
7366
 
 
7367
Bugfixes
 
7368
********
 
7369
 
 
7370
* Better error message when running ``bzr cat`` on a non-existant branch.
 
7371
  (Lukáš Lalinský, #133782)
 
7372
 
 
7373
* Catch OSError 17 (file exists) in final phase of tree transform and show
 
7374
  filename to user.
 
7375
  (Alexander Belchenko, #111758)
 
7376
 
 
7377
* Catch ShortReadvErrors while using pycurl. Also make readv more robust by
 
7378
  allowing multiple GET requests to be issued if too many ranges are
 
7379
  required.
 
7380
  (Vincent Ladeuil, #172701)
 
7381
 
 
7382
* Check for missing basis texts when fetching from packs to packs.
 
7383
  (John Arbash Meinel, #165290)
 
7384
 
 
7385
* Fall back to showing e-mail in ``log --short/--line`` if the
 
7386
  committer/author has only e-mail. (Lukáš Lalinský, #157026)
 
7387
 
 
7388
API Breaks
 
7389
**********
 
7390
 
 
7391
* Deprecate not passing a ``location`` argument to commit reporters'
 
7392
  ``started`` methods. (Matt Nordhoff)
 
7393
 
 
7394
 
 
7395
bzr 1.0rc1
 
7396
##########
 
7397
 
 
7398
:Released: 2007-11-30
 
7399
 
 
7400
Notes When Upgrading
 
7401
********************
 
7402
 
 
7403
* The default repository format is now ``pack-0.92``.  This
 
7404
  default is used when creating new repositories with ``init`` and
 
7405
  ``init-repo``, and when branching over bzr+ssh or bzr+hpss.
 
7406
  (See https://bugs.launchpad.net/bugs/164626)
 
7407
 
 
7408
  This format can be read and written by Bazaar 0.92 and later, and
 
7409
  data can be transferred to and from older formats.
 
7410
 
 
7411
  To upgrade, please reconcile your repository (``bzr reconcile``), and then
 
7412
  upgrade (``bzr upgrade``).
 
7413
 
 
7414
  ``pack-0.92`` offers substantially better scaling and performance than the
 
7415
  previous knits format. Some operations are slower where the code already
 
7416
  had bad scaling characteristics under knits, the pack format makes such
 
7417
  operations more visible as part of being more scalable overall. We will
 
7418
  correct such operations over the coming releases and encourage the filing
 
7419
  of bugs on any operation which you observe to be slower in a packs
 
7420
  repository. One particular case that we do not intend to fix is pulling
 
7421
  data from a pack repository into a knit repository over a high latency
 
7422
  link;  downgrading such data requires reinsertion of the file texts, and
 
7423
  this is a classic space/time tradeoff. The current implementation is
 
7424
  conservative on memory usage because we need to support converting data
 
7425
  from any tree without problems.
 
7426
  (Robert Collins, Martin Pool, #164476)
 
7427
 
 
7428
Changes
 
7429
*******
 
7430
 
 
7431
* Disable detection of plink.exe as possible ssh vendor. Plink vendor
 
7432
  still available if user selects it explicitly with BZR_SSH environment
 
7433
  variable. (Alexander Belchenko, workaround for bug #107593)
 
7434
 
 
7435
* The pack format is now accessible as "pack-0.92", or "pack-0.92-subtree"
 
7436
  to enable the subtree functions (for example, for bzr-svn).
 
7437
  (Martin Pool)
 
7438
 
 
7439
Features
 
7440
********
 
7441
 
 
7442
* New ``authentication.conf`` file holding the password or other credentials
 
7443
  for remote servers. This can be used for ssh, sftp, smtp and other
 
7444
  supported transports.
 
7445
  (Vincent Ladeuil)
 
7446
 
 
7447
* New rich-root and rich-root-pack formats, recording the same data about
 
7448
  tree roots that's recorded for all other directories.
 
7449
  (Aaron Bentley, #164639)
 
7450
 
 
7451
* ``pack-0.92`` repositories can now be reconciled.
 
7452
  (Robert Collins, #154173)
 
7453
 
 
7454
* ``switch`` command added for changing the branch a lightweight checkout
 
7455
  is associated with and updating the tree to reflect the latest content
 
7456
  accordingly. This command was previously part of the BzrTools plug-in.
 
7457
  (Ian Clatworthy, Aaron Bentley, David Allouche)
 
7458
 
 
7459
* ``reconfigure`` command can now convert branches, trees, or checkouts to
 
7460
  lightweight checkouts.  (Aaron Bentley)
 
7461
 
 
7462
Performance
 
7463
***********
 
7464
 
 
7465
* Commit updates the state of the working tree via a delta rather than
 
7466
  supplying entirely new basis trees. For commit of a single specified file
 
7467
  this reduces the wall clock time for commit by roughly a 30%.
 
7468
  (Robert Collins, Martin Pool)
 
7469
 
 
7470
* Commit with many automatically found deleted paths no longer performs
 
7471
  linear scanning for the children of those paths during inventory
 
7472
  iteration. This should fix commit performance blowing out when many such
 
7473
  paths occur during commit. (Robert Collins, #156491)
 
7474
 
 
7475
* Fetch with pack repositories will no longer read the entire history graph.
 
7476
  (Robert Collins, #88319)
 
7477
 
 
7478
* Revert takes out an appropriate lock when reverting to a basis tree, and
 
7479
  does not read the basis inventory twice. (Robert Collins)
 
7480
 
 
7481
* Diff does not require an inventory to be generated on dirstate trees.
 
7482
  (Aaron Bentley, #149254)
 
7483
 
 
7484
* New annotate merge (--merge-type=weave) implementation is fast on
 
7485
  versionedfiles withough cached annotations, e.g. pack-0.92.
 
7486
  (Aaron Bentley)
 
7487
 
 
7488
Improvements
 
7489
************
 
7490
 
 
7491
* ``bzr merge`` now warns when it encounters a criss-cross merge.
 
7492
  (Aaron Bentley)
 
7493
 
 
7494
* ``bzr send`` now doesn't require the target e-mail address to be
 
7495
  specified on the command line if an interactive e-mail client is used.
 
7496
  (Lukáš Lalinský)
 
7497
 
 
7498
* ``bzr tags`` now prints the revision number for each tag, instead of
 
7499
  the revision id, unless --show-ids is passed. In addition, tags can be
 
7500
  sorted chronologically instead of lexicographically with --sort=time.
 
7501
  (Adeodato Simó, #120231)
 
7502
 
 
7503
* Windows standalone version of bzr is able to load system-wide plugins from
 
7504
  "plugins" subdirectory in installation directory. In addition standalone
 
7505
  installer write to the registry (HKLM\SOFTWARE\Bazaar) useful info
 
7506
  about paths and bzr version. (Alexander Belchenko, #129298)
 
7507
 
 
7508
Documentation
 
7509
*************
 
7510
 
 
7511
Bug Fixes
 
7512
*********
 
7513
 
 
7514
* A progress bar has been added for knitpack -> knitpack fetching.
 
7515
  (Robert Collins, #157789, #159147)
 
7516
 
 
7517
* Branching from a branch via smart server now preserves the repository
 
7518
  format. (Andrew Bennetts,  #164626)
 
7519
 
 
7520
* ``commit`` is now able to invoke an external editor in a non-ascii
 
7521
  directory. (Daniel Watkins, #84043)
 
7522
 
 
7523
* Catch connection errors for ftp.
 
7524
  (Vincent Ladeuil, #164567)
 
7525
 
 
7526
* ``check`` no longer reports spurious unreferenced text versions.
 
7527
  (Robert Collins, John A Meinel, #162931, #165071)
 
7528
 
 
7529
* Conflicts are now resolved recursively by ``revert``.
 
7530
  (Aaron Bentley, #102739)
 
7531
 
 
7532
* Detect invalid transport reuse attempts by catching invalid URLs.
 
7533
  (Vincent Ladeuil, #161819)
 
7534
 
 
7535
* Deleting a file without removing it shows a correct diff, not a traceback.
 
7536
  (Aaron Bentley)
 
7537
 
 
7538
* Do no use timeout in HttpServer anymore.
 
7539
  (Vincent Ladeuil, #158972).
 
7540
 
 
7541
* Don't catch the exceptions related to the http pipeline status before
 
7542
  retrying an http request or some programming errors may be masked.
 
7543
  (Vincent Ladeuil, #160012)
 
7544
 
 
7545
* Fix ``bzr rm`` to not delete modified and ignored files.
 
7546
  (Lukáš Lalinský, #172598)
 
7547
 
 
7548
* Fix exception when revisionspec contains merge revisons but log
 
7549
  formatter doesn't support merge revisions. (Kent Gibson, #148908)
 
7550
 
 
7551
* Fix exception when ScopeReplacer is assigned to before any members have
 
7552
  been retrieved.  (Aaron Bentley)
 
7553
 
 
7554
* Fix multiple connections during checkout --lightweight.
 
7555
  (Vincent Ladeuil, #159150)
 
7556
 
 
7557
* Fix possible error in insert_data_stream when copying between
 
7558
  pack repositories over bzr+ssh or bzr+http.
 
7559
  KnitVersionedFile.get_data_stream now makes sure that requested
 
7560
  compression parents are sent before any delta hunks that depend
 
7561
  on them.
 
7562
  (Martin Pool, #164637)
 
7563
 
 
7564
* Fix typo in limiting offsets coalescing for http, leading to
 
7565
  whole files being downloaded instead of parts.
 
7566
  (Vincent Ladeuil, #165061)
 
7567
 
 
7568
* FTP server errors don't error in the error handling code.
 
7569
  (Robert Collins, #161240)
 
7570
 
 
7571
* Give a clearer message when a pull fails because the source needs
 
7572
  to be reconciled.
 
7573
  (Martin Pool, #164443)
 
7574
 
 
7575
* It is clearer when a plugin cannot be loaded because of its name, and a
 
7576
  suggestion for an acceptable name is given. (Daniel Watkins, #103023)
 
7577
 
 
7578
* Leave port as None in transport objects if user doesn't
 
7579
  specify a port in urls.
 
7580
  (vincent Ladeuil, #150860)
 
7581
 
 
7582
* Make sure Repository.fetch(self) is properly a no-op for all
 
7583
  Repository implementations. (John Arbash Meinel, #158333)
 
7584
 
 
7585
* Mark .bzr directories as "hidden" on Windows.
 
7586
  (Alexander Belchenko, #71147)
 
7587
 
 
7588
* ``merge --uncommitted`` can now operate on a single file.
 
7589
  (Aaron Bentley, Lukáš Lalinský, #136890)
 
7590
 
 
7591
* Obsolete packs are now cleaned up by pack and autopack operations.
 
7592
  (Robert Collins, #153789)
 
7593
 
 
7594
* Operations pulling data from a smart server where the underlying
 
7595
  repositories are not both annotated/both unannotated will now work.
 
7596
  (Robert Collins, #165304).
 
7597
 
 
7598
* Reconcile now shows progress bars. (Robert Collins, #159351)
 
7599
 
 
7600
* ``RemoteBranch`` was not initializing ``self._revision_id_to_revno_map``
 
7601
  properly. (John Arbash Meinel, #162486)
 
7602
 
 
7603
* Removing an already-removed file reports the file does not exist. (Daniel
 
7604
  Watkins, #152811)
 
7605
 
 
7606
* Rename on Windows is able to change filename case.
 
7607
  (Alexander Belchenko, #77740)
 
7608
 
 
7609
* Return error instead of a traceback for ``bzr log -r0``.
 
7610
  (Kent Gibson, #133751)
 
7611
 
 
7612
* Return error instead of a traceback when bzr is unable to create
 
7613
  symlink on some platforms (e.g. on Windows).
 
7614
  (Alexander Belchenko, workaround for #81689)
 
7615
 
 
7616
* Revert doesn't crash when restoring a single file from a deleted
 
7617
  directory. (Aaron Bentley)
 
7618
 
 
7619
* Stderr output via logging mechanism now goes through encoded wrapper
 
7620
  and no more uses utf-8, but terminal encoding instead. So all unicode
 
7621
  strings now should be readable in non-utf-8 terminal.
 
7622
  (Alexander Belchenko, #54173)
 
7623
 
 
7624
* The error message when ``move --after`` should be used makes how to do so
 
7625
  clearer. (Daniel Watkins, #85237)
 
7626
 
 
7627
* Unicode-safe output from ``bzr info``. The output will be encoded
 
7628
  using the terminal encoding and unrepresentable characters will be
 
7629
  replaced by '?'. (Lukáš Lalinský, #151844)
 
7630
 
 
7631
* Working trees are no longer created when pushing into a local no-trees
 
7632
  repo. (Daniel Watkins, #50582)
 
7633
 
 
7634
* Upgrade util/configobj to version 4.4.0.
 
7635
  (Vincent Ladeuil, #151208).
 
7636
 
 
7637
* Wrap medusa ftp test server as an FTPServer feature.
 
7638
  (Vincent Ladeuil, #157752)
 
7639
 
 
7640
API Breaks
 
7641
**********
 
7642
 
 
7643
* ``osutils.backup_file`` is deprecated. Actually it's not used in bzrlib
 
7644
  during very long time. (Alexander Belchenko)
 
7645
 
 
7646
* The return value of
 
7647
  ``VersionedFile.iter_lines_added_or_present_in_versions`` has been
 
7648
  changed. Previously it was an iterator of lines, now it is an iterator of
 
7649
  (line, version_id) tuples. This change has been made to aid reconcile and
 
7650
  fetch operations. (Robert Collins)
 
7651
 
 
7652
* ``bzrlib.repository.get_versioned_file_checker`` is now private.
 
7653
  (Robert Collins)
 
7654
 
 
7655
* The Repository format registry default has been removed; it was previously
 
7656
  obsoleted by the bzrdir format default, which implies a default repository
 
7657
  format.
 
7658
  (Martin Pool)
 
7659
 
 
7660
Internals
 
7661
*********
 
7662
 
 
7663
* Added ``ContainerSerialiser`` and ``ContainerPushParser`` to
 
7664
  ``bzrlib.pack``.  These classes provide more convenient APIs for generating
 
7665
  and parsing containers from streams rather than from files.  (Andrew
 
7666
  Bennetts)
 
7667
 
 
7668
* New module ``lru_cache`` providing a cache for use by tasks that need
 
7669
  semi-random access to large amounts of data. (John A Meinel)
 
7670
 
 
7671
* InventoryEntry.diff is now deprecated.  Please use diff.DiffTree instead.
 
7672
 
 
7673
 
 
7674
bzr 0.92
 
7675
########
 
7676
 
 
7677
:Released: 2007-11-05
 
7678
 
 
7679
Changes
 
7680
*******
2698
7681
 
2699
7682
  * New uninstaller on Win32.  (Alexander Belchenko)
2700
7683
 
2701
7684
 
2702
 
bzr 0.92rc1 2007-10-29
2703
 
----------------------
2704
 
 
2705
 
  NOTES WHEN UPGRADING:
2706
 
 
2707
 
  CHANGES:
2708
 
  
2709
 
   * ``bzr`` now returns exit code 4 if an internal error occurred, and 
2710
 
     3 if a normal error occurred.  (Martin Pool)
2711
 
 
2712
 
   * ``pull``, ``merge`` and ``push`` will no longer silently correct some
2713
 
     repository index errors that occured as a result of the Weave disk format.
2714
 
     Instead the ``reconcile`` command needs to be run to correct those
2715
 
     problems if they exist (and it has been able to fix most such problems
2716
 
     since bzr 0.8). Some new problems have been identified during this release
2717
 
     and you should run ``bzr check`` once on every repository to see if you
2718
 
     need to reconcile. If you cannot ``pull`` or ``merge`` from a remote
2719
 
     repository due to mismatched parent errors - a symptom of index errors -
2720
 
     you should simply take a full copy of that remote repository to a clean
2721
 
     directory outside any local repositories, then run reconcile on it, and
2722
 
     finally pull from it locally. (And naturally email the repositories owner
2723
 
     to ask them to upgrade and run reconcile).
2724
 
     (Robert Collins)
2725
 
 
2726
 
  FEATURES:
2727
 
 
2728
 
   * New ``knitpack-experimental`` repository format. This is interoperable with
2729
 
     the ``dirstate-tags`` format but uses a smarter storage design that greatly
2730
 
     speeds up many operations, both local and remote. This new format can be
2731
 
     used as an option to the ``init``, ``init-repository`` and ``upgrade``
2732
 
     commands. See http://doc.bazaar-vcs.org/0.92/developers/knitpack.html
2733
 
     for further details. (Robert Collins)
2734
 
 
2735
 
   * For users of bzr-svn (and those testing the prototype subtree support) that
2736
 
     wish to try packs, a new ``knitpack-subtree-experimental`` format has also
2737
 
     been added. This is interoperable with the ``dirstate-subtrees`` format.
2738
 
     (Robert Collins)
2739
 
 
2740
 
   * New ``reconfigure`` command. (Aaron Bentley)
2741
 
 
2742
 
   * New ``revert --forget-merges`` command, which removes the record of a pending 
2743
 
     merge without affecting the working tree contents.  (Martin Pool)
2744
 
 
2745
 
   * New ``bzr_remote_path`` configuration variable allows finer control of
2746
 
     remote bzr locations than BZR_REMOTE_PATH environment variable.
2747
 
     (Aaron Bentley)
2748
 
 
2749
 
   * New ``launchpad-login`` command to tell Bazaar your Launchpad
2750
 
     user ID.  This can then be used by other functions of the
2751
 
     Launchpad plugin. (James Henstridge)
2752
 
 
2753
 
  PERFORMANCE:
2754
 
 
2755
 
   * Commit in quiet mode is now slightly faster as the information to
2756
 
     output is no longer calculated. (Ian Clatworthy)
2757
 
 
2758
 
   * Commit no longer checks for new text keys during insertion when the
2759
 
     revision id was deterministically unique. (Robert Collins)
2760
 
 
2761
 
   * Committing a change which is not a merge and does not change the number of
2762
 
     files in the tree is faster by utilising the data about whether files are
2763
 
     changed to determine if the tree is unchanged rather than recalculating
2764
 
     it at the end of the commit process. (Robert Collins)
2765
 
 
2766
 
   * Inventory serialisation no longer double-sha's the content.
2767
 
     (Robert Collins)
2768
 
 
2769
 
   * Knit text reconstruction now avoids making copies of the lines list for
2770
 
     interim texts when building a single text. The new ``apply_delta`` method
2771
 
     on ``KnitContent`` aids this by allowing modification of the revision id
2772
 
     such objects represent. (Robert Collins)
2773
 
 
2774
 
   * Pack indices are now partially parsed for specific key lookup using a
2775
 
     bisection approach. (Robert Collins)
2776
 
 
2777
 
   * Partial commits are now approximately 40% faster by walking over the
2778
 
     unselected current tree more efficiently. (Robert Collins)
2779
 
 
2780
 
   * XML inventory serialisation takes 20% less time while being stricter about
2781
 
     the contents. (Robert Collins)
2782
 
 
2783
 
   * Graph ``heads()`` queries have been fixed to no longer access all history
2784
 
     unnecessarily. (Robert Collins)
2785
 
 
2786
 
  IMPROVEMENTS:
2787
 
 
2788
 
   * ``bzr+https://`` smart server across https now supported. 
2789
 
     (John Ferlito, Martin Pool, #128456)
2790
 
 
2791
 
   * Mutt is now a supported mail client; set ``mail_client=mutt`` in your
2792
 
     bazaar.conf and ``send`` will use mutt. (Keir Mierle)
2793
 
 
2794
 
   * New option ``-c``/``--change`` for ``merge`` command for cherrypicking 
2795
 
     changes from one revision. (Alexander Belchenko, #141368)
2796
 
 
2797
 
   * Show encodings, locale and list of plugins in the traceback message.
2798
 
     (Martin Pool, #63894)
2799
 
 
2800
 
   * Experimental directory formats can now be marked with
2801
 
     ``experimental = True`` during registration. (Ian Clatworthy)
2802
 
 
2803
 
  DOCUMENTATION:
2804
 
 
2805
 
   * New *Bazaar in Five Minutes* guide.  (Matthew Revell)
2806
 
 
2807
 
   * The hooks reference documentation is now converted to html as expected.
2808
 
     (Ian Clatworthy)
2809
 
 
2810
 
  BUG FIXES:
2811
 
 
2812
 
   * Connection error reporting for the smart server has been fixed to
2813
 
     display a user friendly message instead of a traceback.
2814
 
     (Ian Clatworthy, #115601)
2815
 
 
2816
 
   * Make sure to use ``O_BINARY`` when opening files to check their
2817
 
     sha1sum. (Alexander Belchenko, John Arbash Meinel, #153493)
2818
 
 
2819
 
   * Fix a problem with Win32 handling of the executable bit.
2820
 
     (John Arbash Meinel, #149113)
2821
 
 
2822
 
   * ``bzr+ssh://`` and ``sftp://`` URLs that do not specify ports explicitly
2823
 
     no longer assume that means port 22.  This allows people using OpenSSH to
2824
 
     override the default port in their ``~/.ssh/config`` if they wish.  This
2825
 
     fixes a bug introduced in bzr 0.91.  (Andrew Bennetts, #146715)
2826
 
 
2827
 
   * Commands reporting exceptions can now be profiled and still have their
2828
 
     data correctly dumped to a file. For example, a ``bzr commit`` with
2829
 
     no changes still reports the operation as pointless but doing so no
2830
 
     longer throws away the profiling data if this command is run with
2831
 
     ``--lsprof-file callgrind.out.ci`` say. (Ian Clatworthy)
2832
 
 
2833
 
   * Fallback to ftp when paramiko is not installed and sftp can't be used for
2834
 
     ``tests/commands`` so that the test suite is still usable without
2835
 
     paramiko.
2836
 
     (Vincent Ladeuil, #59150)
2837
 
 
2838
 
   * Fix commit ordering in corner case. (Aaron Bentley, #94975)
2839
 
 
2840
 
   * Fix long standing bug in partial commit when there are renames 
2841
 
     left in tree. (Robert Collins, #140419)
2842
 
 
2843
 
   * Fix selftest semi-random noise during http related tests.
2844
 
     (Vincent Ladeuil, #140614)
2845
 
 
2846
 
   * Fix typo in ftp.py making the reconnection fail on temporary errors.
2847
 
     (Vincent Ladeuil, #154259)
2848
 
 
2849
 
   * Fix failing test by comparing real paths to cover the case where the TMPDIR
2850
 
     contains a symbolic link.
2851
 
     (Vincent Ladeuil, #141382).
2852
 
 
2853
 
   * Fix log against smart server branches that don't support tags.
2854
 
     (James Westby, #140615)
2855
 
 
2856
 
   * Fix pycurl http implementation by defining error codes from
2857
 
     pycurl instead of relying on an old curl definition.
2858
 
     (Vincent Ladeuil, #147530)
2859
 
 
2860
 
   * Fix 'unprintable error' message when displaying BzrCheckError and 
2861
 
     some other exceptions on Python 2.5.
2862
 
     (Martin Pool, #144633)
2863
 
 
2864
 
   * Fix ``Inventory.copy()`` and add test for it. (Jelmer Vernooij)
2865
 
 
2866
 
   * Handles default value for ListOption in cmd_commit.
2867
 
     (Vincent Ladeuil, #140432)
2868
 
 
2869
 
   * HttpServer and FtpServer need to be closed properly or a listening socket
2870
 
     will remain opened.
2871
 
     (Vincent Ladeuil, #140055)
2872
 
 
2873
 
   * Monitor the .bzr directory created in the top level test
2874
 
     directory to detect leaking tests.
2875
 
     (Vincent Ladeuil, #147986)
2876
 
 
2877
 
   * The basename, not the full path, is now used when checking whether
2878
 
     the profiling dump file begins with ``callgrind.out`` or not. This
2879
 
     fixes a bug reported by Aaron Bentley on IRC. (Ian Clatworthy)
2880
 
 
2881
 
   * Trivial fix for invoking command ``reconfigure`` without arguments.
2882
 
     (Rob Weir, #141629)
2883
 
 
2884
 
   * ``WorkingTree.rename_one`` will now raise an error if normalisation of the
2885
 
     new path causes bzr to be unable to access the file. (Robert Collins)
2886
 
 
2887
 
   * Correctly detect a NoSuchFile when using a filezilla server. (Gary van der
2888
 
     Merwe)
2889
 
 
2890
 
  API BREAKS:
2891
 
 
2892
 
   * ``bzrlib.index.GraphIndex`` now requires a size parameter to the
2893
 
     constructor, for enabling bisection searches. (Robert Collins)
2894
 
 
2895
 
   * ``CommitBuilder.record_entry_contents`` now requires the root entry of a
2896
 
     tree be supplied to it, previously failing to do so would trigger a
2897
 
     deprecation warning. (Robert Collins)
2898
 
 
2899
 
   * ``KnitVersionedFile.add*`` will no longer cache added records even when
2900
 
     enable_cache() has been called - the caching feature is now exclusively for
2901
 
     reading existing data. (Robert Collins)
2902
 
 
2903
 
   * ``ReadOnlyLockError`` is deprecated; ``LockFailed`` is usually more 
2904
 
     appropriate.  (Martin Pool)
2905
 
 
2906
 
   * Removed ``bzrlib.transport.TransportLogger`` - please see the new
2907
 
     ``trace+`` transport instead. (Robert Collins)
2908
 
 
2909
 
   * Removed previously deprecated varargs interface to ``TestCase.run_bzr`` and
2910
 
     deprecated methods ``TestCase.capture`` and ``TestCase.run_bzr_captured``.
2911
 
     (Martin Pool)
2912
 
 
2913
 
   * Removed previous deprecated ``basis_knit`` parameter to the
2914
 
     ``KnitVersionedFile`` constructor. (Robert Collins)
2915
 
 
2916
 
   * Special purpose method ``TestCase.run_bzr_decode`` is moved to the test_non_ascii 
2917
 
     class that needs it.
2918
 
     (Martin Pool)
2919
 
 
2920
 
   * The class ``bzrlib.repofmt.knitrepo.KnitRepository3`` has been folded into
2921
 
     ``KnitRepository`` by parameters to the constructor. (Robert Collins)
2922
 
 
2923
 
   * The ``VersionedFile`` interface now allows content checks to be bypassed
2924
 
     by supplying check_content=False.  This saves nearly 30% of the minimum
2925
 
     cost to store a version of a file. (Robert Collins)
2926
 
 
2927
 
   * Tree's with bad state such as files with no length or sha will no longer
2928
 
     be silently accepted by the repository XML serialiser. To serialise
2929
 
     inventories without such data, pass working=True to write_inventory.
2930
 
     (Robert Collins)
2931
 
 
2932
 
   * ``VersionedFile.fix_parents`` has been removed as a harmful API.
2933
 
     ``VersionedFile.join`` will no longer accept different parents on either
2934
 
     side of a join - it will either ignore them, or error, depending on the
2935
 
     implementation. See notes when upgrading for more information.
2936
 
     (Robert Collins)
2937
 
 
2938
 
  INTERNALS:
2939
 
 
2940
 
   * ``bzrlib.transport.Transport.put_file`` now returns the number of bytes
2941
 
     put by the method call, to allow avoiding stat-after-write or
2942
 
     housekeeping in callers. (Robert Collins)
2943
 
 
2944
 
   * ``bzrlib.xml_serializer.Serializer`` is now responsible for checking that
2945
 
     mandatory attributes are present on serialisation and deserialisation.
2946
 
     This fixes some holes in API usage and allows better separation between
2947
 
     physical storage and object serialisation. (Robert Collins)
2948
 
 
2949
 
   * New class ``bzrlib.errors.InternalBzrError`` which is just a convenient
2950
 
     shorthand for deriving from BzrError and setting internal_error = True.
2951
 
     (Robert Collins)
2952
 
 
2953
 
   * New method ``bzrlib.mutabletree.update_to_one_parent_via_delta`` for
2954
 
     moving the state of a parent tree to a new version via a delta rather than
2955
 
     a complete replacement tree. (Robert Collins)
2956
 
 
2957
 
   * New method ``bzrlib.osutils.minimum_path_selection`` useful for removing
2958
 
     duplication from user input, when a user mentions both a path and an item
2959
 
     contained within that path. (Robert Collins)
2960
 
 
2961
 
   * New method ``bzrlib.repository.Repository.is_write_locked`` useful for
2962
 
     determining if a repository is write locked. (Robert Collins)
2963
 
 
2964
 
   * New method on ``bzrlib.tree.Tree`` ``path_content_summary`` provides a
2965
 
     tuple containing the key information about a path for commit processing
2966
 
     to complete. (Robert Collins)
2967
 
 
2968
 
   * New method on xml serialisers, write_inventory_to_lines, which matches the
2969
 
     API used by knits for adding content. (Robert Collins)
2970
 
 
2971
 
   * New module ``bzrlib.bisect_multi`` with generic multiple-bisection-at-once
2972
 
     logic, currently only available for byte-based lookup
2973
 
     (``bisect_multi_bytes``). (Robert Collins)
2974
 
 
2975
 
   * New helper ``bzrlib.tuned_gzip.bytes_to_gzip`` which takes a byte string
2976
 
     and returns a gzipped version of the same. This is used to avoid a bunch
2977
 
     of api friction during adding of knit hunks. (Robert Collins)
2978
 
 
2979
 
   * New parameter on ``bzrlib.transport.Transport.readv``
2980
 
     ``adjust_for_latency`` which changes readv from returning strictly the
2981
 
     requested data to inserted return larger ranges and in forward read order
2982
 
     to reduce the effect of network latency. (Robert Collins)
2983
 
 
2984
 
   * New parameter yield_parents on ``Inventory.iter_entries_by_dir`` which
2985
 
     causes the parents of a selected id to be returned recursively, so all the
2986
 
     paths from the root down to each element of selected_file_ids are
2987
 
     returned. (Robert Collins)
2988
 
 
2989
 
   * Knit joining has been enhanced to support plain to annotated conversion
2990
 
     and annotated to plain conversion. (Ian Clatworthy)
2991
 
 
2992
 
   * The CommitBuilder method ``record_entry_contents`` now returns summary
2993
 
     information about the effect of the commit on the repository. This tuple
2994
 
     contains an inventory delta item if the entry changed from the basis, and a
2995
 
     boolean indicating whether a new file graph node was recorded.
2996
 
     (Robert Collins)
2997
 
 
2998
 
   * The python path used in the Makefile can now be overridden.
2999
 
     (Andrew Bennetts, Ian Clatworthy)
3000
 
 
3001
 
  TESTING:
3002
 
 
3003
 
   * New transport implementation ``trace+`` which is useful for testing,
3004
 
     logging activity taken to its _activity attribute. (Robert Collins)
3005
 
 
3006
 
   * When running bzr commands within the test suite, internal exceptions are
3007
 
     not caught and reported in the usual way, but rather allowed to propagate
3008
 
     up and be visible to the test suite.  A new API ``run_bzr_catch_user_errors``
3009
 
     makes this behavior available to other users.
3010
 
     (Martin Pool)
3011
 
 
3012
 
   * New method ``TestCase.call_catch_warnings`` for testing methods that 
3013
 
     raises a Python warning.  (Martin Pool)
3014
 
 
3015
 
 
3016
 
bzr 0.91 2007-09-26
3017
 
-------------------
3018
 
 
3019
 
  BUG FIXES:
3020
 
 
3021
 
   * Print a warning instead of aborting the ``python setup.py install``
3022
 
     process if building of a C extension is not possible.
3023
 
     (Lukáš Lalinský, Alexander Belchenko)
3024
 
 
3025
 
   * Fix commit ordering in corner case (Aaron Bentley, #94975)
3026
 
 
3027
 
   * Fix ''bzr info bzr://host/'' and other operations on ''bzr://' URLs with
3028
 
     an implicit port.  We were incorrectly raising PathNotChild due to
3029
 
     inconsistent treatment of the ''_port'' attribute on the Transport object.
3030
 
     (Andrew Bennetts, #133965)
3031
 
 
3032
 
   * Make RemoteRepository.sprout cope gracefully with servers that don't
3033
 
     support the ``Repository.tarball`` request.
3034
 
     (Andrew Bennetts)
3035
 
 
3036
 
 
3037
 
bzr 0.91rc2 2007-09-11
3038
 
----------------------
3039
 
 
3040
 
   * Replaced incorrect tarball for previous release; a debug statement was left 
3041
 
     in bzrlib/remote.py.
3042
 
 
3043
 
 
3044
 
bzr 0.91rc1 2007-09-11
3045
 
----------------------
3046
 
 
3047
 
  CHANGES:
3048
 
 
3049
 
   * The default branch and repository format has changed to 
3050
 
     ``dirstate-tags``, so tag commands are active by default.
3051
 
     This format is compatible with Bazaar 0.15 and later.
3052
 
     This incidentally fixes bug #126141.
3053
 
     (Martin Pool)
3054
 
 
3055
 
   * ``--quiet`` or ``-q`` is no longer a global option. If present, it
3056
 
     must now appear after the command name. Scripts doing things like
3057
 
     ``bzr -q missing`` need to be rewritten as ``bzr missing -q``.
3058
 
     (Ian Clatworthy)
3059
 
 
3060
 
  FEATURES:
3061
 
 
3062
 
   * New option ``--author`` in ``bzr commit`` to specify the author of the
3063
 
     change, if it's different from the committer. ``bzr log`` and
3064
 
     ``bzr annotate`` display the author instead of the committer.
3065
 
     (Lukáš Lalinský)
3066
 
 
3067
 
   * In addition to global options and command specific options, a set of
3068
 
     standard options are now supported. Standard options are legal for
3069
 
     all commands. The initial set of standard options are:
3070
 
     
3071
 
     * ``--help`` or ``-h`` - display help message
3072
 
     * ``--verbose`` or ``-v`` - display additional information
3073
 
     * ``--quiet``  or ``-q`` - only output warnings and errors.
3074
 
 
3075
 
     Unlike global options, standard options can be used in aliases and
3076
 
     may have command-specific help. (Ian Clatworthy)
3077
 
 
3078
 
   * Verbosity level processing has now been unified. If ``--verbose``
3079
 
     or ``-v`` is specified on the command line multiple times, the
3080
 
     verbosity level is made positive the first time then increased.
3081
 
     If ``--quiet`` or ``-q`` is specified on the command line
3082
 
     multiple times, the verbosity level is made negative the first
3083
 
     time then decreased. To get the default verbosity level of zero,
3084
 
     either specify none of the above , ``--no-verbose`` or ``--no-quiet``.
3085
 
     Note that most commands currently ignore the magnitude of the
3086
 
     verbosity level but do respect *quiet vs normal vs verbose* when
3087
 
     generating output. (Ian Clatworthy)
3088
 
 
3089
 
   * ``Branch.hooks`` now supports ``pre_commit`` hook. The hook's signature
3090
 
     is documented in BranchHooks constructor. (Nam T. Nguyen, #102747)
3091
 
 
3092
 
   * New ``Repository.stream_knit_data_for_revisions`` request added to the
3093
 
     network protocol for greatly reduced roundtrips when retrieving a set of
3094
 
     revisions. (Andrew Bennetts)
3095
 
 
3096
 
  BUG FIXES:
3097
 
 
3098
 
   * ``bzr plugins`` now lists the version number for each plugin in square
3099
 
     brackets after the path. (Robert Collins, #125421)
3100
 
 
3101
 
   * Pushing, pulling and branching branches with subtree references was not
3102
 
     copying the subtree weave, preventing the file graph from being accessed
3103
 
     and causing errors in commits in clones. (Robert Collins)
3104
 
 
3105
 
   * Suppress warning "integer argument expected, got float" from Paramiko,
3106
 
     which sometimes caused false test failures.  (Martin Pool)
3107
 
 
3108
 
   * Fix bug in bundle 4 that could cause attempts to write data to wrong
3109
 
     versionedfile.  (Aaron Bentley)
3110
 
 
3111
 
   * Diffs generated using "diff -p" no longer break the patch parser.
3112
 
     (Aaron Bentley)
3113
 
 
3114
 
   * get_transport treats an empty possible_transports list the same as a non-
3115
 
     empty one.  (Aaron Bentley)
3116
 
 
3117
 
   * patch verification for merge directives is reactivated, and works with
3118
 
     CRLF and CR files.  (Aaron Bentley)
3119
 
 
3120
 
   * Accept ..\ as a path in revision specifiers. This fixes for example
3121
 
     "-r branch:..\other-branch" on Windows.  (Lukáš Lalinský) 
3122
 
 
3123
 
   * ``BZR_PLUGIN_PATH`` may now contain trailing slashes.
3124
 
     (Blake Winton, #129299)
3125
 
 
3126
 
   * man page no longer lists hidden options (#131667, Aaron Bentley)
3127
 
 
3128
 
   * ``uncommit --help`` now explains the -r option adequately.  (Daniel
3129
 
     Watkins, #106726)
3130
 
 
3131
 
   * Error messages are now better formatted with parameters (such as
3132
 
     filenames) quoted when necessary. This avoids confusion when directory
3133
 
     names ending in a '.' at the end of messages were confused with a
3134
 
     full stop that may or not have been there. (Daniel Watkins, #129791)
3135
 
 
3136
 
   * Fix ``status FILE -r X..Y``. (Lukáš Lalinský)
3137
 
 
3138
 
   * If a particular command is an alias, ``help`` will show the alias
3139
 
     instead of claiming there is no help for said alias. (Daniel Watkins,
3140
 
     #133548)
3141
 
 
3142
 
   * TreeTransform-based operations, like pull, merge, revert, and branch,
3143
 
     now roll back if they encounter an error.  (Aaron Bentley, #67699)
3144
 
 
3145
 
   * ``bzr commit`` now exits cleanly if a character unsupported by the
3146
 
     current encoding is used in the commit message.  (Daniel Watkins,
3147
 
     #116143)
3148
 
 
3149
 
   * bzr send uses default values for ranges when only half of an elipsis
3150
 
     is specified ("-r..5" or "-r5..").  (#61685, Aaron Bentley)
3151
 
 
3152
 
   * Avoid trouble when Windows ssh calls itself 'plink' but no plink
3153
 
     binary is present.  (Martin Albisetti, #107155)
3154
 
 
3155
 
   * ``bzr remove`` should remove clean subtrees.  Now it will remove (without
3156
 
     needing ``--force``) subtrees that contain no files with text changes or
3157
 
     modified files.  With ``--force`` it removes the subtree regardless of
3158
 
     text changes or unknown files. Directories with renames in or out (but
3159
 
     not changed otherwise) will now be removed without needing ``--force``.
3160
 
     Unknown ignored files will be deleted without needing ``--force``.
3161
 
     (Marius Kruger, #111665)
3162
 
 
3163
 
   * When two plugins conflict, the source of both the losing and now the
3164
 
     winning definition is shown.  (Konstantin Mikhaylov, #5454)
3165
 
 
3166
 
   * When committing to a branch, the location being committed to is
3167
 
     displayed.  (Daniel Watkins, #52479)
3168
 
 
3169
 
   * ``bzr --version`` takes care about encoding of stdout, especially
3170
 
     when output is redirected. (Alexander Belchenko, #131100)
3171
 
 
3172
 
   * Prompt for an ftp password if none is provided.
3173
 
     (Vincent Ladeuil, #137044)
3174
 
 
3175
 
   * Reuse bound branch associated transport to avoid multiple
3176
 
     connections.
3177
 
     (Vincent Ladeuil, #128076, #131396)
3178
 
 
3179
 
   * Overwrite conflicting tags by ``push`` and ``pull`` if the
3180
 
     ``--overwrite`` option is specified.  (Lukáš Lalinský, #93947)
3181
 
 
3182
 
   * In checkouts, tags are copied into the master branch when created,
3183
 
     changed or deleted, and are copied into the checkout when it is 
3184
 
     updated.  (Martin Pool, #93856, #93860)
3185
 
 
3186
 
   * Print a warning instead of aborting the ``python setup.py install``
3187
 
     process if building of a C extension is not possible.
3188
 
     (Lukáš Lalinský, Alexander Belchenko)
3189
 
 
3190
 
  IMPROVEMENTS:
3191
 
 
3192
 
   * Add the option "--show-diff" to the commit command in order to display
3193
 
     the diff during the commit log creation. (Goffredo Baroncelli)
3194
 
 
3195
 
   * ``pull`` and ``merge`` are much faster at installing bundle format 4.
3196
 
     (Aaron Bentley)
3197
 
 
3198
 
   * ``pull -v`` no longer includes deltas, making it much faster.
3199
 
     (Aaron Bentley)
3200
 
 
3201
 
   * ``send`` now sends the directive as an attachment by default.
3202
 
     (Aaron Bentley, Lukáš Lalinský, Alexander Belchenko)
3203
 
 
3204
 
   * Documentation updates (Martin Albisetti)
3205
 
 
3206
 
   * Help on debug flags is now included in ``help global-options``.
3207
 
     (Daniel Watkins, #124853)
3208
 
 
3209
 
   * Parameters passed on the command line are checked to ensure they are
3210
 
     supported by the encoding in use. (Daniel Watkins)
3211
 
 
3212
 
   * The compression used within the bzr repository has changed from zlib
3213
 
     level 9 to the zlib default level. This improves commit performance with
3214
 
     only a small increase in space used (and in some cases a reduction in
3215
 
     space). (Robert Collins)
3216
 
 
3217
 
   * Initial commit no longer SHAs files twice and now reuses the path
3218
 
     rather than looking it up again, making it faster.
3219
 
     (Ian Clatworthy)
3220
 
 
3221
 
   * New option ``-c``/``--change`` for ``diff`` and ``status`` to show
3222
 
     changes in one revision.  (Lukáš Lalinský)
3223
 
 
3224
 
   * If versioned files match a given ignore pattern, a warning is now
3225
 
     given. (Daniel Watkins, #48623)
3226
 
 
3227
 
   * ``bzr status`` now has -S as a short name for --short and -V as a
3228
 
     short name for --versioned. These have been added to assist users
3229
 
     migrating from Subversion: ``bzr status -SV`` is now like
3230
 
     ``svn status -q``.  (Daniel Watkins, #115990)
3231
 
 
3232
 
   * Added C implementation of  ``PatienceSequenceMatcher``, which is about
3233
 
     10x faster than the Python version. This speeds up commands that
3234
 
     need file diffing, such as ``bzr commit`` or ``bzr diff``.
3235
 
     (Lukáš Lalinský)
3236
 
 
3237
 
   * HACKING has been extended with a large section on core developer tasks.
3238
 
     (Ian Clatworthy)
3239
 
 
3240
 
   * Add ``branches`` and ``standalone-trees`` as online help topics and
3241
 
     include them as Concepts within the User Reference.
3242
 
     (Paul Moore, Ian Clatworthy)
3243
 
 
3244
 
    * ``check`` can detect versionedfile parent references that are
3245
 
      inconsistent with revision and inventory info, and ``reconcile`` can fix
3246
 
      them.  These faulty references were generated by 0.8-era releases,
3247
 
      so repositories which were manipulated by old bzrs should be
3248
 
      checked, and possibly reconciled ASAP.  (Aaron Bentley, Andrew Bennetts)
3249
 
 
3250
 
  API BREAKS:
3251
 
 
3252
 
   * ``Branch.append_revision`` is removed altogether; please use 
3253
 
     ``Branch.set_last_revision_info`` instead.  (Martin Pool)
3254
 
 
3255
 
   * CommitBuilder now advertises itself as requiring the root entry to be
3256
 
     supplied. This only affects foreign repository implementations which reuse
3257
 
     CommitBuilder directly and have changed record_entry_contents to require
3258
 
     that the root not be supplied. This should be precisely zero plugins
3259
 
     affected. (Robert Collins)
3260
 
 
3261
 
   * The ``add_lines`` methods on ``VersionedFile`` implementations has changed
3262
 
     its return value to include the sha1 and length of the inserted text. This
3263
 
     allows the avoidance of double-sha1 calculations during commit.
3264
 
     (Robert Collins)
3265
 
 
3266
 
   * ``Transport.should_cache`` has been removed.  It was not called in the
3267
 
     previous release.  (Martin Pool)
3268
 
 
3269
 
  TESTING:
3270
 
 
3271
 
   * Tests may now raise TestNotApplicable to indicate they shouldn't be 
3272
 
     run in a particular scenario.  (Martin Pool)
3273
 
 
3274
 
   * New function multiply_tests_from_modules to give a simpler interface
3275
 
     to test parameterization.  (Martin Pool, Robert Collins)
3276
 
 
3277
 
   * ``Transport.should_cache`` has been removed.  It was not called in the
3278
 
     previous release.  (Martin Pool)
3279
 
 
3280
 
   * NULL_REVISION is returned to indicate the null revision, not None.
3281
 
     (Aaron Bentley)
3282
 
 
3283
 
   * Use UTF-8 encoded StringIO for log tests to avoid failures on
3284
 
     non-ASCII committer names.  (Lukáš Lalinský)
3285
 
 
3286
 
  INTERNALS:
3287
 
 
3288
 
   * ``bzrlib.plugin.all_plugins`` has been deprecated in favour of
3289
 
     ``bzrlib.plugin.plugins()`` which returns PlugIn objects that provide
3290
 
     useful functionality for determining the path of a plugin, its tests, and
3291
 
     its version information. (Robert Collins)
3292
 
 
3293
 
   * Add the option user_encoding to the function 'show_diff_trees()'
3294
 
     in order to move the user encoding at the UI level. (Goffredo Baroncelli)
3295
 
 
3296
 
   * Add the function make_commit_message_template_encoded() and the function
3297
 
     edit_commit_message_encoded() which handle encoded strings.
3298
 
     This is done in order to mix the commit messages (which is a unicode
3299
 
     string), and the diff which is a raw string. (Goffredo Baroncelli)
3300
 
 
3301
 
   * CommitBuilder now defaults to using add_lines_with_ghosts, reducing
3302
 
     overhead on non-weave repositories which don't require all parents to be
3303
 
     present. (Robert Collins)
3304
 
 
3305
 
   * Deprecated method ``find_previous_heads`` on
3306
 
     ``bzrlib.inventory.InventoryEntry``. This has been superseded by the use
3307
 
     of ``parent_candidates`` and a separate heads check via the repository
3308
 
     API. (Robert Collins)
3309
 
 
3310
 
   * New trace function ``mutter_callsite`` will print out a subset of the
3311
 
     stack to the log, which can be useful for gathering debug details.
3312
 
     (Robert Collins)
3313
 
 
3314
 
   * ``bzrlib.pack.ContainerWriter`` now tracks how many records have been
3315
 
     added via a public attribute records_written. (Robert Collins)
3316
 
 
3317
 
   * New method ``bzrlib.transport.Transport.get_recommended_page_size``.
3318
 
     This provides a hint to users of transports as to the reasonable
3319
 
     minimum data to read. In principle this can take latency and
3320
 
     bandwidth into account on a per-connection basis, but for now it
3321
 
     just has hard coded values based on the url. (e.g. http:// has a large
3322
 
     page size, file:// has a small one.) (Robert Collins)
3323
 
 
3324
 
   * New method on ``bzrlib.transport.Transport`` ``open_write_stream`` allows
3325
 
     incremental addition of data to a file without requiring that all the
3326
 
     data be buffered in memory. (Robert Collins)
3327
 
 
3328
 
   * New methods on ``bzrlib.knit.KnitVersionedFile``:
3329
 
     ``get_data_stream(versions)``, ``insert_data_stream(stream)`` and
3330
 
     ``get_format_signature()``.  These provide some infrastructure for
3331
 
     efficiently streaming the knit data for a set of versions over the smart
3332
 
     protocol.
3333
 
 
3334
 
   * Knits with no annotation cache still produce correct annotations.
3335
 
     (Aaron Bentley)
3336
 
 
3337
 
   * Three new methods have been added to ``bzrlib.trace``:
3338
 
     ``set_verbosity_level``, ``get_verbosity_level`` and ``is_verbose``.
3339
 
     ``set_verbosity_level`` expects a numeric value: negative for quiet,
3340
 
     zero for normal, positive for verbose. The size of the number can be
3341
 
     used to determine just how quiet or verbose the application should be.
3342
 
     The existing ``be_quiet`` and ``is_quiet`` routines have been
3343
 
     integrated into this new scheme. (Ian Clatworthy)
3344
 
 
3345
 
   * Options can now be delcared with a ``custom_callback`` parameter. If
3346
 
     set, this routine is called after the option is processed. This feature
3347
 
     is now used by the standard options ``verbose`` and ``quiet`` so that
3348
 
     setting one implicitly resets the other. (Ian Clatworthy)
3349
 
 
3350
 
   * Rather than declaring a new option from scratch in order to provide
3351
 
     custom help, a centrally registered option can be decorated using the
3352
 
     new ``bzrlib.Option.custom_help`` routine. In particular, this routine
3353
 
     is useful when declaring better help for the ``verbose`` and ``quiet``
3354
 
     standard options as the base definition of these is now more complex
3355
 
     than before thanks to their use of a custom callback. (Ian Clatworthy)
3356
 
      
3357
 
    * Tree._iter_changes(specific_file=[]) now iterates through no files,
3358
 
      instead of iterating through all files.  None is used to iterate through
3359
 
      all files.  (Aaron Bentley)
3360
 
 
3361
 
    * WorkingTree.revert() now accepts None to revert all files.  The use of
3362
 
      [] to revert all files is deprecated.  (Aaron Bentley)
3363
 
 
3364
 
 
3365
 
bzr 0.90 2007-08-28
3366
 
-------------------
3367
 
 
3368
 
  IMPROVEMENTS:
3369
 
 
3370
 
    * Documentation is now organized into multiple directories with a level
3371
 
      added for different languages or locales. Added the Mini Tutorial
3372
 
      and Quick Start Summary (en) documents from the Wiki, improving the
3373
 
      content and readability of the former. Formatted NEWS as Release Notes
3374
 
      complete with a Table of Conents, one heading per release. Moved the
3375
 
      Developer Guide into the main document catalog and provided a link
3376
 
      from the developer document catalog back to the main one.
3377
 
      (Ian Clatworthy, Sabin Iacob, Alexander Belchenko)
3378
 
 
3379
 
 
3380
 
  API CHANGES:
3381
 
 
3382
 
    * The static convenience method ``BzrDir.create_repository``
3383
 
      is deprecated.  Callers should instead create a ``BzrDir`` instance
3384
 
      and call ``create_repository`` on that.  (Martin Pool)
3385
 
 
3386
 
 
3387
 
bzr 0.90rc1 2007-08-14
3388
 
----------------------
3389
 
 
3390
 
  BUGFIXES:
3391
 
 
3392
 
    * ``bzr init`` should connect to the remote location one time only.  We
3393
 
      have been connecting several times because we forget to pass around the
3394
 
      Transport object. This modifies ``BzrDir.create_branch_convenience``,
3395
 
      so that we can give it the Transport we already have.
3396
 
      (John Arbash Meinel, Vincent Ladeuil, #111702)
3397
 
 
3398
 
    * Get rid of sftp connection cache (get rid of the FTP one too).
3399
 
      (Vincent Ladeuil, #43731)
3400
 
 
3401
 
    * bzr branch {local|remote} remote don't try to create a working tree
3402
 
      anymore.
3403
 
      (Vincent Ladeuil, #112173)
3404
 
 
3405
 
    * All identified multiple connections for a single bzr command have been
3406
 
      fixed. See bzrlib/tests/commands directory.
3407
 
      (Vincent Ladeuil)
3408
 
 
3409
 
    * ``bzr rm`` now does not insist on ``--force`` to delete files that
3410
 
      have been renamed but not otherwise modified.  (Marius Kruger,
3411
 
      #111664)
3412
 
 
3413
 
    * ``bzr selftest --bench`` no longer emits deprecation warnings
3414
 
      (Lukáš Lalinský)
3415
 
 
3416
 
    * ``bzr status`` now honours FILE parameters for conflict lists
3417
 
      (Aaron Bentley, #127606)
3418
 
 
3419
 
    * ``bzr checkout`` now honours -r when reconstituting a working tree.
3420
 
      It also honours -r 0.  (Aaron Bentley, #127708)
3421
 
 
3422
 
    * ``bzr add *`` no more fails on Windows if working tree contains
3423
 
      non-ascii file names. (Kuno Meyer, #127361)
3424
 
 
3425
 
    * allow ``easy_install bzr`` runs without fatal errors. 
3426
 
      (Alexander Belchenko, #125521)
3427
 
 
3428
 
    * Graph._filter_candidate_lca does not raise KeyError if a candidate
3429
 
      is eliminated just before it would normally be examined.  (Aaron Bentley)
3430
 
 
3431
 
    * SMTP connection failures produce a nice message, not a traceback.
3432
 
      (Aaron Bentley)
3433
 
 
3434
 
  IMPROVEMENTS:
3435
 
 
3436
 
    * Don't show "dots" progress indicators when run non-interactively, such
3437
 
      as from cron.  (Martin Pool)
3438
 
 
3439
 
    * ``info`` now formats locations more nicely and lists "submit" and
3440
 
      "public" branches (Aaron Bentley)
3441
 
 
3442
 
    * New ``pack`` command that will trigger database compression within
3443
 
      the repository (Robert Collins)
3444
 
 
3445
 
    * Implement ``_KnitIndex._load_data`` in a pyrex extension. The pyrex
3446
 
      version is approximately 2-3x faster at parsing a ``.kndx`` file.
3447
 
      Which yields a measurable improvement for commands which have to
3448
 
      read from the repository, such as a 1s => 0.75s improvement in
3449
 
      ``bzr diff`` when there are changes to be shown.  (John Arbash Meinel)
3450
 
 
3451
 
    * Merge is now faster.  Depending on the scenario, it can be more than 2x
3452
 
      faster. (Aaron Bentley)
3453
 
 
3454
 
    * Give a clearer warning, and allow ``python setup.py install`` to
3455
 
      succeed even if pyrex is not available.
3456
 
      (John Arbash Meinel)
3457
 
 
3458
 
    * ``DirState._read_dirblocks`` now has an optional Pyrex
3459
 
      implementation. This improves the speed of any command that has to
3460
 
      read the entire DirState. (``diff``, ``status``, etc, improve by
3461
 
      about 10%).
3462
 
      ``bisect_dirblocks`` has also been improved, which helps all
3463
 
      ``_get_entry`` type calls (whenever we are searching for a
3464
 
      particular entry in the in-memory DirState).
3465
 
      (John Arbash Meinel)
3466
 
 
3467
 
    * ``bzr pull`` and ``bzr push`` no longer do a complete walk of the 
3468
 
      branch revision history for ui display unless -v is supplied.
3469
 
      (Robert Collins)
3470
 
 
3471
 
    * ``bzr log -rA..B`` output shifted to the left margin if the log only 
3472
 
      contains merge revisions. (Kent Gibson) 
3473
 
 
3474
 
    * The ``plugins`` command is now public with improved help.
3475
 
      (Ian Clatworthy)
3476
 
 
3477
 
    * New bundle and merge directive formats are faster to generate, and
3478
 
 
3479
 
    * Annotate merge now works when there are local changes. (Aaron Bentley)
3480
 
 
3481
 
    * Commit now only shows the progress in terms of directories instead of
3482
 
      entries. (Ian Clatworthy)
3483
 
 
3484
 
    * Fix ``KnitRepository.get_revision_graph`` to not request the graph 2
3485
 
      times. This makes ``get_revision_graph`` 2x faster. (John Arbash
3486
 
      Meinel)
3487
 
 
3488
 
    * Fix ``VersionedFile.get_graph()`` to avoid using
3489
 
      ``set.difference_update(other)``, which has bad scaling when
3490
 
      ``other`` is large. This improves ``VF.get_graph([version_id])`` for
3491
 
      a 12.5k graph from 2.9s down to 200ms. (John Arbash Meinel)
3492
 
 
3493
 
    * The ``--lsprof-file`` option now generates output for KCacheGrind if
3494
 
      the file starts with ``callgrind.out``. This matches the default file
3495
 
      filtering done by KCacheGrind's Open Dialog. (Ian Clatworthy)
3496
 
 
3497
 
    * Fix ``bzr update`` to avoid an unnecessary
3498
 
      ``branch.get_master_branch`` call, which avoids 1 extra connection
3499
 
      to the remote server. (Partial fix for #128076, John Arbash Meinel)
3500
 
 
3501
 
    * Log errors from the smart server in the trace file, to make debugging 
3502
 
      test failures (and live failures!) easier.  (Andrew Bennetts)
3503
 
 
3504
 
    * The HTML version of the man page has been superceded by a more
3505
 
      comprehensive manual called the Bazaar User Reference. This manual
3506
 
      is completed generated from the online help topics. As part of this
3507
 
      change, limited reStructuredText is now explicitly supported in help
3508
 
      topics and command help with 'unnatural' markup being removed prior
3509
 
      to display by the online help or inclusion in the man page.
3510
 
      (Ian Clatworthy)
3511
 
 
3512
 
    * HTML documentation now use files extension ``*.html``
3513
 
      (Alexander Belchenko)
3514
 
 
3515
 
    * The cache of ignore definitions is now cleared in WorkingTree.unlock()
3516
 
      so that changes to .bzrignore aren't missed. (#129694, Daniel Watkins)
3517
 
 
3518
 
    * ``bzr selftest --strict`` fails if there are any missing features or
3519
 
      expected test failures. (Daniel Watkins, #111914)
3520
 
 
3521
 
    * Link to registration survey added to README. (Ian Clatworthy)
3522
 
 
3523
 
    * Windows standalone installer show link to registration survey
3524
 
      when installation finished. (Alexander Belchenko)
3525
 
 
3526
 
  LIBRARY API BREAKS:
3527
 
 
3528
 
    * Deprecated dictionary ``bzrlib.option.SHORT_OPTIONS`` removed.
3529
 
      Options are now required to provide a help string and it must
3530
 
      comply with the style guide by being one or more sentences with an
3531
 
      initial capital and final period. (Martin Pool)
3532
 
 
3533
 
    * KnitIndex.get_parents now returns tuples. (Robert Collins)
3534
 
 
3535
 
    * Ancient unused ``Repository.text_store`` attribute has been removed.
3536
 
      (Robert Collins)
3537
 
 
3538
 
    * The ``bzrlib.pack`` interface has changed to use tuples of bytestrings
3539
 
      rather than just bytestrings, making it easier to represent multiple
3540
 
      element names. As this interface was not used by any internal facilities
3541
 
      since it was introduced in 0.18 no API compatibility is being preserved.
3542
 
      The serialised form of these packs is identical with 0.18 when a single
3543
 
      element tuple is in use. (Robert Collins)
3544
 
 
3545
 
  INTERNALS:
3546
 
 
3547
 
    * merge now uses ``iter_changes`` to calculate changes, which makes room for
3548
 
      future performance increases.  It is also more consistent with other
3549
 
      operations that perform comparisons, and reduces reliance on
3550
 
      Tree.inventory.  (Aaron Bentley)
3551
 
 
3552
 
    * Refactoring of transport classes connected to a remote server.
3553
 
      ConnectedTransport is a new class that serves as a basis for all
3554
 
      transports needing to connect to a remote server.  transport.split_url
3555
 
      have been deprecated, use the static method on the object instead. URL
3556
 
      tests have been refactored too.
3557
 
      (Vincent Ladeuil)
3558
 
 
3559
 
    * Better connection sharing for ConnectedTransport objects.
3560
 
      transport.get_transport() now accepts a 'possible_transports' parameter.
3561
 
      If a newly requested transport can share a connection with one of the
3562
 
      list, it will.
3563
 
      (Vincent Ladeuil)
3564
 
 
3565
 
    * Most functions now accept ``bzrlib.revision.NULL_REVISION`` to indicate
3566
 
      the null revision, and consider using ``None`` for this purpose
3567
 
      deprecated.  (Aaron Bentley)
3568
 
 
3569
 
    * New ``index`` module with abstract index functionality. This will be
3570
 
      used during the planned changes in the repository layer. Currently the
3571
 
      index layer provides a graph aware immutable index, a builder for the
3572
 
      same index type to allow creating them, and finally a composer for
3573
 
      such indices to allow the use of many indices in a single query. The
3574
 
      index performance is not optimised, however the API is stable to allow
3575
 
      development on top of the index. (Robert Collins)
3576
 
 
3577
 
    * ``bzrlib.dirstate.cmp_by_dirs`` can be used to compare two paths by
3578
 
      their directory sections. This is equivalent to comparing
3579
 
      ``path.split('/')``, only without having to split the paths.
3580
 
      This has a Pyrex implementation available.
3581
 
      (John Arbash Meinel)
3582
 
 
3583
 
    * New transport decorator 'unlistable+' which disables the list_dir
3584
 
      functionality for testing.
3585
 
 
3586
 
    * Deprecated ``change_entry`` in transform.py. (Ian Clatworthy)
3587
 
 
3588
 
    * RevisionTree.get_weave is now deprecated.  Tree.plan_merge is now used
3589
 
      for performing annotate-merge.  (Aaron Bentley)
3590
 
 
3591
 
    * New EmailMessage class to create email messages. (Adeodato Simó)
3592
 
 
3593
 
    * Unused functions on the private interface KnitIndex have been removed.
3594
 
      (Robert Collins)
3595
 
 
3596
 
    * New ``knit.KnitGraphIndex`` which provides a ``KnitIndex`` layered on top
3597
 
      of a ``index.GraphIndex``. (Robert Collins)
3598
 
 
3599
 
    * New ``knit.KnitVersionedFile.iter_parents`` method that allows querying
3600
 
      the parents of many knit nodes at once, reducing round trips to the 
3601
 
      underlying index. (Robert Collins)
3602
 
 
3603
 
    * Graph now has an is_ancestor method, various bits use it.
3604
 
      (Aaron Bentley)
3605
 
 
3606
 
    * The ``-Dhpss`` flag now includes timing information. As well as
3607
 
      logging when a new connection is opened. (John Arbash Meinel)
3608
 
 
3609
 
    * ``bzrlib.pack.ContainerWriter`` now returns an offset, length tuple to
3610
 
      callers when inserting data, allowing generation of readv style access
3611
 
      during pack creation, without needing a separate pass across the output
3612
 
      pack to gather such details. (Robert Collins)
3613
 
 
3614
 
    * ``bzrlib.pack.make_readv_reader`` allows readv based access to pack
3615
 
      files that are stored on a transport. (Robert Collins)
3616
 
 
3617
 
    * New ``Repository.has_same_location`` method that reports if two
3618
 
      repository objects refer to the same repository (although with some risk
3619
 
      of false negatives).  (Andrew Bennetts)
3620
 
 
3621
 
    * InterTree.compare now passes require_versioned on correctly.
3622
 
      (Marius Kruger)
3623
 
 
3624
 
    * New methods on Repository - ``start_write_group``,
3625
 
      ``commit_write_group``, ``abort_write_group`` and ``is_in_write_group`` -
3626
 
      which provide a clean hook point for transactional Repositories - ones
3627
 
      where all the data for a fetch or commit needs to be made atomically
3628
 
      available in one step. This allows the write lock to remain while making
3629
 
      a series of data insertions.  (e.g. data conversion). (Robert Collins)
3630
 
 
3631
 
    * In ``bzrlib.knit`` the internal interface has been altered to use
3632
 
      3-tuples (index, pos, length) rather than two-tuples (pos, length) to
3633
 
      describe where data in a knit is, allowing knits to be split into 
3634
 
      many files. (Robert Collins)
3635
 
 
3636
 
    * ``bzrlib.knit._KnitData`` split into cache management and physical access
3637
 
      with two access classes - ``_PackAccess`` and ``_KnitAccess`` defined.
3638
 
      The former provides access into a .pack file, and the latter provides the
3639
 
      current production repository form of .knit files. (Robert Collins)
3640
 
 
3641
 
  TESTING:
3642
 
 
3643
 
    * Remove selftest ``--clean-output``, ``--numbered-dirs`` and
3644
 
      ``--keep-output`` options, which are obsolete now that tests
3645
 
      are done within directories in $TMPDIR.  (Martin Pool)
3646
 
 
3647
 
    * The SSH_AUTH_SOCK environment variable is now reset to avoid 
3648
 
      interaction with any running ssh agents.  (Jelmer Vernooij, #125955)
3649
 
 
3650
 
    * run_bzr_subprocess handles parameters the same way as run_bzr:
3651
 
      either a string or a list of strings should be passed as the first
3652
 
      parameter.  Varargs-style parameters are deprecated. (Aaron Bentley)
3653
 
 
3654
 
 
3655
 
bzr 0.18  2007-07-17
3656
 
--------------------
3657
 
 
3658
 
  BUGFIXES:
3659
 
 
3660
 
    * Fix 'bzr add' crash under Win32 (Kuno Meyer)
3661
 
 
3662
 
 
3663
 
bzr 0.18rc1  2007-07-10
3664
 
-----------------------
3665
 
 
3666
 
  BUGFIXES:
3667
 
 
3668
 
    * Do not suppress pipe errors, etc. in non-display commands
3669
 
      (Alexander Belchenko, #87178)
3670
 
 
3671
 
    * Display a useful error message when the user requests to annotate
3672
 
      a file that is not present in the specified revision.
3673
 
      (James Westby, #122656)
3674
 
 
3675
 
    * Commands that use status flags now have a reference to 'help
3676
 
      status-flags'.  (Daniel Watkins, #113436)
3677
 
 
3678
 
    * Work around python-2.4.1 inhability to correctly parse the
3679
 
      authentication header.
3680
 
      (Vincent Ladeuil, #121889)
3681
 
 
3682
 
    * Use exact encoding for merge directives. (Adeodato Simó, #120591)
3683
 
 
3684
 
    * Fix tempfile permissions error in smart server tar bundling under
3685
 
      Windows. (Martin _, #119330)
3686
 
 
3687
 
    * Fix detection of directory entries in the inventory. (James Westby)
3688
 
 
3689
 
    * Fix handling of http code 400: Bad Request When issuing too many ranges.
3690
 
      (Vincent Ladeuil, #115209)
3691
 
 
3692
 
    * Issue a CONNECT request when connecting to an https server
3693
 
      via a proxy to enable SSL tunneling.
3694
 
      (Vincent Ladeuil, #120678)
3695
 
 
3696
 
    * Fix ``bzr log -r`` to support selecting merge revisions, both 
3697
 
      individually and as part of revision ranges.
3698
 
      (Kent Gibson, #4663)
3699
 
 
3700
 
    * Don't leave cruft behind when failing to acquire a lockdir.
3701
 
      (Martin Pool, #109169)
3702
 
 
3703
 
    * Don't use the '-f' strace option during tests.
3704
 
      (Vincent Ladeuil, #102019).
3705
 
 
3706
 
    * Warn when setting ``push_location`` to a value that will be masked by
3707
 
      locations.conf.  (Aaron Bentley, #122286)
3708
 
 
3709
 
    * Fix commit ordering in corner case (Aaron Bentley, #94975)
3710
 
 
3711
 
    *  Make annotate behave in a non-ASCII world (Adeodato Simó).
3712
 
 
3713
 
  IMPROVEMENTS:
3714
 
 
3715
 
    * The --lsprof-file option now dumps a text rendering of the profiling
3716
 
      information if the filename ends in ".txt". It will also convert the
3717
 
      profiling information to a format suitable for KCacheGrind if the
3718
 
      output filename ends in ".callgrind". Fixes to the lsprofcalltree
3719
 
      conversion process by Jean Paul Calderone and Itamar were also merged.
3720
 
      See http://ddaa.net/blog/python/lsprof-calltree. (Ian Clatworthy)
3721
 
 
3722
 
    * ``info`` now defaults to non-verbose mode, displaying only paths and
3723
 
      abbreviated format info.  ``info -v`` displays all the information
3724
 
      formerly displayed by ``info``.  (Aaron Bentley, Adeodato Simó)
3725
 
 
3726
 
    * ``bzr missing`` now has better option names ``--this`` and ``--other``.
3727
 
      (Elliot Murphy)
3728
 
 
3729
 
    * The internal ``weave-list`` command has become ``versionedfile-list``,
3730
 
      and now lists knits as well as weaves.  (Aaron Bentley)
3731
 
 
3732
 
    * Automatic merge base selection uses a faster algorithm that chooses
3733
 
      better bases in criss-cross merge situations (Aaron Bentley)
3734
 
 
3735
 
    * Progress reporting in ``commit`` has been improved. The various logical
3736
 
      stages are now reported on as follows, namely:
3737
 
 
3738
 
      * Collecting changes [Entry x/y] - Stage n/m
3739
 
      * Saving data locally - Stage n/m
3740
 
      * Uploading data to master branch - Stage n/m
3741
 
      * Updating the working tree - Stage n/m
3742
 
      * Running post commit hooks - Stage n/m
3743
 
      
3744
 
      If there is no master branch, the 3rd stage is omitted and the total
3745
 
      number of stages is adjusted accordingly.
3746
 
 
3747
 
      Each hook that is run after commit is listed with a name (as hooks
3748
 
      can be slow it is useful feedback).
3749
 
      (Ian Clatworthy, Robert Collins)
3750
 
 
3751
 
    * Various operations that are now faster due to avoiding unnecessary
3752
 
      topological sorts. (Aaron Bentley)
3753
 
 
3754
 
    * Make merge directives robust against broken bundles. (Aaron Bentley)
3755
 
 
3756
 
    * The lsprof filename note is emitted via trace.note(), not standard
3757
 
      output.  (Aaron Bentley)
3758
 
 
3759
 
    * ``bzrlib`` now exports explicit API compatibility information to assist
3760
 
      library users and plugins. See the ``bzrlib.api`` module for details.
3761
 
      (Robert Collins)
3762
 
 
3763
 
    * Remove unnecessary lock probes when acquiring a lockdir.
3764
 
      (Martin Pool)
3765
 
 
3766
 
    * ``bzr --version`` now shows the location of the bzr log file, which
3767
 
      is especially useful on Windows.  (Martin Pool)
3768
 
 
3769
 
    * -D now supports hooks to get debug tracing of hooks (though its currently
3770
 
      minimal in nature). (Robert Collins)
3771
 
 
3772
 
    * Long log format reports deltas on merge revisions. 
3773
 
      (John Arbash Meinel, Kent Gibson)
3774
 
 
3775
 
    * Make initial push over ftp more resilient. (John Arbash Meinel)
3776
 
 
3777
 
    * Print a summary of changes for update just like pull does.
3778
 
      (Daniel Watkins, #113990)
3779
 
 
3780
 
    * Add a -Dhpss option to trace smart protocol requests and responses.
3781
 
      (Andrew Bennetts)
3782
 
 
3783
 
  LIBRARY API BREAKS:
3784
 
 
3785
 
    * Testing cleanups - 
3786
 
      ``bzrlib.repository.RepositoryTestProviderAdapter`` has been moved
3787
 
      to ``bzrlib.tests.repository_implementations``;
3788
 
      ``bzrlib.repository.InterRepositoryTestProviderAdapter`` has been moved
3789
 
      to ``bzrlib.tests.interrepository_implementations``;
3790
 
      ``bzrlib.transport.TransportTestProviderAdapter`` has moved to 
3791
 
      ``bzrlib.tests.test_transport_implementations``.
3792
 
      ``bzrlib.branch.BranchTestProviderAdapter`` has moved to
3793
 
      ``bzrlib.tests.branch_implementations``.
3794
 
      ``bzrlib.bzrdir.BzrDirTestProviderAdapter`` has moved to 
3795
 
      ``bzrlib.tests.bzrdir_implementations``.
3796
 
      ``bzrlib.versionedfile.InterVersionedFileTestProviderAdapter`` has moved
3797
 
      to ``bzrlib.tests.interversionedfile_implementations``.
3798
 
      ``bzrlib.store.revision.RevisionStoreTestProviderAdapter`` has moved to
3799
 
      ``bzrlib.tests.revisionstore_implementations``.
3800
 
      ``bzrlib.workingtree.WorkingTreeTestProviderAdapter`` has moved to
3801
 
      ``bzrlib.tests.workingtree_implementations``.
3802
 
      These changes are an API break in the testing infrastructure only.
3803
 
      (Robert Collins)
3804
 
 
3805
 
    * Relocate TestCaseWithRepository to be more central. (Robert Collins)
3806
 
 
3807
 
    * ``bzrlib.add.smart_add_tree`` will no longer perform glob expansion on
3808
 
      win32. Callers of the function should do this and use the new
3809
 
      ``MutableTree.smart_add`` method instead. (Robert Collins)
3810
 
 
3811
 
    * ``bzrlib.add.glob_expand_for_win32`` is now
3812
 
      ``bzrlib.win32utils.glob_expand``.  (Robert Collins)
3813
 
 
3814
 
    * ``bzrlib.add.FastPath`` is now private and moved to 
3815
 
      ``bzrlib.mutabletree._FastPath``. (Robert Collins, Martin Pool)
3816
 
 
3817
 
    * ``LockDir.wait`` removed.  (Martin Pool)
3818
 
 
3819
 
    * The ``SmartServer`` hooks API has changed for the ``server_started`` and
3820
 
      ``server_stopped`` hooks. The first parameter is now an iterable of
3821
 
      backing URLs rather than a single URL. This is to reflect that many
3822
 
      URLs may map to the external URL of the server. E.g. the server interally
3823
 
      may have a chrooted URL but also the local file:// URL will be at the 
3824
 
      same location. (Robert Collins)
3825
 
 
3826
 
  INTERNALS:
3827
 
 
3828
 
    * New SMTPConnection class to unify email handling.  (Adeodato Simó)
3829
 
 
3830
 
    * Fix documentation of BzrError. (Adeodato Simó)
3831
 
 
3832
 
    * Make BzrBadParameter an internal error. (Adeodato Simó)
3833
 
 
3834
 
    * Remove use of 'assert False' to raise an exception unconditionally.
3835
 
      (Martin Pool)
3836
 
 
3837
 
    * Give a cleaner error when failing to decode knit index entry.
3838
 
      (Martin Pool)
3839
 
 
3840
 
    * TreeConfig would mistakenly search the top level when asked for options
3841
 
      from a section. It now respects the section argument and only
3842
 
      searches the specified section. (James Westby)
3843
 
 
3844
 
    * Improve ``make api-docs`` output. (John Arbash Meinel)
3845
 
 
3846
 
    * Use os.lstat rather than os.stat for osutils.make_readonly and
3847
 
      osutils.make_writeable. This makes the difftools plugin more
3848
 
      robust when dangling symlinks are found. (Elliot Murphy)
3849
 
 
3850
 
    * New ``-Dlock`` option to log (to ~/.bzr.log) information on when 
3851
 
      lockdirs are taken or released.  (Martin Pool)
3852
 
 
3853
 
    * ``bzrlib`` Hooks are now nameable using ``Hooks.name_hook``. This 
3854
 
      allows a nicer UI when hooks are running as the current hook can
3855
 
      be displayed. (Robert Collins)
3856
 
 
3857
 
    * ``Transport.get`` has had its interface made more clear for ease of use.
3858
 
      Retrieval of a directory must now fail with either 'PathError' at open
3859
 
      time, or raise 'ReadError' on a read. (Robert Collins)
3860
 
 
3861
 
    * New method ``_maybe_expand_globs`` on the ``Command`` class for 
3862
 
      dealing with unexpanded glob lists - e.g. on the win32 platform. This
3863
 
      was moved from ``bzrlib.add._prepare_file_list``. (Robert Collins)
3864
 
 
3865
 
    * ``bzrlib.add.smart_add`` and ``bzrlib.add.smart_add_tree`` are now
3866
 
      deprecated in favour of ``MutableTree.smart_add``. (Robert Collins,
3867
 
      Martin Pool)
3868
 
 
3869
 
    * New method ``external_url`` on Transport for obtaining the url to
3870
 
      hand to external processes. (Robert Collins)
3871
 
 
3872
 
    * Teach windows installers to build pyrex/C extensions.
3873
 
      (Alexander Belchenko)
3874
 
 
3875
 
  TESTING:
3876
 
 
3877
 
    * Removed the ``--keep-output`` option from selftest and clean up test
3878
 
      directories as they're used.  This reduces the IO load from 
3879
 
      running the test suite and cuts the time by about half.
3880
 
      (Andrew Bennetts, Martin Pool)
3881
 
 
3882
 
    * Add scenarios as a public attribute on the TestAdapter classes to allow
3883
 
      modification of the generated scenarios before adaption and easier
3884
 
      testing. (Robert Collins)
3885
 
 
3886
 
    * New testing support class ``TestScenarioApplier`` which multiplies
3887
 
      out a single teste by a list of supplied scenarios. (RobertCollins)
3888
 
 
3889
 
    * Setting ``repository_to_test_repository`` on a repository_implementations
3890
 
      test will cause it to be called during repository creation, allowing the
3891
 
      testing of repository classes which are not based around the Format
3892
 
      concept. For example a repository adapter can be tested in this manner,
3893
 
      by altering the repository scenarios to include a scenario that sets this
3894
 
      attribute during the test parameterisation in
3895
 
      ``bzrlib.tests.repository.repository_implementations``. (Robert Collins)
3896
 
 
3897
 
    * Clean up many of the APIs for blackbox testing of Bazaar.  The standard 
3898
 
      interface is now self.run_bzr.  The command to run can be passed as
3899
 
      either a list of parameters, a string containing the command line, or
3900
 
      (deprecated) varargs parameters.  (Martin Pool)
3901
 
 
3902
 
    * The base TestCase now isolates tests from -D parameters by clearing
3903
 
      ``debug.debug_flags`` and restores it afterwards. (Robert Collins)
3904
 
 
3905
 
    * Add a relpath parameter to get_transport methods in test framework to
3906
 
      avoid useless cloning.
3907
 
      (Vincent Ladeuil, #110448)
3908
 
 
3909
 
 
3910
 
bzr 0.17  2007-06-18
3911
 
--------------------
3912
 
 
3913
 
  BUGFIXES:
3914
 
 
3915
 
    * Fix crash of commit due to wrong lookup of filesystem encoding.
3916
 
      (Colin Watson, #120647)
3917
 
 
3918
 
    * Revert logging just to stderr in commit as broke unicode filenames.
3919
 
      (Aaron Bentley, Ian Clatworthy, #120930)
3920
 
 
3921
 
 
3922
 
bzr 0.17rc1  2007-06-12
3923
 
-----------------------
3924
 
 
3925
 
  NOTES WHEN UPGRADING:
3926
 
 
3927
 
    * The kind() and is_executable() APIs on the WorkingTree interface no
3928
 
      longer implicitly (read) locks and unlocks the tree. This *might*
3929
 
      impact some plug-ins and tools using this part of the API. If you find
3930
 
      an issue that may be caused by this change, please let us know,
3931
 
      particularly the plug-in/tool maintainer. If encountered, the API
3932
 
      fix is to surround kind() and is_executable() calls with lock_read()
3933
 
      and unlock() like so::
3934
 
 
3935
 
        work_tree.lock_read()
3936
 
        try:
3937
 
            kind = work_tree.kind(...)
3938
 
        finally:
3939
 
            work_tree.unlock()
3940
 
 
3941
 
  INTERNALS:
3942
 
    * Rework of LogFormatter API to provide beginning/end of log hooks and to
3943
 
      encapsulate the details of the revision to be logged in a LogRevision
3944
 
      object.
3945
 
      In long log formats, merge revision ids are only shown when --show-ids
3946
 
      is specified, and are labelled "revision-id:", as per mainline
3947
 
      revisions, instead of "merged:". (Kent Gibson)
3948
 
 
3949
 
    * New ``BranchBuilder`` API which allows the construction of particular
3950
 
      histories quickly. Useful for testing and potentially other applications
3951
 
      too. (Robert Collins)
3952
 
 
3953
 
  IMPROVEMENTS:
3954
 
  
3955
 
    * There are two new help topics, working-trees and repositories that
3956
 
      attempt to explain these concepts. (James Westby, John Arbash Meinel,
3957
 
      Aaron Bentley)
3958
 
 
3959
 
    * Added ``bzr log --limit`` to report a limited number of revisions.
3960
 
      (Kent Gibson, #3659)
3961
 
 
3962
 
    * Revert does not try to preserve file contents that were originally
3963
 
      produced by reverting to a historical revision.  (Aaron Bentley)
3964
 
 
3965
 
    * ``bzr log --short`` now includes ``[merge]`` for revisions which
3966
 
      have more than one parent. This is a small improvement to help
3967
 
      understanding what changes have occurred
3968
 
      (John Arbash Meinel, #83887)
3969
 
 
3970
 
    * TreeTransform avoids many renames when contructing large trees,
3971
 
      improving speed.  3.25x speedups have been observed for construction of
3972
 
      kernel-sized-trees, and checkouts are 1.28x faster.  (Aaron Bentley)
3973
 
 
3974
 
    * Commit on large trees is now faster. In my environment, a commit of
3975
 
      a small change to the Mozilla tree (55k files) has dropped from
3976
 
      66 seconds to 32 seconds. For a small tree of 600 files, commit of a
3977
 
      small change is 33% faster. (Ian Clatworthy)
3978
 
 
3979
 
    * New --create-prefix option to bzr init, like for push.  (Daniel Watkins,
3980
 
      #56322)
3981
 
 
3982
 
  BUGFIXES:
3983
 
 
3984
 
    * ``bzr push`` should only connect to the remote location one time.
3985
 
      We have been connecting 3 times because we forget to pass around
3986
 
      the Transport object. This adds ``BzrDir.clone_on_transport()``, so
3987
 
      that we can pass in the Transport that we already have.
3988
 
      (John Arbash Meinel, #75721)
3989
 
 
3990
 
    * ``DirState.set_state_from_inventory()`` needs to properly order
3991
 
      based on split paths, not just string paths.
3992
 
      (John Arbash Meinel, #115947)
3993
 
 
3994
 
    * Let TestUIFactoy encode the password prompt with its own stdout.
3995
 
      (Vincent Ladeuil, #110204)
3996
 
 
3997
 
    * pycurl should take use the range header that takes the range hint
3998
 
      into account.
3999
 
      (Vincent Ladeuil, #112719)
4000
 
 
4001
 
    * WorkingTree4.get_file_sha1 no longer raises an exception when invoked
4002
 
      on a missing file.  (Aaron Bentley, #118186)
4003
 
 
4004
 
    * WorkingTree.remove works correctly with tree references, and when pwd is
4005
 
      not the tree root. (Aaron Bentley)
4006
 
 
4007
 
    * Merge no longer fails when a file is renamed in one tree and deleted
4008
 
      in the other. (Aaron Bentley, #110279)
4009
 
 
4010
 
    * ``revision-info`` now accepts dotted revnos, doesn't require a tree,
4011
 
      and defaults to the last revision (Matthew Fuller, #90048)
4012
 
 
4013
 
    * Tests no longer fail when BZR_REMOTE_PATH is set in the environment.
4014
 
      (Daniel Watkins, #111958)
4015
 
 
4016
 
    * ``bzr branch -r revid:foo`` can be used to branch any revision in
4017
 
      your repository. (Previously Branch6 only supported revisions in your
4018
 
      mainline). (John Arbash Meinel, #115343)
4019
 
 
4020
 
bzr 0.16  2007-05-07
4021
 
--------------------
4022
 
  
4023
 
  BUGFIXES:
4024
 
 
4025
 
    * Handle when you have 2 directories with similar names, but one has a
4026
 
      hyphen. (``'abc'`` versus ``'abc-2'``). The WT4._iter_changes
4027
 
      iterator was using direct comparison and ``'abc/a'`` sorts after
4028
 
      ``'abc-2'``, but ``('abc', 'a')`` sorts before ``('abc-2',)``.
4029
 
      (John Arbash Meinel, #111227)
4030
 
 
4031
 
    * Handle when someone renames a file on disk without telling bzr.
4032
 
      Previously we would report the first file as missing, but not show
4033
 
      the new unknown file. (John Arbash Meinel, #111288)
4034
 
 
4035
 
    * Avoid error when running hooks after pulling into or pushing from
4036
 
      a branch bound to a smartserver branch.  (Martin Pool, #111968)
4037
 
 
4038
 
  IMPROVEMENTS:
4039
 
 
4040
 
    * Move developer documentation to doc/developers/. This reduces clutter in
4041
 
      the root of the source tree and allows HACKING to be split into multiple
4042
 
      files. (Robert Collins, Alexander Belchenko)
4043
 
 
4044
 
    * Clean up the ``WorkingTree4._iter_changes()`` internal loops as well as
4045
 
      ``DirState.update_entry()``. This optimizes the core logic for ``bzr
4046
 
      diff`` and ``bzr status`` significantly improving the speed of
4047
 
      both. (John Arbash Meinel)
4048
 
 
4049
 
bzr 0.16rc2  2007-04-30
4050
 
-----------------------
4051
 
 
4052
 
  BUGFIXES:
4053
 
 
4054
 
    * Handle the case when you delete a file, and then rename another file
4055
 
      on top of it. Also handle the case of ``bzr rm --keep foo``. ``bzr
4056
 
      status`` should show the removed file and an unknown file in its
4057
 
      place. (John Arbash Meinel, #109993)
4058
 
 
4059
 
    * Bundles properly read and write revision properties that have an
4060
 
      empty value. And when the value is not ASCII.
4061
 
      (John Arbash Meinel, #109613)
4062
 
 
4063
 
    * Fix the bzr commit message to be in text mode.
4064
 
      (Alexander Belchenko, #110901)
4065
 
 
4066
 
    * Also handle when you rename a file and create a file where it used
4067
 
      to be. (John Arbash Meinel, #110256)
4068
 
 
4069
 
    * ``WorkingTree4._iter_changes`` should not descend into unversioned
4070
 
      directories. (John Arbash Meinel, #110399)
4071
 
 
4072
 
bzr 0.16rc1  2007-04-26
4073
 
-----------------------
4074
 
 
4075
 
  NOTES WHEN UPGRADING:
4076
 
 
4077
 
    * ``bzr remove`` and ``bzr rm`` will now remove the working file, if
4078
 
      it could be recovered again.
4079
 
      This has been done for consistency with svn and the unix rm command.
4080
 
      The old ``remove`` behaviour has been retained in the new option
4081
 
      ``bzr remove --keep``, which will just stop versioning the file,
4082
 
      but not delete it.
4083
 
      ``bzr remove --force`` have been added which will always delete the
4084
 
      files.
4085
 
      ``bzr remove`` is also more verbose.
4086
 
      (Marius Kruger, #82602)
4087
 
 
4088
 
  IMPROVEMENTS:
4089
 
 
4090
 
    * Merge directives can now be supplied as input to `merge` and `pull`,
4091
 
      like bundles can.  (Aaron Bentley)
4092
 
 
4093
 
    * Sending the SIGQUIT signal to bzr, which can be done on Unix by
4094
 
      pressing Control-Backslash, drops bzr into a debugger.  Type ``'c'``
4095
 
      to continue.  This can be disabled by setting the environment variable
4096
 
      ``BZR_SIGQUIT_PDB=0``.  (Martin Pool)
4097
 
 
4098
 
    * selftest now supports --list-only to list tests instead of running
4099
 
      them. (Ian Clatworthy)
4100
 
 
4101
 
    * selftest now supports --exclude PATTERN (or -x PATTERN) to exclude
4102
 
      tests with names that match that regular expression.
4103
 
      (Ian Clatworthy, #102679)
4104
 
 
4105
 
    * selftest now supports --randomize SEED to run tests in a random order.
4106
 
      SEED is typically the value 'now' meaning 'use the current time'.
4107
 
      (Ian Clatworthy, #102686)
4108
 
 
4109
 
    * New option ``--fixes`` to commit, which stores bug fixing annotations as
4110
 
      revision properties. Built-in support for Launchpad, Debian, Trac and
4111
 
      Bugzilla bug trackers. (Jonathan Lange, James Henstridge, Robert Collins)
4112
 
 
4113
 
    * New API, ``bzrlib.bugtracker.tracker_registry``, for adding support for
4114
 
      other bug trackers to ``fixes``. (Jonathan Lange, James Henstridge,
4115
 
      Robert Collins)
4116
 
 
4117
 
    * ``selftest`` has new short options ``-f`` and ``-1``.  (Martin
4118
 
      Pool)
4119
 
 
4120
 
    * ``bzrlib.tsort.MergeSorter`` optimizations. Change the inner loop
4121
 
      into using local variables instead of going through ``self._var``.
4122
 
      Improves the time to ``merge_sort`` a 10k revision graph by
4123
 
      approximately 40% (~700->400ms).  (John Arbash Meinel)
4124
 
 
4125
 
    * ``make docs`` now creates a man page at ``man1/bzr.1`` fixing bug 107388.
4126
 
      (Robert Collins)
4127
 
 
4128
 
    * ``bzr help`` now provides cross references to other help topics using
4129
 
      the _see_also facility on command classes. Likewise the bzr_man
4130
 
      documentation, and the bzr.1 man page also include this information.
4131
 
      (Robert Collins)
4132
 
 
4133
 
    * Tags are now included in logs, that use the long log formatter. 
4134
 
      (Erik Bågfors, Alexander Belchenko)
4135
 
 
4136
 
    * ``bzr help`` provides a clearer message when a help topic cannot be
4137
 
      found. (Robert Collins, #107656)
4138
 
 
4139
 
    * ``bzr help`` now accepts optional prefixes for command help. The help
4140
 
      for all commands can now be found at ``bzr help commands/COMMANDNAME``
4141
 
      as well as ``bzr help COMMANDNAME`` (which only works for commands 
4142
 
      where the name is not the same as a more general help topic). 
4143
 
      (Robert Collins)
4144
 
 
4145
 
    * ``bzr help PLUGINNAME`` will now return the module docstring from the
4146
 
      plugin PLUGINNAME. (Robert Collins, #50408)
4147
 
 
4148
 
    * New help topic ``urlspec`` which lists the availables transports.
4149
 
      (Goffredo Baroncelli)
4150
 
 
4151
 
    * doc/server.txt updated to document the default bzr:// port
4152
 
      and also update the blurb about the hpss' current status.
4153
 
      (Robert Collins, #107125).
4154
 
 
4155
 
    * ``bzr serve`` now listens on interface 0.0.0.0 by default, making it
4156
 
      serve out to the local LAN (and anyone in the world that can reach the
4157
 
      machine running ``bzr serve``. (Robert Collins, #98918)
4158
 
 
4159
 
    * A new smart server protocol version has been added.  It prefixes requests
4160
 
      and responses with an explicit version identifier so that future protocol
4161
 
      revisions can be dealt with gracefully.  (Andrew Bennetts, Robert Collins)
4162
 
 
4163
 
    * The bzr protocol version 2 indicates success or failure in every response
4164
 
      without depending on particular commands encoding that consistently,
4165
 
      allowing future client refactorings to be much more robust about error
4166
 
      handling. (Robert Collins, Martin Pool, Andrew Bennetts)
4167
 
 
4168
 
    * The smart protocol over HTTP client has been changed to always post to the
4169
 
      same ``.bzr/smart`` URL under the original location when it can.  This allows
4170
 
      HTTP servers to only have to pass URLs ending in .bzr/smart to the smart
4171
 
      server handler, and not arbitrary ``.bzr/*/smart`` URLs.  (Andrew Bennetts)
4172
 
 
4173
 
    * digest authentication is now supported for proxies and HTTP by the urllib
4174
 
      based http implementation. Tested against Apache 2.0.55 and Squid
4175
 
      2.6.5. Basic and digest authentication are handled coherently for HTTP
4176
 
      and proxy: if the user is provided in the url (bzr command line for HTTP,
4177
 
      proxy environment variables for proxies), the password is prompted for
4178
 
      (only once). If the password is provided, it is taken into account. Once
4179
 
      the first authentication is successful, all further authentication
4180
 
      roundtrips are avoided by preventively setting the right authentication
4181
 
      header(s).
4182
 
      (Vincent Ladeuil).
4183
 
 
4184
 
  INTERNALS:
4185
 
 
4186
 
    * bzrlib API compatability with 0.8 has been dropped, cleaning up some
4187
 
      code paths. (Robert Collins)
4188
 
 
4189
 
    * Change the format of chroot urls so that they can be safely manipulated
4190
 
      by generic url utilities without causing the resulting urls to have
4191
 
      escaped the chroot. A side effect of this is that creating a chroot
4192
 
      requires an explicit action using a ChrootServer.
4193
 
      (Robert Collins, Andrew Bennetts)
4194
 
 
4195
 
    * Deprecate ``Branch.get_root_id()`` because branches don't have root ids,
4196
 
      rather than fixing bug #96847.  (Aaron Bentley)
4197
 
 
4198
 
    * ``WorkingTree.apply_inventory_delta`` provides a better alternative to
4199
 
      ``WorkingTree._write_inventory``.  (Aaron Bentley)
4200
 
 
4201
 
    * Convenience method ``TestCase.expectFailure`` ensures that known failures
4202
 
      do not silently pass.  (Aaron Bentley)
4203
 
 
4204
 
    * ``Transport.local_abspath`` now raises ``NotLocalUrl`` rather than 
4205
 
      ``TransportNotPossible``. (Martin Pool, Ian Clatworthy)
4206
 
 
4207
 
    * New SmartServer hooks facility. There are two initial hooks documented
4208
 
      in ``bzrlib.transport.smart.SmartServerHooks``. The two initial hooks allow
4209
 
      plugins to execute code upon server startup and shutdown.
4210
 
      (Robert Collins).
4211
 
 
4212
 
    * SmartServer in standalone mode will now close its listening socket
4213
 
      when it stops, rather than waiting for garbage collection. This primarily
4214
 
      fixes test suite hangs when a test tries to connect to a shutdown server.
4215
 
      It may also help improve behaviour when dealing with a server running
4216
 
      on a specific port (rather than dynamically assigned ports).
4217
 
      (Robert Collins)
4218
 
 
4219
 
    * Move most SmartServer code into a new package, bzrlib/smart.
4220
 
      bzrlib/transport/remote.py contains just the Transport classes that used
4221
 
      to be in bzrlib/transport/smart.py.  (Andrew Bennetts)
4222
 
 
4223
 
    * urllib http implementation avoid roundtrips associated with
4224
 
      401 (and 407) errors once the authentication succeeds.
4225
 
      (Vincent Ladeuil).
4226
 
 
4227
 
    * urlib http now supports querying the user for a proxy password if
4228
 
      needed. Realm is shown in the prompt for both HTTP and proxy
4229
 
      authentication when the user is required to type a password. 
4230
 
      (Vincent Ladeuil).
4231
 
 
4232
 
    * Renamed SmartTransport (and subclasses like SmartTCPTransport) to
4233
 
      RemoteTransport (and subclasses to RemoteTCPTransport, etc).  This is more
4234
 
      consistent with its new home in ``bzrlib/transport/remote.py``, and because
4235
 
      it's not really a "smart" transport, just one that does file operations
4236
 
      via remote procedure calls.  (Andrew Bennetts)
4237
 
 
4238
 
    * The ``lock_write`` method of ``LockableFiles``, ``Repository`` and
4239
 
      ``Branch`` now accept a ``token`` keyword argument, so that separate
4240
 
      instances of those objects can share a lock if it has the right token.
4241
 
      (Andrew Bennetts, Robert Collins)
4242
 
 
4243
 
    * New method ``get_branch_reference`` on ``BzrDir`` allows the detection of
4244
 
      branch references - which the smart server component needs.
4245
 
 
4246
 
    * The Repository API ``make_working_trees`` is now permitted to return
4247
 
      False when ``set_make_working_trees`` is not implemented - previously
4248
 
      an unimplemented ``set_make_working_trees`` implied the result True
4249
 
      from ``make_working_trees``. This has been changed to accomodate the
4250
 
      smart server, where it does not make sense (at this point) to ever
4251
 
      make working trees by default. (Robert Collins)
4252
 
 
4253
 
    * Command objects can now declare related help topics by having _see_also
4254
 
      set to a list of related topic. (Robert Collins)
4255
 
 
4256
 
    * ``bzrlib.help`` now delegates to the Command class for Command specific
4257
 
      help. (Robert Collins)
4258
 
 
4259
 
    * New class ``TransportListRegistry``, derived from the Registry class, which 
4260
 
      simplifies tracking the available Transports. (Goffredo Baroncelli)
4261
 
 
4262
 
    * New function ``Branch.get_revision_id_to_revno_map`` which will
4263
 
      return a dictionary mapping revision ids to dotted revnos. Since
4264
 
      dotted revnos are defined in the context of the branch tip, it makes
4265
 
      sense to generate them from a ``Branch`` object.
4266
 
      (John Arbash Meinel)
4267
 
 
4268
 
    * Fix the 'Unprintable error' message display to use the repr of the 
4269
 
      exception that prevented printing the error because the str value
4270
 
      for it is often not useful in debugging (e.g. KeyError('foo') has a
4271
 
      str() of 'foo' but a repr of 'KeyError('foo')' which is much more
4272
 
      useful. (Robert Collins)
4273
 
 
4274
 
    * ``urlutils.normalize_url`` now unescapes unreserved characters, such as "~".
4275
 
      (Andrew Bennetts)
4276
 
 
4277
 
  BUGFIXES:
4278
 
 
4279
 
    * Don't fail bundle selftest if email has 'two' embedded.  
4280
 
      (Ian Clatworthy, #98510)
4281
 
 
4282
 
    * Remove ``--verbose`` from ``bzr bundle``. It didn't work anyway.
4283
 
      (Robert Widhopf-Fenk, #98591)
4284
 
 
4285
 
    * Remove ``--basis`` from the checkout/branch commands - it didn't work
4286
 
      properly and is no longer beneficial.
4287
 
      (Robert Collins, #53675, #43486)
4288
 
 
4289
 
    * Don't produce encoding error when adding duplicate files.
4290
 
      (Aaron Bentley)
4291
 
 
4292
 
    * Fix ``bzr log <file>`` so it only logs the revisions that changed
4293
 
      the file, and does it faster.
4294
 
      (Kent Gibson, John Arbash Meinel, #51980, #69477)
4295
 
 
4296
 
    * Fix ``InterDirstateTre._iter_changes`` to handle when we come across
4297
 
      an empty versioned directory, which now has files in it.
4298
 
      (John Arbash Meinel, #104257)
4299
 
 
4300
 
    * Teach ``common_ancestor`` to shortcut when the tip of one branch is
4301
 
      inside the ancestry of the other. Saves a lot of graph processing
4302
 
      (with an ancestry of 16k revisions, ``bzr merge ../already-merged``
4303
 
      changes from 2m10s to 13s).  (John Arbash Meinel, #103757)
4304
 
 
4305
 
    * Fix ``show_diff_trees`` to handle the case when a file is modified,
4306
 
      and the containing directory is renamed. (The file path is different
4307
 
      in this versus base, but it isn't marked as a rename).
4308
 
      (John Arbash Meinel, #103870)
4309
 
 
4310
 
    * FTP now works even when the FTP server does not support atomic rename.
4311
 
      (Aaron Bentley, #89436)
4312
 
 
4313
 
    * Correct handling in bundles and merge directives of timezones with
4314
 
      that are not an integer number of hours offset from UTC.  Always 
4315
 
      represent the epoch time in UTC to avoid problems with formatting 
4316
 
      earlier times on win32.  (Martin Pool, Alexander Belchenko, John
4317
 
      Arbash Meinel)
4318
 
 
4319
 
    * Typo in the help for ``register-branch`` fixed. (Robert Collins, #96770)
4320
 
 
4321
 
    * "dirstate" and "dirstate-tags" formats now produce branches compatible
4322
 
      with old versions of bzr. (Aaron Bentley, #107168))
4323
 
 
4324
 
    * Handle moving a directory when children have been added, removed,
4325
 
      and renamed. (John Arbash Meinel, #105479)
4326
 
 
4327
 
    * Don't preventively use basic authentication for proxy before receiving a
4328
 
      407 error. Otherwise people willing to use other authentication schemes
4329
 
      may expose their password in the clear (or nearly). This add one
4330
 
      roundtrip in case basic authentication should be used, but plug the
4331
 
      security hole.
4332
 
      (Vincent Ladeuil)
4333
 
 
4334
 
    * Handle http and proxy digest authentication.
4335
 
      (Vincent Ladeuil, #94034).
4336
 
 
4337
 
  TESTING:
4338
 
 
4339
 
    * Added ``bzrlib.strace.strace`` which will strace a single callable and
4340
 
      return a StraceResult object which contains just the syscalls involved
4341
 
      in running it. (Robert Collins)
4342
 
 
4343
 
    * New test method ``reduceLockdirTimeout`` to drop the default (ui-centric)
4344
 
      default time down to one suitable for tests. (Andrew Bennetts)
4345
 
 
4346
 
    * Add new ``vfs_transport_factory`` attribute on tests which provides the 
4347
 
      common vfs backing for both the readonly and readwrite transports.
4348
 
      This allows the RemoteObject tests to back onto local disk or memory,
4349
 
      and use the existing ``transport_server`` attribute all tests know about
4350
 
      to be the smart server transport. This in turn allows tests to 
4351
 
      differentiate between 'transport to access the branch', and 
4352
 
      'transport which is a VFS' - which matters in Remote* tests.
4353
 
      (Robert Collins, Andrew Bennetts)
4354
 
 
4355
 
    * The ``make_branch_and_tree`` method for tests will now create a 
4356
 
      lightweight checkout for the tree if the ``vfs_transport_factory`` is not
4357
 
      a LocalURLServer. (Robert Collins, Andrew Bennetts)
4358
 
 
4359
 
    * Branch implementation tests have been audited to ensure that all urls 
4360
 
      passed to Branch APIs use proper urls, except when local-disk paths
4361
 
      are intended. This is so that tests correctly access the test transport
4362
 
      which is often not equivalent to local disk in Remote* tests. As part
4363
 
      of this many tests were adjusted to remove dependencies on local disk
4364
 
      access.
4365
 
      (Robert Collins, Andrew Bennetts)
4366
 
 
4367
 
    * Mark bzrlib.tests and bzrlib.tests.TestUtil as providing assertFOO helper
4368
 
      functions by adding a ``__unittest`` global attribute. (Robert Collins,
4369
 
      Andrew Bennetts, Martin Pool, Jonathan Lange)
4370
 
 
4371
 
    * Refactored proxy and authentication handling to simplify the
4372
 
      implementation of new auth schemes for both http and proxy. 
4373
 
      (Vincent Ladeuil)
4374
 
 
4375
 
bzr 0.15 2007-04-01
4376
 
-------------------
4377
 
 
4378
 
  BUGFIXES:
4379
 
 
4380
 
    * Handle incompatible repositories as a user issue when fetching.
4381
 
      (Aaron Bentley)
4382
 
 
4383
 
    * Don't give a recommendation to upgrade when branching or 
4384
 
      checking out a branch that contains an old-format working tree.
4385
 
      (Martin Pool)
4386
 
 
4387
 
bzr 0.15rc3  2007-03-26
4388
 
-----------------------
4389
 
 
4390
 
  CHANGES:
4391
 
 
4392
 
    * A warning is now displayed when opening working trees in older 
4393
 
      formats, to encourage people to upgrade to WorkingTreeFormat4.
4394
 
      (Martin Pool)
4395
 
 
4396
 
  IMPROVEMENTS:
4397
 
 
4398
 
    * HTTP redirections are now taken into account when a branch (or a
4399
 
      bundle) is accessed for the first time. A message is issued at each
4400
 
      redirection to inform the user. In the past, http redirections were
4401
 
      silently followed for each request which significantly degraded the
4402
 
      performances. The http redirections are not followed anymore by
4403
 
      default, instead a RedirectRequested exception is raised. For bzrlib
4404
 
      users needing to follow http redirections anyway,
4405
 
      ``bzrlib.transport.do_catching_redirections`` provide an easy transition
4406
 
      path.  (vila)
4407
 
 
4408
 
  INTERNALS:
4409
 
 
4410
 
    * Added ``ReadLock.temporary_write_lock()`` to allow upgrading an OS read
4411
 
      lock to an OS write lock. Linux can do this without unlocking, Win32
4412
 
      needs to unlock in between. (John Arbash Meinel)
4413
 
 
4414
 
    * New parameter ``recommend_upgrade`` to ``BzrDir.open_workingtree``
4415
 
      to silence (when false) warnings about opening old formats.
4416
 
      (Martin Pool)
4417
 
 
4418
 
    * Fix minor performance regression with bzr-0.15 on pre-dirstate
4419
 
      trees. (We were reading the working inventory too many times).
4420
 
      (John Arbash Meinel)
4421
 
 
4422
 
    * Remove ``Branch.get_transaction()`` in favour of a simple cache of
4423
 
      ``revision_history``.  Branch subclasses should override
4424
 
      ``_gen_revision_history`` rather than ``revision_history`` to make use of
4425
 
      this cache, and call ``_clear_revision_history_cache`` and
4426
 
      ``_cache_revision_history`` at appropriate times. (Andrew Bennetts)
4427
 
 
4428
 
  BUGFIXES:
4429
 
 
4430
 
    * Take ``smtp_server`` from user config into account.
4431
 
      (vila, #92195)
4432
 
 
4433
 
    * Restore Unicode filename handling for versioned and unversioned files.
4434
 
      (John Arbash Meinel, #92608)
4435
 
 
4436
 
    * Don't fail during ``bzr commit`` if a file is marked removed, and
4437
 
      the containing directory is auto-removed.  (John Arbash Meinel, #93681)
4438
 
 
4439
 
    * ``bzr status FILENAME`` failed on Windows because of an uncommon
4440
 
      errno. (``ERROR_DIRECTORY == 267 != ENOTDIR``).
4441
 
      (Wouter van Heyst, John Arbash Meinel, #90819)
4442
 
 
4443
 
    * ``bzr checkout source`` should create a local branch in the same
4444
 
      format as source. (John Arbash Meinel, #93854)
4445
 
 
4446
 
    * ``bzr commit`` with a kind change was failing to update the
4447
 
      last-changed-revision for directories.  The
4448
 
      InventoryDirectory._unchanged only looked at the ``parent_id`` and name,
4449
 
      ignoring the fact that the kind could have changed, too.
4450
 
      (John Arbash Meinel, #90111)
4451
 
 
4452
 
    * ``bzr mv dir/subdir other`` was incorrectly updating files inside
4453
 
      the directory. So that there was a chance it would break commit,
4454
 
      etc. (John Arbash Meinel, #94037)
4455
 
 
4456
 
    * Correctly handles mutiple permanent http redirections.
4457
 
      (vila, #88780)
4458
 
 
4459
 
bzr 0.15rc2  2007-03-14
4460
 
-----------------------
4461
 
 
4462
 
  NOTES WHEN UPGRADING:
4463
 
        
4464
 
    * Release 0.15rc2 of bzr changes the ``bzr init-repo`` command to
4465
 
      default to ``--trees`` instead of ``--no-trees``.
4466
 
      Existing shared repositories are not affected.
4467
 
 
4468
 
  IMPROVEMENTS:
4469
 
 
4470
 
    * New ``merge-directive`` command to generate machine- and human-readable
4471
 
      merge requests.  (Aaron Bentley)
4472
 
 
4473
 
    * New ``submit:`` revision specifier makes it easy to diff against the
4474
 
      common ancestor with the submit location (Aaron Bentley)
4475
 
 
4476
 
    * Added support for Putty's SSH implementation. (Dmitry Vasiliev)
4477
 
 
4478
 
    * Added ``bzr status --versioned`` to report only versioned files, 
4479
 
      not unknowns. (Kent Gibson)
4480
 
 
4481
 
    * Merge now autodetects the correct line-ending style for its conflict
4482
 
      markers.  (Aaron Bentley)
4483
 
 
4484
 
  INTERNALS:
4485
 
 
4486
 
    * Refactored SSH vendor registration into SSHVendorManager class.
4487
 
      (Dmitry Vasiliev)
4488
 
 
4489
 
  BUGFIXES:
4490
 
 
4491
 
    * New ``--numbered-dirs`` option to ``bzr selftest`` to use
4492
 
      numbered dirs for TestCaseInTempDir. This is default behavior
4493
 
      on Windows. Anyone can force named dirs on Windows
4494
 
      with ``--no-numbered-dirs``. (Alexander Belchenko)
4495
 
 
4496
 
    * Fix ``RevisionSpec_revid`` to handle the Unicode strings passed in
4497
 
      from the command line. (Marien Zwart, #90501)
4498
 
 
4499
 
    * Fix ``TreeTransform._iter_changes`` when both the source and
4500
 
      destination are missing. (Aaron Bentley, #88842)
4501
 
 
4502
 
    * Fix commit of merges with symlinks in dirstate trees.
4503
 
      (Marien Zwart)
4504
 
    
4505
 
    * Switch the ``bzr init-repo`` default from --no-trees to --trees. 
4506
 
      (Wouter van Heyst, #53483)
4507
 
 
4508
 
 
4509
 
bzr 0.15rc1  2007-03-07
4510
 
-----------------------
4511
 
 
4512
 
  SURPRISES:
4513
 
 
4514
 
    * The default disk format has changed. Please run 'bzr upgrade' in your
4515
 
      working trees to upgrade. This new default is compatible for network
4516
 
      operations, but not for local operations. That is, if you have two
4517
 
      versions of bzr installed locally, after upgrading you can only use the
4518
 
      bzr 0.15 version. This new default does not enable tags or nested-trees
4519
 
      as they are incompatible with bzr versions before 0.15 over the network.
4520
 
 
4521
 
    * For users of bzrlib: Two major changes have been made to the working tree
4522
 
      api in bzrlib. The first is that many methods and attributes, including
4523
 
      the inventory attribute, are no longer valid for use until one of
4524
 
      ``lock_read``/``lock_write``/``lock_tree_write`` has been called,
4525
 
      and become invalid again after unlock is called. This has been done
4526
 
      to improve performance and correctness as part of the dirstate
4527
 
      development.
4528
 
      (Robert Collins, John A Meinel, Martin Pool, and others).
4529
 
 
4530
 
    * For users of bzrlib: The attribute 'tree.inventory' should be considered
4531
 
      readonly. Previously it was possible to directly alter this attribute, or
4532
 
      its contents, and have the tree notice this. This has been made
4533
 
      unsupported - it may work in some tree formats, but in the newer dirstate
4534
 
      format such actions will have no effect and will be ignored, or even
4535
 
      cause assertions. All operations possible can still be carried out by a
4536
 
      combination of the tree API, and the bzrlib.transform API. (Robert
4537
 
      Collins, John A Meinel, Martin Pool, and others).
4538
 
 
4539
 
  IMPROVEMENTS:
4540
 
 
4541
 
    * Support for OS Windows 98. Also .bzr.log on any windows system
4542
 
      saved in My Documents folder. (Alexander Belchenko)
4543
 
 
4544
 
    * ``bzr mv`` enhanced to support already moved files.
4545
 
      In the past the mv command would have failed if the source file doesn't
4546
 
      exist. In this situation ``bzr mv`` would now detect that the file has
4547
 
      already moved and update the repository accordingly, if the target file
4548
 
      does exist.
4549
 
      A new option ``--after`` has been added so that if two files already
4550
 
      exist, you could notify Bazaar that you have moved a (versioned) file
4551
 
      and replaced it with another. Thus in this case ``bzr move --after``
4552
 
      will only update the Bazaar identifier.
4553
 
      (Steffen Eichenberg, Marius Kruger)
4554
 
 
4555
 
    * ``ls`` now works on treeless branches and remote branches.
4556
 
      (Aaron Bentley)
4557
 
 
4558
 
    * ``bzr help global-options`` describes the global options.
4559
 
      (Aaron Bentley)
4560
 
 
4561
 
    * ``bzr pull --overwrite`` will now correctly overwrite checkouts.
4562
 
      (Robert Collins)
4563
 
 
4564
 
    * Files are now allowed to change kind (e.g. from file to symlink).
4565
 
      Supported by ``commit``, ``revert`` and ``status``
4566
 
      (Aaron Bentley)
4567
 
 
4568
 
    * ``inventory`` and ``unknowns`` hidden in favour of ``ls``
4569
 
      (Aaron Bentley)
4570
 
 
4571
 
    * ``bzr help checkouts`` descibes what checkouts are and some possible
4572
 
      uses of them. (James Westby, Aaron Bentley)
4573
 
 
4574
 
    * A new ``-d`` option to push, pull and merge overrides the default 
4575
 
      directory.  (Martin Pool)
4576
 
 
4577
 
    * Branch format 6: smaller, and potentially faster than format 5.  Supports
4578
 
      ``append_history_only`` mode, where the log view and revnos do not change,
4579
 
      except by being added to.  Stores policy settings in
4580
 
      ".bzr/branch/branch.conf".
4581
 
 
4582
 
    * ``append_only`` branches:  Format 6 branches may be configured so that log
4583
 
      view and revnos are always consistent.  Either create the branch using
4584
 
      "bzr init --append-revisions-only" or edit the config file as descriped
4585
 
      in docs/configuration.txt.
4586
 
 
4587
 
    * rebind: Format 6 branches retain the last-used bind location, so if you
4588
 
      "bzr unbind", you can "bzr bind" to bind to the previously-selected
4589
 
      bind location.
4590
 
 
4591
 
    * Builtin tags support, created and deleted by the ``tag`` command and
4592
 
      stored in the branch.  Tags can be accessed with the revisionspec
4593
 
      ``-rtag:``, and listed with ``bzr tags``.  Tags are not versioned 
4594
 
      at present. Tags require a network incompatible upgrade. To perform this
4595
 
      upgrade, run ``bzr upgrade --dirstate-tags`` in your branch and
4596
 
      repositories. (Martin Pool)
4597
 
 
4598
 
    * The ``bzr://`` transport now has a well-known port number, 4155,
4599
 
      which it will use by default.  (Andrew Bennetts, Martin Pool)
4600
 
 
4601
 
    * Bazaar now looks for user-installed plugins before looking for site-wide
4602
 
      plugins. (Jonathan Lange)
4603
 
 
4604
 
    * ``bzr resolve`` now detects and marks resolved text conflicts.
4605
 
      (Aaron Bentley)
4606
 
 
4607
 
  INTERNALS:
4608
 
 
4609
 
    * Internally revision ids and file ids are now passed around as utf-8
4610
 
      bytestrings, rather than treating them as Unicode strings. This has
4611
 
      performance benefits for Knits, since we no longer need to decode the
4612
 
      revision id for each line of content, nor for each entry in the index.
4613
 
      This will also help with the future dirstate format.
4614
 
      (John Arbash Meinel)
4615
 
 
4616
 
    * Reserved ids (any revision-id ending in a colon) are rejected by
4617
 
      versionedfiles, repositories, branches, and working trees
4618
 
      (Aaron Bentley)
4619
 
 
4620
 
    * Minor performance improvement by not creating a ProgressBar for
4621
 
      every KnitIndex we create. (about 90ms for a bzr.dev tree)
4622
 
      (John Arbash Meinel)
4623
 
 
4624
 
    * New easier to use Branch hooks facility. There are five initial hooks,
4625
 
      all documented in bzrlib.branch.BranchHooks.__init__ - ``'set_rh'``,
4626
 
      ``'post_push'``, ``'post_pull'``, ``'post_commit'``,
4627
 
      ``'post_uncommit'``. These hooks fire after the matching operation
4628
 
      on a branch has taken place, and were originally added for the
4629
 
      branchrss plugin. (Robert Collins)
4630
 
 
4631
 
    * New method ``Branch.push()`` which should be used when pushing from a
4632
 
      branch as it makes performance and policy decisions to match the UI
4633
 
      level command ``push``. (Robert Collins).
4634
 
 
4635
 
    * Add a new method ``Tree.revision_tree`` which allows access to cached
4636
 
      trees for arbitrary revisions. This allows the in development dirstate
4637
 
      tree format to provide access to the callers to cached copies of 
4638
 
      inventory data which are cheaper to access than inventories from the
4639
 
      repository.
4640
 
      (Robert Collins, Martin Pool)
4641
 
 
4642
 
    * New ``Branch.last_revision_info`` method, this is being done to allow
4643
 
      optimization of requests for both the number of revisions and the last
4644
 
      revision of a branch with smartservers and potentially future branch
4645
 
      formats. (Wouter van Heyst, Robert Collins)
4646
 
 
4647
 
    * Allow ``'import bzrlib.plugins.NAME'`` to work when the plugin NAME has not
4648
 
      yet been loaded by ``load_plugins()``. This allows plugins to depend on each
4649
 
      other for code reuse without requiring users to perform file-renaming
4650
 
      gymnastics. (Robert Collins)
4651
 
 
4652
 
    * New Repository method ``'gather_stats'`` for statistic data collection.
4653
 
      This is expected to grow to cover a number of related uses mainly
4654
 
      related to bzr info. (Robert Collins)
4655
 
 
4656
 
    * Log formatters are now managed with a registry.
4657
 
      ``log.register_formatter`` continues to work, but callers accessing
4658
 
      the FORMATTERS dictionary directly will not.
4659
 
 
4660
 
    * Allow a start message to be passed to the ``edit_commit_message``
4661
 
      function.  This will be placed in the message offered to the user
4662
 
      for editing above the separator. It allows a template commit message
4663
 
      to be used more easily. (James Westby)
4664
 
 
4665
 
    * ``GPGStrategy.sign()`` will now raise ``BzrBadParameterUnicode`` if
4666
 
      you pass a Unicode string rather than an 8-bit string. Callers need
4667
 
      to be updated to encode first. (John Arbash Meinel)
4668
 
 
4669
 
    * Branch.push, pull, merge now return Result objects with information
4670
 
      about what happened, rather than a scattering of various methods.  These
4671
 
      are also passed to the post hooks.  (Martin Pool)
4672
 
 
4673
 
    * File formats and architecture is in place for managing a forest of trees
4674
 
      in bzr, and splitting up existing trees into smaller subtrees, and
4675
 
      finally joining trees to make a larger tree. This is the first iteration
4676
 
      of this support, and the user-facing aspects still require substantial
4677
 
      work.  If you wish to experiment with it, use ``bzr upgrade
4678
 
      --dirstate-with-subtree`` in your working trees and repositories.
4679
 
      You can use the hidden commands ``split`` and ``join`` and to create
4680
 
      and manipulate nested trees, but please consider using the nested-trees
4681
 
      branch, which contains substantial UI improvements, instead.
4682
 
      http://code.aaronbentley.com/bzr/bzrrepo/nested-trees/
4683
 
      (Aaron Bentley, Martin Pool, Robert Collins).
4684
 
 
4685
 
  BUGFIXES:
4686
 
 
4687
 
    * ``bzr annotate`` now uses dotted revnos from the viewpoint of the
4688
 
      branch, rather than the last changed revision of the file.
4689
 
      (John Arbash Meinel, #82158)
4690
 
 
4691
 
    * Lock operations no longer hang if they encounter a permission problem.
4692
 
      (Aaron Bentley)
4693
 
 
4694
 
    * ``bzr push`` can resume a push that was canceled before it finished.
4695
 
      Also, it can push even if the target directory exists if you supply
4696
 
      the ``--use-existing-dir`` flag.
4697
 
      (John Arbash Meinel, #30576, #45504)
4698
 
 
4699
 
    * Fix http proxy authentication when user and an optional
4700
 
      password appears in the ``*_proxy`` vars. (Vincent Ladeuil,
4701
 
      #83954).
4702
 
 
4703
 
    * ``bzr log branch/file`` works for local treeless branches
4704
 
      (Aaron Bentley, #84247)
4705
 
 
4706
 
    * Fix problem with UNC paths on Windows 98. (Alexander Belchenko, #84728)
4707
 
 
4708
 
    * Searching location of CA bundle for PyCurl in env variable
4709
 
      (``CURL_CA_BUNDLE``), and on win32 along the PATH.
4710
 
      (Alexander Belchenko, #82086)
4711
 
 
4712
 
    * ``bzr init`` works with unicode argument LOCATION.
4713
 
      (Alexander Belchenko, #85599)
4714
 
 
4715
 
    * Raise ``DependencyNotPresent`` if pycurl do not support https. 
4716
 
      (Vincent Ladeuil, #85305)
4717
 
 
4718
 
    * Invalid proxy env variables should not cause a traceback.
4719
 
      (Vincent Ladeuil, #87765)
4720
 
 
4721
 
    * Ignore patterns normalised to use '/' path separator.
4722
 
      (Kent Gibson, #86451)
4723
 
 
4724
 
    * bzr rocks. It sure does! Fix case. (Vincent Ladeuil, #78026)
4725
 
 
4726
 
    * Fix bzrtools shelve command for removed lines beginning with "--"
4727
 
      (Johan Dahlberg, #75577)
4728
 
 
4729
 
  TESTING:
4730
 
 
4731
 
    * New ``--first`` option to ``bzr selftest`` to run specified tests
4732
 
      before the rest of the suite.  (Martin Pool)
4733
 
 
4734
 
 
4735
 
bzr 0.14  2007-01-23
4736
 
--------------------
4737
 
 
4738
 
  IMPROVEMENTS:
4739
 
 
4740
 
    * ``bzr help global-options`` describes the global options. (Aaron Bentley)
4741
 
 
4742
 
  BUG FIXES:
4743
 
    
4744
 
    * Skip documentation generation tests if the tools to do so are not
4745
 
      available. Fixes running selftest for installled copies of bzr. 
4746
 
      (John Arbash Meinel, #80330)
4747
 
 
4748
 
    * Fix the code that discovers whether bzr is being run from it's
4749
 
      working tree to handle the case when it isn't but the directory
4750
 
      it is in is below a repository. (James Westby, #77306)
4751
 
 
4752
 
 
4753
 
bzr 0.14rc1  2007-01-16
4754
 
-----------------------
4755
 
 
4756
 
  IMPROVEMENTS:
4757
 
 
4758
 
    * New connection: ``bzr+http://`` which supports tunnelling the smart
4759
 
      protocol over an HTTP connection. If writing is enabled on the bzr
4760
 
      server, then you can write over the http connection.
4761
 
      (Andrew Bennetts, John Arbash Meinel)
4762
 
 
4763
 
    * Aliases now support quotation marks, so they can contain whitespace
4764
 
      (Marius Kruger)
4765
 
 
4766
 
    * PyCurlTransport now use a single curl object. By specifying explicitly
4767
 
      the 'Range' header, we avoid the need to use two different curl objects
4768
 
      (and two connections to the same server). (Vincent Ladeuil)
4769
 
 
4770
 
    * ``bzr commit`` does not prompt for a message until it is very likely to
4771
 
      succeed.  (Aaron Bentley)
4772
 
 
4773
 
    * ``bzr conflicts`` now takes --text to list pathnames of text conflicts
4774
 
      (Aaron Bentley)
4775
 
 
4776
 
    * Fix ``iter_lines_added_or_present_in_versions`` to use a set instead
4777
 
      of a list while checking if a revision id was requested. Takes 10s
4778
 
      off of the ``fileids_affected_by_revision_ids`` time, which is 10s
4779
 
      of the ``bzr branch`` time. Also improve ``fileids_...`` time by
4780
 
      filtering lines with a regex rather than multiple ``str.find()``
4781
 
      calls. (saves another 300ms) (John Arbash Meinel)
4782
 
 
4783
 
    * Policy can be set for each configuration key. This allows keys to be
4784
 
      inherited properly across configuration entries. For example, this
4785
 
      should enable you to do::
4786
 
        
4787
 
        [/home/user/project]
4788
 
        push_location = sftp://host/srv/project/
4789
 
        push_location:policy = appendpath
4790
 
 
4791
 
      And then a branch like ``/home/user/project/mybranch`` should get an
4792
 
      automatic push location of ``sftp://host/srv/project/mybranch``.
4793
 
      (James Henstridge)
4794
 
 
4795
 
    * Added ``bzr status --short`` to make status report svn style flags
4796
 
      for each file.  For example::
4797
 
 
4798
 
        $ bzr status --short
4799
 
        A  foo
4800
 
        A  bar
4801
 
        D  baz
4802
 
        ?  wooley
4803
 
 
4804
 
    * 'bzr selftest --clean-output' allows easily clean temporary tests 
4805
 
      directories without running tests. (Alexander Belchenko)
4806
 
 
4807
 
    * ``bzr help hidden-commands`` lists all hidden commands. (Aaron Bentley)
4808
 
 
4809
 
    * ``bzr merge`` now has an option ``--pull`` to fall back to pull if
4810
 
      local is fully merged into remote. (Jan Hudec)
4811
 
 
4812
 
    * ``bzr help formats`` describes available directory formats. (Aaron Bentley)
4813
 
 
4814
 
  INTERNALS:
4815
 
 
4816
 
    * A few tweaks directly to ``fileids_affected_by_revision_ids`` to
4817
 
      help speed up processing, as well allowing to extract unannotated
4818
 
      lines. Between the two ``fileids_affected_by_revision_ids`` is
4819
 
      improved by approx 10%. (John Arbash Meinel)
4820
 
 
4821
 
    * Change Revision serialization to only write out millisecond
4822
 
      resolution. Rather than expecting floating point serialization to
4823
 
      preserve more resolution than we need. (Henri Weichers, Martin Pool)
4824
 
 
4825
 
    * Test suite ends cleanly on Windows.  (Vincent Ladeuil)
4826
 
 
4827
 
    * When ``encoding_type`` attribute of class Command is equal to 'exact', 
4828
 
      force sys.stdout to be a binary stream on Windows, and therefore
4829
 
      keep exact line-endings (without LF -> CRLF conversion).
4830
 
      (Alexander Belchenko)
4831
 
 
4832
 
    * Single-letter short options are no longer globally declared.  (Martin
4833
 
      Pool)
4834
 
 
4835
 
    * Before using detected user/terminal encoding bzr should check
4836
 
      that Python has corresponding codec. (Alexander Belchenko)
4837
 
 
4838
 
    * Formats for end-user selection are provided via a FormatRegistry (Aaron Bentley)
4839
 
 
4840
 
  BUG FIXES:
4841
 
 
4842
 
    * ``bzr missing --verbose`` was showing adds/removals in the wrong
4843
 
      direction. (John Arbash Meinel)
4844
 
 
4845
 
    * ``bzr annotate`` now defaults to showing dotted revnos for merged
4846
 
      revisions. It cuts them off at a depth of 12 characters, but you can
4847
 
      supply ``--long`` to see the full number. You can also use
4848
 
      ``--show-ids`` to display the original revision ids, rather than
4849
 
      revision numbers and committer names. (John Arbash Meinel, #75637)
4850
 
 
4851
 
    * bzr now supports Win32 UNC path (e.g. ``\HOST\path``. 
4852
 
      (Alexander Belchenko, #57869)
4853
 
 
4854
 
    * Win32-specific: output of cat, bundle and diff commands don't mangle
4855
 
      line-endings (Alexander Belchenko, #55276)
4856
 
 
4857
 
    * Replace broken fnmatch based ignore pattern matching with custom pattern
4858
 
      matcher.
4859
 
      (Kent Gibson, Jan Hudec #57637)
4860
 
 
4861
 
    * pycurl and urllib can detect short reads at different places. Update
4862
 
      the test suite to test more cases. Also detect http error code 416
4863
 
      which was raised for that specific bug. Also enhance the urllib
4864
 
      robustness by detecting invalid ranges (and pycurl's one by detecting
4865
 
      short reads during the initial GET). (Vincent Ladeuil, #73948)
4866
 
 
4867
 
    * The urllib connection sharing interacts badly with urllib2
4868
 
      proxy setting (the connections didn't go thru the proxy
4869
 
      anymore). Defining a proper ProxyHandler solves the
4870
 
      problem.  (Vincent Ladeuil, #74759)
4871
 
 
4872
 
    * Use urlutils to generate relative URLs, not osutils 
4873
 
      (Aaron Bentley, #76229)
4874
 
 
4875
 
    * ``bzr status`` in a readonly directory should work without giving
4876
 
      lots of errors. (John Arbash Meinel, #76299)
4877
 
 
4878
 
    * Mention the revisionspec topic for the revision option help.
4879
 
      (Wouter van Heyst, #31663)
4880
 
 
4881
 
    * Allow plugins import from zip archives.
4882
 
      (Alexander Belchenko, #68124)
4883
 
 
4884
 
 
4885
 
bzr 0.13  2006-12-05
4886
 
--------------------
4887
 
    
4888
 
  No changes from 0.13rc1
4889
 
    
4890
 
bzr 0.13rc1  2006-11-27
4891
 
-----------------------
4892
 
 
4893
 
  IMPROVEMENTS:
4894
 
 
4895
 
    * New command ``bzr remove-tree`` allows the removal of the working
4896
 
      tree from a branch.
4897
 
      (Daniel Silverstone)
4898
 
 
4899
 
    * urllib uses shared keep-alive connections, so http 
4900
 
      operations are substantially faster.
4901
 
      (Vincent Ladeuil, #53654)
4902
 
 
4903
 
    * ``bzr export`` allows an optional branch parameter, to export a bzr
4904
 
      tree from some other url. For example:
4905
 
      ``bzr export bzr.tar.gz http://bazaar-vcs.org/bzr/bzr.dev``
4906
 
      (Daniel Silverstone)
4907
 
 
4908
 
    * Added ``bzr help topics`` to the bzr help system. This gives a
4909
 
      location for general information, outside of a specific command.
4910
 
      This includes updates for ``bzr help revisionspec`` the first topic
4911
 
      included. (Goffredo Baroncelli, John Arbash Meinel, #42714)
4912
 
 
4913
 
    * WSGI-compatible HTTP smart server.  See ``doc/http_smart_server.txt``.
4914
 
      (Andrew Bennetts)
4915
 
 
4916
 
    * Knit files will now cache full texts only when the size of the
4917
 
      deltas is as large as the size of the fulltext. (Or after 200
4918
 
      deltas, whichever comes first). This has the most benefit on large
4919
 
      files with small changes, such as the inventory for a large project.
4920
 
      (eg For a project with 2500 files, and 7500 revisions, it changes
4921
 
      the size of inventory.knit from 11MB to 5.4MB) (John Arbash Meinel)
4922
 
 
4923
 
  INTERNALS:
4924
 
 
4925
 
    * New -D option given before the command line turns on debugging output
4926
 
      for particular areas.  -Derror shows tracebacks on all errors.
4927
 
      (Martin Pool)
4928
 
 
4929
 
    * Clean up ``bzr selftest --benchmark bundle`` to correct an import,
4930
 
      and remove benchmarks that take longer than 10min to run.
4931
 
      (John Arbash Meinel)
4932
 
 
4933
 
    * Use ``time.time()`` instead of ``time.clock()`` to decide on
4934
 
      progress throttling. Because ``time.clock()`` is actually CPU time,
4935
 
      so over a high-latency connection, too many updates get throttled.
4936
 
      (John Arbash Meinel)
4937
 
 
4938
 
    * ``MemoryTransport.list_dir()`` would strip the first character for
4939
 
      files or directories in root directory. (John Arbash Meinel)
4940
 
 
4941
 
    * New method ``get_branch_reference`` on 'BzrDir' allows the detection of 
4942
 
      branch references - which the smart server component needs.
4943
 
  
4944
 
    * New ``ChrootTransportDecorator``, accessible via the ``chroot+`` url
4945
 
      prefix.  It disallows any access to locations above a set URL.  (Andrew
4946
 
      Bennetts)
4947
 
 
4948
 
  BUG FIXES:
4949
 
 
4950
 
    * Now ``_KnitIndex`` properly decode revision ids when loading index data.
4951
 
      And optimize the knit index parsing code. 
4952
 
      (Dmitry Vasiliev, John Arbash Meinel)
4953
 
 
4954
 
    * ``bzrlib/bzrdir.py`` was directly referencing ``bzrlib.workingtree``,
4955
 
      without importing it. This prevented ``bzr upgrade`` from working
4956
 
      unless a plugin already imported ``bzrlib.workingtree``
4957
 
      (John Arbash Meinel, #70716)
4958
 
 
4959
 
    * Suppress the traceback on invalid URLs (Vincent Ladeuil, #70803).
4960
 
 
4961
 
    * Give nicer error message when an http server returns a 403
4962
 
      error code. (Vincent Ladeuil, #57644).
4963
 
 
4964
 
    * When a multi-range http GET request fails, try a single
4965
 
      range one. If it fails too, forget about ranges. Remember that until 
4966
 
      the death of the transport and propagates that to the clones.
4967
 
      (Vincent Ladeuil, #62276, #62029).
4968
 
 
4969
 
    * Handles user/passwords supplied in url from command
4970
 
      line (for the urllib implementation). Don't request already
4971
 
      known passwords (Vincent Ladeuil, #42383, #44647, #48527)
4972
 
 
4973
 
    * ``_KnitIndex.add_versions()`` dictionary compresses revision ids as they
4974
 
      are added. This fixes bug where fetching remote revisions records
4975
 
      them as full references rather than integers.
4976
 
      (John Arbash Meinel, #64789)
4977
 
 
4978
 
    * ``bzr ignore`` strips trailing slashes in patterns.
4979
 
      Also ``bzr ignore`` rejects absolute paths. (Kent Gibson, #4559)
4980
 
 
4981
 
    * ``bzr ignore`` takes multiple arguments. (Cheuksan Edward Wang, #29488)
4982
 
 
4983
 
    * mv correctly handles paths that traverse symlinks. 
4984
 
      (Aaron Bentley, #66964)
4985
 
 
4986
 
    * Give nicer looking error messages when failing to connect over ssh.
4987
 
      (John Arbash Meinel, #49172)
4988
 
 
4989
 
    * Pushing to a remote branch does not currently update the remote working
4990
 
      tree. After a remote push, ``bzr status`` and ``bzr diff`` on the remote
4991
 
      machine now show that the working tree is out of date.
4992
 
      (Cheuksan Edward Wang #48136)
4993
 
 
4994
 
    * Use patiencediff instead of difflib for determining deltas to insert
4995
 
      into knits. This avoids the O(N^3) behavior of difflib. Patience
4996
 
      diff should be O(N^2). (Cheuksan Edward Wang, #65714)
4997
 
 
4998
 
    * Running ``bzr log`` on nonexistent file gives an error instead of the
4999
 
      entire log history. (Cheuksan Edward Wang #50793)
5000
 
 
5001
 
    * ``bzr cat`` can look up contents of removed or renamed files. If the
5002
 
      pathname is ambiguous, i.e. the files in the old and new trees have
5003
 
      different id's, the default is the file in the new tree. The user can
5004
 
      use "--name-from-revision" to select the file in the old tree.
5005
 
      (Cheuksan Edward Wang, #30190)
5006
 
 
5007
 
  TESTING:
5008
 
 
5009
 
    * TestingHTTPRequestHandler really handles the Range header
5010
 
      (previously it was ignoring it and returning the whole file,).
5011
 
 
5012
 
bzr 0.12  2006-10-30
5013
 
--------------------
5014
 
 
5015
 
  INTERNALS:
5016
 
 
5017
 
    * Clean up ``bzr selftest --benchmark bundle`` to correct an import,
5018
 
      and remove benchmarks that take longer than 10min to run.
5019
 
      (John Arbash Meinel)
5020
 
  
5021
 
bzr 0.12rc1  2006-10-23
5022
 
-----------------------
5023
 
 
5024
 
  IMPROVEMENTS:
5025
 
 
5026
 
    * ``bzr log`` now shows dotted-decimal revision numbers for all revisions,
5027
 
      rather than just showing a decimal revision number for revisions on the
5028
 
      mainline. These revision numbers are not yet accepted as input into bzr
5029
 
      commands such as log, diff etc. (Robert Collins)
5030
 
 
5031
 
    * revisions can now be specified using dotted-decimal revision numbers.
5032
 
      For instance, ``bzr diff -r 1.2.1..1.2.3``. (Robert Collins)
5033
 
 
5034
 
    * ``bzr help commands`` output is now shorter (Aaron Bentley)
5035
 
 
5036
 
    * ``bzr`` now uses lazy importing to reduce the startup time. This has
5037
 
      a moderate effect on lots of actions, especially ones that have
5038
 
      little to do. For example ``bzr rocks`` time is down to 116ms from
5039
 
      283ms. (John Arbash Meinel)
5040
 
 
5041
 
    * New Registry class to provide name-to-object registry-like support,
5042
 
      for example for schemes where plugins can register new classes to
5043
 
      do certain tasks (e.g. log formatters). Also provides lazy registration
5044
 
      to allow modules to be loaded on request.
5045
 
      (John Arbash Meinel, Adeodato Simó)
5046
 
 
5047
 
  API INCOMPATABILITY:
5048
 
  
5049
 
    * LogFormatter subclasses show now expect the 'revno' parameter to 
5050
 
      show() to be a string rather than an int. (Robert Collins)
5051
 
 
5052
 
  INTERNALS:
5053
 
 
5054
 
    * ``TestCase.run_bzr``, ``run_bzr_captured``, and ``run_bzr_subprocess``
5055
 
      can take a ``working_dir='foo'`` parameter, which will change directory 
5056
 
      for the command. (John Arbash Meinel)
5057
 
 
5058
 
    * ``bzrlib.lazy_regex.lazy_compile`` can be used to create a proxy
5059
 
      around a regex, which defers compilation until first use. 
5060
 
      (John Arbash Meinel)
5061
 
 
5062
 
    * ``TestCase.run_bzr_subprocess`` defaults to supplying the
5063
 
      ``--no-plugins`` parameter to ensure test reproducability, and avoid
5064
 
      problems with system-wide installed plugins. (John Arbash Meinel)
5065
 
 
5066
 
    * Unique tree root ids are now supported. Newly created trees still
5067
 
      use the common root id for compatibility with bzr versions before 0.12.
5068
 
      (Aaron Bentley)
5069
 
 
5070
 
    * ``WorkingTree.set_root_id(None)`` is now deprecated. Please
5071
 
      pass in ``inventory.ROOT_ID`` if you want the default root id value.
5072
 
      (Robert Collins, John Arbash Meinel)
5073
 
 
5074
 
    * New method ``WorkingTree.flush()`` which will write the current memory
5075
 
      inventory out to disk. At the same time, ``read_working_inventory`` will
5076
 
      no longer trash the current tree inventory if it has been modified within
5077
 
      the current lock, and the tree will now ``flush()`` automatically on
5078
 
      ``unlock()``. ``WorkingTree.set_root_id()`` has been updated to take
5079
 
      advantage of this functionality. (Robert Collins, John Arbash Meinel)
5080
 
 
5081
 
    * ``bzrlib.tsort.merge_sorted`` now accepts ``generate_revnos``. This
5082
 
      parameter will cause it to add another column to its output, which
5083
 
      contains the dotted-decimal revno for each revision, as a tuple.
5084
 
      (Robert Collins)
5085
 
 
5086
 
    * ``LogFormatter.show_merge`` is deprecated in favour of
5087
 
      ``LogFormatter.show_merge_revno``. (Robert Collins)
5088
 
 
5089
 
  BUG FIXES:
5090
 
 
5091
 
    * Avoid circular imports by creating a deprecated function for
5092
 
      ``bzrlib.tree.RevisionTree``. Callers should have been using
5093
 
      ``bzrlib.revisontree.RevisionTree`` anyway. (John Arbash Meinel,
5094
 
      #63360, #66349)
5095
 
 
5096
 
    * Don't use ``socket.MSG_WAITALL`` as it doesn't exist on all
5097
 
      platforms. (Martin Pool, #66356)
5098
 
 
5099
 
    * Don't require ``Content-Type`` in range responses. Assume they are a
5100
 
      single range if ``Content-Type`` does not exist.
5101
 
      (John Arbash Meinel, #62473)
5102
 
 
5103
 
    * bzr branch/pull no longer complain about progress bar cleanup when
5104
 
      interrupted during fetch.  (Aaron Bentley, #54000)
5105
 
 
5106
 
    * ``WorkingTree.set_parent_trees()`` uses the trees to directly write
5107
 
      the basis inventory, rather than going through the repository. This
5108
 
      allows us to have 1 inventory read, and 2 inventory writes when
5109
 
      committing a new tree. (John Arbash Meinel)
5110
 
 
5111
 
    * When reverting, files that are not locally modified that do not exist
5112
 
      in the target are deleted, not just unversioned (Aaron Bentley)
5113
 
 
5114
 
    * When trying to acquire a lock, don't fail immediately. Instead, try
5115
 
      a few times (up to 1 hour) before timing out. Also, report why the
5116
 
      lock is unavailable (John Arbash Meinel, #43521, #49556)
5117
 
 
5118
 
    * Leave HttpTransportBase daughter classes decides how they
5119
 
      implement cloning. (Vincent Ladeuil, #61606)
5120
 
 
5121
 
    * diff3 does not indicate conflicts on clean merge. (Aaron Bentley)
5122
 
 
5123
 
    * If a commit fails, the commit message is stored in a file at the root of
5124
 
      the tree for later commit. (Cheuksan Edward Wang, Stefan Metzmacher,
5125
 
      #32054)
5126
 
 
5127
 
  TESTING:
5128
 
 
5129
 
    * New test base class TestCaseWithMemoryTransport offers memory-only
5130
 
      testing facilities: its not suitable for tests that need to mutate disk
5131
 
      state, but most tests should not need that and should be converted to
5132
 
      TestCaseWithMemoryTransport. (Robert Collins)
5133
 
 
5134
 
    * ``TestCase.make_branch_and_memory_tree`` now takes a format
5135
 
      option to set the BzrDir, Repository and Branch formats of the
5136
 
      created objects. (Robert Collins, John Arbash Meinel)
5137
 
 
5138
 
bzr 0.11  2006-10-02
5139
 
--------------------
5140
 
 
5141
 
    * Smart server transport test failures on windows fixed. (Lukáš Lalinský).
5142
 
 
5143
 
bzr 0.11rc2  2006-09-27
5144
 
-----------------------
5145
 
 
5146
 
  BUG FIXES:
5147
 
 
5148
 
    * Test suite hangs on windows fixed. (Andrew Bennets, Alexander Belchenko).
5149
 
    
5150
 
    * Commit performance regression fixed. (Aaron Bentley, Robert Collins, John
5151
 
      Arbash Meinel).
5152
 
 
5153
 
bzr 0.11rc1  2006-09-25
5154
 
-----------------------
5155
 
 
5156
 
  IMPROVEMENTS:
5157
 
 
5158
 
    * Knit files now wait to create their contents until the first data is
5159
 
      added. The old code used to create an empty .knit and a .kndx with just
5160
 
      the header. However, this caused a lot of extra round trips over sftp.
5161
 
      This can change the time for ``bzr push`` to create a new remote branch
5162
 
      from 160s down to 100s. This also affects ``bzr commit`` performance when
5163
 
      adding new files, ``bzr commit`` on a new kernel-like tree drops from 50s
5164
 
      down to 40s (John Arbash Meinel, #44692)
5165
 
 
5166
 
    * When an entire subtree has been deleted, commit will now report that
5167
 
      just the top of the subtree has been deleted, rather than reporting
5168
 
      all the individual items. (Robert Collins)
5169
 
 
5170
 
    * Commit performs one less XML parse. (Robert Collins)
5171
 
 
5172
 
    * ``bzr checkout`` now operates on readonly branches as well
5173
 
      as readwrite branches. This fixes bug #39542. (Robert Collins)
5174
 
 
5175
 
    * ``bzr bind`` no longer synchronises history with the master branch.
5176
 
      Binding should be followed by an update or push to synchronise the 
5177
 
      two branches. This is closely related to the fix for bug #39542.
5178
 
      (Robert Collins)
5179
 
 
5180
 
    * ``bzrlib.lazy_import.lazy_import`` function to create on-demand 
5181
 
      objects.  This allows all imports to stay at the global scope, but
5182
 
      modules will not actually be imported if they are not used.
5183
 
      (John Arbash Meinel)
5184
 
 
5185
 
    * Support ``bzr://`` and ``bzr+ssh://`` urls to work with the new RPC-based
5186
 
      transport which will be used with the upcoming high-performance smart
5187
 
      server. The new command ``bzr serve`` will invoke bzr in server mode,
5188
 
      which processes these requests. (Andrew Bennetts, Robert Collins, Martin
5189
 
      Pool)
5190
 
 
5191
 
    * New command ``bzr version-info`` which can be used to get a summary
5192
 
      of the current state of the tree. This is especially useful as part
5193
 
      of a build commands. See ``doc/version_info.txt`` for more information 
5194
 
      (John Arbash Meinel)
5195
 
 
5196
 
  BUG FIXES:
5197
 
 
5198
 
    * ``'bzr inventory [FILE...]'`` allows restricting the file list to a
5199
 
      specific set of files. (John Arbash Meinel, #3631)
5200
 
 
5201
 
    * Don't abort when annotating empty files (John Arbash Meinel, #56814)
5202
 
 
5203
 
    * Add ``Stanza.to_unicode()`` which can be passed to another Stanza
5204
 
      when nesting stanzas. Also, add ``read_stanza_unicode`` to handle when
5205
 
      reading a nested Stanza. (John Arbash Meinel)
5206
 
 
5207
 
    * Transform._set_mode() needs to stat the right file. 
5208
 
      (John Arbash Meinel, #56549)
5209
 
 
5210
 
    * Raise WeaveFormatError rather than StopIteration when trying to read
5211
 
      an empty Weave file. (John Arbash Meinel, #46871)
5212
 
 
5213
 
    * Don't access e.code for generic URLErrors, only HTTPErrors have .code.
5214
 
      (Vincent Ladeuil, #59835)
5215
 
 
5216
 
    * Handle boundary="" lines properly to allow access through a Squid proxy.
5217
 
      (John Arbash Meinel, #57723)
5218
 
 
5219
 
    * revert now removes newly-added directories (Aaron Bentley, #54172)
5220
 
 
5221
 
    * ``bzr upgrade sftp://`` shouldn't fail to upgrade v6 branches if there 
5222
 
      isn't a working tree. (David Allouche, #40679)
5223
 
 
5224
 
    * Give nicer error messages when a user supplies an invalid --revision
5225
 
      parameter. (John Arbash Meinel, #55420)
5226
 
 
5227
 
    * Handle when LANG is not recognized by python. Emit a warning, but
5228
 
      just revert to using 'ascii'. (John Arbash Meinel, #35392)
5229
 
 
5230
 
    * Don't use ``preexec_fn`` on win32, as it is not supported by subprocess.
5231
 
      (John Arbash Meinel)
5232
 
 
5233
 
    * Skip specific tests when the dependencies aren't met. This includes
5234
 
      some ``setup.py`` tests when ``python-dev`` is not available, and
5235
 
      some tests that depend on paramiko. (John Arbash Meinel, Mattheiu Moy)
5236
 
 
5237
 
    * Fallback to Paramiko properly, if no ``ssh`` executable exists on
5238
 
      the system. (Andrew Bennetts, John Arbash Meinel)
5239
 
 
5240
 
    * ``Branch.bind(other_branch)`` no longer takes a write lock on the
5241
 
      other branch, and will not push or pull between the two branches.
5242
 
      API users will need to perform a push or pull or update operation if they
5243
 
      require branch synchronisation to take place. (Robert Collins, #47344)
5244
 
 
5245
 
    * When creating a tarball or zipfile export, export unicode names as utf-8
5246
 
      paths. This may not work perfectly on all platforms, but has the best
5247
 
      chance of working in the common case. (John Arbash Meinel, #56816)
5248
 
 
5249
 
    * When committing, only files that exist in working tree or basis tree
5250
 
      may be specified (Aaron Bentley, #50793)
5251
 
 
5252
 
  PORTABILITY:
5253
 
 
5254
 
    * Fixes to run on Python 2.5 (Brian M. Carlson, Martin Pool, Marien Zwart)
5255
 
 
5256
 
  INTERNALS:
5257
 
 
5258
 
    * TestCaseInTempDir now creates a separate directory for HOME, rather
5259
 
      than having HOME set to the same location as the working directory.
5260
 
      (John Arbash Meinel)
5261
 
 
5262
 
    * ``run_bzr_subprocess()`` can take an optional ``env_changes={}`` parameter,
5263
 
      which will update os.environ inside the spawned child. It also can
5264
 
      take a ``universal_newlines=True``, which helps when checking the output
5265
 
      of the command. (John Arbash Meinel)
5266
 
 
5267
 
    * Refactor SFTP vendors to allow easier re-use when ssh is used. 
5268
 
      (Andrew Bennetts)
5269
 
 
5270
 
    * ``Transport.list_dir()`` and ``Transport.iter_files_recursive()`` should always
5271
 
      return urlescaped paths. This is now tested (there were bugs in a few
5272
 
      of the transports) (Andrew Bennetts, David Allouche, John Arbash Meinel)
5273
 
 
5274
 
    * New utility function ``symbol_versioning.deprecation_string``. Returns the
5275
 
      formatted string for a callable, deprecation format pair. (Robert Collins)
5276
 
 
5277
 
    * New TestCase helper applyDeprecated. This allows you to call a callable
5278
 
      which is deprecated without it spewing to the screen, just by supplying
5279
 
      the deprecation format string issued for it. (Robert Collins)
5280
 
 
5281
 
    * Transport.append and Transport.put have been deprecated in favor of
5282
 
      ``.append_bytes``, ``.append_file``, ``.put_bytes``, and
5283
 
      ``.put_file``. This removes the ambiguity in what type of object the
5284
 
      functions take.  ``Transport.non_atomic_put_{bytes,file}`` has also
5285
 
      been added. Which works similarly to ``Transport.append()`` except for
5286
 
      SFTP, it doesn't have a round trip when opening the file. Also, it
5287
 
      provides functionality for creating a parent directory when trying
5288
 
      to create a file, rather than raise NoSuchFile and forcing the
5289
 
      caller to repeat their request.
5290
 
      (John Arbash Meinel)
5291
 
 
5292
 
    * WorkingTree has a new api ``unversion`` which allow the unversioning of
5293
 
      entries by their file id. (Robert Collins)
5294
 
 
5295
 
    * ``WorkingTree.pending_merges`` is deprecated.  Please use the
5296
 
      ``get_parent_ids`` (introduced in 0.10) method instead. (Robert Collins)
5297
 
 
5298
 
    * WorkingTree has a new ``lock_tree_write`` method which locks the branch for
5299
 
      read rather than write. This is appropriate for actions which only need
5300
 
      the branch data for reference rather than mutation. A new decorator
5301
 
      ``needs_tree_write_lock`` is provided in the workingtree module. Like the
5302
 
      ``needs_read_lock`` and ``needs_write_lock`` decorators this allows static 
5303
 
      declaration of the locking requirements of a function to ensure that
5304
 
      a lock is taken out for casual scripts. (Robert Collins, #54107)
5305
 
 
5306
 
    * All WorkingTree methods which write to the tree, but not to the branch
5307
 
      have been converted to use ``needs_tree_write_lock`` rather than 
5308
 
      ``needs_write_lock``. Also converted is the revert, conflicts and tree
5309
 
      transform modules. This provides a modest performance improvement on 
5310
 
      metadir style trees, due to the reduce lock-acquisition, and a more
5311
 
      significant performance improvement on lightweight checkouts from 
5312
 
      remote branches, where trivial operations used to pay a significant 
5313
 
      penalty. It also provides the basis for allowing readonly checkouts.
5314
 
      (Robert Collins)
5315
 
 
5316
 
    * Special case importing the standard library 'copy' module. This shaves
5317
 
      off 40ms of startup time, while retaining compatibility. See:
5318
 
      ``bzrlib/inspect_for_copy.py`` for more details. (John Arbash Meinel)
5319
 
 
5320
 
    * WorkingTree has a new parent class MutableTree which represents the 
5321
 
      specialisations of Tree which are able to be altered. (Robert Collins)
5322
 
 
5323
 
    * New methods mkdir and ``put_file_bytes_non_atomic`` on MutableTree that
5324
 
      mutate the tree and its contents. (Robert Collins)
5325
 
 
5326
 
    * Transport behaviour at the root of the URL is now defined and tested.
5327
 
      (Andrew Bennetts, Robert Collins)
5328
 
 
5329
 
  TESTING:
5330
 
 
5331
 
    * New test helper classs MemoryTree. This is typically accessed via
5332
 
      ``self.make_branch_and_memory_tree()`` in test cases. (Robert Collins)
5333
 
      
5334
 
    * Add ``start_bzr_subprocess`` and ``stop_bzr_subprocess`` to allow test
5335
 
      code to continue running concurrently with a subprocess of bzr.
5336
 
      (Andrew Bennetts, Robert Collins)
5337
 
 
5338
 
    * Add a new method ``Transport.get_smart_client()``. This is provided to
5339
 
      allow upgrades to a richer interface than the VFS one provided by
5340
 
      Transport. (Andrew Bennetts, Martin Pool)
5341
 
 
5342
 
bzr 0.10  2006-08-29
5343
 
--------------------
5344
 
  
5345
 
  IMPROVEMENTS:
5346
 
    * 'merge' now takes --uncommitted, to apply uncommitted changes from a
5347
 
      tree.  (Aaron Bentley)
5348
 
  
5349
 
    * 'bzr add --file-ids-from' can be used to specify another path to use
5350
 
      for creating file ids, rather than generating all new ones. Internally,
5351
 
      the 'action' passed to ``smart_add_tree()`` can return ``file_ids`` that
5352
 
      will be used, rather than having bzrlib generate new ones.
5353
 
      (John Arbash Meinel, #55781)
5354
 
 
5355
 
    * ``bzr selftest --benchmark`` now allows a ``--cache-dir`` parameter.
5356
 
      This will cache some of the intermediate trees, and decrease the
5357
 
      setup time for benchmark tests. (John Arbash Meinel)
5358
 
 
5359
 
    * Inverse forms are provided for all boolean options.  For example,
5360
 
      --strict has --no-strict, --no-recurse has --recurse (Aaron Bentley)
5361
 
 
5362
 
    * Serialize out Inventories directly, rather than using ElementTree.
5363
 
      Writing out a kernel sized inventory drops from 2s down to ~350ms.
5364
 
      (Robert Collins, John Arbash Meinel)
5365
 
 
5366
 
  BUG FIXES:
5367
 
 
5368
 
    * Help diffutils 2.8.4 get along with binary tests (Marien Zwart: #57614)
5369
 
 
5370
 
    * Change LockDir so that if the lock directory doesn't exist when
5371
 
      ``lock_write()`` is called, an attempt will be made to create it.
5372
 
      (John Arbash Meinel, #56974)
5373
 
 
5374
 
    * ``bzr uncommit`` preserves pending merges. (John Arbash Meinel, #57660)
5375
 
 
5376
 
    * Active FTP transport now works as intended. (ghozzy, #56472)
5377
 
 
5378
 
    * Really fix mutter() so that it won't ever raise a UnicodeError.
5379
 
      It means it is possible for ~/.bzr.log to contain non UTF-8 characters.
5380
 
      But it is a debugging log, not a real user file.
5381
 
      (John Arbash Meinel, #56947, #53880)
5382
 
 
5383
 
    * Change Command handle to allow Unicode command and options.
5384
 
      At present we cannot register Unicode command names, so we will get
5385
 
      BzrCommandError('unknown command'), or BzrCommandError('unknown option')
5386
 
      But that is better than a UnicodeError + a traceback.
5387
 
      (John Arbash Meinel, #57123)
5388
 
 
5389
 
    * Handle TZ=UTC properly when reading/writing revisions.
5390
 
      (John Arbash Meinel, #55783, #56290)
5391
 
 
5392
 
    * Use ``GPG_TTY`` to allow gpg --cl to work with gpg-agent in a pipeline,
5393
 
      (passing text to sign in on stdin). (John Arbash Meinel, #54468)
5394
 
 
5395
 
    * External diff does the right thing for binaries even in foreign 
5396
 
      languages. (John Arbash Meinel, #56307)
5397
 
 
5398
 
    * Testament handles more cases when content is unicode. Specific bug was
5399
 
      in handling of revision properties.
5400
 
      (John Arbash Meinel, Holger Krekel, #54723)
5401
 
 
5402
 
    * The bzr selftest was failing on installed versions due to a bug in a new
5403
 
      test helper. (John Arbash Meinel, Robert Collins, #58057)
5404
 
 
5405
 
  INTERNALS:
5406
 
 
5407
 
    * ``bzrlib.cache_utf8`` contains ``encode()`` and ``decode()`` functions
5408
 
      which can be used to cache the conversion between utf8 and Unicode.
5409
 
      Especially helpful for some of the knit annotation code, which has to
5410
 
      convert revision ids to utf8 to annotate lines in storage.
5411
 
      (John Arbash Meinel)
5412
 
 
5413
 
    * ``setup.py`` now searches the filesystem to find all packages which
5414
 
      need to be installed. This should help make the life of packagers
5415
 
      easier. (John Arbash Meinel)
5416
 
 
5417
 
bzr 0.9.0  2006-08-11
5418
 
---------------------
5419
 
 
5420
 
  SURPRISES:
5421
 
 
5422
 
   * The hard-coded built-in ignore rules have been removed. There are
5423
 
     now two rulesets which are enforced. A user global one in 
5424
 
     ``~/.bazaar/ignore`` which will apply to every tree, and the tree
5425
 
     specific one '.bzrignore'.
5426
 
     ``~/.bazaar/ignore`` will be created if it does not exist, but with
5427
 
     a more conservative list than the old default.
5428
 
     This fixes bugs with default rules being enforced no matter what. 
5429
 
     The old list of ignore rules from bzr is available by
5430
 
     running 'bzr ignore --old-default-rules'.
5431
 
     (Robert Collins, Martin Pool, John Arbash Meinel)
5432
 
 
5433
 
   * 'branches.conf' has been changed to 'locations.conf', since it can apply
5434
 
     to more locations than just branch locations.
5435
 
     (Aaron Bentley)
5436
 
   
5437
 
  IMPROVEMENTS:
5438
 
 
5439
 
   * The revision specifier "revno:" is extended to accept the syntax
5440
 
     revno:N:branch. For example,
5441
 
     revno:42:http://bazaar-vcs.org/bzr/bzr.dev/ means revision 42 in
5442
 
     bzr.dev.  (Matthieu Moy)
5443
 
 
5444
 
   * Tests updates to ensure proper URL handling, UNICODE support, and
5445
 
     proper printing when the user's terminal encoding cannot display 
5446
 
     the path of a file that has been versioned.
5447
 
     ``bzr branch`` can take a target URL rather than only a local directory.
5448
 
     ``Branch.get_parent()/set_parent()`` now save a relative path if possible,
5449
 
     and normalize the parent based on root, allowing access across
5450
 
     different transports. (John Arbash Meinel, Wouter van Heyst, Martin Pool)
5451
 
     (Malone #48906, #42699, #40675, #5281, #3980, #36363, #43689,
5452
 
     #42517, #42514)
5453
 
 
5454
 
   * On Unix, detect terminal width using an ioctl not just $COLUMNS.
5455
 
     Use terminal width for single-line logs from ``bzr log --line`` and
5456
 
     pending-merge display.  (Robert Widhopf-Fenk, Gustavo Niemeyer)
5457
 
     (Malone #3507)
5458
 
 
5459
 
   * On Windows, detect terminal width using GetConsoleScreenBufferInfo.
5460
 
     (Alexander Belchenko)
5461
 
 
5462
 
   * Speedup improvement for 'date:'-revision search. (Guillaume Pinot).
5463
 
 
5464
 
   * Show the correct number of revisions pushed when pushing a new branch.
5465
 
     (Robert Collins).
5466
 
 
5467
 
   * 'bzr selftest' now shows a progress bar with the number of tests, and 
5468
 
     progress made. 'make check' shows tests in -v mode, to be more useful
5469
 
     for the PQM status window. (Robert Collins).
5470
 
     When using a progress bar, failed tests are printed out, rather than
5471
 
     being overwritten by the progress bar until the suite finishes.
5472
 
     (John Arbash Meinel)
5473
 
 
5474
 
   * 'bzr selftest --benchmark' will run a new benchmarking selftest.
5475
 
     'bzr selftest --benchmark --lsprof-timed' will use lsprofile to generate
5476
 
     profile data for the individual profiled calls, allowing for fine
5477
 
     grained analysis of performance.
5478
 
     (Robert Collins, Martin Pool).
5479
 
 
5480
 
   * 'bzr commit' shows a progress bar. This is useful for commits over sftp
5481
 
     where commit can take an appreciable time. (Robert Collins)
5482
 
 
5483
 
   * 'bzr add' is now less verbose in telling you what ignore globs were
5484
 
     matched by files being ignored. Instead it just tells you how many 
5485
 
     were ignored (because you might reasonably be expecting none to be
5486
 
     ignored). 'bzr add -v' is unchanged and will report every ignored
5487
 
     file. (Robert Collins).
5488
 
 
5489
 
   * ftp now has a test server if medusa is installed. As part of testing,
5490
 
     ftp support has been improved, including support for supplying a
5491
 
     non-standard port. (John Arbash Meinel).
5492
 
 
5493
 
   * 'bzr log --line' shows the revision number, and uses only the
5494
 
     first line of the log message (#5162, Alexander Belchenko;
5495
 
     Matthieu Moy)
5496
 
 
5497
 
   * 'bzr status' has had the --all option removed. The 'bzr ls' command
5498
 
     should be used to retrieve all versioned files. (Robert Collins)
5499
 
 
5500
 
   * 'bzr bundle OTHER/BRANCH' will create a bundle which can be sent
5501
 
     over email, and applied on the other end, while maintaining ancestry.
5502
 
     This bundle can be applied with either 'bzr merge' or 'bzr pull',
5503
 
     the same way you would apply another branch.
5504
 
     (John Arbash Meinel, Aaron Bentley)
5505
 
  
5506
 
   * 'bzr whoami' can now be used to set your identity from the command line,
5507
 
     for a branch or globally.  (Robey Pointer)
5508
 
 
5509
 
   * 'bzr checkout' now aliased to 'bzr co', and 'bzr annotate' to 'bzr ann'.
5510
 
     (Michael Ellerman)
5511
 
 
5512
 
   * 'bzr revert DIRECTORY' now reverts the contents of the directory as well.
5513
 
     (Aaron Bentley)
5514
 
 
5515
 
   * 'bzr get sftp://foo' gives a better error when paramiko is not present.
5516
 
     Also updates things like 'http+pycurl://' if pycurl is not present.
5517
 
     (John Arbash Meinel) (Malone #47821, #52204)
5518
 
 
5519
 
   * New env variable ``BZR_PROGRESS_BAR``, sets the default progress bar type.
5520
 
     Can be set to 'none' or 'dummy' to disable the progress bar, 'dots' or 
5521
 
     'tty' to create the respective type. (John Arbash Meinel, #42197, #51107)
5522
 
 
5523
 
   * Improve the help text for 'bzr diff' to explain what various options do.
5524
 
     (John Arbash Meinel, #6391)
5525
 
 
5526
 
   * 'bzr uncommit -r 10' now uncommits revisions 11.. rather than uncommitting
5527
 
     revision 10. This makes -r10 more in line with what other commands do.
5528
 
     'bzr uncommit' also now saves the pending merges of the revisions that
5529
 
     were removed. So it is safe to uncommit after a merge, fix something,
5530
 
     and commit again. (John Arbash Meinel, #32526, #31426)
5531
 
 
5532
 
   * 'bzr init' now also works on remote locations.
5533
 
     (Wouter van Heyst, #48904)
5534
 
 
5535
 
   * HTTP support has been updated. When using pycurl we now support 
5536
 
     connection keep-alive, which reduces dns requests and round trips.
5537
 
     And for both urllib and pycurl we support multi-range requests, 
5538
 
     which decreases the number of round-trips. Performance results for
5539
 
     ``bzr branch http://bazaar-vcs.org/bzr/bzr.dev/`` indicate
5540
 
     http branching is now 2-3x faster, and ``bzr pull`` in an existing 
5541
 
     branch is as much as 4x faster.
5542
 
     (Michael Ellerman, Johan Rydberg, John Arbash Meinel, #46768)
5543
 
 
5544
 
   * Performance improvements for sftp. Branching and pulling are now up to
5545
 
     2x faster. Utilize paramiko.readv() support for async requests if it
5546
 
     is available (paramiko > 1.6) (John Arbash Meinel)
5547
 
 
5548
 
  BUG FIXES:
5549
 
 
5550
 
    * Fix shadowed definition of TestLocationConfig that caused some 
5551
 
      tests not to run.
5552
 
      (Erik Bågfors, Michael Ellerman, Martin Pool, #32587)
5553
 
 
5554
 
    * Fix unnecessary requirement of sign-my-commits that it be run from
5555
 
      a working directory.  (Martin Pool, Robert Collins)
5556
 
 
5557
 
    * 'bzr push location' will only remember the push location if it succeeds
5558
 
      in connecting to the remote location. (John Arbash Meinel, #49742)
5559
 
 
5560
 
    * 'bzr revert' no longer toggles the executable bit on win32
5561
 
      (John Arbash Meinel, #45010)
5562
 
 
5563
 
    * Handle broken pipe under win32 correctly. (John Arbash Meinel)
5564
 
    
5565
 
    * sftp tests now work correctly on win32 if you have a newer paramiko
5566
 
      (John Arbash Meinel)
5567
 
 
5568
 
    * Cleanup win32 test suite, and general cleanup of places where
5569
 
      file handles were being held open. (John Arbash Meinel)
5570
 
 
5571
 
    * When specifying filenames for 'diff -r x..y', the name of the file in the
5572
 
      working directory can be used, even if its name is different in both x
5573
 
      and y.
5574
 
 
5575
 
    * File-ids containing single- or double-quotes are handled correctly by
5576
 
      push. (Aaron Bentley, #52227)
5577
 
 
5578
 
    * Normalize unicode filenames to ensure cross-platform consistency.
5579
 
      (John Arbash Meinel, #43689)
5580
 
 
5581
 
    * The argument parser can now handle '-' as an argument. Currently
5582
 
      no code interprets it specially (it is mostly handled as a file named 
5583
 
      '-'). But plugins, and future operations can use it.
5584
 
      (John Arbash meinel, #50984)
5585
 
 
5586
 
    * Bundles can properly read binary files with a plain '\r' in them.
5587
 
      (John Arbash Meinel, #51927)
5588
 
 
5589
 
    * Tuning ``iter_entries()`` to be more efficient (John Arbash Meinel, #5444)
5590
 
 
5591
 
    * Lots of win32 fixes (the test suite passes again).
5592
 
      (John Arbash Meinel, #50155)
5593
 
 
5594
 
    * Handle openbsd returning None for sys.getfilesystemencoding() (#41183) 
5595
 
 
5596
 
    * Support ftp APPE (append) to allow Knits to be used over ftp (#42592)
5597
 
 
5598
 
    * Removals are only committed if they match the filespec (or if there is
5599
 
      no filespec).  (#46635, Aaron Bentley)
5600
 
 
5601
 
    * smart-add recurses through all supplied directories 
5602
 
      (John Arbash Meinel, #52578)
5603
 
 
5604
 
    * Make the bundle reader extra lines before and after the bundle text.
5605
 
      This allows you to parse an email with the bundle inline.
5606
 
      (John Arbash Meinel, #49182)
5607
 
 
5608
 
    * Change the file id generator to squash a little bit more. Helps when
5609
 
      working with long filenames on windows. (Also helps for unicode filenames
5610
 
      not generating hidden files). (John Arbash Meinel, #43801)
5611
 
 
5612
 
    * Restore terminal mode on C-c while reading sftp password.  (#48923, 
5613
 
      Nicholas Allen, Martin Pool)
5614
 
 
5615
 
    * Timestamps are rounded to 1ms, and revision entries can be recreated
5616
 
      exactly. (John Arbash Meinel, Jamie Wilkinson, #40693)
5617
 
 
5618
 
    * Branch.base has changed to a URL, but ~/.bazaar/locations.conf should
5619
 
      use local paths, since it is user visible (John Arbash Meinel, #53653)
5620
 
 
5621
 
    * ``bzr status foo`` when foo was unversioned used to cause a full delta
5622
 
      to be generated (John Arbash Meinel, #53638)
5623
 
 
5624
 
    * When reading revision properties, an empty value should be considered
5625
 
      the empty string, not None (John Arbash Meinel, #47782)
5626
 
 
5627
 
    * ``bzr diff --diff-options`` can now handle binary files being changed.
5628
 
      Also, the output is consistent when --diff-options is not supplied.
5629
 
      (John Arbash Meinel, #54651, #52930)
5630
 
 
5631
 
    * Use the right suffixes for loading plugins (John Arbash Meinel, #51810)
5632
 
 
5633
 
    * Fix ``Branch.get_parent()`` to handle the case when the parent is not 
5634
 
      accessible (John Arbash Meinel, #52976)
5635
 
 
5636
 
  INTERNALS:
5637
 
 
5638
 
    * Combine the ignore rules into a single regex rather than looping over
5639
 
      them to reduce the threshold where  N^2 behaviour occurs in operations
5640
 
      like status. (Jan Hudec, Robert Collins).
5641
 
 
5642
 
    * Appending to ``bzrlib.DEFAULT_IGNORE`` is now deprecated. Instead, use
5643
 
      one of the add functions in bzrlib.ignores. (John Arbash Meinel)
5644
 
 
5645
 
    * 'bzr push' should only push the ancestry of the current revision, not
5646
 
      all of the history in the repository. This is especially important for
5647
 
      shared repositories. (John Arbash Meinel)
5648
 
 
5649
 
    * ``bzrlib.delta.compare_trees`` now iterates in alphabetically sorted order,
5650
 
      rather than randomly walking the inventories. (John Arbash Meinel)
5651
 
 
5652
 
    * Doctests are now run in temporary directories which are cleaned up when
5653
 
      they finish, rather than using special ScratchDir/ScratchBranch objects.
5654
 
      (Martin Pool)
5655
 
 
5656
 
    * Split ``check`` into separate methods on the branch and on the repository,
5657
 
      so that it can be specialized in ways that are useful or efficient for
5658
 
      different formats.  (Martin Pool, Robert Collins)
5659
 
 
5660
 
    * Deprecate ``Repository.all_revision_ids``; most methods don't really need
5661
 
      the global revision graph but only that part leading up to a particular
5662
 
      revision.  (Martin Pool, Robert Collins)
5663
 
 
5664
 
    * Add a BzrDirFormat ``control_formats`` list which allows for control formats
5665
 
      that do not use '.bzr' to store their data - i.e. '.svn', '.hg' etc.
5666
 
      (Robert Collins, Jelmer Vernooij).
5667
 
 
5668
 
    * ``bzrlib.diff.external_diff`` can be redirected to any file-like object.
5669
 
      Uses subprocess instead of spawnvp.
5670
 
      (James Henstridge, John Arbash Meinel, #4047, #48914)
5671
 
 
5672
 
    * New command line option '--profile-imports', which will install a custom
5673
 
      importer to log time to import modules and regex compilation time to 
5674
 
      sys.stderr (John Arbash Meinel)
5675
 
 
5676
 
    * 'EmptyTree' is now deprecated, please use ``repository.revision_tree(None)``
5677
 
      instead. (Robert Collins)
5678
 
 
5679
 
    * "RevisionTree" is now in bzrlib/revisiontree.py. (Robert Collins)
5680
 
 
5681
 
bzr 0.8.2  2006-05-17
5682
 
---------------------
5683
 
  
5684
 
  BUG FIXES:
5685
 
   
5686
 
    * setup.py failed to install launchpad plugin.  (Martin Pool)
5687
 
 
5688
 
bzr 0.8.1  2006-05-16
5689
 
---------------------
5690
 
 
5691
 
  BUG FIXES:
5692
 
 
5693
 
    * Fix failure to commit a merge in a checkout.  (Martin Pool, 
5694
 
      Robert Collins, Erik Bågfors, #43959)
5695
 
 
5696
 
    * Nicer messages from 'commit' in the case of renames, and correct
5697
 
      messages when a merge has occured. (Robert Collins, Martin Pool)
5698
 
 
5699
 
    * Separate functionality from assert statements as they are skipped in
5700
 
      optimized mode of python. Add the same check to pending merges.
5701
 
      (Olaf Conradi, #44443)
5702
 
 
5703
 
  CHANGES:
5704
 
 
5705
 
    * Do not show the None revision in output of bzr ancestry. (Olaf Conradi)
5706
 
 
5707
 
    * Add info on standalone branches without a working tree.
5708
 
      (Olaf Conradi, #44155)
5709
 
 
5710
 
    * Fix bug in knits when raising InvalidRevisionId. (Olaf Conradi, #44284)
5711
 
 
5712
 
  CHANGES:
5713
 
 
5714
 
    * Make editor invocation comply with Debian Policy. First check
5715
 
      environment variables VISUAL and EDITOR, then try editor from
5716
 
      alternatives system. If that all fails, fall back to the pre-defined
5717
 
      list of editors. (Olaf Conradi, #42904)
5718
 
 
5719
 
  NEW FEATURES:
5720
 
 
5721
 
    * New 'register-branch' command registers a public branch into 
5722
 
      Launchpad.net, where it can be associated with bugs, etc.
5723
 
      (Martin Pool, Bjorn Tillenius, Robert Collins)
5724
 
 
5725
 
  INTERNALS:
5726
 
 
5727
 
    * New public api in InventoryEntry - ``describe_change(old, new)`` which
5728
 
      provides a human description of the changes between two old and
5729
 
      new. (Robert Collins, Martin Pool)
5730
 
 
5731
 
  TESTING:
5732
 
 
5733
 
    * Fix test case for bzr info in upgrading a standalone branch to metadir,
5734
 
      uses bzrlib api now. (Olaf Conradi)
5735
 
 
5736
 
bzr 0.8  2006-05-08
5737
 
-------------------
5738
 
 
5739
 
  NOTES WHEN UPGRADING:
5740
 
 
5741
 
    Release 0.8 of bzr introduces a new format for history storage, called
5742
 
    'knit', as an evolution of to the 'weave' format used in 0.7.  Local 
5743
 
    and remote operations are faster using knits than weaves.  Several
5744
 
    operations including 'init', 'init-repo', and 'upgrade' take a 
5745
 
    --format option that controls this.  Branching from an existing branch
5746
 
    will keep the same format.
5747
 
 
5748
 
    It is possible to merge, pull and push between branches of different
5749
 
    formats but this is slower than moving data between homogenous
5750
 
    branches.  It is therefore recommended (but not required) that you
5751
 
    upgrade all branches for a project at the same time.  Information on
5752
 
    formats is shown by 'bzr info'.
5753
 
 
5754
 
    bzr 0.8 now allows creation of 'repositories', which hold the history 
5755
 
    of files and revisions for several branches.  Previously bzr kept all
5756
 
    the history for a branch within the .bzr directory at the root of the
5757
 
    branch, and this is still the default.  To create a repository, use
5758
 
    the new 'bzr init-repo' command.  Branches exist as directories under
5759
 
    the repository and contain just a small amount of information
5760
 
    indicating the current revision of the branch.
5761
 
 
5762
 
    bzr 0.8 also supports 'checkouts', which are similar to in cvs and
5763
 
    subversion.  Checkouts are associated with a branch (optionally in a
5764
 
    repository), which contains all the historical information.  The
5765
 
    result is that a checkout can be deleted without losing any
5766
 
    already-committed revisions.  A new 'update' command is also available. 
5767
 
 
5768
 
    Repositories and checkouts are not supported with the 0.7 storage
5769
 
    format.  To use them you must upgrad to either knits, or to the
5770
 
    'metaweave' format, which uses weaves but changes the .bzr directory
5771
 
    arrangement.
5772
 
    
5773
 
 
5774
 
  IMPROVEMENTS:
5775
 
 
5776
 
    * Sftp paths can now be relative, or local, according to the lftp
5777
 
      convention. Paths now take the form::
5778
 
 
5779
 
          sftp://user:pass@host:port/~/relative/path
5780
 
          or
5781
 
          sftp://user:pass@host:port/absolute/path
5782
 
 
5783
 
    * The FTP transport now tries to reconnect after a temporary
5784
 
      failure. ftp put is made atomic. (Matthieu Moy)
5785
 
 
5786
 
    * The FTP transport now maintains a pool of connections, and
5787
 
      reuses them to avoid multiple connections to the same host (like
5788
 
      sftp did). (Daniel Silverstone)
5789
 
 
5790
 
    * The ``bzr_man.py`` file has been removed. To create the man page now,
5791
 
      use ``./generate_docs.py man``. The new program can also create other files.
5792
 
      Run ``python generate_docs.py --help`` for usage information.
5793
 
      (Hans Ulrich Niedermann & James Blackwell).
5794
 
 
5795
 
    * Man Page now gives full help (James Blackwell).
5796
 
      Help also updated to reflect user config now being stored in .bazaar
5797
 
      (Hans Ulrich Niedermann)
5798
 
 
5799
 
    * It's now possible to set aliases in bazaar.conf (Erik Bågfors)
5800
 
 
5801
 
    * Pull now accepts a --revision argument (Erik Bågfors)
5802
 
 
5803
 
    * ``bzr re-sign`` now allows multiple revisions to be supplied on the command
5804
 
      line. You can now use the following command to sign all of your old
5805
 
      commits::
5806
 
 
5807
 
        find .bzr/revision-store// -name my@email-* \
5808
 
          | sed 's/.*\/\/..\///' \
5809
 
          | xargs bzr re-sign
5810
 
 
5811
 
    * Upgrade can now upgrade over the network. (Robert Collins)
5812
 
 
5813
 
    * Two new commands 'bzr checkout' and 'bzr update' allow for CVS/SVN-alike
5814
 
      behaviour.  By default they will cache history in the checkout, but
5815
 
      with --lightweight almost all data is kept in the master branch.
5816
 
      (Robert Collins)
5817
 
 
5818
 
    * 'revert' unversions newly-versioned files, instead of deleting them.
5819
 
 
5820
 
    * 'merge' is more robust.  Conflict messages have changed.
5821
 
 
5822
 
    * 'merge' and 'revert' no longer clobber existing files that end in '~' or
5823
 
      '.moved'.
5824
 
 
5825
 
    * Default log format can be set in configuration and plugins can register
5826
 
      their own formatters. (Erik Bågfors)
5827
 
 
5828
 
    * New 'reconcile' command will check branch consistency and repair indexes
5829
 
      that can become out of sync in pre 0.8 formats. (Robert Collins,
5830
 
      Daniel Silverstone)
5831
 
 
5832
 
    * New 'bzr init --format' and 'bzr upgrade --format' option to control 
5833
 
      what storage format is created or produced.  (Robert Collins, 
5834
 
      Martin Pool)
5835
 
 
5836
 
    * Add parent location to 'bzr info', if there is one.  (Olaf Conradi)
5837
 
 
5838
 
    * New developer commands 'weave-list' and 'weave-join'.  (Martin Pool)
5839
 
 
5840
 
    * New 'init-repository' command, plus support for repositories in 'init'
5841
 
      and 'branch' (Aaron Bentley, Erik Bågfors, Robert Collins)
5842
 
 
5843
 
    * Improve output of 'info' command. Show all relevant locations related to
5844
 
      working tree, branch and repository. Use kibibytes for binary quantities.
5845
 
      Fix off-by-one error in missing revisions of working tree.  Make 'info'
5846
 
      work on branches, repositories and remote locations.  Show locations
5847
 
      relative to the shared repository, if applicable.  Show locking status
5848
 
      of locations.  (Olaf Conradi)
5849
 
 
5850
 
    * Diff and merge now safely handle binary files. (Aaron Bentley)
5851
 
 
5852
 
    * 'pull' and 'push' now normalise the revision history, so that any two
5853
 
      branches with the same tip revision will have the same output from 'log'.
5854
 
      (Robert Collins)
5855
 
 
5856
 
    * 'merge' accepts --remember option to store parent location, like 'push'
5857
 
      and 'pull'. (Olaf Conradi)
5858
 
 
5859
 
    * bzr status and diff when files given as arguments do not exist
5860
 
      in the relevant trees.  (Martin Pool, #3619)
5861
 
 
5862
 
    * Add '.hg' to the default ignore list.  (Martin Pool)
5863
 
 
5864
 
    * 'knit' is now the default disk format. This improves disk performance and
5865
 
      utilization, increases incremental pull performance, robustness with SFTP
5866
 
      and allows checkouts over SFTP to perform acceptably. 
5867
 
      The initial Knit code was contributed by Johan Rydberg based on a
5868
 
      specification by Martin Pool.
5869
 
      (Robert Collins, Aaron Bentley, Johan Rydberg, Martin Pool).
5870
 
 
5871
 
    * New tool to generate all-in-one html version of the manual.  (Alexander
5872
 
      Belchenko)
5873
 
 
5874
 
    * Hitting CTRL-C while doing an SFTP push will no longer cause stale locks
5875
 
      to be left in the SFTP repository. (Robert Collins, Martin Pool).
5876
 
 
5877
 
    * New option 'diff --prefix' to control how files are named in diff
5878
 
      output, with shortcuts '-p0' and '-p1' corresponding to the options for 
5879
 
      GNU patch.  (Alexander Belchenko, Goffredo Baroncelli, Martin Pool)
5880
 
 
5881
 
    * Add --revision option to 'annotate' command.  (Olaf Conradi)
5882
 
 
5883
 
    * If bzr shows an unexpected revision-history after pulling (perhaps due
5884
 
      to a reweave) it can now be corrected by 'bzr reconcile'.
5885
 
      (Robert Collins)
5886
 
 
5887
 
  CHANGES:
5888
 
 
5889
 
    * Commit is now verbose by default, and shows changed filenames and the 
5890
 
      new revision number.  (Robert Collins, Martin Pool)
5891
 
 
5892
 
    * Unify 'mv', 'move', 'rename'.  (Matthew Fuller, #5379)
5893
 
 
5894
 
    * 'bzr -h' shows help.  (Martin Pool, Ian Bicking, #35940)
5895
 
 
5896
 
    * Make 'pull' and 'push' remember location on failure using --remember.
5897
 
      (Olaf Conradi)
5898
 
 
5899
 
    * For compatibility, make old format for using weaves inside metadir
5900
 
      available as 'metaweave' format.  Rename format 'metadir' to 'default'.
5901
 
      Clean up help for option --format in commands 'init', 'init-repo' and
5902
 
      'upgrade'.  (Olaf Conradi)
5903
 
 
5904
 
  INTERNALS:
5905
 
  
5906
 
    * The internal storage of history, and logical branch identity have now
5907
 
      been split into Branch, and Repository. The common locking and file 
5908
 
      management routines are now in bzrlib.lockablefiles. 
5909
 
      (Aaron Bentley, Robert Collins, Martin Pool)
5910
 
 
5911
 
    * Transports can now raise DependencyNotPresent if they need a library
5912
 
      which is not installed, and then another implementation will be 
5913
 
      tried.  (Martin Pool)
5914
 
 
5915
 
    * Remove obsolete (and no-op) `decode` parameter to `Transport.get`.  
5916
 
      (Martin Pool)
5917
 
 
5918
 
    * Using Tree Transform for merge, revert, tree-building
5919
 
 
5920
 
    * WorkingTree.create, Branch.create, ``WorkingTree.create_standalone``,
5921
 
      Branch.initialize are now deprecated. Please see ``BzrDir.create_*`` for
5922
 
      replacement API's. (Robert Collins)
5923
 
 
5924
 
    * New BzrDir class represents the .bzr control directory and manages
5925
 
      formatting issues. (Robert Collins)
5926
 
 
5927
 
    * New repository.InterRepository class encapsulates Repository to 
5928
 
      Repository actions and allows for clean selection of optimised code
5929
 
      paths. (Robert Collins)
5930
 
 
5931
 
    * ``bzrlib.fetch.fetch`` and ``bzrlib.fetch.greedy_fetch`` are now
5932
 
      deprecated, please use ``branch.fetch`` or ``repository.fetch``
5933
 
      depending on your needs. (Robert Collins)
5934
 
 
5935
 
    * deprecated methods now have a ``is_deprecated`` flag on them that can
5936
 
      be checked, if you need to determine whether a given callable is 
5937
 
      deprecated at runtime. (Robert Collins)
5938
 
 
5939
 
    * Progress bars are now nested - see
5940
 
      ``bzrlib.ui.ui_factory.nested_progress_bar``.
5941
 
      (Robert Collins, Robey Pointer)
5942
 
 
5943
 
    * New API call ``get_format_description()`` for each type of format.
5944
 
      (Olaf Conradi)
5945
 
 
5946
 
    * Changed ``branch.set_parent()`` to accept None to remove parent.
5947
 
      (Olaf Conradi)
5948
 
 
5949
 
    * Deprecated BzrError AmbiguousBase.  (Olaf Conradi)
5950
 
 
5951
 
    * WorkingTree.branch is now a read only property.  (Robert Collins)
5952
 
 
5953
 
    * bzrlib.ui.text.TextUIFactory now accepts a ``bar_type`` parameter which
5954
 
      can be None or a factory that will create a progress bar. This is
5955
 
      useful for testing or for overriding the bzrlib.progress heuristic.
5956
 
      (Robert Collins)
5957
 
 
5958
 
    * New API method ``get_physical_lock_status()`` to query locks present on a
5959
 
      transport.  (Olaf Conradi)
5960
 
 
5961
 
    * Repository.reconcile now takes a thorough keyword parameter to allow
5962
 
      requesting an indepth reconciliation, rather than just a data-loss 
5963
 
      check. (Robert Collins)
5964
 
 
5965
 
    * ``bzrlib.ui.ui_factory protocol`` now supports ``get_boolean`` to prompt
5966
 
      the user for yes/no style input. (Robert Collins)
5967
 
 
5968
 
  TESTING:
5969
 
 
5970
 
    * SFTP tests now shortcut the SSH negotiation, reducing test overhead
5971
 
      for testing SFTP protocol support. (Robey Pointer)
5972
 
 
5973
 
    * Branch formats are now tested once per implementation (see ``bzrlib.
5974
 
      tests.branch_implementations``. This is analagous to the transport
5975
 
      interface tests, and has been followed up with working tree,
5976
 
      repository and BzrDir tests. (Robert Collins)
5977
 
 
5978
 
    * New test base class TestCaseWithTransport provides a transport aware
5979
 
      test environment, useful for testing any transport-interface using
5980
 
      code. The test suite option --transport controls the transport used
5981
 
      by this class (when its not being used as part of implementation
5982
 
      contract testing). (Robert Collins)
5983
 
 
5984
 
    * Close logging handler on disabling the test log. This will remove the
5985
 
      handler from the internal list inside python's logging module,
5986
 
      preventing shutdown from closing it twice.  (Olaf Conradi)
5987
 
 
5988
 
    * Move test case for uncommit to blackbox tests.  (Olaf Conradi)
5989
 
 
5990
 
    * ``run_bzr`` and ``run_bzr_captured`` now accept a 'stdin="foo"'
5991
 
      parameter which will provide String("foo") to the command as its stdin.
5992
 
 
5993
 
bzr 0.7 2006-01-09
5994
 
------------------
5995
 
 
5996
 
  CHANGES:
5997
 
 
5998
 
    * .bzrignore is excluded from exports, on the grounds that it's a bzr 
5999
 
      internal-use file and may not be wanted.  (Jamie Wilkinson)
6000
 
 
6001
 
    * The "bzr directories" command were removed in favor of the new
6002
 
      --kind option to the "bzr inventory" command.  To list all 
6003
 
      versioned directories, now use "bzr inventory --kind directory".  
6004
 
      (Johan Rydberg)
6005
 
 
6006
 
    * Under Windows configuration directory is now ``%APPDATA%\bazaar\2.0``
6007
 
      by default. (John Arbash Meinel)
6008
 
 
6009
 
    * The parent of Bzr configuration directory can be set by ``BZR_HOME``
6010
 
      environment variable. Now the path for it is searched in ``BZR_HOME``,
6011
 
      then in HOME. Under Windows the order is: ``BZR_HOME``, ``APPDATA``
6012
 
      (usually points to ``C:\Documents and Settings\User Name\Application Data``),
6013
 
      ``HOME``. (John Arbash Meinel)
6014
 
 
6015
 
    * Plugins with the same name in different directories in the bzr plugin
6016
 
      path are no longer loaded: only the first successfully loaded one is
6017
 
      used. (Robert Collins)
6018
 
 
6019
 
    * Use systems' external ssh command to open connections if possible.  
6020
 
      This gives better integration with user settings such as ProxyCommand.
6021
 
      (James Henstridge)
6022
 
 
6023
 
    * Permissions on files underneath .bzr/ are inherited from the .bzr 
6024
 
      directory. So for a shared repository, simply doing 'chmod -R g+w .bzr/'
6025
 
      will mean that future file will be created with group write permissions.
6026
 
 
6027
 
    * configure.in and config.guess are no longer in the builtin default 
6028
 
      ignore list.
6029
 
 
6030
 
    * '.sw[nop]' pattern ignored, to ignore vim swap files for nameless
6031
 
      files.  (John Arbash Meinel, Martin Pool)
6032
 
 
6033
 
  IMPROVEMENTS:
6034
 
 
6035
 
    * "bzr INIT dir" now initializes the specified directory, and creates 
6036
 
      it if it does not exist.  (John Arbash Meinel)
6037
 
 
6038
 
    * New remerge command (Aaron Bentley)
6039
 
 
6040
 
    * Better zsh completion script.  (Steve Borho)
6041
 
 
6042
 
    * 'bzr diff' now returns 1 when there are changes in the working 
6043
 
      tree. (Robert Collins)
6044
 
 
6045
 
    * 'bzr push' now exists and can push changes to a remote location. 
6046
 
      This uses the transport infrastructure, and can store the remote
6047
 
      location in the ~/.bazaar/branches.conf configuration file.
6048
 
      (Robert Collins)
6049
 
 
6050
 
    * Test directories are only kept if the test fails and the user requests
6051
 
      that they be kept.
6052
 
 
6053
 
    * Tweaks to short log printing
6054
 
 
6055
 
    * Added branch nicks, new nick command, printing them in log output. 
6056
 
      (Aaron Bentley)
6057
 
 
6058
 
    * If ``$BZR_PDB`` is set, pop into the debugger when an uncaught exception 
6059
 
      occurs.  (Martin Pool)
6060
 
 
6061
 
    * Accept 'bzr resolved' (an alias for 'bzr resolve'), as this is
6062
 
      the same as Subversion.  (Martin Pool)
6063
 
 
6064
 
    * New ftp transport support (on ftplib), for ftp:// and aftp:// 
6065
 
      URLs.  (Daniel Silverstone)
6066
 
 
6067
 
    * Commit editor temporary files now start with ``bzr_log.``, to allow 
6068
 
      text editors to match the file name and set up appropriate modes or 
6069
 
      settings.  (Magnus Therning)
6070
 
 
6071
 
    * Improved performance when integrating changes from a remote weave.  
6072
 
      (Goffredo Baroncelli)
6073
 
 
6074
 
    * Sftp will attempt to cache the connection, so it is more likely that
6075
 
      a connection will be reused, rather than requiring multiple password
6076
 
      requests.
6077
 
 
6078
 
    * bzr revno now takes an optional argument indicating the branch whose
6079
 
      revno should be printed.  (Michael Ellerman)
6080
 
 
6081
 
    * bzr cat defaults to printing the last version of the file.  
6082
 
      (Matthieu Moy, #3632)
6083
 
 
6084
 
    * New global option 'bzr --lsprof COMMAND' runs bzr under the lsprof 
6085
 
      profiler.  (Denys Duchier)
6086
 
 
6087
 
    * Faster commits by reading only the headers of affected weave files. 
6088
 
      (Denys Duchier)
6089
 
 
6090
 
    * 'bzr add' now takes a --dry-run parameter which shows you what would be
6091
 
      added, but doesn't actually add anything. (Michael Ellerman)
6092
 
 
6093
 
    * 'bzr add' now lists how many files were ignored per glob.  add --verbose
6094
 
      lists the specific files.  (Aaron Bentley)
6095
 
 
6096
 
    * 'bzr missing' now supports displaying changes in diverged trees and can
6097
 
      be limited to show what either end of the comparison is missing.
6098
 
      (Aaron Bently, with a little prompting from Daniel Silverstone)
6099
 
 
6100
 
  BUG FIXES:
6101
 
 
6102
 
    * SFTP can walk up to the root path without index errors. (Robert Collins)
6103
 
 
6104
 
    * Fix bugs in running bzr with 'python -O'.  (Martin Pool)
6105
 
 
6106
 
    * Error when run with -OO
6107
 
 
6108
 
    * Fix bug in reporting http errors that don't have an http error code.
6109
 
      (Martin Pool)
6110
 
 
6111
 
    * Handle more cases of pipe errors in display commands
6112
 
 
6113
 
    * Change status to 3 for all errors
6114
 
 
6115
 
    * Files that are added and unlinked before committing are completely
6116
 
      ignored by diff and status
6117
 
 
6118
 
    * Stores with some compressed texts and some uncompressed texts are now
6119
 
      able to be used. (John A Meinel)
6120
 
 
6121
 
    * Fix for bzr pull failing sometimes under windows
6122
 
 
6123
 
    * Fix for sftp transport under windows when using interactive auth
6124
 
 
6125
 
    * Show files which are both renamed and modified as such in 'bzr 
6126
 
      status' output.  (Daniel Silverstone, #4503)
6127
 
 
6128
 
    * Make annotate cope better with revisions committed without a valid 
6129
 
      email address.  (Marien Zwart)
6130
 
 
6131
 
    * Fix representation of tab characters in commit messages.
6132
 
      (Harald Meland)
6133
 
 
6134
 
    * List of plugin directories in ``BZR_PLUGIN_PATH`` environment variable is
6135
 
      now parsed properly under Windows. (Alexander Belchenko)
6136
 
 
6137
 
    * Show number of revisions pushed/pulled/merged. (Robey Pointer)
6138
 
 
6139
 
    * Keep a cached copy of the basis inventory to speed up operations 
6140
 
      that need to refer to it.  (Johan Rydberg, Martin Pool)
6141
 
 
6142
 
    * Fix bugs in bzr status display of non-ascii characters.
6143
 
      (Martin Pool)
6144
 
 
6145
 
    * Remove Makefile.in from default ignore list.
6146
 
      (Tollef Fog Heen, Martin Pool, #6413)
6147
 
 
6148
 
    * Fix failure in 'bzr added'.  (Nathan McCallum, Martin Pool)
6149
 
 
6150
 
  TESTING:
6151
 
 
6152
 
    * Fix selftest asking for passwords when there are no SFTP keys.  
6153
 
      (Robey Pointer, Jelmer Vernooij) 
6154
 
 
6155
 
    * Fix selftest run with 'python -O'.  (Martin Pool)
6156
 
 
6157
 
    * Fix HTTP tests under Windows. (John Arbash Meinel)
6158
 
 
6159
 
    * Make tests work even if HOME is not set (Aaron Bentley)
6160
 
 
6161
 
    * Updated ``build_tree`` to use fixed line-endings for tests which read 
6162
 
      the file cotents and compare. Make some tests use this to pass under
6163
 
      Windows. (John Arbash Meinel)
6164
 
 
6165
 
    * Skip stat and symlink tests under Windows. (Alexander Belchenko)
6166
 
 
6167
 
    * Delay in selftest/testhashcash is now issued under win32 and Cygwin.
6168
 
      (John Arbash Meinel)
6169
 
 
6170
 
    * Use terminal width to align verbose test output.  (Martin Pool)
6171
 
 
6172
 
    * Blackbox tests are maintained within the bzrlib.tests.blackbox directory.
6173
 
      If adding a new test script please add that to
6174
 
      ``bzrlib.tests.blackbox.__init__``. (Robert Collins)
6175
 
 
6176
 
    * Much better error message if one of the test suites can't be 
6177
 
      imported.  (Martin Pool)
6178
 
 
6179
 
    * Make check now runs the test suite twice - once with the default locale,
6180
 
      and once with all locales forced to C, to expose bugs. This is not 
6181
 
      trivially done within python, so for now its only triggered by running
6182
 
      Make check. Integrators and packagers who wish to check for full 
6183
 
      platform support should run 'make check' to test the source.
6184
 
      (Robert Collins)
6185
 
 
6186
 
    * Tests can now run TestSkipped if they can't execute for any reason.
6187
 
      (Martin Pool) (NB: TestSkipped should only be raised for correctable
6188
 
      reasons - see the wiki spec ImprovingBzrTestSuite).
6189
 
 
6190
 
    * Test sftp with relative, absolute-in-homedir and absolute-not-in-homedir
6191
 
      paths for the transport tests. Introduce blackbox remote sftp tests that
6192
 
      test the same permutations. (Robert Collins, Robey Pointer)
6193
 
 
6194
 
    * Transport implementation tests are now independent of the local file
6195
 
      system, which allows tests for esoteric transports, and for features
6196
 
      not available in the local file system. They also repeat for variations
6197
 
      on the URL scheme that can introduce issues in the transport code,
6198
 
      see bzrlib.transport.TransportTestProviderAdapter() for this.
6199
 
      (Robert Collins).
6200
 
 
6201
 
    * ``TestCase.build_tree`` uses the transport interface to build trees,
6202
 
      pass in a transport parameter to give it an existing connection.
6203
 
      (Robert Collins).
6204
 
 
6205
 
  INTERNALS:
6206
 
 
6207
 
    * WorkingTree.pull has been split across Branch and WorkingTree,
6208
 
      to allow Branch only pulls. (Robert Collins)
6209
 
 
6210
 
    * ``commands.display_command`` now returns the result of the decorated 
6211
 
      function. (Robert Collins)
6212
 
 
6213
 
    * LocationConfig now has a ``set_user_option(key, value)`` call to save
6214
 
      a setting in its matching location section (a new one is created
6215
 
      if needed). (Robert Collins)
6216
 
 
6217
 
    * Branch has two new methods, ``get_push_location`` and
6218
 
      ``set_push_location`` to respectively, get and set the push location.
6219
 
      (Robert Collins)
6220
 
 
6221
 
    * ``commands.register_command`` now takes an optional flag to signal that
6222
 
      the registrant is planning to decorate an existing command. When 
6223
 
      given multiple plugins registering a command is not an error, and
6224
 
      the original command class (whether built in or a plugin based one) is
6225
 
      returned to the caller. There is a new error 'MustUseDecorated' for
6226
 
      signalling when a wrapping command should switch to the original
6227
 
      version. (Robert Collins)
6228
 
 
6229
 
    * Some option parsing errors will raise 'BzrOptionError', allowing 
6230
 
      granular detection for decorating commands. (Robert Collins).
6231
 
 
6232
 
    * ``Branch.read_working_inventory`` has moved to
6233
 
      ``WorkingTree.read_working_inventory``. This necessitated changes to
6234
 
      ``Branch.get_root_id``, and a move of ``Branch.set_inventory`` to
6235
 
      WorkingTree as well. To make it clear that a WorkingTree cannot always
6236
 
      be obtained ``Branch.working_tree()`` will raise
6237
 
      ``errors.NoWorkingTree`` if one cannot be obtained. (Robert Collins)
6238
 
 
6239
 
    * All pending merges operations from Branch are now on WorkingTree.
6240
 
      (Robert Collins)
6241
 
 
6242
 
    * The follow operations from Branch have moved to WorkingTree::
6243
 
 
6244
 
          add()
6245
 
          commit()
6246
 
          move()
6247
 
          rename_one()
6248
 
          unknowns()
6249
 
 
6250
 
      (Robert Collins)
6251
 
 
6252
 
    * ``bzrlib.add.smart_add_branch`` is now ``smart_add_tree``. (Robert Collins)
6253
 
 
6254
 
    * New "rio" serialization format, similar to rfc-822. (Martin Pool)
6255
 
 
6256
 
    * Rename selftests to ``bzrlib.tests.test_foo``.  (John A Meinel, Martin 
6257
 
      Pool)
6258
 
 
6259
 
    * ``bzrlib.plugin.all_plugins`` has been changed from an attribute to a 
6260
 
      query method. (Robert Collins)
6261
 
 
6262
 
    * New options to read only the table-of-contents of a weave.  
6263
 
      (Denys Duchier)
6264
 
 
6265
 
    * Raise NoSuchFile when someone tries to add a non-existant file.
6266
 
      (Michael Ellerman)
6267
 
 
6268
 
    * Simplify handling of DivergedBranches in ``cmd_pull()``.
6269
 
      (Michael Ellerman)
6270
 
   
6271
 
    * Branch.controlfile* logic has moved to lockablefiles.LockableFiles, which
6272
 
      is exposed as ``Branch().control_files``. Also this has been altered with the
6273
 
      controlfile pre/suffix replaced by simple method names like 'get' and
6274
 
      'put'. (Aaron Bentley, Robert Collins).
6275
 
 
6276
 
    * Deprecated functions and methods can now be marked as such using the 
6277
 
      ``bzrlib.symbol_versioning`` module. Marked method have their docstring
6278
 
      updated and will issue a DeprecationWarning using the warnings module
6279
 
      when they are used. (Robert Collins)
6280
 
 
6281
 
    * ``bzrlib.osutils.safe_unicode`` now exists to provide parameter coercion
6282
 
      for functions that need unicode strings. (Robert Collins)
6283
 
 
6284
 
bzr 0.6 2005-10-28
6285
 
------------------
6286
 
 
6287
 
  IMPROVEMENTS:
6288
 
  
6289
 
    * pull now takes --verbose to show you what revisions are added or removed
6290
 
      (John A Meinel)
6291
 
 
6292
 
    * merge now takes a --show-base option to include the base text in
6293
 
      conflicts.
6294
 
      (Aaron Bentley)
6295
 
 
6296
 
    * The config files are now read using ConfigObj, so '=' should be used as
6297
 
      a separator, not ':'.
6298
 
      (Aaron Bentley)
6299
 
 
6300
 
    * New 'bzr commit --strict' option refuses to commit if there are 
6301
 
      any unknown files in the tree.  To commit, make sure all files are 
6302
 
      either ignored, added, or deleted.  (Michael Ellerman)
6303
 
 
6304
 
    * The config directory is now ~/.bazaar, and there is a single file 
6305
 
      ~/.bazaar/bazaar.conf storing email, editor and other preferences.
6306
 
      (Robert Collins)
6307
 
 
6308
 
    * 'bzr add' no longer takes a --verbose option, and a --quiet option
6309
 
      has been added that suppresses all output.
6310
 
 
6311
 
    * Improved zsh completion support in contrib/zsh, from Clint
6312
 
      Adams.
6313
 
 
6314
 
    * Builtin 'bzr annotate' command, by Martin Pool with improvements from 
6315
 
      Goffredo Baroncelli.
6316
 
    
6317
 
    * 'bzr check' now accepts -v for verbose reporting, and checks for
6318
 
      ghosts in the branch. (Robert Collins)
6319
 
 
6320
 
    * New command 're-sign' which will regenerate the gpg signature for 
6321
 
      a revision. (Robert Collins)
6322
 
 
6323
 
    * If you set ``check_signatures=require`` for a path in 
6324
 
      ``~/.bazaar/branches.conf`` then bzr will invoke your
6325
 
      ``gpg_signing_command`` (defaults to gpg) and record a digital signature
6326
 
      of your commit. (Robert Collins)
6327
 
 
6328
 
    * New sftp transport, based on Paramiko.  (Robey Pointer)
6329
 
 
6330
 
    * 'bzr pull' now accepts '--clobber' which will discard local changes
6331
 
      and make this branch identical to the source branch. (Robert Collins)
6332
 
 
6333
 
    * Just give a quieter warning if a plugin can't be loaded, and 
6334
 
      put the details in .bzr.log.  (Martin Pool)
6335
 
 
6336
 
    * 'bzr branch' will now set the branch-name to the last component of the
6337
 
      output directory, if one was supplied.
6338
 
 
6339
 
    * If the option ``post_commit`` is set to one (or more) python function
6340
 
      names (must be in the bzrlib namespace), then they will be invoked
6341
 
      after the commit has completed, with the branch and ``revision_id`` as
6342
 
      parameters. (Robert Collins)
6343
 
 
6344
 
    * Merge now has a retcode of 1 when conflicts occur. (Robert Collins)
6345
 
 
6346
 
    * --merge-type weave is now supported for file contents.  Tree-shape
6347
 
      changes are still three-way based.  (Martin Pool, Aaron Bentley)
6348
 
 
6349
 
    * 'bzr check' allows the first revision on revision-history to have
6350
 
      parents - something that is expected for cheap checkouts, and occurs
6351
 
      when conversions from baz do not have all history.  (Robert Collins).
6352
 
 
6353
 
   * 'bzr merge' can now graft unrelated trees together, if your specify
6354
 
     0 as a base. (Aaron Bentley)
6355
 
 
6356
 
   * 'bzr commit branch' and 'bzr commit branch/file1 branch/file2' now work
6357
 
     (Aaron Bentley)
6358
 
 
6359
 
    * Add '.sconsign*' to default ignore list.  (Alexander Belchenko)
6360
 
 
6361
 
   * 'bzr merge --reprocess' minimizes conflicts
6362
 
 
6363
 
  TESTING:
6364
 
 
6365
 
    * The 'bzr selftest --pattern' option for has been removed, now 
6366
 
      test specifiers on the command line can be simple strings, or 
6367
 
      regexps, or both. (Robert Collins)
6368
 
 
6369
 
    * Passing -v to selftest will now show the time each test took to 
6370
 
      complete, which will aid in analysing performance regressions and
6371
 
      related questions. (Robert Collins)
6372
 
 
6373
 
    * 'bzr selftest' runs all tests, even if one fails, unless '--one'
6374
 
      is given. (Martin Pool)
6375
 
 
6376
 
    * There is a new method for TestCaseInTempDir, assertFileEqual, which
6377
 
      will check that a given content is equal to the content of the named
6378
 
      file. (Robert Collins)
6379
 
 
6380
 
    * Fix test suite's habit of leaving many temporary log files in $TMPDIR.
6381
 
      (Martin Pool)
6382
 
 
6383
 
  INTERNALS:
6384
 
 
6385
 
    * New 'testament' command and concept for making gpg-signatures 
6386
 
      of revisions that are not tied to a particular internal
6387
 
      representation.  (Martin Pool).
6388
 
 
6389
 
    * Per-revision properties ('revprops') as key-value associated 
6390
 
      strings on each revision created when the revision is committed.
6391
 
      Intended mainly for the use of external tools.  (Martin Pool).
6392
 
 
6393
 
    * Config options have moved from bzrlib.osutils to bzrlib.config.
6394
 
      (Robert Collins)
6395
 
 
6396
 
    * Improved command line option definitions allowing explanations
6397
 
      for individual options, among other things.  Contributed by 
6398
 
      Magnus Therning.
6399
 
 
6400
 
    * Config options have moved from bzrlib.osutils to bzrlib.config.
6401
 
      Configuration is now done via the config.Config interface:
6402
 
      Depending on whether you have a Branch, a Location or no information
6403
 
      available, construct a ``*Config``, and use its ``signature_checking``,
6404
 
      ``username`` and ``user_email`` methods. (Robert Collins)
6405
 
 
6406
 
    * Plugins are now loaded under bzrlib.plugins, not bzrlib.plugin, and
6407
 
      they are made available for other plugins to use. You should not 
6408
 
      import other plugins during the ``__init__`` of your plugin though, as 
6409
 
      no ordering is guaranteed, and the plugins directory is not on the
6410
 
      python path. (Robert Collins)
6411
 
 
6412
 
    * Branch.relpath has been moved to WorkingTree.relpath. WorkingTree no
6413
 
      no longer takes an inventory, rather it takes an option branch
6414
 
      parameter, and if None is given will open the branch at basedir 
6415
 
      implicitly. (Robert Collins)
6416
 
 
6417
 
    * Cleaner exception structure and error reporting.  Suggested by 
6418
 
      Scott James Remnant.  (Martin Pool)
6419
 
 
6420
 
    * Branch.remove has been moved to WorkingTree, which has also gained
6421
 
      ``lock_read``, ``lock_write`` and ``unlock`` methods for convenience.
6422
 
      (Robert Collins)
6423
 
 
6424
 
    * Two decorators, ``needs_read_lock`` and ``needs_write_lock`` have been
6425
 
      added to the branch module. Use these to cause a function to run in a
6426
 
      read or write lock respectively. (Robert Collins)
6427
 
 
6428
 
    * ``Branch.open_containing`` now returns a tuple (Branch, relative-path),
6429
 
      which allows direct access to the common case of 'get me this file
6430
 
      from its branch'. (Robert Collins)
6431
 
 
6432
 
    * Transports can register using ``register_lazy_transport``, and they 
6433
 
      will be loaded when first used.  (Martin Pool)
6434
 
 
6435
 
    * 'pull' has been factored out of the command as ``WorkingTree.pull()``.
6436
 
      A new option to WorkingTree.pull has been added, clobber, which will
6437
 
      ignore diverged history and pull anyway.
6438
 
      (Robert Collins)
6439
 
 
6440
 
    * config.Config has a ``get_user_option`` call that accepts an option name.
6441
 
      This will be looked up in branches.conf and bazaar.conf as normal.
6442
 
      It is intended that this be used by plugins to support options - 
6443
 
      options of built in programs should have specific methods on the config.
6444
 
      (Robert Collins)
6445
 
 
6446
 
    * ``merge.merge_inner`` now has tempdir as an optional parameter.
6447
 
      (Robert Collins)
6448
 
 
6449
 
    * Tree.kind is not recorded at the top level of the hierarchy, as it was
6450
 
      missing on EmptyTree, leading to a bug with merge on EmptyTrees.
6451
 
      (Robert Collins)
6452
 
 
6453
 
    * ``WorkingTree.__del__`` has been removed, it was non deterministic and not 
6454
 
      doing what it was intended to. See ``WorkingTree.__init__`` for a comment
6455
 
      about future directions. (Robert Collins/Martin Pool)
6456
 
 
6457
 
    * bzrlib.transport.http has been modified so that only 404 urllib errors
6458
 
      are returned as NoSuchFile. Other exceptions will propogate as normal.
6459
 
      This allows debuging of actual errors. (Robert Collins)
6460
 
 
6461
 
    * bzrlib.transport.Transport now accepts *ONLY* url escaped relative paths
6462
 
      to apis like 'put', 'get' and 'has'. This is to provide consistent
6463
 
      behaviour - it operates on url's only. (Robert Collins)
6464
 
 
6465
 
    * Transports can register using ``register_lazy_transport``, and they 
6466
 
      will be loaded when first used.  (Martin Pool)
6467
 
 
6468
 
    * ``merge_flex`` no longer calls ``conflict_handler.finalize()``, instead that
6469
 
      is called by ``merge_inner``. This is so that the conflict count can be 
6470
 
      retrieved (and potentially manipulated) before returning to the caller
6471
 
      of ``merge_inner``. Likewise 'merge' now returns the conflict count to the
6472
 
      caller. (Robert Collins)
6473
 
 
6474
 
    * ``revision.revision_graph`` can handle having only partial history for
6475
 
      a revision - that is no revisions in the graph with no parents.
6476
 
      (Robert Collins).
6477
 
 
6478
 
    * New ``builtins.branch_files`` uses the standard ``file_list`` rules to
6479
 
      produce a branch and a list of paths, relative to that branch
6480
 
      (Aaron Bentley)
6481
 
 
6482
 
    * New TestCase.addCleanup facility.
6483
 
 
6484
 
    * New ``bzrlib.version_info`` tuple (similar to ``sys.version_info``),
6485
 
      which can be used by programs importing bzrlib.
6486
 
 
6487
 
  BUG FIXES:
6488
 
 
6489
 
    * Better handling of branches in directories with non-ascii names. 
6490
 
      (Joel Rosdahl, Panagiotis Papadakos)
6491
 
 
6492
 
    * Upgrades of trees with no commits will not fail due to accessing
6493
 
      [-1] in the revision-history. (Andres Salomon)
6494
 
 
6495
 
 
6496
 
bzr 0.1.1 2005-10-12
6497
 
--------------------
6498
 
 
6499
 
  BUG FIXES:
6500
 
 
6501
 
    * Fix problem in pulling over http from machines that do not 
6502
 
      allow directories to be listed.
6503
 
 
6504
 
    * Avoid harmless warning about invalid hash cache after 
6505
 
      upgrading branch format.
6506
 
 
6507
 
  PERFORMANCE: 
6508
 
  
6509
 
    * Avoid some unnecessary http operations in branch and pull.
6510
 
 
6511
 
 
6512
 
bzr 0.1 2005-10-11
6513
 
------------------
6514
 
 
6515
 
  NOTES:
6516
 
 
6517
 
    * 'bzr branch' over http initially gives a very high estimate
6518
 
      of completion time but it should fall as the first few 
6519
 
      revisions are pulled in.  branch is still slow on 
6520
 
      high-latency connections.
6521
 
 
6522
 
  BUG FIXES:
6523
 
  
6524
 
    * bzr-man.py has been updated to work again. Contributed by
6525
 
      Rob Weir.
6526
 
 
6527
 
    * Locking is now done with fcntl.lockf which works with NFS
6528
 
      file systems. Contributed by Harald Meland.
6529
 
 
6530
 
    * When a merge encounters a file that has been deleted on
6531
 
      one side and modified on the other, the old contents are
6532
 
      written out to foo.BASE and foo.SIDE, where SIDE is this
6533
 
      or OTHER. Contributed by Aaron Bentley.
6534
 
 
6535
 
    * Export was choosing incorrect file paths for the content of
6536
 
      the tarball, this has been fixed by Aaron Bentley.
6537
 
 
6538
 
    * Commit will no longer commit without a log message, an 
6539
 
      error is returned instead. Contributed by Jelmer Vernooij.
6540
 
 
6541
 
    * If you commit a specific file in a sub directory, any of its
6542
 
      parent directories that are added but not listed will be 
6543
 
      automatically included. Suggested by Michael Ellerman.
6544
 
 
6545
 
    * bzr commit and upgrade did not correctly record new revisions
6546
 
      for files with only a change to their executable status.
6547
 
      bzr will correct this when it encounters it. Fixed by
6548
 
      Robert Collins
6549
 
 
6550
 
    * HTTP tests now force off the use of ``http_proxy`` for the duration.
6551
 
      Contributed by Gustavo Niemeyer.
6552
 
 
6553
 
    * Fix problems in merging weave-based branches that have 
6554
 
      different partial views of history.
6555
 
 
6556
 
    * Symlink support: working with symlinks when not in the root of a 
6557
 
      bzr tree was broken, patch from Scott James Remnant.
6558
 
 
6559
 
  IMPROVEMENTS:
6560
 
 
6561
 
    * 'branch' now accepts a --basis parameter which will take advantage
6562
 
      of local history when making a new branch. This allows faster 
6563
 
      branching of remote branches. Contributed by Aaron Bentley.
6564
 
 
6565
 
    * New tree format based on weave files, called version 5.
6566
 
      Existing branches can be upgraded to this format using 
6567
 
      'bzr upgrade'.
6568
 
 
6569
 
    * Symlinks are now versionable. Initial patch by 
6570
 
      Erik Toubro Nielsen, updated to head by Robert Collins.
6571
 
 
6572
 
    * Executable bits are tracked on files. Patch from Gustavo
6573
 
      Niemeyer.
6574
 
 
6575
 
    * 'bzr status' now shows unknown files inside a selected directory.
6576
 
      Patch from Heikki Paajanen.
6577
 
 
6578
 
    * Merge conflicts are recorded in .bzr. Two new commands 'conflicts'
6579
 
      and 'resolve' have needed added, which list and remove those 
6580
 
      merge conflicts respectively. A conflicted tree cannot be committed
6581
 
      in. Contributed by Aaron Bentley.
6582
 
 
6583
 
    * 'rm' is now an alias for 'remove'.
6584
 
 
6585
 
    * Stores now split out their content in a single byte prefixed hash,
6586
 
      dropping the density of files per directory by 256. Contributed by
6587
 
      Gustavo Niemeyer.
6588
 
 
6589
 
    * 'bzr diff -r branch:URL' will now perform a diff between two branches.
6590
 
      Contributed by Robert Collins.
6591
 
 
6592
 
    * 'bzr log' with the default formatter will show merged revisions,
6593
 
      indented to the right. Initial implementation contributed by Gustavo
6594
 
      Niemeyer, made incremental by Robert Collins.
6595
 
 
6596
 
 
6597
 
  INTERNALS:
6598
 
 
6599
 
    * Test case failures have the exception printed after the log 
6600
 
      for your viewing pleasure.
6601
 
 
6602
 
    * InventoryEntry is now an abstract base class, use one of the
6603
 
      concrete InventoryDirectory etc classes instead.
6604
 
 
6605
 
    * Branch raises an UnsupportedFormatError when it detects a 
6606
 
      bzr branch it cannot understand. This allows for precise
6607
 
      handling of such circumstances.
6608
 
 
6609
 
    * Remove RevisionReference class; ``Revision.parent_ids`` is now simply a
6610
 
      list of their ids and ``parent_sha1s`` is a list of their corresponding
6611
 
      sha1s (for old branches only at the moment.)
6612
 
 
6613
 
    * New method-object style interface for Commit() and Fetch().
6614
 
 
6615
 
    * Renamed ``Branch.last_patch()`` to ``Branch.last_revision()``, since
6616
 
      we call them revisions not patches.
6617
 
 
6618
 
    * Move ``copy_branch`` to ``bzrlib.clone.copy_branch``.  The destination
6619
 
      directory is created if it doesn't exist.
6620
 
 
6621
 
    * Inventories now identify the files which were present by 
6622
 
      giving the revision *of that file*.
6623
 
 
6624
 
    * Inventory and Revision XML contains a version identifier.  
6625
 
      This must be consistent with the overall branch version
6626
 
      but allows for more flexibility in future upgrades.
6627
 
 
6628
 
  TESTING:
6629
 
 
6630
 
    * Removed testsweet module so that tests can be run after 
6631
 
      bzr installed by 'bzr selftest'.
6632
 
 
6633
 
    * 'bzr selftest' command-line arguments can now be partial ids
6634
 
      of tests to run, e.g. ``bzr selftest test_weave``
6635
 
 
6636
 
      
6637
 
bzr 0.0.9 2005-09-23
6638
 
--------------------
6639
 
 
6640
 
  BUG FIXES:
6641
 
 
6642
 
    * Fixed "branch -r" option.
6643
 
 
6644
 
    * Fix remote access to branches containing non-compressed history.
6645
 
      (Robert Collins).
6646
 
 
6647
 
    * Better reliability of http server tests.  (John Arbash-Meinel)
6648
 
 
6649
 
    * Merge graph maximum distance calculation fix.  (Aaron Bentley)
6650
 
   
6651
 
    * Various minor bug in windows support have been fixed, largely in the
6652
 
      test suite. Contributed by Alexander Belchenko.
6653
 
 
6654
 
  IMPROVEMENTS:
6655
 
 
6656
 
    * Status now accepts a -r argument to give status between chosen
6657
 
      revisions. Contributed by Heikki Paajanen.
6658
 
 
6659
 
    * Revision arguments no longer use +/-/= to control ranges, instead
6660
 
      there is a 'before' namespace, which limits the successive namespace.
6661
 
      For example '$ bzr log -r date:yesterday..before:date:today' will
6662
 
      select everything from yesterday and before today. Contributed by
6663
 
      Robey Pointer
6664
 
 
6665
 
    * There is now a bzr.bat file created by distutils when building on 
6666
 
      Windows. Contributed by Alexander Belchenko.
6667
 
 
6668
 
  INTERNALS:
6669
 
 
6670
 
    * Removed uuid() as it was unused.
6671
 
 
6672
 
    * Improved 'fetch' code for pulling revisions from one branch into
6673
 
      another (used by pull, merged, etc.)
6674
 
 
6675
 
 
6676
 
bzr 0.0.8 2005-09-20
6677
 
--------------------
6678
 
 
6679
 
  IMPROVEMENTS:
6680
 
 
6681
 
    * Adding a file whose parent directory is not versioned will
6682
 
      implicitly add the parent, and so on up to the root. This means
6683
 
      you should never need to explictly add a directory, they'll just
6684
 
      get added when you add a file in the directory.  Contributed by
6685
 
      Michael Ellerman.
6686
 
 
6687
 
    * Ignore ``.DS_Store`` (contains Mac metadata) by default.
6688
 
      (Nir Soffer)
6689
 
 
6690
 
    * If you set ``BZR_EDITOR`` in the environment, it is checked in
6691
 
      preference to EDITOR and the config file for the interactive commit
6692
 
      editing program. Related to this is a bugfix where a missing program
6693
 
      set in EDITOR would cause editing to fail, now the fallback program
6694
 
      for the operating system is still tried.
6695
 
 
6696
 
    * Files that are not directories/symlinks/regular files will no longer
6697
 
      cause bzr to fail, it will just ignore them by default. You cannot add
6698
 
      them to the tree though - they are not versionable.
6699
 
 
6700
 
 
6701
 
  INTERNALS:
6702
 
 
6703
 
    * Refactor xml packing/unpacking.
6704
 
 
6705
 
  BUG FIXES: 
6706
 
 
6707
 
    * Fixed 'bzr mv' by Ollie Rutherfurd.
6708
 
 
6709
 
    * Fixed strange error when trying to access a nonexistent http
6710
 
      branch.
6711
 
 
6712
 
    * Make sure that the hashcache gets written out if it can't be
6713
 
      read.
6714
 
 
6715
 
 
6716
 
  PORTABILITY:
6717
 
 
6718
 
    * Various Windows fixes from Ollie Rutherfurd.
6719
 
 
6720
 
    * Quieten warnings about locking; patch from Matt Lavin.
6721
 
 
6722
 
 
6723
 
bzr-0.0.7 2005-09-02
6724
 
--------------------
6725
 
 
6726
 
  NEW FEATURES:
6727
 
 
6728
 
    * ``bzr shell-complete`` command contributed by Clint Adams to
6729
 
      help with intelligent shell completion.
6730
 
 
6731
 
    * New expert command ``bzr find-merge-base`` for debugging merges.
6732
 
 
6733
 
 
6734
 
  ENHANCEMENTS:
6735
 
 
6736
 
    * Much better merge support.
6737
 
 
6738
 
    * merge3 conflicts are now reported with markers like '<<<<<<<'
6739
 
      (seven characters) which is the same as CVS and pleases things
6740
 
      like emacs smerge.
6741
 
 
6742
 
 
6743
 
  BUG FIXES:
6744
 
 
6745
 
    * ``bzr upgrade`` no longer fails when trying to fix trees that
6746
 
      mention revisions that are not present.
6747
 
 
6748
 
    * Fixed bugs in listing plugins from ``bzr plugins``.
6749
 
 
6750
 
    * Fix case of $EDITOR containing options for the editor.
6751
 
 
6752
 
    * Fix log -r refusing to show the last revision.
6753
 
      (Patch from Goffredo Baroncelli.)
6754
 
 
6755
 
 
6756
 
  CHANGES:
6757
 
 
6758
 
    * ``bzr log --show-ids`` shows the revision ids of all parents.
6759
 
 
6760
 
    * Externally provided commands on your $BZRPATH no longer need
6761
 
      to recognize --bzr-usage to work properly, and can just handle
6762
 
      --help themselves.
6763
 
 
6764
 
 
6765
 
  LIBRARY:
6766
 
 
6767
 
    * Changed trace messages to go through the standard logging
6768
 
      framework, so that they can more easily be redirected by
6769
 
      libraries.
6770
 
 
6771
 
 
6772
 
 
6773
 
bzr-0.0.6 2005-08-18
6774
 
--------------------
6775
 
 
6776
 
  NEW FEATURES:
6777
 
 
6778
 
    * Python plugins, automatically loaded from the directories on
6779
 
      ``BZR_PLUGIN_PATH`` or ``~/.bzr.conf/plugins`` by default.
6780
 
 
6781
 
    * New 'bzr mkdir' command.
6782
 
 
6783
 
    * Commit mesage is fetched from an editor if not given on the
6784
 
      command line; patch from Torsten Marek.
6785
 
 
6786
 
    * ``bzr log -m FOO`` displays commits whose message matches regexp 
6787
 
      FOO.
6788
 
      
6789
 
    * ``bzr add`` with no arguments adds everything under the current directory.
6790
 
 
6791
 
    * ``bzr mv`` does move or rename depending on its arguments, like
6792
 
      the Unix command.
6793
 
 
6794
 
    * ``bzr missing`` command shows a summary of the differences
6795
 
      between two trees.  (Merged from John Arbash-Meinel.)
6796
 
 
6797
 
    * An email address for commits to a particular tree can be
6798
 
      specified by putting it into .bzr/email within a branch.  (Based
6799
 
      on a patch from Heikki Paajanen.)
6800
 
 
6801
 
 
6802
 
  ENHANCEMENTS:
6803
 
 
6804
 
    * Faster working tree operations.
6805
 
 
6806
 
 
6807
 
  CHANGES:
6808
 
 
6809
 
    * 3rd-party modules shipped with bzr are copied within the bzrlib
6810
 
      python package, so that they can be installed by the setup
6811
 
      script without clashing with anything already existing on the
6812
 
      system.  (Contributed by Gustavo Niemeyer.)
6813
 
 
6814
 
    * Moved plugins directory to bzrlib/, so that there's a standard
6815
 
      plugin directory which is not only installed with bzr itself but
6816
 
      is also available when using bzr from the development tree.
6817
 
      ``BZR_PLUGIN_PATH`` and ``DEFAULT_PLUGIN_PATH`` are then added to the
6818
 
      standard plugins directory.
6819
 
 
6820
 
    * When exporting to a tarball with ``bzr export --format tgz``, put 
6821
 
      everything under a top directory rather than dumping it into the
6822
 
      current directory.   This can be overridden with the ``--root`` 
6823
 
      option.  Patch from William Dodé and John Meinel.
6824
 
 
6825
 
    * New ``bzr upgrade`` command to upgrade the format of a branch,
6826
 
      replacing ``bzr check --update``.
6827
 
 
6828
 
    * Files within store directories are no longer marked readonly on
6829
 
      disk.
6830
 
 
6831
 
    * Changed ``bzr log`` output to a more compact form suggested by
6832
 
      John A Meinel.  Old format is available with the ``--long`` or
6833
 
      ``-l`` option, patched by William Dodé.
6834
 
 
6835
 
    * By default the commit command refuses to record a revision with
6836
 
      no changes unless the ``--unchanged`` option is given.
6837
 
 
6838
 
    * The ``--no-plugins``, ``--profile`` and ``--builtin`` command
6839
 
      line options must come before the command name because they 
6840
 
      affect what commands are available; all other options must come 
6841
 
      after the command name because their interpretation depends on
6842
 
      it.
6843
 
 
6844
 
    * ``branch`` and ``clone`` added as aliases for ``branch``.
6845
 
 
6846
 
    * Default log format is back to the long format; the compact one
6847
 
      is available with ``--short``.
6848
 
      
6849
 
      
6850
 
  BUG FIXES:
6851
 
  
6852
 
    * Fix bugs in committing only selected files or within a subdirectory.
6853
 
 
6854
 
 
6855
 
bzr-0.0.5  2005-06-15
6856
 
---------------------
6857
 
  
6858
 
  CHANGES:
6859
 
 
6860
 
    * ``bzr`` with no command now shows help rather than giving an
6861
 
      error.  Suggested by Michael Ellerman.
6862
 
 
6863
 
    * ``bzr status`` output format changed, because svn-style output
6864
 
      doesn't really match the model of bzr.  Now files are grouped by
6865
 
      status and can be shown with their IDs.  ``bzr status --all``
6866
 
      shows all versioned files and unknown files but not ignored files.
6867
 
 
6868
 
    * ``bzr log`` runs from most-recent to least-recent, the reverse
6869
 
      of the previous order.  The previous behaviour can be obtained
6870
 
      with the ``--forward`` option.
6871
 
        
6872
 
    * ``bzr inventory`` by default shows only filenames, and also ids
6873
 
      if ``--show-ids`` is given, in which case the id is the second
6874
 
      field.
6875
 
 
6876
 
 
6877
 
  ENHANCEMENTS:
6878
 
 
6879
 
    * New 'bzr whoami --email' option shows only the email component
6880
 
      of the user identification, from Jo Vermeulen.
6881
 
 
6882
 
    * New ``bzr ignore PATTERN`` command.
6883
 
 
6884
 
    * Nicer error message for broken pipe, interrupt and similar
6885
 
      conditions that don't indicate an internal error.
6886
 
 
6887
 
    * Add ``.*.sw[nop] .git .*.tmp *,v`` to default ignore patterns.
6888
 
 
6889
 
    * Per-branch locks keyed on ``.bzr/branch-lock``, available in
6890
 
      either read or write mode.
6891
 
 
6892
 
    * New option ``bzr log --show-ids`` shows revision and file ids.
6893
 
 
6894
 
    * New usage ``bzr log FILENAME`` shows only revisions that
6895
 
      affected that file.
6896
 
 
6897
 
    * Changed format for describing changes in ``bzr log -v``.
6898
 
 
6899
 
    * New option ``bzr commit --file`` to take a message from a file,
6900
 
      suggested by LarstiQ.
6901
 
 
6902
 
    * New syntax ``bzr status [FILE...]`` contributed by Bartosz
6903
 
      Oler.  File may be in a branch other than the working directory.
6904
 
 
6905
 
    * ``bzr log`` and ``bzr root`` can be given an http URL instead of
6906
 
      a filename.
6907
 
 
6908
 
    * Commands can now be defined by external programs or scripts
6909
 
      in a directory on $BZRPATH.
6910
 
 
6911
 
    * New "stat cache" avoids reading the contents of files if they 
6912
 
      haven't changed since the previous time.
6913
 
 
6914
 
    * If the Python interpreter is too old, try to find a better one
6915
 
      or give an error.  Based on a patch from Fredrik Lundh.
6916
 
 
6917
 
    * New optional parameter ``bzr info [BRANCH]``.
6918
 
 
6919
 
    * New form ``bzr commit SELECTED`` to commit only selected files.
6920
 
 
6921
 
    * New form ``bzr log -r FROM:TO`` shows changes in selected
6922
 
      range; contributed by John A Meinel.
6923
 
 
6924
 
    * New option ``bzr diff --diff-options 'OPTS'`` allows passing
6925
 
      options through to an external GNU diff.
6926
 
 
6927
 
    * New option ``bzr add --no-recurse`` to add a directory but not
6928
 
      their contents.
6929
 
 
6930
 
    * ``bzr --version`` now shows more information if bzr is being run
6931
 
      from a branch.
6932
 
 
6933
 
  
6934
 
  BUG FIXES:
6935
 
 
6936
 
    * Fixed diff format so that added and removed files will be
6937
 
      handled properly by patch.  Fix from Lalo Martins.
6938
 
 
6939
 
    * Various fixes for files whose names contain spaces or other
6940
 
      metacharacters.
6941
 
 
6942
 
 
6943
 
  TESTING:
6944
 
 
6945
 
    * Converted black-box test suites from Bourne shell into Python;
6946
 
      now run using ``./testbzr``.  Various structural improvements to
6947
 
      the tests.
6948
 
 
6949
 
    * testbzr by default runs the version of bzr found in the same
6950
 
      directory as the tests, or the one given as the first parameter.
6951
 
 
6952
 
    * testbzr also runs the internal tests, so the only command
6953
 
      required to check is just ``./testbzr``.
6954
 
 
6955
 
    * testbzr requires python2.4, but can be used to test bzr running
6956
 
      under a different version.
6957
 
 
6958
 
    * Tests added for many other changes in this release.
6959
 
 
6960
 
 
6961
 
  INTERNAL:
6962
 
 
6963
 
    * Included ElementTree library upgraded to 1.2.6 by Fredrik Lundh.
6964
 
 
6965
 
    * Refactor command functions into Command objects based on HCT by
6966
 
      Scott James Remnant.
6967
 
 
6968
 
    * Better help messages for many commands.
6969
 
 
6970
 
    * Expose ``bzrlib.open_tracefile()`` to start the tracefile; until
6971
 
      this is called trace messages are just discarded.
6972
 
 
6973
 
    * New internal function ``find_touching_revisions()`` and hidden
6974
 
      command touching-revisions trace the changes to a given file.
6975
 
 
6976
 
    * Simpler and faster ``compare_inventories()`` function.
6977
 
 
6978
 
    * ``bzrlib.open_tracefile()`` takes a tracefilename parameter.
6979
 
 
6980
 
    * New AtomicFile class.
6981
 
 
6982
 
    * New developer commands ``added``, ``modified``.
6983
 
 
6984
 
 
6985
 
  PORTABILITY:
6986
 
 
6987
 
    * Cope on Windows on python2.3 by using the weaker random seed.
6988
 
      2.4 is now only recommended.
6989
 
 
6990
 
 
6991
 
bzr-0.0.4  2005-04-22
6992
 
---------------------
6993
 
 
6994
 
  ENHANCEMENTS:
6995
 
 
6996
 
    * 'bzr diff' optionally takes a list of files to diff.  Still a bit
6997
 
      basic.  Patch from QuantumG.
6998
 
 
6999
 
    * More default ignore patterns.
7000
 
 
7001
 
    * New 'bzr log --verbose' shows a list of files changed in the
7002
 
      changeset.  Patch from Sebastian Cote.
7003
 
 
7004
 
    * Roll over ~/.bzr.log if it gets too large.
7005
 
 
7006
 
    * Command abbreviations 'ci', 'st', 'stat', '?' based on a patch
7007
 
      by Jason Diamon.
7008
 
 
7009
 
    * New 'bzr help commands' based on a patch from Denys Duchier.
7010
 
 
7011
 
 
7012
 
  CHANGES:
7013
 
 
7014
 
    * User email is determined by looking at $BZREMAIL or ~/.bzr.email
7015
 
      or $EMAIL.  All are decoded by the locale preferred encoding.
7016
 
      If none of these are present user@hostname is used.  The host's
7017
 
      fully-qualified name is not used because that tends to fail when
7018
 
      there are DNS problems.
7019
 
 
7020
 
    * New 'bzr whoami' command instead of username user-email.
7021
 
 
7022
 
 
7023
 
  BUG FIXES: 
7024
 
 
7025
 
    * Make commit safe for hardlinked bzr trees.
7026
 
 
7027
 
    * Some Unicode/locale fixes.
7028
 
 
7029
 
    * Partial workaround for ``difflib.unified_diff`` not handling
7030
 
      trailing newlines properly.
7031
 
 
7032
 
 
7033
 
  INTERNAL:
7034
 
 
7035
 
    * Allow docstrings for help to be in PEP0257 format.  Patch from
7036
 
      Matt Brubeck.
7037
 
 
7038
 
    * More tests in test.sh.
7039
 
 
7040
 
    * Write profile data to a temporary file not into working
7041
 
      directory and delete it when done.
7042
 
 
7043
 
    * Smaller .bzr.log with process ids.
7044
 
 
7045
 
 
7046
 
  PORTABILITY:
7047
 
 
7048
 
    * Fix opening of ~/.bzr.log on Windows.  Patch from Andrew
7049
 
      Bennetts.
7050
 
 
7051
 
    * Some improvements in handling paths on Windows, based on a patch
7052
 
      from QuantumG.
7053
 
 
7054
 
 
7055
 
bzr-0.0.3  2005-04-06
7056
 
---------------------
7057
 
 
7058
 
  ENHANCEMENTS:
7059
 
 
7060
 
    * New "directories" internal command lists versioned directories
7061
 
      in the tree.
7062
 
 
7063
 
    * Can now say "bzr commit --help".
7064
 
 
7065
 
    * New "rename" command to rename one file to a different name
7066
 
      and/or directory.
7067
 
 
7068
 
    * New "move" command to move one or more files into a different
7069
 
      directory.
7070
 
 
7071
 
    * New "renames" command lists files renamed since base revision.
7072
 
 
7073
 
    * New cat command contributed by janmar.
7074
 
 
7075
 
  CHANGES:
7076
 
 
7077
 
    * .bzr.log is placed in $HOME (not pwd) and is always written in
7078
 
      UTF-8.  (Probably not a completely good long-term solution, but
7079
 
      will do for now.)
7080
 
 
7081
 
  PORTABILITY:
7082
 
 
7083
 
    * Workaround for difflib bug in Python 2.3 that causes an
7084
 
      exception when comparing empty files.  Reported by Erik Toubro
7085
 
      Nielsen.
7086
 
 
7087
 
  INTERNAL:
7088
 
 
7089
 
    * Refactored inventory storage to insert a root entry at the top.
7090
 
 
7091
 
  TESTING:
7092
 
 
7093
 
    * Start of shell-based black-box testing in test.sh.
 
7685
bzr 0.92rc1
 
7686
###########
 
7687
 
 
7688
:Released: 2007-10-29
 
7689
 
 
7690
Changes
 
7691
*******
 
7692
 
 
7693
* ``bzr`` now returns exit code 4 if an internal error occurred, and
 
7694
  3 if a normal error occurred.  (Martin Pool)
 
7695
 
 
7696
* ``pull``, ``merge`` and ``push`` will no longer silently correct some
 
7697
  repository index errors that occured as a result of the Weave disk format.
 
7698
  Instead the ``reconcile`` command needs to be run to correct those
 
7699
  problems if they exist (and it has been able to fix most such problems
 
7700
  since bzr 0.8). Some new problems have been identified during this release
 
7701
  and you should run ``bzr check`` once on every repository to see if you
 
7702
  need to reconcile. If you cannot ``pull`` or ``merge`` from a remote
 
7703
  repository due to mismatched parent errors - a symptom of index errors -
 
7704
  you should simply take a full copy of that remote repository to a clean
 
7705
  directory outside any local repositories, then run reconcile on it, and
 
7706
  finally pull from it locally. (And naturally email the repositories owner
 
7707
  to ask them to upgrade and run reconcile).
 
7708
  (Robert Collins)
 
7709
 
 
7710
Features
 
7711
********
 
7712
 
 
7713
* New ``knitpack-experimental`` repository format. This is interoperable with
 
7714
  the ``dirstate-tags`` format but uses a smarter storage design that greatly
 
7715
  speeds up many operations, both local and remote. This new format can be
 
7716
  used as an option to the ``init``, ``init-repository`` and ``upgrade``
 
7717
  commands. (Robert Collins)
 
7718
 
 
7719
* For users of bzr-svn (and those testing the prototype subtree support) that
 
7720
  wish to try packs, a new ``knitpack-subtree-experimental`` format has also
 
7721
  been added. This is interoperable with the ``dirstate-subtrees`` format.
 
7722
  (Robert Collins)
 
7723
 
 
7724
* New ``reconfigure`` command. (Aaron Bentley)
 
7725
 
 
7726
* New ``revert --forget-merges`` command, which removes the record of a pending
 
7727
  merge without affecting the working tree contents.  (Martin Pool)
 
7728
 
 
7729
* New ``bzr_remote_path`` configuration variable allows finer control of
 
7730
  remote bzr locations than BZR_REMOTE_PATH environment variable.
 
7731
  (Aaron Bentley)
 
7732
 
 
7733
* New ``launchpad-login`` command to tell Bazaar your Launchpad
 
7734
  user ID.  This can then be used by other functions of the
 
7735
  Launchpad plugin. (James Henstridge)
 
7736
 
 
7737
Performance
 
7738
***********
 
7739
 
 
7740
* Commit in quiet mode is now slightly faster as the information to
 
7741
  output is no longer calculated. (Ian Clatworthy)
 
7742
 
 
7743
* Commit no longer checks for new text keys during insertion when the
 
7744
  revision id was deterministically unique. (Robert Collins)
 
7745
 
 
7746
* Committing a change which is not a merge and does not change the number of
 
7747
  files in the tree is faster by utilising the data about whether files are
 
7748
  changed to determine if the tree is unchanged rather than recalculating
 
7749
  it at the end of the commit process. (Robert Collins)
 
7750
 
 
7751
* Inventory serialisation no longer double-sha's the content.
 
7752
  (Robert Collins)
 
7753
 
 
7754
* Knit text reconstruction now avoids making copies of the lines list for
 
7755
  interim texts when building a single text. The new ``apply_delta`` method
 
7756
  on ``KnitContent`` aids this by allowing modification of the revision id
 
7757
  such objects represent. (Robert Collins)
 
7758
 
 
7759
* Pack indices are now partially parsed for specific key lookup using a
 
7760
  bisection approach. (Robert Collins)
 
7761
 
 
7762
* Partial commits are now approximately 40% faster by walking over the
 
7763
  unselected current tree more efficiently. (Robert Collins)
 
7764
 
 
7765
* XML inventory serialisation takes 20% less time while being stricter about
 
7766
  the contents. (Robert Collins)
 
7767
 
 
7768
* Graph ``heads()`` queries have been fixed to no longer access all history
 
7769
  unnecessarily. (Robert Collins)
 
7770
 
 
7771
Improvements
 
7772
************
 
7773
 
 
7774
* ``bzr+https://`` smart server across https now supported.
 
7775
  (John Ferlito, Martin Pool, #128456)
 
7776
 
 
7777
* Mutt is now a supported mail client; set ``mail_client=mutt`` in your
 
7778
  bazaar.conf and ``send`` will use mutt. (Keir Mierle)
 
7779
 
 
7780
* New option ``-c``/``--change`` for ``merge`` command for cherrypicking
 
7781
  changes from one revision. (Alexander Belchenko, #141368)
 
7782
 
 
7783
* Show encodings, locale and list of plugins in the traceback message.
 
7784
  (Martin Pool, #63894)
 
7785
 
 
7786
* Experimental directory formats can now be marked with
 
7787
  ``experimental = True`` during registration. (Ian Clatworthy)
 
7788
 
 
7789
Documentation
 
7790
*************
 
7791
 
 
7792
* New *Bazaar in Five Minutes* guide.  (Matthew Revell)
 
7793
 
 
7794
* The hooks reference documentation is now converted to html as expected.
 
7795
  (Ian Clatworthy)
 
7796
 
 
7797
Bug Fixes
 
7798
*********
 
7799
 
 
7800
* Connection error reporting for the smart server has been fixed to
 
7801
  display a user friendly message instead of a traceback.
 
7802
  (Ian Clatworthy, #115601)
 
7803
 
 
7804
* Make sure to use ``O_BINARY`` when opening files to check their
 
7805
  sha1sum. (Alexander Belchenko, John Arbash Meinel, #153493)
 
7806
 
 
7807
* Fix a problem with Win32 handling of the executable bit.
 
7808
  (John Arbash Meinel, #149113)
 
7809
 
 
7810
* ``bzr+ssh://`` and ``sftp://`` URLs that do not specify ports explicitly
 
7811
  no longer assume that means port 22.  This allows people using OpenSSH to
 
7812
  override the default port in their ``~/.ssh/config`` if they wish.  This
 
7813
  fixes a bug introduced in bzr 0.91.  (Andrew Bennetts, #146715)
 
7814
 
 
7815
* Commands reporting exceptions can now be profiled and still have their
 
7816
  data correctly dumped to a file. For example, a ``bzr commit`` with
 
7817
  no changes still reports the operation as pointless but doing so no
 
7818
  longer throws away the profiling data if this command is run with
 
7819
  ``--lsprof-file callgrind.out.ci`` say. (Ian Clatworthy)
 
7820
 
 
7821
* Fallback to ftp when paramiko is not installed and sftp can't be used for
 
7822
  ``tests/commands`` so that the test suite is still usable without
 
7823
  paramiko.
 
7824
  (Vincent Ladeuil, #59150)
 
7825
 
 
7826
* Fix commit ordering in corner case. (Aaron Bentley, #94975)
 
7827
 
 
7828
* Fix long standing bug in partial commit when there are renames
 
7829
  left in tree. (Robert Collins, #140419)
 
7830
 
 
7831
* Fix selftest semi-random noise during http related tests.
 
7832
  (Vincent Ladeuil, #140614)
 
7833
 
 
7834
* Fix typo in ftp.py making the reconnection fail on temporary errors.
 
7835
  (Vincent Ladeuil, #154259)
 
7836
 
 
7837
* Fix failing test by comparing real paths to cover the case where the TMPDIR
 
7838
  contains a symbolic link.
 
7839
  (Vincent Ladeuil, #141382).
 
7840
 
 
7841
* Fix log against smart server branches that don't support tags.
 
7842
  (James Westby, #140615)
 
7843
 
 
7844
* Fix pycurl http implementation by defining error codes from
 
7845
  pycurl instead of relying on an old curl definition.
 
7846
  (Vincent Ladeuil, #147530)
 
7847
 
 
7848
* Fix 'unprintable error' message when displaying BzrCheckError and
 
7849
  some other exceptions on Python 2.5.
 
7850
  (Martin Pool, #144633)
 
7851
 
 
7852
* Fix ``Inventory.copy()`` and add test for it. (Jelmer Vernooij)
 
7853
 
 
7854
* Handles default value for ListOption in cmd_commit.
 
7855
  (Vincent Ladeuil, #140432)
 
7856
 
 
7857
* HttpServer and FtpServer need to be closed properly or a listening socket
 
7858
  will remain opened.
 
7859
  (Vincent Ladeuil, #140055)
 
7860
 
 
7861
* Monitor the .bzr directory created in the top level test
 
7862
  directory to detect leaking tests.
 
7863
  (Vincent Ladeuil, #147986)
 
7864
 
 
7865
* The basename, not the full path, is now used when checking whether
 
7866
  the profiling dump file begins with ``callgrind.out`` or not. This
 
7867
  fixes a bug reported by Aaron Bentley on IRC. (Ian Clatworthy)
 
7868
 
 
7869
* Trivial fix for invoking command ``reconfigure`` without arguments.
 
7870
  (Rob Weir, #141629)
 
7871
 
 
7872
* ``WorkingTree.rename_one`` will now raise an error if normalisation of the
 
7873
  new path causes bzr to be unable to access the file. (Robert Collins)
 
7874
 
 
7875
* Correctly detect a NoSuchFile when using a filezilla server. (Gary van der
 
7876
  Merwe)
 
7877
 
 
7878
API Breaks
 
7879
**********
 
7880
 
 
7881
* ``bzrlib.index.GraphIndex`` now requires a size parameter to the
 
7882
  constructor, for enabling bisection searches. (Robert Collins)
 
7883
 
 
7884
* ``CommitBuilder.record_entry_contents`` now requires the root entry of a
 
7885
  tree be supplied to it, previously failing to do so would trigger a
 
7886
  deprecation warning. (Robert Collins)
 
7887
 
 
7888
* ``KnitVersionedFile.add*`` will no longer cache added records even when
 
7889
  enable_cache() has been called - the caching feature is now exclusively for
 
7890
  reading existing data. (Robert Collins)
 
7891
 
 
7892
* ``ReadOnlyLockError`` is deprecated; ``LockFailed`` is usually more
 
7893
  appropriate.  (Martin Pool)
 
7894
 
 
7895
* Removed ``bzrlib.transport.TransportLogger`` - please see the new
 
7896
  ``trace+`` transport instead. (Robert Collins)
 
7897
 
 
7898
* Removed previously deprecated varargs interface to ``TestCase.run_bzr`` and
 
7899
  deprecated methods ``TestCase.capture`` and ``TestCase.run_bzr_captured``.
 
7900
  (Martin Pool)
 
7901
 
 
7902
* Removed previous deprecated ``basis_knit`` parameter to the
 
7903
  ``KnitVersionedFile`` constructor. (Robert Collins)
 
7904
 
 
7905
* Special purpose method ``TestCase.run_bzr_decode`` is moved to the test_non_ascii
 
7906
  class that needs it.
 
7907
  (Martin Pool)
 
7908
 
 
7909
* The class ``bzrlib.repofmt.knitrepo.KnitRepository3`` has been folded into
 
7910
  ``KnitRepository`` by parameters to the constructor. (Robert Collins)
 
7911
 
 
7912
* The ``VersionedFile`` interface now allows content checks to be bypassed
 
7913
  by supplying check_content=False.  This saves nearly 30% of the minimum
 
7914
  cost to store a version of a file. (Robert Collins)
 
7915
 
 
7916
* Tree's with bad state such as files with no length or sha will no longer
 
7917
  be silently accepted by the repository XML serialiser. To serialise
 
7918
  inventories without such data, pass working=True to write_inventory.
 
7919
  (Robert Collins)
 
7920
 
 
7921
* ``VersionedFile.fix_parents`` has been removed as a harmful API.
 
7922
  ``VersionedFile.join`` will no longer accept different parents on either
 
7923
  side of a join - it will either ignore them, or error, depending on the
 
7924
  implementation. See notes when upgrading for more information.
 
7925
  (Robert Collins)
 
7926
 
 
7927
Internals
 
7928
*********
 
7929
 
 
7930
* ``bzrlib.transport.Transport.put_file`` now returns the number of bytes
 
7931
  put by the method call, to allow avoiding stat-after-write or
 
7932
  housekeeping in callers. (Robert Collins)
 
7933
 
 
7934
* ``bzrlib.xml_serializer.Serializer`` is now responsible for checking that
 
7935
  mandatory attributes are present on serialisation and deserialisation.
 
7936
  This fixes some holes in API usage and allows better separation between
 
7937
  physical storage and object serialisation. (Robert Collins)
 
7938
 
 
7939
* New class ``bzrlib.errors.InternalBzrError`` which is just a convenient
 
7940
  shorthand for deriving from BzrError and setting internal_error = True.
 
7941
  (Robert Collins)
 
7942
 
 
7943
* New method ``bzrlib.mutabletree.update_to_one_parent_via_delta`` for
 
7944
  moving the state of a parent tree to a new version via a delta rather than
 
7945
  a complete replacement tree. (Robert Collins)
 
7946
 
 
7947
* New method ``bzrlib.osutils.minimum_path_selection`` useful for removing
 
7948
  duplication from user input, when a user mentions both a path and an item
 
7949
  contained within that path. (Robert Collins)
 
7950
 
 
7951
* New method ``bzrlib.repository.Repository.is_write_locked`` useful for
 
7952
  determining if a repository is write locked. (Robert Collins)
 
7953
 
 
7954
* New method on ``bzrlib.tree.Tree`` ``path_content_summary`` provides a
 
7955
  tuple containing the key information about a path for commit processing
 
7956
  to complete. (Robert Collins)
 
7957
 
 
7958
* New method on xml serialisers, write_inventory_to_lines, which matches the
 
7959
  API used by knits for adding content. (Robert Collins)
 
7960
 
 
7961
* New module ``bzrlib.bisect_multi`` with generic multiple-bisection-at-once
 
7962
  logic, currently only available for byte-based lookup
 
7963
  (``bisect_multi_bytes``). (Robert Collins)
 
7964
 
 
7965
* New helper ``bzrlib.tuned_gzip.bytes_to_gzip`` which takes a byte string
 
7966
  and returns a gzipped version of the same. This is used to avoid a bunch
 
7967
  of api friction during adding of knit hunks. (Robert Collins)
 
7968
 
 
7969
* New parameter on ``bzrlib.transport.Transport.readv``
 
7970
  ``adjust_for_latency`` which changes readv from returning strictly the
 
7971
  requested data to inserted return larger ranges and in forward read order
 
7972
  to reduce the effect of network latency. (Robert Collins)
 
7973
 
 
7974
* New parameter yield_parents on ``Inventory.iter_entries_by_dir`` which
 
7975
  causes the parents of a selected id to be returned recursively, so all the
 
7976
  paths from the root down to each element of selected_file_ids are
 
7977
  returned. (Robert Collins)
 
7978
 
 
7979
* Knit joining has been enhanced to support plain to annotated conversion
 
7980
  and annotated to plain conversion. (Ian Clatworthy)
 
7981
 
 
7982
* The CommitBuilder method ``record_entry_contents`` now returns summary
 
7983
  information about the effect of the commit on the repository. This tuple
 
7984
  contains an inventory delta item if the entry changed from the basis, and a
 
7985
  boolean indicating whether a new file graph node was recorded.
 
7986
  (Robert Collins)
 
7987
 
 
7988
* The python path used in the Makefile can now be overridden.
 
7989
  (Andrew Bennetts, Ian Clatworthy)
 
7990
 
 
7991
Testing
 
7992
*******
 
7993
 
 
7994
* New transport implementation ``trace+`` which is useful for testing,
 
7995
  logging activity taken to its _activity attribute. (Robert Collins)
 
7996
 
 
7997
* When running bzr commands within the test suite, internal exceptions are
 
7998
  not caught and reported in the usual way, but rather allowed to propagate
 
7999
  up and be visible to the test suite.  A new API ``run_bzr_catch_user_errors``
 
8000
  makes this behavior available to other users.
 
8001
  (Martin Pool)
 
8002
 
 
8003
* New method ``TestCase.call_catch_warnings`` for testing methods that
 
8004
  raises a Python warning.  (Martin Pool)
 
8005
 
 
8006
 
 
8007
bzr 0.91
 
8008
########
 
8009
 
 
8010
:Released: 2007-09-26
 
8011
 
 
8012
Bug Fixes
 
8013
*********
 
8014
 
 
8015
* Print a warning instead of aborting the ``python setup.py install``
 
8016
  process if building of a C extension is not possible.
 
8017
  (Lukáš Lalinský, Alexander Belchenko)
 
8018
 
 
8019
* Fix commit ordering in corner case (Aaron Bentley, #94975)
 
8020
 
 
8021
* Fix ''bzr info bzr://host/'' and other operations on ''bzr://' URLs with
 
8022
  an implicit port.  We were incorrectly raising PathNotChild due to
 
8023
  inconsistent treatment of the ''_port'' attribute on the Transport object.
 
8024
  (Andrew Bennetts, #133965)
 
8025
 
 
8026
* Make RemoteRepository.sprout cope gracefully with servers that don't
 
8027
  support the ``Repository.tarball`` request.
 
8028
  (Andrew Bennetts)
 
8029
 
 
8030
 
 
8031
bzr 0.91rc2
 
8032
###########
 
8033
 
 
8034
:Released: 2007-09-11
 
8035
 
 
8036
* Replaced incorrect tarball for previous release; a debug statement was left
 
8037
  in bzrlib/remote.py.
 
8038
 
 
8039
 
 
8040
bzr 0.91rc1
 
8041
###########
 
8042
 
 
8043
:Released: 2007-09-11
 
8044
 
 
8045
Changes
 
8046
*******
 
8047
 
 
8048
* The default branch and repository format has changed to
 
8049
  ``dirstate-tags``, so tag commands are active by default.
 
8050
  This format is compatible with Bazaar 0.15 and later.
 
8051
  This incidentally fixes bug #126141.
 
8052
  (Martin Pool)
 
8053
 
 
8054
* ``--quiet`` or ``-q`` is no longer a global option. If present, it
 
8055
  must now appear after the command name. Scripts doing things like
 
8056
  ``bzr -q missing`` need to be rewritten as ``bzr missing -q``.
 
8057
  (Ian Clatworthy)
 
8058
 
 
8059
Features
 
8060
********
 
8061
 
 
8062
* New option ``--author`` in ``bzr commit`` to specify the author of the
 
8063
  change, if it's different from the committer. ``bzr log`` and
 
8064
  ``bzr annotate`` display the author instead of the committer.
 
8065
  (Lukáš Lalinský)
 
8066
 
 
8067
* In addition to global options and command specific options, a set of
 
8068
  standard options are now supported. Standard options are legal for
 
8069
  all commands. The initial set of standard options are:
 
8070
 
 
8071
  * ``--help`` or ``-h`` - display help message
 
8072
  * ``--verbose`` or ``-v`` - display additional information
 
8073
  * ``--quiet``  or ``-q`` - only output warnings and errors.
 
8074
 
 
8075
  Unlike global options, standard options can be used in aliases and
 
8076
  may have command-specific help. (Ian Clatworthy)
 
8077
 
 
8078
* Verbosity level processing has now been unified. If ``--verbose``
 
8079
  or ``-v`` is specified on the command line multiple times, the
 
8080
  verbosity level is made positive the first time then increased.
 
8081
  If ``--quiet`` or ``-q`` is specified on the command line
 
8082
  multiple times, the verbosity level is made negative the first
 
8083
  time then decreased. To get the default verbosity level of zero,
 
8084
  either specify none of the above , ``--no-verbose`` or ``--no-quiet``.
 
8085
  Note that most commands currently ignore the magnitude of the
 
8086
  verbosity level but do respect *quiet vs normal vs verbose* when
 
8087
  generating output. (Ian Clatworthy)
 
8088
 
 
8089
* ``Branch.hooks`` now supports ``pre_commit`` hook. The hook's signature
 
8090
  is documented in BranchHooks constructor. (Nam T. Nguyen, #102747)
 
8091
 
 
8092
* New ``Repository.stream_knit_data_for_revisions`` request added to the
 
8093
  network protocol for greatly reduced roundtrips when retrieving a set of
 
8094
  revisions. (Andrew Bennetts)
 
8095
 
 
8096
Bug Fixes
 
8097
*********
 
8098
 
 
8099
* ``bzr plugins`` now lists the version number for each plugin in square
 
8100
  brackets after the path. (Robert Collins, #125421)
 
8101
 
 
8102
* Pushing, pulling and branching branches with subtree references was not
 
8103
  copying the subtree weave, preventing the file graph from being accessed
 
8104
  and causing errors in commits in clones. (Robert Collins)
 
8105
 
 
8106
* Suppress warning "integer argument expected, got float" from Paramiko,
 
8107
  which sometimes caused false test failures.  (Martin Pool)
 
8108
 
 
8109
* Fix bug in bundle 4 that could cause attempts to write data to wrong
 
8110
  versionedfile.  (Aaron Bentley)
 
8111
 
 
8112
* Diffs generated using "diff -p" no longer break the patch parser.
 
8113
  (Aaron Bentley)
 
8114
 
 
8115
* get_transport treats an empty possible_transports list the same as a non-
 
8116
  empty one.  (Aaron Bentley)
 
8117
 
 
8118
* patch verification for merge directives is reactivated, and works with
 
8119
  CRLF and CR files.  (Aaron Bentley)
 
8120
 
 
8121
* Accept ..\ as a path in revision specifiers. This fixes for example
 
8122
  "-r branch:..\other-branch" on Windows.  (Lukáš Lalinský)
 
8123
 
 
8124
* ``BZR_PLUGIN_PATH`` may now contain trailing slashes.
 
8125
  (Blake Winton, #129299)
 
8126
 
 
8127
* man page no longer lists hidden options (#131667, Aaron Bentley)
 
8128
 
 
8129
* ``uncommit --help`` now explains the -r option adequately.  (Daniel
 
8130
  Watkins, #106726)
 
8131
 
 
8132
* Error messages are now better formatted with parameters (such as
 
8133
  filenames) quoted when necessary. This avoids confusion when directory
 
8134
  names ending in a '.' at the end of messages were confused with a
 
8135
  full stop that may or not have been there. (Daniel Watkins, #129791)
 
8136
 
 
8137
* Fix ``status FILE -r X..Y``. (Lukáš Lalinský)
 
8138
 
 
8139
* If a particular command is an alias, ``help`` will show the alias
 
8140
  instead of claiming there is no help for said alias. (Daniel Watkins,
 
8141
  #133548)
 
8142
 
 
8143
* TreeTransform-based operations, like pull, merge, revert, and branch,
 
8144
  now roll back if they encounter an error.  (Aaron Bentley, #67699)
 
8145
 
 
8146
* ``bzr commit`` now exits cleanly if a character unsupported by the
 
8147
  current encoding is used in the commit message.  (Daniel Watkins,
 
8148
  #116143)
 
8149
 
 
8150
* bzr send uses default values for ranges when only half of an elipsis
 
8151
  is specified ("-r..5" or "-r5..").  (#61685, Aaron Bentley)
 
8152
 
 
8153
* Avoid trouble when Windows ssh calls itself 'plink' but no plink
 
8154
  binary is present.  (Martin Albisetti, #107155)
 
8155
 
 
8156
* ``bzr remove`` should remove clean subtrees.  Now it will remove (without
 
8157
  needing ``--force``) subtrees that contain no files with text changes or
 
8158
  modified files.  With ``--force`` it removes the subtree regardless of
 
8159
  text changes or unknown files. Directories with renames in or out (but
 
8160
  not changed otherwise) will now be removed without needing ``--force``.
 
8161
  Unknown ignored files will be deleted without needing ``--force``.
 
8162
  (Marius Kruger, #111665)
 
8163
 
 
8164
* When two plugins conflict, the source of both the losing and now the
 
8165
  winning definition is shown.  (Konstantin Mikhaylov, #5454)
 
8166
 
 
8167
* When committing to a branch, the location being committed to is
 
8168
  displayed.  (Daniel Watkins, #52479)
 
8169
 
 
8170
* ``bzr --version`` takes care about encoding of stdout, especially
 
8171
  when output is redirected. (Alexander Belchenko, #131100)
 
8172
 
 
8173
* Prompt for an ftp password if none is provided.
 
8174
  (Vincent Ladeuil, #137044)
 
8175
 
 
8176
* Reuse bound branch associated transport to avoid multiple
 
8177
  connections.
 
8178
  (Vincent Ladeuil, #128076, #131396)
 
8179
 
 
8180
* Overwrite conflicting tags by ``push`` and ``pull`` if the
 
8181
  ``--overwrite`` option is specified.  (Lukáš Lalinský, #93947)
 
8182
 
 
8183
* In checkouts, tags are copied into the master branch when created,
 
8184
  changed or deleted, and are copied into the checkout when it is
 
8185
  updated.  (Martin Pool, #93856, #93860)
 
8186
 
 
8187
* Print a warning instead of aborting the ``python setup.py install``
 
8188
  process if building of a C extension is not possible.
 
8189
  (Lukáš Lalinský, Alexander Belchenko)
 
8190
 
 
8191
Improvements
 
8192
************
 
8193
 
 
8194
* Add the option "--show-diff" to the commit command in order to display
 
8195
  the diff during the commit log creation. (Goffredo Baroncelli)
 
8196
 
 
8197
* ``pull`` and ``merge`` are much faster at installing bundle format 4.
 
8198
  (Aaron Bentley)
 
8199
 
 
8200
* ``pull -v`` no longer includes deltas, making it much faster.
 
8201
  (Aaron Bentley)
 
8202
 
 
8203
* ``send`` now sends the directive as an attachment by default.
 
8204
  (Aaron Bentley, Lukáš Lalinský, Alexander Belchenko)
 
8205
 
 
8206
* Documentation updates (Martin Albisetti)
 
8207
 
 
8208
* Help on debug flags is now included in ``help global-options``.
 
8209
  (Daniel Watkins, #124853)
 
8210
 
 
8211
* Parameters passed on the command line are checked to ensure they are
 
8212
  supported by the encoding in use. (Daniel Watkins)
 
8213
 
 
8214
* The compression used within the bzr repository has changed from zlib
 
8215
  level 9 to the zlib default level. This improves commit performance with
 
8216
  only a small increase in space used (and in some cases a reduction in
 
8217
  space). (Robert Collins)
 
8218
 
 
8219
* Initial commit no longer SHAs files twice and now reuses the path
 
8220
  rather than looking it up again, making it faster.
 
8221
  (Ian Clatworthy)
 
8222
 
 
8223
* New option ``-c``/``--change`` for ``diff`` and ``status`` to show
 
8224
  changes in one revision.  (Lukáš Lalinský)
 
8225
 
 
8226
* If versioned files match a given ignore pattern, a warning is now
 
8227
  given. (Daniel Watkins, #48623)
 
8228
 
 
8229
* ``bzr status`` now has -S as a short name for --short and -V as a
 
8230
  short name for --versioned. These have been added to assist users
 
8231
  migrating from Subversion: ``bzr status -SV`` is now like
 
8232
  ``svn status -q``.  (Daniel Watkins, #115990)
 
8233
 
 
8234
* Added C implementation of  ``PatienceSequenceMatcher``, which is about
 
8235
  10x faster than the Python version. This speeds up commands that
 
8236
  need file diffing, such as ``bzr commit`` or ``bzr diff``.
 
8237
  (Lukáš Lalinský)
 
8238
 
 
8239
* HACKING has been extended with a large section on core developer tasks.
 
8240
  (Ian Clatworthy)
 
8241
 
 
8242
* Add ``branches`` and ``standalone-trees`` as online help topics and
 
8243
  include them as Concepts within the User Reference.
 
8244
  (Paul Moore, Ian Clatworthy)
 
8245
 
 
8246
* ``check`` can detect versionedfile parent references that are
 
8247
  inconsistent with revision and inventory info, and ``reconcile`` can fix
 
8248
  them.  These faulty references were generated by 0.8-era releases,
 
8249
  so repositories which were manipulated by old bzrs should be
 
8250
  checked, and possibly reconciled ASAP.  (Aaron Bentley, Andrew Bennetts)
 
8251
 
 
8252
API Breaks
 
8253
**********
 
8254
 
 
8255
* ``Branch.append_revision`` is removed altogether; please use
 
8256
  ``Branch.set_last_revision_info`` instead.  (Martin Pool)
 
8257
 
 
8258
* CommitBuilder now advertises itself as requiring the root entry to be
 
8259
  supplied. This only affects foreign repository implementations which reuse
 
8260
  CommitBuilder directly and have changed record_entry_contents to require
 
8261
  that the root not be supplied. This should be precisely zero plugins
 
8262
  affected. (Robert Collins)
 
8263
 
 
8264
* The ``add_lines`` methods on ``VersionedFile`` implementations has changed
 
8265
  its return value to include the sha1 and length of the inserted text. This
 
8266
  allows the avoidance of double-sha1 calculations during commit.
 
8267
  (Robert Collins)
 
8268
 
 
8269
* ``Transport.should_cache`` has been removed.  It was not called in the
 
8270
  previous release.  (Martin Pool)
 
8271
 
 
8272
Testing
 
8273
*******
 
8274
 
 
8275
* Tests may now raise TestNotApplicable to indicate they shouldn't be
 
8276
  run in a particular scenario.  (Martin Pool)
 
8277
 
 
8278
* New function multiply_tests_from_modules to give a simpler interface
 
8279
  to test parameterization.  (Martin Pool, Robert Collins)
 
8280
 
 
8281
* ``Transport.should_cache`` has been removed.  It was not called in the
 
8282
  previous release.  (Martin Pool)
 
8283
 
 
8284
* NULL_REVISION is returned to indicate the null revision, not None.
 
8285
  (Aaron Bentley)
 
8286
 
 
8287
* Use UTF-8 encoded StringIO for log tests to avoid failures on
 
8288
  non-ASCII committer names.  (Lukáš Lalinský)
 
8289
 
 
8290
Internals
 
8291
*********
 
8292
 
 
8293
* ``bzrlib.plugin.all_plugins`` has been deprecated in favour of
 
8294
  ``bzrlib.plugin.plugins()`` which returns PlugIn objects that provide
 
8295
  useful functionality for determining the path of a plugin, its tests, and
 
8296
  its version information. (Robert Collins)
 
8297
 
 
8298
* Add the option user_encoding to the function 'show_diff_trees()'
 
8299
  in order to move the user encoding at the UI level. (Goffredo Baroncelli)
 
8300
 
 
8301
* Add the function make_commit_message_template_encoded() and the function
 
8302
  edit_commit_message_encoded() which handle encoded strings.
 
8303
  This is done in order to mix the commit messages (which is a unicode
 
8304
  string), and the diff which is a raw string. (Goffredo Baroncelli)
 
8305
 
 
8306
* CommitBuilder now defaults to using add_lines_with_ghosts, reducing
 
8307
  overhead on non-weave repositories which don't require all parents to be
 
8308
  present. (Robert Collins)
 
8309
 
 
8310
* Deprecated method ``find_previous_heads`` on
 
8311
  ``bzrlib.inventory.InventoryEntry``. This has been superseded by the use
 
8312
  of ``parent_candidates`` and a separate heads check via the repository
 
8313
  API. (Robert Collins)
 
8314
 
 
8315
* New trace function ``mutter_callsite`` will print out a subset of the
 
8316
  stack to the log, which can be useful for gathering debug details.
 
8317
  (Robert Collins)
 
8318
 
 
8319
* ``bzrlib.pack.ContainerWriter`` now tracks how many records have been
 
8320
  added via a public attribute records_written. (Robert Collins)
 
8321
 
 
8322
* New method ``bzrlib.transport.Transport.get_recommended_page_size``.
 
8323
  This provides a hint to users of transports as to the reasonable
 
8324
  minimum data to read. In principle this can take latency and
 
8325
  bandwidth into account on a per-connection basis, but for now it
 
8326
  just has hard coded values based on the url. (e.g. http:// has a large
 
8327
  page size, file:// has a small one.) (Robert Collins)
 
8328
 
 
8329
* New method on ``bzrlib.transport.Transport`` ``open_write_stream`` allows
 
8330
  incremental addition of data to a file without requiring that all the
 
8331
  data be buffered in memory. (Robert Collins)
 
8332
 
 
8333
* New methods on ``bzrlib.knit.KnitVersionedFile``:
 
8334
  ``get_data_stream(versions)``, ``insert_data_stream(stream)`` and
 
8335
  ``get_format_signature()``.  These provide some infrastructure for
 
8336
  efficiently streaming the knit data for a set of versions over the smart
 
8337
  protocol.
 
8338
 
 
8339
* Knits with no annotation cache still produce correct annotations.
 
8340
  (Aaron Bentley)
 
8341
 
 
8342
* Three new methods have been added to ``bzrlib.trace``:
 
8343
  ``set_verbosity_level``, ``get_verbosity_level`` and ``is_verbose``.
 
8344
  ``set_verbosity_level`` expects a numeric value: negative for quiet,
 
8345
  zero for normal, positive for verbose. The size of the number can be
 
8346
  used to determine just how quiet or verbose the application should be.
 
8347
  The existing ``be_quiet`` and ``is_quiet`` routines have been
 
8348
  integrated into this new scheme. (Ian Clatworthy)
 
8349
 
 
8350
* Options can now be delcared with a ``custom_callback`` parameter. If
 
8351
  set, this routine is called after the option is processed. This feature
 
8352
  is now used by the standard options ``verbose`` and ``quiet`` so that
 
8353
  setting one implicitly resets the other. (Ian Clatworthy)
 
8354
 
 
8355
* Rather than declaring a new option from scratch in order to provide
 
8356
  custom help, a centrally registered option can be decorated using the
 
8357
  new ``bzrlib.Option.custom_help`` routine. In particular, this routine
 
8358
  is useful when declaring better help for the ``verbose`` and ``quiet``
 
8359
  standard options as the base definition of these is now more complex
 
8360
  than before thanks to their use of a custom callback. (Ian Clatworthy)
 
8361
 
 
8362
* Tree._iter_changes(specific_file=[]) now iterates through no files,
 
8363
  instead of iterating through all files.  None is used to iterate through
 
8364
  all files.  (Aaron Bentley)
 
8365
 
 
8366
* WorkingTree.revert() now accepts None to revert all files.  The use of
 
8367
  [] to revert all files is deprecated.  (Aaron Bentley)
 
8368
 
 
8369
 
 
8370
bzr 0.90
 
8371
########
 
8372
 
 
8373
:Released: 2007-08-28
 
8374
 
 
8375
Improvements
 
8376
************
 
8377
 
 
8378
* Documentation is now organized into multiple directories with a level
 
8379
  added for different languages or locales. Added the Mini Tutorial
 
8380
  and Quick Start Summary (en) documents from the Wiki, improving the
 
8381
  content and readability of the former. Formatted NEWS as Release Notes
 
8382
  complete with a Table of Conents, one heading per release. Moved the
 
8383
  Developer Guide into the main document catalog and provided a link
 
8384
  from the developer document catalog back to the main one.
 
8385
  (Ian Clatworthy, Sabin Iacob, Alexander Belchenko)
 
8386
 
 
8387
 
 
8388
API Changes
 
8389
***********
 
8390
 
 
8391
* The static convenience method ``BzrDir.create_repository``
 
8392
  is deprecated.  Callers should instead create a ``BzrDir`` instance
 
8393
  and call ``create_repository`` on that.  (Martin Pool)
 
8394
 
 
8395
 
 
8396
bzr 0.90rc1
 
8397
###########
 
8398
 
 
8399
:Released: 2007-08-14
 
8400
 
 
8401
Bugfixes
 
8402
********
 
8403
 
 
8404
* ``bzr init`` should connect to the remote location one time only.  We
 
8405
  have been connecting several times because we forget to pass around the
 
8406
  Transport object. This modifies ``BzrDir.create_branch_convenience``,
 
8407
  so that we can give it the Transport we already have.
 
8408
  (John Arbash Meinel, Vincent Ladeuil, #111702)
 
8409
 
 
8410
* Get rid of sftp connection cache (get rid of the FTP one too).
 
8411
  (Vincent Ladeuil, #43731)
 
8412
 
 
8413
* bzr branch {local|remote} remote don't try to create a working tree
 
8414
  anymore.
 
8415
  (Vincent Ladeuil, #112173)
 
8416
 
 
8417
* All identified multiple connections for a single bzr command have been
 
8418
  fixed. See bzrlib/tests/commands directory.
 
8419
  (Vincent Ladeuil)
 
8420
 
 
8421
* ``bzr rm`` now does not insist on ``--force`` to delete files that
 
8422
  have been renamed but not otherwise modified.  (Marius Kruger,
 
8423
  #111664)
 
8424
 
 
8425
* ``bzr selftest --bench`` no longer emits deprecation warnings
 
8426
  (Lukáš Lalinský)
 
8427
 
 
8428
* ``bzr status`` now honours FILE parameters for conflict lists
 
8429
  (Aaron Bentley, #127606)
 
8430
 
 
8431
* ``bzr checkout`` now honours -r when reconstituting a working tree.
 
8432
  It also honours -r 0.  (Aaron Bentley, #127708)
 
8433
 
 
8434
* ``bzr add *`` no more fails on Windows if working tree contains
 
8435
  non-ascii file names. (Kuno Meyer, #127361)
 
8436
 
 
8437
* allow ``easy_install bzr`` runs without fatal errors.
 
8438
  (Alexander Belchenko, #125521)
 
8439
 
 
8440
* Graph._filter_candidate_lca does not raise KeyError if a candidate
 
8441
  is eliminated just before it would normally be examined.  (Aaron Bentley)
 
8442
 
 
8443
* SMTP connection failures produce a nice message, not a traceback.
 
8444
  (Aaron Bentley)
 
8445
 
 
8446
Improvements
 
8447
************
 
8448
 
 
8449
* Don't show "dots" progress indicators when run non-interactively, such
 
8450
  as from cron.  (Martin Pool)
 
8451
 
 
8452
* ``info`` now formats locations more nicely and lists "submit" and
 
8453
  "public" branches (Aaron Bentley)
 
8454
 
 
8455
* New ``pack`` command that will trigger database compression within
 
8456
  the repository (Robert Collins)
 
8457
 
 
8458
* Implement ``_KnitIndex._load_data`` in a pyrex extension. The pyrex
 
8459
  version is approximately 2-3x faster at parsing a ``.kndx`` file.
 
8460
  Which yields a measurable improvement for commands which have to
 
8461
  read from the repository, such as a 1s => 0.75s improvement in
 
8462
  ``bzr diff`` when there are changes to be shown.  (John Arbash Meinel)
 
8463
 
 
8464
* Merge is now faster.  Depending on the scenario, it can be more than 2x
 
8465
  faster. (Aaron Bentley)
 
8466
 
 
8467
* Give a clearer warning, and allow ``python setup.py install`` to
 
8468
  succeed even if pyrex is not available.
 
8469
  (John Arbash Meinel)
 
8470
 
 
8471
* ``DirState._read_dirblocks`` now has an optional Pyrex
 
8472
  implementation. This improves the speed of any command that has to
 
8473
  read the entire DirState. (``diff``, ``status``, etc, improve by
 
8474
  about 10%).
 
8475
  ``bisect_dirblocks`` has also been improved, which helps all
 
8476
  ``_get_entry`` type calls (whenever we are searching for a
 
8477
  particular entry in the in-memory DirState).
 
8478
  (John Arbash Meinel)
 
8479
 
 
8480
* ``bzr pull`` and ``bzr push`` no longer do a complete walk of the
 
8481
  branch revision history for ui display unless -v is supplied.
 
8482
  (Robert Collins)
 
8483
 
 
8484
* ``bzr log -rA..B`` output shifted to the left margin if the log only
 
8485
  contains merge revisions. (Kent Gibson)
 
8486
 
 
8487
* The ``plugins`` command is now public with improved help.
 
8488
  (Ian Clatworthy)
 
8489
 
 
8490
* New bundle and merge directive formats are faster to generate, and
 
8491
 
 
8492
* Annotate merge now works when there are local changes. (Aaron Bentley)
 
8493
 
 
8494
* Commit now only shows the progress in terms of directories instead of
 
8495
  entries. (Ian Clatworthy)
 
8496
 
 
8497
* Fix ``KnitRepository.get_revision_graph`` to not request the graph 2
 
8498
  times. This makes ``get_revision_graph`` 2x faster. (John Arbash
 
8499
  Meinel)
 
8500
 
 
8501
* Fix ``VersionedFile.get_graph()`` to avoid using
 
8502
  ``set.difference_update(other)``, which has bad scaling when
 
8503
  ``other`` is large. This improves ``VF.get_graph([version_id])`` for
 
8504
  a 12.5k graph from 2.9s down to 200ms. (John Arbash Meinel)
 
8505
 
 
8506
* The ``--lsprof-file`` option now generates output for KCacheGrind if
 
8507
  the file starts with ``callgrind.out``. This matches the default file
 
8508
  filtering done by KCacheGrind's Open Dialog. (Ian Clatworthy)
 
8509
 
 
8510
* Fix ``bzr update`` to avoid an unnecessary
 
8511
  ``branch.get_master_branch`` call, which avoids 1 extra connection
 
8512
  to the remote server. (Partial fix for #128076, John Arbash Meinel)
 
8513
 
 
8514
* Log errors from the smart server in the trace file, to make debugging
 
8515
  test failures (and live failures!) easier.  (Andrew Bennetts)
 
8516
 
 
8517
* The HTML version of the man page has been superceded by a more
 
8518
  comprehensive manual called the Bazaar User Reference. This manual
 
8519
  is completed generated from the online help topics. As part of this
 
8520
  change, limited reStructuredText is now explicitly supported in help
 
8521
  topics and command help with 'unnatural' markup being removed prior
 
8522
  to display by the online help or inclusion in the man page.
 
8523
  (Ian Clatworthy)
 
8524
 
 
8525
* HTML documentation now use files extension ``*.html``
 
8526
  (Alexander Belchenko)
 
8527
 
 
8528
* The cache of ignore definitions is now cleared in WorkingTree.unlock()
 
8529
  so that changes to .bzrignore aren't missed. (#129694, Daniel Watkins)
 
8530
 
 
8531
* ``bzr selftest --strict`` fails if there are any missing features or
 
8532
  expected test failures. (Daniel Watkins, #111914)
 
8533
 
 
8534
* Link to registration survey added to README. (Ian Clatworthy)
 
8535
 
 
8536
* Windows standalone installer show link to registration survey
 
8537
  when installation finished. (Alexander Belchenko)
 
8538
 
 
8539
Library API Breaks
 
8540
******************
 
8541
 
 
8542
* Deprecated dictionary ``bzrlib.option.SHORT_OPTIONS`` removed.
 
8543
  Options are now required to provide a help string and it must
 
8544
  comply with the style guide by being one or more sentences with an
 
8545
  initial capital and final period. (Martin Pool)
 
8546
 
 
8547
* KnitIndex.get_parents now returns tuples. (Robert Collins)
 
8548
 
 
8549
* Ancient unused ``Repository.text_store`` attribute has been removed.
 
8550
  (Robert Collins)
 
8551
 
 
8552
* The ``bzrlib.pack`` interface has changed to use tuples of bytestrings
 
8553
  rather than just bytestrings, making it easier to represent multiple
 
8554
  element names. As this interface was not used by any internal facilities
 
8555
  since it was introduced in 0.18 no API compatibility is being preserved.
 
8556
  The serialised form of these packs is identical with 0.18 when a single
 
8557
  element tuple is in use. (Robert Collins)
 
8558
 
 
8559
Internals
 
8560
*********
 
8561
 
 
8562
* merge now uses ``iter_changes`` to calculate changes, which makes room for
 
8563
  future performance increases.  It is also more consistent with other
 
8564
  operations that perform comparisons, and reduces reliance on
 
8565
  Tree.inventory.  (Aaron Bentley)
 
8566
 
 
8567
* Refactoring of transport classes connected to a remote server.
 
8568
  ConnectedTransport is a new class that serves as a basis for all
 
8569
  transports needing to connect to a remote server.  transport.split_url
 
8570
  have been deprecated, use the static method on the object instead. URL
 
8571
  tests have been refactored too.
 
8572
  (Vincent Ladeuil)
 
8573
 
 
8574
* Better connection sharing for ConnectedTransport objects.
 
8575
  transport.get_transport() now accepts a 'possible_transports' parameter.
 
8576
  If a newly requested transport can share a connection with one of the
 
8577
  list, it will.
 
8578
  (Vincent Ladeuil)
 
8579
 
 
8580
* Most functions now accept ``bzrlib.revision.NULL_REVISION`` to indicate
 
8581
  the null revision, and consider using ``None`` for this purpose
 
8582
  deprecated.  (Aaron Bentley)
 
8583
 
 
8584
* New ``index`` module with abstract index functionality. This will be
 
8585
  used during the planned changes in the repository layer. Currently the
 
8586
  index layer provides a graph aware immutable index, a builder for the
 
8587
  same index type to allow creating them, and finally a composer for
 
8588
  such indices to allow the use of many indices in a single query. The
 
8589
  index performance is not optimised, however the API is stable to allow
 
8590
  development on top of the index. (Robert Collins)
 
8591
 
 
8592
* ``bzrlib.dirstate.cmp_by_dirs`` can be used to compare two paths by
 
8593
  their directory sections. This is equivalent to comparing
 
8594
  ``path.split('/')``, only without having to split the paths.
 
8595
  This has a Pyrex implementation available.
 
8596
  (John Arbash Meinel)
 
8597
 
 
8598
* New transport decorator 'unlistable+' which disables the list_dir
 
8599
  functionality for testing.
 
8600
 
 
8601
* Deprecated ``change_entry`` in transform.py. (Ian Clatworthy)
 
8602
 
 
8603
* RevisionTree.get_weave is now deprecated.  Tree.plan_merge is now used
 
8604
  for performing annotate-merge.  (Aaron Bentley)
 
8605
 
 
8606
* New EmailMessage class to create email messages. (Adeodato Simó)
 
8607
 
 
8608
* Unused functions on the private interface KnitIndex have been removed.
 
8609
  (Robert Collins)
 
8610
 
 
8611
* New ``knit.KnitGraphIndex`` which provides a ``KnitIndex`` layered on top
 
8612
  of a ``index.GraphIndex``. (Robert Collins)
 
8613
 
 
8614
* New ``knit.KnitVersionedFile.iter_parents`` method that allows querying
 
8615
  the parents of many knit nodes at once, reducing round trips to the
 
8616
  underlying index. (Robert Collins)
 
8617
 
 
8618
* Graph now has an is_ancestor method, various bits use it.
 
8619
  (Aaron Bentley)
 
8620
 
 
8621
* The ``-Dhpss`` flag now includes timing information. As well as
 
8622
  logging when a new connection is opened. (John Arbash Meinel)
 
8623
 
 
8624
* ``bzrlib.pack.ContainerWriter`` now returns an offset, length tuple to
 
8625
  callers when inserting data, allowing generation of readv style access
 
8626
  during pack creation, without needing a separate pass across the output
 
8627
  pack to gather such details. (Robert Collins)
 
8628
 
 
8629
* ``bzrlib.pack.make_readv_reader`` allows readv based access to pack
 
8630
  files that are stored on a transport. (Robert Collins)
 
8631
 
 
8632
* New ``Repository.has_same_location`` method that reports if two
 
8633
  repository objects refer to the same repository (although with some risk
 
8634
  of false negatives).  (Andrew Bennetts)
 
8635
 
 
8636
* InterTree.compare now passes require_versioned on correctly.
 
8637
  (Marius Kruger)
 
8638
 
 
8639
* New methods on Repository - ``start_write_group``,
 
8640
  ``commit_write_group``, ``abort_write_group`` and ``is_in_write_group`` -
 
8641
  which provide a clean hook point for transactional Repositories - ones
 
8642
  where all the data for a fetch or commit needs to be made atomically
 
8643
  available in one step. This allows the write lock to remain while making
 
8644
  a series of data insertions.  (e.g. data conversion). (Robert Collins)
 
8645
 
 
8646
* In ``bzrlib.knit`` the internal interface has been altered to use
 
8647
  3-tuples (index, pos, length) rather than two-tuples (pos, length) to
 
8648
  describe where data in a knit is, allowing knits to be split into
 
8649
  many files. (Robert Collins)
 
8650
 
 
8651
* ``bzrlib.knit._KnitData`` split into cache management and physical access
 
8652
  with two access classes - ``_PackAccess`` and ``_KnitAccess`` defined.
 
8653
  The former provides access into a .pack file, and the latter provides the
 
8654
  current production repository form of .knit files. (Robert Collins)
 
8655
 
 
8656
Testing
 
8657
*******
 
8658
 
 
8659
* Remove selftest ``--clean-output``, ``--numbered-dirs`` and
 
8660
  ``--keep-output`` options, which are obsolete now that tests
 
8661
  are done within directories in $TMPDIR.  (Martin Pool)
 
8662
 
 
8663
* The SSH_AUTH_SOCK environment variable is now reset to avoid
 
8664
  interaction with any running ssh agents.  (Jelmer Vernooij, #125955)
 
8665
 
 
8666
* run_bzr_subprocess handles parameters the same way as run_bzr:
 
8667
  either a string or a list of strings should be passed as the first
 
8668
  parameter.  Varargs-style parameters are deprecated. (Aaron Bentley)
 
8669
 
 
8670
 
 
8671
bzr 0.18
 
8672
########
 
8673
 
 
8674
:Released:  2007-07-17
 
8675
 
 
8676
Bugfixes
 
8677
********
 
8678
 
 
8679
* Fix 'bzr add' crash under Win32 (Kuno Meyer)
 
8680
 
 
8681
 
 
8682
bzr 0.18rc1
 
8683
###########
 
8684
 
 
8685
:Released:  2007-07-10
 
8686
 
 
8687
Bugfixes
 
8688
********
 
8689
 
 
8690
* Do not suppress pipe errors, etc. in non-display commands
 
8691
  (Alexander Belchenko, #87178)
 
8692
 
 
8693
* Display a useful error message when the user requests to annotate
 
8694
  a file that is not present in the specified revision.
 
8695
  (James Westby, #122656)
 
8696
 
 
8697
* Commands that use status flags now have a reference to 'help
 
8698
  status-flags'.  (Daniel Watkins, #113436)
 
8699
 
 
8700
* Work around python-2.4.1 inhability to correctly parse the
 
8701
  authentication header.
 
8702
  (Vincent Ladeuil, #121889)
 
8703
 
 
8704
* Use exact encoding for merge directives. (Adeodato Simó, #120591)
 
8705
 
 
8706
* Fix tempfile permissions error in smart server tar bundling under
 
8707
  Windows. (Martin _, #119330)
 
8708
 
 
8709
* Fix detection of directory entries in the inventory. (James Westby)
 
8710
 
 
8711
* Fix handling of http code 400: Bad Request When issuing too many ranges.
 
8712
  (Vincent Ladeuil, #115209)
 
8713
 
 
8714
* Issue a CONNECT request when connecting to an https server
 
8715
  via a proxy to enable SSL tunneling.
 
8716
  (Vincent Ladeuil, #120678)
 
8717
 
 
8718
* Fix ``bzr log -r`` to support selecting merge revisions, both
 
8719
  individually and as part of revision ranges.
 
8720
  (Kent Gibson, #4663)
 
8721
 
 
8722
* Don't leave cruft behind when failing to acquire a lockdir.
 
8723
  (Martin Pool, #109169)
 
8724
 
 
8725
* Don't use the '-f' strace option during tests.
 
8726
  (Vincent Ladeuil, #102019).
 
8727
 
 
8728
* Warn when setting ``push_location`` to a value that will be masked by
 
8729
  locations.conf.  (Aaron Bentley, #122286)
 
8730
 
 
8731
* Fix commit ordering in corner case (Aaron Bentley, #94975)
 
8732
 
 
8733
*  Make annotate behave in a non-ASCII world (Adeodato Simó).
 
8734
 
 
8735
Improvements
 
8736
************
 
8737
 
 
8738
* The --lsprof-file option now dumps a text rendering of the profiling
 
8739
  information if the filename ends in ".txt". It will also convert the
 
8740
  profiling information to a format suitable for KCacheGrind if the
 
8741
  output filename ends in ".callgrind". Fixes to the lsprofcalltree
 
8742
  conversion process by Jean Paul Calderone and Itamar were also merged.
 
8743
  See http://ddaa.net/blog/python/lsprof-calltree. (Ian Clatworthy)
 
8744
 
 
8745
* ``info`` now defaults to non-verbose mode, displaying only paths and
 
8746
  abbreviated format info.  ``info -v`` displays all the information
 
8747
  formerly displayed by ``info``.  (Aaron Bentley, Adeodato Simó)
 
8748
 
 
8749
* ``bzr missing`` now has better option names ``--this`` and ``--other``.
 
8750
  (Elliot Murphy)
 
8751
 
 
8752
* The internal ``weave-list`` command has become ``versionedfile-list``,
 
8753
  and now lists knits as well as weaves.  (Aaron Bentley)
 
8754
 
 
8755
* Automatic merge base selection uses a faster algorithm that chooses
 
8756
  better bases in criss-cross merge situations (Aaron Bentley)
 
8757
 
 
8758
* Progress reporting in ``commit`` has been improved. The various logical
 
8759
  stages are now reported on as follows, namely:
 
8760
 
 
8761
  * Collecting changes [Entry x/y] - Stage n/m
 
8762
  * Saving data locally - Stage n/m
 
8763
  * Uploading data to master branch - Stage n/m
 
8764
  * Updating the working tree - Stage n/m
 
8765
  * Running post commit hooks - Stage n/m
 
8766
 
 
8767
  If there is no master branch, the 3rd stage is omitted and the total
 
8768
  number of stages is adjusted accordingly.
 
8769
 
 
8770
  Each hook that is run after commit is listed with a name (as hooks
 
8771
  can be slow it is useful feedback).
 
8772
  (Ian Clatworthy, Robert Collins)
 
8773
 
 
8774
* Various operations that are now faster due to avoiding unnecessary
 
8775
  topological sorts. (Aaron Bentley)
 
8776
 
 
8777
* Make merge directives robust against broken bundles. (Aaron Bentley)
 
8778
 
 
8779
* The lsprof filename note is emitted via trace.note(), not standard
 
8780
  output.  (Aaron Bentley)
 
8781
 
 
8782
* ``bzrlib`` now exports explicit API compatibility information to assist
 
8783
  library users and plugins. See the ``bzrlib.api`` module for details.
 
8784
  (Robert Collins)
 
8785
 
 
8786
* Remove unnecessary lock probes when acquiring a lockdir.
 
8787
  (Martin Pool)
 
8788
 
 
8789
* ``bzr --version`` now shows the location of the bzr log file, which
 
8790
  is especially useful on Windows.  (Martin Pool)
 
8791
 
 
8792
* -D now supports hooks to get debug tracing of hooks (though its currently
 
8793
  minimal in nature). (Robert Collins)
 
8794
 
 
8795
* Long log format reports deltas on merge revisions.
 
8796
  (John Arbash Meinel, Kent Gibson)
 
8797
 
 
8798
* Make initial push over ftp more resilient. (John Arbash Meinel)
 
8799
 
 
8800
* Print a summary of changes for update just like pull does.
 
8801
  (Daniel Watkins, #113990)
 
8802
 
 
8803
* Add a -Dhpss option to trace smart protocol requests and responses.
 
8804
  (Andrew Bennetts)
 
8805
 
 
8806
Library API Breaks
 
8807
******************
 
8808
 
 
8809
* Testing cleanups -
 
8810
  ``bzrlib.repository.RepositoryTestProviderAdapter`` has been moved
 
8811
  to ``bzrlib.tests.repository_implementations``;
 
8812
  ``bzrlib.repository.InterRepositoryTestProviderAdapter`` has been moved
 
8813
  to ``bzrlib.tests.interrepository_implementations``;
 
8814
  ``bzrlib.transport.TransportTestProviderAdapter`` has moved to
 
8815
  ``bzrlib.tests.test_transport_implementations``.
 
8816
  ``bzrlib.branch.BranchTestProviderAdapter`` has moved to
 
8817
  ``bzrlib.tests.branch_implementations``.
 
8818
  ``bzrlib.bzrdir.BzrDirTestProviderAdapter`` has moved to
 
8819
  ``bzrlib.tests.bzrdir_implementations``.
 
8820
  ``bzrlib.versionedfile.InterVersionedFileTestProviderAdapter`` has moved
 
8821
  to ``bzrlib.tests.interversionedfile_implementations``.
 
8822
  ``bzrlib.store.revision.RevisionStoreTestProviderAdapter`` has moved to
 
8823
  ``bzrlib.tests.revisionstore_implementations``.
 
8824
  ``bzrlib.workingtree.WorkingTreeTestProviderAdapter`` has moved to
 
8825
  ``bzrlib.tests.workingtree_implementations``.
 
8826
  These changes are an API break in the testing infrastructure only.
 
8827
  (Robert Collins)
 
8828
 
 
8829
* Relocate TestCaseWithRepository to be more central. (Robert Collins)
 
8830
 
 
8831
* ``bzrlib.add.smart_add_tree`` will no longer perform glob expansion on
 
8832
  win32. Callers of the function should do this and use the new
 
8833
  ``MutableTree.smart_add`` method instead. (Robert Collins)
 
8834
 
 
8835
* ``bzrlib.add.glob_expand_for_win32`` is now
 
8836
  ``bzrlib.win32utils.glob_expand``.  (Robert Collins)
 
8837
 
 
8838
* ``bzrlib.add.FastPath`` is now private and moved to
 
8839
  ``bzrlib.mutabletree._FastPath``. (Robert Collins, Martin Pool)
 
8840
 
 
8841
* ``LockDir.wait`` removed.  (Martin Pool)
 
8842
 
 
8843
* The ``SmartServer`` hooks API has changed for the ``server_started`` and
 
8844
  ``server_stopped`` hooks. The first parameter is now an iterable of
 
8845
  backing URLs rather than a single URL. This is to reflect that many
 
8846
  URLs may map to the external URL of the server. E.g. the server interally
 
8847
  may have a chrooted URL but also the local file:// URL will be at the
 
8848
  same location. (Robert Collins)
 
8849
 
 
8850
Internals
 
8851
*********
 
8852
 
 
8853
* New SMTPConnection class to unify email handling.  (Adeodato Simó)
 
8854
 
 
8855
* Fix documentation of BzrError. (Adeodato Simó)
 
8856
 
 
8857
* Make BzrBadParameter an internal error. (Adeodato Simó)
 
8858
 
 
8859
* Remove use of 'assert False' to raise an exception unconditionally.
 
8860
  (Martin Pool)
 
8861
 
 
8862
* Give a cleaner error when failing to decode knit index entry.
 
8863
  (Martin Pool)
 
8864
 
 
8865
* TreeConfig would mistakenly search the top level when asked for options
 
8866
  from a section. It now respects the section argument and only
 
8867
  searches the specified section. (James Westby)
 
8868
 
 
8869
* Improve ``make api-docs`` output. (John Arbash Meinel)
 
8870
 
 
8871
* Use os.lstat rather than os.stat for osutils.make_readonly and
 
8872
  osutils.make_writeable. This makes the difftools plugin more
 
8873
  robust when dangling symlinks are found. (Elliot Murphy)
 
8874
 
 
8875
* New ``-Dlock`` option to log (to ~/.bzr.log) information on when
 
8876
  lockdirs are taken or released.  (Martin Pool)
 
8877
 
 
8878
* ``bzrlib`` Hooks are now nameable using ``Hooks.name_hook``. This
 
8879
  allows a nicer UI when hooks are running as the current hook can
 
8880
  be displayed. (Robert Collins)
 
8881
 
 
8882
* ``Transport.get`` has had its interface made more clear for ease of use.
 
8883
  Retrieval of a directory must now fail with either 'PathError' at open
 
8884
  time, or raise 'ReadError' on a read. (Robert Collins)
 
8885
 
 
8886
* New method ``_maybe_expand_globs`` on the ``Command`` class for
 
8887
  dealing with unexpanded glob lists - e.g. on the win32 platform. This
 
8888
  was moved from ``bzrlib.add._prepare_file_list``. (Robert Collins)
 
8889
 
 
8890
* ``bzrlib.add.smart_add`` and ``bzrlib.add.smart_add_tree`` are now
 
8891
  deprecated in favour of ``MutableTree.smart_add``. (Robert Collins,
 
8892
  Martin Pool)
 
8893
 
 
8894
* New method ``external_url`` on Transport for obtaining the url to
 
8895
  hand to external processes. (Robert Collins)
 
8896
 
 
8897
* Teach windows installers to build pyrex/C extensions.
 
8898
  (Alexander Belchenko)
 
8899
 
 
8900
Testing
 
8901
*******
 
8902
 
 
8903
* Removed the ``--keep-output`` option from selftest and clean up test
 
8904
  directories as they're used.  This reduces the IO load from
 
8905
  running the test suite and cuts the time by about half.
 
8906
  (Andrew Bennetts, Martin Pool)
 
8907
 
 
8908
* Add scenarios as a public attribute on the TestAdapter classes to allow
 
8909
  modification of the generated scenarios before adaption and easier
 
8910
  testing. (Robert Collins)
 
8911
 
 
8912
* New testing support class ``TestScenarioApplier`` which multiplies
 
8913
  out a single teste by a list of supplied scenarios. (RobertCollins)
 
8914
 
 
8915
* Setting ``repository_to_test_repository`` on a repository_implementations
 
8916
  test will cause it to be called during repository creation, allowing the
 
8917
  testing of repository classes which are not based around the Format
 
8918
  concept. For example a repository adapter can be tested in this manner,
 
8919
  by altering the repository scenarios to include a scenario that sets this
 
8920
  attribute during the test parameterisation in
 
8921
  ``bzrlib.tests.repository.repository_implementations``. (Robert Collins)
 
8922
 
 
8923
* Clean up many of the APIs for blackbox testing of Bazaar.  The standard
 
8924
  interface is now self.run_bzr.  The command to run can be passed as
 
8925
  either a list of parameters, a string containing the command line, or
 
8926
  (deprecated) varargs parameters.  (Martin Pool)
 
8927
 
 
8928
* The base TestCase now isolates tests from -D parameters by clearing
 
8929
  ``debug.debug_flags`` and restores it afterwards. (Robert Collins)
 
8930
 
 
8931
* Add a relpath parameter to get_transport methods in test framework to
 
8932
  avoid useless cloning.
 
8933
  (Vincent Ladeuil, #110448)
 
8934
 
 
8935
 
 
8936
bzr 0.17
 
8937
########
 
8938
 
 
8939
:Released:  2007-06-18
 
8940
 
 
8941
Bugfixes
 
8942
********
 
8943
 
 
8944
* Fix crash of commit due to wrong lookup of filesystem encoding.
 
8945
  (Colin Watson, #120647)
 
8946
 
 
8947
* Revert logging just to stderr in commit as broke unicode filenames.
 
8948
  (Aaron Bentley, Ian Clatworthy, #120930)
 
8949
 
 
8950
 
 
8951
bzr 0.17rc1
 
8952
###########
 
8953
 
 
8954
:Released:  2007-06-12
 
8955
 
 
8956
Notes When Upgrading
 
8957
********************
 
8958
 
 
8959
* The kind() and is_executable() APIs on the WorkingTree interface no
 
8960
  longer implicitly (read) locks and unlocks the tree. This *might*
 
8961
  impact some plug-ins and tools using this part of the API. If you find
 
8962
  an issue that may be caused by this change, please let us know,
 
8963
  particularly the plug-in/tool maintainer. If encountered, the API
 
8964
  fix is to surround kind() and is_executable() calls with lock_read()
 
8965
  and unlock() like so::
 
8966
 
 
8967
    work_tree.lock_read()
 
8968
    try:
 
8969
        kind = work_tree.kind(...)
 
8970
    finally:
 
8971
        work_tree.unlock()
 
8972
 
 
8973
Internals
 
8974
*********
 
8975
* Rework of LogFormatter API to provide beginning/end of log hooks and to
 
8976
  encapsulate the details of the revision to be logged in a LogRevision
 
8977
  object.
 
8978
  In long log formats, merge revision ids are only shown when --show-ids
 
8979
  is specified, and are labelled "revision-id:", as per mainline
 
8980
  revisions, instead of "merged:". (Kent Gibson)
 
8981
 
 
8982
* New ``BranchBuilder`` API which allows the construction of particular
 
8983
  histories quickly. Useful for testing and potentially other applications
 
8984
  too. (Robert Collins)
 
8985
 
 
8986
Improvements
 
8987
************
 
8988
 
 
8989
* There are two new help topics, working-trees and repositories that
 
8990
  attempt to explain these concepts. (James Westby, John Arbash Meinel,
 
8991
  Aaron Bentley)
 
8992
 
 
8993
* Added ``bzr log --limit`` to report a limited number of revisions.
 
8994
  (Kent Gibson, #3659)
 
8995
 
 
8996
* Revert does not try to preserve file contents that were originally
 
8997
  produced by reverting to a historical revision.  (Aaron Bentley)
 
8998
 
 
8999
* ``bzr log --short`` now includes ``[merge]`` for revisions which
 
9000
  have more than one parent. This is a small improvement to help
 
9001
  understanding what changes have occurred
 
9002
  (John Arbash Meinel, #83887)
 
9003
 
 
9004
* TreeTransform avoids many renames when contructing large trees,
 
9005
  improving speed.  3.25x speedups have been observed for construction of
 
9006
  kernel-sized-trees, and checkouts are 1.28x faster.  (Aaron Bentley)
 
9007
 
 
9008
* Commit on large trees is now faster. In my environment, a commit of
 
9009
  a small change to the Mozilla tree (55k files) has dropped from
 
9010
  66 seconds to 32 seconds. For a small tree of 600 files, commit of a
 
9011
  small change is 33% faster. (Ian Clatworthy)
 
9012
 
 
9013
* New --create-prefix option to bzr init, like for push.  (Daniel Watkins,
 
9014
  #56322)
 
9015
 
 
9016
Bugfixes
 
9017
********
 
9018
 
 
9019
* ``bzr push`` should only connect to the remote location one time.
 
9020
  We have been connecting 3 times because we forget to pass around
 
9021
  the Transport object. This adds ``BzrDir.clone_on_transport()``, so
 
9022
  that we can pass in the Transport that we already have.
 
9023
  (John Arbash Meinel, #75721)
 
9024
 
 
9025
* ``DirState.set_state_from_inventory()`` needs to properly order
 
9026
  based on split paths, not just string paths.
 
9027
  (John Arbash Meinel, #115947)
 
9028
 
 
9029
* Let TestUIFactoy encode the password prompt with its own stdout.
 
9030
  (Vincent Ladeuil, #110204)
 
9031
 
 
9032
* pycurl should take use the range header that takes the range hint
 
9033
  into account.
 
9034
  (Vincent Ladeuil, #112719)
 
9035
 
 
9036
* WorkingTree4.get_file_sha1 no longer raises an exception when invoked
 
9037
  on a missing file.  (Aaron Bentley, #118186)
 
9038
 
 
9039
* WorkingTree.remove works correctly with tree references, and when pwd is
 
9040
  not the tree root. (Aaron Bentley)
 
9041
 
 
9042
* Merge no longer fails when a file is renamed in one tree and deleted
 
9043
  in the other. (Aaron Bentley, #110279)
 
9044
 
 
9045
* ``revision-info`` now accepts dotted revnos, doesn't require a tree,
 
9046
  and defaults to the last revision (Matthew Fuller, #90048)
 
9047
 
 
9048
* Tests no longer fail when BZR_REMOTE_PATH is set in the environment.
 
9049
  (Daniel Watkins, #111958)
 
9050
 
 
9051
* ``bzr branch -r revid:foo`` can be used to branch any revision in
 
9052
  your repository. (Previously Branch6 only supported revisions in your
 
9053
  mainline). (John Arbash Meinel, #115343)
 
9054
 
 
9055
bzr 0.16
 
9056
########
 
9057
 
 
9058
:Released:  2007-05-07
 
9059
 
 
9060
Bugfixes
 
9061
********
 
9062
 
 
9063
* Handle when you have 2 directories with similar names, but one has a
 
9064
  hyphen. (``'abc'`` versus ``'abc-2'``). The WT4._iter_changes
 
9065
  iterator was using direct comparison and ``'abc/a'`` sorts after
 
9066
  ``'abc-2'``, but ``('abc', 'a')`` sorts before ``('abc-2',)``.
 
9067
  (John Arbash Meinel, #111227)
 
9068
 
 
9069
* Handle when someone renames a file on disk without telling bzr.
 
9070
  Previously we would report the first file as missing, but not show
 
9071
  the new unknown file. (John Arbash Meinel, #111288)
 
9072
 
 
9073
* Avoid error when running hooks after pulling into or pushing from
 
9074
  a branch bound to a smartserver branch.  (Martin Pool, #111968)
 
9075
 
 
9076
Improvements
 
9077
************
 
9078
 
 
9079
* Move developer documentation to doc/developers/. This reduces clutter in
 
9080
  the root of the source tree and allows HACKING to be split into multiple
 
9081
  files. (Robert Collins, Alexander Belchenko)
 
9082
 
 
9083
* Clean up the ``WorkingTree4._iter_changes()`` internal loops as well as
 
9084
  ``DirState.update_entry()``. This optimizes the core logic for ``bzr
 
9085
  diff`` and ``bzr status`` significantly improving the speed of
 
9086
  both. (John Arbash Meinel)
 
9087
 
 
9088
bzr 0.16rc2
 
9089
###########
 
9090
 
 
9091
:Released:  2007-04-30
 
9092
 
 
9093
Bugfixes
 
9094
********
 
9095
 
 
9096
* Handle the case when you delete a file, and then rename another file
 
9097
  on top of it. Also handle the case of ``bzr rm --keep foo``. ``bzr
 
9098
  status`` should show the removed file and an unknown file in its
 
9099
  place. (John Arbash Meinel, #109993)
 
9100
 
 
9101
* Bundles properly read and write revision properties that have an
 
9102
  empty value. And when the value is not ASCII.
 
9103
  (John Arbash Meinel, #109613)
 
9104
 
 
9105
* Fix the bzr commit message to be in text mode.
 
9106
  (Alexander Belchenko, #110901)
 
9107
 
 
9108
* Also handle when you rename a file and create a file where it used
 
9109
  to be. (John Arbash Meinel, #110256)
 
9110
 
 
9111
* ``WorkingTree4._iter_changes`` should not descend into unversioned
 
9112
  directories. (John Arbash Meinel, #110399)
 
9113
 
 
9114
bzr 0.16rc1
 
9115
###########
 
9116
 
 
9117
:Released:  2007-04-26
 
9118
 
 
9119
Notes When Upgrading
 
9120
********************
 
9121
 
 
9122
* ``bzr remove`` and ``bzr rm`` will now remove the working file, if
 
9123
  it could be recovered again.
 
9124
  This has been done for consistency with svn and the unix rm command.
 
9125
  The old ``remove`` behaviour has been retained in the new option
 
9126
  ``bzr remove --keep``, which will just stop versioning the file,
 
9127
  but not delete it.
 
9128
  ``bzr remove --force`` have been added which will always delete the
 
9129
  files.
 
9130
  ``bzr remove`` is also more verbose.
 
9131
  (Marius Kruger, #82602)
 
9132
 
 
9133
Improvements
 
9134
************
 
9135
 
 
9136
* Merge directives can now be supplied as input to `merge` and `pull`,
 
9137
  like bundles can.  (Aaron Bentley)
 
9138
 
 
9139
* Sending the SIGQUIT signal to bzr, which can be done on Unix by
 
9140
  pressing Control-Backslash, drops bzr into a debugger.  Type ``'c'``
 
9141
  to continue.  This can be disabled by setting the environment variable
 
9142
  ``BZR_SIGQUIT_PDB=0``.  (Martin Pool)
 
9143
 
 
9144
* selftest now supports --list-only to list tests instead of running
 
9145
  them. (Ian Clatworthy)
 
9146
 
 
9147
* selftest now supports --exclude PATTERN (or -x PATTERN) to exclude
 
9148
  tests with names that match that regular expression.
 
9149
  (Ian Clatworthy, #102679)
 
9150
 
 
9151
* selftest now supports --randomize SEED to run tests in a random order.
 
9152
  SEED is typically the value 'now' meaning 'use the current time'.
 
9153
  (Ian Clatworthy, #102686)
 
9154
 
 
9155
* New option ``--fixes`` to commit, which stores bug fixing annotations as
 
9156
  revision properties. Built-in support for Launchpad, Debian, Trac and
 
9157
  Bugzilla bug trackers. (Jonathan Lange, James Henstridge, Robert Collins)
 
9158
 
 
9159
* New API, ``bzrlib.bugtracker.tracker_registry``, for adding support for
 
9160
  other bug trackers to ``fixes``. (Jonathan Lange, James Henstridge,
 
9161
  Robert Collins)
 
9162
 
 
9163
* ``selftest`` has new short options ``-f`` and ``-1``.  (Martin
 
9164
  Pool)
 
9165
 
 
9166
* ``bzrlib.tsort.MergeSorter`` optimizations. Change the inner loop
 
9167
  into using local variables instead of going through ``self._var``.
 
9168
  Improves the time to ``merge_sort`` a 10k revision graph by
 
9169
  approximately 40% (~700->400ms).  (John Arbash Meinel)
 
9170
 
 
9171
* ``make docs`` now creates a man page at ``man1/bzr.1`` fixing bug 107388.
 
9172
  (Robert Collins)
 
9173
 
 
9174
* ``bzr help`` now provides cross references to other help topics using
 
9175
  the _see_also facility on command classes. Likewise the bzr_man
 
9176
  documentation, and the bzr.1 man page also include this information.
 
9177
  (Robert Collins)
 
9178
 
 
9179
* Tags are now included in logs, that use the long log formatter.
 
9180
  (Erik Bågfors, Alexander Belchenko)
 
9181
 
 
9182
* ``bzr help`` provides a clearer message when a help topic cannot be
 
9183
  found. (Robert Collins, #107656)
 
9184
 
 
9185
* ``bzr help`` now accepts optional prefixes for command help. The help
 
9186
  for all commands can now be found at ``bzr help commands/COMMANDNAME``
 
9187
  as well as ``bzr help COMMANDNAME`` (which only works for commands
 
9188
  where the name is not the same as a more general help topic).
 
9189
  (Robert Collins)
 
9190
 
 
9191
* ``bzr help PLUGINNAME`` will now return the module docstring from the
 
9192
  plugin PLUGINNAME. (Robert Collins, #50408)
 
9193
 
 
9194
* New help topic ``urlspec`` which lists the availables transports.
 
9195
  (Goffredo Baroncelli)
 
9196
 
 
9197
* doc/server.txt updated to document the default bzr:// port
 
9198
  and also update the blurb about the hpss' current status.
 
9199
  (Robert Collins, #107125).
 
9200
 
 
9201
* ``bzr serve`` now listens on interface 0.0.0.0 by default, making it
 
9202
  serve out to the local LAN (and anyone in the world that can reach the
 
9203
  machine running ``bzr serve``. (Robert Collins, #98918)
 
9204
 
 
9205
* A new smart server protocol version has been added.  It prefixes requests
 
9206
  and responses with an explicit version identifier so that future protocol
 
9207
  revisions can be dealt with gracefully.  (Andrew Bennetts, Robert Collins)
 
9208
 
 
9209
* The bzr protocol version 2 indicates success or failure in every response
 
9210
  without depending on particular commands encoding that consistently,
 
9211
  allowing future client refactorings to be much more robust about error
 
9212
  handling. (Robert Collins, Martin Pool, Andrew Bennetts)
 
9213
 
 
9214
* The smart protocol over HTTP client has been changed to always post to the
 
9215
  same ``.bzr/smart`` URL under the original location when it can.  This allows
 
9216
  HTTP servers to only have to pass URLs ending in .bzr/smart to the smart
 
9217
  server handler, and not arbitrary ``.bzr/*/smart`` URLs.  (Andrew Bennetts)
 
9218
 
 
9219
* digest authentication is now supported for proxies and HTTP by the urllib
 
9220
  based http implementation. Tested against Apache 2.0.55 and Squid
 
9221
  2.6.5. Basic and digest authentication are handled coherently for HTTP
 
9222
  and proxy: if the user is provided in the url (bzr command line for HTTP,
 
9223
  proxy environment variables for proxies), the password is prompted for
 
9224
  (only once). If the password is provided, it is taken into account. Once
 
9225
  the first authentication is successful, all further authentication
 
9226
  roundtrips are avoided by preventively setting the right authentication
 
9227
  header(s).
 
9228
  (Vincent Ladeuil).
 
9229
 
 
9230
Internals
 
9231
*********
 
9232
 
 
9233
* bzrlib API compatability with 0.8 has been dropped, cleaning up some
 
9234
  code paths. (Robert Collins)
 
9235
 
 
9236
* Change the format of chroot urls so that they can be safely manipulated
 
9237
  by generic url utilities without causing the resulting urls to have
 
9238
  escaped the chroot. A side effect of this is that creating a chroot
 
9239
  requires an explicit action using a ChrootServer.
 
9240
  (Robert Collins, Andrew Bennetts)
 
9241
 
 
9242
* Deprecate ``Branch.get_root_id()`` because branches don't have root ids,
 
9243
  rather than fixing bug #96847.  (Aaron Bentley)
 
9244
 
 
9245
* ``WorkingTree.apply_inventory_delta`` provides a better alternative to
 
9246
  ``WorkingTree._write_inventory``.  (Aaron Bentley)
 
9247
 
 
9248
* Convenience method ``TestCase.expectFailure`` ensures that known failures
 
9249
  do not silently pass.  (Aaron Bentley)
 
9250
 
 
9251
* ``Transport.local_abspath`` now raises ``NotLocalUrl`` rather than
 
9252
  ``TransportNotPossible``. (Martin Pool, Ian Clatworthy)
 
9253
 
 
9254
* New SmartServer hooks facility. There are two initial hooks documented
 
9255
  in ``bzrlib.transport.smart.SmartServerHooks``. The two initial hooks allow
 
9256
  plugins to execute code upon server startup and shutdown.
 
9257
  (Robert Collins).
 
9258
 
 
9259
* SmartServer in standalone mode will now close its listening socket
 
9260
  when it stops, rather than waiting for garbage collection. This primarily
 
9261
  fixes test suite hangs when a test tries to connect to a shutdown server.
 
9262
  It may also help improve behaviour when dealing with a server running
 
9263
  on a specific port (rather than dynamically assigned ports).
 
9264
  (Robert Collins)
 
9265
 
 
9266
* Move most SmartServer code into a new package, bzrlib/smart.
 
9267
  bzrlib/transport/remote.py contains just the Transport classes that used
 
9268
  to be in bzrlib/transport/smart.py.  (Andrew Bennetts)
 
9269
 
 
9270
* urllib http implementation avoid roundtrips associated with
 
9271
  401 (and 407) errors once the authentication succeeds.
 
9272
  (Vincent Ladeuil).
 
9273
 
 
9274
* urlib http now supports querying the user for a proxy password if
 
9275
  needed. Realm is shown in the prompt for both HTTP and proxy
 
9276
  authentication when the user is required to type a password.
 
9277
  (Vincent Ladeuil).
 
9278
 
 
9279
* Renamed SmartTransport (and subclasses like SmartTCPTransport) to
 
9280
  RemoteTransport (and subclasses to RemoteTCPTransport, etc).  This is more
 
9281
  consistent with its new home in ``bzrlib/transport/remote.py``, and because
 
9282
  it's not really a "smart" transport, just one that does file operations
 
9283
  via remote procedure calls.  (Andrew Bennetts)
 
9284
 
 
9285
* The ``lock_write`` method of ``LockableFiles``, ``Repository`` and
 
9286
  ``Branch`` now accept a ``token`` keyword argument, so that separate
 
9287
  instances of those objects can share a lock if it has the right token.
 
9288
  (Andrew Bennetts, Robert Collins)
 
9289
 
 
9290
* New method ``get_branch_reference`` on ``BzrDir`` allows the detection of
 
9291
  branch references - which the smart server component needs.
 
9292
 
 
9293
* The Repository API ``make_working_trees`` is now permitted to return
 
9294
  False when ``set_make_working_trees`` is not implemented - previously
 
9295
  an unimplemented ``set_make_working_trees`` implied the result True
 
9296
  from ``make_working_trees``. This has been changed to accomodate the
 
9297
  smart server, where it does not make sense (at this point) to ever
 
9298
  make working trees by default. (Robert Collins)
 
9299
 
 
9300
* Command objects can now declare related help topics by having _see_also
 
9301
  set to a list of related topic. (Robert Collins)
 
9302
 
 
9303
* ``bzrlib.help`` now delegates to the Command class for Command specific
 
9304
  help. (Robert Collins)
 
9305
 
 
9306
* New class ``TransportListRegistry``, derived from the Registry class, which
 
9307
  simplifies tracking the available Transports. (Goffredo Baroncelli)
 
9308
 
 
9309
* New function ``Branch.get_revision_id_to_revno_map`` which will
 
9310
  return a dictionary mapping revision ids to dotted revnos. Since
 
9311
  dotted revnos are defined in the context of the branch tip, it makes
 
9312
  sense to generate them from a ``Branch`` object.
 
9313
  (John Arbash Meinel)
 
9314
 
 
9315
* Fix the 'Unprintable error' message display to use the repr of the
 
9316
  exception that prevented printing the error because the str value
 
9317
  for it is often not useful in debugging (e.g. KeyError('foo') has a
 
9318
  str() of 'foo' but a repr of 'KeyError('foo')' which is much more
 
9319
  useful. (Robert Collins)
 
9320
 
 
9321
* ``urlutils.normalize_url`` now unescapes unreserved characters, such as "~".
 
9322
  (Andrew Bennetts)
 
9323
 
 
9324
Bugfixes
 
9325
********
 
9326
 
 
9327
* Don't fail bundle selftest if email has 'two' embedded.
 
9328
  (Ian Clatworthy, #98510)
 
9329
 
 
9330
* Remove ``--verbose`` from ``bzr bundle``. It didn't work anyway.
 
9331
  (Robert Widhopf-Fenk, #98591)
 
9332
 
 
9333
* Remove ``--basis`` from the checkout/branch commands - it didn't work
 
9334
  properly and is no longer beneficial.
 
9335
  (Robert Collins, #53675, #43486)
 
9336
 
 
9337
* Don't produce encoding error when adding duplicate files.
 
9338
  (Aaron Bentley)
 
9339
 
 
9340
* Fix ``bzr log <file>`` so it only logs the revisions that changed
 
9341
  the file, and does it faster.
 
9342
  (Kent Gibson, John Arbash Meinel, #51980, #69477)
 
9343
 
 
9344
* Fix ``InterDirstateTre._iter_changes`` to handle when we come across
 
9345
  an empty versioned directory, which now has files in it.
 
9346
  (John Arbash Meinel, #104257)
 
9347
 
 
9348
* Teach ``common_ancestor`` to shortcut when the tip of one branch is
 
9349
  inside the ancestry of the other. Saves a lot of graph processing
 
9350
  (with an ancestry of 16k revisions, ``bzr merge ../already-merged``
 
9351
  changes from 2m10s to 13s).  (John Arbash Meinel, #103757)
 
9352
 
 
9353
* Fix ``show_diff_trees`` to handle the case when a file is modified,
 
9354
  and the containing directory is renamed. (The file path is different
 
9355
  in this versus base, but it isn't marked as a rename).
 
9356
  (John Arbash Meinel, #103870)
 
9357
 
 
9358
* FTP now works even when the FTP server does not support atomic rename.
 
9359
  (Aaron Bentley, #89436)
 
9360
 
 
9361
* Correct handling in bundles and merge directives of timezones with
 
9362
  that are not an integer number of hours offset from UTC.  Always
 
9363
  represent the epoch time in UTC to avoid problems with formatting
 
9364
  earlier times on win32.  (Martin Pool, Alexander Belchenko, John
 
9365
  Arbash Meinel)
 
9366
 
 
9367
* Typo in the help for ``register-branch`` fixed. (Robert Collins, #96770)
 
9368
 
 
9369
* "dirstate" and "dirstate-tags" formats now produce branches compatible
 
9370
  with old versions of bzr. (Aaron Bentley, #107168))
 
9371
 
 
9372
* Handle moving a directory when children have been added, removed,
 
9373
  and renamed. (John Arbash Meinel, #105479)
 
9374
 
 
9375
* Don't preventively use basic authentication for proxy before receiving a
 
9376
  407 error. Otherwise people willing to use other authentication schemes
 
9377
  may expose their password in the clear (or nearly). This add one
 
9378
  roundtrip in case basic authentication should be used, but plug the
 
9379
  security hole.
 
9380
  (Vincent Ladeuil)
 
9381
 
 
9382
* Handle http and proxy digest authentication.
 
9383
  (Vincent Ladeuil, #94034).
 
9384
 
 
9385
Testing
 
9386
*******
 
9387
 
 
9388
* Added ``bzrlib.strace.strace`` which will strace a single callable and
 
9389
  return a StraceResult object which contains just the syscalls involved
 
9390
  in running it. (Robert Collins)
 
9391
 
 
9392
* New test method ``reduceLockdirTimeout`` to drop the default (ui-centric)
 
9393
  default time down to one suitable for tests. (Andrew Bennetts)
 
9394
 
 
9395
* Add new ``vfs_transport_factory`` attribute on tests which provides the
 
9396
  common vfs backing for both the readonly and readwrite transports.
 
9397
  This allows the RemoteObject tests to back onto local disk or memory,
 
9398
  and use the existing ``transport_server`` attribute all tests know about
 
9399
  to be the smart server transport. This in turn allows tests to
 
9400
  differentiate between 'transport to access the branch', and
 
9401
  'transport which is a VFS' - which matters in Remote* tests.
 
9402
  (Robert Collins, Andrew Bennetts)
 
9403
 
 
9404
* The ``make_branch_and_tree`` method for tests will now create a
 
9405
  lightweight checkout for the tree if the ``vfs_transport_factory`` is not
 
9406
  a LocalURLServer. (Robert Collins, Andrew Bennetts)
 
9407
 
 
9408
* Branch implementation tests have been audited to ensure that all urls
 
9409
  passed to Branch APIs use proper urls, except when local-disk paths
 
9410
  are intended. This is so that tests correctly access the test transport
 
9411
  which is often not equivalent to local disk in Remote* tests. As part
 
9412
  of this many tests were adjusted to remove dependencies on local disk
 
9413
  access.
 
9414
  (Robert Collins, Andrew Bennetts)
 
9415
 
 
9416
* Mark bzrlib.tests and bzrlib.tests.TestUtil as providing assertFOO helper
 
9417
  functions by adding a ``__unittest`` global attribute. (Robert Collins,
 
9418
  Andrew Bennetts, Martin Pool, Jonathan Lange)
 
9419
 
 
9420
* Refactored proxy and authentication handling to simplify the
 
9421
  implementation of new auth schemes for both http and proxy.
 
9422
  (Vincent Ladeuil)
 
9423
 
 
9424
bzr 0.15
 
9425
########
 
9426
 
 
9427
:Released: 2007-04-01
 
9428
 
 
9429
Bugfixes
 
9430
********
 
9431
 
 
9432
* Handle incompatible repositories as a user issue when fetching.
 
9433
  (Aaron Bentley)
 
9434
 
 
9435
* Don't give a recommendation to upgrade when branching or
 
9436
  checking out a branch that contains an old-format working tree.
 
9437
  (Martin Pool)
 
9438
 
 
9439
bzr 0.15rc3
 
9440
###########
 
9441
 
 
9442
:Released:  2007-03-26
 
9443
 
 
9444
Changes
 
9445
*******
 
9446
 
 
9447
* A warning is now displayed when opening working trees in older
 
9448
  formats, to encourage people to upgrade to WorkingTreeFormat4.
 
9449
  (Martin Pool)
 
9450
 
 
9451
Improvements
 
9452
************
 
9453
 
 
9454
* HTTP redirections are now taken into account when a branch (or a
 
9455
  bundle) is accessed for the first time. A message is issued at each
 
9456
  redirection to inform the user. In the past, http redirections were
 
9457
  silently followed for each request which significantly degraded the
 
9458
  performances. The http redirections are not followed anymore by
 
9459
  default, instead a RedirectRequested exception is raised. For bzrlib
 
9460
  users needing to follow http redirections anyway,
 
9461
  ``bzrlib.transport.do_catching_redirections`` provide an easy transition
 
9462
  path.  (vila)
 
9463
 
 
9464
Internals
 
9465
*********
 
9466
 
 
9467
* Added ``ReadLock.temporary_write_lock()`` to allow upgrading an OS read
 
9468
  lock to an OS write lock. Linux can do this without unlocking, Win32
 
9469
  needs to unlock in between. (John Arbash Meinel)
 
9470
 
 
9471
* New parameter ``recommend_upgrade`` to ``BzrDir.open_workingtree``
 
9472
  to silence (when false) warnings about opening old formats.
 
9473
  (Martin Pool)
 
9474
 
 
9475
* Fix minor performance regression with bzr-0.15 on pre-dirstate
 
9476
  trees. (We were reading the working inventory too many times).
 
9477
  (John Arbash Meinel)
 
9478
 
 
9479
* Remove ``Branch.get_transaction()`` in favour of a simple cache of
 
9480
  ``revision_history``.  Branch subclasses should override
 
9481
  ``_gen_revision_history`` rather than ``revision_history`` to make use of
 
9482
  this cache, and call ``_clear_revision_history_cache`` and
 
9483
  ``_cache_revision_history`` at appropriate times. (Andrew Bennetts)
 
9484
 
 
9485
Bugfixes
 
9486
********
 
9487
 
 
9488
* Take ``smtp_server`` from user config into account.
 
9489
  (vila, #92195)
 
9490
 
 
9491
* Restore Unicode filename handling for versioned and unversioned files.
 
9492
  (John Arbash Meinel, #92608)
 
9493
 
 
9494
* Don't fail during ``bzr commit`` if a file is marked removed, and
 
9495
  the containing directory is auto-removed.  (John Arbash Meinel, #93681)
 
9496
 
 
9497
* ``bzr status FILENAME`` failed on Windows because of an uncommon
 
9498
  errno. (``ERROR_DIRECTORY == 267 != ENOTDIR``).
 
9499
  (Wouter van Heyst, John Arbash Meinel, #90819)
 
9500
 
 
9501
* ``bzr checkout source`` should create a local branch in the same
 
9502
  format as source. (John Arbash Meinel, #93854)
 
9503
 
 
9504
* ``bzr commit`` with a kind change was failing to update the
 
9505
  last-changed-revision for directories.  The
 
9506
  InventoryDirectory._unchanged only looked at the ``parent_id`` and name,
 
9507
  ignoring the fact that the kind could have changed, too.
 
9508
  (John Arbash Meinel, #90111)
 
9509
 
 
9510
* ``bzr mv dir/subdir other`` was incorrectly updating files inside
 
9511
  the directory. So that there was a chance it would break commit,
 
9512
  etc. (John Arbash Meinel, #94037)
 
9513
 
 
9514
* Correctly handles mutiple permanent http redirections.
 
9515
  (vila, #88780)
 
9516
 
 
9517
bzr 0.15rc2
 
9518
###########
 
9519
 
 
9520
:Released:  2007-03-14
 
9521
 
 
9522
Notes When Upgrading
 
9523
********************
 
9524
 
 
9525
* Release 0.15rc2 of bzr changes the ``bzr init-repo`` command to
 
9526
  default to ``--trees`` instead of ``--no-trees``.
 
9527
  Existing shared repositories are not affected.
 
9528
 
 
9529
Improvements
 
9530
************
 
9531
 
 
9532
* New ``merge-directive`` command to generate machine- and human-readable
 
9533
  merge requests.  (Aaron Bentley)
 
9534
 
 
9535
* New ``submit:`` revision specifier makes it easy to diff against the
 
9536
  common ancestor with the submit location (Aaron Bentley)
 
9537
 
 
9538
* Added support for Putty's SSH implementation. (Dmitry Vasiliev)
 
9539
 
 
9540
* Added ``bzr status --versioned`` to report only versioned files,
 
9541
  not unknowns. (Kent Gibson)
 
9542
 
 
9543
* Merge now autodetects the correct line-ending style for its conflict
 
9544
  markers.  (Aaron Bentley)
 
9545
 
 
9546
Internals
 
9547
*********
 
9548
 
 
9549
* Refactored SSH vendor registration into SSHVendorManager class.
 
9550
  (Dmitry Vasiliev)
 
9551
 
 
9552
Bugfixes
 
9553
********
 
9554
 
 
9555
* New ``--numbered-dirs`` option to ``bzr selftest`` to use
 
9556
  numbered dirs for TestCaseInTempDir. This is default behavior
 
9557
  on Windows. Anyone can force named dirs on Windows
 
9558
  with ``--no-numbered-dirs``. (Alexander Belchenko)
 
9559
 
 
9560
* Fix ``RevisionSpec_revid`` to handle the Unicode strings passed in
 
9561
  from the command line. (Marien Zwart, #90501)
 
9562
 
 
9563
* Fix ``TreeTransform._iter_changes`` when both the source and
 
9564
  destination are missing. (Aaron Bentley, #88842)
 
9565
 
 
9566
* Fix commit of merges with symlinks in dirstate trees.
 
9567
  (Marien Zwart)
 
9568
 
 
9569
* Switch the ``bzr init-repo`` default from --no-trees to --trees.
 
9570
  (Wouter van Heyst, #53483)
 
9571
 
 
9572
 
 
9573
bzr 0.15rc1
 
9574
###########
 
9575
 
 
9576
:Released:  2007-03-07
 
9577
 
 
9578
Surprises
 
9579
*********
 
9580
 
 
9581
* The default disk format has changed. Please run 'bzr upgrade' in your
 
9582
  working trees to upgrade. This new default is compatible for network
 
9583
  operations, but not for local operations. That is, if you have two
 
9584
  versions of bzr installed locally, after upgrading you can only use the
 
9585
  bzr 0.15 version. This new default does not enable tags or nested-trees
 
9586
  as they are incompatible with bzr versions before 0.15 over the network.
 
9587
 
 
9588
* For users of bzrlib: Two major changes have been made to the working tree
 
9589
  api in bzrlib. The first is that many methods and attributes, including
 
9590
  the inventory attribute, are no longer valid for use until one of
 
9591
  ``lock_read``/``lock_write``/``lock_tree_write`` has been called,
 
9592
  and become invalid again after unlock is called. This has been done
 
9593
  to improve performance and correctness as part of the dirstate
 
9594
  development.
 
9595
  (Robert Collins, John A Meinel, Martin Pool, and others).
 
9596
 
 
9597
* For users of bzrlib: The attribute 'tree.inventory' should be considered
 
9598
  readonly. Previously it was possible to directly alter this attribute, or
 
9599
  its contents, and have the tree notice this. This has been made
 
9600
  unsupported - it may work in some tree formats, but in the newer dirstate
 
9601
  format such actions will have no effect and will be ignored, or even
 
9602
  cause assertions. All operations possible can still be carried out by a
 
9603
  combination of the tree API, and the bzrlib.transform API. (Robert
 
9604
  Collins, John A Meinel, Martin Pool, and others).
 
9605
 
 
9606
Improvements
 
9607
************
 
9608
 
 
9609
* Support for OS Windows 98. Also .bzr.log on any windows system
 
9610
  saved in My Documents folder. (Alexander Belchenko)
 
9611
 
 
9612
* ``bzr mv`` enhanced to support already moved files.
 
9613
  In the past the mv command would have failed if the source file doesn't
 
9614
  exist. In this situation ``bzr mv`` would now detect that the file has
 
9615
  already moved and update the repository accordingly, if the target file
 
9616
  does exist.
 
9617
  A new option ``--after`` has been added so that if two files already
 
9618
  exist, you could notify Bazaar that you have moved a (versioned) file
 
9619
  and replaced it with another. Thus in this case ``bzr move --after``
 
9620
  will only update the Bazaar identifier.
 
9621
  (Steffen Eichenberg, Marius Kruger)
 
9622
 
 
9623
* ``ls`` now works on treeless branches and remote branches.
 
9624
  (Aaron Bentley)
 
9625
 
 
9626
* ``bzr help global-options`` describes the global options.
 
9627
  (Aaron Bentley)
 
9628
 
 
9629
* ``bzr pull --overwrite`` will now correctly overwrite checkouts.
 
9630
  (Robert Collins)
 
9631
 
 
9632
* Files are now allowed to change kind (e.g. from file to symlink).
 
9633
  Supported by ``commit``, ``revert`` and ``status``
 
9634
  (Aaron Bentley)
 
9635
 
 
9636
* ``inventory`` and ``unknowns`` hidden in favour of ``ls``
 
9637
  (Aaron Bentley)
 
9638
 
 
9639
* ``bzr help checkouts`` descibes what checkouts are and some possible
 
9640
  uses of them. (James Westby, Aaron Bentley)
 
9641
 
 
9642
* A new ``-d`` option to push, pull and merge overrides the default
 
9643
  directory.  (Martin Pool)
 
9644
 
 
9645
* Branch format 6: smaller, and potentially faster than format 5.  Supports
 
9646
  ``append_history_only`` mode, where the log view and revnos do not change,
 
9647
  except by being added to.  Stores policy settings in
 
9648
  ".bzr/branch/branch.conf".
 
9649
 
 
9650
* ``append_only`` branches:  Format 6 branches may be configured so that log
 
9651
  view and revnos are always consistent.  Either create the branch using
 
9652
  "bzr init --append-revisions-only" or edit the config file as descriped
 
9653
  in docs/configuration.txt.
 
9654
 
 
9655
* rebind: Format 6 branches retain the last-used bind location, so if you
 
9656
  "bzr unbind", you can "bzr bind" to bind to the previously-selected
 
9657
  bind location.
 
9658
 
 
9659
* Builtin tags support, created and deleted by the ``tag`` command and
 
9660
  stored in the branch.  Tags can be accessed with the revisionspec
 
9661
  ``-rtag:``, and listed with ``bzr tags``.  Tags are not versioned
 
9662
  at present. Tags require a network incompatible upgrade. To perform this
 
9663
  upgrade, run ``bzr upgrade --dirstate-tags`` in your branch and
 
9664
  repositories. (Martin Pool)
 
9665
 
 
9666
* The ``bzr://`` transport now has a well-known port number, 4155,
 
9667
  which it will use by default.  (Andrew Bennetts, Martin Pool)
 
9668
 
 
9669
* Bazaar now looks for user-installed plugins before looking for site-wide
 
9670
  plugins. (Jonathan Lange)
 
9671
 
 
9672
* ``bzr resolve`` now detects and marks resolved text conflicts.
 
9673
  (Aaron Bentley)
 
9674
 
 
9675
Internals
 
9676
*********
 
9677
 
 
9678
* Internally revision ids and file ids are now passed around as utf-8
 
9679
  bytestrings, rather than treating them as Unicode strings. This has
 
9680
  performance benefits for Knits, since we no longer need to decode the
 
9681
  revision id for each line of content, nor for each entry in the index.
 
9682
  This will also help with the future dirstate format.
 
9683
  (John Arbash Meinel)
 
9684
 
 
9685
* Reserved ids (any revision-id ending in a colon) are rejected by
 
9686
  versionedfiles, repositories, branches, and working trees
 
9687
  (Aaron Bentley)
 
9688
 
 
9689
* Minor performance improvement by not creating a ProgressBar for
 
9690
  every KnitIndex we create. (about 90ms for a bzr.dev tree)
 
9691
  (John Arbash Meinel)
 
9692
 
 
9693
* New easier to use Branch hooks facility. There are five initial hooks,
 
9694
  all documented in bzrlib.branch.BranchHooks.__init__ - ``'set_rh'``,
 
9695
  ``'post_push'``, ``'post_pull'``, ``'post_commit'``,
 
9696
  ``'post_uncommit'``. These hooks fire after the matching operation
 
9697
  on a branch has taken place, and were originally added for the
 
9698
  branchrss plugin. (Robert Collins)
 
9699
 
 
9700
* New method ``Branch.push()`` which should be used when pushing from a
 
9701
  branch as it makes performance and policy decisions to match the UI
 
9702
  level command ``push``. (Robert Collins).
 
9703
 
 
9704
* Add a new method ``Tree.revision_tree`` which allows access to cached
 
9705
  trees for arbitrary revisions. This allows the in development dirstate
 
9706
  tree format to provide access to the callers to cached copies of
 
9707
  inventory data which are cheaper to access than inventories from the
 
9708
  repository.
 
9709
  (Robert Collins, Martin Pool)
 
9710
 
 
9711
* New ``Branch.last_revision_info`` method, this is being done to allow
 
9712
  optimization of requests for both the number of revisions and the last
 
9713
  revision of a branch with smartservers and potentially future branch
 
9714
  formats. (Wouter van Heyst, Robert Collins)
 
9715
 
 
9716
* Allow ``'import bzrlib.plugins.NAME'`` to work when the plugin NAME has not
 
9717
  yet been loaded by ``load_plugins()``. This allows plugins to depend on each
 
9718
  other for code reuse without requiring users to perform file-renaming
 
9719
  gymnastics. (Robert Collins)
 
9720
 
 
9721
* New Repository method ``'gather_stats'`` for statistic data collection.
 
9722
  This is expected to grow to cover a number of related uses mainly
 
9723
  related to bzr info. (Robert Collins)
 
9724
 
 
9725
* Log formatters are now managed with a registry.
 
9726
  ``log.register_formatter`` continues to work, but callers accessing
 
9727
  the FORMATTERS dictionary directly will not.
 
9728
 
 
9729
* Allow a start message to be passed to the ``edit_commit_message``
 
9730
  function.  This will be placed in the message offered to the user
 
9731
  for editing above the separator. It allows a template commit message
 
9732
  to be used more easily. (James Westby)
 
9733
 
 
9734
* ``GPGStrategy.sign()`` will now raise ``BzrBadParameterUnicode`` if
 
9735
  you pass a Unicode string rather than an 8-bit string. Callers need
 
9736
  to be updated to encode first. (John Arbash Meinel)
 
9737
 
 
9738
* Branch.push, pull, merge now return Result objects with information
 
9739
  about what happened, rather than a scattering of various methods.  These
 
9740
  are also passed to the post hooks.  (Martin Pool)
 
9741
 
 
9742
* File formats and architecture is in place for managing a forest of trees
 
9743
  in bzr, and splitting up existing trees into smaller subtrees, and
 
9744
  finally joining trees to make a larger tree. This is the first iteration
 
9745
  of this support, and the user-facing aspects still require substantial
 
9746
  work.  If you wish to experiment with it, use ``bzr upgrade
 
9747
  --dirstate-with-subtree`` in your working trees and repositories.
 
9748
  You can use the hidden commands ``split`` and ``join`` and to create
 
9749
  and manipulate nested trees, but please consider using the nested-trees
 
9750
  branch, which contains substantial UI improvements, instead.
 
9751
  http://code.aaronbentley.com/bzr/bzrrepo/nested-trees/
 
9752
  (Aaron Bentley, Martin Pool, Robert Collins).
 
9753
 
 
9754
Bugfixes
 
9755
********
 
9756
 
 
9757
* ``bzr annotate`` now uses dotted revnos from the viewpoint of the
 
9758
  branch, rather than the last changed revision of the file.
 
9759
  (John Arbash Meinel, #82158)
 
9760
 
 
9761
* Lock operations no longer hang if they encounter a permission problem.
 
9762
  (Aaron Bentley)
 
9763
 
 
9764
* ``bzr push`` can resume a push that was canceled before it finished.
 
9765
  Also, it can push even if the target directory exists if you supply
 
9766
  the ``--use-existing-dir`` flag.
 
9767
  (John Arbash Meinel, #30576, #45504)
 
9768
 
 
9769
* Fix http proxy authentication when user and an optional
 
9770
  password appears in the ``*_proxy`` vars. (Vincent Ladeuil,
 
9771
  #83954).
 
9772
 
 
9773
* ``bzr log branch/file`` works for local treeless branches
 
9774
  (Aaron Bentley, #84247)
 
9775
 
 
9776
* Fix problem with UNC paths on Windows 98. (Alexander Belchenko, #84728)
 
9777
 
 
9778
* Searching location of CA bundle for PyCurl in env variable
 
9779
  (``CURL_CA_BUNDLE``), and on win32 along the PATH.
 
9780
  (Alexander Belchenko, #82086)
 
9781
 
 
9782
* ``bzr init`` works with unicode argument LOCATION.
 
9783
  (Alexander Belchenko, #85599)
 
9784
 
 
9785
* Raise ``DependencyNotPresent`` if pycurl do not support https.
 
9786
  (Vincent Ladeuil, #85305)
 
9787
 
 
9788
* Invalid proxy env variables should not cause a traceback.
 
9789
  (Vincent Ladeuil, #87765)
 
9790
 
 
9791
* Ignore patterns normalised to use '/' path separator.
 
9792
  (Kent Gibson, #86451)
 
9793
 
 
9794
* bzr rocks. It sure does! Fix case. (Vincent Ladeuil, #78026)
 
9795
 
 
9796
* Fix bzrtools shelve command for removed lines beginning with "--"
 
9797
  (Johan Dahlberg, #75577)
 
9798
 
 
9799
Testing
 
9800
*******
 
9801
 
 
9802
* New ``--first`` option to ``bzr selftest`` to run specified tests
 
9803
  before the rest of the suite.  (Martin Pool)
 
9804
 
 
9805
 
 
9806
bzr 0.14
 
9807
########
 
9808
 
 
9809
:Released:  2007-01-23
 
9810
 
 
9811
Improvements
 
9812
************
 
9813
 
 
9814
* ``bzr help global-options`` describes the global options. (Aaron Bentley)
 
9815
 
 
9816
Bug Fixes
 
9817
*********
 
9818
 
 
9819
* Skip documentation generation tests if the tools to do so are not
 
9820
  available. Fixes running selftest for installled copies of bzr.
 
9821
  (John Arbash Meinel, #80330)
 
9822
 
 
9823
* Fix the code that discovers whether bzr is being run from it's
 
9824
  working tree to handle the case when it isn't but the directory
 
9825
  it is in is below a repository. (James Westby, #77306)
 
9826
 
 
9827
 
 
9828
bzr 0.14rc1
 
9829
###########
 
9830
 
 
9831
:Released:  2007-01-16
 
9832
 
 
9833
Improvements
 
9834
************
 
9835
 
 
9836
* New connection: ``bzr+http://`` which supports tunnelling the smart
 
9837
  protocol over an HTTP connection. If writing is enabled on the bzr
 
9838
  server, then you can write over the http connection.
 
9839
  (Andrew Bennetts, John Arbash Meinel)
 
9840
 
 
9841
* Aliases now support quotation marks, so they can contain whitespace
 
9842
  (Marius Kruger)
 
9843
 
 
9844
* PyCurlTransport now use a single curl object. By specifying explicitly
 
9845
  the 'Range' header, we avoid the need to use two different curl objects
 
9846
  (and two connections to the same server). (Vincent Ladeuil)
 
9847
 
 
9848
* ``bzr commit`` does not prompt for a message until it is very likely to
 
9849
  succeed.  (Aaron Bentley)
 
9850
 
 
9851
* ``bzr conflicts`` now takes --text to list pathnames of text conflicts
 
9852
  (Aaron Bentley)
 
9853
 
 
9854
* Fix ``iter_lines_added_or_present_in_versions`` to use a set instead
 
9855
  of a list while checking if a revision id was requested. Takes 10s
 
9856
  off of the ``fileids_affected_by_revision_ids`` time, which is 10s
 
9857
  of the ``bzr branch`` time. Also improve ``fileids_...`` time by
 
9858
  filtering lines with a regex rather than multiple ``str.find()``
 
9859
  calls. (saves another 300ms) (John Arbash Meinel)
 
9860
 
 
9861
* Policy can be set for each configuration key. This allows keys to be
 
9862
  inherited properly across configuration entries. For example, this
 
9863
  should enable you to do::
 
9864
 
 
9865
    [/home/user/project]
 
9866
    push_location = sftp://host/srv/project/
 
9867
    push_location:policy = appendpath
 
9868
 
 
9869
  And then a branch like ``/home/user/project/mybranch`` should get an
 
9870
  automatic push location of ``sftp://host/srv/project/mybranch``.
 
9871
  (James Henstridge)
 
9872
 
 
9873
* Added ``bzr status --short`` to make status report svn style flags
 
9874
  for each file.  For example::
 
9875
 
 
9876
    $ bzr status --short
 
9877
    A  foo
 
9878
    A  bar
 
9879
    D  baz
 
9880
    ?  wooley
 
9881
 
 
9882
* 'bzr selftest --clean-output' allows easily clean temporary tests
 
9883
  directories without running tests. (Alexander Belchenko)
 
9884
 
 
9885
* ``bzr help hidden-commands`` lists all hidden commands. (Aaron Bentley)
 
9886
 
 
9887
* ``bzr merge`` now has an option ``--pull`` to fall back to pull if
 
9888
  local is fully merged into remote. (Jan Hudec)
 
9889
 
 
9890
* ``bzr help formats`` describes available directory formats. (Aaron Bentley)
 
9891
 
 
9892
Internals
 
9893
*********
 
9894
 
 
9895
* A few tweaks directly to ``fileids_affected_by_revision_ids`` to
 
9896
  help speed up processing, as well allowing to extract unannotated
 
9897
  lines. Between the two ``fileids_affected_by_revision_ids`` is
 
9898
  improved by approx 10%. (John Arbash Meinel)
 
9899
 
 
9900
* Change Revision serialization to only write out millisecond
 
9901
  resolution. Rather than expecting floating point serialization to
 
9902
  preserve more resolution than we need. (Henri Weichers, Martin Pool)
 
9903
 
 
9904
* Test suite ends cleanly on Windows.  (Vincent Ladeuil)
 
9905
 
 
9906
* When ``encoding_type`` attribute of class Command is equal to 'exact',
 
9907
  force sys.stdout to be a binary stream on Windows, and therefore
 
9908
  keep exact line-endings (without LF -> CRLF conversion).
 
9909
  (Alexander Belchenko)
 
9910
 
 
9911
* Single-letter short options are no longer globally declared.  (Martin
 
9912
  Pool)
 
9913
 
 
9914
* Before using detected user/terminal encoding bzr should check
 
9915
  that Python has corresponding codec. (Alexander Belchenko)
 
9916
 
 
9917
* Formats for end-user selection are provided via a FormatRegistry (Aaron Bentley)
 
9918
 
 
9919
Bug Fixes
 
9920
*********
 
9921
 
 
9922
* ``bzr missing --verbose`` was showing adds/removals in the wrong
 
9923
  direction. (John Arbash Meinel)
 
9924
 
 
9925
* ``bzr annotate`` now defaults to showing dotted revnos for merged
 
9926
  revisions. It cuts them off at a depth of 12 characters, but you can
 
9927
  supply ``--long`` to see the full number. You can also use
 
9928
  ``--show-ids`` to display the original revision ids, rather than
 
9929
  revision numbers and committer names. (John Arbash Meinel, #75637)
 
9930
 
 
9931
* bzr now supports Win32 UNC path (e.g. ``\HOST\path``.
 
9932
  (Alexander Belchenko, #57869)
 
9933
 
 
9934
* Win32-specific: output of cat, bundle and diff commands don't mangle
 
9935
  line-endings (Alexander Belchenko, #55276)
 
9936
 
 
9937
* Replace broken fnmatch based ignore pattern matching with custom pattern
 
9938
  matcher.
 
9939
  (Kent Gibson, Jan Hudec #57637)
 
9940
 
 
9941
* pycurl and urllib can detect short reads at different places. Update
 
9942
  the test suite to test more cases. Also detect http error code 416
 
9943
  which was raised for that specific bug. Also enhance the urllib
 
9944
  robustness by detecting invalid ranges (and pycurl's one by detecting
 
9945
  short reads during the initial GET). (Vincent Ladeuil, #73948)
 
9946
 
 
9947
* The urllib connection sharing interacts badly with urllib2
 
9948
  proxy setting (the connections didn't go thru the proxy
 
9949
  anymore). Defining a proper ProxyHandler solves the
 
9950
  problem.  (Vincent Ladeuil, #74759)
 
9951
 
 
9952
* Use urlutils to generate relative URLs, not osutils
 
9953
  (Aaron Bentley, #76229)
 
9954
 
 
9955
* ``bzr status`` in a readonly directory should work without giving
 
9956
  lots of errors. (John Arbash Meinel, #76299)
 
9957
 
 
9958
* Mention the revisionspec topic for the revision option help.
 
9959
  (Wouter van Heyst, #31663)
 
9960
 
 
9961
* Allow plugins import from zip archives.
 
9962
  (Alexander Belchenko, #68124)
 
9963
 
 
9964
 
 
9965
bzr 0.13
 
9966
########
 
9967
 
 
9968
:Released:  2006-12-05
 
9969
 
 
9970
No changes from 0.13rc
 
9971
 
 
9972
 
 
9973
bzr 0.13rc1
 
9974
###########
 
9975
 
 
9976
:Released:  2006-11-27
 
9977
 
 
9978
Improvements
 
9979
************
 
9980
 
 
9981
* New command ``bzr remove-tree`` allows the removal of the working
 
9982
  tree from a branch.
 
9983
  (Daniel Silverstone)
 
9984
 
 
9985
* urllib uses shared keep-alive connections, so http
 
9986
  operations are substantially faster.
 
9987
  (Vincent Ladeuil, #53654)
 
9988
 
 
9989
* ``bzr export`` allows an optional branch parameter, to export a bzr
 
9990
  tree from some other url. For example:
 
9991
  ``bzr export bzr.tar.gz http://bazaar-vcs.org/bzr/bzr.dev``
 
9992
  (Daniel Silverstone)
 
9993
 
 
9994
* Added ``bzr help topics`` to the bzr help system. This gives a
 
9995
  location for general information, outside of a specific command.
 
9996
  This includes updates for ``bzr help revisionspec`` the first topic
 
9997
  included. (Goffredo Baroncelli, John Arbash Meinel, #42714)
 
9998
 
 
9999
* WSGI-compatible HTTP smart server.  See ``doc/http_smart_server.txt``.
 
10000
  (Andrew Bennetts)
 
10001
 
 
10002
* Knit files will now cache full texts only when the size of the
 
10003
  deltas is as large as the size of the fulltext. (Or after 200
 
10004
  deltas, whichever comes first). This has the most benefit on large
 
10005
  files with small changes, such as the inventory for a large project.
 
10006
  (eg For a project with 2500 files, and 7500 revisions, it changes
 
10007
  the size of inventory.knit from 11MB to 5.4MB) (John Arbash Meinel)
 
10008
 
 
10009
Internals
 
10010
*********
 
10011
 
 
10012
* New -D option given before the command line turns on debugging output
 
10013
  for particular areas.  -Derror shows tracebacks on all errors.
 
10014
  (Martin Pool)
 
10015
 
 
10016
* Clean up ``bzr selftest --benchmark bundle`` to correct an import,
 
10017
  and remove benchmarks that take longer than 10min to run.
 
10018
  (John Arbash Meinel)
 
10019
 
 
10020
* Use ``time.time()`` instead of ``time.clock()`` to decide on
 
10021
  progress throttling. Because ``time.clock()`` is actually CPU time,
 
10022
  so over a high-latency connection, too many updates get throttled.
 
10023
  (John Arbash Meinel)
 
10024
 
 
10025
* ``MemoryTransport.list_dir()`` would strip the first character for
 
10026
  files or directories in root directory. (John Arbash Meinel)
 
10027
 
 
10028
* New method ``get_branch_reference`` on 'BzrDir' allows the detection of
 
10029
  branch references - which the smart server component needs.
 
10030
 
 
10031
* New ``ChrootTransportDecorator``, accessible via the ``chroot+`` url
 
10032
  prefix.  It disallows any access to locations above a set URL.  (Andrew
 
10033
  Bennetts)
 
10034
 
 
10035
Bug Fixes
 
10036
*********
 
10037
 
 
10038
* Now ``_KnitIndex`` properly decode revision ids when loading index data.
 
10039
  And optimize the knit index parsing code.
 
10040
  (Dmitry Vasiliev, John Arbash Meinel)
 
10041
 
 
10042
* ``bzrlib/bzrdir.py`` was directly referencing ``bzrlib.workingtree``,
 
10043
  without importing it. This prevented ``bzr upgrade`` from working
 
10044
  unless a plugin already imported ``bzrlib.workingtree``
 
10045
  (John Arbash Meinel, #70716)
 
10046
 
 
10047
* Suppress the traceback on invalid URLs (Vincent Ladeuil, #70803).
 
10048
 
 
10049
* Give nicer error message when an http server returns a 403
 
10050
  error code. (Vincent Ladeuil, #57644).
 
10051
 
 
10052
* When a multi-range http GET request fails, try a single
 
10053
  range one. If it fails too, forget about ranges. Remember that until
 
10054
  the death of the transport and propagates that to the clones.
 
10055
  (Vincent Ladeuil, #62276, #62029).
 
10056
 
 
10057
* Handles user/passwords supplied in url from command
 
10058
  line (for the urllib implementation). Don't request already
 
10059
  known passwords (Vincent Ladeuil, #42383, #44647, #48527)
 
10060
 
 
10061
* ``_KnitIndex.add_versions()`` dictionary compresses revision ids as they
 
10062
  are added. This fixes bug where fetching remote revisions records
 
10063
  them as full references rather than integers.
 
10064
  (John Arbash Meinel, #64789)
 
10065
 
 
10066
* ``bzr ignore`` strips trailing slashes in patterns.
 
10067
  Also ``bzr ignore`` rejects absolute paths. (Kent Gibson, #4559)
 
10068
 
 
10069
* ``bzr ignore`` takes multiple arguments. (Cheuksan Edward Wang, #29488)
 
10070
 
 
10071
* mv correctly handles paths that traverse symlinks.
 
10072
  (Aaron Bentley, #66964)
 
10073
 
 
10074
* Give nicer looking error messages when failing to connect over ssh.
 
10075
  (John Arbash Meinel, #49172)
 
10076
 
 
10077
* Pushing to a remote branch does not currently update the remote working
 
10078
  tree. After a remote push, ``bzr status`` and ``bzr diff`` on the remote
 
10079
  machine now show that the working tree is out of date.
 
10080
  (Cheuksan Edward Wang #48136)
 
10081
 
 
10082
* Use patiencediff instead of difflib for determining deltas to insert
 
10083
  into knits. This avoids the O(N^3) behavior of difflib. Patience
 
10084
  diff should be O(N^2). (Cheuksan Edward Wang, #65714)
 
10085
 
 
10086
* Running ``bzr log`` on nonexistent file gives an error instead of the
 
10087
  entire log history. (Cheuksan Edward Wang #50793)
 
10088
 
 
10089
* ``bzr cat`` can look up contents of removed or renamed files. If the
 
10090
  pathname is ambiguous, i.e. the files in the old and new trees have
 
10091
  different id's, the default is the file in the new tree. The user can
 
10092
  use "--name-from-revision" to select the file in the old tree.
 
10093
  (Cheuksan Edward Wang, #30190)
 
10094
 
 
10095
Testing
 
10096
*******
 
10097
 
 
10098
* TestingHTTPRequestHandler really handles the Range header
 
10099
  (previously it was ignoring it and returning the whole file,).
 
10100
 
 
10101
bzr 0.12
 
10102
########
 
10103
 
 
10104
:Released:  2006-10-30
 
10105
 
 
10106
Internals
 
10107
*********
 
10108
 
 
10109
* Clean up ``bzr selftest --benchmark bundle`` to correct an import,
 
10110
  and remove benchmarks that take longer than 10min to run.
 
10111
  (John Arbash Meinel)
 
10112
 
 
10113
bzr 0.12rc1
 
10114
###########
 
10115
 
 
10116
:Released:  2006-10-23
 
10117
 
 
10118
Improvements
 
10119
************
 
10120
 
 
10121
* ``bzr log`` now shows dotted-decimal revision numbers for all revisions,
 
10122
  rather than just showing a decimal revision number for revisions on the
 
10123
  mainline. These revision numbers are not yet accepted as input into bzr
 
10124
  commands such as log, diff etc. (Robert Collins)
 
10125
 
 
10126
* revisions can now be specified using dotted-decimal revision numbers.
 
10127
  For instance, ``bzr diff -r 1.2.1..1.2.3``. (Robert Collins)
 
10128
 
 
10129
* ``bzr help commands`` output is now shorter (Aaron Bentley)
 
10130
 
 
10131
* ``bzr`` now uses lazy importing to reduce the startup time. This has
 
10132
  a moderate effect on lots of actions, especially ones that have
 
10133
  little to do. For example ``bzr rocks`` time is down to 116ms from
 
10134
  283ms. (John Arbash Meinel)
 
10135
 
 
10136
* New Registry class to provide name-to-object registry-like support,
 
10137
  for example for schemes where plugins can register new classes to
 
10138
  do certain tasks (e.g. log formatters). Also provides lazy registration
 
10139
  to allow modules to be loaded on request.
 
10140
  (John Arbash Meinel, Adeodato Simó)
 
10141
 
 
10142
API Incompatability
 
10143
*******************
 
10144
 
 
10145
* LogFormatter subclasses show now expect the 'revno' parameter to
 
10146
  show() to be a string rather than an int. (Robert Collins)
 
10147
 
 
10148
Internals
 
10149
*********
 
10150
 
 
10151
* ``TestCase.run_bzr``, ``run_bzr_captured``, and ``run_bzr_subprocess``
 
10152
  can take a ``working_dir='foo'`` parameter, which will change directory
 
10153
  for the command. (John Arbash Meinel)
 
10154
 
 
10155
* ``bzrlib.lazy_regex.lazy_compile`` can be used to create a proxy
 
10156
  around a regex, which defers compilation until first use.
 
10157
  (John Arbash Meinel)
 
10158
 
 
10159
* ``TestCase.run_bzr_subprocess`` defaults to supplying the
 
10160
  ``--no-plugins`` parameter to ensure test reproducability, and avoid
 
10161
  problems with system-wide installed plugins. (John Arbash Meinel)
 
10162
 
 
10163
* Unique tree root ids are now supported. Newly created trees still
 
10164
  use the common root id for compatibility with bzr versions before 0.12.
 
10165
  (Aaron Bentley)
 
10166
 
 
10167
* ``WorkingTree.set_root_id(None)`` is now deprecated. Please
 
10168
  pass in ``inventory.ROOT_ID`` if you want the default root id value.
 
10169
  (Robert Collins, John Arbash Meinel)
 
10170
 
 
10171
* New method ``WorkingTree.flush()`` which will write the current memory
 
10172
  inventory out to disk. At the same time, ``read_working_inventory`` will
 
10173
  no longer trash the current tree inventory if it has been modified within
 
10174
  the current lock, and the tree will now ``flush()`` automatically on
 
10175
  ``unlock()``. ``WorkingTree.set_root_id()`` has been updated to take
 
10176
  advantage of this functionality. (Robert Collins, John Arbash Meinel)
 
10177
 
 
10178
* ``bzrlib.tsort.merge_sorted`` now accepts ``generate_revnos``. This
 
10179
  parameter will cause it to add another column to its output, which
 
10180
  contains the dotted-decimal revno for each revision, as a tuple.
 
10181
  (Robert Collins)
 
10182
 
 
10183
* ``LogFormatter.show_merge`` is deprecated in favour of
 
10184
  ``LogFormatter.show_merge_revno``. (Robert Collins)
 
10185
 
 
10186
Bug Fixes
 
10187
*********
 
10188
 
 
10189
* Avoid circular imports by creating a deprecated function for
 
10190
  ``bzrlib.tree.RevisionTree``. Callers should have been using
 
10191
  ``bzrlib.revisontree.RevisionTree`` anyway. (John Arbash Meinel,
 
10192
  #66349)
 
10193
 
 
10194
* Don't use ``socket.MSG_WAITALL`` as it doesn't exist on all
 
10195
  platforms. (Martin Pool, #66356)
 
10196
 
 
10197
* Don't require ``Content-Type`` in range responses. Assume they are a
 
10198
  single range if ``Content-Type`` does not exist.
 
10199
  (John Arbash Meinel, #62473)
 
10200
 
 
10201
* bzr branch/pull no longer complain about progress bar cleanup when
 
10202
  interrupted during fetch.  (Aaron Bentley, #54000)
 
10203
 
 
10204
* ``WorkingTree.set_parent_trees()`` uses the trees to directly write
 
10205
  the basis inventory, rather than going through the repository. This
 
10206
  allows us to have 1 inventory read, and 2 inventory writes when
 
10207
  committing a new tree. (John Arbash Meinel)
 
10208
 
 
10209
* When reverting, files that are not locally modified that do not exist
 
10210
  in the target are deleted, not just unversioned (Aaron Bentley)
 
10211
 
 
10212
* When trying to acquire a lock, don't fail immediately. Instead, try
 
10213
  a few times (up to 1 hour) before timing out. Also, report why the
 
10214
  lock is unavailable (John Arbash Meinel, #43521, #49556)
 
10215
 
 
10216
* Leave HttpTransportBase daughter classes decides how they
 
10217
  implement cloning. (Vincent Ladeuil, #61606)
 
10218
 
 
10219
* diff3 does not indicate conflicts on clean merge. (Aaron Bentley)
 
10220
 
 
10221
* If a commit fails, the commit message is stored in a file at the root of
 
10222
  the tree for later commit. (Cheuksan Edward Wang, Stefan Metzmacher,
 
10223
  #32054)
 
10224
 
 
10225
Testing
 
10226
*******
 
10227
 
 
10228
* New test base class TestCaseWithMemoryTransport offers memory-only
 
10229
  testing facilities: its not suitable for tests that need to mutate disk
 
10230
  state, but most tests should not need that and should be converted to
 
10231
  TestCaseWithMemoryTransport. (Robert Collins)
 
10232
 
 
10233
* ``TestCase.make_branch_and_memory_tree`` now takes a format
 
10234
  option to set the BzrDir, Repository and Branch formats of the
 
10235
  created objects. (Robert Collins, John Arbash Meinel)
 
10236
 
 
10237
bzr 0.11
 
10238
########
 
10239
 
 
10240
:Released:  2006-10-02
 
10241
 
 
10242
* Smart server transport test failures on windows fixed. (Lukáš Lalinský).
 
10243
 
 
10244
bzr 0.11rc2
 
10245
###########
 
10246
 
 
10247
:Released:  2006-09-27
 
10248
 
 
10249
Bug Fixes
 
10250
*********
 
10251
 
 
10252
* Test suite hangs on windows fixed. (Andrew Bennets, Alexander Belchenko).
 
10253
 
 
10254
* Commit performance regression fixed. (Aaron Bentley, Robert Collins, John
 
10255
  Arbash Meinel).
 
10256
 
 
10257
bzr 0.11rc1
 
10258
###########
 
10259
 
 
10260
:Released:  2006-09-25
 
10261
 
 
10262
Improvements
 
10263
************
 
10264
 
 
10265
* Knit files now wait to create their contents until the first data is
 
10266
  added. The old code used to create an empty .knit and a .kndx with just
 
10267
  the header. However, this caused a lot of extra round trips over sftp.
 
10268
  This can change the time for ``bzr push`` to create a new remote branch
 
10269
  from 160s down to 100s. This also affects ``bzr commit`` performance when
 
10270
  adding new files, ``bzr commit`` on a new kernel-like tree drops from 50s
 
10271
  down to 40s (John Arbash Meinel, #44692)
 
10272
 
 
10273
* When an entire subtree has been deleted, commit will now report that
 
10274
  just the top of the subtree has been deleted, rather than reporting
 
10275
  all the individual items. (Robert Collins)
 
10276
 
 
10277
* Commit performs one less XML parse. (Robert Collins)
 
10278
 
 
10279
* ``bzr checkout`` now operates on readonly branches as well
 
10280
  as readwrite branches. This fixes bug #39542. (Robert Collins)
 
10281
 
 
10282
* ``bzr bind`` no longer synchronises history with the master branch.
 
10283
  Binding should be followed by an update or push to synchronise the
 
10284
  two branches. This is closely related to the fix for bug #39542.
 
10285
  (Robert Collins)
 
10286
 
 
10287
* ``bzrlib.lazy_import.lazy_import`` function to create on-demand
 
10288
  objects.  This allows all imports to stay at the global scope, but
 
10289
  modules will not actually be imported if they are not used.
 
10290
  (John Arbash Meinel)
 
10291
 
 
10292
* Support ``bzr://`` and ``bzr+ssh://`` urls to work with the new RPC-based
 
10293
  transport which will be used with the upcoming high-performance smart
 
10294
  server. The new command ``bzr serve`` will invoke bzr in server mode,
 
10295
  which processes these requests. (Andrew Bennetts, Robert Collins, Martin
 
10296
  Pool)
 
10297
 
 
10298
* New command ``bzr version-info`` which can be used to get a summary
 
10299
  of the current state of the tree. This is especially useful as part
 
10300
  of a build commands. See ``doc/version_info.txt`` for more information
 
10301
  (John Arbash Meinel)
 
10302
 
 
10303
Bug Fixes
 
10304
*********
 
10305
 
 
10306
* ``'bzr inventory [FILE...]'`` allows restricting the file list to a
 
10307
  specific set of files. (John Arbash Meinel, #3631)
 
10308
 
 
10309
* Don't abort when annotating empty files (John Arbash Meinel, #56814)
 
10310
 
 
10311
* Add ``Stanza.to_unicode()`` which can be passed to another Stanza
 
10312
  when nesting stanzas. Also, add ``read_stanza_unicode`` to handle when
 
10313
  reading a nested Stanza. (John Arbash Meinel)
 
10314
 
 
10315
* Transform._set_mode() needs to stat the right file.
 
10316
  (John Arbash Meinel, #56549)
 
10317
 
 
10318
* Raise WeaveFormatError rather than StopIteration when trying to read
 
10319
  an empty Weave file. (John Arbash Meinel, #46871)
 
10320
 
 
10321
* Don't access e.code for generic URLErrors, only HTTPErrors have .code.
 
10322
  (Vincent Ladeuil, #59835)
 
10323
 
 
10324
* Handle boundary="" lines properly to allow access through a Squid proxy.
 
10325
  (John Arbash Meinel, #57723)
 
10326
 
 
10327
* revert now removes newly-added directories (Aaron Bentley, #54172)
 
10328
 
 
10329
* ``bzr upgrade sftp://`` shouldn't fail to upgrade v6 branches if there
 
10330
  isn't a working tree. (David Allouche, #40679)
 
10331
 
 
10332
* Give nicer error messages when a user supplies an invalid --revision
 
10333
  parameter. (John Arbash Meinel, #55420)
 
10334
 
 
10335
* Handle when LANG is not recognized by python. Emit a warning, but
 
10336
  just revert to using 'ascii'. (John Arbash Meinel, #35392)
 
10337
 
 
10338
* Don't use ``preexec_fn`` on win32, as it is not supported by subprocess.
 
10339
  (John Arbash Meinel)
 
10340
 
 
10341
* Skip specific tests when the dependencies aren't met. This includes
 
10342
  some ``setup.py`` tests when ``python-dev`` is not available, and
 
10343
  some tests that depend on paramiko. (John Arbash Meinel, Mattheiu Moy)
 
10344
 
 
10345
* Fallback to Paramiko properly, if no ``ssh`` executable exists on
 
10346
  the system. (Andrew Bennetts, John Arbash Meinel)
 
10347
 
 
10348
* ``Branch.bind(other_branch)`` no longer takes a write lock on the
 
10349
  other branch, and will not push or pull between the two branches.
 
10350
  API users will need to perform a push or pull or update operation if they
 
10351
  require branch synchronisation to take place. (Robert Collins, #47344)
 
10352
 
 
10353
* When creating a tarball or zipfile export, export unicode names as utf-8
 
10354
  paths. This may not work perfectly on all platforms, but has the best
 
10355
  chance of working in the common case. (John Arbash Meinel, #56816)
 
10356
 
 
10357
* When committing, only files that exist in working tree or basis tree
 
10358
  may be specified (Aaron Bentley, #50793)
 
10359
 
 
10360
Portability
 
10361
***********
 
10362
 
 
10363
* Fixes to run on Python 2.5 (Brian M. Carlson, Martin Pool, Marien Zwart)
 
10364
 
 
10365
Internals
 
10366
*********
 
10367
 
 
10368
* TestCaseInTempDir now creates a separate directory for HOME, rather
 
10369
  than having HOME set to the same location as the working directory.
 
10370
  (John Arbash Meinel)
 
10371
 
 
10372
* ``run_bzr_subprocess()`` can take an optional ``env_changes={}`` parameter,
 
10373
  which will update os.environ inside the spawned child. It also can
 
10374
  take a ``universal_newlines=True``, which helps when checking the output
 
10375
  of the command. (John Arbash Meinel)
 
10376
 
 
10377
* Refactor SFTP vendors to allow easier re-use when ssh is used.
 
10378
  (Andrew Bennetts)
 
10379
 
 
10380
* ``Transport.list_dir()`` and ``Transport.iter_files_recursive()`` should always
 
10381
  return urlescaped paths. This is now tested (there were bugs in a few
 
10382
  of the transports) (Andrew Bennetts, David Allouche, John Arbash Meinel)
 
10383
 
 
10384
* New utility function ``symbol_versioning.deprecation_string``. Returns the
 
10385
  formatted string for a callable, deprecation format pair. (Robert Collins)
 
10386
 
 
10387
* New TestCase helper applyDeprecated. This allows you to call a callable
 
10388
  which is deprecated without it spewing to the screen, just by supplying
 
10389
  the deprecation format string issued for it. (Robert Collins)
 
10390
 
 
10391
* Transport.append and Transport.put have been deprecated in favor of
 
10392
  ``.append_bytes``, ``.append_file``, ``.put_bytes``, and
 
10393
  ``.put_file``. This removes the ambiguity in what type of object the
 
10394
  functions take.  ``Transport.non_atomic_put_{bytes,file}`` has also
 
10395
  been added. Which works similarly to ``Transport.append()`` except for
 
10396
  SFTP, it doesn't have a round trip when opening the file. Also, it
 
10397
  provides functionality for creating a parent directory when trying
 
10398
  to create a file, rather than raise NoSuchFile and forcing the
 
10399
  caller to repeat their request.
 
10400
  (John Arbash Meinel)
 
10401
 
 
10402
* WorkingTree has a new api ``unversion`` which allow the unversioning of
 
10403
  entries by their file id. (Robert Collins)
 
10404
 
 
10405
* ``WorkingTree.pending_merges`` is deprecated.  Please use the
 
10406
  ``get_parent_ids`` (introduced in 0.10) method instead. (Robert Collins)
 
10407
 
 
10408
* WorkingTree has a new ``lock_tree_write`` method which locks the branch for
 
10409
  read rather than write. This is appropriate for actions which only need
 
10410
  the branch data for reference rather than mutation. A new decorator
 
10411
  ``needs_tree_write_lock`` is provided in the workingtree module. Like the
 
10412
  ``needs_read_lock`` and ``needs_write_lock`` decorators this allows static
 
10413
  declaration of the locking requirements of a function to ensure that
 
10414
  a lock is taken out for casual scripts. (Robert Collins, #54107)
 
10415
 
 
10416
* All WorkingTree methods which write to the tree, but not to the branch
 
10417
  have been converted to use ``needs_tree_write_lock`` rather than
 
10418
  ``needs_write_lock``. Also converted is the revert, conflicts and tree
 
10419
  transform modules. This provides a modest performance improvement on
 
10420
  metadir style trees, due to the reduce lock-acquisition, and a more
 
10421
  significant performance improvement on lightweight checkouts from
 
10422
  remote branches, where trivial operations used to pay a significant
 
10423
  penalty. It also provides the basis for allowing readonly checkouts.
 
10424
  (Robert Collins)
 
10425
 
 
10426
* Special case importing the standard library 'copy' module. This shaves
 
10427
  off 40ms of startup time, while retaining compatibility. See:
 
10428
  ``bzrlib/inspect_for_copy.py`` for more details. (John Arbash Meinel)
 
10429
 
 
10430
* WorkingTree has a new parent class MutableTree which represents the
 
10431
  specialisations of Tree which are able to be altered. (Robert Collins)
 
10432
 
 
10433
* New methods mkdir and ``put_file_bytes_non_atomic`` on MutableTree that
 
10434
  mutate the tree and its contents. (Robert Collins)
 
10435
 
 
10436
* Transport behaviour at the root of the URL is now defined and tested.
 
10437
  (Andrew Bennetts, Robert Collins)
 
10438
 
 
10439
Testing
 
10440
*******
 
10441
 
 
10442
* New test helper classs MemoryTree. This is typically accessed via
 
10443
  ``self.make_branch_and_memory_tree()`` in test cases. (Robert Collins)
 
10444
 
 
10445
* Add ``start_bzr_subprocess`` and ``stop_bzr_subprocess`` to allow test
 
10446
  code to continue running concurrently with a subprocess of bzr.
 
10447
  (Andrew Bennetts, Robert Collins)
 
10448
 
 
10449
* Add a new method ``Transport.get_smart_client()``. This is provided to
 
10450
  allow upgrades to a richer interface than the VFS one provided by
 
10451
  Transport. (Andrew Bennetts, Martin Pool)
 
10452
 
 
10453
bzr 0.10
 
10454
########
 
10455
 
 
10456
:Released:  2006-08-29
 
10457
 
 
10458
Improvements
 
10459
************
 
10460
* 'merge' now takes --uncommitted, to apply uncommitted changes from a
 
10461
  tree.  (Aaron Bentley)
 
10462
 
 
10463
* 'bzr add --file-ids-from' can be used to specify another path to use
 
10464
  for creating file ids, rather than generating all new ones. Internally,
 
10465
  the 'action' passed to ``smart_add_tree()`` can return ``file_ids`` that
 
10466
  will be used, rather than having bzrlib generate new ones.
 
10467
  (John Arbash Meinel, #55781)
 
10468
 
 
10469
* ``bzr selftest --benchmark`` now allows a ``--cache-dir`` parameter.
 
10470
  This will cache some of the intermediate trees, and decrease the
 
10471
  setup time for benchmark tests. (John Arbash Meinel)
 
10472
 
 
10473
* Inverse forms are provided for all boolean options.  For example,
 
10474
  --strict has --no-strict, --no-recurse has --recurse (Aaron Bentley)
 
10475
 
 
10476
* Serialize out Inventories directly, rather than using ElementTree.
 
10477
  Writing out a kernel sized inventory drops from 2s down to ~350ms.
 
10478
  (Robert Collins, John Arbash Meinel)
 
10479
 
 
10480
Bug Fixes
 
10481
*********
 
10482
 
 
10483
* Help diffutils 2.8.4 get along with binary tests (Marien Zwart: #57614)
 
10484
 
 
10485
* Change LockDir so that if the lock directory doesn't exist when
 
10486
  ``lock_write()`` is called, an attempt will be made to create it.
 
10487
  (John Arbash Meinel, #56974)
 
10488
 
 
10489
* ``bzr uncommit`` preserves pending merges. (John Arbash Meinel, #57660)
 
10490
 
 
10491
* Active FTP transport now works as intended. (ghozzy, #56472)
 
10492
 
 
10493
* Really fix mutter() so that it won't ever raise a UnicodeError.
 
10494
  It means it is possible for ~/.bzr.log to contain non UTF-8 characters.
 
10495
  But it is a debugging log, not a real user file.
 
10496
  (John Arbash Meinel, #56947, #53880)
 
10497
 
 
10498
* Change Command handle to allow Unicode command and options.
 
10499
  At present we cannot register Unicode command names, so we will get
 
10500
  BzrCommandError('unknown command'), or BzrCommandError('unknown option')
 
10501
  But that is better than a UnicodeError + a traceback.
 
10502
  (John Arbash Meinel, #57123)
 
10503
 
 
10504
* Handle TZ=UTC properly when reading/writing revisions.
 
10505
  (John Arbash Meinel, #55783, #56290)
 
10506
 
 
10507
* Use ``GPG_TTY`` to allow gpg --cl to work with gpg-agent in a pipeline,
 
10508
  (passing text to sign in on stdin). (John Arbash Meinel, #54468)
 
10509
 
 
10510
* External diff does the right thing for binaries even in foreign
 
10511
  languages. (John Arbash Meinel, #56307)
 
10512
 
 
10513
* Testament handles more cases when content is unicode. Specific bug was
 
10514
  in handling of revision properties.
 
10515
  (John Arbash Meinel, Holger Krekel, #54723)
 
10516
 
 
10517
* The bzr selftest was failing on installed versions due to a bug in a new
 
10518
  test helper. (John Arbash Meinel, Robert Collins, #58057)
 
10519
 
 
10520
Internals
 
10521
*********
 
10522
 
 
10523
* ``bzrlib.cache_utf8`` contains ``encode()`` and ``decode()`` functions
 
10524
  which can be used to cache the conversion between utf8 and Unicode.
 
10525
  Especially helpful for some of the knit annotation code, which has to
 
10526
  convert revision ids to utf8 to annotate lines in storage.
 
10527
  (John Arbash Meinel)
 
10528
 
 
10529
* ``setup.py`` now searches the filesystem to find all packages which
 
10530
  need to be installed. This should help make the life of packagers
 
10531
  easier. (John Arbash Meinel)
 
10532
 
 
10533
bzr 0.9.0
 
10534
#########
 
10535
 
 
10536
:Released:  2006-08-11
 
10537
 
 
10538
Surprises
 
10539
*********
 
10540
 
 
10541
* The hard-coded built-in ignore rules have been removed. There are
 
10542
  now two rulesets which are enforced. A user global one in
 
10543
  ``~/.bazaar/ignore`` which will apply to every tree, and the tree
 
10544
  specific one '.bzrignore'.
 
10545
  ``~/.bazaar/ignore`` will be created if it does not exist, but with
 
10546
  a more conservative list than the old default.
 
10547
  This fixes bugs with default rules being enforced no matter what.
 
10548
  The old list of ignore rules from bzr is available by
 
10549
  running 'bzr ignore --old-default-rules'.
 
10550
  (Robert Collins, Martin Pool, John Arbash Meinel)
 
10551
 
 
10552
* 'branches.conf' has been changed to 'locations.conf', since it can apply
 
10553
  to more locations than just branch locations.
 
10554
  (Aaron Bentley)
 
10555
 
 
10556
Improvements
 
10557
************
 
10558
 
 
10559
* The revision specifier "revno:" is extended to accept the syntax
 
10560
  revno:N:branch. For example,
 
10561
  revno:42:http://bazaar-vcs.org/bzr/bzr.dev/ means revision 42 in
 
10562
  bzr.dev.  (Matthieu Moy)
 
10563
 
 
10564
* Tests updates to ensure proper URL handling, UNICODE support, and
 
10565
  proper printing when the user's terminal encoding cannot display
 
10566
  the path of a file that has been versioned.
 
10567
  ``bzr branch`` can take a target URL rather than only a local directory.
 
10568
  ``Branch.get_parent()/set_parent()`` now save a relative path if possible,
 
10569
  and normalize the parent based on root, allowing access across
 
10570
  different transports. (John Arbash Meinel, Wouter van Heyst, Martin Pool)
 
10571
  (Malone #48906, #42699, #40675, #5281, #3980, #36363, #43689,
 
10572
  #42517, #42514)
 
10573
 
 
10574
* On Unix, detect terminal width using an ioctl not just $COLUMNS.
 
10575
  Use terminal width for single-line logs from ``bzr log --line`` and
 
10576
  pending-merge display.  (Robert Widhopf-Fenk, Gustavo Niemeyer)
 
10577
  (Malone #3507)
 
10578
 
 
10579
* On Windows, detect terminal width using GetConsoleScreenBufferInfo.
 
10580
  (Alexander Belchenko)
 
10581
 
 
10582
* Speedup improvement for 'date:'-revision search. (Guillaume Pinot).
 
10583
 
 
10584
* Show the correct number of revisions pushed when pushing a new branch.
 
10585
  (Robert Collins).
 
10586
 
 
10587
* 'bzr selftest' now shows a progress bar with the number of tests, and
 
10588
  progress made. 'make check' shows tests in -v mode, to be more useful
 
10589
  for the PQM status window. (Robert Collins).
 
10590
  When using a progress bar, failed tests are printed out, rather than
 
10591
  being overwritten by the progress bar until the suite finishes.
 
10592
  (John Arbash Meinel)
 
10593
 
 
10594
* 'bzr selftest --benchmark' will run a new benchmarking selftest.
 
10595
  'bzr selftest --benchmark --lsprof-timed' will use lsprofile to generate
 
10596
  profile data for the individual profiled calls, allowing for fine
 
10597
  grained analysis of performance.
 
10598
  (Robert Collins, Martin Pool).
 
10599
 
 
10600
* 'bzr commit' shows a progress bar. This is useful for commits over sftp
 
10601
  where commit can take an appreciable time. (Robert Collins)
 
10602
 
 
10603
* 'bzr add' is now less verbose in telling you what ignore globs were
 
10604
  matched by files being ignored. Instead it just tells you how many
 
10605
  were ignored (because you might reasonably be expecting none to be
 
10606
  ignored). 'bzr add -v' is unchanged and will report every ignored
 
10607
  file. (Robert Collins).
 
10608
 
 
10609
* ftp now has a test server if medusa is installed. As part of testing,
 
10610
  ftp support has been improved, including support for supplying a
 
10611
  non-standard port. (John Arbash Meinel).
 
10612
 
 
10613
* 'bzr log --line' shows the revision number, and uses only the
 
10614
  first line of the log message (#5162, Alexander Belchenko;
 
10615
  Matthieu Moy)
 
10616
 
 
10617
* 'bzr status' has had the --all option removed. The 'bzr ls' command
 
10618
  should be used to retrieve all versioned files. (Robert Collins)
 
10619
 
 
10620
* 'bzr bundle OTHER/BRANCH' will create a bundle which can be sent
 
10621
  over email, and applied on the other end, while maintaining ancestry.
 
10622
  This bundle can be applied with either 'bzr merge' or 'bzr pull',
 
10623
  the same way you would apply another branch.
 
10624
  (John Arbash Meinel, Aaron Bentley)
 
10625
 
 
10626
* 'bzr whoami' can now be used to set your identity from the command line,
 
10627
  for a branch or globally.  (Robey Pointer)
 
10628
 
 
10629
* 'bzr checkout' now aliased to 'bzr co', and 'bzr annotate' to 'bzr ann'.
 
10630
  (Michael Ellerman)
 
10631
 
 
10632
* 'bzr revert DIRECTORY' now reverts the contents of the directory as well.
 
10633
  (Aaron Bentley)
 
10634
 
 
10635
* 'bzr get sftp://foo' gives a better error when paramiko is not present.
 
10636
  Also updates things like 'http+pycurl://' if pycurl is not present.
 
10637
  (John Arbash Meinel) (Malone #47821, #52204)
 
10638
 
 
10639
* New env variable ``BZR_PROGRESS_BAR``, sets the default progress bar type.
 
10640
  Can be set to 'none' or 'dummy' to disable the progress bar, 'dots' or
 
10641
  'tty' to create the respective type. (John Arbash Meinel, #42197, #51107)
 
10642
 
 
10643
* Improve the help text for 'bzr diff' to explain what various options do.
 
10644
  (John Arbash Meinel, #6391)
 
10645
 
 
10646
* 'bzr uncommit -r 10' now uncommits revisions 11.. rather than uncommitting
 
10647
  revision 10. This makes -r10 more in line with what other commands do.
 
10648
  'bzr uncommit' also now saves the pending merges of the revisions that
 
10649
  were removed. So it is safe to uncommit after a merge, fix something,
 
10650
  and commit again. (John Arbash Meinel, #32526, #31426)
 
10651
 
 
10652
* 'bzr init' now also works on remote locations.
 
10653
  (Wouter van Heyst, #48904)
 
10654
 
 
10655
* HTTP support has been updated. When using pycurl we now support
 
10656
  connection keep-alive, which reduces dns requests and round trips.
 
10657
  And for both urllib and pycurl we support multi-range requests,
 
10658
  which decreases the number of round-trips. Performance results for
 
10659
  ``bzr branch http://bazaar-vcs.org/bzr/bzr.dev/`` indicate
 
10660
  http branching is now 2-3x faster, and ``bzr pull`` in an existing
 
10661
  branch is as much as 4x faster.
 
10662
  (Michael Ellerman, Johan Rydberg, John Arbash Meinel, #46768)
 
10663
 
 
10664
* Performance improvements for sftp. Branching and pulling are now up to
 
10665
  2x faster. Utilize paramiko.readv() support for async requests if it
 
10666
  is available (paramiko > 1.6) (John Arbash Meinel)
 
10667
 
 
10668
Bug Fixes
 
10669
*********
 
10670
 
 
10671
* Fix shadowed definition of TestLocationConfig that caused some
 
10672
  tests not to run.
 
10673
  (Erik Bågfors, Michael Ellerman, Martin Pool, #32587)
 
10674
 
 
10675
* Fix unnecessary requirement of sign-my-commits that it be run from
 
10676
  a working directory.  (Martin Pool, Robert Collins)
 
10677
 
 
10678
* 'bzr push location' will only remember the push location if it succeeds
 
10679
  in connecting to the remote location. (John Arbash Meinel, #49742)
 
10680
 
 
10681
* 'bzr revert' no longer toggles the executable bit on win32
 
10682
  (John Arbash Meinel, #45010)
 
10683
 
 
10684
* Handle broken pipe under win32 correctly. (John Arbash Meinel)
 
10685
 
 
10686
* sftp tests now work correctly on win32 if you have a newer paramiko
 
10687
  (John Arbash Meinel)
 
10688
 
 
10689
* Cleanup win32 test suite, and general cleanup of places where
 
10690
  file handles were being held open. (John Arbash Meinel)
 
10691
 
 
10692
* When specifying filenames for 'diff -r x..y', the name of the file in the
 
10693
  working directory can be used, even if its name is different in both x
 
10694
  and y.
 
10695
 
 
10696
* File-ids containing single- or double-quotes are handled correctly by
 
10697
  push. (Aaron Bentley, #52227)
 
10698
 
 
10699
* Normalize unicode filenames to ensure cross-platform consistency.
 
10700
  (John Arbash Meinel, #43689)
 
10701
 
 
10702
* The argument parser can now handle '-' as an argument. Currently
 
10703
  no code interprets it specially (it is mostly handled as a file named
 
10704
  '-'). But plugins, and future operations can use it.
 
10705
  (John Arbash meinel, #50984)
 
10706
 
 
10707
* Bundles can properly read binary files with a plain '\r' in them.
 
10708
  (John Arbash Meinel, #51927)
 
10709
 
 
10710
* Tuning ``iter_entries()`` to be more efficient (John Arbash Meinel, #5444)
 
10711
 
 
10712
* Lots of win32 fixes (the test suite passes again).
 
10713
  (John Arbash Meinel, #50155)
 
10714
 
 
10715
* Handle openbsd returning None for sys.getfilesystemencoding() (#41183)
 
10716
 
 
10717
* Support ftp APPE (append) to allow Knits to be used over ftp (#42592)
 
10718
 
 
10719
* Removals are only committed if they match the filespec (or if there is
 
10720
  no filespec).  (#46635, Aaron Bentley)
 
10721
 
 
10722
* smart-add recurses through all supplied directories
 
10723
  (John Arbash Meinel, #52578)
 
10724
 
 
10725
* Make the bundle reader extra lines before and after the bundle text.
 
10726
  This allows you to parse an email with the bundle inline.
 
10727
  (John Arbash Meinel, #49182)
 
10728
 
 
10729
* Change the file id generator to squash a little bit more. Helps when
 
10730
  working with long filenames on windows. (Also helps for unicode filenames
 
10731
  not generating hidden files). (John Arbash Meinel, #43801)
 
10732
 
 
10733
* Restore terminal mode on C-c while reading sftp password.  (#48923,
 
10734
  Nicholas Allen, Martin Pool)
 
10735
 
 
10736
* Timestamps are rounded to 1ms, and revision entries can be recreated
 
10737
  exactly. (John Arbash Meinel, Jamie Wilkinson, #40693)
 
10738
 
 
10739
* Branch.base has changed to a URL, but ~/.bazaar/locations.conf should
 
10740
  use local paths, since it is user visible (John Arbash Meinel, #53653)
 
10741
 
 
10742
* ``bzr status foo`` when foo was unversioned used to cause a full delta
 
10743
  to be generated (John Arbash Meinel, #53638)
 
10744
 
 
10745
* When reading revision properties, an empty value should be considered
 
10746
  the empty string, not None (John Arbash Meinel, #47782)
 
10747
 
 
10748
* ``bzr diff --diff-options`` can now handle binary files being changed.
 
10749
  Also, the output is consistent when --diff-options is not supplied.
 
10750
  (John Arbash Meinel, #54651, #52930)
 
10751
 
 
10752
* Use the right suffixes for loading plugins (John Arbash Meinel, #51810)
 
10753
 
 
10754
* Fix ``Branch.get_parent()`` to handle the case when the parent is not
 
10755
  accessible (John Arbash Meinel, #52976)
 
10756
 
 
10757
Internals
 
10758
*********
 
10759
 
 
10760
* Combine the ignore rules into a single regex rather than looping over
 
10761
  them to reduce the threshold where  N^2 behaviour occurs in operations
 
10762
  like status. (Jan Hudec, Robert Collins).
 
10763
 
 
10764
* Appending to ``bzrlib.DEFAULT_IGNORE`` is now deprecated. Instead, use
 
10765
  one of the add functions in bzrlib.ignores. (John Arbash Meinel)
 
10766
 
 
10767
* 'bzr push' should only push the ancestry of the current revision, not
 
10768
  all of the history in the repository. This is especially important for
 
10769
  shared repositories. (John Arbash Meinel)
 
10770
 
 
10771
* ``bzrlib.delta.compare_trees`` now iterates in alphabetically sorted order,
 
10772
  rather than randomly walking the inventories. (John Arbash Meinel)
 
10773
 
 
10774
* Doctests are now run in temporary directories which are cleaned up when
 
10775
  they finish, rather than using special ScratchDir/ScratchBranch objects.
 
10776
  (Martin Pool)
 
10777
 
 
10778
* Split ``check`` into separate methods on the branch and on the repository,
 
10779
  so that it can be specialized in ways that are useful or efficient for
 
10780
  different formats.  (Martin Pool, Robert Collins)
 
10781
 
 
10782
* Deprecate ``Repository.all_revision_ids``; most methods don't really need
 
10783
  the global revision graph but only that part leading up to a particular
 
10784
  revision.  (Martin Pool, Robert Collins)
 
10785
 
 
10786
* Add a BzrDirFormat ``control_formats`` list which allows for control formats
 
10787
  that do not use '.bzr' to store their data - i.e. '.svn', '.hg' etc.
 
10788
  (Robert Collins, Jelmer Vernooij).
 
10789
 
 
10790
* ``bzrlib.diff.external_diff`` can be redirected to any file-like object.
 
10791
  Uses subprocess instead of spawnvp.
 
10792
  (James Henstridge, John Arbash Meinel, #4047, #48914)
 
10793
 
 
10794
* New command line option '--profile-imports', which will install a custom
 
10795
  importer to log time to import modules and regex compilation time to
 
10796
  sys.stderr (John Arbash Meinel)
 
10797
 
 
10798
* 'EmptyTree' is now deprecated, please use ``repository.revision_tree(None)``
 
10799
  instead. (Robert Collins)
 
10800
 
 
10801
* "RevisionTree" is now in bzrlib/revisiontree.py. (Robert Collins)
 
10802
 
 
10803
bzr 0.8.2
 
10804
#########
 
10805
 
 
10806
:Released:  2006-05-17
 
10807
 
 
10808
Bug Fixes
 
10809
*********
 
10810
 
 
10811
* setup.py failed to install launchpad plugin.  (Martin Pool)
 
10812
 
 
10813
bzr 0.8.1
 
10814
#########
 
10815
 
 
10816
:Released:  2006-05-16
 
10817
 
 
10818
Bug Fixes
 
10819
*********
 
10820
 
 
10821
* Fix failure to commit a merge in a checkout.  (Martin Pool,
 
10822
  Robert Collins, Erik Bågfors, #43959)
 
10823
 
 
10824
* Nicer messages from 'commit' in the case of renames, and correct
 
10825
  messages when a merge has occured. (Robert Collins, Martin Pool)
 
10826
 
 
10827
* Separate functionality from assert statements as they are skipped in
 
10828
  optimized mode of python. Add the same check to pending merges.
 
10829
  (Olaf Conradi, #44443)
 
10830
 
 
10831
Changes
 
10832
*******
 
10833
 
 
10834
* Do not show the None revision in output of bzr ancestry. (Olaf Conradi)
 
10835
 
 
10836
* Add info on standalone branches without a working tree.
 
10837
  (Olaf Conradi, #44155)
 
10838
 
 
10839
* Fix bug in knits when raising InvalidRevisionId. (Olaf Conradi, #44284)
 
10840
 
 
10841
Changes
 
10842
*******
 
10843
 
 
10844
* Make editor invocation comply with Debian Policy. First check
 
10845
  environment variables VISUAL and EDITOR, then try editor from
 
10846
  alternatives system. If that all fails, fall back to the pre-defined
 
10847
  list of editors. (Olaf Conradi, #42904)
 
10848
 
 
10849
New Features
 
10850
************
 
10851
 
 
10852
* New 'register-branch' command registers a public branch into
 
10853
  Launchpad.net, where it can be associated with bugs, etc.
 
10854
  (Martin Pool, Bjorn Tillenius, Robert Collins)
 
10855
 
 
10856
Internals
 
10857
*********
 
10858
 
 
10859
* New public api in InventoryEntry - ``describe_change(old, new)`` which
 
10860
  provides a human description of the changes between two old and
 
10861
  new. (Robert Collins, Martin Pool)
 
10862
 
 
10863
Testing
 
10864
*******
 
10865
 
 
10866
* Fix test case for bzr info in upgrading a standalone branch to metadir,
 
10867
  uses bzrlib api now. (Olaf Conradi)
 
10868
 
 
10869
bzr 0.8
 
10870
#######
 
10871
 
 
10872
:Released:  2006-05-08
 
10873
 
 
10874
Notes When Upgrading
 
10875
********************
 
10876
 
 
10877
Release 0.8 of bzr introduces a new format for history storage, called
 
10878
'knit', as an evolution of to the 'weave' format used in 0.7.  Local
 
10879
and remote operations are faster using knits than weaves.  Several
 
10880
operations including 'init', 'init-repo', and 'upgrade' take a
 
10881
--format option that controls this.  Branching from an existing branch
 
10882
will keep the same format.
 
10883
 
 
10884
It is possible to merge, pull and push between branches of different
 
10885
formats but this is slower than moving data between homogenous
 
10886
branches.  It is therefore recommended (but not required) that you
 
10887
upgrade all branches for a project at the same time.  Information on
 
10888
formats is shown by 'bzr info'.
 
10889
 
 
10890
bzr 0.8 now allows creation of 'repositories', which hold the history
 
10891
of files and revisions for several branches.  Previously bzr kept all
 
10892
the history for a branch within the .bzr directory at the root of the
 
10893
branch, and this is still the default.  To create a repository, use
 
10894
the new 'bzr init-repo' command.  Branches exist as directories under
 
10895
the repository and contain just a small amount of information
 
10896
indicating the current revision of the branch.
 
10897
 
 
10898
bzr 0.8 also supports 'checkouts', which are similar to in cvs and
 
10899
subversion.  Checkouts are associated with a branch (optionally in a
 
10900
repository), which contains all the historical information.  The
 
10901
result is that a checkout can be deleted without losing any
 
10902
already-committed revisions.  A new 'update' command is also available.
 
10903
 
 
10904
Repositories and checkouts are not supported with the 0.7 storage
 
10905
format.  To use them you must upgrad to either knits, or to the
 
10906
'metaweave' format, which uses weaves but changes the .bzr directory
 
10907
arrangement.
 
10908
 
 
10909
 
 
10910
Improvements
 
10911
************
 
10912
 
 
10913
* sftp paths can now be relative, or local, according to the lftp
 
10914
  convention. Paths now take the form::
 
10915
 
 
10916
      sftp://user:pass@host:port/~/relative/path
 
10917
      or
 
10918
      sftp://user:pass@host:port/absolute/path
 
10919
 
 
10920
* The FTP transport now tries to reconnect after a temporary
 
10921
  failure. ftp put is made atomic. (Matthieu Moy)
 
10922
 
 
10923
* The FTP transport now maintains a pool of connections, and
 
10924
  reuses them to avoid multiple connections to the same host (like
 
10925
  sftp did). (Daniel Silverstone)
 
10926
 
 
10927
* The ``bzr_man.py`` file has been removed. To create the man page now,
 
10928
  use ``./generate_docs.py man``. The new program can also create other files.
 
10929
  Run ``python generate_docs.py --help`` for usage information.
 
10930
  (Hans Ulrich Niedermann & James Blackwell).
 
10931
 
 
10932
* Man Page now gives full help (James Blackwell).
 
10933
  Help also updated to reflect user config now being stored in .bazaar
 
10934
  (Hans Ulrich Niedermann)
 
10935
 
 
10936
* It's now possible to set aliases in bazaar.conf (Erik Bågfors)
 
10937
 
 
10938
* Pull now accepts a --revision argument (Erik Bågfors)
 
10939
 
 
10940
* ``bzr re-sign`` now allows multiple revisions to be supplied on the command
 
10941
  line. You can now use the following command to sign all of your old
 
10942
  commits::
 
10943
 
 
10944
    find .bzr/revision-store// -name my@email-* \
 
10945
      | sed 's/.*\/\/..\///' \
 
10946
      | xargs bzr re-sign
 
10947
 
 
10948
* Upgrade can now upgrade over the network. (Robert Collins)
 
10949
 
 
10950
* Two new commands 'bzr checkout' and 'bzr update' allow for CVS/SVN-alike
 
10951
  behaviour.  By default they will cache history in the checkout, but
 
10952
  with --lightweight almost all data is kept in the master branch.
 
10953
  (Robert Collins)
 
10954
 
 
10955
* 'revert' unversions newly-versioned files, instead of deleting them.
 
10956
 
 
10957
* 'merge' is more robust.  Conflict messages have changed.
 
10958
 
 
10959
* 'merge' and 'revert' no longer clobber existing files that end in '~' or
 
10960
  '.moved'.
 
10961
 
 
10962
* Default log format can be set in configuration and plugins can register
 
10963
  their own formatters. (Erik Bågfors)
 
10964
 
 
10965
* New 'reconcile' command will check branch consistency and repair indexes
 
10966
  that can become out of sync in pre 0.8 formats. (Robert Collins,
 
10967
  Daniel Silverstone)
 
10968
 
 
10969
* New 'bzr init --format' and 'bzr upgrade --format' option to control
 
10970
  what storage format is created or produced.  (Robert Collins,
 
10971
  Martin Pool)
 
10972
 
 
10973
* Add parent location to 'bzr info', if there is one.  (Olaf Conradi)
 
10974
 
 
10975
* New developer commands 'weave-list' and 'weave-join'.  (Martin Pool)
 
10976
 
 
10977
* New 'init-repository' command, plus support for repositories in 'init'
 
10978
  and 'branch' (Aaron Bentley, Erik Bågfors, Robert Collins)
 
10979
 
 
10980
* Improve output of 'info' command. Show all relevant locations related to
 
10981
  working tree, branch and repository. Use kibibytes for binary quantities.
 
10982
  Fix off-by-one error in missing revisions of working tree.  Make 'info'
 
10983
  work on branches, repositories and remote locations.  Show locations
 
10984
  relative to the shared repository, if applicable.  Show locking status
 
10985
  of locations.  (Olaf Conradi)
 
10986
 
 
10987
* Diff and merge now safely handle binary files. (Aaron Bentley)
 
10988
 
 
10989
* 'pull' and 'push' now normalise the revision history, so that any two
 
10990
  branches with the same tip revision will have the same output from 'log'.
 
10991
  (Robert Collins)
 
10992
 
 
10993
* 'merge' accepts --remember option to store parent location, like 'push'
 
10994
  and 'pull'. (Olaf Conradi)
 
10995
 
 
10996
* bzr status and diff when files given as arguments do not exist
 
10997
  in the relevant trees.  (Martin Pool, #3619)
 
10998
 
 
10999
* Add '.hg' to the default ignore list.  (Martin Pool)
 
11000
 
 
11001
* 'knit' is now the default disk format. This improves disk performance and
 
11002
  utilization, increases incremental pull performance, robustness with SFTP
 
11003
  and allows checkouts over SFTP to perform acceptably.
 
11004
  The initial Knit code was contributed by Johan Rydberg based on a
 
11005
  specification by Martin Pool.
 
11006
  (Robert Collins, Aaron Bentley, Johan Rydberg, Martin Pool).
 
11007
 
 
11008
* New tool to generate all-in-one html version of the manual.  (Alexander
 
11009
  Belchenko)
 
11010
 
 
11011
* Hitting CTRL-C while doing an SFTP push will no longer cause stale locks
 
11012
  to be left in the SFTP repository. (Robert Collins, Martin Pool).
 
11013
 
 
11014
* New option 'diff --prefix' to control how files are named in diff
 
11015
  output, with shortcuts '-p0' and '-p1' corresponding to the options for
 
11016
  GNU patch.  (Alexander Belchenko, Goffredo Baroncelli, Martin Pool)
 
11017
 
 
11018
* Add --revision option to 'annotate' command.  (Olaf Conradi)
 
11019
 
 
11020
* If bzr shows an unexpected revision-history after pulling (perhaps due
 
11021
  to a reweave) it can now be corrected by 'bzr reconcile'.
 
11022
  (Robert Collins)
 
11023
 
 
11024
Changes
 
11025
*******
 
11026
 
 
11027
* Commit is now verbose by default, and shows changed filenames and the
 
11028
  new revision number.  (Robert Collins, Martin Pool)
 
11029
 
 
11030
* Unify 'mv', 'move', 'rename'.  (Matthew Fuller, #5379)
 
11031
 
 
11032
* 'bzr -h' shows help.  (Martin Pool, Ian Bicking, #35940)
 
11033
 
 
11034
* Make 'pull' and 'push' remember location on failure using --remember.
 
11035
  (Olaf Conradi)
 
11036
 
 
11037
* For compatibility, make old format for using weaves inside metadir
 
11038
  available as 'metaweave' format.  Rename format 'metadir' to 'default'.
 
11039
  Clean up help for option --format in commands 'init', 'init-repo' and
 
11040
  'upgrade'.  (Olaf Conradi)
 
11041
 
 
11042
Internals
 
11043
*********
 
11044
 
 
11045
* The internal storage of history, and logical branch identity have now
 
11046
  been split into Branch, and Repository. The common locking and file
 
11047
  management routines are now in bzrlib.lockablefiles.
 
11048
  (Aaron Bentley, Robert Collins, Martin Pool)
 
11049
 
 
11050
* Transports can now raise DependencyNotPresent if they need a library
 
11051
  which is not installed, and then another implementation will be
 
11052
  tried.  (Martin Pool)
 
11053
 
 
11054
* Remove obsolete (and no-op) `decode` parameter to `Transport.get`.
 
11055
  (Martin Pool)
 
11056
 
 
11057
* Using Tree Transform for merge, revert, tree-building
 
11058
 
 
11059
* WorkingTree.create, Branch.create, ``WorkingTree.create_standalone``,
 
11060
  Branch.initialize are now deprecated. Please see ``BzrDir.create_*`` for
 
11061
  replacement API's. (Robert Collins)
 
11062
 
 
11063
* New BzrDir class represents the .bzr control directory and manages
 
11064
  formatting issues. (Robert Collins)
 
11065
 
 
11066
* New repository.InterRepository class encapsulates Repository to
 
11067
  Repository actions and allows for clean selection of optimised code
 
11068
  paths. (Robert Collins)
 
11069
 
 
11070
* ``bzrlib.fetch.fetch`` and ``bzrlib.fetch.greedy_fetch`` are now
 
11071
  deprecated, please use ``branch.fetch`` or ``repository.fetch``
 
11072
  depending on your needs. (Robert Collins)
 
11073
 
 
11074
* deprecated methods now have a ``is_deprecated`` flag on them that can
 
11075
  be checked, if you need to determine whether a given callable is
 
11076
  deprecated at runtime. (Robert Collins)
 
11077
 
 
11078
* Progress bars are now nested - see
 
11079
  ``bzrlib.ui.ui_factory.nested_progress_bar``.
 
11080
  (Robert Collins, Robey Pointer)
 
11081
 
 
11082
* New API call ``get_format_description()`` for each type of format.
 
11083
  (Olaf Conradi)
 
11084
 
 
11085
* Changed ``branch.set_parent()`` to accept None to remove parent.
 
11086
  (Olaf Conradi)
 
11087
 
 
11088
* Deprecated BzrError AmbiguousBase.  (Olaf Conradi)
 
11089
 
 
11090
* WorkingTree.branch is now a read only property.  (Robert Collins)
 
11091
 
 
11092
* bzrlib.ui.text.TextUIFactory now accepts a ``bar_type`` parameter which
 
11093
  can be None or a factory that will create a progress bar. This is
 
11094
  useful for testing or for overriding the bzrlib.progress heuristic.
 
11095
  (Robert Collins)
 
11096
 
 
11097
* New API method ``get_physical_lock_status()`` to query locks present on a
 
11098
  transport.  (Olaf Conradi)
 
11099
 
 
11100
* Repository.reconcile now takes a thorough keyword parameter to allow
 
11101
  requesting an indepth reconciliation, rather than just a data-loss
 
11102
  check. (Robert Collins)
 
11103
 
 
11104
* ``bzrlib.ui.ui_factory protocol`` now supports ``get_boolean`` to prompt
 
11105
  the user for yes/no style input. (Robert Collins)
 
11106
 
 
11107
Testing
 
11108
*******
 
11109
 
 
11110
* SFTP tests now shortcut the SSH negotiation, reducing test overhead
 
11111
  for testing SFTP protocol support. (Robey Pointer)
 
11112
 
 
11113
* Branch formats are now tested once per implementation (see ``bzrlib.
 
11114
  tests.branch_implementations``. This is analagous to the transport
 
11115
  interface tests, and has been followed up with working tree,
 
11116
  repository and BzrDir tests. (Robert Collins)
 
11117
 
 
11118
* New test base class TestCaseWithTransport provides a transport aware
 
11119
  test environment, useful for testing any transport-interface using
 
11120
  code. The test suite option --transport controls the transport used
 
11121
  by this class (when its not being used as part of implementation
 
11122
  contract testing). (Robert Collins)
 
11123
 
 
11124
* Close logging handler on disabling the test log. This will remove the
 
11125
  handler from the internal list inside python's logging module,
 
11126
  preventing shutdown from closing it twice.  (Olaf Conradi)
 
11127
 
 
11128
* Move test case for uncommit to blackbox tests.  (Olaf Conradi)
 
11129
 
 
11130
* ``run_bzr`` and ``run_bzr_captured`` now accept a 'stdin="foo"'
 
11131
  parameter which will provide String("foo") to the command as its stdin.
 
11132
 
 
11133
bzr 0.7
 
11134
#######
 
11135
 
 
11136
:Released: 2006-01-09
 
11137
 
 
11138
Changes
 
11139
*******
 
11140
 
 
11141
* .bzrignore is excluded from exports, on the grounds that it's a bzr
 
11142
  internal-use file and may not be wanted.  (Jamie Wilkinson)
 
11143
 
 
11144
* The "bzr directories" command were removed in favor of the new
 
11145
  --kind option to the "bzr inventory" command.  To list all
 
11146
  versioned directories, now use "bzr inventory --kind directory".
 
11147
  (Johan Rydberg)
 
11148
 
 
11149
* Under Windows configuration directory is now ``%APPDATA%\bazaar\2.0``
 
11150
  by default. (John Arbash Meinel)
 
11151
 
 
11152
* The parent of Bzr configuration directory can be set by ``BZR_HOME``
 
11153
  environment variable. Now the path for it is searched in ``BZR_HOME``,
 
11154
  then in HOME. Under Windows the order is: ``BZR_HOME``, ``APPDATA``
 
11155
  (usually points to ``C:\Documents and Settings\User Name\Application Data``),
 
11156
  ``HOME``. (John Arbash Meinel)
 
11157
 
 
11158
* Plugins with the same name in different directories in the bzr plugin
 
11159
  path are no longer loaded: only the first successfully loaded one is
 
11160
  used. (Robert Collins)
 
11161
 
 
11162
* Use systems' external ssh command to open connections if possible.
 
11163
  This gives better integration with user settings such as ProxyCommand.
 
11164
  (James Henstridge)
 
11165
 
 
11166
* Permissions on files underneath .bzr/ are inherited from the .bzr
 
11167
  directory. So for a shared repository, simply doing 'chmod -R g+w .bzr/'
 
11168
  will mean that future file will be created with group write permissions.
 
11169
 
 
11170
* configure.in and config.guess are no longer in the builtin default
 
11171
  ignore list.
 
11172
 
 
11173
* '.sw[nop]' pattern ignored, to ignore vim swap files for nameless
 
11174
  files.  (John Arbash Meinel, Martin Pool)
 
11175
 
 
11176
Improvements
 
11177
************
 
11178
 
 
11179
* "bzr INIT dir" now initializes the specified directory, and creates
 
11180
  it if it does not exist.  (John Arbash Meinel)
 
11181
 
 
11182
* New remerge command (Aaron Bentley)
 
11183
 
 
11184
* Better zsh completion script.  (Steve Borho)
 
11185
 
 
11186
* 'bzr diff' now returns 1 when there are changes in the working
 
11187
  tree. (Robert Collins)
 
11188
 
 
11189
* 'bzr push' now exists and can push changes to a remote location.
 
11190
  This uses the transport infrastructure, and can store the remote
 
11191
  location in the ~/.bazaar/branches.conf configuration file.
 
11192
  (Robert Collins)
 
11193
 
 
11194
* Test directories are only kept if the test fails and the user requests
 
11195
  that they be kept.
 
11196
 
 
11197
* Tweaks to short log printing
 
11198
 
 
11199
* Added branch nicks, new nick command, printing them in log output.
 
11200
  (Aaron Bentley)
 
11201
 
 
11202
* If ``$BZR_PDB`` is set, pop into the debugger when an uncaught exception
 
11203
  occurs.  (Martin Pool)
 
11204
 
 
11205
* Accept 'bzr resolved' (an alias for 'bzr resolve'), as this is
 
11206
  the same as Subversion.  (Martin Pool)
 
11207
 
 
11208
* New ftp transport support (on ftplib), for ftp:// and aftp://
 
11209
  URLs.  (Daniel Silverstone)
 
11210
 
 
11211
* Commit editor temporary files now start with ``bzr_log.``, to allow
 
11212
  text editors to match the file name and set up appropriate modes or
 
11213
  settings.  (Magnus Therning)
 
11214
 
 
11215
* Improved performance when integrating changes from a remote weave.
 
11216
  (Goffredo Baroncelli)
 
11217
 
 
11218
* Sftp will attempt to cache the connection, so it is more likely that
 
11219
  a connection will be reused, rather than requiring multiple password
 
11220
  requests.
 
11221
 
 
11222
* bzr revno now takes an optional argument indicating the branch whose
 
11223
  revno should be printed.  (Michael Ellerman)
 
11224
 
 
11225
* bzr cat defaults to printing the last version of the file.
 
11226
  (Matthieu Moy, #3632)
 
11227
 
 
11228
* New global option 'bzr --lsprof COMMAND' runs bzr under the lsprof
 
11229
  profiler.  (Denys Duchier)
 
11230
 
 
11231
* Faster commits by reading only the headers of affected weave files.
 
11232
  (Denys Duchier)
 
11233
 
 
11234
* 'bzr add' now takes a --dry-run parameter which shows you what would be
 
11235
  added, but doesn't actually add anything. (Michael Ellerman)
 
11236
 
 
11237
* 'bzr add' now lists how many files were ignored per glob.  add --verbose
 
11238
  lists the specific files.  (Aaron Bentley)
 
11239
 
 
11240
* 'bzr missing' now supports displaying changes in diverged trees and can
 
11241
  be limited to show what either end of the comparison is missing.
 
11242
  (Aaron Bently, with a little prompting from Daniel Silverstone)
 
11243
 
 
11244
Bug Fixes
 
11245
*********
 
11246
 
 
11247
* SFTP can walk up to the root path without index errors. (Robert Collins)
 
11248
 
 
11249
* Fix bugs in running bzr with 'python -O'.  (Martin Pool)
 
11250
 
 
11251
* Error when run with -OO
 
11252
 
 
11253
* Fix bug in reporting http errors that don't have an http error code.
 
11254
  (Martin Pool)
 
11255
 
 
11256
* Handle more cases of pipe errors in display commands
 
11257
 
 
11258
* Change status to 3 for all errors
 
11259
 
 
11260
* Files that are added and unlinked before committing are completely
 
11261
  ignored by diff and status
 
11262
 
 
11263
* Stores with some compressed texts and some uncompressed texts are now
 
11264
  able to be used. (John A Meinel)
 
11265
 
 
11266
* Fix for bzr pull failing sometimes under windows
 
11267
 
 
11268
* Fix for sftp transport under windows when using interactive auth
 
11269
 
 
11270
* Show files which are both renamed and modified as such in 'bzr
 
11271
  status' output.  (Daniel Silverstone, #4503)
 
11272
 
 
11273
* Make annotate cope better with revisions committed without a valid
 
11274
  email address.  (Marien Zwart)
 
11275
 
 
11276
* Fix representation of tab characters in commit messages.
 
11277
  (Harald Meland)
 
11278
 
 
11279
* List of plugin directories in ``BZR_PLUGIN_PATH`` environment variable is
 
11280
  now parsed properly under Windows. (Alexander Belchenko)
 
11281
 
 
11282
* Show number of revisions pushed/pulled/merged. (Robey Pointer)
 
11283
 
 
11284
* Keep a cached copy of the basis inventory to speed up operations
 
11285
  that need to refer to it.  (Johan Rydberg, Martin Pool)
 
11286
 
 
11287
* Fix bugs in bzr status display of non-ascii characters.
 
11288
  (Martin Pool)
 
11289
 
 
11290
* Remove Makefile.in from default ignore list.
 
11291
  (Tollef Fog Heen, Martin Pool, #6413)
 
11292
 
 
11293
* Fix failure in 'bzr added'.  (Nathan McCallum, Martin Pool)
 
11294
 
 
11295
Testing
 
11296
*******
 
11297
 
 
11298
* Fix selftest asking for passwords when there are no SFTP keys.
 
11299
  (Robey Pointer, Jelmer Vernooij)
 
11300
 
 
11301
* Fix selftest run with 'python -O'.  (Martin Pool)
 
11302
 
 
11303
* Fix HTTP tests under Windows. (John Arbash Meinel)
 
11304
 
 
11305
* Make tests work even if HOME is not set (Aaron Bentley)
 
11306
 
 
11307
* Updated ``build_tree`` to use fixed line-endings for tests which read
 
11308
  the file cotents and compare. Make some tests use this to pass under
 
11309
  Windows. (John Arbash Meinel)
 
11310
 
 
11311
* Skip stat and symlink tests under Windows. (Alexander Belchenko)
 
11312
 
 
11313
* Delay in selftest/testhashcash is now issued under win32 and Cygwin.
 
11314
  (John Arbash Meinel)
 
11315
 
 
11316
* Use terminal width to align verbose test output.  (Martin Pool)
 
11317
 
 
11318
* Blackbox tests are maintained within the bzrlib.tests.blackbox directory.
 
11319
  If adding a new test script please add that to
 
11320
  ``bzrlib.tests.blackbox.__init__``. (Robert Collins)
 
11321
 
 
11322
* Much better error message if one of the test suites can't be
 
11323
  imported.  (Martin Pool)
 
11324
 
 
11325
* Make check now runs the test suite twice - once with the default locale,
 
11326
  and once with all locales forced to C, to expose bugs. This is not
 
11327
  trivially done within python, so for now its only triggered by running
 
11328
  Make check. Integrators and packagers who wish to check for full
 
11329
  platform support should run 'make check' to test the source.
 
11330
  (Robert Collins)
 
11331
 
 
11332
* Tests can now run TestSkipped if they can't execute for any reason.
 
11333
  (Martin Pool) (NB: TestSkipped should only be raised for correctable
 
11334
  reasons - see the wiki spec ImprovingBzrTestSuite).
 
11335
 
 
11336
* Test sftp with relative, absolute-in-homedir and absolute-not-in-homedir
 
11337
  paths for the transport tests. Introduce blackbox remote sftp tests that
 
11338
  test the same permutations. (Robert Collins, Robey Pointer)
 
11339
 
 
11340
* Transport implementation tests are now independent of the local file
 
11341
  system, which allows tests for esoteric transports, and for features
 
11342
  not available in the local file system. They also repeat for variations
 
11343
  on the URL scheme that can introduce issues in the transport code,
 
11344
  see bzrlib.transport.TransportTestProviderAdapter() for this.
 
11345
  (Robert Collins).
 
11346
 
 
11347
* ``TestCase.build_tree`` uses the transport interface to build trees,
 
11348
  pass in a transport parameter to give it an existing connection.
 
11349
  (Robert Collins).
 
11350
 
 
11351
Internals
 
11352
*********
 
11353
 
 
11354
* WorkingTree.pull has been split across Branch and WorkingTree,
 
11355
  to allow Branch only pulls. (Robert Collins)
 
11356
 
 
11357
* ``commands.display_command`` now returns the result of the decorated
 
11358
  function. (Robert Collins)
 
11359
 
 
11360
* LocationConfig now has a ``set_user_option(key, value)`` call to save
 
11361
  a setting in its matching location section (a new one is created
 
11362
  if needed). (Robert Collins)
 
11363
 
 
11364
* Branch has two new methods, ``get_push_location`` and
 
11365
  ``set_push_location`` to respectively, get and set the push location.
 
11366
  (Robert Collins)
 
11367
 
 
11368
* ``commands.register_command`` now takes an optional flag to signal that
 
11369
  the registrant is planning to decorate an existing command. When
 
11370
  given multiple plugins registering a command is not an error, and
 
11371
  the original command class (whether built in or a plugin based one) is
 
11372
  returned to the caller. There is a new error 'MustUseDecorated' for
 
11373
  signalling when a wrapping command should switch to the original
 
11374
  version. (Robert Collins)
 
11375
 
 
11376
* Some option parsing errors will raise 'BzrOptionError', allowing
 
11377
  granular detection for decorating commands. (Robert Collins).
 
11378
 
 
11379
* ``Branch.read_working_inventory`` has moved to
 
11380
  ``WorkingTree.read_working_inventory``. This necessitated changes to
 
11381
  ``Branch.get_root_id``, and a move of ``Branch.set_inventory`` to
 
11382
  WorkingTree as well. To make it clear that a WorkingTree cannot always
 
11383
  be obtained ``Branch.working_tree()`` will raise
 
11384
  ``errors.NoWorkingTree`` if one cannot be obtained. (Robert Collins)
 
11385
 
 
11386
* All pending merges operations from Branch are now on WorkingTree.
 
11387
  (Robert Collins)
 
11388
 
 
11389
* The follow operations from Branch have moved to WorkingTree::
 
11390
 
 
11391
      add()
 
11392
      commit()
 
11393
      move()
 
11394
      rename_one()
 
11395
      unknowns()
 
11396
 
 
11397
  (Robert Collins)
 
11398
 
 
11399
* ``bzrlib.add.smart_add_branch`` is now ``smart_add_tree``. (Robert Collins)
 
11400
 
 
11401
* New "rio" serialization format, similar to rfc-822. (Martin Pool)
 
11402
 
 
11403
* Rename selftests to ``bzrlib.tests.test_foo``.  (John A Meinel, Martin
 
11404
  Pool)
 
11405
 
 
11406
* ``bzrlib.plugin.all_plugins`` has been changed from an attribute to a
 
11407
  query method. (Robert Collins)
 
11408
 
 
11409
* New options to read only the table-of-contents of a weave.
 
11410
  (Denys Duchier)
 
11411
 
 
11412
* Raise NoSuchFile when someone tries to add a non-existant file.
 
11413
  (Michael Ellerman)
 
11414
 
 
11415
* Simplify handling of DivergedBranches in ``cmd_pull()``.
 
11416
  (Michael Ellerman)
 
11417
 
 
11418
* Branch.controlfile* logic has moved to lockablefiles.LockableFiles, which
 
11419
  is exposed as ``Branch().control_files``. Also this has been altered with the
 
11420
  controlfile pre/suffix replaced by simple method names like 'get' and
 
11421
  'put'. (Aaron Bentley, Robert Collins).
 
11422
 
 
11423
* Deprecated functions and methods can now be marked as such using the
 
11424
  ``bzrlib.symbol_versioning`` module. Marked method have their docstring
 
11425
  updated and will issue a DeprecationWarning using the warnings module
 
11426
  when they are used. (Robert Collins)
 
11427
 
 
11428
* ``bzrlib.osutils.safe_unicode`` now exists to provide parameter coercion
 
11429
  for functions that need unicode strings. (Robert Collins)
 
11430
 
 
11431
bzr 0.6
 
11432
#######
 
11433
 
 
11434
:Released: 2005-10-28
 
11435
 
 
11436
Improvements
 
11437
************
 
11438
 
 
11439
* pull now takes --verbose to show you what revisions are added or removed
 
11440
  (John A Meinel)
 
11441
 
 
11442
* merge now takes a --show-base option to include the base text in
 
11443
  conflicts.
 
11444
  (Aaron Bentley)
 
11445
 
 
11446
* The config files are now read using ConfigObj, so '=' should be used as
 
11447
  a separator, not ':'.
 
11448
  (Aaron Bentley)
 
11449
 
 
11450
* New 'bzr commit --strict' option refuses to commit if there are
 
11451
  any unknown files in the tree.  To commit, make sure all files are
 
11452
  either ignored, added, or deleted.  (Michael Ellerman)
 
11453
 
 
11454
* The config directory is now ~/.bazaar, and there is a single file
 
11455
  ~/.bazaar/bazaar.conf storing email, editor and other preferences.
 
11456
  (Robert Collins)
 
11457
 
 
11458
* 'bzr add' no longer takes a --verbose option, and a --quiet option
 
11459
  has been added that suppresses all output.
 
11460
 
 
11461
* Improved zsh completion support in contrib/zsh, from Clint
 
11462
  Adams.
 
11463
 
 
11464
* Builtin 'bzr annotate' command, by Martin Pool with improvements from
 
11465
  Goffredo Baroncelli.
 
11466
 
 
11467
* 'bzr check' now accepts -v for verbose reporting, and checks for
 
11468
  ghosts in the branch. (Robert Collins)
 
11469
 
 
11470
* New command 're-sign' which will regenerate the gpg signature for
 
11471
  a revision. (Robert Collins)
 
11472
 
 
11473
* If you set ``check_signatures=require`` for a path in
 
11474
  ``~/.bazaar/branches.conf`` then bzr will invoke your
 
11475
  ``gpg_signing_command`` (defaults to gpg) and record a digital signature
 
11476
  of your commit. (Robert Collins)
 
11477
 
 
11478
* New sftp transport, based on Paramiko.  (Robey Pointer)
 
11479
 
 
11480
* 'bzr pull' now accepts '--clobber' which will discard local changes
 
11481
  and make this branch identical to the source branch. (Robert Collins)
 
11482
 
 
11483
* Just give a quieter warning if a plugin can't be loaded, and
 
11484
  put the details in .bzr.log.  (Martin Pool)
 
11485
 
 
11486
* 'bzr branch' will now set the branch-name to the last component of the
 
11487
  output directory, if one was supplied.
 
11488
 
 
11489
* If the option ``post_commit`` is set to one (or more) python function
 
11490
  names (must be in the bzrlib namespace), then they will be invoked
 
11491
  after the commit has completed, with the branch and ``revision_id`` as
 
11492
  parameters. (Robert Collins)
 
11493
 
 
11494
* Merge now has a retcode of 1 when conflicts occur. (Robert Collins)
 
11495
 
 
11496
* --merge-type weave is now supported for file contents.  Tree-shape
 
11497
  changes are still three-way based.  (Martin Pool, Aaron Bentley)
 
11498
 
 
11499
* 'bzr check' allows the first revision on revision-history to have
 
11500
  parents - something that is expected for cheap checkouts, and occurs
 
11501
  when conversions from baz do not have all history.  (Robert Collins).
 
11502
 
 
11503
* 'bzr merge' can now graft unrelated trees together, if your specify
 
11504
  0 as a base. (Aaron Bentley)
 
11505
 
 
11506
* 'bzr commit branch' and 'bzr commit branch/file1 branch/file2' now work
 
11507
  (Aaron Bentley)
 
11508
 
 
11509
* Add '.sconsign*' to default ignore list.  (Alexander Belchenko)
 
11510
 
 
11511
* 'bzr merge --reprocess' minimizes conflicts
 
11512
 
 
11513
Testing
 
11514
*******
 
11515
 
 
11516
* The 'bzr selftest --pattern' option for has been removed, now
 
11517
  test specifiers on the command line can be simple strings, or
 
11518
  regexps, or both. (Robert Collins)
 
11519
 
 
11520
* Passing -v to selftest will now show the time each test took to
 
11521
  complete, which will aid in analysing performance regressions and
 
11522
  related questions. (Robert Collins)
 
11523
 
 
11524
* 'bzr selftest' runs all tests, even if one fails, unless '--one'
 
11525
  is given. (Martin Pool)
 
11526
 
 
11527
* There is a new method for TestCaseInTempDir, assertFileEqual, which
 
11528
  will check that a given content is equal to the content of the named
 
11529
  file. (Robert Collins)
 
11530
 
 
11531
* Fix test suite's habit of leaving many temporary log files in $TMPDIR.
 
11532
  (Martin Pool)
 
11533
 
 
11534
Internals
 
11535
*********
 
11536
 
 
11537
* New 'testament' command and concept for making gpg-signatures
 
11538
  of revisions that are not tied to a particular internal
 
11539
  representation.  (Martin Pool).
 
11540
 
 
11541
* Per-revision properties ('revprops') as key-value associated
 
11542
  strings on each revision created when the revision is committed.
 
11543
  Intended mainly for the use of external tools.  (Martin Pool).
 
11544
 
 
11545
* Config options have moved from bzrlib.osutils to bzrlib.config.
 
11546
  (Robert Collins)
 
11547
 
 
11548
* Improved command line option definitions allowing explanations
 
11549
  for individual options, among other things.  Contributed by
 
11550
  Magnus Therning.
 
11551
 
 
11552
* Config options have moved from bzrlib.osutils to bzrlib.config.
 
11553
  Configuration is now done via the config.Config interface:
 
11554
  Depending on whether you have a Branch, a Location or no information
 
11555
  available, construct a ``*Config``, and use its ``signature_checking``,
 
11556
  ``username`` and ``user_email`` methods. (Robert Collins)
 
11557
 
 
11558
* Plugins are now loaded under bzrlib.plugins, not bzrlib.plugin, and
 
11559
  they are made available for other plugins to use. You should not
 
11560
  import other plugins during the ``__init__`` of your plugin though, as
 
11561
  no ordering is guaranteed, and the plugins directory is not on the
 
11562
  python path. (Robert Collins)
 
11563
 
 
11564
* Branch.relpath has been moved to WorkingTree.relpath. WorkingTree no
 
11565
  no longer takes an inventory, rather it takes an option branch
 
11566
  parameter, and if None is given will open the branch at basedir
 
11567
  implicitly. (Robert Collins)
 
11568
 
 
11569
* Cleaner exception structure and error reporting.  Suggested by
 
11570
  Scott James Remnant.  (Martin Pool)
 
11571
 
 
11572
* Branch.remove has been moved to WorkingTree, which has also gained
 
11573
  ``lock_read``, ``lock_write`` and ``unlock`` methods for convenience.
 
11574
  (Robert Collins)
 
11575
 
 
11576
* Two decorators, ``needs_read_lock`` and ``needs_write_lock`` have been
 
11577
  added to the branch module. Use these to cause a function to run in a
 
11578
  read or write lock respectively. (Robert Collins)
 
11579
 
 
11580
* ``Branch.open_containing`` now returns a tuple (Branch, relative-path),
 
11581
  which allows direct access to the common case of 'get me this file
 
11582
  from its branch'. (Robert Collins)
 
11583
 
 
11584
* Transports can register using ``register_lazy_transport``, and they
 
11585
  will be loaded when first used.  (Martin Pool)
 
11586
 
 
11587
* 'pull' has been factored out of the command as ``WorkingTree.pull()``.
 
11588
  A new option to WorkingTree.pull has been added, clobber, which will
 
11589
  ignore diverged history and pull anyway.
 
11590
  (Robert Collins)
 
11591
 
 
11592
* config.Config has a ``get_user_option`` call that accepts an option name.
 
11593
  This will be looked up in branches.conf and bazaar.conf as normal.
 
11594
  It is intended that this be used by plugins to support options -
 
11595
  options of built in programs should have specific methods on the config.
 
11596
  (Robert Collins)
 
11597
 
 
11598
* ``merge.merge_inner`` now has tempdir as an optional parameter.
 
11599
  (Robert Collins)
 
11600
 
 
11601
* Tree.kind is not recorded at the top level of the hierarchy, as it was
 
11602
  missing on EmptyTree, leading to a bug with merge on EmptyTrees.
 
11603
  (Robert Collins)
 
11604
 
 
11605
* ``WorkingTree.__del__`` has been removed, it was non deterministic and not
 
11606
  doing what it was intended to. See ``WorkingTree.__init__`` for a comment
 
11607
  about future directions. (Robert Collins/Martin Pool)
 
11608
 
 
11609
* bzrlib.transport.http has been modified so that only 404 urllib errors
 
11610
  are returned as NoSuchFile. Other exceptions will propagate as normal.
 
11611
  This allows debuging of actual errors. (Robert Collins)
 
11612
 
 
11613
* bzrlib.transport.Transport now accepts *ONLY* url escaped relative paths
 
11614
  to apis like 'put', 'get' and 'has'. This is to provide consistent
 
11615
  behaviour - it operates on url's only. (Robert Collins)
 
11616
 
 
11617
* Transports can register using ``register_lazy_transport``, and they
 
11618
  will be loaded when first used.  (Martin Pool)
 
11619
 
 
11620
* ``merge_flex`` no longer calls ``conflict_handler.finalize()``, instead that
 
11621
  is called by ``merge_inner``. This is so that the conflict count can be
 
11622
  retrieved (and potentially manipulated) before returning to the caller
 
11623
  of ``merge_inner``. Likewise 'merge' now returns the conflict count to the
 
11624
  caller. (Robert Collins)
 
11625
 
 
11626
* ``revision.revision_graph`` can handle having only partial history for
 
11627
  a revision - that is no revisions in the graph with no parents.
 
11628
  (Robert Collins).
 
11629
 
 
11630
* New ``builtins.branch_files`` uses the standard ``file_list`` rules to
 
11631
  produce a branch and a list of paths, relative to that branch
 
11632
  (Aaron Bentley)
 
11633
 
 
11634
* New TestCase.addCleanup facility.
 
11635
 
 
11636
* New ``bzrlib.version_info`` tuple (similar to ``sys.version_info``),
 
11637
  which can be used by programs importing bzrlib.
 
11638
 
 
11639
Bug Fixes
 
11640
*********
 
11641
 
 
11642
* Better handling of branches in directories with non-ascii names.
 
11643
  (Joel Rosdahl, Panagiotis Papadakos)
 
11644
 
 
11645
* Upgrades of trees with no commits will not fail due to accessing
 
11646
  [-1] in the revision-history. (Andres Salomon)
 
11647
 
 
11648
 
 
11649
bzr 0.1.1
 
11650
#########
 
11651
 
 
11652
:Released: 2005-10-12
 
11653
 
 
11654
Bug Fixes
 
11655
*********
 
11656
 
 
11657
* Fix problem in pulling over http from machines that do not
 
11658
  allow directories to be listed.
 
11659
 
 
11660
* Avoid harmless warning about invalid hash cache after
 
11661
  upgrading branch format.
 
11662
 
 
11663
Performance
 
11664
***********
 
11665
 
 
11666
* Avoid some unnecessary http operations in branch and pull.
 
11667
 
 
11668
 
 
11669
bzr 0.1
 
11670
#######
 
11671
 
 
11672
:Released: 2005-10-11
 
11673
 
 
11674
Notes
 
11675
*****
 
11676
 
 
11677
* 'bzr branch' over http initially gives a very high estimate
 
11678
  of completion time but it should fall as the first few
 
11679
  revisions are pulled in.  branch is still slow on
 
11680
  high-latency connections.
 
11681
 
 
11682
Bug Fixes
 
11683
*********
 
11684
 
 
11685
* bzr-man.py has been updated to work again. Contributed by
 
11686
  Rob Weir.
 
11687
 
 
11688
* Locking is now done with fcntl.lockf which works with NFS
 
11689
  file systems. Contributed by Harald Meland.
 
11690
 
 
11691
* When a merge encounters a file that has been deleted on
 
11692
  one side and modified on the other, the old contents are
 
11693
  written out to foo.BASE and foo.SIDE, where SIDE is this
 
11694
  or OTHER. Contributed by Aaron Bentley.
 
11695
 
 
11696
* Export was choosing incorrect file paths for the content of
 
11697
  the tarball, this has been fixed by Aaron Bentley.
 
11698
 
 
11699
* Commit will no longer commit without a log message, an
 
11700
  error is returned instead. Contributed by Jelmer Vernooij.
 
11701
 
 
11702
* If you commit a specific file in a sub directory, any of its
 
11703
  parent directories that are added but not listed will be
 
11704
  automatically included. Suggested by Michael Ellerman.
 
11705
 
 
11706
* bzr commit and upgrade did not correctly record new revisions
 
11707
  for files with only a change to their executable status.
 
11708
  bzr will correct this when it encounters it. Fixed by
 
11709
  Robert Collins
 
11710
 
 
11711
* HTTP tests now force off the use of ``http_proxy`` for the duration.
 
11712
  Contributed by Gustavo Niemeyer.
 
11713
 
 
11714
* Fix problems in merging weave-based branches that have
 
11715
  different partial views of history.
 
11716
 
 
11717
* Symlink support: working with symlinks when not in the root of a
 
11718
  bzr tree was broken, patch from Scott James Remnant.
 
11719
 
 
11720
Improvements
 
11721
************
 
11722
 
 
11723
* 'branch' now accepts a --basis parameter which will take advantage
 
11724
  of local history when making a new branch. This allows faster
 
11725
  branching of remote branches. Contributed by Aaron Bentley.
 
11726
 
 
11727
* New tree format based on weave files, called version 5.
 
11728
  Existing branches can be upgraded to this format using
 
11729
  'bzr upgrade'.
 
11730
 
 
11731
* Symlinks are now versionable. Initial patch by
 
11732
  Erik Toubro Nielsen, updated to head by Robert Collins.
 
11733
 
 
11734
* Executable bits are tracked on files. Patch from Gustavo
 
11735
  Niemeyer.
 
11736
 
 
11737
* 'bzr status' now shows unknown files inside a selected directory.
 
11738
  Patch from Heikki Paajanen.
 
11739
 
 
11740
* Merge conflicts are recorded in .bzr. Two new commands 'conflicts'
 
11741
  and 'resolve' have needed added, which list and remove those
 
11742
  merge conflicts respectively. A conflicted tree cannot be committed
 
11743
  in. Contributed by Aaron Bentley.
 
11744
 
 
11745
* 'rm' is now an alias for 'remove'.
 
11746
 
 
11747
* Stores now split out their content in a single byte prefixed hash,
 
11748
  dropping the density of files per directory by 256. Contributed by
 
11749
  Gustavo Niemeyer.
 
11750
 
 
11751
* 'bzr diff -r branch:URL' will now perform a diff between two branches.
 
11752
  Contributed by Robert Collins.
 
11753
 
 
11754
* 'bzr log' with the default formatter will show merged revisions,
 
11755
  indented to the right. Initial implementation contributed by Gustavo
 
11756
  Niemeyer, made incremental by Robert Collins.
 
11757
 
 
11758
 
 
11759
Internals
 
11760
*********
 
11761
 
 
11762
* Test case failures have the exception printed after the log
 
11763
  for your viewing pleasure.
 
11764
 
 
11765
* InventoryEntry is now an abstract base class, use one of the
 
11766
  concrete InventoryDirectory etc classes instead.
 
11767
 
 
11768
* Branch raises an UnsupportedFormatError when it detects a
 
11769
  bzr branch it cannot understand. This allows for precise
 
11770
  handling of such circumstances.
 
11771
 
 
11772
* Remove RevisionReference class; ``Revision.parent_ids`` is now simply a
 
11773
  list of their ids and ``parent_sha1s`` is a list of their corresponding
 
11774
  sha1s (for old branches only at the moment.)
 
11775
 
 
11776
* New method-object style interface for Commit() and Fetch().
 
11777
 
 
11778
* Renamed ``Branch.last_patch()`` to ``Branch.last_revision()``, since
 
11779
  we call them revisions not patches.
 
11780
 
 
11781
* Move ``copy_branch`` to ``bzrlib.clone.copy_branch``.  The destination
 
11782
  directory is created if it doesn't exist.
 
11783
 
 
11784
* Inventories now identify the files which were present by
 
11785
  giving the revision *of that file*.
 
11786
 
 
11787
* Inventory and Revision XML contains a version identifier.
 
11788
  This must be consistent with the overall branch version
 
11789
  but allows for more flexibility in future upgrades.
 
11790
 
 
11791
Testing
 
11792
*******
 
11793
 
 
11794
* Removed testsweet module so that tests can be run after
 
11795
  bzr installed by 'bzr selftest'.
 
11796
 
 
11797
* 'bzr selftest' command-line arguments can now be partial ids
 
11798
  of tests to run, e.g. ``bzr selftest test_weave``
 
11799
 
 
11800
 
 
11801
bzr 0.0.9
 
11802
#########
 
11803
 
 
11804
:Released: 2005-09-23
 
11805
 
 
11806
Bug Fixes
 
11807
*********
 
11808
 
 
11809
* Fixed "branch -r" option.
 
11810
 
 
11811
* Fix remote access to branches containing non-compressed history.
 
11812
  (Robert Collins).
 
11813
 
 
11814
* Better reliability of http server tests.  (John Arbash-Meinel)
 
11815
 
 
11816
* Merge graph maximum distance calculation fix.  (Aaron Bentley)
 
11817
 
 
11818
* Various minor bug in windows support have been fixed, largely in the
 
11819
  test suite. Contributed by Alexander Belchenko.
 
11820
 
 
11821
Improvements
 
11822
************
 
11823
 
 
11824
* Status now accepts a -r argument to give status between chosen
 
11825
  revisions. Contributed by Heikki Paajanen.
 
11826
 
 
11827
* Revision arguments no longer use +/-/= to control ranges, instead
 
11828
  there is a 'before' namespace, which limits the successive namespace.
 
11829
  For example '$ bzr log -r date:yesterday..before:date:today' will
 
11830
  select everything from yesterday and before today. Contributed by
 
11831
  Robey Pointer
 
11832
 
 
11833
* There is now a bzr.bat file created by distutils when building on
 
11834
  Windows. Contributed by Alexander Belchenko.
 
11835
 
 
11836
Internals
 
11837
*********
 
11838
 
 
11839
* Removed uuid() as it was unused.
 
11840
 
 
11841
* Improved 'fetch' code for pulling revisions from one branch into
 
11842
  another (used by pull, merged, etc.)
 
11843
 
 
11844
 
 
11845
bzr 0.0.8
 
11846
#########
 
11847
 
 
11848
:Released: 2005-09-20
 
11849
 
 
11850
 
 
11851
Improvements
 
11852
************
 
11853
 
 
11854
* Adding a file whose parent directory is not versioned will
 
11855
  implicitly add the parent, and so on up to the root. This means
 
11856
  you should never need to explictly add a directory, they'll just
 
11857
  get added when you add a file in the directory.  Contributed by
 
11858
  Michael Ellerman.
 
11859
 
 
11860
* Ignore ``.DS_Store`` (contains Mac metadata) by default.
 
11861
  (Nir Soffer)
 
11862
 
 
11863
* If you set ``BZR_EDITOR`` in the environment, it is checked in
 
11864
  preference to EDITOR and the config file for the interactive commit
 
11865
  editing program. Related to this is a bugfix where a missing program
 
11866
  set in EDITOR would cause editing to fail, now the fallback program
 
11867
  for the operating system is still tried.
 
11868
 
 
11869
* Files that are not directories/symlinks/regular files will no longer
 
11870
  cause bzr to fail, it will just ignore them by default. You cannot add
 
11871
  them to the tree though - they are not versionable.
 
11872
 
 
11873
 
 
11874
Internals
 
11875
*********
 
11876
 
 
11877
* Refactor xml packing/unpacking.
 
11878
 
 
11879
Bug Fixes
 
11880
*********
 
11881
 
 
11882
* Fixed 'bzr mv' by Ollie Rutherfurd.
 
11883
 
 
11884
* Fixed strange error when trying to access a nonexistent http
 
11885
  branch.
 
11886
 
 
11887
* Make sure that the hashcache gets written out if it can't be
 
11888
  read.
 
11889
 
 
11890
 
 
11891
Portability
 
11892
***********
 
11893
 
 
11894
* Various Windows fixes from Ollie Rutherfurd.
 
11895
 
 
11896
* Quieten warnings about locking; patch from Matt Lavin.
 
11897
 
 
11898
 
 
11899
bzr-0.0.7
 
11900
#########
 
11901
 
 
11902
:Released: 2005-09-02
 
11903
 
 
11904
New Features
 
11905
************
 
11906
 
 
11907
* ``bzr shell-complete`` command contributed by Clint Adams to
 
11908
  help with intelligent shell completion.
 
11909
 
 
11910
* New expert command ``bzr find-merge-base`` for debugging merges.
 
11911
 
 
11912
 
 
11913
Enhancements
 
11914
************
 
11915
 
 
11916
* Much better merge support.
 
11917
 
 
11918
* merge3 conflicts are now reported with markers like '<<<<<<<'
 
11919
  (seven characters) which is the same as CVS and pleases things
 
11920
  like emacs smerge.
 
11921
 
 
11922
 
 
11923
Bug Fixes
 
11924
*********
 
11925
 
 
11926
* ``bzr upgrade`` no longer fails when trying to fix trees that
 
11927
  mention revisions that are not present.
 
11928
 
 
11929
* Fixed bugs in listing plugins from ``bzr plugins``.
 
11930
 
 
11931
* Fix case of $EDITOR containing options for the editor.
 
11932
 
 
11933
* Fix log -r refusing to show the last revision.
 
11934
  (Patch from Goffredo Baroncelli.)
 
11935
 
 
11936
 
 
11937
Changes
 
11938
*******
 
11939
 
 
11940
* ``bzr log --show-ids`` shows the revision ids of all parents.
 
11941
 
 
11942
* Externally provided commands on your $BZRPATH no longer need
 
11943
  to recognize --bzr-usage to work properly, and can just handle
 
11944
  --help themselves.
 
11945
 
 
11946
 
 
11947
Library
 
11948
*******
 
11949
 
 
11950
* Changed trace messages to go through the standard logging
 
11951
  framework, so that they can more easily be redirected by
 
11952
  libraries.
 
11953
 
 
11954
 
 
11955
 
 
11956
bzr-0.0.6
 
11957
#########
 
11958
 
 
11959
:Released: 2005-08-18
 
11960
 
 
11961
New Features
 
11962
************
 
11963
 
 
11964
* Python plugins, automatically loaded from the directories on
 
11965
  ``BZR_PLUGIN_PATH`` or ``~/.bzr.conf/plugins`` by default.
 
11966
 
 
11967
* New 'bzr mkdir' command.
 
11968
 
 
11969
* Commit mesage is fetched from an editor if not given on the
 
11970
  command line; patch from Torsten Marek.
 
11971
 
 
11972
* ``bzr log -m FOO`` displays commits whose message matches regexp
 
11973
  FOO.
 
11974
 
 
11975
* ``bzr add`` with no arguments adds everything under the current directory.
 
11976
 
 
11977
* ``bzr mv`` does move or rename depending on its arguments, like
 
11978
  the Unix command.
 
11979
 
 
11980
* ``bzr missing`` command shows a summary of the differences
 
11981
  between two trees.  (Merged from John Arbash-Meinel.)
 
11982
 
 
11983
* An email address for commits to a particular tree can be
 
11984
  specified by putting it into .bzr/email within a branch.  (Based
 
11985
  on a patch from Heikki Paajanen.)
 
11986
 
 
11987
 
 
11988
Enhancements
 
11989
************
 
11990
 
 
11991
* Faster working tree operations.
 
11992
 
 
11993
 
 
11994
Changes
 
11995
*******
 
11996
 
 
11997
* 3rd-party modules shipped with bzr are copied within the bzrlib
 
11998
  python package, so that they can be installed by the setup
 
11999
  script without clashing with anything already existing on the
 
12000
  system.  (Contributed by Gustavo Niemeyer.)
 
12001
 
 
12002
* Moved plugins directory to bzrlib/, so that there's a standard
 
12003
  plugin directory which is not only installed with bzr itself but
 
12004
  is also available when using bzr from the development tree.
 
12005
  ``BZR_PLUGIN_PATH`` and ``DEFAULT_PLUGIN_PATH`` are then added to the
 
12006
  standard plugins directory.
 
12007
 
 
12008
* When exporting to a tarball with ``bzr export --format tgz``, put
 
12009
  everything under a top directory rather than dumping it into the
 
12010
  current directory.   This can be overridden with the ``--root``
 
12011
  option.  Patch from William Dodé and John Meinel.
 
12012
 
 
12013
* New ``bzr upgrade`` command to upgrade the format of a branch,
 
12014
  replacing ``bzr check --update``.
 
12015
 
 
12016
* Files within store directories are no longer marked readonly on
 
12017
  disk.
 
12018
 
 
12019
* Changed ``bzr log`` output to a more compact form suggested by
 
12020
  John A Meinel.  Old format is available with the ``--long`` or
 
12021
  ``-l`` option, patched by William Dodé.
 
12022
 
 
12023
* By default the commit command refuses to record a revision with
 
12024
  no changes unless the ``--unchanged`` option is given.
 
12025
 
 
12026
* The ``--no-plugins``, ``--profile`` and ``--builtin`` command
 
12027
  line options must come before the command name because they
 
12028
  affect what commands are available; all other options must come
 
12029
  after the command name because their interpretation depends on
 
12030
  it.
 
12031
 
 
12032
* ``branch`` and ``clone`` added as aliases for ``branch``.
 
12033
 
 
12034
* Default log format is back to the long format; the compact one
 
12035
  is available with ``--short``.
 
12036
 
 
12037
 
 
12038
Bug Fixes
 
12039
*********
 
12040
 
 
12041
* Fix bugs in committing only selected files or within a subdirectory.
 
12042
 
 
12043
 
 
12044
bzr-0.0.5
 
12045
#########
 
12046
 
 
12047
:Released:  2005-06-15
 
12048
 
 
12049
Changes
 
12050
*******
 
12051
 
 
12052
* ``bzr`` with no command now shows help rather than giving an
 
12053
  error.  Suggested by Michael Ellerman.
 
12054
 
 
12055
* ``bzr status`` output format changed, because svn-style output
 
12056
  doesn't really match the model of bzr.  Now files are grouped by
 
12057
  status and can be shown with their IDs.  ``bzr status --all``
 
12058
  shows all versioned files and unknown files but not ignored files.
 
12059
 
 
12060
* ``bzr log`` runs from most-recent to least-recent, the reverse
 
12061
  of the previous order.  The previous behaviour can be obtained
 
12062
  with the ``--forward`` option.
 
12063
 
 
12064
* ``bzr inventory`` by default shows only filenames, and also ids
 
12065
  if ``--show-ids`` is given, in which case the id is the second
 
12066
  field.
 
12067
 
 
12068
 
 
12069
Enhancements
 
12070
************
 
12071
 
 
12072
* New 'bzr whoami --email' option shows only the email component
 
12073
  of the user identification, from Jo Vermeulen.
 
12074
 
 
12075
* New ``bzr ignore PATTERN`` command.
 
12076
 
 
12077
* Nicer error message for broken pipe, interrupt and similar
 
12078
  conditions that don't indicate an internal error.
 
12079
 
 
12080
* Add ``.*.sw[nop] .git .*.tmp *,v`` to default ignore patterns.
 
12081
 
 
12082
* Per-branch locks keyed on ``.bzr/branch-lock``, available in
 
12083
  either read or write mode.
 
12084
 
 
12085
* New option ``bzr log --show-ids`` shows revision and file ids.
 
12086
 
 
12087
* New usage ``bzr log FILENAME`` shows only revisions that
 
12088
  affected that file.
 
12089
 
 
12090
* Changed format for describing changes in ``bzr log -v``.
 
12091
 
 
12092
* New option ``bzr commit --file`` to take a message from a file,
 
12093
  suggested by LarstiQ.
 
12094
 
 
12095
* New syntax ``bzr status [FILE...]`` contributed by Bartosz
 
12096
  Oler.  File may be in a branch other than the working directory.
 
12097
 
 
12098
* ``bzr log`` and ``bzr root`` can be given an http URL instead of
 
12099
  a filename.
 
12100
 
 
12101
* Commands can now be defined by external programs or scripts
 
12102
  in a directory on $BZRPATH.
 
12103
 
 
12104
* New "stat cache" avoids reading the contents of files if they
 
12105
  haven't changed since the previous time.
 
12106
 
 
12107
* If the Python interpreter is too old, try to find a better one
 
12108
  or give an error.  Based on a patch from Fredrik Lundh.
 
12109
 
 
12110
* New optional parameter ``bzr info [BRANCH]``.
 
12111
 
 
12112
* New form ``bzr commit SELECTED`` to commit only selected files.
 
12113
 
 
12114
* New form ``bzr log -r FROM:TO`` shows changes in selected
 
12115
  range; contributed by John A Meinel.
 
12116
 
 
12117
* New option ``bzr diff --diff-options 'OPTS'`` allows passing
 
12118
  options through to an external GNU diff.
 
12119
 
 
12120
* New option ``bzr add --no-recurse`` to add a directory but not
 
12121
  their contents.
 
12122
 
 
12123
* ``bzr --version`` now shows more information if bzr is being run
 
12124
  from a branch.
 
12125
 
 
12126
 
 
12127
Bug Fixes
 
12128
*********
 
12129
 
 
12130
* Fixed diff format so that added and removed files will be
 
12131
  handled properly by patch.  Fix from Lalo Martins.
 
12132
 
 
12133
* Various fixes for files whose names contain spaces or other
 
12134
  metacharacters.
 
12135
 
 
12136
 
 
12137
Testing
 
12138
*******
 
12139
 
 
12140
* Converted black-box test suites from Bourne shell into Python;
 
12141
  now run using ``./testbzr``.  Various structural improvements to
 
12142
  the tests.
 
12143
 
 
12144
* testbzr by default runs the version of bzr found in the same
 
12145
  directory as the tests, or the one given as the first parameter.
 
12146
 
 
12147
* testbzr also runs the internal tests, so the only command
 
12148
  required to check is just ``./testbzr``.
 
12149
 
 
12150
* testbzr requires python2.4, but can be used to test bzr running
 
12151
  under a different version.
 
12152
 
 
12153
* Tests added for many other changes in this release.
 
12154
 
 
12155
 
 
12156
Internal
 
12157
********
 
12158
 
 
12159
* Included ElementTree library upgraded to 1.2.6 by Fredrik Lundh.
 
12160
 
 
12161
* Refactor command functions into Command objects based on HCT by
 
12162
  Scott James Remnant.
 
12163
 
 
12164
* Better help messages for many commands.
 
12165
 
 
12166
* Expose ``bzrlib.open_tracefile()`` to start the tracefile; until
 
12167
  this is called trace messages are just discarded.
 
12168
 
 
12169
* New internal function ``find_touching_revisions()`` and hidden
 
12170
  command touching-revisions trace the changes to a given file.
 
12171
 
 
12172
* Simpler and faster ``compare_inventories()`` function.
 
12173
 
 
12174
* ``bzrlib.open_tracefile()`` takes a tracefilename parameter.
 
12175
 
 
12176
* New AtomicFile class.
 
12177
 
 
12178
* New developer commands ``added``, ``modified``.
 
12179
 
 
12180
 
 
12181
Portability
 
12182
***********
 
12183
 
 
12184
* Cope on Windows on python2.3 by using the weaker random seed.
 
12185
  2.4 is now only recommended.
 
12186
 
 
12187
 
 
12188
bzr-0.0.4
 
12189
#########
 
12190
 
 
12191
:Released:  2005-04-22
 
12192
 
 
12193
Enhancements
 
12194
************
 
12195
 
 
12196
* 'bzr diff' optionally takes a list of files to diff.  Still a bit
 
12197
  basic.  Patch from QuantumG.
 
12198
 
 
12199
* More default ignore patterns.
 
12200
 
 
12201
* New 'bzr log --verbose' shows a list of files changed in the
 
12202
  changeset.  Patch from Sebastian Cote.
 
12203
 
 
12204
* Roll over ~/.bzr.log if it gets too large.
 
12205
 
 
12206
* Command abbreviations 'ci', 'st', 'stat', '?' based on a patch
 
12207
  by Jason Diamon.
 
12208
 
 
12209
* New 'bzr help commands' based on a patch from Denys Duchier.
 
12210
 
 
12211
 
 
12212
Changes
 
12213
*******
 
12214
 
 
12215
* User email is determined by looking at $BZREMAIL or ~/.bzr.email
 
12216
  or $EMAIL.  All are decoded by the locale preferred encoding.
 
12217
  If none of these are present user@hostname is used.  The host's
 
12218
  fully-qualified name is not used because that tends to fail when
 
12219
  there are DNS problems.
 
12220
 
 
12221
* New 'bzr whoami' command instead of username user-email.
 
12222
 
 
12223
 
 
12224
Bug Fixes
 
12225
*********
 
12226
 
 
12227
* Make commit safe for hardlinked bzr trees.
 
12228
 
 
12229
* Some Unicode/locale fixes.
 
12230
 
 
12231
* Partial workaround for ``difflib.unified_diff`` not handling
 
12232
  trailing newlines properly.
 
12233
 
 
12234
 
 
12235
Internal
 
12236
********
 
12237
 
 
12238
* Allow docstrings for help to be in PEP0257 format.  Patch from
 
12239
  Matt Brubeck.
 
12240
 
 
12241
* More tests in test.sh.
 
12242
 
 
12243
* Write profile data to a temporary file not into working
 
12244
  directory and delete it when done.
 
12245
 
 
12246
* Smaller .bzr.log with process ids.
 
12247
 
 
12248
 
 
12249
Portability
 
12250
***********
 
12251
 
 
12252
* Fix opening of ~/.bzr.log on Windows.  Patch from Andrew
 
12253
  Bennetts.
 
12254
 
 
12255
* Some improvements in handling paths on Windows, based on a patch
 
12256
  from QuantumG.
 
12257
 
 
12258
 
 
12259
bzr-0.0.3
 
12260
#########
 
12261
 
 
12262
:Released:  2005-04-06
 
12263
 
 
12264
Enhancements
 
12265
************
 
12266
 
 
12267
* New "directories" internal command lists versioned directories
 
12268
  in the tree.
 
12269
 
 
12270
* Can now say "bzr commit --help".
 
12271
 
 
12272
* New "rename" command to rename one file to a different name
 
12273
  and/or directory.
 
12274
 
 
12275
* New "move" command to move one or more files into a different
 
12276
  directory.
 
12277
 
 
12278
* New "renames" command lists files renamed since base revision.
 
12279
 
 
12280
* New cat command contributed by janmar.
 
12281
 
 
12282
Changes
 
12283
*******
 
12284
 
 
12285
* .bzr.log is placed in $HOME (not pwd) and is always written in
 
12286
  UTF-8.  (Probably not a completely good long-term solution, but
 
12287
  will do for now.)
 
12288
 
 
12289
Portability
 
12290
***********
 
12291
 
 
12292
* Workaround for difflib bug in Python 2.3 that causes an
 
12293
  exception when comparing empty files.  Reported by Erik Toubro
 
12294
  Nielsen.
 
12295
 
 
12296
Internal
 
12297
********
 
12298
 
 
12299
* Refactored inventory storage to insert a root entry at the top.
 
12300
 
 
12301
Testing
 
12302
*******
 
12303
 
 
12304
* Start of shell-based black-box testing in test.sh.
7094
12305
 
7095
12306
 
7096
12307
bzr-0.0.2.1
7097
 
-----------
7098
 
 
7099
 
  PORTABILITY:
7100
 
 
7101
 
    * Win32 fixes from Steve Brown.
7102
 
 
7103
 
 
7104
 
bzr-0.0.2  "black cube"  2005-03-31
7105
 
-----------------------------------
7106
 
 
7107
 
  ENHANCEMENTS:
7108
 
 
7109
 
    * Default ignore list extended (see bzrlib/__init__.py).
7110
 
 
7111
 
    * Patterns in .bzrignore are now added to the default ignore list,
7112
 
      rather than replacing it.
7113
 
 
7114
 
    * Ignore list isn't reread for every file.
7115
 
 
7116
 
    * More help topics.
7117
 
 
7118
 
    * Reinstate the 'bzr check' command to check invariants of the
7119
 
      branch.
7120
 
 
7121
 
    * New 'ignored' command lists which files are ignored and why;
7122
 
      'deleted' lists files deleted in the current working tree.
7123
 
 
7124
 
    * Performance improvements.
7125
 
 
7126
 
    * New global --profile option.
7127
 
    
7128
 
    * Ignore patterns like './config.h' now correctly match files in
7129
 
      the root directory only.
7130
 
 
7131
 
 
7132
 
bzr-0.0.1  2005-03-26
7133
 
---------------------
7134
 
 
7135
 
  ENHANCEMENTS:
7136
 
 
7137
 
    * More information from info command.
7138
 
 
7139
 
    * Can now say "bzr help COMMAND" for more detailed help.
7140
 
 
7141
 
    * Less file flushing and faster performance when writing logs and
7142
 
      committing to stores.
7143
 
 
7144
 
    * More useful verbose output from some commands.
7145
 
 
7146
 
  BUG FIXES:
7147
 
 
7148
 
    * Fix inverted display of 'R' and 'M' during 'commit -v'.
7149
 
 
7150
 
  PORTABILITY:
7151
 
 
7152
 
    * Include a subset of ElementTree-1.2.20040618 to make
7153
 
      installation easier.
7154
 
 
7155
 
    * Fix time.localtime call to work with Python 2.3 (the minimum
7156
 
      supported).
7157
 
 
7158
 
 
7159
 
bzr-0.0.0.69  2005-03-22
7160
 
------------------------
7161
 
 
7162
 
  ENHANCEMENTS:
7163
 
 
7164
 
    * First public release.
7165
 
 
7166
 
    * Storage of local versions: init, add, remove, rm, info, log,
7167
 
      diff, status, etc.
 
12308
###########
 
12309
 
 
12310
Portability
 
12311
***********
 
12312
 
 
12313
* Win32 fixes from Steve Brown.
 
12314
 
 
12315
 
 
12316
bzr-0.0.2
 
12317
#########
 
12318
 
 
12319
:Codename: "black cube"
 
12320
:Released: 2005-03-31
 
12321
 
 
12322
Enhancements
 
12323
************
 
12324
 
 
12325
* Default ignore list extended (see bzrlib/__init__.py).
 
12326
 
 
12327
* Patterns in .bzrignore are now added to the default ignore list,
 
12328
  rather than replacing it.
 
12329
 
 
12330
* Ignore list isn't reread for every file.
 
12331
 
 
12332
* More help topics.
 
12333
 
 
12334
* Reinstate the 'bzr check' command to check invariants of the
 
12335
  branch.
 
12336
 
 
12337
* New 'ignored' command lists which files are ignored and why;
 
12338
  'deleted' lists files deleted in the current working tree.
 
12339
 
 
12340
* Performance improvements.
 
12341
 
 
12342
* New global --profile option.
 
12343
 
 
12344
* Ignore patterns like './config.h' now correctly match files in
 
12345
  the root directory only.
 
12346
 
 
12347
 
 
12348
bzr-0.0.1
 
12349
#########
 
12350
 
 
12351
:Released:  2005-03-26
 
12352
 
 
12353
Enhancements
 
12354
************
 
12355
 
 
12356
* More information from info command.
 
12357
 
 
12358
* Can now say "bzr help COMMAND" for more detailed help.
 
12359
 
 
12360
* Less file flushing and faster performance when writing logs and
 
12361
  committing to stores.
 
12362
 
 
12363
* More useful verbose output from some commands.
 
12364
 
 
12365
Bug Fixes
 
12366
*********
 
12367
 
 
12368
* Fix inverted display of 'R' and 'M' during 'commit -v'.
 
12369
 
 
12370
Portability
 
12371
***********
 
12372
 
 
12373
* Include a subset of ElementTree-1.2.20040618 to make
 
12374
  installation easier.
 
12375
 
 
12376
* Fix time.localtime call to work with Python 2.3 (the minimum
 
12377
  supported).
 
12378
 
 
12379
 
 
12380
bzr-0.0.0.69
 
12381
############
 
12382
 
 
12383
:Released:  2005-03-22
 
12384
 
 
12385
Enhancements
 
12386
************
 
12387
 
 
12388
* First public release.
 
12389
 
 
12390
* Storage of local versions: init, add, remove, rm, info, log,
 
12391
  diff, status, etc.
 
12392
 
7168
12393
 
7169
12394
..
7170
 
   vim: tw=74 ft=rst ff=unix
 
12395
   vim: tw=74 ft=rst ff=unix encoding=utf-8