~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-03-11 13:47:06 UTC
  • mfrom: (5051.3.16 use-branch-open)
  • Revision ID: pqm@pqm.ubuntu.com-20100311134706-kaerqhx3lf7xn6rh
(Jelmer) Pass colocated branch names further down the call stack.

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 export`` can now export a subdirectory of a project.
13
 
      (Robert Collins)
14
 
 
15
 
    * ``bzr rm`` will now scan for files that are missing and remove just
16
 
      them automatically, much as ``bzr add`` scans for new files that
17
 
      are not ignored and adds them automatically. (Robert Collins)
18
 
 
19
 
  FEATURES
20
 
 
21
 
    * Support for GSSAPI authentication when using FTP as documented in 
22
 
      RFC2228. (Jelmer Vernooij, #49623)
23
 
 
24
 
  IMPROVEMENTS:
25
 
 
26
 
    * A url like ``log+file:///tmp`` will log all access to that Transport 
27
 
      to ``.bzr.log``, which may help in debugging or profiling.
28
 
      (Martin Pool)
29
 
 
30
 
    * ``bzr branch`` and ``bzr push`` use the default stacking policy if the
31
 
      branch format supports it. (Aaron Bentley)
32
 
 
33
 
    * ``bzr init`` and ``bzr init-repo`` will now print out the same as
34
 
      ``bzr info`` if it completed successfully.
35
 
      (Marius Kruger)
36
 
 
37
 
    * ``bzr uncommit`` logs the old tip revision id, and displays how to
38
 
      restore the branch to that tip using ``bzr pull``.  This allows you
39
 
      to recover if you realize you uncommitted the wrong thing.
40
 
      (John Arbash Meinel)
41
 
 
42
 
    * When reading index files, if we happen to read the whole file in a
43
 
      single request treat it as a ``_buffer_all`` request. This happens
44
 
      most often on small indexes over remote transports, where we default
45
 
      to reading 64kB. It saves a round trip for each small index during
46
 
      fetch operations. Also, if we have read more than 50% of an index
47
 
      file, trigger a ``_buffer_all`` on the next request. This works
48
 
      around some inefficiencies because reads don't fall neatly on page
49
 
      boundaries, so we would ignore those bytes, but request them again
50
 
      later. This could trigger a total read size of more than the whole
51
 
      file. (John Arbash Meinel)
52
 
 
53
 
  BUG FIXES:
54
 
 
55
 
    * ``bzr rm`` is now aliased to ``bzr del`` for the convenience of svn
56
 
      users. (Robert Collins, #205416)
57
 
 
58
 
    * Catch the infamous "select/poll returned error" which occurs when
59
 
      pycurl try to send a body request to an HTTP/1.0 server which has
60
 
      already refused to handle the request. (Vincent Ladeuil, #225020)
61
 
 
62
 
    * ``FTPTransport.stat()`` would return ``0000`` as the permission bits
63
 
      for the containing ``.bzr/`` directory (it does not implement
64
 
      permissions). This would cause us to set all subdirectories to
65
 
      ``0700`` and files to ``0600`` rather than leaving them unmodified.
66
 
      Now we ignore ``0000`` as the permissions and assume they are
67
 
      invalid. (John Arbash Meinel, #259855)
68
 
 
69
 
    * Merging from a previously joined branch will no longer cause 
70
 
      a traceback. (Jelmer Vernooij, #203376)
71
 
 
72
 
    * Pack operations on windows network shares will work even with large
73
 
      files. (Robert Collins, #255656)
74
 
 
75
 
    * Running ``bzr st PATH_TO_TREE`` will no longer suppress merge
76
 
      status. Status is also about 7% faster on mozilla sized trees
77
 
      when the path to the root of the tree has been given. Users of
78
 
      the internal ``show_tree_status`` function should be aware that
79
 
      the show_pending flag is now authoritative for showing pending
80
 
      merges, as it was originally. (Robert Collins, #225204)
81
 
 
82
 
    * Set valid default _param_name for Option so that ListOption can embed
83
 
      '-' in names. (Vincent Ladeuil, #263249)
84
 
 
85
 
    * Show proper error rather than traceback when an unknown revision 
86
 
      id is specified to ``bzr cat-revision``. (Jelmer Vernooij, #175569)
87
 
 
88
 
    * Trailing text in the dirstate file could cause the C dirstate parser
89
 
      to try to allocate an invalid amount of memory. We now properly
90
 
      check and test for parsing a dirstate with invalid trailing data.
91
 
      (John Arbash Meinel, #186014)
92
 
 
93
 
    * Use a Windows api function to get a Unicode host name, rather than
94
 
      assuming the host name is ascii.
95
 
      (Mark Hammond, John Arbash Meinel, #256550)
96
 
 
97
 
    * ``WorkingTree4`` trees will now correctly report missing-and-new
98
 
      paths in the output of ``iter_changes``. (Robert Collins)
99
 
 
100
 
  API CHANGES:
101
 
 
102
 
    * Exporters now take 4 parameters. (Robert Collins)
103
 
 
104
 
    * ``Tree.iter_changes`` will now return False for the content change
105
 
      field when a file is missing in the basis tree and not present in
106
 
      the target tree. Previously it returned True unconditionally.
107
 
      (Robert Collins)
108
 
 
109
 
    * The deprecated ``Branch.abspath`` and unimplemented 
110
 
      ``Branch.rename_one`` and ``Branch.move`` were removed. (Jelmer Vernooij)
111
 
 
112
 
    * BzrDir.clone_on_transport implementations must now accept a stacked_on
113
 
      parameter.  (Aaron Bentley)
114
 
 
115
 
    * BzrDir.cloning_metadir implementations must now take a require_stacking
116
 
      parameter.  (Aaron Bentley)
117
 
 
118
 
  TESTING:
119
 
 
120
 
    * ``addCleanup`` now takes ``*arguments`` and ``**keyword_arguments``
121
 
      which are then passed to the cleanup callable as it is run. In
122
 
      addition, addCleanup no longer requires that the callables passed to
123
 
      it be unique. (Jonathan Lange)
124
 
 
125
 
    * ``selftest``'s ``--starting-with`` option can now use predefined
126
 
      prefixes so that one can say ``bzr selftest -s bp.loom`` instead of
127
 
      ``bzr selftest -s bzrlib.plugins.loom``. (Vincent Ladeuil)
128
 
 
129
 
    * ``selftest``'s ``--starting-with`` option now accepts multiple values.
130
 
      (Vincent Ladeuil)
131
 
 
132
 
  INTERNALS:
133
 
 
134
 
    * A new plugin interface, ``bzrlib.log.log_adapters``, has been added.
135
 
      This allows dynamic log output filtering by plugins.
136
 
      (Robert Collins)
137
 
 
138
 
    * ``bzrlib.btree_index`` is now available, providing a b-tree index
139
 
      layer. The design is memory conservative (limited memory cache),
140
 
      faster to seek (approx 100 nodes per page, gives 100-way fan out),
141
 
      and stores compressed pages allowing more keys per page.
142
 
      (Robert Collins, John Arbash Meinel)
143
 
 
144
 
    * ``bzrlib.diff.DiffTree.show_diff`` now skips changes where the kind
145
 
      is unknown in both source and target.
146
 
      (Robert Collins, Aaron Bentley)
147
 
 
148
 
    * ``GraphIndexBuilder.add_node`` and ``BTreeBuilder`` have been
149
 
      streamlined a bit. This should make creating large indexes faster.
150
 
      (In benchmarking, it now takes less time to create a BTree index than
151
 
      it takes to read the GraphIndex one.) (John Arbash Meinel)
152
 
 
153
 
    * Mail clients for `bzr send` are now listed in a registry.  This
154
 
      allows plugins to add new clients by registering them with
155
 
      ``bzrlib.mail_client.mail_client_registry``.  All of the built-in
156
 
      clients now use this mechanism.  (Neil Martinsen-Burrell)
157
 
 
158
 
 
159
 
bzr 1.6.1rc2 2008-09-03
160
 
-----------------------
161
 
 
162
 
  BUG FIXES:
163
 
 
164
 
    * Copying between ``rich-root`` and ``rich-root-pack`` (and vice
165
 
      versa) was accidentally using the inter-model fetcher, instead of
166
 
      recognizing that both were 'rich root' formats.
167
 
      (John Arbash Meinel, #264321)
168
 
 
169
 
 
170
 
bzr 1.6.1rc1 2008-08-29
171
 
-----------------------
 
3
####################
 
4
 
 
5
.. contents:: List of Releases
 
6
   :depth: 1
 
7
 
 
8
bzr 2.2.0b1
 
9
###########
 
10
 
 
11
:2.2.0b1: Not released yet
 
12
 
 
13
Compatibility Breaks
 
14
********************
 
15
 
 
16
* Deleted very old hidden commands ``versionedfile-list``,
 
17
  ``weave-plan-merge``, ``weave-merge-text``.
 
18
  (Martin Pool)
 
19
 
 
20
* ``Repository.get_inventory_sha1()`` and ``Repository.get_revision_xml()`` 
 
21
  have been removed. (Jelmer Vernooij)
 
22
 
 
23
* ``Repository.get_revision_inventory()`` has been removed in favor of
 
24
  ``Repository.get_inventory()``. (Jelmer Vernooij)
 
25
 
 
26
* All test servers have been moved out of the bzrlib.transport hierarchy to
 
27
  bzrlib.tests.test_server *except* for MemoryServer, ChrootServer and
 
28
  PathFilteringServer. ``bzrlib`` users may encounter test failures that can
 
29
  be fixed by updating the related imports from ``bzrlib.transport.xxx`` to
 
30
  ``bzrlib.tests.test_server``.
 
31
  (Vincent Ladeuil)
 
32
 
 
33
* ``BranchReferenceFormat.initialize()`` now takes an optional name argument
 
34
  as its second parameter, for consistency with the initialize() method of
 
35
  other formats. (Jelmer Vernooij)
 
36
 
 
37
New Features
 
38
************
 
39
 
 
40
* If the Apport crash-reporting tool is available, bzr crashes are now
 
41
  stored into the ``/var/crash`` apport spool directory, and the user is
 
42
  invited to report them to the developers from there, either
 
43
  automatically or by running ``apport-bug``.  No information is sent
 
44
  without specific permission from the user.  (Martin Pool, #515052)
 
45
 
 
46
* Parsing of command lines, for example in ``diff --using``, no longer
 
47
  treats backslash as an escape character on Windows.   (Gordon Tyler,
 
48
  #392248)
 
49
 
 
50
* Tree-shape conflicts can be resolved by providing ``--take-this`` and
 
51
  ``--take-other`` to the ``bzr resolve`` command. Just marking the conflict
 
52
  as resolved is still accessible via the ``--done`` default action.
 
53
  (Vincent Ladeuil)
 
54
 
 
55
* Merges can be proposed on Launchpad with the new lp-propose-merge command.
 
56
  (Aaron Bentley, Jonathan Lange)
 
57
 
 
58
Bug Fixes
 
59
*********
 
60
 
 
61
* Added docstring for ``Tree.iter_changes``
 
62
  (John Arbash Meinel, #304182)
 
63
 
 
64
* Allow exporting a single file using ``bzr export``.
 
65
  (Michal Junák, #511987)
 
66
 
 
67
* Allow syscalls to automatically restart when ``TextUIFactory``'s
 
68
  SIGWINCH handler is invoked, avoiding ``EINTR`` errors during blocking
 
69
  IO, which are often poorly handled by Python's libraries and parts of
 
70
  bzrlib.  (Andrew Bennetts, #496813)
 
71
 
 
72
* Avoid infinite recursion when probing for apport.
 
73
  (Vincent Ladeuil, #516934)
 
74
 
 
75
* Avoid ``malloc(0)`` in ``patiencediff``, which is non-portable.
 
76
  (Martin Pool, #331095)
 
77
 
 
78
* ``bzr add`` will not add conflict related files unless explicitly required.
 
79
  (Vincent Ladeuil, #322767, #414589)
 
80
 
 
81
* ``bzr help`` will no longer trigger the get_missing_command hook when
 
82
  doing a topic lookup. This avoids prompting (like 'no command plugins/loom,
 
83
  did you mean log?') when getting help. In future we may trigger the hook 
 
84
  deliberately when no help topics match from any help index.
 
85
  (Robert Collins, #396261)
 
86
 
 
87
* ``bzr remove-tree`` can now remove multiple working trees.
 
88
  (Jared Hance, Andrew Bennetts, #253137)
 
89
 
 
90
* ``bzr resolve --take-this`` and ``--take-other`` now correctly renames
 
91
  the kept file on content conflicts where one side deleted the file.
 
92
  (Vincent Ladeuil, #529968)
 
93
 
 
94
* ``bzr upgrade`` now names backup directory as ``backup.bzr.~N~`` instead
 
95
  of ``backup.bzr``. This directory is ignored by bzr commands such as
 
96
  ``add``.
 
97
  (Parth Malwankar, #335033, #300001)
 
98
 
 
99
* Correctly interpret "451 Rename/move failure: Directory not empty" from
 
100
  ftp servers while trying to take a lock.
 
101
  (Martin Pool, #528722)
 
102
 
 
103
* DirStateRevisionTree.kind() was returning wrong result when 'kind'
 
104
  changes occured between the workingtree and one of its parents.
 
105
  (Vincent Ladeuil, #533437)
 
106
 
 
107
* Fix stub sftp test server to call os.getcwdu().
 
108
  (Vincent Ladeuil, #526211, #526353)
 
109
 
 
110
* Network transfer amounts and rates are now displayed in SI units according
 
111
  to the Ubuntu Units Policy <https://wiki.ubuntu.com/UnitsPolicy>.
 
112
  (Gordon Tyler, #514399)
 
113
 
 
114
* Support kind markers for socket and fifo filesystem objects. This
 
115
  prevents ``bzr status --short`` from crashing when those files are
 
116
  present.  (John Arbash Meinel, #303275)
 
117
 
 
118
* ``bzr mkdir DIR`` will not create DIR unless DIR's parent is a versioned
 
119
   directory. (Parth Malwankar, #138600)
 
120
 
 
121
* SSH child processes will now ignore SIGQUIT on nix systems so breaking into
 
122
  the debugger won't kill the session.
 
123
  (Martin <gzlist@googlemail.com>, #162502)
 
124
 
 
125
* Allow additional arguments to
 
126
  ``RemoteRepository.add_inventory_by_delta()``. (Jelmer Vernooij, #532631)
 
127
 
 
128
* Tolerate patches with leading noise in ``bzr-handle-patch``.
 
129
  (Toshio Kuratomi, Martin Pool, #502076)
 
130
 
 
131
API Changes
 
132
***********
 
133
 
 
134
* ``BranchFormat.initialize`` now takes an optional ``name`` of the colocated 
 
135
  branch to create. (Jelmer Vernooij)
 
136
 
 
137
* ``BzrDir.get_branch_transport`` now takes an optional ``name`` of the 
 
138
  colocated branch to open. (Jelmer Vernooij)
 
139
 
 
140
* Added ``bzrlib.osutils.set_signal_handler``, a convenience function that
 
141
  can set a signal handler and call ``signal.siginterrupt(signum,
 
142
  False)`` for it, if the platform and Python version supports it.
 
143
  (Andrew Bennetts, #496813)
 
144
 
 
145
* New ``bzrlib.initialize`` is recommended for programs using bzrlib to 
 
146
  run when starting up; it sets up several things that previously needed
 
147
  to be done separately.
 
148
  (Martin Pool, #507710)
 
149
 
 
150
* New method ``BzrDir.list_branches()`` that returns a sequence of branches 
 
151
  present in a control directory. (Jelmer Vernooij)
 
152
 
 
153
* New transport methods ``readlink``, ``symlink`` and ``hardlink``.
 
154
  (Neil Santos)
 
155
 
 
156
* Remove unused ``CommandFailed`` exception.
 
157
  (Martin Pool)
 
158
 
 
159
Internals
 
160
*********
 
161
 
 
162
* ``bzrlib.branchbuilder.BranchBuilder.build_snapshot`` now accepts a
 
163
  ``message_callback`` in the same way that commit does. (Robert Collins)
 
164
 
 
165
* ``bzrlib.builtins.Commit.run`` raises ``bzrlib.errors.BoundBranchOutOfDate``
 
166
  rather than ``bzrlib.errors.BzrCommandError`` when the bound branch is out
 
167
  of date. (Gary van der Merwe)
 
168
 
 
169
* ``bzrlib.commands.run_bzr`` is more extensible: callers can supply the
 
170
  functions to load or disable plugins if they wish to use a different
 
171
  plugin mechanism; the --help, --version and no-command name code paths
 
172
  now use the generic pluggable command lookup infrastructure.
 
173
  (Robert Collins)
 
174
 
 
175
* ``bzrlib.errors.BoundBranchOutOfDate`` has a new field ``extra_help``
 
176
  which can be set to add extra help to the error. (Gary van der Merwe)
 
177
 
 
178
* The methods ``BzrDir.create_branch()``, ``BzrDir.destroy_branch()`` and 
 
179
  ``BzrDir.open_branch()`` now take an optional ``name`` argument. 
 
180
  (Jelmer Vernooij)
 
181
 
 
182
Testing
 
183
*******
 
184
 
 
185
* bzr now has a ``.testr.conf`` file in its source tree configured
 
186
  appropriately for running tests with Testrepository
 
187
  (``https://launchpad.net/testrepository``). (Robert Collins)
 
188
 
 
189
* Documentation about testing with ``subunit`` has been tweaked.
 
190
  (Robert Collins)
 
191
 
 
192
* New ``bzrlib.tests.test_import_tariff`` can make assertions about what
 
193
  Python modules are loaded, to guard against startup time or library
 
194
  dependency regressions.
 
195
  (Martin Pool)
 
196
 
 
197
* Stop sending apport crash files to ``.cache`` in the directory from
 
198
  which ``bzr selftest`` was run.  (Martin Pool, #422350)
 
199
 
 
200
* Tests no longer fail if "close() called during concurrent
 
201
  operation on the same file object" occurs when closing the log file
 
202
  (which can happen if a thread tries to write to the log file at the
 
203
  wrong moment).  An warning will be written to ``stderr`` when this
 
204
  happens, and another warning will be written if the log file could not
 
205
  be closed after retrying 100 times.  (Andrew Bennetts, #531746)
 
206
 
 
207
bzr 2.1.1
 
208
#########
 
209
 
 
210
:2.1.1: not released yet
 
211
 
 
212
Bug Fixes
 
213
*********
 
214
 
 
215
* Allow syscalls to automatically restart when ``TextUIFactory``'s
 
216
  SIGWINCH handler is invoked, avoiding ``EINTR`` errors during blocking
 
217
  IO, which are often poorly handled by Python's libraries and parts of
 
218
  bzrlib.  (Andrew Bennetts, #496813)
 
219
 
 
220
* Avoid ``malloc(0)`` in ``patiencediff``, which is non-portable.
 
221
  (Martin Pool, #331095)
 
222
 
 
223
* Fix plugin packaging on Windows. (Ian Clatworthy, #524162)
 
224
 
 
225
* Fix stub sftp test server to call os.getcwdu().
 
226
  (Vincent Ladeuil, #526211, #526353)
 
227
 
 
228
* Fixed CHM generation by moving the NEWS section template into
 
229
  a separate file. (Ian Clatworthy, #524184)
 
230
 
 
231
* Merge correctly when this_tree is not a WorkingTree.  (Aaron Bentley)
 
232
 
 
233
* Register SIGWINCH handler only when creating a ``TextUIFactory``; avoids
 
234
  problems importing bzrlib from a non-main thread.
 
235
  (Elliot Murphy, #521989)
 
236
 
 
237
* Standardize the error handling when creating a new ``StaticTuple``
 
238
  (problems will raise TypeError). (Matt Nordhoff, #457979)
 
239
 
 
240
* Warn if pyrex is too old to compile the new ``SimpleSet`` and
 
241
  ``StaticTuple`` extensions, rather than having the build fail randomly.
 
242
  (John Arbash Meinel, #449776)
 
243
 
 
244
 
 
245
Documentation
 
246
*************
 
247
 
 
248
* Added a link to the Desktop Guide. (Ian Clatworthy)
 
249
 
 
250
* Added What's New in Bazaar 2.1 document. (Ian Clatworthy)
 
251
 
 
252
* Drop Google Analytics from the core docs as they caused problems
 
253
  in the CHM files. (Ian Clatworthy, #502010)
 
254
 
 
255
API Changes
 
256
***********
 
257
 
 
258
* Added ``bzrlib.osutils.set_signal_handler``, a convenience function that
 
259
  can set a signal handler and call ``signal.siginterrupt(signum,
 
260
  False)`` for it, if the platform and Python version supports it.
 
261
  (Andrew Bennetts, #496813)
 
262
 
 
263
 
 
264
bzr 2.1.0
 
265
#########
 
266
 
 
267
:Codename: Strasbourg
 
268
:2.1.0: 2010-02-11
 
269
 
 
270
This release marks our second long-term-stable series. The Bazaar team
 
271
has decided that we will continue to make bugfix-only 2.0.x and 2.1.x
 
272
releases, along with 2.2 development releases. 
 
273
 
 
274
This is a fairly incremental update, focusing on polish and bugfixing.
 
275
There are no changes for supported disk formats. Key updates include
 
276
reduced memory consumption for many operations, a new per-file merge
 
277
hook, ignore patterns can now include '!' to exclude files, globbing
 
278
support for all commands on Windows, and support for addressing home
 
279
directories via ``bzr+ssh://host/~/`` syntax.
 
280
 
 
281
Users are encouraged to upgrade from the 2.0 stable series.
 
282
 
 
283
Bug Fixes
 
284
*********
 
285
 
 
286
* Don't require testtools to use sftp.
 
287
  (Vincent Ladeuil, #516183)
 
288
 
 
289
* Fix "AttributeError in Inter1and2Helper" during fetch.
 
290
  (Martin Pool, #513432)
 
291
 
 
292
* ``bzr update`` performs the two merges in a more logical order and will stop
 
293
  when it encounters conflicts.  
 
294
  (Gerard Krol, #113809)
 
295
 
 
296
* Fix ``log`` to better check ancestors even if merged revisions are involved.
 
297
  (Vincent Ladeuil, #476293)
 
298
 
 
299
* Give a better error message when doing ``bzr bind`` in an already bound
 
300
  branch.  (Neil Martinsen-Burrell, #513063)
 
301
 
 
302
* Ignore ``KeyError`` from ``remove_index`` during ``_abort_write_group``
 
303
  in a pack repository, which can happen harmlessly if the abort occurs during
 
304
  finishing the write group.  Also use ``bzrlib.cleanup`` so that any
 
305
  other errors that occur while aborting the individual packs won't be
 
306
  hidden by secondary failures when removing the corresponding indices.
 
307
  (Andrew Bennetts, #423015)
 
308
 
 
309
* Set the mtime of files exported to a directory by ``bzr export`` all to
 
310
  the same value to avoid confusing ``make`` and other date-based build
 
311
  systems. (Robert Collins, #515631)
 
312
 
 
313
Improvements
 
314
************
 
315
 
 
316
* Fetching into experimental formats will now print a warning. (Jelmer
 
317
  Vernooij)
 
318
 
 
319
API Changes
 
320
***********
 
321
 
 
322
* ``Repository.deserialise_inventory`` has been renamed to 
 
323
  ``Repository._deserialise_inventory`` to indicate it is private.
 
324
  (Jelmer Vernooij)
 
325
 
 
326
* ``Repository.get_inventory_xml`` has been renamed to 
 
327
  ``Repository._get_inventory_xml`` to indicate it is private. 
 
328
  (Jelmer Vernooij)
 
329
 
 
330
* ``Repository.serialise_inventory`` has been renamed to 
 
331
  ``Repository._serialise_inventory`` to indicate it is private.
 
332
 
 
333
* Using the ``bzrlib.chk_map`` module from within multiple threads at the
 
334
  same time was broken due to race conditions with a module level page
 
335
  cache. This shows up as a KeyError in the ``bzrlib.lru_cache`` code with
 
336
  ``bzrlib.chk_map`` in the backtrace, and can be triggered without using
 
337
  the same high level objects such as ``bzrlib.repository.Repository``
 
338
  from different threads. chk_map now uses a thread local cache which may
 
339
  increase memory pressure on processes using threads.
 
340
  (Robert Collins, John Arbash Meinel, #514090)
 
341
 
 
342
* The new ``merge_file_content`` should now be ok with tests to avoid
 
343
  regressions.
 
344
  (Vincent Ladeuil, #515597)
 
345
 
 
346
Internals
 
347
*********
 
348
 
 
349
* Use ``bzrlib.cleanup`` rather than less robust ``try``/``finally``
 
350
  blocks in several places in ``bzrlib.merge``.  This avoids masking prior
 
351
  errors when errors like ``ImmortalPendingDeletion`` occur during cleanup
 
352
  in ``do_merge``.
 
353
  (Andrew Bennetts, #517275)
 
354
 
 
355
API Changes
 
356
***********
 
357
 
 
358
* The ``remove_index`` method of
 
359
  ``bzrlib.repofmt.pack_repo.AggregateIndex`` no longer takes a ``pack``
 
360
  argument.  This argument was always ignored.
 
361
  (Andrew Bennetts, #423015)
 
362
 
 
363
bzr 2.1.0rc2
 
364
############
 
365
 
 
366
:Codename: after the bubbles
 
367
:2.1.0rc2: 2010-01-29
 
368
 
 
369
This is a quick-turn-around to update a small issue with our new per-file
 
370
merge hook. We expect no major changes from this to the final 2.1.0.
 
371
 
 
372
API Changes
 
373
***********
 
374
 
 
375
* The new ``merge_file_content`` hook point has been altered to provide a
 
376
  better API where state for extensions can be stored rather than the
 
377
  too-simple function based approach. This fixes a performance regression
 
378
  where branch configuration would be parsed per-file during merge. As
 
379
  part of this the included news_merger has been refactored into a base
 
380
  helper class ``bzrlib.merge.ConfigurableFileMerger``.
 
381
  (Robert Collins, John Arbash Meinel, #513822)
 
382
 
 
383
 
 
384
bzr 2.1.0rc1
 
385
############
 
386
 
 
387
:Codename: the 'new' stable
 
388
:2.1.0rc1: 2009-01-21
 
389
 
 
390
This is the first stable release candidate for Bazaar's 2.1 series. From
 
391
this point onwards, the 2.1 series will be considered stable (as the 2.0
 
392
series) and only bugfixes are expected to be incorporated. The dozen or so
 
393
bugfixes in the 2.0.4 release are also included in this release (along
 
394
with more than 15 more bugfixes). Some of the interesting features are
 
395
support for per-file merge hooks, ``bzr unshelve --preview``, support
 
396
for using ! in ignore files to exclude files from being ignored, a small
 
397
memory leak was squashed, and many ``ObjectNotLocked`` errors were fixed.
 
398
This looks to be a very good start for a new stable series.
 
399
 
 
400
 
 
401
New Features
 
402
************
 
403
 
 
404
* Add bug information to log output when available.
 
405
  (Neil Martinsen-Burrell, Guillermo Gonzalez, #251729)
 
406
 
 
407
* Added ``merge_file_content`` hook point to ``Merger``, allowing plugins
 
408
  to register custom merge logic, e.g. to provide smarter merging for
 
409
  particular files.
 
410
 
 
411
* Bazaar now includes the ``news_merge`` plugin.  It is disabled by
 
412
  default, to enable it add a ``news_merge_files`` option to your
 
413
  configuration.  Consult ``bzr help news_merge`` for more information.
 
414
  (Andrew Bennetts)
 
415
  
 
416
* ``bzr branch`` now takes a ``--bind`` option. This lets you
 
417
  branch and bind all in one command. (Ian Clatworthy)
 
418
 
 
419
* ``bzr switch`` now takes a ``--revision`` option, to allow switching to
 
420
  a specific revision of a branch. (Daniel Watkins, #183559)
 
421
 
 
422
* ``bzr unshelve --preview`` can now be used to show how a patch on the
 
423
  shelf would be applied to the working tree.
 
424
  (Guilherme Salgado, #308122)
 
425
 
 
426
* ``bzr update`` now takes a ``--revision`` argument. This lets you
 
427
  change the revision of the working tree to any revision in the
 
428
  ancestry of the current or master branch. (Matthieu Moy, Mark Hammond,
 
429
  Martin Pool, #45719)
 
430
 
 
431
* ``-Dbytes`` can now be used to display the total number of bytes
 
432
  transferred for the current command. This information is always logged
 
433
  to ``.bzr.log`` for later inspection. (John Arbash Meinel)
 
434
 
 
435
* New ignore patterns.  Patterns prefixed with '!' are exceptions to 
 
436
  ignore patterns and take precedence over regular ignores.  Such 
 
437
  exceptions are used to specify files that should be versioned which 
 
438
  would otherwise be ignored.  Patterns prefixed with '!!' act as regular 
 
439
  ignore patterns, but have highest precedence, even over the '!' 
 
440
  exception patterns. (John Whitley, #428031)
 
441
 
 
442
* The ``supress_warnings`` configuration option has been introduced to disable
 
443
  various warnings (it currently only supports the ``format_deprecation``
 
444
  warning). The new option can be set in any of the following locations:
 
445
  ``bazaar.conf``, ``locations.conf`` and/or ``branch.conf``.
 
446
  (Ted Gould, Matthew Fuller, Vincent Ladeuil)
 
447
 
 
448
Bug Fixes
 
449
*********
 
450
 
 
451
* Always show a message if an OS error occurs while trying to run a
 
452
  user-specified commit message editor.
 
453
  (Martin Pool, #504842)
 
454
 
 
455
* ``bzr diff`` will now use the epoch when it is unable to determine 
 
456
  the timestamp of a file, if the revision it was introduced in is a
 
457
  ghost. (Jelmer Vernooij, #295611)
 
458
 
 
459
* ``bzr switch -b`` can now create branches that are located using directory
 
460
  services such as ``lp:``, even when the branch name doesn't contain a
 
461
  '/'.  (Neil Martinsen-Burrell, #495263)
 
462
 
 
463
* ``bzr unshelve`` has improved messages about what it is doing.
 
464
  (Neil Martinsen-Burrell, #496917)
 
465
 
 
466
* Concurrent autopacking is more resilient to already-renamed pack files.
 
467
  If we find that a file we are about to obsolete is already obsoleted, we
 
468
  do not try to rename it, and we leave the file in ``obsolete_packs``.
 
469
  The code is also fault tolerant if a file goes missing, assuming that
 
470
  another process already removed the file.
 
471
  (John Arbash Meinel, Gareth White, #507557)
 
472
 
 
473
* Fix "Too many concurrent requests" in reconcile when network connection
 
474
  fails.  (Andrew Bennetts, #503878)
 
475
 
 
476
* Fixed a side effect mutation of ``RemoteBzrDirFormat._network_name``
 
477
  that caused some tests to fail when run in a non-default order.
 
478
  Probably no user impact.  (Martin Pool, #504102)
 
479
 
 
480
* Fixed ``ObjectNotLocked`` error in ``bzr cat -rbranch:../foo FILE``.
 
481
  (Andrew Bennetts, #506274)
 
482
 
 
483
* FTP transports support Unicode paths by encoding/decoding them as utf8.
 
484
  (Vincent Ladeuil, #472161)
 
485
 
 
486
* Listen to the SIGWINCH signal to update the terminal width.
 
487
  (Vincent Ladeuil, #316357)
 
488
 
 
489
* Progress bars are now hidden when ``--quiet`` is given.
 
490
  (Martin Pool, #320035)
 
491
 
 
492
* ``SilentUIFactory`` now supports ``make_output_stream`` and discards
 
493
  whatever is written to it.  This un-breaks some plugin tests that
 
494
  depended on this behaviour.
 
495
  (Martin Pool, #499757)
 
496
 
 
497
* When operations update the working tree, all affected files should end
 
498
  up with the same mtime. (eg. when versioning a generated file, if you
 
499
  update the source and the generated file together, the generated file
 
500
  should appear up-to-date.)
 
501
  (John Arbash Meinel, Martin <gzlist>, #488724)
 
502
 
 
503
Improvements
 
504
************
 
505
 
 
506
* Added ``add_cleanup`` and ``cleanup_now`` to ``bzrlib.command.Command``.
 
507
  All the builtin commands now use ``add_cleanup`` rather than
 
508
  ``try``/``finally`` blocks where applicable as it is simpler and more
 
509
  robust.  (Andrew Bennetts)
 
510
 
 
511
* All except a small number of storage formats are now hidden, making
 
512
  the help for numerous commands far more digestible. (Ian Clatworthy)
 
513
 
 
514
* Attempts to open a shared repository as a branch (e.g. ``bzr branch
 
515
  path/to/repo``) will now include "location is a repository" as a hint in
 
516
  the error message.  (Brian de Alwis, Andrew Bennetts, #440952)
 
517
 
 
518
* Push will now inform the user when they are trying to push to a foreign 
 
519
  VCS for which roundtripping is not supported, and will suggest them to 
 
520
  use dpush. (Jelmer Vernooij)
 
521
 
 
522
* The version of bzr being run is now written to the log file.
 
523
  (__monty__, #257170)
 
524
 
 
525
* Transport network activity indicator is shown more of the time when
 
526
  Bazaar is doing network IO.
 
527
  (Martin Pool)
 
528
 
 
529
Documentation
 
530
*************
 
531
 
 
532
* Add documentation on creating merges with more than one parent.
 
533
  (Neil Martinsen-Burrell, #481526)
 
534
 
 
535
* Better explain the --uncommitted option of merge.
 
536
  (Neil Martinsen-Burrell, #505088)
 
537
 
 
538
* Improve discussion of pending merges in the documentation for
 
539
  ``revert``.  (Neil Martinsen-Burrell, #505093)
 
540
 
 
541
* Improved help for ``bzr send``. 
 
542
  (Martin Pool, Bojan Nikolic)
 
543
 
 
544
* There is a System Administrator's Guide in ``doc/en/admin-guide``,
 
545
  including discussions of installation, relevant plugins, security and 
 
546
  backup. (Neil Martinsen-Burrell)
 
547
 
 
548
* The ``conflicts`` help topic has been renamed to ``conflict-types``.
 
549
  (Ian Clatworthy)
 
550
 
 
551
* The User Reference is now presented as a series of topics.
 
552
  Many of the included topics have link and format tweaks applied.
 
553
  (Ian Clatworthy)
 
554
 
 
555
API Changes
 
556
***********
 
557
 
 
558
* Added ``cachedproperty`` decorator to ``bzrlib.decorators``.
 
559
  (Andrew Bennetts)
 
560
 
 
561
* Many test features were renamed from ``FooFeature`` to ``foo_feature``
 
562
  to be consistent with instances being lower case and classes being
 
563
  CamelCase. For the features that were more likely to be used, we added a
 
564
  deprecation thunk, but not all. (John Arbash Meinel)
 
565
 
 
566
* Merger classes (such as ``Merge3Merger``) now expect a ``this_branch``
 
567
  parameter in their constructors, and provide ``this_branch`` as an
 
568
  attribute. (Andrew Bennetts)
 
569
  
 
570
* The Branch hooks pre_change_branch_tip no longer masks exceptions raised
 
571
  by plugins - the original exceptions are now preserved. (Robert Collins)
 
572
 
 
573
* The Transport ``Server.tearDown`` method is now renamed to
 
574
  ``stop_server`` and ``setUp`` to ``start_server`` for consistency with
 
575
  our normal naming pattern, and to avoid confusion with Python's
 
576
  ``TestCase.tearDown``.  (Martin Pool)
 
577
 
 
578
* ``WorkingTree.update`` implementations must now accept a ``revision``
 
579
  parameter.
 
580
 
 
581
Internals
 
582
*********
 
583
 
 
584
* Added ``BzrDir.open_branchV3`` smart server request, which can receive
 
585
  a string of details (such as "location is a repository") as part of a
 
586
  ``nobranch`` response.  (Andrew Bennetts, #440952)
 
587
  
 
588
* New helper osutils.UnicodeOrBytesToBytesWriter which encodes unicode
 
589
  objects but passes str objects straight through. This is used for
 
590
  selftest but may be useful for diff and other operations that generate
 
591
  mixed output. (Robert Collins)
 
592
 
 
593
* New exception ``NoRoundtrippingSupport``, for use by foreign branch 
 
594
  plugins. (Jelmer Vernooij)
 
595
 
 
596
Testing
 
597
*******
 
598
 
 
599
* ``bzrlib.tests.permute_for_extension`` is a helper that simplifies
 
600
  running all tests in the current module, once against a pure python
 
601
  implementation, and once against an extension (pyrex/C) implementation.
 
602
  It can be used to dramatically simplify the implementation of
 
603
  ``load_tests``.  (John Arbash Meinel)
 
604
 
 
605
* ``bzrlib.tests.TestCase`` now subclasses ``testtools.testcase.TestCase``.
 
606
  This permits features in testtools such as getUniqueInteger and
 
607
  getUniqueString to be used. Because of this, testtools version 0.9.2 or
 
608
  newer is now a dependency to run bzr selftest. Running with versions of
 
609
  testtools less than 0.9.2 will cause bzr to error while loading the test
 
610
  suite. (Robert Collins)
 
611
 
 
612
* Shell-like tests now support the command "mv" for moving files.  The
 
613
  syntax for ``mv file1 file2``, ``mv dir1 dir2`` and ``mv file dir`` is
 
614
  supported.  (Neil Martinsen-Burrell)
 
615
 
 
616
* The test progress bar no longer distinguishes tests that 'errored' from
 
617
  tests that 'failed' - they're all just failures.
 
618
  (Martin Pool)
 
619
 
 
620
 
 
621
bzr 2.0.5
 
622
#########
 
623
 
 
624
:Codename:
 
625
:2.0.5: NOT RELEASED YET
 
626
 
 
627
Bug Fixes
 
628
*********
 
629
 
 
630
* Avoid ``malloc(0)`` in ``patiencediff``, which is non-portable.
 
631
  (Martin Pool, #331095)
 
632
 
 
633
* Concurrent autopacking is more resilient to already-renamed pack files.
 
634
  If we find that a file we are about to obsolete is already obsoleted, we
 
635
  do not try to rename it, and we leave the file in ``obsolete_packs``.
 
636
  The code is also fault tolerant if a file goes missing, assuming that
 
637
  another process already removed the file.
 
638
  (John Arbash Meinel, Gareth White, #507557)
 
639
 
 
640
* Cope with the lockdir ``held/info`` file being empty, which seems to
 
641
  happen fairly often if the process is suddenly interrupted while taking
 
642
  a lock.
 
643
  (Martin Pool, #185103)
 
644
 
 
645
* Handle renames correctly when there are files or directories that 
 
646
  differ only in case.  (Chris Jones, Martin Pool, #368931)
 
647
 
 
648
* Fixed CHM generation by moving the NEWS section template into
 
649
  a separate file. (Ian Clatworthy, #524184)
 
650
 
 
651
* If ``bzr push --create-prefix`` triggers an unexpected ``NoSuchFile``
 
652
  error, report that error rather than failing with an unhelpful
 
653
  ``UnboundLocalError``.
 
654
  (Andrew Bennetts, #423563)
 
655
 
 
656
* Running ``bzr`` command without any arguments now shows bzr
 
657
  version number along with rest of the help text.
 
658
  (Parth Malwankar, #369501)
 
659
 
 
660
* Use osutils.O_NOINHERIT for some files on win32 to avoid PermissionDenied
 
661
  errors.
 
662
  (Inada Naoki, #524560)
 
663
 
 
664
Documentation
 
665
*************
 
666
 
 
667
* Added ``location-alias`` help topic.
 
668
  (Andrew Bennetts, #337834)
 
669
 
 
670
bzr 2.0.4
 
671
#########
 
672
 
 
673
:Codename: smooth sailing
 
674
:2.0.4: 2010-01-21
 
675
 
 
676
The fourth bugfix-only release in the 2.0 series contains more than a
 
677
dozen bugfixes relative to 2.0.3. The primary focus is on handling
 
678
interruptions and concurrent operations more cleanly, there is also a fair
 
679
improvement to ``bzr export`` when exporting a remote branch.
 
680
 
 
681
 
 
682
Bug Fixes
 
683
*********
 
684
 
 
685
* ``bzr annotate`` on another branch with ``-r branch:...`` no longer
 
686
  fails with an ``ObjectNotLocked`` error.  (Andrew Bennetts, #496590)
 
687
 
 
688
* ``bzr export dir`` now requests all file content as a record stream,
 
689
  rather than requsting the file content one file-at-a-time. This can make
 
690
  exporting over the network significantly faster (54min => 9min in one
 
691
  case). (John Arbash Meinel, #343218)
 
692
 
 
693
* ``bzr serve`` no longer slowly leaks memory. The compiled
 
694
  ``bzrlib.bencode.Encoder()`` class was using ``__del__`` to cleanup and
 
695
  free resources, and it should have been using ``__dealloc__``.
 
696
  This will likely have an impact on any other process that is serving for
 
697
  an extended period of time.  (John Arbash Meinel, #494406)
 
698
 
 
699
* Check for SIGINT (Ctrl-C) and other signals immediately if ``readdir``
 
700
  returns ``EINTR`` by calling ``PyErr_CheckSignals``.  This affected the
 
701
  optional ``_readdir_pyx`` extension.  (Andrew Bennetts, #495023)
 
702
 
 
703
* Concurrent autopacks will no longer lose a newly created pack file.
 
704
  There was a race condition, where if the reload happened at the right
 
705
  time, the second packer would forget the name of the newly added pack
 
706
  file. (John Arbash Meinel, Gareth White, #507566)
 
707
 
 
708
* Give a clearer message if the lockdir disappears after being apparently
 
709
  successfully taken.  (Martin Pool, #498378)
 
710
 
 
711
* Give a warning when fetching between repositories (local or remote) with
 
712
  sufficiently different formats that the content will need to be
 
713
  serialized (ie ``InterDifferingSerializer`` or ``inventory-deltas``), so
 
714
  the user has a clue that upgrading could make it faster.
 
715
  (Martin Pool, #456077)
 
716
 
 
717
* If we fail to open ``~/.bzr.log`` write a clear message to stderr rather
 
718
  than using ``warning()``. The log file is opened before logging is set
 
719
  up, and it leads to very confusing: 'no handlers for "bzr"' messages for
 
720
  users, rather than something nicer.
 
721
  (John Arbash Meinel, Barry Warsaw, #503886)
 
722
 
 
723
* Refuse to build with any Pyrex 0.9.4 release, as they have known bugs.
 
724
  (Martin Pool, John Arbash Meinel, #449372)
 
725
 
 
726
* ``setup.py bdist_rpm`` now properly finds extra files needed for the
 
727
  build. (there is still the distutils bug
 
728
  http://bugs.python.org/issue644744) (Joe Julian, #175839)
 
729
 
 
730
* The 2a format wasn't properly restarting autopacks when something
 
731
  changed underneath it (like another autopack). Now concurrent
 
732
  autopackers will properly succeed. (John Arbash Meinel, #495000)
 
733
 
 
734
* ``TreeTransform`` can now handle when a delta says that the file id for
 
735
  the tree root changes. Rather than trying to rename your working
 
736
  directory, or failing early saying that you can't have multiple
 
737
  tree roots. This also fixes revert, update, and pull when the root id
 
738
  changes.  (John Arbash Meinel, #494269, #504390)
 
739
 
 
740
* ``_update_current_block`` no longer suppresses exceptions, so ^C at just
 
741
  the right time will get propagated, rather than silently failing to move
 
742
  the block pointer. (John Arbash Meinel, Gareth White, #495023)
 
743
 
 
744
Testing
 
745
*******
 
746
 
 
747
* We have a new ``test_source`` that ensures all pyrex ``cdef`` functions
 
748
  handle exceptions somehow. (Possibly by setting ``# cannot_raise``
 
749
  rather than an ``except ?:`` clause.) This should help prevent bugs like
 
750
  bug #495023. (John Arbash Meinel)
 
751
 
 
752
 
 
753
bzr 2.1.0b4
 
754
###########
 
755
 
 
756
:Codename: san francisco airport
 
757
:2.1.0b4: 2009-12-14
 
758
 
 
759
The fourth beta release in the 2.1 series brings with it a significant
 
760
number of bugfixes (~20). The test suite is once again (finally) "green"
 
761
on Windows, and should remain that way for future releases. There are a
 
762
few performance related updates (faster upgrade and log), and several UI
 
763
tweaks. There has also been a significant number of tweaks to the runtime
 
764
documentation. 2.1.0b4 include everything from the 2.0.3 release.
 
765
 
 
766
 
 
767
Compatibility Breaks
 
768
********************
 
769
 
 
770
* The BZR_SSH environmental variable may now be set to the path of a secure
 
771
  shell client. If currently set to the value ``ssh`` it will now guess the
 
772
  vendor of the program with that name, to restore the old behaviour that
 
773
  indicated the SSH Corporation client use ``sshcorp`` instead as the magic
 
774
  string. (Martin <gzlist@googlemail.com>, #176292)
 
775
 
 
776
New Features
 
777
************
 
778
 
 
779
* ``bzr commit`` now has a ``--commit-time`` option.
 
780
  (Alexander Sack, #459276)
 
781
 
 
782
* ``-Dhpss`` now increases logging done when run on the bzr server,
 
783
  similarly to how it works on the client. (John Arbash Meinel)
 
784
 
 
785
* New option ``bzr unshelve --keep`` applies the changes and leaves them
 
786
  on the shelf.  (Martin Pool, Oscar Fuentes, #492091)
 
787
 
 
788
* The ``BZR_COLUMNS`` envrionment variable can be set to force bzr to
 
789
  respect a given terminal width. This can be useful when output is
 
790
  redirected or in obscure cases where the default value is not
 
791
  appropriate. Pagers can use it to get a better control of the line
 
792
  lengths. 
 
793
  (Vincent Ladeuil)
 
794
 
 
795
* The new command ``bzr lp-mirror`` will request that Launchpad update its
 
796
  mirror of a local branch. This command will only function if launchpadlib
 
797
  is installed.
 
798
  (Jonathan Lange)
 
799
 
 
800
 
 
801
Bug Fixes
 
802
*********
 
803
 
 
804
* After renaming a file, the dirstate could accidentally reference
 
805
  ``source\\path`` rather than ``source/path`` on Windows. This might be a
 
806
  source of some dirstate-related failures. (John Arbash Meinel)
 
807
 
 
808
* ``bzr commit`` now detects commit messages that looks like file names
 
809
  and issues a warning.
 
810
  (Gioele Barabucci, #73073)
 
811
 
 
812
* ``bzr ignore /`` no longer causes an IndexError. (Gorden Tyler, #456036)
 
813
 
 
814
* ``bzr log -n0 -rN`` should not return revisions beyond its merged revisions.
 
815
  (#325618, #484109, Marius Kruger)
 
816
 
 
817
* ``bzr merge --weave`` and ``--lca`` will now create ``.BASE`` files for
 
818
  files with conflicts (similar to ``--merge3``). The contents of the file
 
819
  is a synthesis of all bases used for the merge.
 
820
  (John Arbash Meinel, #40412)
 
821
 
 
822
* ``bzr mv --quiet`` really is quiet now.  (Gordon Tyler, #271790)
 
823
 
 
824
* ``bzr serve`` is more clear about the risk of supplying --allow-writes.
 
825
  (Robert Collins, #84659)
 
826
 
 
827
* ``bzr serve --quiet`` really is quiet now.  (Gordon Tyler, #252834)
 
828
 
 
829
* Fix bug with redirected URLs over authenticated HTTP.
 
830
  (Glen Mailer, Neil Martinsen-Burrell, Vincent Ladeuil, #395714)
 
831
 
 
832
* Interactive merge doesn't leave branch locks behind.  (Aaron Bentley)
 
833
 
 
834
* Lots of bugfixes for the test suite on Windows. We should once again
 
835
  have a test suite with no failures on Windows. (John Arbash Meinel)
 
836
 
 
837
* ``osutils.terminal_width()`` obeys the BZR_COLUMNS environment
 
838
  variable but returns None if the terminal is not a tty (when output is
 
839
  redirected for example). Also fixes its usage under OSes that doesn't
 
840
  provide termios.TIOCGWINSZ. Make sure the corresponding tests runs on
 
841
  windows too.
 
842
  (Joke de Buhr, Vincent Ladeuil, #353370, #62539)
 
843
  (John Arbash Meinel, Vincent Ladeuil, #492561)
 
844
 
 
845
* Terminate ssh subprocesses when no references to them remain, fixing
 
846
  subprocess and file descriptor leaks.  (Andrew Bennetts, #426662)
 
847
  
 
848
* The ``--hardlink`` option of ``bzr branch`` and ``bzr checkout`` now
 
849
  works for 2a format trees.  Only files unaffected by content filters
 
850
  will be hardlinked.  (Andrew Bennetts, #408193)
 
851
 
 
852
* The new glob expansion on Windows would replace all ``\`` characters
 
853
  with ``/`` even if it there wasn't a glob to expand, the arg was quoted,
 
854
  etc. Now only change slashes if there is something being glob expanded.
 
855
  (John Arbash Meinel, #485771)
 
856
 
 
857
* Use our faster ``KnownGraph.heads()`` functionality when computing the
 
858
  new rich-root heads. This can cut a conversion time in half (mysql from
 
859
  13.5h => 6.2h) (John Arbash Meinel, #487632)
 
860
 
 
861
* When launching a external diff tool via bzr diff --using, temporary files
 
862
  are no longer created, rather, the path to the file in the working tree is
 
863
  passed to the external diff tool. This allows the file to be edited if the
 
864
  diff tool provides for this. (Gary van der Merwe, #490738)
 
865
  
 
866
* The launchpad-open command can now be used from a subdirectory of a
 
867
  branch, not just from the root of the branch. 
 
868
  (Neil Martinsen-Burrell, #489102)
 
869
 
 
870
 
 
871
Improvements
 
872
************
 
873
 
 
874
* ``bzr log`` is now faster. (Ian Clatworthy)
 
875
 
 
876
* ``bzr update`` provides feedback on which branch it is up to date with.
 
877
  (Neil Martinsen-Burrell)
 
878
 
 
879
* ``bzr upgrade`` from pre-2a to 2a can be significantly faster (4x).
 
880
  For details see the xml8 patch and heads() improvements.
 
881
  (John Arbash Meinel)
 
882
 
 
883
* ``bzrlib.urlutils.local_path_from_url`` now accepts
 
884
  'file://localhost/' as well as 'file:///' URLs on POSIX.  (Michael
 
885
  Hudson)
 
886
 
 
887
* The progress bar now shows only a spinner and per-operation counts,
 
888
  not an overall progress bar.  The previous bar was often not correlated
 
889
  with real overall operation progress, either because the operations take
 
890
  nonlinear time, or because at the start of the operation Bazaar couldn't
 
891
  estimate how much work there was to do.  (Martin Pool)
 
892
 
 
893
Documentation
 
894
*************
 
895
 
 
896
* Lots of documentation tweaks for inline help topics and command help
 
897
  information.
 
898
 
 
899
API Changes
 
900
***********
 
901
 
 
902
* ``bzrlib.textui`` (vestigial module) removed.  (Martin Pool)
 
903
 
 
904
* The Launchpad plugin now has a function ``login`` which will log in to
 
905
  Launchpad with launchpadlib, and ``load_branch`` which will return the
 
906
  Launchpad Branch object corresponding to a given Bazaar Branch object.
 
907
  (Jonathan Lange)
 
908
 
 
909
Internals
 
910
*********
 
911
 
 
912
* New test Feature: ``ModuleAvailableFeature``. It is designed to make it
 
913
  easier to handle what tests you want to run based on what modules can be
 
914
  imported. (Rather than lots of custom-implemented features that were
 
915
  basically copy-and-pasted.) (John Arbash Meinel)
 
916
 
 
917
* ``osutils.timer_func()`` can be used to get either ``time.time()`` or
 
918
  ``time.clock()`` when you want to do performance timing.
 
919
  ``time.time()`` is limited to 15ms resolution on Windows, but
 
920
  ``time.clock()`` gives CPU and not wall-clock time on other platforms.
 
921
  (John Arbash Meinel)
 
922
 
 
923
* Several code paths that were calling ``Transport.get().read()`` have
 
924
  been changed to the equalivent ``Transport.get_bytes()``. The main
 
925
  difference is that the latter will explicitly call ``file.close()``,
 
926
  rather than expecting the garbage collector to handle it. This helps
 
927
  with some race conditions on Windows during the test suite and sftp
 
928
  tests. (John Arbash Meinel)
 
929
 
 
930
Testing
 
931
*******
 
932
 
 
933
* TestCaseWithMemoryTransport no longer sets $HOME and $BZR_HOME to
 
934
  unicode strings. (Michael Hudson, #464174)
 
935
 
 
936
 
 
937
bzr 2.0.3
 
938
#########
 
939
 
 
940
:Codename: little italy
 
941
:2.0.3: 2009-12-14
 
942
 
 
943
 
 
944
The third stable release of Bazaar has a small handful of bugfixes. As
 
945
expected, this has no internal or external compatibility changes versus
 
946
2.0.2 (or 2.0.0).
 
947
 
 
948
Bug Fixes
 
949
*********
 
950
 
 
951
* ``bzr push --use-existing-dir`` no longer crashes if the directory
 
952
  exists but contains an invalid ``.bzr`` directory.
 
953
  (Andrew Bennetts, #423563)
 
954
 
 
955
* Content filters are now applied correctly after pull, merge and switch.
 
956
  (Ian Clatworthy, #385879)
 
957
 
 
958
* Fix a potential segfault in the groupcompress hash map handling code.
 
959
  When inserting new entries, if the final hash bucket was empty, we could
 
960
  end up trying to access if ``(last_entry+1)->ptr == NULL``.
 
961
  (John Arbash Meinel, #490228)
 
962
 
 
963
* Improve "Binary files differ" hunk handling.  (Aaron Bentley, #436325)
 
964
 
 
965
 
 
966
bzr 2.1.0b3
 
967
###########
 
968
 
 
969
:Codename: after sprint recovery
 
970
:2.1.0b3: 2009-11-16
 
971
 
 
972
This release was pushed up from its normal release cycle due to a
 
973
regression in python 2.4 compatibility in 2.1.0b2.  Since this regression
 
974
was caught before 2.1.0b2 was officially announced, the full changelog
 
975
includes both 2.1.0b3 and 2.1.0b2 changes.
 
976
 
 
977
Highlights of 2.1.0b3 are: new globbing code for all commands on Windows,
 
978
the test suite now conforms to python's trunk enhanced semantics (skip,
 
979
etc.), and ``bzr info -v`` will now report the correct branch and repo
 
980
formats for Remote objects.
 
981
 
 
982
 
 
983
New Features
 
984
************
 
985
 
 
986
* Users can define a shelve editor to provide shelf functionality at a
 
987
  granularity finer than per-patch-hunk. (Aaron Bentley)
 
988
 
 
989
Bug Fixes
 
990
*********
 
991
 
 
992
* Fix for shell completion and short options.  (Benoît PIERRE)
 
993
 
 
994
* Fix ``bzr --profile-imports`` with Python 2.6.  (Martin Pool)
 
995
 
 
996
* Hooks daughter classes should always call the base constructor.
 
997
  (Alexander Belchenko, Vincent Ladeuil, #389648) 
 
998
 
 
999
* Improve "Binary files differ" hunk handling.  (Aaron Bentley, #436325)
 
1000
 
 
1001
* On Windows, do glob expansion at the command-line level (as is usually
 
1002
  done in bash, etc.) This means that *all* commands get glob expansion
 
1003
  (bzr status, bzr add, bzr mv, etc). It uses a custom command line
 
1004
  parser, which allows us to know if a given section was quoted. It means
 
1005
  you can now do ``bzr ignore "*.py"``.
 
1006
  (John Arbash Meinel, #425510, #426410, #194450)
 
1007
 
 
1008
* Sanitize commit messages that come in from the '-m' flag. We translate
 
1009
  '\r\n' => '\n' and a plain '\r' => '\n'. The storage layer doesn't
 
1010
  allow those because XML store silently translate it anyway. (The parser
 
1011
  auto-translates \r\n => \n in ways that are hard for us to catch.)
 
1012
 
 
1013
* Show correct branch and repository format descriptions in 
 
1014
  ``bzr info -v`` on a smart server location.  (Andrew Bennetts, #196080)
 
1015
 
 
1016
* The fix for bug #186920 accidentally broke compatibility with python
 
1017
  2.4.  (Vincent Ladeuil, #475585)
 
1018
 
 
1019
* Using ``Repository.get_commit_builder().record_iter_changes()`` now
 
1020
  correctly sets ``self.inv_sha1`` to a sha1 string and
 
1021
  ``self.new_inventory`` to an Inventory instance after calling
 
1022
  ``self.finish_inventory()``. (Previously it accidently set both values
 
1023
  as a tuple on ``self.inv_sha1``. This was missed because
 
1024
  ``repo.add_revision`` ignores the supplied inventory sha1 and recomputes
 
1025
  the sha1 from the repo directly. (John Arbash Meinel)
 
1026
 
 
1027
* Shelve command refuse to run if there is no real terminal.
 
1028
  (Alexander Belchenko)
 
1029
 
 
1030
* Avoid unnecessarily flushing of trace file; it's now unbuffered at the
 
1031
  Python level.  (Martin Pool)
 
1032
 
 
1033
Documentation
 
1034
*************
 
1035
 
 
1036
* Include Japanese translations for documentation (Inada Naoki)
 
1037
 
 
1038
* New API ``ui_factory.make_output_stream`` to be used for sending bulk
 
1039
  (rather than user-interaction) data to stdout.  This automatically
 
1040
  coordinates with progress bars or other terminal activity, and can be
 
1041
  overridden by GUIs.
 
1042
  (Martin Pool, 493944)
 
1043
 
 
1044
Internals
 
1045
*********
 
1046
 
 
1047
* Some of the core groupcompress functionality now releases the GIL before
 
1048
  operation. Similar to how zlib and bz2 operate without the GIL in the
 
1049
  core compression and decompression routines. (John Arbash Meinel)
 
1050
 
 
1051
Testing
 
1052
*******
 
1053
 
 
1054
* -Dhpssvfs will now trigger on ``RemoteBzrDir._ensure_real``, providing
 
1055
  more debugging of VFS access triggers. (Robert Collins)
 
1056
 
 
1057
* KnownFailure is now signalled to ``ExtendedTestResult`` using the same
 
1058
  method that Python 2.7 uses - ``addExpectedFailure``. (Robert Collins)
 
1059
 
 
1060
* ``--parallel=fork`` is now compatible with --subunit.
 
1061
  (Robert Collins, Vincent Ladeuil, #419776)
 
1062
 
 
1063
* Reporting of failures shows test ids not descriptions and thus shows
 
1064
  parameterised tests correctly. (Robert Collins)
 
1065
 
 
1066
* TestNotApplicable is now handled within the TestCase.run method rather
 
1067
  than being looked for within ``ExtendedTestResult.addError``. This
 
1068
  provides better handling with other ``TestResult`` objects, degrading to
 
1069
  sucess rather than error. (Robert Collins)
 
1070
 
 
1071
* The private method ``_testConcluded`` on ``ExtendedTestResult`` has been
 
1072
  removed - it was empty and unused. (Robert Collins)
 
1073
 
 
1074
* UnavailableFeature is now handled within the TestCase.run method rather
 
1075
  than being looked for within addError. If the Result object does not
 
1076
  have an addNotSupported method, addSkip is attempted instead, and
 
1077
  failing that addSuccess. (Robert Collins)
 
1078
 
 
1079
* When a TestResult does not have an addSkip method, skipped tests are now
 
1080
  reported as successful tests, rather than as errors. This change is
 
1081
  to make it possible to get a clean test run with a less capable
 
1082
  TestResult. (Robert Collins)
 
1083
 
 
1084
 
 
1085
 
 
1086
bzr 2.1.0b2
 
1087
###########
 
1088
 
 
1089
:Codename: a load off my mind
 
1090
:2.1.0b2: 2009-11-02
 
1091
 
 
1092
This is our second feature-filled release since 2.0, pushing us down the
 
1093
path to a 2.1.0. Once again, all bugfixes in 2.0.2 are present in 2.1.0b2.
 
1094
 
 
1095
Key highlights in this release are: improved handling of
 
1096
failures-during-cleanup for commit, fixing a long-standing bug with
 
1097
``bzr+http`` and shared repositories, all ``lp:`` urls to be resolved
 
1098
behind proxies, and a new StaticTuple datatype, allowing us to reduce
 
1099
memory consumption (50%) and garbage collector overhead (40% faster) for
 
1100
many operations.
 
1101
 
 
1102
* A new ``--concurrency`` option has been added as well as an associated
 
1103
  BZR_CONCURRENCY environment variable to specify the number of
 
1104
  processes that can be run concurrently when running ``bzr selftest``. The
 
1105
  command-line option overrides the environment variable if both are
 
1106
  specified. If none is specified. the number of processes is obtained
 
1107
  from the OS as before.  (Matt Nordhoff, Vincent Ladeuil)
 
1108
 
 
1109
Bug Fixes
 
1110
*********
 
1111
 
 
1112
* ``bzr+http`` servers no longer give spurious jail break errors when
 
1113
  serving branches inside a shared repository.  (Andrew Bennetts, #348308)
 
1114
 
 
1115
* Errors during commit are handled more robustly so that knock-on errors
 
1116
  are less likely to occur, and will not obscure the original error if
 
1117
  they do occur.  This fixes some causes of ``TooManyConcurrentRequests``
 
1118
  and similar errors.  (Andrew Bennetts, #429747, #243391)
 
1119
 
 
1120
* Launchpad urls can now be resolved from behind proxies.
 
1121
  (Gordon Tyler, Vincent Ladeuil, #186920)
 
1122
 
 
1123
* Reduce the strictness for StaticTuple, instead add a debug flag
 
1124
  ``-Dstatic_tuple`` which will change apis to be strict and raise errors.
 
1125
  This way, most users won't see failures, but developers can improve
 
1126
  internals. (John Arbash Meinel, #471193)
 
1127
 
 
1128
* TreeTransform.adjust_path updates the limbo paths of descendants of adjusted
 
1129
  files.  (Aaron Bentley)
 
1130
 
 
1131
* Unicode paths are now handled correctly and consistently by the smart
 
1132
  server.  (Andrew Bennetts, Michael Hudson, #458762)
 
1133
 
 
1134
Improvements
 
1135
************
 
1136
 
 
1137
* When reading index files, we now use a ``StaticTuple`` rather than a
 
1138
  plain ``tuple`` object. This generally gives a 20% decrease in peak
 
1139
  memory, and can give a performance boost up to 40% on large projects.
 
1140
  (John Arbash Meinel)
 
1141
 
 
1142
* Peak memory under certain operations has been reduced significantly.
 
1143
  (eg, 'bzr branch launchpad standalone' is cut in half)
 
1144
  (John Arbash Meinel)
 
1145
 
 
1146
Documentation
 
1147
*************
 
1148
 
 
1149
* Filtered views user documentation upgraded to refer to format 2a
 
1150
  instead of pre-2.0 formats. (Ian Clatworthy)
 
1151
 
 
1152
API Changes
 
1153
***********
 
1154
 
 
1155
* Remove deprecated ``CLIUIFactory``.  (Martin Pool)
 
1156
 
 
1157
* ``UIFactory`` now has new ``show_error``, ``show_message`` and
 
1158
  ``show_warning`` methods, which can be hooked by non-text UIs.  
 
1159
  (Martin Pool)
 
1160
 
 
1161
Internals
 
1162
*********
 
1163
 
 
1164
* Added ``bzrlib._simple_set_pyx``. This is a hybrid between a Set and a
 
1165
  Dict (it only holds keys, but you can lookup the object located at a
 
1166
  given key). It has significantly reduced memory consumption versus the
 
1167
  builtin objects (1/2 the size of Set, 1/3rd the size of Dict). This is
 
1168
  used as the interning structure for StaticTuple objects.
 
1169
  (John Arbash Meinel)
 
1170
 
 
1171
* ``bzrlib._static_tuple_c.StaticTuple`` is now available and used by
 
1172
  the btree index parser and the chk map parser. This class functions
 
1173
  similarly to ``tuple`` objects. However, it can only point to a limited
 
1174
  collection of types.  (Currently StaticTuple, str, unicode, None, bool,
 
1175
  int, long, float, but not subclasses).  This allows us to remove it from
 
1176
  the garbage collector (it cannot be in a cycle), it also allows us to
 
1177
  intern the objects. In testing, this can reduce peak memory by 20-40%,
 
1178
  and significantly improve performance by removing objects from being
 
1179
  inspected by the garbage collector.  (John Arbash Meinel)
 
1180
 
 
1181
* ``GroupCompressBlock._ensure_content()`` will now release the
 
1182
  ``zlib.decompressobj()`` when the first request is for all of the
 
1183
  content. (Previously it would only be released if you made a request for
 
1184
  part of the content, and then all of it later.) This turns out to be a
 
1185
  significant memory savings, as a ``zstream`` carries around approx 260kB
 
1186
  of internal state and buffers. (For branching bzr.dev this drops peak
 
1187
  memory from 382MB => 345MB.) (John Arbash Meinel)
 
1188
 
 
1189
* When streaming content between ``2a`` format repositories, we now clear
 
1190
  caches from earlier versioned files. (So 'revisions' is cleared when we
 
1191
  start reading 'inventories', etc.) This can have a significant impact on
 
1192
  peak memory for initial copies (~200MB). (John Arbash Meinel)
 
1193
 
 
1194
 
 
1195
bzr 2.0.2
 
1196
#########
 
1197
 
 
1198
:Codename: after the scare
 
1199
:2.0.2: 2009-11-02
 
1200
 
 
1201
The second in our "let's keep the stable bugfixes flowing" series. As
 
1202
expected this has a few (~9) bugfixes relative to 2.0.1, and no major api
 
1203
changes or features.
 
1204
 
 
1205
Bug Fixes
 
1206
*********
 
1207
 
 
1208
* Avoid "NoneType has no attribute st_mode" error when files disappear
 
1209
  from a directory while it's being read.  (Martin Pool, #446033)
 
1210
 
 
1211
* Content filters are now applied correctly after revert.
 
1212
  (Ian Clatworthy)
 
1213
 
 
1214
* Diff parsing handles "Binary files differ" hunks.  (Aaron Bentley, #436325)
 
1215
 
 
1216
* Fetching from stacked pre-2a repository via a smart server no longer
 
1217
  fails intermittently with "second push failed to complete".
 
1218
  (Andrew Bennetts, #437626)
 
1219
 
 
1220
* Fix typos left after test_selftest refactoring.
 
1221
  (Vincent Ladeuil, Matt Nordhoff, #461149)
 
1222
 
 
1223
* Fixed ``ObjectNotLocked`` errors during ``bzr log -r NNN somefile``.
 
1224
  (Andrew Bennetts, #445171)
 
1225
  
 
1226
* PreviewTree file names are not limited by the encoding of the temp
 
1227
  directory's filesystem. (Aaron Bentley, #436794)
 
1228
 
 
1229
Improvements
 
1230
************
 
1231
 
 
1232
* ``bzr log`` now read-locks branches exactly once, so makes better use of
 
1233
  data caches.  (Andrew Bennetts)
 
1234
 
 
1235
Documentation
 
1236
*************
 
1237
 
 
1238
* Filtered views user documentation upgraded to refer to format 2a
 
1239
  instead of pre-2.0 formats. (Ian Clatworthy)
 
1240
 
 
1241
 
 
1242
bzr 2.1.0b1
 
1243
###########
 
1244
 
 
1245
:Codename: While the cat is away
 
1246
:2.1.0b1: 2009-10-14
 
1247
 
 
1248
This is the first development release in the new split "stable" and
 
1249
"development" series. As such, the release is a snapshot of bzr.dev
 
1250
without creating a release candidate first. This release includes a
 
1251
fair amount of internal changes, with deprecated code being removed,
 
1252
and several new feature developments. People looking for a stable code
 
1253
base with only bugfixes should focus on the 2.0.1 release. All bugfixes
 
1254
present in 2.0.1 are present in 2.1.0b1.
 
1255
 
 
1256
Highlights include support for ``bzr+ssh://host/~/homedir`` style urls,
 
1257
finer control over the plugin search path via extended BZR_PLUGIN_PATH
 
1258
syntax, visible warnings when extension modules fail to load, and improved
 
1259
error handling during unlocking.
 
1260
 
 
1261
 
 
1262
New Features
 
1263
************
 
1264
 
 
1265
* Bazaar can now send mail through Apple OS X Mail.app. 
 
1266
  (Brian de Alwis)
 
1267
 
 
1268
* ``bzr+ssh`` and ``bzr`` paths can now be relative to home directories
 
1269
  specified in the URL.  Paths starting with a path segment of ``~`` are
 
1270
  relative to the home directory of the user running the server, and paths
 
1271
  starting with ``~user`` are relative to the home directory of the named
 
1272
  user.  For example, for a user "bob" with a home directory of
 
1273
  ``/home/bob``, these URLs are all equivalent:
 
1274
 
 
1275
  * ``bzr+ssh://bob@host/~/repo``
 
1276
  * ``bzr+ssh://bob@host/~bob/repo``
 
1277
  * ``bzr+ssh://bob@host/home/bob/repo``
 
1278
 
 
1279
  If ``bzr serve`` was invoked with a ``--directory`` argument, then no
 
1280
  home directories outside that directory will be accessible via this
 
1281
  method.
 
1282
 
 
1283
  This is a feature of ``bzr serve``, so pre-2.1 clients will
 
1284
  automatically benefit from this feature when ``bzr`` on the server is
 
1285
  upgraded.  (Andrew Bennetts, #109143)
 
1286
 
 
1287
* Extensions can now be compiled if either Cython or Pyrex is available.
 
1288
  Currently Pyrex is preferred, but that may change in the future.
 
1289
  (Arkanes)
 
1290
 
 
1291
* Give more control on BZR_PLUGIN_PATH by providing a way to refer to or
 
1292
  disable the user, site and core plugin directories.
 
1293
  (Vincent Ladeuil, #412930, #316192, #145612)
 
1294
 
 
1295
Bug Fixes
 
1296
*********
 
1297
 
 
1298
* Bazaar's native protocol code now correctly handles EINTR, which most
 
1299
  noticeably occurs if you break in to the debugger while connected to a
 
1300
  bzr+ssh server.  You can now can continue from the debugger (by typing
 
1301
  'c') and the process continues.  However, note that pressing C-\ in the
 
1302
  shell may still kill the SSH process, which is bug 162509, so you must
 
1303
  sent a signal to the bzr process specifically, for example by typing
 
1304
  ``kill -QUIT PID`` in another shell.  (Martin Pool, #341535)
 
1305
 
 
1306
* ``bzr add`` in a tree that has files with ``\r`` or ``\n`` in the
 
1307
  filename will issue a warning and skip over those files.
 
1308
  (Robert Collins, #3918)
 
1309
 
 
1310
* ``bzr dpush`` now aborts if uncommitted changes (including pending merges)
 
1311
  are present in the working tree. The configuration option ``dpush_strict``
 
1312
  can be used to set the default for this behavior.
 
1313
  (Vincent Ladeuil, #438158)
 
1314
 
 
1315
* ``bzr merge`` and ``bzr remove-tree`` now requires --force if pending
 
1316
  merges are present in the working tree.
 
1317
  (Vincent Ladeuil, #426344)
 
1318
 
 
1319
* Clearer message when Bazaar runs out of memory, instead of a ``MemoryError``
 
1320
  traceback.  (Martin Pool, #109115)
 
1321
 
 
1322
* Don't give a warning on Windows when failing to import ``_readdir_pyx``
 
1323
  as it is never built. (John Arbash Meinel, #430645)
 
1324
 
 
1325
* Don't restrict the command name used to run the test suite.
 
1326
  (Vincent Ladeuil, #419950)
 
1327
 
 
1328
* ftp transports were built differently when the kerberos python module was
 
1329
  present leading to obscure failures related to ASCII/BINARY modes.
 
1330
  (Vincent Ladeuil, #443041)
 
1331
 
 
1332
* Network streams now decode adjacent records of the same type into a
 
1333
  single stream, reducing layering churn. (Robert Collins)
 
1334
 
 
1335
* PreviewTree behaves correctly when get_file_mtime is invoked on an unmodified
 
1336
  file. (Aaron Bentley, #251532)
 
1337
 
 
1338
* Registry objects should not use iteritems() when asked to use items().
 
1339
  (Vincent Ladeuil, #430510)
 
1340
 
 
1341
* Weave based repositories couldn't be cloned when committers were using
 
1342
  domains or user ids embedding '.sig'. Now they can.
 
1343
  (Matthew Fuller, Vincent Ladeuil, #430868)
 
1344
 
 
1345
Improvements
 
1346
************
 
1347
 
 
1348
* Revision specifiers can now be given in a more DWIM form, without
 
1349
  needing explicit prefixes for specifiers like tags or revision id's.
 
1350
  See ``bzr help revisionspec`` for full details.  (Matthew Fuller)
 
1351
 
 
1352
* Bazaar gives a warning before exiting, and writes into ``.bzr.log``, if 
 
1353
  compiled extensions can't be loaded.  This typically indicates a
 
1354
  packaging or installation problem.  In this case Bazaar will keep
 
1355
  running using pure-Python versions, but this may be substantially
 
1356
  slower.  The warning can be disabled by setting
 
1357
  ``ignore_missing_extensions = True`` in ``bazaar.conf``.
 
1358
  See also <https://answers.launchpad.net/bzr/+faq/703>.
 
1359
  (Martin Pool, #406113, #430529)
 
1360
 
 
1361
* Secondary errors that occur during Branch.unlock and Repository.unlock
 
1362
  no longer obscure the original error.  These methods now use a new
 
1363
  decorator, ``only_raises``.  This fixes many causes of
 
1364
  ``TooManyConcurrentRequests`` and similar errors.
 
1365
  (Andrew Bennetts, #429747)
 
1366
 
 
1367
Documentation
 
1368
*************
 
1369
 
 
1370
* Describe the new shell-like test feature. (Vincent Ladeuil)
 
1371
 
 
1372
* Help on hooks no longer says 'Not deprecated' for hooks that are
 
1373
  currently supported. (Ian Clatworthy, #422415)
 
1374
 
 
1375
API Changes
 
1376
***********
 
1377
 
 
1378
* ``bzrlib.user_encoding`` has been removed; use
 
1379
  ``bzrlib.osutils.get_user_encoding`` instead.  (Martin Pool)
 
1380
 
 
1381
* ``bzrlib.tests`` now uses ``stopTestRun`` for its ``TestResult``
 
1382
  subclasses - the same as python's unittest module. (Robert Collins)
 
1383
  
 
1384
* ``diff._get_trees_to_diff`` has been renamed to 
 
1385
  ``diff.get_trees_and_branches_to_diff``. It is now a public API, and it 
 
1386
  returns the old and new branches. (Gary van der Merwe)
 
1387
 
 
1388
* ``bzrlib.trace.log_error``, ``error`` and ``info`` have been deprecated.
 
1389
  (Martin Pool)
 
1390
 
 
1391
* ``MutableTree.has_changes()`` does not require a tree parameter anymore. It
 
1392
  now defaults to comparing to the basis tree. It now checks for pending
 
1393
  merges too.  ``Merger.check_basis`` has been deprecated and replaced by the
 
1394
  corresponding has_changes() calls. ``Merge.compare_basis``,
 
1395
  ``Merger.file_revisions`` and ``Merger.ensure_revision_trees`` have also
 
1396
  been deprecated.
 
1397
  (Vincent Ladeuil, #440631)
 
1398
 
 
1399
* ``ProgressTask.note`` is deprecated.
 
1400
  (Martin Pool)
 
1401
 
 
1402
Internals
 
1403
*********
 
1404
 
 
1405
* Added ``-Drelock`` debug flag.  It will ``note`` a message every time a
 
1406
  repository or branch object is unlocked then relocked the same way.
 
1407
  (Andrew Bennetts)
 
1408
  
 
1409
* ``BTreeLeafParser.extract_key`` has been tweaked slightly to reduce
 
1410
  mallocs while parsing the index (approx 3=>1 mallocs per key read).
 
1411
  This results in a 10% speedup while reading an index.
 
1412
  (John Arbash Meinel)
 
1413
 
 
1414
* The ``bzrlib.lsprof`` module has a new class ``BzrProfiler`` which makes
 
1415
  profiling in some situations like callbacks and generators easier.
 
1416
  (Robert Collins)
 
1417
 
 
1418
Testing
 
1419
*******
 
1420
 
 
1421
* Passing ``--lsprof-tests -v`` to bzr selftest will cause lsprof output to
 
1422
  be output for every test. Note that this is very verbose! (Robert Collins)
 
1423
 
 
1424
* Setting ``BZR_TEST_PDB=1`` when running selftest will cause a pdb
 
1425
  post_mortem to be triggered when a test failure occurs. (Robert Collins)
 
1426
 
 
1427
* Shell-like tests can now be written. Code in ``bzrlib/tests/script.py`` ,
 
1428
  documentation in ``developers/testing.txt`` for details.
 
1429
  (Vincent Ladeuil)
 
1430
 
 
1431
* Some tests could end up with the same id, that was dormant for
 
1432
  a long time.
 
1433
  (Vincent Ladeuil, #442980)
 
1434
 
 
1435
* Stop showing the number of tests due to missing features in the test
 
1436
  progress bar.  (Martin Pool)
 
1437
 
 
1438
* Test parameterisation now does a shallow copy, not a deep copy of the test
 
1439
  to be parameterised. This is not expected to break external use of test
 
1440
  parameterisation, and is substantially faster. (Robert Collins)
 
1441
 
 
1442
* Tests that try to open a bzr dir on an arbitrary transport will now
 
1443
  fail unless they have explicitly permitted the transport via
 
1444
  ``self.permit_url``. The standard test factories such as ``self.get_url``
 
1445
  will permit the urls they provide automatically, so only exceptional
 
1446
  tests should need to do this. (Robert Collins)
 
1447
 
 
1448
* The break-in test no longer cares about clean shutdown of the child,
 
1449
  instead it is happy if the debugger starts up. (Robert  Collins)
 
1450
 
 
1451
* The full test suite is expected to pass when the C extensions are not
 
1452
  present. (Vincent Ladeuil, #430749)
 
1453
 
 
1454
 
 
1455
bzr 2.0.1
 
1456
#########
 
1457
 
 
1458
:Codename: Stability First
 
1459
:2.0.1: 2009-10-14
 
1460
 
 
1461
The first of our new ongoing bugfix-only stable releases has arrived. It
 
1462
includes a collection of 12 bugfixes applied to bzr 2.0.0, but does not
 
1463
include any of the feature development in the 2.1.0 series.
 
1464
 
 
1465
 
 
1466
Bug Fixes
 
1467
*********
 
1468
 
 
1469
* ``bzr add`` in a tree that has files with ``\r`` or ``\n`` in the
 
1470
  filename will issue a warning and skip over those files.
 
1471
  (Robert Collins, #3918)
 
1472
 
 
1473
* bzr will attempt to authenticate with SSH servers that support
 
1474
  ``keyboard-interactive`` auth but not ``password`` auth when using
 
1475
  Paramiko.   (Andrew Bennetts, #433846)
 
1476
 
 
1477
* Fixed fetches from a stacked branch on a smart server that were failing
 
1478
  with some combinations of remote and local formats.  This was causing
 
1479
  "unknown object type identifier 60" errors.  (Andrew Bennetts, #427736)
 
1480
 
 
1481
* Fixed ``ObjectNotLocked`` errors when doing some log and diff operations
 
1482
  on branches via a smart server.  (Andrew Bennetts, #389413)
 
1483
 
 
1484
* Handle things like ``bzr add foo`` and ``bzr rm foo`` when the tree is
 
1485
  at the root of a drive. ``osutils._cicp_canonical_relpath`` always
 
1486
  assumed that ``abspath()`` returned a path that did not have a trailing
 
1487
  ``/``, but that is not true when working at the root of the filesystem.
 
1488
  (John Arbash Meinel, Jason Spashett, #322807)
 
1489
 
 
1490
* Hide deprecation warnings for 'final' releases for python2.6.
 
1491
  (John Arbash Meinel, #440062)
 
1492
 
 
1493
* Improve the time for ``bzr log DIR`` for 2a format repositories.
 
1494
  We had been using the same code path as for <2a formats, which required
 
1495
  iterating over all objects in all revisions.
 
1496
  (John Arbash Meinel, #374730)
 
1497
 
 
1498
* Make sure that we unlock the tree if we fail to create a TreeTransform
 
1499
  object when doing a merge, and there is limbo, or pending-deletions
 
1500
  directory.  (Gary van der Merwe, #427773)
 
1501
 
 
1502
* Occasional IndexError on renamed files have been fixed. Operations that
 
1503
  set a full inventory in the working tree will now go via the
 
1504
  apply_inventory_delta code path which is simpler and easier to
 
1505
  understand than dirstates set_state_from_inventory method. This may
 
1506
  have a small performance impact on operations built on _write_inventory,
 
1507
  but such operations are already doing full tree scans, so no radical
 
1508
  performance change should be observed. (Robert Collins, #403322)
 
1509
 
 
1510
* Retrieving file text or mtime from a _PreviewTree has good performance when
 
1511
  there are many changes.  (Aaron Bentley)
 
1512
 
 
1513
* The CHK index pages now use an unlimited cache size. With a limited
 
1514
  cache and a large project, the random access of chk pages could cause us
 
1515
  to download the entire cix file many times.
 
1516
  (John Arbash Meinel, #402623)
 
1517
 
 
1518
* When a file kind becomes unversionable after being added, a sensible
 
1519
  error will be shown instead of a traceback. (Robert Collins, #438569)
 
1520
 
 
1521
Documentation
 
1522
*************
 
1523
 
 
1524
* Improved README. (Ian Clatworthy)
 
1525
 
 
1526
* Improved upgrade documentation for Launchpad branches.
 
1527
  (Barry Warsaw)
 
1528
 
 
1529
 
 
1530
bzr 2.0.0
 
1531
#########
 
1532
 
 
1533
:2.0.0: 2009-09-22
 
1534
:Codename: Instant Karma
 
1535
 
 
1536
This release of Bazaar makes the 2a (previously 'brisbane-core') format
 
1537
the default when new branches or repositories are created.  This format is
 
1538
substantially smaller and faster for many operations.  Most of the work in
 
1539
this release focuses on bug fixes and stabilization, covering both 2a and
 
1540
previous formats.  (See the Upgrade Guide for information on migrating
 
1541
existing projects.)
 
1542
 
 
1543
This release also improves the documentation content and presentation,
 
1544
including adding Windows HtmlHelp manuals.
 
1545
 
 
1546
The Bazaar team decided that 2.0 will be a long-term supported release,
 
1547
with bugfix-only 2.0.x releases based on it, continuing for at least six
 
1548
months or until the following stable release.
 
1549
 
 
1550
Changes from 2.0.0rc2 to final
 
1551
******************************
 
1552
 
 
1553
* Officially branded as 2.0.0 rather than 2.0 to clarify between things
 
1554
  that "want to happen on the 2.0.x stable series" versus things that want
 
1555
  to "land in 2.0.0". (Changes how bzrlib._format_version_tuple() handles
 
1556
  micro = 0.) (John Arbash Meinel)
 
1557
 
 
1558
 
 
1559
bzr 2.0.0rc2
 
1560
############
 
1561
 
 
1562
:2.0.0rc2: 2009-09-10
 
1563
 
 
1564
New Features
 
1565
************
 
1566
 
 
1567
* Added post_commit hook for mutable trees. This allows the keywords
 
1568
  plugin to expand keywords on files changed by the commit.
 
1569
  (Ian Clatworthy, #408841)
 
1570
 
 
1571
Bug Fixes
 
1572
*********
 
1573
 
 
1574
* Bazaar's native protocol code now correctly handles EINTR, which most
 
1575
  noticeably occurs if you break in to the debugger while connected to a
 
1576
  bzr+ssh server.  You can now can continue from the debugger (by typing
 
1577
  'c') and the process continues.  However, note that pressing C-\ in the
 
1578
  shell may still kill the SSH process, which is bug 162509, so you must
 
1579
  sent a signal to the bzr process specifically, for example by typing
 
1580
  ``kill -QUIT PID`` in another shell.  (Martin Pool, #341535)
 
1581
 
 
1582
* ``bzr check`` in pack-0.92, 1.6 and 1.9 format repositories will no
 
1583
  longer report incorrect errors about ``Missing inventory ('TREE_ROOT', ...)``
 
1584
  (Robert Collins, #416732)
 
1585
 
 
1586
* ``bzr info -v`` on a 2a format still claimed that it was a "Development
 
1587
  format" (John Arbash Meinel, #424392)
 
1588
 
 
1589
* ``bzr log stacked-branch`` shows the full log including
 
1590
  revisions that are in the fallback repository. (Regressed in 2.0rc1).
 
1591
  (John Arbash Meinel, #419241)
 
1592
 
 
1593
* Clearer message when Bazaar runs out of memory, instead of a ``MemoryError``
 
1594
  traceback.  (Martin Pool, #109115)
 
1595
 
 
1596
* Conversion to 2a will create a single pack for all the new revisions (as
 
1597
  long as it ran without interruption). This improves both ``bzr upgrade``
 
1598
  and ``bzr pull`` or ``bzr merge`` from local branches in older formats.
 
1599
  The autopack logic that occurs every 100 revisions during local
 
1600
  conversions was not returning that pack's identifier, which resulted in
 
1601
  the partial packs created during the conversion not being consolidated
 
1602
  at the end of the conversion process. (Robert Collins, #423818)
 
1603
 
 
1604
* Fetches from 2a to 2a are now again requested in 'groupcompress' order.
 
1605
  Groups that are seen as 'underutilized' will be repacked on-the-fly.
 
1606
  This means that when the source is fully packed, there is minimal
 
1607
  overhead during the fetch, but if the source is poorly packed the result
 
1608
  is a fairly well packed repository (not as good as 'bzr pack' but
 
1609
  good-enough.) (Robert Collins, John Arbash Meinel, #402652)
 
1610
 
 
1611
* Fix a potential segmentation fault when doing 'log' of a branch that had
 
1612
  ghosts in its mainline.  (Evaluating None as a tuple is bad.)
 
1613
  (John Arbash Meinel, #419241)
 
1614
 
 
1615
* ``groupcompress`` sort order is now more stable, rather than relying on
 
1616
  ``topo_sort`` ordering. The implementation is now
 
1617
  ``KnownGraph.gc_sort``. (John Arbash Meinel)
 
1618
 
 
1619
* Local data conversion will generate correct deltas. This is a critical
 
1620
  bugfix vs 2.0rc1, and all 2.0rc1 users should upgrade to 2.0rc2 before
 
1621
  converting repositories. (Robert Collins, #422849)
 
1622
 
 
1623
* Network streams now decode adjacent records of the same type into a
 
1624
  single stream, reducing layering churn. (Robert Collins)
 
1625
 
 
1626
* Prevent some kinds of incomplete data from being committed to a 2a
 
1627
  repository, such as revisions without inventories, a missing chk_bytes
 
1628
  record for an inventory, or a missing text referenced by an inventory.
 
1629
  (Andrew Bennetts, #423506, #406687)
 
1630
  
 
1631
Documentation
 
1632
*************
 
1633
 
 
1634
* Fix assertion error about "_remember_remote_is_before" when pushing to
 
1635
  older smart servers.
 
1636
  (Andrew Bennetts, #418931)
 
1637
 
 
1638
* Help on hooks no longer says 'Not deprecated' for hooks that are
 
1639
  currently supported. (Ian Clatworthy, #422415)
 
1640
 
 
1641
* PDF and CHM (Windows HtmlHelp) formats are now supported for the
 
1642
  user documentation. The HTML documentation is better broken up into
 
1643
  topics. (Ian Clatworthy)
 
1644
 
 
1645
* The developer and foreign language documents are now separated
 
1646
  out so that searching in the HTML and CHM files produces more
 
1647
  useful results. (Ian Clatworthy)
 
1648
 
 
1649
* The main table of contents now provides links to the new Migration Docs
 
1650
  and Plugins Guide. (Ian Clatworthy)
 
1651
 
 
1652
 
 
1653
bzr 2.0.0rc1
 
1654
############
 
1655
 
 
1656
:Codename: no worries
 
1657
:2.0.0rc1: 2009-08-26
 
1658
 
 
1659
Compatibility Breaks
 
1660
********************
 
1661
 
 
1662
* The default format for bzr is now ``2a``. This format brings many
 
1663
  significant performance and size improvements. bzr can pull from
 
1664
  any existing repository into a ``2a`` one, but can only transfer
 
1665
  from ``2a`` into ``rich-root`` repositories. The Upgrade guide
 
1666
  has more information about this change. (Robert Collins)
 
1667
 
 
1668
* On Windows auto-detection of Putty's plink.exe is disabled.
 
1669
  Default SSH client for Windows is paramiko. User still can force
 
1670
  usage of plink if explicitly set environment variable BZR_SSH=plink.
 
1671
  (#414743, Alexander Belchenko)
 
1672
 
 
1673
New Features
 
1674
************
 
1675
 
 
1676
* ``bzr branch --switch`` can now switch the checkout in the current directory
 
1677
  to the newly created branch. (Lukáš Lalinský)
 
1678
 
 
1679
Bug Fixes
 
1680
*********
 
1681
 
 
1682
* Further tweaks to handling of ``bzr add`` messages about ignored files.
 
1683
  (Jason Spashett, #76616)
 
1684
 
 
1685
* Fetches were being requested in 'groupcompress' order, but weren't
 
1686
  recombining the groups. Thus they would 'fragment' to get the correct
 
1687
  order, but not 'recombine' to actually benefit from it. Until we get
 
1688
  recombining to work, switching to 'unordered' fetches avoids the
 
1689
  fragmentation. (John Arbash Meinel, #402645)
 
1690
 
 
1691
* Fix a pycurl related test failure on karmic by recognizing an error
 
1692
  raised by newer versions of pycurl.
 
1693
  (Vincent Ladeuil, #306264)
 
1694
 
 
1695
* Fix a test failure on karmic by making a locale test more robust.
 
1696
  (Vincent Ladeuil, #413514)
 
1697
 
 
1698
* Fix IndexError printing CannotBindAddress errors.
 
1699
  (Martin Pool, #286871)
 
1700
 
 
1701
* Fix "Revision ... not present" errors when upgrading stacked branches,
 
1702
  or when doing fetches from a stacked source to a stacked target.
 
1703
  (Andrew Bennetts, #399140)
 
1704
 
 
1705
* ``bzr branch`` of 2a repositories over HTTP is much faster.  bzr now
 
1706
  batches together small fetches from 2a repositories, rather than
 
1707
  fetching only a few hundred bytes at a time.
 
1708
  (Andrew Bennetts, #402657)
 
1709
 
 
1710
Improvements
 
1711
************
 
1712
 
 
1713
* A better description of the platform is shown in crash tracebacks, ``bzr
 
1714
  --version`` and ``bzr selftest``.
 
1715
  (Martin Pool, #409137)
 
1716
 
 
1717
* bzr can now (again) capture crash data through the apport library, 
 
1718
  so that a single human-readable file can be attached to bug reports.
 
1719
  This can be disabled by using ``-Dno_apport`` on the command line, or by
 
1720
  putting ``no_apport`` into the ``debug_flags`` section of
 
1721
  ``bazaar.conf``.
 
1722
  (Martin Pool, Robert Collins, #389328)
 
1723
 
 
1724
* ``bzr push`` locally on windows will no longer give a locking error with
 
1725
  dirstate based formats. (Robert Collins)
 
1726
 
 
1727
* ``bzr shelve`` and ``bzr unshelve`` now work on windows.
 
1728
  (Robert Collins, #305006)
 
1729
 
 
1730
* Commit of specific files no longer prevents using the iter_changes
 
1731
  codepath. On 2a repositories, commit of specific files should now be as
 
1732
  fast, or slightly faster, than a full commit. (Robert Collins)
 
1733
 
 
1734
* The internal core code that handles specific file operations like
 
1735
  ``bzr st FILENAME`` or ``bzr commit FILENAME`` has been changed to
 
1736
  include the parent directories if they have altered, and when a
 
1737
  directory stops being a directory its children are always included. This
 
1738
  fixes a number of causes for ``InconsistentDelta`` errors, and permits
 
1739
  faster commit of specific paths. (Robert Collins, #347649)
 
1740
 
 
1741
Documentation
 
1742
*************
 
1743
 
 
1744
* New developer documentation for content filtering.
 
1745
  (Martin Pool)
 
1746
 
 
1747
API Changes
 
1748
***********
 
1749
 
 
1750
* ``bzrlib.shelf_ui`` has had the ``from_args`` convenience methods of its
 
1751
  classes changed to manage lock lifetime of the trees they open in a way
 
1752
  consistent with reader-exclusive locks. (Robert Collins, #305006)
 
1753
 
 
1754
Testing
 
1755
*******
 
1756
 
 
1757
bzr 1.18.1
 
1758
##########
 
1759
 
 
1760
:Codename:     nein nein nein!
 
1761
:1.18.1:       2009-09-09
 
1762
 
 
1763
This release fixes two small but worthwhile bugs relevant to users on
 
1764
Microsoft Windows: some commands that failed on with locking errors will
 
1765
now work, and a bug that caused poor performance after committing a file
 
1766
with line-ending conversion has now been fixed.  It also fixes a bug in
 
1767
pushing to older servers.
 
1768
 
 
1769
Bug Fixes
 
1770
*********
 
1771
 
 
1772
* Fixed a problem where using content filtering and especially end-of-line
 
1773
  conversion will commit too many copies a file.
 
1774
  (Martin Pool, #415508)
 
1775
 
 
1776
* Fix assertion error about ``_remember_remote_is_before`` in
 
1777
  ``set_tags_bytes`` when pushing to older smart servers.  
 
1778
  (Andrew Bennetts, Alexander Belchenko, #418931)
 
1779
 
 
1780
Improvements
 
1781
************
 
1782
 
 
1783
* ``bzr push`` locally on Windows will no longer give a locking error with
 
1784
  dirstate based formats. (Robert Collins)
 
1785
 
 
1786
* ``bzr shelve`` and ``bzr unshelve`` now work on Windows.
 
1787
  (Robert Collins, #305006)
 
1788
 
 
1789
API Changes
 
1790
***********
 
1791
 
 
1792
* ``bzrlib.shelf_ui`` has had the ``from_args`` convenience methods of its
 
1793
  classes changed to manage lock lifetime of the trees they open in a way
 
1794
  consistent with reader-exclusive locks. (Robert Collins, #305006)
 
1795
 
 
1796
* ``Tree.path_content_summary`` may return a size of None, when called on
 
1797
  a tree with content filtering where the size of the canonical form
 
1798
  cannot be cheaply determined.  (Martin Pool)
 
1799
 
 
1800
* When manually creating transport servers in test cases, a new helper
 
1801
  ``TestCase.start_server`` that registers a cleanup and starts the server
 
1802
  should be used. (Robert Collins)
 
1803
 
 
1804
bzr 1.18
 
1805
########
 
1806
 
 
1807
Compatibility Breaks
 
1808
********************
 
1809
 
 
1810
* Committing directly to a stacked branch from a lightweight checkout will
 
1811
  no longer work. In previous versions this would appear to work but would
 
1812
  generate repositories with insufficient data to create deltas, leading
 
1813
  to later errors when branching or reading from the repository.
 
1814
  (Robert Collins, bug #375013)
 
1815
 
 
1816
New Features
 
1817
************
 
1818
 
 
1819
Bug Fixes
 
1820
*********
 
1821
 
 
1822
* Fetching from 2a branches from a version-2 bzr protocol would fail to
 
1823
  copy the internal inventory pages from the CHK store. This cannot happen
 
1824
  in normal use as all 2a compatible clients and servers support the
 
1825
  version-3 protocol, but it does cause test suite failures when testing
 
1826
  downlevel protocol behaviour. (Robert Collins)
 
1827
 
 
1828
* Fix a test failure on karmic by making a locale test more robust.
 
1829
  (Vincent Ladeuil, #413514)
 
1830
 
 
1831
* Fixed "Pack ... already exists" error when running ``bzr pack`` on a
 
1832
  fully packed 2a repository.  (Andrew Bennetts, #382463)
 
1833
 
 
1834
* Further tweaks to handling of ``bzr add`` messages about ignored files.
 
1835
  (Jason Spashett, #76616)
 
1836
 
 
1837
* Properly handle fetching into a stacked branch while converting the
 
1838
  data, especially when there are also ghosts. The code was filling in
 
1839
  parent inventories incorrectly, and also not handling when one of the
 
1840
  parents was a ghost. (John Arbash Meinel, #402778, #412198)
 
1841
 
 
1842
* ``RemoteStreamSource.get_stream_for_missing_keys`` will fetch CHK
 
1843
  inventory pages when appropriate (by falling back to the vfs stream
 
1844
  source).  (Andrew Bennetts, #406686)
 
1845
 
 
1846
* StreamSource generates rich roots from non-rich root sources correctly
 
1847
  now.  (Andrew Bennetts, #368921)
 
1848
 
 
1849
* When deciding whether a repository was compatible for upgrading or
 
1850
  fetching, we previously incorrectly checked the default repository
 
1851
  format for the bzrdir format, rather than the format that was actually
 
1852
  present on disk.  (Martin Pool, #408824)
 
1853
 
 
1854
Improvements
 
1855
************
 
1856
 
 
1857
* A better description of the platform is shown in crash tracebacks, ``bzr
 
1858
  --version`` and ``bzr selftest``.
 
1859
  (Martin Pool, #409137)
 
1860
 
 
1861
* Cross-format fetches (such as between 1.9-rich-root and 2a) via the
 
1862
  smart server are more efficient now.  They send inventory deltas rather
 
1863
  than full inventories.  The smart server has two new requests,
 
1864
  ``Repository.get_stream_1.19`` and ``Repository.insert_stream_1.19`` to
 
1865
  support this.  (Andrew Bennetts, #374738, #385826)
 
1866
 
 
1867
* Extracting the full ancestry and computing the ``merge_sort`` is now
 
1868
  significantly faster. This effects things like ``bzr log -n0``. (For
 
1869
  example, ``bzr log -r -10..-1 -n0 bzr.dev`` is 2.5s down to 1.0s.
 
1870
  (John Arbash Meinel)
 
1871
 
 
1872
Documentation
 
1873
*************
 
1874
 
 
1875
API Changes
 
1876
***********
 
1877
 
 
1878
Internals
 
1879
*********
 
1880
 
 
1881
* ``-Dstrict_locks`` can now be used to check that read and write locks
 
1882
  are treated properly w.r.t. exclusivity. (We don't try to take an OS
 
1883
  read lock on a file that we already have an OS write lock on.) This is
 
1884
  now set by default for all tests, if you have a test which cannot be
 
1885
  fixed, you can use ``self.thisFailsStrictLockCheck()`` as a
 
1886
  compatibility knob. (John Arbash Meinel)
 
1887
 
 
1888
* InterDifferingSerializer is now only used locally.  Other fetches that
 
1889
  would have used InterDifferingSerializer now use the more network
 
1890
  friendly StreamSource, which now automatically does the same
 
1891
  transformations as InterDifferingSerializer.  (Andrew Bennetts)
 
1892
 
 
1893
* ``KnownGraph`` now has a ``.topo_sort`` and ``.merge_sort`` member which
 
1894
  are implemented in pyrex and significantly faster. This is exposed along
 
1895
  with ``CombinedGraphIndex.find_ancestry()`` as
 
1896
  ``VersionedFiles.get_known_graph_ancestry(keys)``.
 
1897
  (John Arbash Meinel)
 
1898
 
 
1899
* RemoteBranch.open now honours ignore_fallbacks correctly on bzr-v2
 
1900
  protocols. (Robert Collins)
 
1901
 
 
1902
* The index code now has some specialized routines to extract the full
 
1903
  ancestry of a key in a more efficient manner.
 
1904
  ``CombinedGraphIndex.find_ancestry()``. (Time to get ancestry for
 
1905
  bzr.dev drops from 1.5s down to 300ms. For OOo from 33s => 10.5s) (John
 
1906
  Arbash Meinel)
 
1907
 
 
1908
Testing
 
1909
*******
 
1910
 
 
1911
* Install the test ssl certificate and key so that installed bzr
 
1912
  can run the https tests. (Denys Duchier, #392401)
 
1913
  
 
1914
 
 
1915
bzr 1.18rc1
 
1916
###########
 
1917
 
 
1918
:Codename: little traveller
 
1919
:1.18:    2009-08-20
 
1920
:1.18rc1: 2009-08-10
 
1921
 
 
1922
This release of Bazaar marches on towards the 2.0 release in which the 2a
 
1923
'brisbane-core' format becomes generally recommended.  Most of the work in
 
1924
this release now focusses on bug fixes and stabilization, covering both 2a
 
1925
and previous formats.  There is a new text-mode interactive merge feature,
 
1926
a new guide to migration to 2a format in the user documentation, and
 
1927
pushing branches to a smart server is now much faster.  
 
1928
 
 
1929
The Bazaar team decided that 2.0 will be a long-term supported release,
 
1930
with bugfix-only releases based on it continuing for at least six months
 
1931
or until the following stable release.
 
1932
 
 
1933
There are no changes from 1.18rc1 to 1.18.
 
1934
 
 
1935
New Features
 
1936
************
 
1937
 
 
1938
* ``bzr merge --interactive`` applies a user-selected portion of the
 
1939
  merge.  The UI is similar to ``shelve``.  (Aaron Bentley)
 
1940
 
 
1941
* ``bzr reconfigure`` now takes options ``--stacked-on URL`` and
 
1942
  ``--unstacked`` to change stacking of a branch.
 
1943
  (Martin Pool, #391411)
 
1944
 
 
1945
Bug Fixes
 
1946
*********
 
1947
 
 
1948
* Annotating on a stacked branch will now succeed in simple scenarios.
 
1949
  There are still some complex scenarios where it will fail (bug #399884)
 
1950
  (John Arbash Meinel, #393366)
 
1951
 
 
1952
* A progress bar is no longer left dangling when ``bzr selftest``
 
1953
  completes, and the progress bar updates with zero latency so the
 
1954
  displayed test name is always the one that's actually running.
 
1955
  (Martin Pool, #123688)
 
1956
 
 
1957
* Authenticating against an ssh server now uses ``auth_none`` to determine
 
1958
  if password authentication is even supported. This fixes a bug where
 
1959
  users would be prompted for a launchpad password, even though launchpad
 
1960
  only supports publickey authentication. (John Arbash Meinel, #375867)
 
1961
 
 
1962
* BranchBuilder now accepts timezone to avoid test failures in countries far
 
1963
  from GMT. (Vincent Ladeuil, #397716)
 
1964
 
 
1965
* ``bzr commit`` no longer saves the unversioning of missing files until
 
1966
  the commit has completed on the branch. This means that aborting a
 
1967
  commit that found a missing file will leave the tree unedited.
 
1968
  (Robert Collins, #282402)
 
1969
 
 
1970
* ``bzr mv`` no longer takes out branch locks, which allows it to work
 
1971
  when the branch is readonly. (Robert Collins, #216541)
 
1972
 
 
1973
* ``bzr revert .`` no longer generates an InconsistentDelta error when
 
1974
  there are missing subtrees. (Robert Collins, #367632)
 
1975
 
 
1976
* ``bzr send`` now generates valid bundles with ``--2a`` formats. However,
 
1977
  do to internal changes necessary to support this, older clients will
 
1978
  fail when trying to insert them. For newer clients, the bundle can be
 
1979
  used to apply the changes to any rich-root compatible format.
 
1980
  (John Arbash Meinel, #393349)
 
1981
 
 
1982
* Cope with FTP servers that don't support restart/append by falling back
 
1983
  to reading and then rewriting the whole file, such as TahoeLAFS.  (This
 
1984
  fallback may be slow for some access patterns.)  (Nils Durner, #294709)
 
1985
 
 
1986
* Encode the paths in ``mbcs`` encoding on Windows when spawning an
 
1987
  external diff client. This at least allows supporting filenames that are
 
1988
  not ascii, but are present in the current locale. Ideally we would be
 
1989
  able to pass the Unicode path, but that would be client dependent.
 
1990
  (John Arbash Meinel, #382709)
 
1991
 
 
1992
* Fix a compile bug on Solaris having to do with const and
 
1993
  pointer-to-pointers. (John Arbash Meinel, #408441)
 
1994
 
 
1995
* Fixed a NameError that occurs when merging or pulling from a URL that
 
1996
  causes a redirection loop when bzr tries to read a URL as a bundle.
 
1997
  (Andrew Bennetts, #400847)
 
1998
 
 
1999
* Fix ``AttributeError: 'TestUIFactory' object has no attribute 'tick'``
 
2000
  running send and similar commands on 2a formats.
 
2001
  (Martin Pool, #408201)
 
2002
  
 
2003
* Fix crash in some invocations of ``bzr status`` in format 2a.
 
2004
  (Martin Pool, #403523)
 
2005
 
 
2006
* Fixed export to existing directory: if directory is empty then export 
 
2007
  will succeed, otherwise it fails with error.
 
2008
  (Alexander Belchenko, #406174)
 
2009
 
 
2010
* Fixed spurious "Source branch does not support stacking" warning when
 
2011
  pushing. (Andrew Bennetts, #388908)
 
2012
 
 
2013
* Fixed spurious transport activity indicator appearing while tests are
 
2014
  running.  (Martin Pool, #343532)
 
2015
 
 
2016
* Merge now correctly handles empty right-hand revision specs.
 
2017
  (Aaron Bentley, #333961)
 
2018
 
 
2019
* Renames to lexographically lower basenames in trees that have never been
 
2020
  committed to will no longer corrupt the dirstate. This was caused by an
 
2021
  bug in the dirstate update_minimal method. (Robert Collins, #395556)
 
2022
 
 
2023
* Requests for unknown methods no longer cause the smart server to log
 
2024
  lots of backtraces about ``UnknownSmartMethod``, ``do_chunk`` or
 
2025
  ``do_end``.  (Andrew Bennetts, #338561)
 
2026
 
 
2027
* Shelve will not shelve the initial add of the tree root.  (Aaron Bentley)
 
2028
 
 
2029
* Streaming from bzr servers where there is a chain of stacked branches
 
2030
  (A stacked on B stacked on C) will now work. (Robert Collins, #406597)
 
2031
 
 
2032
* The environment variable ``BZR_PROGRESS_BAR`` set to either ``text`` or ``none``
 
2033
  always forces progress bars either on or off respectively.  Otherwise,
 
2034
  they're turned on if ``TERM`` is not ``dumb`` and stderr is a terminal.
 
2035
  bzr always uses the 'text' user interface when run as a command, so
 
2036
  ``BZR_USE_TEXT_UI`` is no longer needed.
 
2037
  (Martin Pool, #339385, #387717)
 
2038
 
 
2039
* The optional ``_knit_load_data_pyx`` C extension was never being
 
2040
  imported.  This caused significant slowdowns when reading data from
 
2041
  repositories.  (Andrew Bennetts, #405653)
 
2042
  
 
2043
* The ``--hardlink`` option to ``branch`` and ``checkout`` is not
 
2044
  supported at the moment on workingtree formats that can do content
 
2045
  filtering.  (See <https://bugs.edge.launchpad.net/bzr/+bug/408193>.)
 
2046
  bzr now says so, rather than just ignoring the option.  (Martin Pool)
 
2047
 
 
2048
* There was a bug in ``osutils.relpath`` that was only triggered on
 
2049
  Windows. Essentially if you were at the root of a drive, and did
 
2050
  something to a branch/repo on another drive, we would go into an
 
2051
  infinite loop while trying to find a 'relative path'.
 
2052
  (John Arbash Meinel, #394227)
 
2053
 
 
2054
* ``WorkingTree4.unversion`` will no longer fail to unversion ids which
 
2055
  were present in a parent tree but renamed in the working tree.
 
2056
  (Robert Collins, #187207)
 
2057
 
 
2058
Improvements
 
2059
************
 
2060
 
 
2061
* Can now rename/move files even if they have been removed from the inventory.
 
2062
  (Marius Kruger)
 
2063
 
 
2064
* Pushing branches with tags via ``bzr://`` and ``bzr+ssh://`` is much
 
2065
  faster, using a new ``Branch.set_tags_bytes`` smart server verb rather
 
2066
  than VFS methods.  For example, pushes of small branches with tags take
 
2067
  11 rather than 18 smart server requests.  (Andrew Bennetts, #398608)
 
2068
 
 
2069
* Sending Ctrl-Break on Windows will now drop you into the debugger, in
 
2070
  the same way that sending Ctrl-\\ does on other platforms.
 
2071
  (John Arbash Meinel)
 
2072
 
 
2073
Documentation
 
2074
*************
 
2075
 
 
2076
* Added Bazaar 2.0 Upgrade Guide. (Ian Clatworthy)
 
2077
 
 
2078
API Changes
 
2079
***********
 
2080
 
 
2081
* ``CLIUIFactory`` is deprecated; use ``TextUIFactory`` instead if you
 
2082
  need to subclass or create a specific class, or better yet the existing
 
2083
  ``make_ui_for_terminal``.  ``SilentUIFactory`` is clarified to do no
 
2084
  user interaction at all, rather than trying to read from stdin but not
 
2085
  writing any output, which would be strange if reading prompts or
 
2086
  passwords.  (Martin Pool)
 
2087
 
 
2088
* New TransformPreview.commit() allows committing without a working tree.
 
2089
  (Aaron Bentley)
 
2090
 
 
2091
* ``pb`` parameter to ``TextTestResult`` is deprecated and ignored.
 
2092
  (Martin Pool)
 
2093
 
 
2094
* ProgressTasks now prefer to talk direct to their ProgressView not to the
 
2095
  UIFactory. 
 
2096
  (Martin Pool)
 
2097
 
 
2098
* ``WorkingTree._check`` now requires a references dict with keys matching
 
2099
  those returned by ``WorkingTree._get_check_refs``. (Robert Collins)
 
2100
 
 
2101
Internals
 
2102
*********
 
2103
 
 
2104
* ``CHKInventory.path2id`` uses the parent_id to basename hash to avoid
 
2105
  reading the entries along the path, reducing work to lookup ids from
 
2106
  paths. (Robert Collins)
 
2107
 
 
2108
* ``CHKMap.apply_delta`` now raises ``InconsistentDelta`` if a delta adds
 
2109
  as new a key which was already mapped. (Robert Collins)
 
2110
 
 
2111
* Inventory delta application catches more cases of corruption and can
 
2112
  prevent corrupt deltas from affecting consistency of data structures on
 
2113
  disk. (Robert Collins)
 
2114
 
 
2115
* --subunit support now adds timestamps if the subunit version supports
 
2116
  it. (Robert Collins)
 
2117
 
 
2118
* The Windows all-in-one installer now bundles the PyQt image format
 
2119
  plugins, which allows previewing more images as part of 'qdiff'.
 
2120
  (Alexander Belchenko)
 
2121
 
 
2122
 
 
2123
Testing
 
2124
*******
 
2125
 
 
2126
* Merge directive cherrypick tests must use the same root id.
 
2127
  (Martin Pool, #409684)
 
2128
 
 
2129
* Spurious failure in ``check`` tests on rich-root formats fixed.
 
2130
  (Martin Pool, #408199)
 
2131
 
 
2132
* The ``bzrlib.tests.TextTestRunner`` will no longer call
 
2133
  ``countTestsCases`` on the test being run. Progress information is
 
2134
  instead handled by having the test passed in call ``result.progress``
 
2135
  before running its contents. This improves the behaviour when using
 
2136
  ``TextTestRunner`` with test suites that don't support
 
2137
  ``countTestsCases``. (Robert Collins)
 
2138
 
 
2139
 
 
2140
bzr 1.17.1 (unreleased)
 
2141
#######################
 
2142
 
 
2143
Bug Fixes
 
2144
*********
 
2145
 
 
2146
* The optional ``_knit_load_data_pyx`` C extension was never being
 
2147
  imported.  This caused significant slowdowns when reading data from
 
2148
  knit format repositories.  (Andrew Bennetts, #405653)
 
2149
  
 
2150
 
 
2151
bzr 1.17
 
2152
########
 
2153
:Codename: so-late-its-brunch
 
2154
:1.17rc1: 2009-07-13
 
2155
:1.17: 2009-07-20
 
2156
 
 
2157
 
 
2158
Bazaar continues to blaze a straight and shining path to the 2.0 release and
 
2159
the elevation of the ``2a`` beta format to the full glory of "supported and
 
2160
stable".
 
2161
 
 
2162
Highlights in this release include greatly reduced memory consumption during
 
2163
commits, faster ``ls``, faster ``annotate``, faster network operations if
 
2164
you're specifying a revision number and the final destruction of those
 
2165
annoying progress bar artifacts.
 
2166
 
 
2167
 
 
2168
Changes from 1.17rc1 to 1.17final
 
2169
*********************************
 
2170
 
 
2171
* Change an extension to call the python ``frozenset()`` rather than the C
 
2172
  api ``PyFrozenSet_New``. It turns out that python2.4 did not expose the
 
2173
  C api. (John Arbash Meinel, #399366)
 
2174
 
 
2175
* Fixes for the Makefile and the rename of ``generate_docs.py`` to
 
2176
  ``tools/generate_docs.py`` to allow everything to be built on Windows.
 
2177
  (John Arbash Meinel, #399356)
 
2178
 
 
2179
* ``bzr serve`` once again applies a ``ChrootServer`` to the given
 
2180
  directory before serving it. (Andrew Bennetts, #400535)
 
2181
 
 
2182
 
 
2183
Compatibility Breaks
 
2184
********************
 
2185
 
 
2186
* ``bzr register-branch`` from the Launchpad plugin now refers to "project"
 
2187
  instead of "product" which is the correct Launchpad terminology.  The
 
2188
  --product option is deprecated and users should switch to using --project.
 
2189
  (Neil Martinsen-Burrell, #238764)
 
2190
 
 
2191
 
 
2192
New Features
 
2193
************
 
2194
 
 
2195
* ``bzr push`` now aborts if uncommitted changes (including pending merges)
 
2196
  are present in the working tree (if one is present) and no revision is
 
2197
  specified. The configuration option ``push_strict`` can be used to set the
 
2198
  default for this behavior.  (Vincent Ladeuil, #284038, #322808, #65286)
 
2199
 
 
2200
* ``bzr revno`` and ``bzr revision-info`` now have a ``--tree`` option to
 
2201
  show revision info for the working tree instead of the branch.
 
2202
  (Matthew Fuller, John Arbash Meinel)
 
2203
 
 
2204
* ``bzr send`` now aborts if uncommitted changes (including pending merges)
 
2205
  are present in the working tree and no revision is specified. The
 
2206
  configuration option ``send_strict`` can be used to set the default for this
 
2207
  behavior.
 
2208
  (Vincent Ladeuil, #206577)
 
2209
 
 
2210
* ``bzr switch --create-branch/-b`` can now be used to create and switch
 
2211
  to a new branch. Supplying a name without a ``/`` will create the branch
 
2212
  relative to the existing branch. (similar to how ``bzr switch name``
 
2213
  works when the branch already exists.) (John Arbash Meinel)
 
2214
 
 
2215
 
 
2216
Bug Fixes
 
2217
*********
 
2218
 
 
2219
* Accept uppercase "Y/N" to prompts such as from break lock. 
 
2220
  (#335182, Tim Powell, Martin Pool)
 
2221
 
 
2222
* Add documentation about diverged branches and how to fix them in the
 
2223
  centralized workflow with local commits.  Mention ``bzr help
 
2224
  diverged-branches`` when a push fails because the branches have
 
2225
  diverged.  (Neil Martinsen-Burrell, #269477)
 
2226
 
 
2227
* Annotate would sometimes 'latch on' to trivial lines, causing important
 
2228
  lines to be incorrectly annotated. (John Arbash Meinel, #387952)
 
2229
 
 
2230
* Automatic format upgrades triggered by default stacking policies on a
 
2231
  1.16rc1 (or later) smart server work again.
 
2232
  (Andrew Bennetts, #388675)
 
2233
 
 
2234
* Avoid progress bar artifacts being left behind on the screen.
 
2235
  (Martin Pool, #321935)
 
2236
 
 
2237
* Better message in ``bzr split`` error suggesting a rich root format.
 
2238
  (Neil Martinsen-Burrell, #220067)
 
2239
 
 
2240
* ``Branch.set_append_revisions_only`` now works with branches on a smart
 
2241
  server. (Andrew Bennetts, #365865)
 
2242
 
 
2243
* By default, ``bzr branch`` will fail if the target directory exists, but
 
2244
  does not already have a control directory.  The flag ``--use-existing-dir``
 
2245
  will allow operation to proceed.  (Alexander Belchenko, #307554)
 
2246
 
 
2247
* ``bzr ls DIR --from-root`` now shows only things in DIR, not everything.
 
2248
  (Ian Clatworthy)
 
2249
 
 
2250
* Fetch between repositories does not error if they have inconsistent data
 
2251
  that should be irrelevant to the fetch operation. (Aaron Bentley)
 
2252
 
 
2253
* Fix ``AttributeError`` exception when reconfiguring lightweight checkout 
 
2254
  of a remote repository.
 
2255
  (Jelmer Vernooij, #332194)
 
2256
 
 
2257
* Fix bug in decoding v3 smart server messages when receiving multiple
 
2258
  lots of excess bytes after an end-of-message.
 
2259
  (Andrew Bennetts)
 
2260
 
 
2261
* Force deletion of readonly files during merge, update and other tree
 
2262
  transforms.
 
2263
  (Craig Hewetson, Martin Pool, #218206)
 
2264
 
 
2265
* Force socket shutdown in threaded http test servers to avoid client hangs
 
2266
  (pycurl).  (Vincent Ladeuil, #383920).
 
2267
 
 
2268
* ``LRUCache`` will maintain the linked list pointers even if a nodes
 
2269
  cleanup function raises an exception. (John Arbash Meinel, #396838)
 
2270
 
 
2271
* Progress bars are now suppressed again when the environment variable
 
2272
  ``BZR_PROGRESS_BAR`` is set to ``none``.
 
2273
  (Martin Pool, #339385)
 
2274
 
 
2275
* Reduced memory consumption during ``bzr commit`` of large files. For
 
2276
  pre 2a formats, should be down to ~3x the size of a file.
 
2277
  For ``--2a`` format repositories, it is down to the size of the file
 
2278
  content plus the size of the compressed text.  Related to bug #109114.
 
2279
  (John Arbash Meinel)
 
2280
 
 
2281
* Set hidden attribute on .bzr directory below unicode path should never
 
2282
  fail with error. The operation should succeed even if bzr unable to set 
 
2283
  the attribute.  (Alexander Belchenko, related to bug #335362).
 
2284
  
 
2285
* Stacking will no longer accept requests to stack on the same
 
2286
  branch/repository. Existing branches that incorrectly reference the same
 
2287
  repository in a stacking configuration will now raise
 
2288
  UnstackableLocationError when the branch is opened. This can be fixed by
 
2289
  removing the stacking location inside ``.bzr/branch``.
 
2290
  (Robert Collins, #376243)
 
2291
 
 
2292
* The ``log+`` decorator, useful in debugging or profiling, could cause
 
2293
  "AttributeError: 'list' object has no attribute 'next'".  This is now
 
2294
  fixed.  The log decorator no longer shows the elapsed time or transfer
 
2295
  rate because they're available in the log prefixes and the transport
 
2296
  activity display respectively.
 
2297
  (Martin Pool, #340347)
 
2298
 
 
2299
* Unshelve works correctly when multiple zero-length files are present on
 
2300
  the shelf. (Aaron Bentley, #363444)
 
2301
 
 
2302
* Progress bars no longer show the network transport scheme or direction.
 
2303
  (Martin Pool)
 
2304
 
 
2305
* launchpad-login now respects the 'verbose' option.
 
2306
  (Jonathan Lange, #217031)
 
2307
 
 
2308
 
 
2309
Internals
 
2310
*********
 
2311
 
 
2312
* ``bzrlib.user_encoding`` is now officially deprecated. It is not
 
2313
  possible to write a deprecation wrapper, but the variable will be
 
2314
  removed in the near future. Use ``bzrlib.osutils.get_user_encoding()``
 
2315
  instead. (Alexander Belchenko)
 
2316
 
 
2317
* Command lookup has had hooks added. ``bzrlib.Command.hooks`` has
 
2318
  three new hook points: ``get_command``, ``get_missing_command`` and
 
2319
  ``list_commands``, which allow just-in-time command name provision
 
2320
  rather than requiring all command names be known a-priori.
 
2321
  (Robert Collins)
 
2322
 
 
2323
* ``get_app_path`` from win32utils.py now supports REG_EXPAND_SZ data type
 
2324
  and can read path to wordpad.exe. (Alexander Belchenko, #392046)
 
2325
 
 
2326
* ``graph.KnownGraph`` has been added. This is a class that can give
 
2327
  answers to ``heads()`` very quickly. However, it has the assumption that
 
2328
  the whole graph has already been loaded. This is true during
 
2329
  ``annotate`` so it is used there with good success (as much as 2x faster
 
2330
  for files with long ancestry and 'cherrypicked' changes.)
 
2331
  (John Arbash Meinel, Vincent Ladeuil)
 
2332
 
 
2333
* OS file locks are now taken out using ``CreateFile`` rather than
 
2334
  ``LockFileEx`` on Windows. The locking remains exclusive with
 
2335
  ``LockFileEx`` but now it also works on older versions of Windows (such
 
2336
  as Win98). (Martin <gzlist>)
 
2337
 
 
2338
* pack <=> pack fetching is now done via a ``PackStreamSource`` rather
 
2339
  than the ``Packer`` code. The user visible change is that we now
 
2340
  properly fetch the minimum number of texts for non-smart fetching.
 
2341
  (John Arbash Meinel)
 
2342
 
 
2343
 
 
2344
* ``VersionedFiles._add_text`` is a new api that lets us insert text into
 
2345
  the repository as a single string, rather than a list of lines. This can
 
2346
  improve memory overhead and performance of committing large files.
 
2347
  (Currently a private api, used only by commit). (John Arbash Meinel)
 
2348
 
 
2349
 
 
2350
Improvements
 
2351
************
 
2352
 
 
2353
* ``bzr annotate`` can now be significantly faster. The time for
 
2354
  ``bzr annotate NEWS`` is down to 7s from 22s in 1.16. Files with long
 
2355
  histories and lots of 'duplicate insertions' will be improved more than
 
2356
  others. (John Arbash Meinel, Vincent Ladeuil)
 
2357
 
 
2358
* ``bzr ls`` is now faster. On OpenOffice.org, the time drops from 2.4
 
2359
  to 1.1 seconds. The improvement for ``bzr ls -r-1`` is more
 
2360
  substantial dropping from 54.3 to 1.1 seconds. (Ian Clatworthy)
 
2361
 
 
2362
* Improve "Path(s) are not versioned" error reporting for some commands.
 
2363
  (Benoît PIERRE)
 
2364
 
 
2365
* Initial commit performance in ``--2a`` repositories has been improved by
 
2366
  making it cheaper to build the initial CHKMap. (John Arbash Meinel)
 
2367
 
 
2368
* Resolving a revno to a revision id on a branch accessed via ``bzr://``
 
2369
  or ``bzr+ssh://`` is now much faster and involves no VFS operations.
 
2370
  This speeds up commands like ``bzr pull -r 123``.  (Andrew Bennetts)
 
2371
 
 
2372
* ``revision-info`` now properly aligns the revnos/revids in the output
 
2373
  and doesn't traceback when given revisions not in the current branch.
 
2374
  Performance is also significantly improved when requesting multiple revs
 
2375
  at once.  (Matthew Fuller, John Arbash Meinel)
 
2376
 
 
2377
* Tildes are no longer escaped by Transports. (Andy Kilner)
 
2378
 
 
2379
 
 
2380
Documentation
 
2381
*************
 
2382
 
 
2383
* Avoid bad text wrapping in generated documentation.  Slightly better
 
2384
  formatting in the user reference.
 
2385
  (Martin Pool, #249908)
 
2386
 
 
2387
* Minor clarifications to the help for End-Of-Line conversions.
 
2388
  (Ian Clatworthy)
 
2389
 
 
2390
API Changes
 
2391
***********
 
2392
 
 
2393
* Removed overspecific error class ``InvalidProgressBarType``.
 
2394
  (Martin Pool)
 
2395
 
 
2396
* The method ``ProgressView._show_transport_activity`` is now
 
2397
  ``show_transport_activity`` because it's part of the contract between
 
2398
  this class and the UI.  (Martin Pool)
 
2399
 
 
2400
 
 
2401
bzr 1.16.1
 
2402
##########
 
2403
 
 
2404
:Released: 2009-06-26
 
2405
 
 
2406
End user testing of the 2a format revealed two serious bugs. The first,
 
2407
#365615, caused bzr to raise AbsentContentFactory errors when autopacking.
 
2408
This meant that commits or pushes to 2a-format repositories failed
 
2409
intermittently.
 
2410
 
 
2411
The second bug, #390563, caused the smart server to raise AbsentContentFactory
 
2412
when streaming 2a stacked 2a-format branches. This particularly affected
 
2413
branches stored on Launchpad in the 2a format.
 
2414
 
 
2415
Both of these bugs cause command failures only, neither of them cause data
 
2416
corruption or data loss. And, of course, both of these bugs are now fixed.
 
2417
 
 
2418
Bug Fixes
 
2419
*********
 
2420
 
 
2421
* We now properly request a more minimal set of file texts when fetching
 
2422
  multiple revisions. (Robert Collins, John Arbash Meinel, #390563)
 
2423
 
 
2424
* Repositories using CHK pages (which includes the new 2a format) will no
 
2425
  longer error during commit or push operations when an autopack operation
 
2426
  is triggered. (Robert Collins, #365615)
 
2427
 
 
2428
* ``chk_map.iter_interesting_nodes`` now properly uses the *intersection*
 
2429
  of referenced nodes rather than the *union* to determine what
 
2430
  uninteresting pages we still need to look at. Prior to this,
 
2431
  incrementally pushing to stacked branch would push the minimal data, but
 
2432
  fetching everything would request extra texts. There are some unhandled
 
2433
  cases wrt trees of different depths, but this fixes the common cases.
 
2434
  (Robert Collins, John Arbash Meinel, #390563)
 
2435
 
 
2436
* ``GroupCompress`` repositories now take advantage of the pack hints
 
2437
  parameter to permit cross-format fetching to incrementally pack the
 
2438
  converted data. (Robert Collins)
 
2439
 
 
2440
* ``Repository.commit_write_group`` now returns opaque data about what
 
2441
  was committed, for passing to the ``Repository.pack``. Repositories
 
2442
  without atomic commits will still return None. (Robert Collins)
 
2443
 
 
2444
* ``Repository.pack`` now takes an optional ``hint`` parameter
 
2445
  which will support doing partial packs for repositories that can do
 
2446
  that. (Robert Collins)
 
2447
 
 
2448
* RepositoryFormat has a new attribute 'pack_compresses' which is True
 
2449
  when doing a pack operation changes the compression of content in the
 
2450
  repository. (Robert Collins)
 
2451
 
 
2452
* ``StreamSink`` and ``InterDifferingSerialiser`` will call
 
2453
  ``Repository.pack`` with the hint returned by
 
2454
  ``Repository.commit_write_group`` if the formats were different and the
 
2455
  repository can increase compression by doing a pack operation.
 
2456
  (Robert Collins, #376748)
 
2457
 
 
2458
 
 
2459
bzr 1.16
 
2460
########
 
2461
:Codename: yesterday-in-california
 
2462
:1.16rc1: 2009-06-11
 
2463
:1.16: 2009-06-18
 
2464
 
 
2465
This version of Bazaar contains the beta release of the new ``2a`` repository
 
2466
format, suitable for testing by fearless, advanced users. This format or an
 
2467
updated version of it will become the default format in Bazaar 2.0. Please
 
2468
read the NEWS entry before even thinking about upgrading to the new format.
 
2469
 
 
2470
Also included are speedups for many operations on huge projects, a bug fix for
 
2471
pushing stacked new stacked branches to smart servers and the usual bevy of
 
2472
bug fixes and improvements.
 
2473
 
 
2474
 
 
2475
Changes from 1.16rc1 to 1.16final
 
2476
*********************************
 
2477
 
 
2478
* Fix the nested tree flag check so that upgrade from development formats to
 
2479
  2a can work correctly.
 
2480
  (Jelmer Vernooij, #388727)
 
2481
 
 
2482
* Automatic format upgrades triggered by default stacking policies on a
 
2483
  1.16rc1 (or later) smart server work again.
 
2484
  (Andrew Bennetts, #388675)
 
2485
 
 
2486
 
 
2487
Compatibility Breaks
 
2488
********************
 
2489
 
 
2490
* Display prompt on stderr (instead of stdout) when querying users so
 
2491
  that the output of commands can be safely redirected.
 
2492
  (Vincent Ladeuil, #376582)
 
2493
 
 
2494
 
 
2495
New Features
 
2496
************
 
2497
 
 
2498
* A new repository format ``2a`` has been added.  This is a beta release
 
2499
  of the brisbane-core (aka group-compress) project.  This format now
 
2500
  suitable for wider testing by advanced users willing to deal with some
 
2501
  bugs.  We would appreciate test reports, either positive or negative.
 
2502
  Format 2a is substantially smaller and faster for many operations on
 
2503
  many trees.  This format or an updated version will become the default
 
2504
  in bzr 2.0.
 
2505
 
 
2506
  This is a rich-root format, so this repository format can be used with
 
2507
  bzr-svn.  Bazaar branches in previous non-rich-root formats can be
 
2508
  converted (including by merge, push and pull) to format 2a, but not vice
 
2509
  versa.  We recommend upgrading previous development formats to 2a.
 
2510
 
 
2511
  Upgrading to this format can take considerable time because it expands
 
2512
  and more concisely repacks the full history.
 
2513
 
 
2514
  If you use stacked branches, you must upgrade the stacked branches
 
2515
  before the stacked-on branches.  (See <https://bugs.launchpad.net/bugs/374735>)
 
2516
 
 
2517
* ``--development7-rich-root`` is a new dev format, similar to ``--dev6``
 
2518
  but using a Revision serializer using bencode rather than XML.
 
2519
  (Jelmer Vernooij, John Arbash Meinel)
 
2520
 
 
2521
* mail_client=claws now supports --body (and message body hooks).  Also uses
 
2522
  configured from address.  (Barry Warsaw)
 
2523
 
 
2524
Improvements
 
2525
************
 
2526
 
 
2527
 
 
2528
* ``--development6-rich-root`` can now stack. (Modulo some smart-server
 
2529
  bugs with stacking and non default formats.)
 
2530
  (John Arbash Meinel, #373455)
 
2531
 
 
2532
* ``--development6-rich-root`` delays generating a delta index for the
 
2533
  first object inserted into a group. This has a beneficial impact on
 
2534
  ``bzr commit`` since each committed texts goes to its own group. For
 
2535
  committing a 90MB file, it drops peak memory by about 200MB, and speeds
 
2536
  up commit from 7s => 4s. (John Arbash Meinel)
 
2537
 
 
2538
* Numerous operations are now faster for huge projects, i.e. those
 
2539
  with a large number of files and/or a large number of revisions,
 
2540
  particularly when the latest development format is used. These
 
2541
  operations (and improvements on OpenOffice.org) include:
 
2542
 
 
2543
  * branch in a shared repository (2X faster)
 
2544
  * branch --no-tree (100X faster)
 
2545
  * diff (2X faster)
 
2546
  * tags (70X faster)
 
2547
 
 
2548
  (Ian Clatworthy)
 
2549
 
 
2550
* Pyrex version of ``bencode`` support. This provides optimized support
 
2551
  for both encoding and decoding, and is now found at ``bzrlib.bencode``.
 
2552
  ``bzrlib.utils.bencode`` is now deprecated.
 
2553
  (Alexander Belchenko, Jelmer Vernooij, John Arbash Meinel)
 
2554
 
 
2555
 
 
2556
Bug Fixes
 
2557
*********
 
2558
 
 
2559
* Bazaar can now pass attachment files to the mutt email client.
 
2560
  (Edwin Grubbs, #384158)
 
2561
 
 
2562
* Better message in ``bzr add`` output suggesting using ``bzr ignored`` to
 
2563
  see which files can also be added.  (Jason Spashett, #76616)
 
2564
 
 
2565
* ``bzr pull -r 123`` from a stacked branch on a smart server no longer fails.
 
2566
  Also, the ``Branch.revision_history()`` API now works in the same
 
2567
  situation.  (Andrew Bennetts, #380314)
 
2568
  
 
2569
* ``bzr serve`` on Windows no longer displays a traceback simply because a
 
2570
  TCP client disconnected. (Andrew Bennetts)
 
2571
 
 
2572
* Clarify the rules for locking and fallback repositories. Fix bugs in how
 
2573
  ``RemoteRepository`` was handling fallbacks along with the
 
2574
  ``_real_repository``. (Andrew Bennetts, John Arbash Meinel, #375496)
 
2575
 
 
2576
* Fix a small bug with fetching revisions w/ ghosts into a new stacked
 
2577
  branch. Not often triggered, because it required ghosts to be part of
 
2578
  the fetched revisions, not in the stacked-on ancestry.
 
2579
  (John Arbash Meinel)
 
2580
 
 
2581
* Fix status and commit to work with content filtered trees, addressing
 
2582
  numerous bad bugs with line-ending support. (Ian Clatworthy, #362030)
 
2583
 
 
2584
* Fix problem of "directory not empty" when contending for a lock over
 
2585
  sftp.  (Martin Pool, #340352)
 
2586
 
 
2587
* Fix rule handling so that eol is optional, not mandatory.
 
2588
  (Ian Clatworthy, #379370)
 
2589
 
 
2590
* Pushing a new stacked branch to a 1.15 smart server was broken due to a
 
2591
  bug in the ``BzrDirFormat.initialize_ex`` smart verb.  This is fixed in
 
2592
  1.16, but required changes to the network protocol, so the
 
2593
  ``BzrDirFormat.initialize_ex`` verb has been removed and replaced with a
 
2594
  corrected ``BzrDirFormat.initialize_ex_1.16`` verb.  1.15 clients will
 
2595
  still work with a 1.16 server as they will fallback to slower (and
 
2596
  bug-free) methods.
 
2597
  (Jonathan Lange, Robert Collins, Andrew Bennetts, #385132)
 
2598
 
 
2599
* Reconcile can now deal with text revisions that originated in revisions 
 
2600
  that are ghosts. (Jelmer Vernooij, #336749)
 
2601
 
 
2602
* Support cloning of branches with ghosts in the left hand side history.
 
2603
  (Jelmer Vernooij, #248540)
 
2604
 
 
2605
* The ''bzr diff'' now catches OSError from osutils.rmtree and logs a
 
2606
  helpful message to the trace file, unless the temp directory really was
 
2607
  removed (which would be very strange).  Since the diff operation has
 
2608
  succeeded from the user's perspective, no output is written to stderr 
 
2609
  or stdout.  (Maritza Mendez, #363837)
 
2610
 
 
2611
* Translate errors received from a smart server in response to a
 
2612
  ``BzrDirFormat.initialize`` or ``BzrDirFormat.initialize_ex`` request.
 
2613
  This was causing tracebacks even for mundane errors like
 
2614
  ``PermissionDenied``.  (Andrew Bennetts, #381329)
 
2615
 
 
2616
Documentation
 
2617
*************
 
2618
 
 
2619
* Added directory structure and started translation of docs in Russian.
 
2620
  (Alexey Shtokalo, Alexander Iljin, Alexander Belchenko, Dmitry Vasiliev,
 
2621
  Volodymyr Kotulskyi)
 
2622
 
 
2623
API Changes
 
2624
***********
 
2625
 
 
2626
* Added osutils.parent_directories(). (Ian Clatworthy)
 
2627
 
 
2628
* ``bzrlib.progress.ProgressBar``, ``ChildProgress``, ``DotsProgressBar``,
 
2629
  ``TTYProgressBar`` and ``child_progress`` are now deprecated; use
 
2630
  ``ui_factory.nested_progress_bar`` instead.  (Martin Pool)
 
2631
 
 
2632
* ``graph.StackedParentsProvider`` is now a public API, replacing
 
2633
  ``graph._StackedParentsProvider``. The api is now considered stable and ready
 
2634
  for external users. (Gary van der Merwe)
 
2635
 
 
2636
* ``bzrlib.user_encoding`` is deprecated in favor of
 
2637
  ``get_user_encoding``.  (Alexander Belchenko)
 
2638
 
 
2639
* TreeTransformBase no longer assumes that limbo is provided via disk.
 
2640
  DiskTreeTransform now provides disk functionality.  (Aaron Bentley)
 
2641
 
 
2642
Internals
 
2643
*********
 
2644
 
 
2645
* Remove ``weave.py`` script for accessing internals of old weave-format
 
2646
  repositories.  (Martin Pool)
 
2647
 
 
2648
Testing
 
2649
*******
 
2650
 
 
2651
* ``make check`` no longer repeats the test run in ``LANG=C``.
 
2652
  (Martin Pool, #386180)
 
2653
 
 
2654
* The number of cores is now correctly detected on OSX. (John Szakmeister)
 
2655
 
 
2656
* The number of cores is also detected on Solaris and win32. (Vincent Ladeuil)
 
2657
 
 
2658
* The number of cores is also detected on FreeBSD. (Matthew Fuller)
 
2659
 
 
2660
 
 
2661
bzr 1.15
 
2662
########
 
2663
:1.15rc1: 2009-05-16
 
2664
:1.15: 2009-05-22
 
2665
:1.15.1: 2009-06-09
 
2666
 
 
2667
The smart server will no longer raise 'NoSuchRevision' when streaming content
 
2668
with a size mismatch in a reconstructed graph search. New command ``bzr
 
2669
dpush``. Plugins can now define their own annotation tie-breaker when two
 
2670
revisions introduce the exact same line.
 
2671
 
 
2672
Changes from 1.15.1 to 1.15.2
 
2673
*****************************
 
2674
 
 
2675
* Use zdll on Windows to build ``_chk_map_pyx`` extension.
 
2676
  (Alexander Belchenko)
 
2677
 
 
2678
Changes from 1.15final to 1.15.1
 
2679
*********************************
 
2680
 
 
2681
* Translate errors received from a smart server in response to a
 
2682
  ``BzrDirFormat.initialize`` or ``BzrDirFormat.initialize_ex`` request.
 
2683
  This was causing tracebacks even for mundane errors like
 
2684
  ``PermissionDenied``.  (Andrew Bennetts, #381329)
 
2685
 
 
2686
Changes from 1.15rc1 to 1.15final
 
2687
*********************************
 
2688
 
 
2689
* No changes
 
2690
 
 
2691
Compatibility Breaks
 
2692
********************
 
2693
 
 
2694
* ``bzr ls`` is no longer recursive by default. To recurse, use the
 
2695
  new ``-R`` option. The old ``--non-recursive`` option has been removed.
 
2696
  If you alias ``ls`` to ``ls -R``, you can disable recursion using
 
2697
  ``--no-recursive`` instead.  (Ian Clatworthy)
 
2698
 
 
2699
New Features
 
2700
************
 
2701
 
 
2702
* New command ``bzr dpush`` that can push changes to foreign 
 
2703
  branches (svn, git) without setting custom bzr-specific metadata.
 
2704
  (Jelmer Vernooij)
 
2705
 
 
2706
* The new development format ``--development6-rich-root`` now supports
 
2707
  stacking. We chose not to use a new format marker, since old clients
 
2708
  will just fail to open stacked branches, the same as if we used a new
 
2709
  format flag. (John Arbash Meinel, #373455)
 
2710
 
 
2711
* Plugins can now define their own annotation tie-breaker when two revisions
 
2712
  introduce the exact same line. See ``bzrlib.annotate._break_annotation_tie``
 
2713
  Be aware though that this is temporary, private (as indicated by the leading
 
2714
  '_') and a first step to address the problem. (Vincent Ladeuil, #348459)
 
2715
 
 
2716
* New command ``bzr dpush`` that can push changes to foreign 
 
2717
  branches (svn, git) without setting custom bzr-specific metadata.
 
2718
  (Jelmer Vernooij)
 
2719
 
 
2720
* ``bzr send`` will now check the ``child_submit_format`` setting in
 
2721
  the submit branch to determine what format to use, if none was 
 
2722
  specified on the command-line.  (Jelmer Vernooij)
 
2723
 
 
2724
Improvements
 
2725
************
 
2726
 
 
2727
* -Dhpss output now includes the number of VFS calls made to the remote
 
2728
  server. (Jonathan Lange)
 
2729
 
 
2730
* ``--coverage`` works for code running in threads too.
 
2731
  (Andrew Bennets, Vincent Ladeuil)
 
2732
 
 
2733
* ``bzr pull`` now has a ``--local`` option to only make changes to the
 
2734
  local branch, and not the bound master branch.
 
2735
  (Gary van der Merwe, #194716)
 
2736
 
 
2737
* ``bzr rm *`` is now as fast as ``bzr rm * --keep``. (Johan Walles, #180116)
 
2738
 
 
2739
Bug Fixes
 
2740
*********
 
2741
 
 
2742
* Adding now works properly when path contains a symbolic link.
 
2743
  (Geoff Bache, #183831)
 
2744
 
 
2745
* An error is now raised for unknown eol values. (Brian de Alwis, #358199)
 
2746
 
 
2747
* ``bzr merge --weave`` will now generate a conflict if one side deletes a
 
2748
  line, and the other side modifies the line. (John Arbash Meinel, #328171)
 
2749
 
 
2750
* ``bzr reconfigure --standalone`` no longer raises IncompatibleRepositories.
 
2751
  (Martin von Gagern, #248932)
 
2752
 
 
2753
* ``bzr send`` works to send emails again using MAPI.
 
2754
  (Neil Martinsen-Burrell, #346998)
 
2755
 
 
2756
* Check for missing parent inventories in StreamSink.  This prevents
 
2757
  incomplete stacked branches being created by 1.13 bzr:// and
 
2758
  bzr+ssh:// clients (which have bug #354036).  Instead, the server now
 
2759
  causes those clients to send the missing records.  (Andrew Bennetts)
 
2760
 
 
2761
* Correctly handle http servers proposing multiple authentication schemes.
 
2762
  (Vincent Ladeuil, #366107)
 
2763
 
 
2764
* End-Of-Line content filters are now loaded correctly.
 
2765
  (Ian Clatworthy, Brian de Alwis, #355280)
 
2766
 
 
2767
* Fix a bug in the pure-python ``GroupCompress`` code when handling copies
 
2768
  longer than 64KiB. (John Arbash Meinel, #364900)
 
2769
 
 
2770
* Fix TypeError in running ``bzr break-lock`` on some URLs.
 
2771
  (Alexander Belchenko, Martin Pool, #365891)
 
2772
 
 
2773
* Non-recursive ``bzr ls`` now works properly when a path is specified.
 
2774
  (Jelmer Vernooij, #357863)
 
2775
 
 
2776
* ssh usernames (defined in ~/.ssh/config) are honoured for bzr+ssh connections.
 
2777
  (Vincent Ladeuil, #367726)
 
2778
 
 
2779
* Several bugs related to unicode symlinks have been fixed and the test suite
 
2780
  enhanced to better catch regressions for them. (Vincent Ladeuil)
 
2781
 
 
2782
* The smart server will no longer raise 'NoSuchRevision' when streaming
 
2783
  content with a size mismatch in a reconstructed graph search: it assumes
 
2784
  that the client will make sure it is happy with what it got, and this
 
2785
  sort of mismatch is normal for stacked environments.
 
2786
  bzr 1.13.0/1 will stream from unstacked branches only - in that case not
 
2787
  getting all the content expected would be a bug. However the graph
 
2788
  search is how we figured out what we wanted, so a mismatch is both odd
 
2789
  and unrecoverable without starting over, and starting over will end up
 
2790
  with the same data as if we just permitted the mismatch. If data is
 
2791
  gc'd, doing a new search will find only the truncated data, so sending
 
2792
  only the truncated data seems reasonable. bzr versions newer than this
 
2793
  will stream from stacked branches and check the stream to find missing
 
2794
  content in the stacked-on branch, and thus will handle the situation
 
2795
  implicitly.  (Robert Collins, #360791)
 
2796
 
 
2797
* Upgrading to, or fetching into a 'rich-root' format will now correctly
 
2798
  set the root data the same way that reconcile does.
 
2799
  (Robert Collins, #368921)
 
2800
 
 
2801
* Using unicode Windows API to obtain command-line arguments.
 
2802
  (Alexander Belchenko, #375934)
 
2803
 
 
2804
Documentation
 
2805
*************
 
2806
 
 
2807
API Changes
 
2808
***********
 
2809
 
 
2810
* ``InterPackRepo.fetch`` and ``RepoFetcher`` now raise ``NoSuchRevision``
 
2811
  instead of ``InstallFailed`` when they detect a missing revision.
 
2812
  ``InstallFailed`` itself has been deleted. (Jonathan Lange)
 
2813
 
 
2814
* Not passing arguments to ``bzrlib.commands.main()`` will now grab the
 
2815
  arguments from ``osutils.get_unicode_argv()`` which has proper support
 
2816
  for unicode arguments on windows. Further, the supplied arguments are now 
 
2817
  required to be unicode strings, rather than user_encoded strings.
 
2818
  (Alexander Belchenko)
 
2819
 
 
2820
Internals
 
2821
*********
 
2822
 
 
2823
* ``bzrlib.branch.Branch.set_parent`` is now present on the base branch
 
2824
  class and will call ``_set_parent_location`` after doing unicode 
 
2825
  encoding. (Robert Collins)
 
2826
 
 
2827
* ``bzrlib.remote.RemoteBranch._set_parent_location`` will use a new verb
 
2828
  ``Branch.set_parent_location`` removing further VFS operations.
 
2829
  (Robert Collins)
 
2830
 
 
2831
* ``bzrlib.bzrdir.BzrDir._get_config`` now returns a ``TransportConfig``
 
2832
  or similar when the dir supports configuration settings. The base class
 
2833
  defaults to None. There is a matching new server verb
 
2834
  ``BzrDir.get-config_file`` to reduce roundtrips for getting BzrDir
 
2835
  configuration. (Robert Collins)
 
2836
 
 
2837
* ``bzrlib.tests.ExtendedTestResult`` has new methods ``startTests``
 
2838
  called before the first test is started, ``done`` called after the last
 
2839
  test completes, and a new parameter ``strict``. (Robert Collins)
 
2840
 
 
2841
* ``-Dhpss`` when passed to bzr will cause a backtrace to be printed when
 
2842
  VFS operations are started on a smart server repository. This should not
 
2843
  occur on regular push and pull operations, and is a key indicator for
 
2844
  performance regressions. (Robert Collins)
 
2845
 
 
2846
* ``-Dlock`` when passed to the selftest (e.g. ``bzr -Dlock selftest``) will
 
2847
  cause mismatched physical locks to cause test errors rather than just
 
2848
  reporting to the screen. (Robert Collins)
 
2849
 
 
2850
* -Dprogress will cause pdb to start up if a progress view jumps
 
2851
  backwards. (Robert Collins)
 
2852
 
 
2853
* Fallback ``CredentialStore`` instances registered with ``fallback=True``
 
2854
  are now be able to provide credentials if obtaining credentials 
 
2855
  via ~/.bazaar/authentication.conf fails. (Jelmer Vernooij, 
 
2856
  Vincent Ladeuil, #321918)
 
2857
 
 
2858
* New hook ``Lock.lock_broken`` which runs when a lock is
 
2859
  broken. This is mainly for testing that lock/unlock are
 
2860
  balanced in tests. (Vincent Ladeuil)
 
2861
 
 
2862
* New MergeDirective hook 'merge_request_body' allows hooks to supply or
 
2863
  alter a body for the message produced by ``bzr send``.
 
2864
 
 
2865
* New smart server verb ``BzrDir.initialize_ex`` which implements a
 
2866
  refactoring to the core of clone allowing less round trips on new
 
2867
  branches. (Robert Collins)
 
2868
 
 
2869
* New method ``Tags.rename_revisions`` that can rename revision ids tags
 
2870
  are pointing at. (Jelmer Vernooij)
 
2871
 
 
2872
* Updated the bundled ``ConfigObj`` library to 4.6.0 (Matt Nordhoff)
 
2873
 
 
2874
Testing
 
2875
*******
 
2876
 
 
2877
* ``bzr selftest`` will now fail if lock/unlock are not correctly balanced in
 
2878
  tests. Using ``-Dlock`` will turn the related failures into warnings.
 
2879
  (Vincent Ladeuil, Robert Collins)
 
2880
 
 
2881
bzr 1.14
 
2882
########
 
2883
:Codename: brisbane-core
 
2884
:1.14rc1: 2009-04-06
 
2885
:1.14rc2: 2009-04-19
 
2886
:1.14: 2009-04-28
 
2887
:1.14.1: 2009-05-01
 
2888
 
 
2889
New formats 1.14 and 1.14-rich-root supporting End-Of-Line (EOL) conversions,
 
2890
keyword templating (via the bzr-keywords plugin) and generic content filtering.
 
2891
End-of-line conversion is now supported for formats supporting content
 
2892
filtering.
 
2893
 
 
2894
Changes from 1.14final to 1.14.1
 
2895
********************************
 
2896
 
 
2897
* Change api_minimum_version back to api_minimum_version = (1, 13, 0)
 
2898
 
 
2899
Changes from 1.14rc2 to 1.14final
 
2900
*********************************
 
2901
 
 
2902
* Fix a bug in the pure-python ``GroupCompress`` code when handling copies
 
2903
  longer than 64KiB. (John Arbash Meinel, #364900)
 
2904
 
 
2905
Changes from 1.14rc1 to 1.14rc2
 
2906
*******************************
 
2907
 
 
2908
* Fix for bug 358037 Revision not in
 
2909
  bzrlib.groupcompress.GroupCompressVersionedFiles (Brian de Alwis, 
 
2910
  John A Meinel)
 
2911
 
 
2912
* Fix for bug 354036 ErrorFromSmartServer - AbsentContentFactory object has no
 
2913
  attribute 'get_bytes_as' exception while pulling from Launchpad 
 
2914
  (Jean-Francois Roy, Andrew Bennetts, Robert Collins)
 
2915
 
 
2916
* Fix for bug 355280 eol content filters are never loaded and thus never
 
2917
  applied (Brian de Alwis, Ian Clatworthy)
 
2918
 
 
2919
* bzr.dev -r4280  Change _fetch_uses_deltas = False for CHK repos until we can
 
2920
  write a better fix. (John Arbash Meinel, Robert Collins)
 
2921
 
 
2922
* Fix for bug 361574 uncommit recommends undefined --levels and -n options
 
2923
  (Marius Kruger, Ian Clatworthy)
 
2924
 
 
2925
* bzr.dev r4289 as cherrypicked at lp:~spiv/bzr/stacking-cherrypick-1.14 
 
2926
  (Andrew Bennetts, Robert Collins)
 
2927
 
 
2928
Compatibility Breaks
 
2929
********************
 
2930
 
 
2931
* A previously disabled code path to accelerate getting configuration
 
2932
  settings from a smart server has been reinstated. We think this *may*
 
2933
  cause a incompatibility with servers older than bzr 0.15. We intend
 
2934
  to issue a point release to address this if it turns out to be a
 
2935
  problem. (Robert Collins, Andrew Bennetts)
 
2936
 
 
2937
* bzr no longer autodetects nested trees as 'tree-references'.  They
 
2938
  must now be explicitly added tree references.  At the commandline, use
 
2939
  join --reference instead of add.  (Aaron Bentley)
 
2940
 
 
2941
* The ``--long`` log format (the default) no longer shows merged
 
2942
  revisions implicitly, making it consistent with the ``short`` and
 
2943
  ``line`` log formats.  To see merged revisions for just a given
 
2944
  revision, use ``bzr log -n0 -rX``. To see every merged revision,
 
2945
  use ``bzr log -n0``.  (Ian Clatworthy)
 
2946
 
 
2947
New Features
 
2948
************
 
2949
 
 
2950
* New formats ``1.14`` and ``1.14-rich-root`` supporting End-Of-Line
 
2951
  (EOL) conversions, keyword templating (via the bzr-keywords plugin)
 
2952
  and generic content filtering. These formats replace the experimental
 
2953
  ``development-wt5`` and ``development-wt5-rich-root`` formats
 
2954
  respectively, but have support for filtered views disabled.
 
2955
  (Ian Clatworthy)
 
2956
 
 
2957
* New ``mv --auto`` option recognizes renames after they occur.
 
2958
  (Aaron Bentley)
 
2959
 
 
2960
* ``bzr`` can now get passwords from stdin without requiring a controlling
 
2961
  terminal (i.e. by redirecting stdin). (Vincent Ladeuil)
 
2962
 
 
2963
* ``bzr log`` now supports filtering of multiple files and directories
 
2964
  and will show changes that touch any of them. Furthermore,
 
2965
  directory filtering now shows the changes to any children of that
 
2966
  directory, not just the directory object itself.
 
2967
  (Ian Clatworthy, #97715)
 
2968
 
 
2969
* ``bzr shelve`` can now apply changes without storing anything on the
 
2970
  shelf, via the new --destroy option.  (Aaron Bentley)
 
2971
 
 
2972
* ``bzr send`` now accepts --body to specify an initial message body.
 
2973
  (Aaron bentley)
 
2974
 
 
2975
* ``bzr xxx --usage`` where xxx is a command now shows a usage
 
2976
  message and the options without the descriptive help sections
 
2977
  (like Description and Examples). A message is also given
 
2978
  explaining how to see the complete help, i.e. ``bzr help xxx``.
 
2979
  (Ian Clatworthy)
 
2980
 
 
2981
* Content filters can now be used to provide custom conversion
 
2982
  between the canonical format of content (i.e. as stored) and
 
2983
  the convenience format of content (i.e. as created in working
 
2984
  trees). See ``bzr help content-filters`` for further details.
 
2985
  (Ian Clatworthy, Alexander Belchenko)
 
2986
 
 
2987
* End-of-line conversion is now supported for formats supporting
 
2988
  content filtering. See ``bzr help eol`` for details.
 
2989
  (Ian Clatworthy)
 
2990
 
 
2991
* Newly-blessed `join` command allows combining two trees into one.
 
2992
  (Aaron Bentley)
 
2993
 
 
2994
Improvements
 
2995
************
 
2996
 
 
2997
* A new format name alias ``default-rich-root`` has been added and
 
2998
  points at the closest relative of the default format that supports 
 
2999
  rich roots. (Jelmer Vernooij, #338061)
 
3000
 
 
3001
* Branching from a stacked branch using ``bzr*://`` will now stream
 
3002
  the data when the target repository does not need topological
 
3003
  ordering, reducing round trips and network overhead. This uses the
 
3004
  existing smart server methods added in 1.13, so will work on any
 
3005
  1.13 or newer server. (Robert Collins, Andrew Bennetts)
 
3006
 
 
3007
* ``bzr cat`` and ``bzr export`` now supports a ``--filters`` option
 
3008
  that displays/saves the content after content filters are applied.
 
3009
  (Ian Clatworthy)
 
3010
 
 
3011
* ``bzr ignore`` gives a more informative message when existing
 
3012
  version controlled files match the ignore pattern. (Neil
 
3013
  Martinsen-Burrell, #248895)
 
3014
 
 
3015
* ``bzr log`` now has ``--include-merges`` as an alias for ``--levels 0``.
 
3016
  (Ian Clatworthy)
 
3017
 
 
3018
* ``bzr send`` is faster on repositories with deep histories.
 
3019
  (Ian Clatworthy)
 
3020
 
 
3021
* IPv6 literals are accepted in URLs.
 
3022
  (stlman, Martin Pool, Jelmer Vernooij, #165014)
 
3023
 
 
3024
* Progress bars now show the rate of network activity for
 
3025
  ``bzr+ssh://`` and ``bzr://`` connections.  (Andrew Bennetts)
 
3026
 
 
3027
* Prompt for user names if they are not in the configuration. 
 
3028
  (Jelmer Vernooij, #256612)
 
3029
 
 
3030
* Pushing to a stacked pack-format branch on a 1.12 or older smart server
 
3031
  now takes many less round trips.  (Andrew Bennetts, Robert Collins,
 
3032
  #294479)
 
3033
  
 
3034
* Streaming push can be done to older repository formats.  This is
 
3035
  implemented using a new ``Repository.insert_stream_locked`` RPC.
 
3036
  (Andrew Bennetts, Robert Collins)
 
3037
 
 
3038
* The "ignoring files outside view: .." message has been re-worded
 
3039
  to "Ignoring files outside view. View is .." to reduce confusion
 
3040
  about what was being considered and what was being ignored.
 
3041
  (Ian Clatworthy)
 
3042
 
 
3043
* The ``long`` log formatter now shows [merge] indicators. If
 
3044
  only one level of revisions is displayed and merges are found,
 
3045
  the ``long`` and ``short`` log formatters now tell the user
 
3046
  how to see the hidden merged revisions.  (Ian Clatworthy)
 
3047
 
 
3048
* The ``brisbane-core`` project has delivered its beta format
 
3049
  ``development6-rich-root``. This format is suitable for judicious
 
3050
  testing by early adopters. In particular if you are benchmarking bzr
 
3051
  performance please be sure to test using this format. At this stage
 
3052
  more information is best obtained by contacting the Bazaar mailing list
 
3053
  or IRC channel if you are interested in using this format. We will make
 
3054
  end user documentation available closer to blessing the format as
 
3055
  production ready. (Robert Collins, John Arbash Meinel, Ian Clatworthy,
 
3056
  Vincent Ladeuil, Andrew Bennetts, Martin Pool)
 
3057
 
 
3058
* Tildes are no longer escaped. No more %7Euser/project/branch!
 
3059
  (Jonathan Lange)
 
3060
 
 
3061
Bug Fixes
 
3062
*********
 
3063
 
 
3064
* Pushing a new stacked branch will also push the parent inventories for
 
3065
  revisions at the stacking boundary.  This makes sure that the stacked
 
3066
  branch has enough data to calculate inventory deltas for all of its
 
3067
  revisions (without requiring the fallback branch).  This avoids
 
3068
  "'AbsentContentFactory' object has no attribute 'get_bytes_as'" errors
 
3069
  when fetching the stacked branch from a 1.13 (or later) smart server.
 
3070
  This partially fixes #354036.  (Andrew Bennetts, Robert Collins)
 
3071
 
 
3072
* End-Of-Line content filters are now loaded correctly.
 
3073
  (Ian Clatworthy, Brian de Alwis, #355280)
 
3074
 
 
3075
* Authentication plugins now receive all the parameters from the request
 
3076
  itself (aka host, port, realm, path, etc). Previously, only the 
 
3077
  authentication section name, username and encoded password were 
 
3078
  provided. (Jean-Francois Roy)
 
3079
 
 
3080
* bzr gives a better message if an invalid regexp is passed to ``bzr log
 
3081
  -m``.  (Anne Mohsen, Martin Pool)
 
3082
 
 
3083
* ``bzr split`` now says "See also: join" (Aaron Bentley, #335015)
 
3084
 
 
3085
* ``bzr version-info`` now works in empty branches. (Jelmer Vernooij,
 
3086
  #313028)
 
3087
 
 
3088
* Fix "is not a stackable format" error when pushing a
 
3089
  stackable-format branch with an unstackable-format repository to a
 
3090
  destination with a default stacking policy.  (Andrew Bennetts)
 
3091
 
 
3092
* Fixed incorrect "Source format does not support stacking" warning
 
3093
  when pushing to a smart server.  (Andrew Bennetts, #334114)
 
3094
 
 
3095
* Fix 'make check-dist-tarball' failure by converting paths to unicode when
 
3096
  needed. (Vincent Ladeuil, #355454)
 
3097
 
 
3098
* Fixed "Specified file 'x/y/z' is outside current view: " occurring
 
3099
  on ``bzr add x/y/z`` in formats supporting views when no view is
 
3100
  defined.  (Ian Clatworthy, #344708)
 
3101
 
 
3102
* It is no longer possible to fetch between repositories while the
 
3103
  target repository is in a write group. This prevents race conditions
 
3104
  that prevent the use of RPC's to perform fetch, and thus allows
 
3105
  optimising more operations. (Robert Collins, Andrew Bennetts)
 
3106
 
 
3107
* ``merge --force`` works again. (Robert Collins, #342105)
 
3108
 
 
3109
* No more warnings are issued about ``sha`` being deprecated under python-2.6.
 
3110
  (Vincent Ladeuil, #346593)
 
3111
 
 
3112
* Pushing a new branch to a server that has a stacking policy will now
 
3113
  upgrade from the local branch format when the stacking policy points at
 
3114
  a branch which is itself stackable, because we know the client can read
 
3115
  both branches, we know that the trunk for the project can be read too,
 
3116
  so the upgrade will not inconvenience users. (Robert Collins, #345169)
 
3117
 
 
3118
* Pushing a new stacked branch will also push the parent inventories for
 
3119
  revisions at the stacking boundary.  This makes sure that the stacked
 
3120
  branch has enough data to calculate inventory deltas for all of its
 
3121
  revisions (without requiring the fallback branch).  This avoids
 
3122
  "'AbsentContentFactory' object has no attribute 'get_bytes_as'" errors
 
3123
  when fetching the stacked branch from a 1.13 (or later) smart server.
 
3124
  This partially fixes #354036.  (Andrew Bennetts, Robert Collins)
 
3125
 
 
3126
* The full test suite is passing again on OSX. Several minor issues (mostly
 
3127
  test related) have been fixed. (Vincent Ladeuil, #355273).
 
3128
 
 
3129
* The GNU Changelog formatter is slightly improved in the case where
 
3130
  the delta is empty, and now correctly claims not to support tags.
 
3131
  (Andrea Bolognani)
 
3132
 
 
3133
* Shelve can now shelve changes to a symlink target.
 
3134
  (James Westby, #341558)
 
3135
 
 
3136
* The help for the ``info`` command has been corrected.
 
3137
  (Ian Clatworthy, #351931)
 
3138
 
 
3139
* Upgrade will now use a sensible default format if the source repository
 
3140
  uses rich roots.  (Jelmer Vernooij, #252908)
 
3141
 
 
3142
Documentation
 
3143
*************
 
3144
 
 
3145
* Expanded the index of the developer documentation. (Eric Siegerman)
 
3146
 
 
3147
* New topic `bzr help debug-flags`.  (Martin Pool)
 
3148
 
 
3149
* The generated manpage now explicitly lists aliases as commands.
 
3150
  (James Westby, #336998)
 
3151
 
 
3152
API Changes
 
3153
***********
 
3154
 
 
3155
* APIs deprecated in 1.6 and previous versions of bzr are now removed.
 
3156
  (Martin Pool)
 
3157
 
 
3158
* ``CommitReporter`` is no longer called with ``unchanged`` status during
 
3159
  commit - this was a full-tree overhead that bzr no longer performs.
 
3160
  (Robert Collins)
 
3161
 
 
3162
* New abstract ``UIFactory`` method ``get_username`` which will be called to 
 
3163
  obtain the username to use when connecting to remote machines. 
 
3164
  (Jelmer Vernooij)
 
3165
 
 
3166
* New API ``Inventory.filter()`` added that filters an inventory by
 
3167
  a set of file-ids so that only those fileids, their parents and
 
3168
  their children are included.  (Ian Clatworthy)
 
3169
 
 
3170
* New sort order for ``get_record_stream`` ``groupcompress`` which
 
3171
  sorts optimally for use with groupcompress compressors. (John Arbash
 
3172
  Meinel, Robert Collins)
 
3173
 
 
3174
* Repository APIs ``get_deltas_for_revisions()`` and
 
3175
  ``get_revision_delta()`` now support an optional ``specific_fileids``
 
3176
  parameter. If provided, the deltas are filtered so that only those
 
3177
  file-ids, their parents and their children are included.
 
3178
  (Ian Clatworthy)
 
3179
 
 
3180
* The ``get_credentials`` and ``set_credentials`` methods of 
 
3181
  ``AuthenticationConfig`` now accept an optional realm argument.
 
3182
  (Jean-Francois Roy)
 
3183
 
 
3184
* The ``pb`` argument to ``fetch()`` is deprecated.
 
3185
  (Martin Pool)
 
3186
 
 
3187
* The ``Serializer`` class and the serializer ``format registry`` have moved
 
3188
  from ``bzrlib.xml_serializer`` to ``bzrlib.serializer``. (Jelmer Vernooij)
 
3189
 
 
3190
* The smart server jail now hooks into BzrDir.open to prevent any BzrDir
 
3191
  that is not inside the backing transport from being opened.  See the
 
3192
  module documentation for ``bzrlib.smart.request`` for details.
 
3193
  (Andrew Bennetts, Robert Collins)
 
3194
 
 
3195
* ``Tree.get_symlink_target`` now always returns a unicode string result
 
3196
  or None. Previously it would return the bytes from reading the link
 
3197
  which could be in any arbitrary encoding. (Robert Collins)
 
3198
 
 
3199
Testing
 
3200
*******
 
3201
 
 
3202
* ``bzrlib.tests.TestCase`` now fails the test if its own ``setUp``
 
3203
  and ``tearDown`` weren't called.  This catches faulty tests that
 
3204
  forget to upcall when overriding ``setUp`` and ``tearDown``.  Those
 
3205
  faulty tests were not properly isolated.
 
3206
  (Andrew Bennetts, Robert Collins)
 
3207
 
 
3208
* Fix test_msgeditor.MsgEditorTest test isolation.
 
3209
  (Vincent Ladeuil, #347130)
 
3210
 
 
3211
* ``medusa`` is not used anymore as an FTP test server starting with
 
3212
  python2.6. A new FTP test server based on ``pyftplib`` can be used
 
3213
  instead. This new server is a soft dependency as medusa which is still
 
3214
  preferred if both are available (modulo python version).
 
3215
  (Vincent Ladeuil)
 
3216
 
 
3217
Internals
 
3218
*********
 
3219
 
 
3220
* Added ``chk_map`` for fast, trie-based storage of tuple to string maps.
 
3221
  (Robert Collins, John Arbash Meinel, Vincent Ladeuil)
 
3222
 
 
3223
* Added ``bzrlib.chk_map`` for fast, trie-based storage of tuple to string
 
3224
  maps.  (Robert Collins, John Arbash Meinel, Vincent Ladeuil)
 
3225
 
 
3226
* Added ``bzrlib.inventory_delta`` module.  This will be used for
 
3227
  serializing and deserializing inventory deltas for more efficient
 
3228
  streaming on the network.  (Robert Collins, Andrew Bennetts)
 
3229
 
 
3230
* ``Branch._get_config`` has been added, which splits out access to the
 
3231
  specific config file from the branch. This is used to let RemoteBranch
 
3232
  avoid constructing real branch objects to access configuration settings.
 
3233
  (Robert Collins, Andrew Bennetts)
 
3234
 
 
3235
* ``Branch`` now implements ``set_stacked_on_url`` in the base class as
 
3236
  the implementation is generic and should impact foreign formats. This
 
3237
  helps performance for ``RemoteBranch`` push operations to new stacked
 
3238
  branches. (Robert Collins, Andrew Bennetts)
 
3239
 
 
3240
* ``BtreeIndex._spill_mem_keys_to_disk()`` now generates disk index with
 
3241
  optmizations turned off. This only has effect when processing > 100,000
 
3242
  keys during something like ``bzr pack``. (John Arbash Meinel)
 
3243
 
 
3244
* ``bzr selftest`` now accepts ``--subunit`` to run in subunit output
 
3245
  mode. Requires ``lp:subunit`` installed to work, but is not a hard
 
3246
  dependency. (Robert Collins)
 
3247
 
 
3248
* ``BzrDir.open_branch`` now takes an optional ``ignore_fallbacks``
 
3249
  parameter for controlling opening of stacked branches.
 
3250
  (Andrew Bennetts, Robert Collins)
 
3251
  
 
3252
* ``CommitBuilder`` has a new method, ``record_iter_changes`` which works
 
3253
  in terms of an iter_changes iterator rather than full tree scanning.
 
3254
  (Robert Collins)
 
3255
 
 
3256
* ``DirState`` can now be passed a custom ``SHA1Provider`` object
 
3257
  enabling it to store the SHA1 and stat of the canonical (post
 
3258
  content filtered) form. (Ian Clatworthy)
 
3259
 
 
3260
* New ``assertLength`` method based on one Martin has squirreled away
 
3261
  somewhere. (Robert Collins, Martin Pool)
 
3262
 
 
3263
* New hook ``BzrDir.pre_open`` which runs before opening ``BzrDir``
 
3264
  objects, allowing better enforcement of the smart server jail when
 
3265
  dealing with stacked branches. (Robert Collins, Andrew Bennetts)
 
3266
 
 
3267
* New hook ``RioVersionInfoBuilder.revision``, allowing extra entries 
 
3268
  to be added to the stanza that is printed for a particular revision.
 
3269
  (Jelmer Vernooij)
 
3270
 
 
3271
* New repository method ``refresh_data`` to cause any repository to
 
3272
  make visible data inserted into the repository by a smart server
 
3273
  fetch operation. (Robert Collins, Andrew Bennetts)
 
3274
 
 
3275
* ``register_filter_stack_map`` now takes an optional fallback parameter,
 
3276
  a callable to invoke if a preference has a value not in the map
 
3277
  of filter stacks. This enhancement allows, for example,  bzr-svn to
 
3278
  handle existing svn properties that define a list of keywords to be
 
3279
  expanded.  (Ian Clatworthy)
 
3280
 
 
3281
* ``RemoteBranchConfig`` will use a new verb ``Branch.set_config_option``
 
3282
  to write config settings to smart servers that support this, saving
 
3283
  5 round trips on the stacked streaming acceptance test.
 
3284
  (Robert Collins, Andrew Bennetts)
 
3285
 
 
3286
* ``RemoteBranch`` now provides ``_get_config`` for access to just the
 
3287
  branch specific configuration from a remote server, which uses the 
 
3288
  already existing ``Branch.get_config_file`` smart verb.
 
3289
  (Robert Collins, Andrew Bennetts)
 
3290
 
 
3291
* ``RemoteRepository`` will now negatively cache missing revisions during
 
3292
  ``get_parent_map`` while read-locked. Write-locks are unaffected.
 
3293
  (Robert Collins, Andrew Bennetts)
 
3294
 
 
3295
* Removed ``InterRemoteToOther``, ``InterOtherToRemote`` and
 
3296
  ``InterPackToRemotePack`` classes, as they are now unnecessary.
 
3297
  (Andrew Bennetts)
 
3298
 
 
3299
* ``RepositoryFormat`` as a new attribute ``fast_deltas`` to indicate
 
3300
  whether the repository can efficiently generate deltas between trees
 
3301
  regardless of tree size. (Robert Collins)
 
3302
 
 
3303
* ``Repository.iter_files_bytes()`` now properly returns an "iterable of
 
3304
  byte strings" (aka 'chunked') for the content. It previously was
 
3305
  returning a plain string, which worked, but performed very poorly when
 
3306
  building a working tree (file.writelines(str) is very inefficient). This
 
3307
  can have a large effect on ``bzr checkout`` times. (John Arbash Meinel)
 
3308
 
 
3309
* selftest now supports a --parallel option, with values of 'fork' or
 
3310
  'subprocess' to run the test suite in parallel. Currently only linux
 
3311
  machine work, other platforms need patches submitted. (Robert Collins,
 
3312
  Vincent Ladeuil)
 
3313
 
 
3314
* ``tests.run_suite`` has a new parameter ``suite_decorators``, a list of 
 
3315
  callables to use to decorate the test suite. Such decorators can add or
 
3316
  remove tests, or even remote the test suite to another machine if
 
3317
  desired. (Robert Collins)
 
3318
 
 
3319
* The smart server verb ``Repository.get_parent_map`` can now include
 
3320
  information about ghosts when the special revision ``include-missing:``
 
3321
  is in the requested parents map list. With this flag, ghosts are
 
3322
  included as ``missing:REVISION_ID``. (Robert Collins, Andrew Bennetts)
 
3323
 
 
3324
* ``_walk_to_common_revisions`` will now batch up at least 50
 
3325
  revisions before calling ``get_parent_map`` on the target,
 
3326
  regardless of ``InterRepository``.
 
3327
  (Andrew Bennetts, Robert Collins)
 
3328
 
 
3329
bzr 1.13
 
3330
########
 
3331
 
 
3332
:Codename: paraskavedekatriaphobia
 
3333
:1.13: 2009-03-14
 
3334
:1.13rc1: 2009-03-10
 
3335
:1.13.1: 2009-03-23
 
3336
:1.13.2: 2009-04-27
 
3337
 
 
3338
GNU Changelog output can now be produced by ``bzr log --gnu-changelog``.  Debug
 
3339
flags can now be set in ``~/.bazaar/bazaar.conf``.  Lightweight checkouts and
 
3340
stacked branches should both be much faster over remote connections.  
 
3341
 
 
3342
Changes From 1.13.1 to 1.13.2
 
3343
*****************************
 
3344
 
 
3345
A regression was found in the 1.13.1 release. When bzr 1.13.1 and earlier push
 
3346
a stacked branch they do not take care to push all the parent inventories for
 
3347
the transferred revisions. This means that a smart server serving that branch
 
3348
often cannot calculate inventory deltas for the branch (because smart server
 
3349
does not/cannot open fallback repositories). Prior to 1.13 the server did not
 
3350
have a verb to stream revisions out of a repository, so that's why this bug has
 
3351
appeared now.
 
3352
 
 
3353
Bug Fixes
 
3354
*********
 
3355
 
 
3356
* Fix for bug 354036 ErrorFromSmartServer - AbsentContentFactory object has no
 
3357
  attribute 'get_bytes_as' exception while pulling from Launchpad 
 
3358
  (Jean-Francois Roy, Andrew Bennetts, Robert Collins)
 
3359
 
 
3360
Changes From 1.13final to 1.13.1
 
3361
********************************
 
3362
 
 
3363
A couple regessions where found in the 1.13 release. The pyrex-generated C
 
3364
extensions are missing from the .tar.gz and .zip files.  Documentation on how
 
3365
to generate GNU ChangeLogs is wrong.
 
3366
 
 
3367
Bug Fixes
 
3368
*********
 
3369
 
 
3370
* Change ``./bzr``'s ``_script_version`` to match ./bzrlib/__init__.py
 
3371
  version_info. (Bob Tanner, Martin Pool, #345232)
 
3372
 
 
3373
* Distribution archives for 1.13 do not contain generated C extension modules
 
3374
  (Jean-Francois Roy, Bob Tanner, #344465)
 
3375
 
 
3376
* GNU ChangeLog output can now be produced by bzr log --format gnu-changelog is
 
3377
  incorrect (Deejay, Bob Tanner, Martin Pool, Robert Collins, #343928)
 
3378
 
 
3379
* ``merge --force`` works again. (Robert Collins, #342105)
 
3380
 
 
3381
Changes From 1.13rc1 to 1.13final
 
3382
*********************************
 
3383
 
 
3384
* Fix "is not a stackable format" error when pushing a
 
3385
  stackable-format branch with an unstackable-format repository to a
 
3386
  destination with a default stacking policy.  (Andrew Bennetts)
 
3387
 
 
3388
* Progress bars now show the rate of network activity for
 
3389
  ``bzr+ssh://`` and ``bzr://`` connections.  (Andrew Bennetts)
 
3390
 
 
3391
Compatibility Breaks
 
3392
********************
 
3393
 
 
3394
* ``bzr log --line`` now indicates which revisions are merges with
 
3395
  `[merge]` after the date.  Scripts which parse the output of this
 
3396
  command may need to be adjusted.
 
3397
  (Neil Martinsen-Burrell)
 
3398
 
 
3399
New Features
 
3400
************
 
3401
 
 
3402
* ``bzr reconfigure`` now supports --with-trees and --with-no-trees
 
3403
  options to change the default tree-creation policy of shared
 
3404
  repositories.  (Matthew Fuller, Marius Kruger, #145033)
 
3405
 
 
3406
* Debug flags can now be set in ``~/.bazaar/bazaar.conf``.
 
3407
  (Martin Pool)
 
3408
 
 
3409
* Filtered views provide a mask over the tree so that users can focus
 
3410
  on a subset of a tree when doing their work. See ``Filtered views``
 
3411
  in chapter 7 of the User Guide and ``bzr help view`` for details.
 
3412
  (Ian Clatworthy)
 
3413
 
 
3414
* GNU Changelog output can now be produced by ``bzr log --gnu-changelog``.
 
3415
  (Andrea Bolognani, Martin Pool)
 
3416
 
 
3417
* The ``-Dmemory`` flag now gives memory information on Windows.
 
3418
  (John Arbash Meinel)
 
3419
 
 
3420
* Multiple authors for a commit can now be recorded by using the "--author"
 
3421
  option multiple times. (James Westby, #185772)
 
3422
 
 
3423
* New clean-tree command, from bzrtools.  (Aaron Bentley, Jelmer Vernooij)
 
3424
 
 
3425
* New command ``bzr launchpad-open`` opens a Launchpad web page for that
 
3426
  branch in your web browser, as long as the branch is on Launchpad at all.
 
3427
  (Jonathan Lange)
 
3428
 
 
3429
* New API for getting bugs fixed by a revision: Revision.iter_bugs().
 
3430
  (Jonathan Lange)
 
3431
 
 
3432
Improvements
 
3433
************
 
3434
 
 
3435
* All bzr ``Hooks`` classes are now registered in
 
3436
  ``bzrlib.hooks.known_hooks``. This removes the separate list from
 
3437
  ``bzrlib.tests`` and ensures that all hooks registered there are
 
3438
  correctly isolated by the test suite (previously
 
3439
  ``MutableTreeHooks`` were not being isolated correctly). Further, 
 
3440
  documentation for hooks is now dynamically generated from the
 
3441
  present HookPoints. ``bzr hooks`` will now also report on all the
 
3442
  hooks present in the ``bzrlib.hooks.known_hooks`` registry.
 
3443
  (Robert Collins)
 
3444
 
 
3445
* ``bzr add`` no longer prints ``add completed`` on success. Failure
 
3446
  still prints an error message. (Robert Collins)
 
3447
 
 
3448
* ``bzr branch`` now has a ``--no-tree`` option which turns off the
 
3449
  generation of a working tree in the new branch.
 
3450
  (Daniel Watkins, John Klinger, #273993)
 
3451
 
 
3452
* Bazaar will now point out ``bzr+ssh://`` to the user when they 
 
3453
  use ssh://. (Jelmer Vernooij, #330535)
 
3454
 
 
3455
* ``bzr -v info`` now omits the number of committers branch statistic,
 
3456
  making it many times faster for large projects. To include that
 
3457
  statistic in the output, use ``bzr -vv info``.
 
3458
  (Ian Clatworthy)
 
3459
 
 
3460
* ``bzr push`` to a ``bzr`` url (``bzr://``, ``bzr+ssh://`` etc) will
 
3461
  stream if the server is version 1.13 or greater, reducing roundtrips
 
3462
  significantly. (Andrew Bennetts, Robert Collins)
 
3463
 
 
3464
* Lightweight Checkouts and Stacked Branches should both be much
 
3465
  faster over remote connections. Building the working tree now
 
3466
  batches up requests into approx 5MB requests, rather than a separate
 
3467
  request for each file. (John Arbash Meinel)
 
3468
 
 
3469
* Support for GSSAPI authentication when using HTTP or HTTPS. 
 
3470
  (Jelmer Vernooij)
 
3471
 
 
3472
* The ``bzr shelve`` prompt now includes a '?' help option to explain the
 
3473
  short options better. (Daniel Watkins, #327429)
 
3474
 
 
3475
* ``bzr lp-open`` now falls back to the push location if it cannot find a
 
3476
  public location. (Jonathan Lange, #332372)
 
3477
 
 
3478
* ``bzr lp-open`` will try to find the Launchpad URL for the location
 
3479
  passed on the command line. This makes ``bzr lp-open lp:foo`` work as
 
3480
  expected. (Jonathan Lange, #332705)
 
3481
 
 
3482
* ``bzr send`` now supports MH-E via ``emacsclient``. (Eric Gillespie)
 
3483
 
 
3484
Bug Fixes
 
3485
*********
 
3486
 
 
3487
* Allows ``bzr log <FILE>`` to be called in an empty branch without
 
3488
  backtracing. (Vincent Ladeuil, #346431)
 
3489
 
 
3490
* Bazaar now gives a better message including the filename if it's
 
3491
  unable to read a file in the working directory, for example because
 
3492
  of a permission error.  (Martin Pool, #338653)
 
3493
 
 
3494
* ``bzr cat -r<old> <path>`` doesn't traceback anymore when <path> has a
 
3495
  file id in the working tree different from the one in revision <old>.
 
3496
  (Vincent Ladeuil, #341517, #253806)
 
3497
 
 
3498
* ``bzr send`` help is more specific about how to apply merge
 
3499
  directives.  (Neil Martinsen-Burrell, #253470)
 
3500
 
 
3501
* ``bzr missing`` now uses ``Repository.get_revision_delta()`` rather
 
3502
  than fetching trees and determining a delta itself. (Jelmer
 
3503
  Vernooij, #315048)
 
3504
 
 
3505
* ``bzr push`` to a smart server no longer causes "Revision
 
3506
  {set([('null:',)])} not present ..." errors when the branch has
 
3507
  multiple root revisions. (Andrew Bennetts, #317654)
 
3508
 
 
3509
* ``bzr shelve`` now properly handle patches with no terminating newline.
 
3510
  (Benoît PIERRE, #303569)
 
3511
 
 
3512
* ``bzr unshelve`` gives a more palatable error if passed a non-integer
 
3513
  shelf id. (Daniel Watkins)
 
3514
 
 
3515
* Export now handles files that are not present in the tree.
 
3516
  (James Westby, #174539)
 
3517
 
 
3518
* Fixed incorrect "Source format does not support stacking" warning
 
3519
  when pushing to a smart server.  (Andrew Bennetts, #334114)
 
3520
  
 
3521
* Fixed "sprout() got an unexpected keyword argument 'source_branch'"
 
3522
  error branching from old repositories.
 
3523
  (Martin Pool, #321695)
 
3524
 
 
3525
* Make ``bzr push --quiet <non-local location>`` less chatty.
 
3526
  (Kent Gibson, #221461)
 
3527
 
 
3528
* Many Branch hooks would not fire with ``bzr://`` and ``bzr+ssh://``
 
3529
  branches, and this was not noticed due to a bug in the test logic
 
3530
  for branches. This is now fixed and a test added to prevent it
 
3531
  reoccuring. (Robert Collins, Andrew Bennetts)
 
3532
 
 
3533
* Restore the progress bar on Windows. We were disabling it when TERM
 
3534
  wasn't set, but Windows doesn't set TERM. (Alexander Belchenko,
 
3535
  #334808)
 
3536
 
 
3537
* ``setup.py build_ext`` now gives a proper error when an extension
 
3538
  fails to build. (John Arbash Meinel)
 
3539
 
 
3540
* Symlinks to non ascii file names are now supported.
 
3541
  (Robert Collins, Vincent Ladeuil, #339055, #272444)    
 
3542
 
 
3543
* Under rare circumstances (aka nobody reported a bug about it), the ftp
 
3544
  transport could revert to ascii mode. It now stays in binary mode except
 
3545
  when needed.  (Vincent Ladeuil)
 
3546
 
 
3547
* Unshelve does not generate warnings about progress bars.
 
3548
  (Aaron Bentley, #328148)
 
3549
 
 
3550
* shelve cleans up properly when unversioned files are specified.
 
3551
  (Benoît Pierre, Aaron Bentley)
 
3552
 
 
3553
Documentation
 
3554
*************
 
3555
 
 
3556
* Added ``Organizing your workspace`` to the User Guide appendices,
 
3557
  summarizing some common ways of organizing trees, branches and
 
3558
  repositories and the processes/workflows implied/enabled by each.
 
3559
  (Ian Clatworthy)
 
3560
 
 
3561
* Hooks can now be self documenting. ``bzrlib.hooks.Hooks.create_hook``
 
3562
  is the entry point for this feature. (Robert Collins)
 
3563
 
 
3564
* The documentation for ``shelve`` and ``unshelve`` has been clarified.
 
3565
  (Daniel Watkins, #327421, #327425)
 
3566
 
 
3567
API Changes
 
3568
***********
 
3569
 
 
3570
* ``bzr selftest`` now fails if the bazaar sources contain trailing
 
3571
  whitespace, non-unix style line endings and files not ending in a
 
3572
  newline. About 372 files and 3243 lines with trailing whitespace was
 
3573
  updated to comply with this. The code already complied with the other
 
3574
  criteria, but now it is enforced. (Marius Kruger)
 
3575
 
 
3576
* ``bzrlib.branch.PushResult`` was renamed to 
 
3577
  ``bzrlib.branch.BranchPushResult``. (Jelmer Vernooij)
 
3578
 
 
3579
* ``Branch.fetch`` and ``Repository.fetch`` now return None rather
 
3580
  than a count of copied revisions and failed revisions. A while back
 
3581
  we stopped ever reporting failed revisions because we started
 
3582
  erroring instead, and the copied revisions count is not used in the
 
3583
  UI at all - indeed it only reflects the repository status not
 
3584
  changes to the branch itself. (Robert Collins)
 
3585
 
 
3586
* ``Inventory.apply_delta`` now raises an AssertionError if a file-id
 
3587
  appears multiple times within the delta. (Ian Clatworthy)
 
3588
 
 
3589
* MutableTree.commit now favours the "authors" argument, with the old
 
3590
  "author" argument being deprecated.
 
3591
 
 
3592
* Remove deprecated EmptyTree.  (Martin Pool)
 
3593
 
 
3594
* ``Repository.fetch`` now accepts an optional ``fetch_spec``
 
3595
  parameter.  A ``SearchResult`` or ``MiniSearchResult`` may be passed
 
3596
  to ``fetch_spec`` instead of a ``last_revision`` to specify exactly
 
3597
  which revisions to fetch. (Andrew Bennetts)
 
3598
 
 
3599
* ``RepositoryAcquisitionPolicy.acquire_repository`` now returns a
 
3600
  tuple of ``(repository, is_new_flag)``, rather than just the
 
3601
  repository.  (Andrew Bennetts)
 
3602
 
 
3603
* Revision.get_apparent_author() is now deprecated, replaced by
 
3604
  Revision.get_apparent_authors(), which returns a list. The former
 
3605
  now returns the first item that would be returned from the second.
 
3606
 
 
3607
* The ``BranchBuilder`` test helper now accepts a ``timestamp``
 
3608
  parameter to ``build_commit`` and ``build_snapshot``.  (Martin Pool)
 
3609
 
 
3610
* The ``_fetch_*`` attributes on ``Repository`` are now on
 
3611
  ``RepositoryFormat``, more accurately reflecting their intent (they
 
3612
  describe a disk format capability, not state of a particular
 
3613
  repository of that format). (Robert Collins)
 
3614
 
 
3615
Internals
 
3616
*********
 
3617
 
 
3618
* Branching from a non-stacked branch on a smart protocol is now
 
3619
  free of virtual file system methods.
 
3620
  (Robert Collins, Andrew Bennetts)
 
3621
 
 
3622
* Branch and Repository creation on a bzr+ssh://server are now done
 
3623
  via RPC calls rather than VFS calls, reducing round trips for
 
3624
  pushing new branches substantially. (Robert Collins)
 
3625
 
 
3626
* ``Branch.clone`` now takes the ``repository_policy`` formerly used
 
3627
  inside ``BzrDir.clone_on_transport``, allowing stacking to be
 
3628
  configured before the branch tags and revision tip are set. This
 
3629
  fixes a race condition cloning stacked branches that would cause
 
3630
  plugins to have hooks called on non-stacked instances.
 
3631
  (Robert Collins, #334187)
 
3632
 
 
3633
* ``BzrDir.cloning_metadir`` now has a RPC call. (Robert Collins)
 
3634
 
 
3635
* ``BzrDirFormat.__str__`` now uses the human readable description
 
3636
  rather than the sometimes-absent disk label. (Robert Collins)
 
3637
 
 
3638
* ``bzrlib.fetch`` is now composed of a sender and a sink component
 
3639
  allowing for decoupling over a network connection. Fetching from
 
3640
  or into a RemoteRepository with a 1.13 server will use this to
 
3641
  stream the operation.
 
3642
  (Andrew Bennetts, Robert Collins)
 
3643
 
 
3644
* ``bzrlib.tests.run_suite`` accepts a runner_class parameter
 
3645
  supporting the use of different runners. (Robert Collins)
 
3646
 
 
3647
* Change how file_ids and revision_ids are interned as part of
 
3648
  inventory deserialization. Now we use the real ``intern()``, rather
 
3649
  than our own workaround that would also cache a Unicode copy of the
 
3650
  string, and never emptied the cache. This should slightly reduce
 
3651
  memory consumption. (John Arbash Meinel)
 
3652
 
 
3653
* New branch method ``create_clone_on_transport`` that returns a
 
3654
  branch object. (Robert Collins)
 
3655
 
 
3656
* New hook Commands['extend_command'] to allow plugins to access a
 
3657
  command object before the command is run (or help generated from
 
3658
  it), without overriding the command. (Robert Collins)
 
3659
 
 
3660
* New version of the ``BzrDir.find_repository`` verb supporting
 
3661
  ``_network_name`` to support removing more _ensure_real calls.
 
3662
  (Robert Collins)
 
3663
 
 
3664
* ``RemoteBranchFormat`` no longer claims to have a disk format string.
 
3665
  (Robert Collins)
 
3666
 
 
3667
* ``Repository`` objects now have ``suspend_write_group`` and
 
3668
  ``resume_write_group`` methods.  These are currently only useful
 
3669
  with pack repositories. (Andrew Bennetts, Robert Collins)
 
3670
 
 
3671
* ``BzrDirFormat``, ``BranchFormat`` and ``RepositoryFormat`` objects
 
3672
  now have a ``network_name`` for passing the format across RPC calls.
 
3673
  (Robert Collins, Andrew Bennetts)
 
3674
 
 
3675
* ``RepositoryFormat`` objects now all have a new attribute
 
3676
  ``_serializer`` used by fetch when reserialising is required.
 
3677
  (Robert Collins, Andrew Bennetts)
 
3678
 
 
3679
* Some methods have been pulled up from ``BzrBranch`` to ``Branch``
 
3680
  to aid branch types that are not bzr branch objects (like
 
3681
  RemoteBranch). (Robert Collins, Andrew Bennetts)
 
3682
 
 
3683
* Test adaptation has been made consistent throughout the built in
 
3684
  tests. ``TestScenarioApplier``, ``multiply_tests_from_modules``,
 
3685
  ``adapt_tests``, ``adapt_modules`` have all been deleted. Please
 
3686
  use ``multiply_tests``, or for lower level needs ``apply_scenarios``
 
3687
  and ``apply_scenario``. (Robert Collins)
 
3688
 
 
3689
* ``TestSkipped`` is now detected by TestCase and passed to the
 
3690
  ``TestResult`` by calling ``addSkip``. For older TestResult objects,
 
3691
  where ``addSkip`` is not available, ``addError`` is still called.
 
3692
  This permits test filtering in subunit to strip out skipped tests
 
3693
  resulting in a faster fix-shrink-list-run cycle. This is compatible
 
3694
  with the testtools protocol for skips. (Robert Collins)
 
3695
 
 
3696
* The ``_index`` of ``KnitVersionedFiles`` now supports the ability
 
3697
  to scan an underlying index that is going to be incorporated into
 
3698
  the ``KnitVersionedFiles`` object, to determine if it has missing
 
3699
  delta references. The method is ``scan_unvalidated_index``.
 
3700
  (Andrew Bennetts, Robert Collins)
 
3701
 
 
3702
* There is a RemoteSink object which handles pushing to smart servers.
 
3703
  (Andrew Bennetts, Robert Collins)
 
3704
 
 
3705
* ``TransportTraceDecorator`` now logs ``put_bytes_non_atomic`` and
 
3706
  ``rmdir`` calls. (Robert Collins)
 
3707
 
 
3708
* ``VersionedFiles`` record adapters have had their signature change
 
3709
  from ``(record, record.get_bytes_as(record.storage_kind))`` to
 
3710
  ``(record)`` reducing excess duplication and allowing adapters
 
3711
  to access private data in record to obtain content more
 
3712
  efficiently. (Robert Collins)
 
3713
 
 
3714
* We no longer probe to see if we should create a working tree during
 
3715
  clone if we cannot get a local_abspath for the new bzrdir.
 
3716
  (Robert Collins)
 
3717
 
 
3718
 
 
3719
bzr 1.12
 
3720
########
 
3721
 
 
3722
:Codename: 1234567890
 
3723
:1.12: 2009-02-13
 
3724
:1.12rc1: 2009-02-10
 
3725
 
 
3726
This release of Bazaar contains many improvements to the speed,
 
3727
documentation and functionality of ``bzr log`` and the display of logged
 
3728
revisions by ``bzr status``.  bzr now also gives a better indication of
 
3729
progress, both in the way operations are drawn onto a text terminal, and
 
3730
by showing the rate of network IO.
 
3731
 
 
3732
Changes from RC1 to Final
 
3733
*************************
 
3734
 
 
3735
* ``bzr init --development-wt5[-rich-root]`` would fail because of
 
3736
  circular import errors. (John Arbash Meinel, #328135)
 
3737
 
 
3738
* Expanded the help for log and added a new help topic called
 
3739
  ``log-formats``.  (Ian Clatworthy)
 
3740
 
 
3741
Compatibility Breaks
 
3742
********************
 
3743
 
 
3744
* By default, ``bzr status`` after a merge now shows just the pending
 
3745
  merge tip revisions. This improves the signal-to-noise ratio after
 
3746
  merging from trunk and completes much faster. To see all merged
 
3747
  revisions, use the new ``-v`` flag.  (Ian Clatworthy)
 
3748
 
 
3749
* ``bzr log --line`` now shows any tags after the date and before
 
3750
  the commit message. If you have scripts which parse the output
 
3751
  from this command, you may need to adjust them accordingly.
 
3752
  (Ian Clatworthy)
 
3753
 
 
3754
* ``bzr log --short`` now shows any additional revision properties
 
3755
  after the date and before the commit message.  Scripts that parse 
 
3756
  output of the log command in this situation may need to adjust.
 
3757
  (Neil Martinsen-Burrell)
 
3758
 
 
3759
* The experimental formats ``1.12-preview`` and ``1.12-preview-rich-root``
 
3760
  have been renamed ``development-wt5`` and ``development-wt5-rich-root``
 
3761
  respectively, given they are not ready for release in 1.12.
 
3762
  (Ian Clatworthy)
 
3763
 
 
3764
* ``read_bundle_from_url`` has been deprecated. (Vincent Ladeuil)
 
3765
 
 
3766
New Features
 
3767
************
 
3768
 
 
3769
* Add support for filtering ``bzr missing`` on revisions.  Remote revisions
 
3770
  can be filtered using ``bzr missing -r -20..-10`` and local revisions can
 
3771
  be filtered using ``bzr missing --my-revision -20..-10``.
 
3772
  (Marius Kruger)
 
3773
 
 
3774
* ``bzr log -p`` displays the patch diff for each revision.
 
3775
  When logging a file, the diff only includes changes to that file.
 
3776
  (Ian Clatworthy, #202331, #227335)
 
3777
 
 
3778
* ``bzr log`` supports a new option called ``-n N`` or ``--level N``.
 
3779
  A value of 0 (zero) means "show all nested merge revisions" while
 
3780
  a value of 1 (one) means "show just the top level". Values above
 
3781
  1 can be used to see a limited amount of nesting. That can be
 
3782
  useful for seeing the level or two below PQM submits for example.
 
3783
  To force the ``--short`` and ``--line`` formats to display all nested
 
3784
  merge revisions just like ``--long`` does by default, use a command
 
3785
  like ``bzr log --short -n0``. To display just the mainline using
 
3786
  ``--long`` format, ``bzr log --long -n1``.
 
3787
  (Ian Clatworthy)
 
3788
 
 
3789
Improvements
 
3790
************
 
3791
 
 
3792
* ``bzr add`` more clearly communicates success vs failure.
 
3793
  (Daniel Watkins)
 
3794
 
 
3795
* ``bzr init`` will now print a little less verbose output.
 
3796
  (Marius Kruger)
 
3797
 
 
3798
* ``bzr log`` is now much faster in many use cases, particularly
 
3799
  at incrementally displaying results and filtering by a
 
3800
  revision range. (Ian Clatworthy)
 
3801
 
 
3802
* ``bzr log --short`` and ``bzr log --line`` now show tags, if any,
 
3803
  for each revision. The tags are shown comma-separated inside
 
3804
  ``{}``. For short format, the tags appear at the end of line
 
3805
  before the optional ``[merge]`` indicator. For line format,
 
3806
  the tags appear after the date. (Ian Clatworthy)
 
3807
 
 
3808
* Progress bars now show the rate of activity for some sftp 
 
3809
  operations, and they are drawn different.  (Martin Pool, #172741)
 
3810
 
 
3811
* Progress bars now show the rate of activity for urllib and pycurl based
 
3812
  http client implementations. The operations are tracked at the socket
 
3813
  level for better precision.
 
3814
  (Vincent Ladeuil)
 
3815
 
 
3816
* Rule-based preferences can now accept multiple patterns for a set of
 
3817
  rules.  (Marius Kruger)
 
3818
 
 
3819
* The ``ancestor:`` revision spec will now default to referring to the
 
3820
  parent of the branch if no other location is given.
 
3821
  (Daniel Watkins, #198417)
 
3822
 
 
3823
* The debugger started as a result of setting ``$BZR_PDB`` works
 
3824
  around a bug in ``pdb``, http://bugs.python.org/issue4150.  The bug
 
3825
  can cause truncated tracebacks in Python versions before 2.6.
 
3826
  (Andrew Bennetts)
 
3827
 
 
3828
* VirtualVersionedFiles now implements
 
3829
  ``iter_lines_added_or_present_in_keys``. This allows the creation of 
 
3830
  new branches based on stacked bzr-svn branches. (#311997)
 
3831
 
 
3832
Bug Fixes
 
3833
*********
 
3834
 
 
3835
* ``bzr annotate --show-ids`` doesn't give a backtrace on empty files
 
3836
  anymore.
 
3837
  (Anne Mohsen, Vincent Ladeuil, #314525)
 
3838
 
 
3839
* ``bzr log FILE`` now correctly shows mainline revisions merging
 
3840
  a change to FILE when the ``--short`` and ``--line`` log formats
 
3841
  are used. (Ian Clatworthy, #317417)
 
3842
 
 
3843
* ``bzr log -rX..Y FILE`` now shows the history of FILE provided
 
3844
  it existed in Y or X, even if the file has since been deleted or
 
3845
  renamed. If no range is given, the current/basis tree and
 
3846
  initial tree are searched in that order. More generally, log
 
3847
  now interprets filenames in their historical context.
 
3848
  (Ian Clatworthy, #175520)
 
3849
 
 
3850
* ``bzr status`` now reports nonexistent files and continues, then
 
3851
  errors (with code 3) at the end.  (Karl Fogel, #306394)
 
3852
 
 
3853
* Don't require the present compression base in knits to be the same
 
3854
  when adding records in knits. (Jelmer Vernooij, #307394)
 
3855
 
 
3856
* Fix a problem with CIFS client/server lag on Windows colliding with
 
3857
  an invariant-per-process algorithm for generating AtomicFile names
 
3858
  (Adrian Wilkins, #304023)
 
3859
 
 
3860
* Many socket operations now handle EINTR by retrying the operation.
 
3861
  Previously EINTR was treated as an unrecoverable failure.  There is
 
3862
  a new ``until_no_eintr`` helper function in ``bzrlib.osutils``.
 
3863
  (Andrew Bennetts)
 
3864
 
 
3865
* Support symlinks with non-ascii characters in the symlink filename.
 
3866
  (Jelmer Vernooij, #319323)
 
3867
 
 
3868
* There was a bug in how we handled resolving when a file is deleted
 
3869
  in one branch, and modified in the other. If there was a criss-cross
 
3870
  merge, we would cause the deletion to conflict a second time.
 
3871
  (Vincent Ladeuil, John Arbash Meinel)
 
3872
 
 
3873
* There was another bug in how we chose the correct intermediate LCA in
 
3874
  criss-cross merges leading to several kind of changes be incorrectly
 
3875
  handled.
 
3876
  (John Arbash Meinel, Vincent Ladeuil)
 
3877
 
 
3878
* Unshelve now handles deleted paths without crashing. (Robert Collins)
 
3879
 
 
3880
Documentation
 
3881
*************
 
3882
 
 
3883
* Improved plugin developer documentation.  (Martin Pool)
 
3884
 
 
3885
API Changes
 
3886
***********
 
3887
 
 
3888
* ``ProgressBarStack`` is deprecated; instead use
 
3889
  ``ui_factory.nested_progress_bar`` to create new progress bars.
 
3890
  (Martin Pool)
 
3891
 
 
3892
* ForeignVcsMapping() now requires a ForeignVcs object as first
 
3893
  argument. (Jelmer Vernooij)
 
3894
 
 
3895
* ForeignVcsMapping.show_foreign_revid() has been moved to
 
3896
  ForeignVcs. (Jelmer Vernooij)
 
3897
 
 
3898
* ``read_bundle_from_url`` is deprecated in favor of
 
3899
  ``read_mergeable_from_url``.  (Vincent Ladeuil)
 
3900
 
 
3901
* Revision specifiers are now registered in
 
3902
  ``bzrlib.revisionspec.revspec_registry``, and the old list of 
 
3903
  revisionspec classes (``bzrlib.revisionspec.SPEC_TYPES``) has been
 
3904
  deprecated. (Jelmer Vernooij, #321183)
 
3905
 
 
3906
* The progress and UI classes have changed; the main APIs remain the
 
3907
  same but code that provides a new UI or progress bar class may
 
3908
  need to be updated.  (Martin Pool)
 
3909
 
 
3910
Internals
 
3911
*********
 
3912
 
 
3913
* Default User Interface (UI) is CLIUIFactory when bzr runs in a dumb
 
3914
  terminal. It is sometimes desirable do override this default by forcing
 
3915
  bzr to use TextUIFactory. This can be achieved by setting the
 
3916
  BZR_USE_TEXT_UI environment variable (emacs shells, as opposed to
 
3917
  compile buffers, are such an example).
 
3918
  (Vincent Ladeuil)
 
3919
 
 
3920
* New API ``Branch.iter_merge_sorted_revisions()`` that iterates over
 
3921
  ``(revision_id, depth, revno, end_of_merge)`` tuples.
 
3922
  (Ian Clatworthy)
 
3923
 
 
3924
* New ``Branch.dotted_revno_to_revision_id()`` and
 
3925
  ``Branch.revision_id_to_dotted_revno()`` APIs that pick the most
 
3926
  efficient way of doing the mapping.
 
3927
  (Ian Clatworthy)
 
3928
 
 
3929
* Refactor cmd_serve so that it's a little easier to build commands that
 
3930
  extend it, and perhaps even a bit easier to read.  (Jonathan Lange)
 
3931
 
 
3932
* ``TreeDelta.show()`` now accepts a ``filter`` parameter allowing log
 
3933
  formatters to retrict the output.
 
3934
  (Vincent Ladeuil)
 
3935
 
 
3936
 
 
3937
bzr 1.11
 
3938
########
 
3939
 
 
3940
:Codename: "Eyes up!"
 
3941
:Released: 2009-01-19
 
3942
 
 
3943
This first monthly release of Bazaar for 2009 improves Bazaar's operation
 
3944
in Windows, Mac OS X, and other situations where file names are matched
 
3945
without regard to capitalization: Bazaar tries to match the case of an
 
3946
existing file.  This release of Bazaar also improves the efficiency of
 
3947
Tortoise Windows Shell integration and lets it work on 64-bit platforms.
 
3948
 
 
3949
The UI through which Bazaar supports historic formats has been improved,
 
3950
so 'bzr help formats' now gives a simpler and shorter list, with clear
 
3951
advice.
 
3952
 
 
3953
This release also fixes a number of bugs, particularly a glitch that can
 
3954
occur when there are concurrent writes to a pack repository.
 
3955
 
 
3956
Bug Fixes
 
3957
*********
 
3958
 
 
3959
* Fix failing test when CompiledChunksToLines is not available.
 
3960
  (Vincent Ladeuil)
 
3961
 
 
3962
* Stacked branches don't repeatedly open their transport connection.
 
3963
  (John Arbash Meinel)
 
3964
 
 
3965
 
 
3966
 
 
3967
bzr 1.11rc1
 
3968
###########
 
3969
 
 
3970
:Codename: "Eyes up!"
 
3971
:Released: 2009-01-09
 
3972
 
 
3973
Changes
 
3974
*******
 
3975
 
 
3976
* Formats using Knit-based repository formats are now explicitly
 
3977
  marked as deprecated. (Ian Clatworthy)
 
3978
 
 
3979
New Features
 
3980
************
 
3981
 
 
3982
* Add support for `bzr tags -r 1..2`, that is we now support showing
 
3983
  tags applicable for a specified revision range. (Marius Kruger)
 
3984
 
 
3985
* ``authentication.conf`` now accepts pluggable read-only credential
 
3986
  stores. Such a plugin (``netrc_credential_store``) is now included,
 
3987
  handles the ``$HOME/.netrc`` file and can server as an example to
 
3988
  implement other plugins.
 
3989
  (Vincent Ladeuil)
 
3990
 
 
3991
* ``shelve --list`` can now be used to list shelved changes.
 
3992
  (Aaron Bentley)
 
3993
 
 
3994
Improvements
 
3995
************
 
3996
 
 
3997
* Add trailing slash to directories in all output of ``bzr ls``, except
 
3998
  ``bzr ls --null``. (Gordon P. Hemsley, #306424)
 
3999
 
 
4000
* ``bzr revision-info`` now supports a -d option to specify an
 
4001
  alternative branch. (Michael Hudson)
 
4002
 
 
4003
* Add connection to a C++ implementation of the Windows Shell Extension
 
4004
  which is able to fully replace the current Python implemented one.
 
4005
  Advantages include 64bit support and reduction in overhead for
 
4006
  processes which drag in shell extensions.
 
4007
  (Mark Hammond)
 
4008
 
 
4009
* Support the Claws mail client directly, rather than via
 
4010
  xdg-email. This prevents the display of an unnecessary modal
 
4011
  dialog in Claws, informing the user that a file has been
 
4012
  attached to the message, and works around bug #291847 in
 
4013
  xdg-utils which corrupts the destination address.
 
4014
 
 
4015
* When working on a case-insensitive case-preserving file-system, as
 
4016
  commonly found with Windows, bzr will often ignore the case of the
 
4017
  arguments specified by the user in preference to the case of an existing
 
4018
  item on the file-system or in the inventory to help prevent
 
4019
  counter-intuitive behaviour on Windows. (Mark Hammond)
 
4020
 
 
4021
Bug Fixes
 
4022
*********
 
4023
  
 
4024
* Allow BzrDir implementation to implement backing up of 
 
4025
  control directory. (#139691)
 
4026
 
 
4027
* ``bzr push`` creating a new stacked branch will now only open a
 
4028
  single connection to the target machine. (John Arbash Meinel)
 
4029
 
 
4030
* Don't call iteritems on transport_list_registry, because it may
 
4031
  change during iteration.  (Martin Pool, #277048)
 
4032
 
 
4033
* Don't make a broken branch when pushing an unstackable-format branch
 
4034
  that's in a stackable shared repository to a location with default
 
4035
  stack-on location.  (Andrew Bennetts, #291046)
 
4036
 
 
4037
* Don't require embedding user in HTTP(S) URLs do use authentication.conf.
 
4038
  (Ben Jansen, Vincent Ladeuil, #300347)
 
4039
 
 
4040
* Fix a problem with CIFS client/server lag on windows colliding with
 
4041
  an invariant-per-process algorithm for generating AtomicFile names
 
4042
  (Adrian Wilkins, #304023)
 
4043
 
 
4044
* Fix bogus setUp signature in UnavailableFTPServer.
 
4045
  (Gary van der Merwe, #313498)
 
4046
 
 
4047
* Fix compilation error in ``_dirstate_helpers_c`` on SunOS/Solaris.
 
4048
  (Jari Aalto)
 
4049
 
 
4050
* Fix SystemError in ``_patiencediff_c`` module by calling
 
4051
  PyErr_NoMemory() before returning NULL in PatienceSequenceMatcher_new.
 
4052
  (Andrew Bennetts, #303206)
 
4053
 
 
4054
* Give proper error message for diff with non-existent dotted revno.
 
4055
  (Marius Kruger, #301969)
 
4056
 
 
4057
* Handle EACCES (permission denied) errors when launching a message
 
4058
  editor, and emit warnings when a configured editor cannot be
 
4059
  started. (Andrew Bennetts)
 
4060
 
 
4061
* ``$HOME/.netrc`` file is now recognized as a read-only credential store
 
4062
  if configured in ``authentication.conf`` with 'password_encoding=netrc'
 
4063
  in the appropriate sections.
 
4064
  (Vincent Ladeuil, #103029)
 
4065
 
 
4066
* Opening a stacked branch now properly shares the connection, rather
 
4067
  than opening a new connection for the stacked-on branch.
 
4068
  (John Arbash meinel)
 
4069
 
 
4070
* Preserve transport decorators while following redirections.
 
4071
  (Vincent Ladeuil, #245964, #270863)
 
4072
 
 
4073
* Provides a finer and more robust filter for accepted redirections.
 
4074
  (Vincent Ladeuil, #303959, #265070)
 
4075
 
 
4076
* ``shelve`` paths are now interpreted relative to the current working
 
4077
  tree.  (Aaron Bentley)
 
4078
 
 
4079
* ``Transport.readv()`` defaults to not reading more than 100MB in a
 
4080
  single array. Further ``RemoteTransport.readv`` sets this to 5MB to
 
4081
  work better with how it splits its requests.
 
4082
  (John Arbash Meinel, #303538)
 
4083
 
 
4084
* Pack repositories are now able to reload the pack listing and retry
 
4085
  the current operation if another action causes the data to be
 
4086
  repacked.  (John Arbash Meinel, #153786)
 
4087
 
 
4088
* ``pull -v`` now respects the log_format configuration variable.
 
4089
  (Aaron Bentley)
 
4090
 
 
4091
* ``push -v`` now works on non-initial pushes.  (Aaron Bentley)
 
4092
 
 
4093
* Use the short status format when the short format is used for log.
 
4094
  (Vincent Ladeuil, #87179)
 
4095
 
 
4096
* Allow files to be renamed or moved via remove + add-by-id. (Charles
 
4097
  Duffy, #314251)
 
4098
 
 
4099
Documentation
 
4100
*************
 
4101
 
 
4102
* Improved the formats help topic to explain why multiple formats
 
4103
  exist and to provide guidelines in selecting one. Introduced
 
4104
  two new supporting help topics: current-formats and other-formats.
 
4105
  (Ian Clatworthy)
 
4106
 
 
4107
API Changes
 
4108
***********
 
4109
 
 
4110
* ``LRUCache(after_cleanup_size)`` was renamed to
 
4111
  ``after_cleanup_count`` and the old name deprecated. The new name is
 
4112
  used for clarity, and to avoid confusion with
 
4113
  ``LRUSizeCache(after_cleanup_size)``. (John Arbash Meinel)
 
4114
 
 
4115
* New ``ForeignRepository`` base class, to help with foreign branch 
 
4116
  support (e.g. svn).  (Jelmer Vernooij)
 
4117
 
 
4118
* ``node_distances`` and ``select_farthest`` can no longer be imported
 
4119
  from ``bzrlib.graph``.  They can still be imported from
 
4120
  ``bzrlib.deprecated_graph``, which has been the preferred way to
 
4121
  import them since before 1.0.  (Andrew Bennetts)
 
4122
  
 
4123
* The logic in commit now delegates inventory basis calculations to
 
4124
  the ``CommitBuilder`` object; this requires that the commit builder
 
4125
  in use has been updated to support the new ``recording_deletes`` and
 
4126
  ``record_delete`` methods. (Robert Collins)
 
4127
 
 
4128
Testing
 
4129
*******
 
4130
 
 
4131
* An HTTPS server is now available (it requires python-2.6). Future bzr
 
4132
  versions will allow the use of the python-2.6 ssl module that can be
 
4133
  installed for 2.5 and 2.4.
 
4134
 
 
4135
* ``bzr selftest`` now fails if new trailing white space is added to
 
4136
  the bazaar sources. It only checks changes not committed yet. This
 
4137
  means that PQM will now reject changes that introduce new trailing
 
4138
  whitespace. (Marius Kruger)
 
4139
 
 
4140
* Introduced new experimental formats called ``1.12-preview`` and
 
4141
  ``1.12-preview-rich-root`` to enable testing of related pending
 
4142
  features, namely content filtering and filtered views.
 
4143
  (Ian Clatworthy)
 
4144
 
 
4145
Internals
 
4146
*********
 
4147
 
 
4148
* Added an ``InventoryEntry`` cache when deserializing inventories.
 
4149
  Can cut the time to iterate over multiple RevisionsTrees in half.
 
4150
  (John Arbash Meinel)
 
4151
 
 
4152
* Added ``bzrlib.fifo_cache.FIFOCache`` which is designed to have
 
4153
  minimal overhead versus using a plain dict for cache hits, at the
 
4154
  cost of not preserving the 'active' set as well as an ``LRUCache``.
 
4155
  (John Arbash Meinel)
 
4156
 
 
4157
* ``bzrlib.patience_diff.unified_diff`` now properly uses a tab
 
4158
  character to separate the filename from the date stamp, and doesn't
 
4159
  add trailing whitespace when a date stamp is not supplied.
 
4160
  (Adeodato Simó, John Arbash Meinel)
 
4161
 
 
4162
* ``DirStateWorkingTree`` and ``DirStateWorkingTreeFormat`` added
 
4163
  as base classes of ``WorkingTree4`` and ``WorkingTreeFormat4``
 
4164
  respectively. (Ian Clatworthy)
 
4165
 
 
4166
* ``KnitVersionedFiles._check_should_delta()`` now uses the
 
4167
  ``get_build_details`` api to avoid multiple hits to the index, and
 
4168
  to properly follow the ``compression_parent`` rather than assuming
 
4169
  it is the left-hand parent. (John Arbash Meinel)
 
4170
 
 
4171
* ``KnitVersionedFiles.get_record_stream()`` will now chose a
 
4172
  more optimal ordering when the keys are requested 'unordered'.
 
4173
  Previously the order was fully random, now the records should be
 
4174
  returned from each pack in turn, in forward I/O order.
 
4175
  (John Arbash Meinel)
 
4176
    
 
4177
* ``mutter()`` will now flush the ``~/.bzr.log`` if it has been more
 
4178
  than 2s since the last time it flushed. (John Arbash Meinel)
 
4179
 
 
4180
* New method ``bzrlib.repository.Repository.add_inventory_by_delta``
 
4181
  allows adding an inventory via an inventory delta, which can be
 
4182
  more efficient for some repository types. (Robert Collins)
 
4183
 
 
4184
* Repository ``CommitBuilder`` objects can now accumulate an inventory
 
4185
  delta. To enable this functionality call ``builder.recording_deletes``
 
4186
  and additionally call ``builder.record_delete`` when a delete
 
4187
  against the basis occurs. (Robert Collins)
 
4188
 
 
4189
* The default http handler has been changed from pycurl to urllib.
 
4190
  The default is still pycurl for https connections. (The only
 
4191
  advantage of pycurl is that it checks ssl certificates.)
 
4192
  (John Arbash Meinel)
 
4193
 
 
4194
* ``VersionedFiles.get_record_stream()`` can now return objects with a
 
4195
  storage_kind of ``chunked``. This is a collection (list/tuple) of
 
4196
  strings. You can use ``osutils.chunks_to_lines()`` to turn them into
 
4197
  guaranteed 'lines' or you can use ``''.join(chunks)`` to turn it
 
4198
  into a fulltext. This allows for some very good memory savings when
 
4199
  asking for many texts that share ancestry, as the individual chunks
 
4200
  can be shared between versions of the file. (John Arbash Meinel)
 
4201
 
 
4202
* ``pull -v`` and ``push -v`` use new function
 
4203
  ``bzrlib.log.show_branch_change`` (Aaron Bentley)
 
4204
 
 
4205
 
 
4206
 
 
4207
bzr 1.10
 
4208
########
 
4209
 
 
4210
:Released: 2008-12-05
 
4211
 
 
4212
Bazaar 1.10 has several performance improvements for copying revisions
 
4213
(especially for small updates to large projects).  There has also been a
 
4214
significant amount of effort in polishing stacked branches.  The commands
 
4215
``shelve`` and ``unshelve`` have become core commands, with an improved
 
4216
implementation.
 
4217
 
 
4218
The only changes versus bzr-1.10rc1 are bugfixes for stacked branches.
 
4219
 
 
4220
bug Fixes
 
4221
*********
 
4222
 
 
4223
* Don't set a pack write cache size from RepoFetcher, because the
 
4224
  cache is not coherent with reads and causes ShortReadvErrors.
 
4225
  This reverses the change that fixed #294479.
 
4226
  (Martin Pool, #303856)
 
4227
 
 
4228
* Properly handle when a revision can be inserted as a delta versus
 
4229
  when it needs to be expanded to a fulltext for stacked branches.
 
4230
  There was a bug involving merge revisions. As a method to help
 
4231
  prevent future difficulties, also make stacked fetches sort
 
4232
  topologically. (John Arbash Meinel, #304841)
 
4233
 
 
4234
 
 
4235
bzr 1.10rc1
 
4236
###########
 
4237
 
 
4238
:Released: 2008-11-28
 
4239
 
 
4240
This release of Bazaar focuses on performance improvements when pushing
 
4241
and pulling revisions, both locally and to remote networks.  The popular
 
4242
``shelve`` and ``unshelve`` commands, used to interactively revert and
 
4243
restore work in progress, have been merged from bzrtools into the bzr
 
4244
core.  There are also bug fixes for portability, and for stacked branches.
 
4245
 
 
4246
New Features
 
4247
************
 
4248
 
 
4249
* New ``commit_message_template`` hook that is called by the commit
 
4250
  code to generate a template commit message. (Jelmer Vernooij)
 
4251
 
 
4252
* New `shelve` and `unshelve` commands allow undoing and redoing changes.
 
4253
  (Aaron Bentley)
 
4254
 
 
4255
Improvements
 
4256
************
 
4257
 
 
4258
* ``(Remote)Branch.copy_content_into`` no longer generates the full revision
 
4259
  history just to set the last revision info.
 
4260
  (Andrew Bennetts, John Arbash Meinel)
 
4261
 
 
4262
* Fetches between formats with different serializers (such as
 
4263
  pack-0.92-subtree and 1.9-rich-root) are faster now.  This is due to
 
4264
  operating on batches of 100 revisions at time rather than
 
4265
  one-by-one.  (Andrew Bennetts, John Arbash Meinel)
 
4266
 
 
4267
* Search index files corresponding to pack files we've already used
 
4268
  before searching others, because they are more likely to have the
 
4269
  keys we're looking for.  This reduces the number of iix and tix
 
4270
  files accessed when pushing 1 new revision, for instance.
 
4271
  (John Arbash Meinel)
 
4272
 
 
4273
* Signatures to transfer are calculated more efficiently in
 
4274
  ``item_keys_introduced_by``.  (Andrew Bennetts, John Arbash Meinel)
 
4275
 
 
4276
* The generic fetch code can once again copy revisions and signatures
 
4277
  without extracting them completely to fulltexts and then serializing
 
4278
  them back down into byte strings. This is a significant performance
 
4279
  improvement when fetching from a stacked branch.
 
4280
  (John Arbash Meinel, #300289)
 
4281
 
 
4282
* When making a large readv() request over ``bzr+ssh``, break up the
 
4283
  request into more manageable chunks. Because the RPC is not yet able
 
4284
  to stream, this helps keep us from buffering too much information at
 
4285
  once. (John Arbash Meinel)
 
4286
 
 
4287
Bug Fixes
 
4288
*********
 
4289
 
 
4290
* Better message when the user needs to set their Launchpad ID.
 
4291
  (Martin Pool, #289148)
 
4292
 
 
4293
* ``bzr commit --local`` doesn't access the master branch anymore.
 
4294
  This fixes a regression introduced in 1.9.  (Marius Kruger, #299313)
 
4295
 
 
4296
* Don't call the system ``chdir()`` with an empty path. Sun OS seems
 
4297
  to give an error in that case.  Also, don't count on ``getcwd()``
 
4298
  being able to allocate a new buffer, which is a gnu extension.
 
4299
  (John Arbash Meinel, Martin Pool, Harry Hirsch, #297831)
 
4300
 
 
4301
* Don't crash when requesting log --forward <file> for a revision range
 
4302
  starting with a dotted revno.
 
4303
  (Vincent Ladeuil, #300055)
 
4304
 
 
4305
* Don't create text deltas spanning stacked repositories; this could
 
4306
  cause "Revision X not present in Y" when later accessing them.
 
4307
  (Martin Pool, #288751)
 
4308
 
 
4309
* Pack repositories are now able to reload the pack listing and retry
 
4310
  the current operation if another action causes the data to be
 
4311
  repacked.  (John Arbash Meinel, #153786)
 
4312
 
 
4313
* PermissionDenied errors from smart servers no longer cause
 
4314
  "PermissionDenied: "None"" on the client.
 
4315
  (Andrew Bennetts, #299254)
 
4316
 
 
4317
* Pushing to a stacked pack repository now batches writes, the same
 
4318
  way writes are batched to ordinary pack repository.  This makes
 
4319
  pushing to a stacked branch over the network much faster.
 
4320
  (Andrew Bennetts, #294479)
 
4321
 
 
4322
* TooManyConcurrentRequests no longer occur when a fetch fails and
 
4323
  tries to abort a write group.  This allows the root cause (e.g. a
 
4324
  network interruption) to be reported.  (Andrew Bennetts, #297014)
 
4325
 
 
4326
* RemoteRepository.get_parent_map now uses fallback repositories.
 
4327
  (Aaron Bentley, #297991?, #293679?)
 
4328
 
 
4329
API Changes
 
4330
***********
 
4331
 
 
4332
* ``CommitBuilder`` now validates the strings it will be committing,
 
4333
  to ensure that they do not have characters that will not be properly
 
4334
  round-tripped. For now, it just checks for characters that are
 
4335
  invalid in the XML form. (John Arbash Meinel, #295161)
 
4336
 
 
4337
* Constructor parameters for NewPack (internal to pack repositories)
 
4338
  have changed incompatibly.
 
4339
 
 
4340
* ``Repository.abort_write_group`` now accepts an optional
 
4341
  ``suppress_errors`` flag.  Repository implementations that override
 
4342
  ``abort_write_group`` will need to be updated to accept the new
 
4343
  argument.  Subclasses that only override ``_abort_write_group``
 
4344
  don't need to change.
 
4345
 
 
4346
* Transport implementations must provide copy_tree_to_transport.  A default
 
4347
  implementation is provided for Transport subclasses.
 
4348
 
 
4349
Testing
 
4350
*******
 
4351
 
 
4352
* ``bzr selftest`` now fails if no doctests are found in a module
 
4353
  that's expected to have them.  (Martin Pool)
 
4354
 
 
4355
* Doctests now only report the first failure.  (Martin Pool)
 
4356
 
 
4357
 
 
4358
bzr 1.9
 
4359
#######
 
4360
 
 
4361
:Released: 2008-11-07
 
4362
 
 
4363
This release of Bazaar adds a new repository format, ``1.9``, with smaller
 
4364
and more efficient index files.  This format can be specified when
 
4365
creating a new repository, or used to losslessly upgrade an existing
 
4366
repository.  bzr 1.9 also speeds most operations over the smart server
 
4367
protocol, makes annotate faster, and uses less memory when making
 
4368
checkouts or pulling large amounts of data.
 
4369
 
 
4370
Bug Fixes
 
4371
*********
 
4372
 
 
4373
* Fix "invalid property value 'branch-nick' for None" regression with
 
4374
  branches bound to svn branches.  (Martin Pool, #293440)
 
4375
 
 
4376
* Fix SSL/https on Python2.6.  (Vincent Ladeuil, #293054)
 
4377
 
 
4378
* ``SFTPTransport.readv()`` had a bug when requests were out-of-order.
 
4379
  This only triggers some-of-the-time on Knit format repositories.
 
4380
  (John Arbash Meinel, #293746)
 
4381
 
 
4382
 
 
4383
bzr 1.9rc1
 
4384
##########
 
4385
 
 
4386
:Released: 2008-10-31
 
4387
 
 
4388
New Features
 
4389
************
 
4390
 
 
4391
* New Branch hook ``transform_fallback_location`` allows a function to
 
4392
  be called when looking up the stacked source. (Michael Hudson)
 
4393
 
 
4394
* New repository formats ``1.9`` and ``1.9-rich-root``. These have all
 
4395
  the functionality of ``1.6``, but use the new btree indexes.
 
4396
  These indexes are both smaller and faster for access to historical
 
4397
  information.  (John Arbash Meinel)
 
4398
 
 
4399
Improvements
 
4400
************
 
4401
 
 
4402
* ``BTreeIndex`` code now is able to prefetch extra pages to help tune
 
4403
  the tradeoff between bandwidth and latency. Should be tuned
 
4404
  appropriately to not impact commands which need minimal information,
 
4405
  but provide a significant boost to ones that need more context. Only
 
4406
  has a direct impact on the ``--development2`` format which uses
 
4407
  btree's for the indexes. (John Arbash Meinel)
 
4408
 
 
4409
* ``bzr dump-btree`` is a hidden command introduced to allow dumping
 
4410
  the contents of a compressed btree file.  (John Arbash Meinel)
 
4411
 
 
4412
* ``bzr pack`` now tells the index builders to optimize for size. For
 
4413
  btree index repositories, this can save 25% of the index size
 
4414
  (mostly in the text indexes). (John Arbash Meinel)
 
4415
 
 
4416
* ``bzr push`` to an existing branch or repository on a smart server
 
4417
  is faster, due to Bazaar making more use of the ``get_parent_map``
 
4418
  RPC when querying the remote branch's revision graph.
 
4419
  (Andrew Bennetts)
 
4420
 
 
4421
* default username for bzr+ssh and sftp can be configured in
 
4422
  authentication.conf. (Aaron Bentley)
 
4423
 
 
4424
* launchpad-login now provides a default username for bzr+ssh and sftp
 
4425
  URLs, allowing username-free URLs to work for everyone. (Aaron Bentley)
 
4426
 
 
4427
* ``lp:`` lookups no longer include usernames, making them shareable and
 
4428
  shorter. (Aaron Bentley)
 
4429
 
 
4430
* New ``PackRepository.autopack`` smart server RPC, which does
 
4431
  autopacking entirely on the server.  This is much faster than
 
4432
  autopacking via plain file methods, which downloads a large amount
 
4433
  of pack data and then re-uploads the same pack data into a single
 
4434
  file.  This fixes a major (although infrequent) cause of lengthy
 
4435
  delays when using a smart server.  For example, pushing the 10th
 
4436
  revision to a repository with 9 packs now takes 44 RPCs rather than
 
4437
  179, and much less bandwidth too.  This requires Bazaar 1.9 on both
 
4438
  the client and the server, otherwise the client will fallback to the
 
4439
  slower method.  (Andrew Bennetts)
 
4440
 
 
4441
Bug Fixes
 
4442
*********
 
4443
 
 
4444
* A failure to load a plugin due to an IncompatibleAPI exception is
 
4445
  now correctly reported. (Robert Collins, #279451)
 
4446
 
 
4447
* API versioning support now has a multiple-version checking api
 
4448
  ``require_any_api``. (Robert Collins, #279447)
 
4449
 
 
4450
* ``bzr branch --stacked`` from a smart server to a standalone branch
 
4451
  works again.  This fixes a regression in 1.7 and 1.8.
 
4452
  (Andrew Bennetts, #270397)
 
4453
 
 
4454
* ``bzr co`` uses less memory. It used to unpack the entire WT into
 
4455
  memory before writing it to disk. This was a little bit faster, but
 
4456
  consumed lots of memory. (John Arbash Meinel, #269456)
 
4457
 
 
4458
* ``bzr missing --quiet`` no longer prints messages about whether
 
4459
  there are missing revisions.  The exit code indicates whether there
 
4460
  were or not.  (Martin Pool, #284748)
 
4461
 
 
4462
* Fixes to the ``annotate`` code. The fast-path which re-used the
 
4463
  stored deltas was accidentally disabled all the time, instead of
 
4464
  only when a branch was stacked. Second, the code would accidentally
 
4465
  re-use a delta even if it wasn't against the left-parent, this
 
4466
  could only happen if ``bzr reconcile`` decided that the parent
 
4467
  ordering was incorrect in the file graph.  (John Arbash Meinel)
 
4468
 
 
4469
* "Permission denied" errors that occur when pushing a new branch to a
 
4470
  smart server no longer cause tracebacks.  (Andrew Bennetts, #278673)
 
4471
 
 
4472
* Some compatibility fixes for building the extensions with MSVC and
 
4473
  for python2.4. (John Arbash Meinel, #277484)
 
4474
 
 
4475
* The index logic is now able to reload the list of pack files if and
 
4476
  index ends up disappearing. We still don't reload if the pack data
 
4477
  itself goes missing after checking the index. This bug appears as a
 
4478
  transient failure (file not found) when another process is writing
 
4479
  to the repository.  (John Arbash Meinel, #153786)
 
4480
 
 
4481
* ``bzr switch`` and ``bzr bind`` will now update the branch nickname if
 
4482
  it was previously set. All checkouts will now refer to the bound branch
 
4483
  for a nickname if one was not explicitly set.
 
4484
  (Marius Kruger, #230903)
 
4485
 
 
4486
Documentation
 
4487
*************
 
4488
 
 
4489
* Improved hook documentation. (Michael Ernst)
 
4490
 
 
4491
API Changes
 
4492
***********
 
4493
 
 
4494
* commands.plugins_cmds is now a CommandRegistry, not a dict.
 
4495
 
 
4496
Internals
 
4497
*********
 
4498
 
 
4499
* New AuthenticationConfig.set_credentials method allows easy programmatic
 
4500
  configuration of authetication credentials.
 
4501
 
 
4502
 
 
4503
bzr 1.8
 
4504
#######
 
4505
 
 
4506
:Released: 2008-10-16
 
4507
 
 
4508
Bazaar 1.8 includes several fixes that improve working tree performance,
 
4509
display of revision logs, and merges.  The bzr testsuite now passes on OS
 
4510
X and Python 2.6, and almost completely passes on Windows.  The
 
4511
smartserver code has gained several bug fixes and performance
 
4512
improvements, and can now run server-side hooks within an http server.
 
4513
 
 
4514
Bug Fixes
 
4515
*********
 
4516
 
 
4517
* Fix "Must end write group" error when another error occurs during
 
4518
  ``bzr push``.  (Andrew Bennetts, #230902)
 
4519
 
 
4520
Portability
 
4521
***********
 
4522
 
 
4523
* Some Pyrex versions require the WIN32 macro defined to compile on
 
4524
  that platform.  (Alexander Belchenko, Martin Pool, #277481)
 
4525
 
 
4526
 
 
4527
bzr 1.8rc1
 
4528
##########
 
4529
 
 
4530
:Released: 2008-10-07
 
4531
 
 
4532
Changes
 
4533
*******
 
4534
 
 
4535
* ``bzr log file`` has been changed. It now uses a different method
 
4536
  for determining which revisions to show as merging the changes to
 
4537
  the file. It now only shows revisions which merged the change
 
4538
  towards your mainline. This simplifies the output, makes it faster,
 
4539
  and reduces memory consumption.  (John Arbash Meinel)
 
4540
 
 
4541
* ``bzr merge`` now defaults to having ``--reprocess`` set, whenever
 
4542
  ``--show-base`` is not supplied.  (John Arbash Meinel)
 
4543
 
 
4544
* ``bzr+http//`` will now optionally load plugins and write logs on the
 
4545
  server. (Marius Kruger)
 
4546
 
 
4547
* ``bzrlib._dirstate_helpers_c.pyx`` does not compile correctly with
 
4548
  Pyrex 0.9.4.1 (it generates C code which causes segfaults). We
 
4549
  explicitly blacklist that version of the compiler for that
 
4550
  extension. Packaged versions will include .c files created with
 
4551
  pyrex >= 0.9.6 so it doesn't effect releases, only users running
 
4552
  from the source tree. (John Arbash Meinel, #276868)
 
4553
 
 
4554
Features
 
4555
********
 
4556
 
 
4557
* bzr is now compatible with python-2.6. python-2.6 is not yet officially
 
4558
  supported (nor released, tests were conducted with the dev version of
 
4559
  python-2.6rc2), but all known problems have been fixed.  Feedback
 
4560
  welcome.
 
4561
  (Vincent Ladeuil, #269535)
 
4562
 
 
4563
Improvements
 
4564
************
 
4565
 
 
4566
* ``bzr annotate`` will now include uncommitted changes from the local
 
4567
  working tree by default. Such uncommitted changes are given the
 
4568
  revision number they would get if a commit was done, followed with a
 
4569
  ? to indicate that its not actually known. (Robert Collins, #3439)
 
4570
 
 
4571
* ``bzr branch`` now accepts a ``--standalone`` option, which creates a
 
4572
  standalone branch regardless of the presence of shared repositories.
 
4573
  (Daniel Watkins)
 
4574
 
 
4575
* ``bzr push`` is faster in the case there are no new revisions to
 
4576
  push.  It is also faster if there are no tags in the local branch.
 
4577
  (Andrew Bennetts)
 
4578
 
 
4579
* File changes during a commit will update the tree stat cache.
 
4580
  (Robert Collins)
 
4581
 
 
4582
* Location aliases can now accept a trailing path.  (Micheal Hudson)
 
4583
 
 
4584
* New hooks ``Lock.hooks`` when LockDirs are acquired and released.
 
4585
  (Robert Collins, MartinPool)
 
4586
 
 
4587
* Switching in heavyweight checkouts uses the master branch's context, not
 
4588
  the checkout's context.  (Adrian Wilkins)
 
4589
 
 
4590
* ``status`` on large trees is now faster, due to optimisations in the
 
4591
  walkdirs code. Of particular note, the walkdirs code now performs
 
4592
  a temporary ``chdir()`` while reading a single directory; if your
 
4593
  platform has non thread-local current working directories (and is
 
4594
  not windows which has its own implementation), this may introduce a
 
4595
  race condition during concurrent uses of bzrlib. The bzrlib CLI
 
4596
  will not encounter this as it is single threaded for working tree
 
4597
  operations. (Robert Collins)
 
4598
 
 
4599
* The C extensions now build on python 2.4 (Robert Collins, #271939)
 
4600
 
 
4601
* The ``-Dhpss`` debug flag now reports the number of smart server
 
4602
  calls per medium to stderr.  This is in addition to the existing
 
4603
  detailed logging to the .bzr.log trace file.  (Andrew Bennetts)
 
4604
 
 
4605
Bug Fixes
 
4606
*********
 
4607
 
 
4608
* Avoid random failures arising from misinterpreted ``errno`` values
 
4609
  in ``_readdir_pyx.read_dir``.
 
4610
  (Martin Pool, #279381)
 
4611
 
 
4612
* Branching from a shared repository on a smart server into a new
 
4613
  repository now preserves the repository format.
 
4614
  (Andrew Bennetts, #269214)
 
4615
 
 
4616
* ``bzr log`` now accepts a ``--change`` option.
 
4617
  (Vincent Ladeuil, #248427)
 
4618
 
 
4619
* ``bzr missing`` now accepts an ``--include-merges`` option.
 
4620
  (Vincent Ladeuil, #233817)
 
4621
 
 
4622
* Don't try to filter (internally) '.bzr' from the files to be deleted if
 
4623
  it's not there.
 
4624
  (Vincent Ladeuil, #272648)
 
4625
 
 
4626
* Fix '_in_buffer' AttributeError when using the -Dhpss debug flag.
 
4627
  (Andrew Bennetts)
 
4628
 
 
4629
* Fix TooManyConcurrentRequests errors caused by a connection failure
 
4630
  when doing ``bzr pull`` or ``bzr merge`` from a ``bzr+ssh`` URL.
 
4631
  (Andrew Bennetts, #246233)
 
4632
 
 
4633
* Fixed ``bzr st -r branch:PATH_TO_BRANCH`` where the other branch
 
4634
  is in a different repository than the current one.
 
4635
  (Lukáš Lalinský, #144421)
 
4636
 
 
4637
* Make the first line of the manpage preamble a comment again.
 
4638
  (David Futcher, #242106)
 
4639
 
 
4640
* Remove use of optional parameter in GSSAPI FTP support, since
 
4641
  it breaks newer versions of Python-Kerberos. (Jelmer Vernooij)
 
4642
 
 
4643
* The autopacking logic will now always create a single new pack from
 
4644
  all of the content which it deems is worth moving. This avoids the
 
4645
  'repack a single pack' bug and should result in better packing
 
4646
  overall.  (John Arbash Meinel, #242510, #172644)
 
4647
 
 
4648
* Trivial documentation fix.
 
4649
  (John Arbash Meinel, #270471)
 
4650
 
 
4651
* ``bzr switch`` and ``bzr bind`` will now update the branch nickname if
 
4652
  it was previously set. All checkouts will now refer to the bound branch
 
4653
  for a nickname if one was not explicitly set.
 
4654
  (Marius Kruger, #230903)
 
4655
 
 
4656
Documentation
 
4657
*************
 
4658
 
 
4659
* Explain revision/range identifiers. (Daniel Clemente)
 
4660
 
 
4661
API Changes
 
4662
***********
 
4663
 
 
4664
* ``CommitBuilder.record_entry_contents`` returns one more element in
 
4665
  its result tuple - an optional file system hash for the hash cache
 
4666
  to use. (Robert Collins)
 
4667
 
 
4668
* ``dirstate.DirState.update_entry`` will now only calculate the sha1
 
4669
  of a file if it is likely to be needed in determining the output
 
4670
  of iter_changes. (Robert Collins)
 
4671
 
 
4672
* The PackRepository, RepositoryPackCollection, NewPack classes have a
 
4673
  slightly changed interface to support different index types; as a
 
4674
  result other users of these classes need to supply the index types
 
4675
  they want. (Robert Collins)
 
4676
 
 
4677
Testing
 
4678
*******
 
4679
 
 
4680
* ``bzrlib.tests.repository_implementations`` has been renamed to
 
4681
  ``bzrlib.tests.per_repository`` so that we have a common structure
 
4682
  (and it is shorter). (John Arbash Meinel, #239343)
 
4683
 
 
4684
* ``LocalTransport.abspath()`` now returns a drive letter if the
 
4685
  transport has one, fixing numerous tests on Windows.
 
4686
  (Mark Hammond)
 
4687
 
 
4688
* PreviewTree is now tested via intertree_implementations.
 
4689
  (Aaron Bentley)
 
4690
 
 
4691
* The full test suite is passing again on OSX.
 
4692
  (Guillermo Gonzalez, Vincent Ladeuil)
 
4693
 
 
4694
* The full test suite passes when run with ``-Eallow_debug``.
 
4695
  (Andrew Bennetts)
 
4696
 
 
4697
Internals
 
4698
*********
 
4699
 
 
4700
* A new hook, ``Branch.open``, has been added, which is called when
 
4701
  branch objects are opened. (Robert Collins)
 
4702
 
 
4703
* ``bzrlib.osutils._walkdirs_utf8`` has been refactored into common
 
4704
  tree walking, and modular directory listing code to aid future
 
4705
  performance optimisations and refactoring. (Robert Collins)
 
4706
 
 
4707
* ``bzrlib.trace.debug_memory`` can be used to get a quick memory dump
 
4708
  in the middle of processing. It only reports memory if
 
4709
  ``/proc/PID/status`` is available. (John Arbash Meinel)
 
4710
 
 
4711
* New method ``RevisionSpec.as_tree`` for representing the revision
 
4712
  specifier as a revision tree object. (Lukáš Lalinský)
 
4713
 
 
4714
* New race-free method on MutableTree ``get_file_with_stat`` for use
 
4715
  when generating stat cache results. (Robert Collins)
 
4716
 
 
4717
* New win32utils.get_local_appdata_location() provides access to a local
 
4718
  directory for storing data.  (Mark Hammond)
 
4719
 
 
4720
* To be compatible with python-2.6 a few new rules should be
 
4721
  observed. 'message' attribute can't be used anymore in exception
 
4722
  classes, 'sha' and 'md5' modules have been deprecated (use
 
4723
  osutils.[md5|sha]), object__init__ and object.__new__ don't accept
 
4724
  parameters anymore.
 
4725
  (Vincent Ladeuil)
 
4726
 
 
4727
 
 
4728
bzr 1.7.1
 
4729
#########
 
4730
 
 
4731
:Released:  2008-10-01
 
4732
 
 
4733
No changes from 1.7.1rc1.
 
4734
 
 
4735
 
 
4736
bzr 1.7.1rc1
 
4737
############
 
4738
 
 
4739
:Released: 2008-09-24
 
4740
 
 
4741
This release just includes an update to how the merge algorithm handles
 
4742
file paths when we encounter complex history.
 
4743
 
 
4744
Features
 
4745
********
 
4746
 
 
4747
* If we encounter a criss-cross in history, use information from
 
4748
  direct Least Common Ancestors to resolve inventory shape (locations
 
4749
  of files, adds, deletes, etc). This is similar in concept to using
 
4750
  ``--lca`` for merging file texts, only applied to paths.
 
4751
  (John Arbash Meinel)
 
4752
 
 
4753
 
 
4754
bzr 1.7
 
4755
#######
 
4756
 
 
4757
:Released: 2008-09-23
 
4758
 
 
4759
This release includes many bug fixes and a few performance and feature
 
4760
improvements.  ``bzr rm`` will now scan for missing files and remove them,
 
4761
like how ``bzr add`` scans for unknown files and adds them. A bit more
 
4762
polish has been applied to the stacking code. The b-tree indexing code has
 
4763
been brought in, with an eye on using it in a future repository format.
 
4764
There are only minor installer changes since bzr-1.7rc2.
 
4765
 
 
4766
Features
 
4767
********
 
4768
 
 
4769
* Some small updates to the win32 installer. Include localization
 
4770
  files found in plugins, and include the builtin distutils as part of
 
4771
  packaging qbzr. (Mark Hammond)
 
4772
 
 
4773
 
 
4774
bzr 1.7rc2
 
4775
##########
 
4776
 
 
4777
:Released: 2008-09-17
 
4778
 
 
4779
A few bug fixes from 1.7rc1. The biggest change is a new
 
4780
``RemoteBranch.get_stacked_on_url`` rpc. This allows clients that are
 
4781
trying to access a Stacked branch over the smart protocol, to properly
 
4782
connect to the stacked-on location.
 
4783
 
 
4784
Bug Fixes
 
4785
*********
 
4786
 
 
4787
* Branching from a shared repository on a smart server into a new
 
4788
  repository now preserves the repository format.
 
4789
  (Andrew Bennetts, #269214)
 
4790
 
 
4791
* Branching from a stacked branch via ``bzr+ssh`` can properly connect
 
4792
  to the stacked-on branch.  (Martin Pool, #261315)
 
4793
 
 
4794
* ``bzr init`` no longer re-opens the BzrDir multiple times.
 
4795
  (Vincent Ladeuil)
 
4796
 
 
4797
* Fix '_in_buffer' AttributeError when using the -Dhpss debug flag.
 
4798
  (Andrew Bennetts)
 
4799
 
 
4800
 
 
4801
bzr 1.7rc1
 
4802
##########
 
4803
 
 
4804
:Released: 2008-09-09
 
4805
 
 
4806
This release candidate for bzr 1.7 has several bug fixes and a few
 
4807
performance and feature improvements.  ``bzr rm`` will now scan for
 
4808
missing files and remove them, like how ``bzr add`` scans for unknown
 
4809
files and adds them. A bit more polish has been applied to the stacking
 
4810
code. The b-tree indexing code has been brought in, with an eye on using
 
4811
it in a future repository format.
 
4812
 
 
4813
 
 
4814
Changes
 
4815
*******
 
4816
 
 
4817
* ``bzr export`` can now export a subdirectory of a project.
 
4818
  (Robert Collins)
 
4819
 
 
4820
* ``bzr remove-tree`` will now refuse to remove a tree with uncommitted
 
4821
  changes, unless the ``--force`` option is specified.
 
4822
  (Lukáš Lalinský, #74101)
 
4823
 
 
4824
* ``bzr rm`` will now scan for files that are missing and remove just
 
4825
  them automatically, much as ``bzr add`` scans for new files that
 
4826
  are not ignored and adds them automatically. (Robert Collins)
 
4827
 
 
4828
Features
 
4829
********
 
4830
 
 
4831
* Support for GSSAPI authentication when using FTP as documented in
 
4832
  RFC2228. (Jelmer Vernooij, #49623)
 
4833
 
 
4834
* Add support for IPv6 in the smart server. (Jelmer Vernooij, #165014)
 
4835
 
 
4836
Improvements
 
4837
************
 
4838
 
 
4839
* A url like ``log+file:///tmp`` will log all access to that Transport
 
4840
  to ``.bzr.log``, which may help in debugging or profiling.
 
4841
  (Martin Pool)
 
4842
 
 
4843
* ``bzr branch`` and ``bzr push`` use the default stacking policy if the
 
4844
  branch format supports it. (Aaron Bentley)
 
4845
 
 
4846
* ``bzr init`` and ``bzr init-repo`` will now print out the same as
 
4847
  ``bzr info`` if it completed successfully.
 
4848
  (Marius Kruger)
 
4849
 
 
4850
* ``bzr uncommit`` logs the old tip revision id, and displays how to
 
4851
  restore the branch to that tip using ``bzr pull``.  This allows you
 
4852
  to recover if you realize you uncommitted the wrong thing.
 
4853
  (John Arbash Meinel)
 
4854
 
 
4855
* Fix problems in accessing stacked repositories over ``bzr://``.
 
4856
  (Martin Pool, #261315)
 
4857
 
 
4858
* ``SFTPTransport.readv()`` was accidentally using ``list += string``,
 
4859
  which 'works', but adds each character separately to the list,
 
4860
  rather than using ``list.append(string)``. Fixing this makes the
 
4861
  SFTP transport a little bit faster (~20%) and use a bit less memory.
 
4862
  (John Arbash Meinel)
 
4863
 
 
4864
* When reading index files, if we happen to read the whole file in a
 
4865
  single request treat it as a ``_buffer_all`` request. This happens
 
4866
  most often on small indexes over remote transports, where we default
 
4867
  to reading 64kB. It saves a round trip for each small index during
 
4868
  fetch operations. Also, if we have read more than 50% of an index
 
4869
  file, trigger a ``_buffer_all`` on the next request. This works
 
4870
  around some inefficiencies because reads don't fall neatly on page
 
4871
  boundaries, so we would ignore those bytes, but request them again
 
4872
  later. This could trigger a total read size of more than the whole
 
4873
  file. (John Arbash Meinel)
 
4874
 
 
4875
Bug Fixes
 
4876
*********
 
4877
 
 
4878
* ``bzr rm`` is now aliased to ``bzr del`` for the convenience of svn
 
4879
  users. (Robert Collins, #205416)
 
4880
 
 
4881
* Catch the infamous "select/poll returned error" which occurs when
 
4882
  pycurl try to send a body request to an HTTP/1.0 server which has
 
4883
  already refused to handle the request. (Vincent Ladeuil, #225020)
 
4884
 
 
4885
* Fix ``ObjectNotLocked`` errors when using various commands
 
4886
  (including ``bzr cat`` and ``bzr annotate``) in combination with a
 
4887
  smart server URL.  (Andrew Bennetts, #237067)
 
4888
 
 
4889
* ``FTPTransport.stat()`` would return ``0000`` as the permission bits
 
4890
  for the containing ``.bzr/`` directory (it does not implement
 
4891
  permissions). This would cause us to set all subdirectories to
 
4892
  ``0700`` and files to ``0600`` rather than leaving them unmodified.
 
4893
  Now we ignore ``0000`` as the permissions and assume they are
 
4894
  invalid. (John Arbash Meinel, #259855)
 
4895
 
 
4896
* Merging from a previously joined branch will no longer cause
 
4897
  a traceback. (Jelmer Vernooij, #203376)
 
4898
 
 
4899
* Pack operations on windows network shares will work even with large
 
4900
  files. (Robert Collins, #255656)
 
4901
 
 
4902
* Running ``bzr st PATH_TO_TREE`` will no longer suppress merge
 
4903
  status. Status is also about 7% faster on mozilla sized trees
 
4904
  when the path to the root of the tree has been given. Users of
 
4905
  the internal ``show_tree_status`` function should be aware that
 
4906
  the show_pending flag is now authoritative for showing pending
 
4907
  merges, as it was originally. (Robert Collins, #225204)
 
4908
 
 
4909
* Set valid default _param_name for Option so that ListOption can embed
 
4910
  '-' in names. (Vincent Ladeuil, #263249)
 
4911
 
 
4912
* Show proper error rather than traceback when an unknown revision
 
4913
  id is specified to ``bzr cat-revision``. (Jelmer Vernooij, #175569)
 
4914
 
 
4915
* Trailing text in the dirstate file could cause the C dirstate parser
 
4916
  to try to allocate an invalid amount of memory. We now properly
 
4917
  check and test for parsing a dirstate with invalid trailing data.
 
4918
  (John Arbash Meinel, #186014)
 
4919
 
 
4920
* Unexpected error responses from a smart server no longer cause the
 
4921
  client to traceback.  (Andrew Bennetts, #263527)
 
4922
 
 
4923
* Use a Windows api function to get a Unicode host name, rather than
 
4924
  assuming the host name is ascii.
 
4925
  (Mark Hammond, John Arbash Meinel, #256550)
 
4926
 
 
4927
* ``WorkingTree4`` trees will now correctly report missing-and-new
 
4928
  paths in the output of ``iter_changes``. (Robert Collins)
 
4929
 
 
4930
Documentation
 
4931
*************
 
4932
 
 
4933
* Updated developer documentation.  (Martin Pool)
 
4934
 
 
4935
API Changes
 
4936
***********
 
4937
 
 
4938
* Exporters now take 4 parameters. (Robert Collins)
 
4939
 
 
4940
* ``Tree.iter_changes`` will now return False for the content change
 
4941
  field when a file is missing in the basis tree and not present in
 
4942
  the target tree. Previously it returned True unconditionally.
 
4943
  (Robert Collins)
 
4944
 
 
4945
* The deprecated ``Branch.abspath`` and unimplemented
 
4946
  ``Branch.rename_one`` and ``Branch.move`` were removed. (Jelmer Vernooij)
 
4947
 
 
4948
* BzrDir.clone_on_transport implementations must now accept a stacked_on
 
4949
  parameter.  (Aaron Bentley)
 
4950
 
 
4951
* BzrDir.cloning_metadir implementations must now take a require_stacking
 
4952
  parameter.  (Aaron Bentley)
 
4953
 
 
4954
Testing
 
4955
*******
 
4956
 
 
4957
* ``addCleanup`` now takes ``*arguments`` and ``**keyword_arguments``
 
4958
  which are then passed to the cleanup callable as it is run. In
 
4959
  addition, addCleanup no longer requires that the callables passed to
 
4960
  it be unique. (Jonathan Lange)
 
4961
 
 
4962
* Fix some tests that fail on Windows because files are deleted while
 
4963
  still in use.
 
4964
  (Mark Hammond)
 
4965
 
 
4966
* ``selftest``'s ``--starting-with`` option can now use predefined
 
4967
  prefixes so that one can say ``bzr selftest -s bp.loom`` instead of
 
4968
  ``bzr selftest -s bzrlib.plugins.loom``. (Vincent Ladeuil)
 
4969
 
 
4970
* ``selftest``'s ``--starting-with`` option now accepts multiple values.
 
4971
  (Vincent Ladeuil)
 
4972
 
 
4973
Internals
 
4974
*********
 
4975
 
 
4976
* A new plugin interface, ``bzrlib.log.log_adapters``, has been added.
 
4977
  This allows dynamic log output filtering by plugins.
 
4978
  (Robert Collins)
 
4979
 
 
4980
* ``bzrlib.btree_index`` is now available, providing a b-tree index
 
4981
  layer. The design is memory conservative (limited memory cache),
 
4982
  faster to seek (approx 100 nodes per page, gives 100-way fan out),
 
4983
  and stores compressed pages allowing more keys per page.
 
4984
  (Robert Collins, John Arbash Meinel)
 
4985
 
 
4986
* ``bzrlib.diff.DiffTree.show_diff`` now skips changes where the kind
 
4987
  is unknown in both source and target.
 
4988
  (Robert Collins, Aaron Bentley)
 
4989
 
 
4990
* ``GraphIndexBuilder.add_node`` and ``BTreeBuilder`` have been
 
4991
  streamlined a bit. This should make creating large indexes faster.
 
4992
  (In benchmarking, it now takes less time to create a BTree index than
 
4993
  it takes to read the GraphIndex one.) (John Arbash Meinel)
 
4994
 
 
4995
* Mail clients for `bzr send` are now listed in a registry.  This
 
4996
  allows plugins to add new clients by registering them with
 
4997
  ``bzrlib.mail_client.mail_client_registry``.  All of the built-in
 
4998
  clients now use this mechanism.  (Neil Martinsen-Burrell)
 
4999
 
 
5000
 
 
5001
bzr 1.6.1
 
5002
#########
 
5003
 
 
5004
:Released: 2008-09-05
 
5005
 
 
5006
A couple regressions were found in the 1.6 release. There was a
 
5007
performance issue when using ``bzr+ssh`` to branch large repositories,
 
5008
and some problems with stacking and ``rich-root`` capable repositories.
 
5009
 
 
5010
 
 
5011
bzr 1.6.1rc2
 
5012
############
 
5013
 
 
5014
:Released: 2008-09-03
 
5015
 
 
5016
Bug Fixes
 
5017
*********
 
5018
 
 
5019
* Copying between ``rich-root`` and ``rich-root-pack`` (and vice
 
5020
  versa) was accidentally using the inter-model fetcher, instead of
 
5021
  recognizing that both were 'rich root' formats.
 
5022
  (John Arbash Meinel, #264321)
 
5023
 
 
5024
 
 
5025
bzr 1.6.1rc1
 
5026
############
 
5027
 
 
5028
:Released: 2008-08-29
172
5029
 
173
5030
This release fixes a few regressions found in the 1.6 client. Fetching
174
5031
changes was using an O(N^2) buffering algorithm, so for large projects it
183
5040
I should also clarify that none of this is data loss level issues, but
184
5041
still sufficient enough to warrant an updated release.
185
5042
 
186
 
  BUG FIXES:
187
 
 
188
 
    * ``RemoteTransport.readv()`` was being inefficient about how it
189
 
      buffered the readv data and processed it. It would keep appending to
190
 
      the same string (causing many copies) and then pop bytes out of the
191
 
      start of the string (causing more copies).
192
 
      With this patch "bzr+ssh://local" can improve dramatically,
193
 
      especially for projects with large files.
194
 
      (John Arbash Meinel)
195
 
 
196
 
    * Revision texts were always meant to be stored as fulltexts. There
197
 
      was a bug in a bzr.dev version that would accidentally create deltas
198
 
      when copying from a Pack repo to a Knit repo. This has been fixed,
199
 
      but to support those repositories, we know always request full texts
200
 
      for Revision texts. (John Arbash Meinel, #261339)
201
 
 
202
 
    * The previous ``--1.6-rich-root`` format used an incorrect xml
203
 
      serializer, which would accidentally support fetching from a
204
 
      repository that supported subtrees, even though the local one would
205
 
      not. We deprecated that format, and introduced a new one that uses
206
 
      the correct serializer ``--1.6.1-rich-root``.
207
 
      (John Arbash Meinel, #262333)
208
 
 
209
 
 
210
 
bzr 1.6 2008-08-25
211
 
------------------
 
5043
Bug Fixes
 
5044
*********
 
5045
 
 
5046
* ``RemoteTransport.readv()`` was being inefficient about how it
 
5047
  buffered the readv data and processed it. It would keep appending to
 
5048
  the same string (causing many copies) and then pop bytes out of the
 
5049
  start of the string (causing more copies).
 
5050
  With this patch "bzr+ssh://local" can improve dramatically,
 
5051
  especially for projects with large files.
 
5052
  (John Arbash Meinel)
 
5053
 
 
5054
* Revision texts were always meant to be stored as fulltexts. There
 
5055
  was a bug in a bzr.dev version that would accidentally create deltas
 
5056
  when copying from a Pack repo to a Knit repo. This has been fixed,
 
5057
  but to support those repositories, we know always request full texts
 
5058
  for Revision texts. (John Arbash Meinel, #261339)
 
5059
 
 
5060
* The previous ``--1.6-rich-root`` format used an incorrect xml
 
5061
  serializer, which would accidentally support fetching from a
 
5062
  repository that supported subtrees, even though the local one would
 
5063
  not. We deprecated that format, and introduced a new one that uses
 
5064
  the correct serializer ``--1.6.1-rich-root``.
 
5065
  (John Arbash Meinel, #262333)
 
5066
 
 
5067
 
 
5068
bzr 1.6
 
5069
#######
 
5070
 
 
5071
:Released: 2008-08-25
212
5072
 
213
5073
Finally, the long awaited bzr 1.6 has been released. This release includes
214
5074
new features like Stacked Branches, improved weave merge, and an updated
221
5081
TortoiseBzr in the standalone Windows installer.
222
5082
 
223
5083
 
224
 
bzr 1.6rc5 2008-08-19
225
 
---------------------
226
 
 
227
 
  BUG FIXES: 
228
 
 
229
 
    * Disable automatic detection of stacking based on a containing
230
 
      directory of the target. It interacted badly with push, and needs a
231
 
      bit more work to get the edges polished before it should happen
232
 
      automatically. (John Arbash Meinel, #259275)
233
 
      (This change was reverted when merged to bzr.dev)
234
 
  
235
 
 
236
 
bzr 1.6rc4 2008-08-18
237
 
---------------------
238
 
 
239
 
  BUG FIXES: 
240
 
 
241
 
    * Fix a regression in knit => pack fetching.  We had a logic
242
 
      inversion, causing the fetch to insert fulltexts in random order,
243
 
      rather than preserving deltas.  (John Arbash Meinel, #256757)
244
 
 
245
 
 
246
 
bzr 1.6rc3 2008-08-14
247
 
---------------------
248
 
 
249
 
  CHANGES:
250
 
 
251
 
    * Disable reading ``.bzrrules`` as a per-branch rule preferences
252
 
      file. The feature was not quite ready for a full release.
253
 
      (Robert Collins)
254
 
 
255
 
  IMPROVEMENTS:
256
 
 
257
 
    * Update the windows installer to bundle TortoiseBzr and ``qbzr``
258
 
      into the standalone installer. This will be the first official
259
 
      windows release that installs Tortoise by default.
260
 
      (Mark Hammond)
261
 
 
262
 
  BUG FIXES: 
263
 
 
264
 
    * Fix a regression in ``bzr+http`` support. There was a missing
265
 
      function (``_read_line``) that needed to be carried over from
266
 
      ``bzr+ssh`` support. (Andrew Bennetts)
267
 
 
268
 
    * ``GraphIndex`` objects will internally read an entire index if more
269
 
      than 1/20th of their keyspace is requested in a single operation.
270
 
      This largely mitigates a performance regression in ``bzr log FILE``
271
 
      and completely corrects the performance regression in ``bzr log``.
272
 
      The regression was caused by removing an accomodation which had been
273
 
      supporting the index format in use. A newer index format is in
274
 
      development which is substantially faster. (Robert Collins)
275
 
 
276
 
 
277
 
bzr 1.6rc2 2008-08-13
278
 
---------------------
 
5084
bzr 1.6rc5
 
5085
##########
 
5086
 
 
5087
:Released: 2008-08-19
 
5088
 
 
5089
Bug Fixes
 
5090
*********
 
5091
 
 
5092
* Disable automatic detection of stacking based on a containing
 
5093
  directory of the target. It interacted badly with push, and needs a
 
5094
  bit more work to get the edges polished before it should happen
 
5095
  automatically. (John Arbash Meinel, #259275)
 
5096
  (This change was reverted when merged to bzr.dev)
 
5097
 
 
5098
 
 
5099
bzr 1.6rc4
 
5100
##########
 
5101
 
 
5102
:Released: 2008-08-18
 
5103
 
 
5104
Bug Fixes
 
5105
*********
 
5106
 
 
5107
* Fix a regression in knit => pack fetching.  We had a logic
 
5108
  inversion, causing the fetch to insert fulltexts in random order,
 
5109
  rather than preserving deltas.  (John Arbash Meinel, #256757)
 
5110
 
 
5111
 
 
5112
bzr 1.6rc3
 
5113
##########
 
5114
 
 
5115
:Released: 2008-08-14
 
5116
 
 
5117
Changes
 
5118
*******
 
5119
 
 
5120
* Disable reading ``.bzrrules`` as a per-branch rule preferences
 
5121
  file. The feature was not quite ready for a full release.
 
5122
  (Robert Collins)
 
5123
 
 
5124
Improvements
 
5125
************
 
5126
 
 
5127
* Update the windows installer to bundle TortoiseBzr and ``qbzr``
 
5128
  into the standalone installer. This will be the first official
 
5129
  windows release that installs Tortoise by default.
 
5130
  (Mark Hammond)
 
5131
 
 
5132
Bug Fixes
 
5133
*********
 
5134
 
 
5135
* Fix a regression in ``bzr+http`` support. There was a missing
 
5136
  function (``_read_line``) that needed to be carried over from
 
5137
  ``bzr+ssh`` support. (Andrew Bennetts)
 
5138
 
 
5139
* ``GraphIndex`` objects will internally read an entire index if more
 
5140
  than 1/20th of their keyspace is requested in a single operation.
 
5141
  This largely mitigates a performance regression in ``bzr log FILE``
 
5142
  and completely corrects the performance regression in ``bzr log``.
 
5143
  The regression was caused by removing an accomodation which had been
 
5144
  supporting the index format in use. A newer index format is in
 
5145
  development which is substantially faster. (Robert Collins)
 
5146
 
 
5147
 
 
5148
bzr 1.6rc2
 
5149
##########
 
5150
 
 
5151
:Released: 2008-08-13
279
5152
 
280
5153
This release candidate has a few minor bug fixes, and some regression
281
5154
fixes for Windows.
282
5155
 
283
 
  BUG FIXES:
284
 
 
285
 
    * ``bzr upgrade`` on remote branches accessed via bzr:// and
286
 
      bzr+ssh:// now works.  (Andrew Bennetts)
287
 
 
288
 
    * Change the ``get_format_description()`` strings for
289
 
      ``RepositoryFormatKnitPack5`` et al to be single line messages.
290
 
      (Aaron Bentley)
291
 
 
292
 
    * Fix for a regression on Win32 where we would try to call
293
 
      ``os.listdir()`` on a file and not catch the exception properly.
294
 
      (Windows raises a different exception.) This would manifest in
295
 
      places like ``bzr rm file`` or ``bzr switch``.
296
 
      (Mark Hammond, John Arbash Meinel)
297
 
 
298
 
    * ``Inventory.copy()`` was failing to set the revision property for
299
 
      the root entry. (Jelmer Vernooij)
300
 
 
301
 
    * sftp transport: added missing ``FileExists`` case to
302
 
      ``_translate_io_exception`` (Christophe Troestler, #123475)
303
 
 
304
 
    * The help for ``bzr ignored`` now suggests ``bzr ls --ignored`` for
305
 
      scripting use. (Robert Collins, #3834)
306
 
 
307
 
    * The default ``annotate`` logic will now always assign the
308
 
      last-modified value of a line to one of the revisions that modified
309
 
      it, rather than a merge revision. This would happen when both sides
310
 
      claimed to have modified the line resulting in the same text. The
311
 
      choice is arbitrary but stable, so merges in different directions
312
 
      will get the same results.  (John Arbash Meinel, #232188)
313
 
 
314
 
 
315
 
bzr 1.6rc1 2008-08-06
316
 
---------------------
 
5156
Bug Fixes
 
5157
*********
 
5158
 
 
5159
* ``bzr upgrade`` on remote branches accessed via bzr:// and
 
5160
  bzr+ssh:// now works.  (Andrew Bennetts)
 
5161
 
 
5162
* Change the ``get_format_description()`` strings for
 
5163
  ``RepositoryFormatKnitPack5`` et al to be single line messages.
 
5164
  (Aaron Bentley)
 
5165
 
 
5166
* Fix for a regression on Win32 where we would try to call
 
5167
  ``os.listdir()`` on a file and not catch the exception properly.
 
5168
  (Windows raises a different exception.) This would manifest in
 
5169
  places like ``bzr rm file`` or ``bzr switch``.
 
5170
  (Mark Hammond, John Arbash Meinel)
 
5171
 
 
5172
* ``Inventory.copy()`` was failing to set the revision property for
 
5173
  the root entry. (Jelmer Vernooij)
 
5174
 
 
5175
* sftp transport: added missing ``FileExists`` case to
 
5176
  ``_translate_io_exception`` (Christophe Troestler, #123475)
 
5177
 
 
5178
* The help for ``bzr ignored`` now suggests ``bzr ls --ignored`` for
 
5179
  scripting use. (Robert Collins, #3834)
 
5180
 
 
5181
* The default ``annotate`` logic will now always assign the
 
5182
  last-modified value of a line to one of the revisions that modified
 
5183
  it, rather than a merge revision. This would happen when both sides
 
5184
  claimed to have modified the line resulting in the same text. The
 
5185
  choice is arbitrary but stable, so merges in different directions
 
5186
  will get the same results.  (John Arbash Meinel, #232188)
 
5187
 
 
5188
 
 
5189
bzr 1.6rc1
 
5190
##########
 
5191
 
 
5192
:Released: 2008-08-06
317
5193
 
318
5194
This release candidate for bzr 1.6 solidifies the new branch stacking
319
5195
feature.  Bazaar now recommends that users upgrade all knit repositories,
321
5197
upgrade support for knit repostories for the forseeable future.  Several
322
5198
other bugs and performance issues were fixed.
323
5199
 
324
 
  CHANGES:
325
 
 
326
 
    * Knit format repositories are deprecated and bzr will now emit
327
 
      warnings whenever it encounters one.  Use ``bzr upgrade`` to upgrade
328
 
      knit repositories to pack format.  (Andrew Bennetts)
329
 
 
330
 
  IMPROVEMENTS:
331
 
 
332
 
    * ``bzr check`` can now be told which elements at a location it should
333
 
      check.  (Daniel Watkins)
334
 
 
335
 
    * Commit now supports ``--exclude`` (or ``-x``) to exclude some files
336
 
      from the commit. (Robert Collins, #3117)
337
 
 
338
 
    * Fetching data between repositories that have the same model but no 
339
 
      optimised fetcher will not reserialise all the revisions, increasing
340
 
      performance. (Robert Collins, John Arbash Meinel)
341
 
 
342
 
    * Give a more specific error when target branch is not reachable.
343
 
      (James Westby)
344
 
 
345
 
    * Implemented a custom ``walkdirs_utf8`` implementation for win32.
346
 
      This uses a pyrex extension to get direct access to the
347
 
      ``FindFirstFileW`` style apis, rather than using ``listdir`` +
348
 
      ``lstat``. Shows a very strong improvement in commands like
349
 
      ``status`` and ``diff`` which have to iterate the working tree.
350
 
      Anywhere from 2x-6x faster depending on the size of the tree (bigger
351
 
      trees, bigger benefit.) (John Arbash Meinel)
352
 
 
353
 
    * New registry for log properties handles  and the method in 
354
 
      LongLogFormatter to display the custom properties returned by the 
355
 
      registered handlers. (Guillermo Gonzalez, #162469)
356
 
 
357
 
  BUG FIXES:
358
 
 
359
 
    * Add more tests that stacking does not create deltas spanning
360
 
      physical repository boundaries.
361
 
      (Martin Pool, #252428)
362
 
 
363
 
    * Better message about incompatible repositories.
364
 
      (Martin Pool, #206258)
365
 
 
366
 
    * ``bzr branch --stacked`` ensures the destination branch format can
367
 
      support stacking, even if the origin does not.
368
 
      (Martin Pool)
369
 
 
370
 
    * ``bzr export`` no longer exports ``.bzrrules``.
371
 
      (Ian Clatworthy)
372
 
 
373
 
    * ``bzr serve --directory=/`` now correctly allows the whole
374
 
      filesystem to be accessed on Windows, not just the root of the drive
375
 
      that Python is running from.
376
 
      (Adrian Wilkins, #240910)
377
 
 
378
 
    * Deleting directories by hand before running ``bzr rm`` will not
379
 
      cause subsequent errors in ``bzr st`` and ``bzr commit``.
380
 
      (Robert Collins, #150438)
381
 
 
382
 
    * Fix a test case that was failing if encoding wasn't UTF-8.
383
 
      (John Arbash Meinel, #247585)
384
 
 
385
 
    * Fix "no buffer space available" error when branching with the new
386
 
      smart server protocol to or from Windows.
387
 
      (Andrew Bennetts, #246180)
388
 
 
389
 
    * Fixed problem in branching from smart server.
390
 
      (#249256, Michael Hudson, Martin Pool) 
391
 
 
392
 
    * Handle a file turning in to a directory in TreeTransform.
393
 
      (James Westby, #248448)
394
 
 
395
 
  API CHANGES:
396
 
 
397
 
    * ``MutableTree.commit`` has an extra optional keywork parameter
398
 
      ``exclude`` that will be unconditionally supplied by the command
399
 
      line UI - plugins that add tree formats may need an update.
400
 
      (Robert Collins)
401
 
 
402
 
    * The API minimum version for plugin compatibility has been raised to
403
 
      1.6 - there are significant changes throughout the code base.
404
 
      (Robert Collins)
405
 
 
406
 
    * The generic fetch code now uses three attributes on Repository objects
407
 
      to control fetch. The streams requested are controlled via :
408
 
      ``_fetch_order`` and ``_fetch_uses_deltas``. Setting these
409
 
      appropriately allows different repository implementations to recieve
410
 
      data in their optimial form. If the ``_fetch_reconcile`` is set then
411
 
      a reconcile operation is triggered at the end of the fetch.
412
 
      (Robert Collins)
413
 
 
414
 
    * The ``put_on_disk`` and ``get_tar_item`` methods in
415
 
      ``InventoryEntry`` were deprecated. (Ian Clatworthy)
416
 
 
417
 
    * ``Repository.is_shared`` doesn't take a read lock. It didn't
418
 
      need one in the first place (nobody cached the value, and
419
 
      ``RemoteRepository`` wasn't taking one either). This saves a round
420
 
      trip when probing Pack repositories, as they read the ``pack-names``
421
 
      file when locked. And during probe, locking the repo isn't very
422
 
      useful. (John Arbash Meinel)
423
 
 
424
 
  INTERNALS:
425
 
 
426
 
    * ``bzrlib.branchbuilder.BranchBuilder`` is now much more capable of
427
 
      putting together a real history without having to create a full
428
 
      WorkingTree. It is recommended that tests that are not directly
429
 
      testing the WorkingTree use BranchBuilder instead.  See
430
 
      ``BranchBuilder.build_snapshot`` or
431
 
      ``TestCaseWithMemoryTree.make_branch_builder``.  (John Arbash Meinel)
432
 
 
433
 
    * ``bzrlib.builtins.internal_tree_files`` broken into two giving a new
434
 
      helper ``safe_relpath_files`` - used by the new ``exclude``
435
 
      parameter to commit. (Robert Collins)
436
 
 
437
 
    * Make it easier to introduce new WorkingTree formats.
438
 
      (Ian Clatworthy)
439
 
 
440
 
    * The code for exporting trees was refactored not to use the
441
 
      deprecated ``InventoryEntry`` methods. (Ian Clatworthy)
442
 
 
443
 
    * RuleSearchers return () instead of [] now when there are no matches.
444
 
      (Ian Clatworthy)
445
 
 
446
 
 
447
 
bzr 1.6beta3 2008-07-17
448
 
-----------------------
 
5200
Changes
 
5201
*******
 
5202
 
 
5203
* Knit format repositories are deprecated and bzr will now emit
 
5204
  warnings whenever it encounters one.  Use ``bzr upgrade`` to upgrade
 
5205
  knit repositories to pack format.  (Andrew Bennetts)
 
5206
 
 
5207
Improvements
 
5208
************
 
5209
 
 
5210
* ``bzr check`` can now be told which elements at a location it should
 
5211
  check.  (Daniel Watkins)
 
5212
 
 
5213
* Commit now supports ``--exclude`` (or ``-x``) to exclude some files
 
5214
  from the commit. (Robert Collins, #3117)
 
5215
 
 
5216
* Fetching data between repositories that have the same model but no
 
5217
  optimised fetcher will not reserialise all the revisions, increasing
 
5218
  performance. (Robert Collins, John Arbash Meinel)
 
5219
 
 
5220
* Give a more specific error when target branch is not reachable.
 
5221
  (James Westby)
 
5222
 
 
5223
* Implemented a custom ``walkdirs_utf8`` implementation for win32.
 
5224
  This uses a pyrex extension to get direct access to the
 
5225
  ``FindFirstFileW`` style apis, rather than using ``listdir`` +
 
5226
  ``lstat``. Shows a very strong improvement in commands like
 
5227
  ``status`` and ``diff`` which have to iterate the working tree.
 
5228
  Anywhere from 2x-6x faster depending on the size of the tree (bigger
 
5229
  trees, bigger benefit.) (John Arbash Meinel)
 
5230
 
 
5231
* New registry for log properties handles  and the method in
 
5232
  LongLogFormatter to display the custom properties returned by the
 
5233
  registered handlers. (Guillermo Gonzalez, #162469)
 
5234
 
 
5235
Bug Fixes
 
5236
*********
 
5237
 
 
5238
* Add more tests that stacking does not create deltas spanning
 
5239
  physical repository boundaries.
 
5240
  (Martin Pool, #252428)
 
5241
 
 
5242
* Better message about incompatible repositories.
 
5243
  (Martin Pool, #206258)
 
5244
 
 
5245
* ``bzr branch --stacked`` ensures the destination branch format can
 
5246
  support stacking, even if the origin does not.
 
5247
  (Martin Pool)
 
5248
 
 
5249
* ``bzr export`` no longer exports ``.bzrrules``.
 
5250
  (Ian Clatworthy)
 
5251
 
 
5252
* ``bzr serve --directory=/`` now correctly allows the whole
 
5253
  filesystem to be accessed on Windows, not just the root of the drive
 
5254
  that Python is running from.
 
5255
  (Adrian Wilkins, #240910)
 
5256
 
 
5257
* Deleting directories by hand before running ``bzr rm`` will not
 
5258
  cause subsequent errors in ``bzr st`` and ``bzr commit``.
 
5259
  (Robert Collins, #150438)
 
5260
 
 
5261
* Fix a test case that was failing if encoding wasn't UTF-8.
 
5262
  (John Arbash Meinel, #247585)
 
5263
 
 
5264
* Fix "no buffer space available" error when branching with the new
 
5265
  smart server protocol to or from Windows.
 
5266
  (Andrew Bennetts, #246180)
 
5267
 
 
5268
* Fixed problem in branching from smart server.
 
5269
  (#249256, Michael Hudson, Martin Pool)
 
5270
 
 
5271
* Handle a file turning in to a directory in TreeTransform.
 
5272
  (James Westby, #248448)
 
5273
 
 
5274
API Changes
 
5275
***********
 
5276
 
 
5277
* ``MutableTree.commit`` has an extra optional keywork parameter
 
5278
  ``exclude`` that will be unconditionally supplied by the command
 
5279
  line UI - plugins that add tree formats may need an update.
 
5280
  (Robert Collins)
 
5281
 
 
5282
* The API minimum version for plugin compatibility has been raised to
 
5283
  1.6 - there are significant changes throughout the code base.
 
5284
  (Robert Collins)
 
5285
 
 
5286
* The generic fetch code now uses three attributes on Repository objects
 
5287
  to control fetch. The streams requested are controlled via :
 
5288
  ``_fetch_order`` and ``_fetch_uses_deltas``. Setting these
 
5289
  appropriately allows different repository implementations to recieve
 
5290
  data in their optimial form. If the ``_fetch_reconcile`` is set then
 
5291
  a reconcile operation is triggered at the end of the fetch.
 
5292
  (Robert Collins)
 
5293
 
 
5294
* The ``put_on_disk`` and ``get_tar_item`` methods in
 
5295
  ``InventoryEntry`` were deprecated. (Ian Clatworthy)
 
5296
 
 
5297
* ``Repository.is_shared`` doesn't take a read lock. It didn't
 
5298
  need one in the first place (nobody cached the value, and
 
5299
  ``RemoteRepository`` wasn't taking one either). This saves a round
 
5300
  trip when probing Pack repositories, as they read the ``pack-names``
 
5301
  file when locked. And during probe, locking the repo isn't very
 
5302
  useful. (John Arbash Meinel)
 
5303
 
 
5304
Internals
 
5305
*********
 
5306
 
 
5307
* ``bzrlib.branchbuilder.BranchBuilder`` is now much more capable of
 
5308
  putting together a real history without having to create a full
 
5309
  WorkingTree. It is recommended that tests that are not directly
 
5310
  testing the WorkingTree use BranchBuilder instead.  See
 
5311
  ``BranchBuilder.build_snapshot`` or
 
5312
  ``TestCaseWithMemoryTree.make_branch_builder``.  (John Arbash Meinel)
 
5313
 
 
5314
* ``bzrlib.builtins.internal_tree_files`` broken into two giving a new
 
5315
  helper ``safe_relpath_files`` - used by the new ``exclude``
 
5316
  parameter to commit. (Robert Collins)
 
5317
 
 
5318
* Make it easier to introduce new WorkingTree formats.
 
5319
  (Ian Clatworthy)
 
5320
 
 
5321
* The code for exporting trees was refactored not to use the
 
5322
  deprecated ``InventoryEntry`` methods. (Ian Clatworthy)
 
5323
 
 
5324
* RuleSearchers return () instead of [] now when there are no matches.
 
5325
  (Ian Clatworthy)
 
5326
 
 
5327
 
 
5328
bzr 1.6beta3
 
5329
############
 
5330
 
 
5331
:Released: 2008-07-17
449
5332
 
450
5333
This release adds a new 'stacked branches' feature allowing branches to
451
5334
share storage without being in the same repository or on the same machine.
453
5336
weaves, aliases for related locations, faster bzr+ssh push, and several
454
5337
bug fixes.
455
5338
 
456
 
  FEATURES:
457
 
 
458
 
    * New ``pre_change_branch_tip`` hook that is called before the
459
 
      branch tip is moved, while the branch is write-locked.  See the User
460
 
      Reference for signature details.  (Andrew Bennetts)
461
 
 
462
 
    * Rule-based preferences can now be defined for selected files in
463
 
      selected branches, allowing commands and plugins to provide
464
 
      custom behaviour for files matching defined patterns.
465
 
      See ``Rule-based preferences`` (part of ``Configuring Bazaar``)
466
 
      in the User Guide and ``bzr help rules`` for more information.
467
 
      (Ian Clatworthy)
468
 
 
469
 
    * Sites may suggest a branch to stack new branches on.  (Aaron Bentley)
470
 
 
471
 
    * Stacked branches are now supported. See ``bzr help branch`` and 
472
 
      ``bzr help push``.  Branches must be in the ``development1`` format
473
 
      to stack, though the stacked-on branch can be of any format. 
474
 
      (Robert Collins)
475
 
 
476
 
  IMPROVEMENTS:
477
 
 
478
 
    * ``bzr export --format=tgz --root=NAME -`` to export a gzipped tarball 
479
 
      to stdout; also ``tar`` and ``tbz2``.
480
 
      (Martin Pool)
481
 
 
482
 
    * ``bzr (re)merge --weave`` will now use a standard Weave algorithm,
483
 
      rather than the annotation-based merge it was using. It does so by
484
 
      building up a Weave of the important texts, without needing to build
485
 
      the full ancestry. (John Arbash Meinel, #238895)
486
 
 
487
 
    * ``bzr send`` documents and better supports ``emacsclient`` (proper
488
 
      escaping of mail headers and handling of the MUA Mew).
489
 
      (Christophe Troestler)
490
 
 
491
 
    * Remembered locations can be specified by aliases, e.g. :parent, :public,
492
 
      :submit.  (Aaron Bentley)
493
 
 
494
 
    * The smart protocol now has improved support for setting branches'
495
 
      revision info directly.  This makes operations like push
496
 
      faster.  The new request method name is
497
 
      ``Branch.set_last_revision_ex``.  (Andrew Bennetts)
498
 
 
499
 
  BUG FIXES:
500
 
 
501
 
    * Bazaar is now able to be a client to the web server of IIS 6 and 7.
502
 
      The broken implementations of RFC822 in Python and RFC2046 in IIS
503
 
      combined with boundary-line checking in Bazaar previously made this
504
 
      impossible. (NB, IIS 5 does not suffer from this problem).
505
 
      (Adrian Wilkins, #247585)
506
 
 
507
 
    * ``bzr log --long`` with a ghost in your mainline now handles that
508
 
      ghost properly. (John Arbash Meinel, #243536)
509
 
 
510
 
    * ``check`` handles the split-up .bzr layout correctly, so no longer
511
 
      requires a branch to be present.
512
 
      (Daniel Watkins, #64783)
513
 
 
514
 
    * Clearer message about how to set the PYTHONPATH if bzrlib can't be
515
 
      loaded. 
516
 
      (Martin Pool, #205230)
517
 
 
518
 
    * Errors about missing libraries are now shown without a traceback,
519
 
      and with a suggestion to install the library.  The full traceback is 
520
 
      still in ``.bzr.log`` and can be shown with ``-Derror``.
521
 
      (Martin Pool, #240161)
522
 
 
523
 
    * Fetch from a stacked branch copies all required data.
524
 
      (Aaron Bentley, #248506)
525
 
 
526
 
    * Handle urls such as ftp://user@host.com@www.host.com where the user
527
 
      name contains an @.
528
 
      (Neil Martinsen-Burrell, #228058)
529
 
 
530
 
    * ``needs_read_lock`` and ``needs_write_lock`` now suppress an error during
531
 
      ``unlock`` if there was an error in the original function. This helps
532
 
      most when there is a failure with a smart server action, since often the
533
 
      connection closes and we cannot unlock.
534
 
      (Andrew Bennetts, John Arbash Meinel, #125784)
535
 
 
536
 
    * Obsolete hidden command ``bzr fetch`` removed.
537
 
      (Martin Pool, #172870)
538
 
 
539
 
    * Raise the correct exception when doing ``-rbefore:0`` or ``-c0``.
540
 
      (John Arbash Meinel, #239933)
541
 
 
542
 
    * You can now compare file revisions in Windows diff programs from 
543
 
      Cygwin Bazaar.
544
 
      (Matt McClure, #209281)
545
 
 
546
 
    * revision_history now tolerates mainline ghosts for Branch format 6.
547
 
      (Aaron Bentley, #235055)
548
 
 
549
 
    * Set locale from environment for third party libs.
550
 
      (Martin von Gagern, #128496)
551
 
 
552
 
  DOCUMENTATION:
553
 
 
554
 
    * Added *Using stacked branches* to the User Guide.
555
 
      (Ian Clatworthy)
556
 
 
557
 
    * Updated developer documentation.
558
 
      (Martin Pool)
559
 
 
560
 
  TESTING:
561
 
 
562
 
   * ``-Dmemory`` will cause /proc/PID/status to be catted before bzr
563
 
     exits, allowing low-key analysis of peak memory use. (Robert Collins)
564
 
 
565
 
   * ``TestCaseWithTransport.make_branch_and_tree`` tries harder to return
566
 
     a tree with a ``branch`` attribute of the right format.  This was
567
 
     preventing some ``RemoteBranch`` tests from actually running with
568
 
     ``RemoteBranch`` instances.  (Andrew Bennetts)
569
 
 
570
 
  API CHANGES:
571
 
 
572
 
    * Removed ``Repository.text_store``, ``control_store``, etc.  Instead,
573
 
      there are new attributes ``texts, inventories, revisions,
574
 
      signatures``, each of which is a ``VersionedFiles``.  See the
575
 
      Repository docstring for more details.
576
 
      (Robert Collins)
577
 
 
578
 
    * ``Branch.pull`` now accepts an ``_override_hook_target`` optional
579
 
      parameter.  If you have a subclass of ``Branch`` that overrides
580
 
      ``pull`` then you should add this parameter.  (Andrew Bennetts)
581
 
 
582
 
    * ``bzrlib.check.check()`` has been deprecated in favour of the more
583
 
      aptly-named ``bzrlib.check.check_branch()``.
584
 
      (Daniel Watkins)
585
 
 
586
 
    * ``Tree.print_file`` and ``Repository.print_file`` are deprecated.
587
 
      These methods are bad APIs because they write directly to sys.stdout.
588
 
      bzrlib does not use them internally, and there are no direct tests
589
 
      for them. (Alexander Belchenko)
590
 
 
591
 
  INTERNALS:
592
 
 
593
 
    * ``cat`` command no longer uses ``Tree.print_file()`` internally.
594
 
      (Alexander Belchenko)
595
 
 
596
 
    * New class method ``BzrDir.open_containing_tree_branch_or_repository``
597
 
      which eases the discovery of the tree, the branch and the repository
598
 
      containing a given location.
599
 
      (Daniel Watkins)
600
 
 
601
 
    * New ``versionedfile.KeyMapper`` interface to abstract out the access to
602
 
      underlying .knit/.kndx etc files in repositories with partitioned
603
 
      storage. (Robert Collins)
604
 
 
605
 
    * Obsolete developer-use command ``weave-join`` has been removed.
606
 
      (Robert Collins)
607
 
 
608
 
    * ``RemoteToOtherFetcher`` and ``get_data_stream_for_search`` removed,
609
 
      to support new ``VersionedFiles`` layering.
610
 
      (Robert Collins)
611
 
 
612
 
 
613
 
bzr 1.6beta2 2008-06-10
614
 
-----------------------
 
5339
Features
 
5340
********
 
5341
 
 
5342
* New ``pre_change_branch_tip`` hook that is called before the
 
5343
  branch tip is moved, while the branch is write-locked.  See the User
 
5344
  Reference for signature details.  (Andrew Bennetts)
 
5345
 
 
5346
* Rule-based preferences can now be defined for selected files in
 
5347
  selected branches, allowing commands and plugins to provide
 
5348
  custom behaviour for files matching defined patterns.
 
5349
  See ``Rule-based preferences`` (part of ``Configuring Bazaar``)
 
5350
  in the User Guide and ``bzr help rules`` for more information.
 
5351
  (Ian Clatworthy)
 
5352
 
 
5353
* Sites may suggest a branch to stack new branches on.  (Aaron Bentley)
 
5354
 
 
5355
* Stacked branches are now supported. See ``bzr help branch`` and
 
5356
  ``bzr help push``.  Branches must be in the ``development1`` format
 
5357
  to stack, though the stacked-on branch can be of any format.
 
5358
  (Robert Collins)
 
5359
 
 
5360
Improvements
 
5361
************
 
5362
 
 
5363
* ``bzr export --format=tgz --root=NAME -`` to export a gzipped tarball
 
5364
  to stdout; also ``tar`` and ``tbz2``.
 
5365
  (Martin Pool)
 
5366
 
 
5367
* ``bzr (re)merge --weave`` will now use a standard Weave algorithm,
 
5368
  rather than the annotation-based merge it was using. It does so by
 
5369
  building up a Weave of the important texts, without needing to build
 
5370
  the full ancestry. (John Arbash Meinel, #238895)
 
5371
 
 
5372
* ``bzr send`` documents and better supports ``emacsclient`` (proper
 
5373
  escaping of mail headers and handling of the MUA Mew).
 
5374
  (Christophe Troestler)
 
5375
 
 
5376
* Remembered locations can be specified by aliases, e.g. :parent, :public,
 
5377
  :submit.  (Aaron Bentley)
 
5378
 
 
5379
* The smart protocol now has improved support for setting branches'
 
5380
  revision info directly.  This makes operations like push
 
5381
  faster.  The new request method name is
 
5382
  ``Branch.set_last_revision_ex``.  (Andrew Bennetts)
 
5383
 
 
5384
Bug Fixes
 
5385
*********
 
5386
 
 
5387
* Bazaar is now able to be a client to the web server of IIS 6 and 7.
 
5388
  The broken implementations of RFC822 in Python and RFC2046 in IIS
 
5389
  combined with boundary-line checking in Bazaar previously made this
 
5390
  impossible. (NB, IIS 5 does not suffer from this problem).
 
5391
  (Adrian Wilkins, #247585)
 
5392
 
 
5393
* ``bzr log --long`` with a ghost in your mainline now handles that
 
5394
  ghost properly. (John Arbash Meinel, #243536)
 
5395
 
 
5396
* ``check`` handles the split-up .bzr layout correctly, so no longer
 
5397
  requires a branch to be present.
 
5398
  (Daniel Watkins, #64783)
 
5399
 
 
5400
* Clearer message about how to set the PYTHONPATH if bzrlib can't be
 
5401
  loaded.
 
5402
  (Martin Pool, #205230)
 
5403
 
 
5404
* Errors about missing libraries are now shown without a traceback,
 
5405
  and with a suggestion to install the library.  The full traceback is
 
5406
  still in ``.bzr.log`` and can be shown with ``-Derror``.
 
5407
  (Martin Pool, #240161)
 
5408
 
 
5409
* Fetch from a stacked branch copies all required data.
 
5410
  (Aaron Bentley, #248506)
 
5411
 
 
5412
* Handle urls such as ftp://user@host.com@www.host.com where the user
 
5413
  name contains an @.
 
5414
  (Neil Martinsen-Burrell, #228058)
 
5415
 
 
5416
* ``needs_read_lock`` and ``needs_write_lock`` now suppress an error during
 
5417
  ``unlock`` if there was an error in the original function. This helps
 
5418
  most when there is a failure with a smart server action, since often the
 
5419
  connection closes and we cannot unlock.
 
5420
  (Andrew Bennetts, John Arbash Meinel, #125784)
 
5421
 
 
5422
* Obsolete hidden command ``bzr fetch`` removed.
 
5423
  (Martin Pool, #172870)
 
5424
 
 
5425
* Raise the correct exception when doing ``-rbefore:0`` or ``-c0``.
 
5426
  (John Arbash Meinel, #239933)
 
5427
 
 
5428
* You can now compare file revisions in Windows diff programs from
 
5429
  Cygwin Bazaar.
 
5430
  (Matt McClure, #209281)
 
5431
 
 
5432
* revision_history now tolerates mainline ghosts for Branch format 6.
 
5433
  (Aaron Bentley, #235055)
 
5434
 
 
5435
* Set locale from environment for third party libs.
 
5436
  (Martin von Gagern, #128496)
 
5437
 
 
5438
Documentation
 
5439
*************
 
5440
 
 
5441
* Added *Using stacked branches* to the User Guide.
 
5442
  (Ian Clatworthy)
 
5443
 
 
5444
* Updated developer documentation.
 
5445
  (Martin Pool)
 
5446
 
 
5447
Testing
 
5448
*******
 
5449
 
 
5450
* ``-Dmemory`` will cause /proc/PID/status to be catted before bzr
 
5451
  exits, allowing low-key analysis of peak memory use. (Robert Collins)
 
5452
 
 
5453
* ``TestCaseWithTransport.make_branch_and_tree`` tries harder to return
 
5454
  a tree with a ``branch`` attribute of the right format.  This was
 
5455
  preventing some ``RemoteBranch`` tests from actually running with
 
5456
  ``RemoteBranch`` instances.  (Andrew Bennetts)
 
5457
 
 
5458
API Changes
 
5459
***********
 
5460
 
 
5461
* Removed ``Repository.text_store``, ``control_store``, etc.  Instead,
 
5462
  there are new attributes ``texts, inventories, revisions,
 
5463
  signatures``, each of which is a ``VersionedFiles``.  See the
 
5464
  Repository docstring for more details.
 
5465
  (Robert Collins)
 
5466
 
 
5467
* ``Branch.pull`` now accepts an ``_override_hook_target`` optional
 
5468
  parameter.  If you have a subclass of ``Branch`` that overrides
 
5469
  ``pull`` then you should add this parameter.  (Andrew Bennetts)
 
5470
 
 
5471
* ``bzrlib.check.check()`` has been deprecated in favour of the more
 
5472
  aptly-named ``bzrlib.check.check_branch()``.
 
5473
  (Daniel Watkins)
 
5474
 
 
5475
* ``Tree.print_file`` and ``Repository.print_file`` are deprecated.
 
5476
  These methods are bad APIs because they write directly to sys.stdout.
 
5477
  bzrlib does not use them internally, and there are no direct tests
 
5478
  for them. (Alexander Belchenko)
 
5479
 
 
5480
Internals
 
5481
*********
 
5482
 
 
5483
* ``cat`` command no longer uses ``Tree.print_file()`` internally.
 
5484
  (Alexander Belchenko)
 
5485
 
 
5486
* New class method ``BzrDir.open_containing_tree_branch_or_repository``
 
5487
  which eases the discovery of the tree, the branch and the repository
 
5488
  containing a given location.
 
5489
  (Daniel Watkins)
 
5490
 
 
5491
* New ``versionedfile.KeyMapper`` interface to abstract out the access to
 
5492
  underlying .knit/.kndx etc files in repositories with partitioned
 
5493
  storage. (Robert Collins)
 
5494
 
 
5495
* Obsolete developer-use command ``weave-join`` has been removed.
 
5496
  (Robert Collins)
 
5497
 
 
5498
* ``RemoteToOtherFetcher`` and ``get_data_stream_for_search`` removed,
 
5499
  to support new ``VersionedFiles`` layering.
 
5500
  (Robert Collins)
 
5501
 
 
5502
 
 
5503
bzr 1.6beta2
 
5504
############
 
5505
 
 
5506
:Released: 2008-06-10
615
5507
 
616
5508
This release contains further progress towards our 1.6 goals of shallow
617
5509
repositories, and contains a fix for some user-affecting bugs in the
618
5510
repository layer.  Building working trees during checkout and branch is
619
5511
now faster.
620
5512
 
621
 
  BUG FIXES:
622
 
 
623
 
    * Avoid KnitCorrupt error extracting inventories from some repositories.
624
 
      (The data is not corrupt; an internal check is detecting a problem
625
 
      reading from the repository.)
626
 
      (Martin Pool, Andrew Bennetts, Robert Collins, #234748)
627
 
 
628
 
    * ``bzr status`` was breaking if you merged the same revision twice.
629
 
      (John Arbash Meinel, #235407)
630
 
 
631
 
    * Fix infinite loop consuming 100% CPU when a connection is lost while
632
 
      reading a response body via the smart protocol v1 or v2.
633
 
      (Andrew Bennetts)
634
 
      
635
 
    * Inserting a bundle which changes the contents of a file with no trailing
636
 
      end of line, causing a knit snapshot in a 'knits' repository will no longer
637
 
      cause KnitCorrupt. (Robert Collins)
638
 
 
639
 
    * ``RemoteBranch.pull`` needs to return the ``self._real_branch``'s
640
 
      pull result. It was instead just returning None, which breaks ``bzr
641
 
      pull``. (John Arbash Meinel, #238149)
642
 
 
643
 
    * Sanitize branch nick before using it as an attachment filename in
644
 
      ``bzr send``. (Lukáš Lalinský, #210218)
645
 
 
646
 
    * Squash ``inv_entry.symlink_target`` to a plain string when
647
 
      generating DirState details. This prevents from getting a
648
 
      ``UnicodeError`` when you have symlinks and non-ascii filenames.
649
 
      (John Arbash Meinel, #135320)
650
 
 
651
 
  IMPROVEMENTS:
652
 
 
653
 
    * Added the 'alias' command to set/unset and display aliases. (Tim Penhey)
654
 
 
655
 
    * ``added``, ``modified``, and ``unknowns`` behaviour made consistent (all three
656
 
      now quote paths where required). Added ``--null`` option to ``added`` and 
657
 
      ``modified`` (for null-separated unknowns, use ``ls --unknown --null``)
658
 
      (Adrian Wilkins)
659
 
 
660
 
    * Faster branching (1.09x) and lightweight checkouts (1.06x) on large trees.
661
 
      (Ian Clatworthy, Aaron Bentley)
662
 
 
663
 
  DOCUMENTATION:
664
 
 
665
 
    * Added *Bazaar Zen* section to the User Guide. (Ian Clatworthy)
666
 
 
667
 
  TESTING:
668
 
 
669
 
    * Fix the test HTTPServer to be isolated from chdir calls made while it is
670
 
      running, allowing it to be used in blackbox tests. (Robert Collins)
671
 
 
672
 
  API CHANGES:
673
 
 
674
 
    * ``WorkingTree.set_parent_(ids/trees)`` will now filter out revisions
675
 
      which are in the ancestry of other revisions. So if you merge the same
676
 
      tree twice, or merge an ancestor of an existing merge, it will only
677
 
      record the newest. (If you merge a descendent, it will replace its
678
 
      ancestor). (John Arbash Meinel, #235407)
679
 
 
680
 
    * ``RepositoryPolicy.__init__`` now requires stack_on and stack_on_pwd,
681
 
      through the derived classes do not.  (Aaron Bentley)
682
 
 
683
 
  INTERNALS:
684
 
 
685
 
    * ``bzrlib.bzrdir.BzrDir.sprout`` now accepts ``stacked`` to control
686
 
      creating stacked branches. (Robert Collins)
687
 
 
688
 
    * Knit record serialisation is now stricter on what it will accept, to
689
 
      guard against potential internal bugs, or broken input. (Robert Collins)
690
 
 
691
 
 
692
 
bzr 1.6beta1 2008-06-02
693
 
-----------------------
694
 
 
 
5513
Bug Fixes
 
5514
*********
 
5515
 
 
5516
* Avoid KnitCorrupt error extracting inventories from some repositories.
 
5517
  (The data is not corrupt; an internal check is detecting a problem
 
5518
  reading from the repository.)
 
5519
  (Martin Pool, Andrew Bennetts, Robert Collins, #234748)
 
5520
 
 
5521
* ``bzr status`` was breaking if you merged the same revision twice.
 
5522
  (John Arbash Meinel, #235407)
 
5523
 
 
5524
* Fix infinite loop consuming 100% CPU when a connection is lost while
 
5525
  reading a response body via the smart protocol v1 or v2.
 
5526
  (Andrew Bennetts)
 
5527
 
 
5528
* Inserting a bundle which changes the contents of a file with no trailing
 
5529
  end of line, causing a knit snapshot in a 'knits' repository will no longer
 
5530
  cause KnitCorrupt. (Robert Collins)
 
5531
 
 
5532
* ``RemoteBranch.pull`` needs to return the ``self._real_branch``'s
 
5533
  pull result. It was instead just returning None, which breaks ``bzr
 
5534
  pull``. (John Arbash Meinel, #238149)
 
5535
 
 
5536
* Sanitize branch nick before using it as an attachment filename in
 
5537
  ``bzr send``. (Lukáš Lalinský, #210218)
 
5538
 
 
5539
* Squash ``inv_entry.symlink_target`` to a plain string when
 
5540
  generating DirState details. This prevents from getting a
 
5541
  ``UnicodeError`` when you have symlinks and non-ascii filenames.
 
5542
  (John Arbash Meinel, #135320)
 
5543
 
 
5544
Improvements
 
5545
************
 
5546
 
 
5547
* Added the 'alias' command to set/unset and display aliases. (Tim Penhey)
 
5548
 
 
5549
* ``added``, ``modified``, and ``unknowns`` behaviour made consistent (all three
 
5550
  now quote paths where required). Added ``--null`` option to ``added`` and
 
5551
  ``modified`` (for null-separated unknowns, use ``ls --unknown --null``)
 
5552
  (Adrian Wilkins)
 
5553
 
 
5554
* Faster branching (1.09x) and lightweight checkouts (1.06x) on large trees.
 
5555
  (Ian Clatworthy, Aaron Bentley)
 
5556
 
 
5557
Documentation
 
5558
*************
 
5559
 
 
5560
* Added *Bazaar Zen* section to the User Guide. (Ian Clatworthy)
 
5561
 
 
5562
Testing
 
5563
*******
 
5564
 
 
5565
* Fix the test HTTPServer to be isolated from chdir calls made while it is
 
5566
  running, allowing it to be used in blackbox tests. (Robert Collins)
 
5567
 
 
5568
API Changes
 
5569
***********
 
5570
 
 
5571
* ``WorkingTree.set_parent_(ids/trees)`` will now filter out revisions
 
5572
  which are in the ancestry of other revisions. So if you merge the same
 
5573
  tree twice, or merge an ancestor of an existing merge, it will only
 
5574
  record the newest. (If you merge a descendent, it will replace its
 
5575
  ancestor). (John Arbash Meinel, #235407)
 
5576
 
 
5577
* ``RepositoryPolicy.__init__`` now requires stack_on and stack_on_pwd,
 
5578
  through the derived classes do not.  (Aaron Bentley)
 
5579
 
 
5580
Internals
 
5581
*********
 
5582
 
 
5583
* ``bzrlib.bzrdir.BzrDir.sprout`` now accepts ``stacked`` to control
 
5584
  creating stacked branches. (Robert Collins)
 
5585
 
 
5586
* Knit record serialisation is now stricter on what it will accept, to
 
5587
  guard against potential internal bugs, or broken input. (Robert Collins)
 
5588
 
 
5589
bzr 1.6beta1
 
5590
############
 
5591
 
 
5592
:Released: 2008-06-02
695
5593
 
696
5594
Commands that work on the revision history such as push, pull, missing,
697
5595
uncommit and log are now substantially faster.  This release adds a
701
5599
and future extensions.
702
5600
 
703
5601
 
704
 
  NOTES WHEN UPGRADING:
705
 
 
706
 
    * There is a new version of the network protocol used for bzr://, bzr+ssh://
707
 
      and bzr+http:// connections.  This will allow more efficient requests and
708
 
      responses, and more graceful fallback when a server is too old to
709
 
      recognise a request from a more recent client.  Bazaar 1.6 will
710
 
      interoperate with 0.16 and later versions, but servers should be upgraded
711
 
      when possible.  Bazaar 1.6 no longer interoperates with 0.15 and earlier via
712
 
      these protocols.  Use alternatives like SFTP or upgrade those servers.
713
 
      (Andrew Bennetts, #83935)
714
 
 
715
 
  CHANGES:
716
 
 
717
 
    * Deprecation warnings will not be suppressed when running ``bzr selftest``
718
 
      so that developers can see if their code is using deprecated functions.
719
 
      (John Arbash Meinel)
720
 
 
721
 
  FEATURES:
722
 
 
723
 
    * Adding ``-Derror`` will now display a traceback when a plugin fails to
724
 
      load. (James Westby)
725
 
 
726
 
  IMPROVEMENTS:
727
 
 
728
 
    * ``bzr branch/push/pull -r XXX`` now have a helper function for finding
729
 
      the revno of the new revision (``Graph.find_distance_to_null``). This
730
 
      should make something like ``bzr branch -r -100`` in a shared, no-trees
731
 
      repository much snappier. (John Arbash Meinel)
732
 
 
733
 
    * ``bzr log --short -r X..Y`` no longer needs to access the full revision
734
 
      history. This makes it noticeably faster when logging the last few
735
 
      revisions. (John Arbash Meinel)
736
 
 
737
 
    * ``bzr ls`` now accepts ``-V`` as an alias for ``--versioned``. 
738
 
      (Jerad Cramp, #165086)
739
 
 
740
 
    * ``bzr missing`` uses the new ``Graph.find_unique_ancestors`` and
741
 
      ``Graph.find_differences`` to determine missing revisions without having
742
 
      to search the whole ancestry. (John Arbash Meinel, #174625)
743
 
 
744
 
    * ``bzr uncommit`` now uses partial history access, rather than always
745
 
      extracting the full revision history for a branch. This makes it
746
 
      resolve the appropriate revisions much faster (in testing it drops
747
 
      uncommit from 1.5s => 0.4s). It also means ``bzr log --short`` is one
748
 
      step closer to not using full revision history.
749
 
      (John Arbash Meinel, #172649)
750
 
 
751
 
  BUGFIXES:
752
 
 
753
 
    * ``bzr merge --lca`` should handle when two revisions have no common
754
 
      ancestor other than NULL_REVISION. (John Arbash Meinel, #235715)
755
 
 
756
 
    * ``bzr status`` was breaking if you merged the same revision twice.
757
 
      (John Arbash Meinel, #235407)
758
 
 
759
 
    * ``bzr push`` with both ``--overwrite`` and ``-r NNN`` options no longer
760
 
      fails.  (Andrew Bennetts, #234229)
761
 
      
762
 
    * Correctly track the base URL of a smart medium when using bzr+http://
763
 
      URLs, which was causing spurious "No repository present" errors with
764
 
      branches in shared repositories accessed over bzr+http.
765
 
      (Andrew Bennetts, #230550)
766
 
 
767
 
    * Define ``_remote_is_at_least_1_2`` on ``SmartClientMedium`` so that all
768
 
      implementations have the attribute.  Fixes 'PyCurlTransport' object has no
769
 
      attribute '_remote_is_at_least_1_2' attribute errors.
770
 
      (Andrew Bennetts, #220806)
771
 
 
772
 
    * Failure to delete an obsolete pack file should just give a warning
773
 
      message, not a fatal error.  It may for example fail if the file is still
774
 
      in use by another process.
775
 
      (Martin Pool)
776
 
      
777
 
    * Fix MemoryError during large fetches over HTTP by limiting the amount of
778
 
      data we try to read per ``recv`` call.  The problem was observed with
779
 
      Windows and a proxy, but might affect other environments as well.
780
 
      (Eric Holmberg, #215426)
781
 
 
782
 
    * Handle old merge directives correctly in Merger.from_mergeable.  Stricter
783
 
      get_parent_map requirements exposed a latent bug here.  (Aaron Bentley)
784
 
 
785
 
    * Issue a warning and ignore passwords declared in authentication.conf when
786
 
      used for an ssh scheme (sftp or bzr+ssh).
787
 
      (Vincent Ladeuil, #203186)
788
 
 
789
 
    * Make both http implementations raise appropriate exceptions on 403
790
 
      Forbidden when POSTing smart requests.
791
 
      (Vincent Ladeuil, #230223)
792
 
 
793
 
    * Properly *title* header names in http requests instead of capitalizing
794
 
      them.
795
 
      (Vincent Ladeuil, #229076)
796
 
 
797
 
    * The "Unable to obtain lock" error message now also suggests using
798
 
      ``bzr break-lock`` to fix it.  (Martin Albisetti, #139202)
799
 
 
800
 
    * Treat an encoding of '' as ascii; this can happen when bzr is run
801
 
      under vim on Mac OS X.
802
 
      (Neil Martinsen-Burrell)
803
 
 
804
 
    * ``VersionedFile.make_mpdiffs()`` was raising an exception that wasn't in
805
 
      scope. (Daniel Fischer #235687)
806
 
 
807
 
  DOCUMENTATION:
808
 
 
809
 
    * Added directory structure and started translation of docs in spanish.
810
 
      (Martin Albisetti, Lucio Albenga)
811
 
 
812
 
    * Incorporate feedback from Jelmer Vernooij and Neil Martinsen-Burrell
813
 
      on the plugin and integration chapters of the User Guide.
814
 
      (Ian Clatworthy)
815
 
 
816
 
    * More Bazaar developer documentation about packaging and release process,
817
 
      and about use of Python reprs.
818
 
      (Martin Pool, Martin Albisetti)
819
 
 
820
 
    * Updated Tortise strategy document. (Mark Hammond)
821
 
 
822
 
  TESTING:
823
 
 
824
 
    * ``bzrlib.tests.adapt_tests`` was broken and unused - it has been fixed.
825
 
      (Robert Collins)
826
 
 
827
 
    * Fix the test HTTPServer to be isolated from chdir calls made while it is
828
 
      running, allowing it to be used in blackbox tests. (Robert Collins)
829
 
 
830
 
    * New helper function for splitting test suites
831
 
      ``split_suite_by_condition``. (Robert Collins)
832
 
 
833
 
  INTERNALS:
834
 
 
835
 
    * ``Branch.missing_revisions`` has been deprecated. Similar functionality
836
 
      can be obtained using ``bzrlib.missing.find_unmerged``. The api was
837
 
      fairly broken, and the function was unused, so we are getting rid of it.
838
 
      (John Arbash Meinel)
839
 
 
840
 
  API CHANGES:
841
 
 
842
 
    * ``Branch.abspath`` is deprecated; use the Tree or Transport 
843
 
      instead.  (Martin Pool)
844
 
 
845
 
    * ``Branch.update_revisions`` now takes an optional ``Graph``
846
 
      object. This can be used by ``update_revisions`` when it is
847
 
      checking ancestry, and allows callers to prefer request to go to a
848
 
      local branch.  (John Arbash Meinel)
849
 
 
850
 
    * Branch, Repository, Tree and BzrDir should expose a Transport as an
851
 
      attribute if they have one, rather than having it indirectly accessible
852
 
      as ``.control_files._transport``.  This doesn't add a requirement
853
 
      to support a Transport in cases where it was not needed before;
854
 
      it just simplifies the way it is reached.  (Martin Pool)
855
 
 
856
 
    * ``bzr missing --mine-only`` will return status code 0 if you have no
857
 
      new revisions, but the remote does. Similarly for ``--theirs-only``.
858
 
      The new code only checks one side, so it doesn't know if the other
859
 
      side has changes. This seems more accurate with the request anyway.
860
 
      It also changes the output to print '[This|Other] branch is up to
861
 
      date.' rather than displaying nothing.  (John Arbash Meinel)
862
 
 
863
 
    * ``LockableFiles.put_utf8``, ``put_bytes`` and ``controlfilename``
864
 
      are now deprecated in favor of using Transport operations.
865
 
      (Martin Pool)
866
 
 
867
 
    * Many methods on ``VersionedFile``, ``Repository`` and in
868
 
      ``bzrlib.revision``  deprecated before bzrlib 1.5 have been removed.
869
 
      (Robert Collins)
870
 
 
871
 
    * ``RevisionSpec.wants_revision_history`` can be set to False for a given
872
 
      ``RevisionSpec``. This will disable the existing behavior of passing in
873
 
      the full revision history to ``self._match_on``. Useful for specs that
874
 
      don't actually need access to the full history. (John Arbash Meinel)
875
 
 
876
 
    * The constructors of ``SmartClientMedium`` and its subclasses now require a
877
 
      ``base`` parameter.  ``SmartClientMedium`` implementations now also need
878
 
      to provide a ``remote_path_from_transport`` method.  (Andrew Bennetts)
879
 
      
880
 
    * The default permissions for creating new files and directories 
881
 
      should now be obtained from ``BzrDir._get_file_mode()`` and 
882
 
      ``_get_dir_mode()``, rather than from LockableFiles.  The ``_set_file_mode``
883
 
      and ``_set_dir_mode`` variables on LockableFiles which were advertised
884
 
      as a way for plugins to control this are no longer consulted.
885
 
      (Martin Pool)
886
 
 
887
 
    * ``VersionedFile.join`` is deprecated. This method required local
888
 
      instances of both versioned file objects and was thus hostile to being
889
 
      used for streaming from a smart server. The new get_record_stream and
890
 
      insert_record_stream are meant to efficiently replace this method.
891
 
      (Robert Collins)
892
 
 
893
 
    * ``WorkingTree.set_parent_(ids/trees)`` will now filter out revisions
894
 
      which are in the ancestry of other revisions. So if you merge the same
895
 
      tree twice, or merge an ancestor of an existing merge, it will only
896
 
      record the newest. (If you merge a descendent, it will replace its
897
 
      ancestor). (John Arbash Meinel, #235407)
898
 
 
899
 
    * ``WorkingTreeFormat2.stub_initialize_remote`` is now private.
900
 
      (Martin Pool) 
901
 
 
902
 
 
903
 
bzr 1.5 2008-05-16
904
 
------------------
 
5602
Notes When Upgrading
 
5603
********************
 
5604
 
 
5605
* There is a new version of the network protocol used for bzr://, bzr+ssh://
 
5606
  and bzr+http:// connections.  This will allow more efficient requests and
 
5607
  responses, and more graceful fallback when a server is too old to
 
5608
  recognise a request from a more recent client.  Bazaar 1.6 will
 
5609
  interoperate with 0.16 and later versions, but servers should be upgraded
 
5610
  when possible.  Bazaar 1.6 no longer interoperates with 0.15 and earlier via
 
5611
  these protocols.  Use alternatives like SFTP or upgrade those servers.
 
5612
  (Andrew Bennetts, #83935)
 
5613
 
 
5614
Changes
 
5615
*******
 
5616
 
 
5617
* Deprecation warnings will not be suppressed when running ``bzr selftest``
 
5618
  so that developers can see if their code is using deprecated functions.
 
5619
  (John Arbash Meinel)
 
5620
 
 
5621
Features
 
5622
********
 
5623
 
 
5624
* Adding ``-Derror`` will now display a traceback when a plugin fails to
 
5625
  load. (James Westby)
 
5626
 
 
5627
Improvements
 
5628
************
 
5629
 
 
5630
* ``bzr branch/push/pull -r XXX`` now have a helper function for finding
 
5631
  the revno of the new revision (``Graph.find_distance_to_null``). This
 
5632
  should make something like ``bzr branch -r -100`` in a shared, no-trees
 
5633
  repository much snappier. (John Arbash Meinel)
 
5634
 
 
5635
* ``bzr log --short -r X..Y`` no longer needs to access the full revision
 
5636
  history. This makes it noticeably faster when logging the last few
 
5637
  revisions. (John Arbash Meinel)
 
5638
 
 
5639
* ``bzr ls`` now accepts ``-V`` as an alias for ``--versioned``.
 
5640
  (Jerad Cramp, #165086)
 
5641
 
 
5642
* ``bzr missing`` uses the new ``Graph.find_unique_ancestors`` and
 
5643
  ``Graph.find_differences`` to determine missing revisions without having
 
5644
  to search the whole ancestry. (John Arbash Meinel, #174625)
 
5645
 
 
5646
* ``bzr uncommit`` now uses partial history access, rather than always
 
5647
  extracting the full revision history for a branch. This makes it
 
5648
  resolve the appropriate revisions much faster (in testing it drops
 
5649
  uncommit from 1.5s => 0.4s). It also means ``bzr log --short`` is one
 
5650
  step closer to not using full revision history.
 
5651
  (John Arbash Meinel, #172649)
 
5652
 
 
5653
Bugfixes
 
5654
********
 
5655
 
 
5656
* ``bzr merge --lca`` should handle when two revisions have no common
 
5657
  ancestor other than NULL_REVISION. (John Arbash Meinel, #235715)
 
5658
 
 
5659
* ``bzr status`` was breaking if you merged the same revision twice.
 
5660
  (John Arbash Meinel, #235407)
 
5661
 
 
5662
* ``bzr push`` with both ``--overwrite`` and ``-r NNN`` options no longer
 
5663
  fails.  (Andrew Bennetts, #234229)
 
5664
 
 
5665
* Correctly track the base URL of a smart medium when using bzr+http://
 
5666
  URLs, which was causing spurious "No repository present" errors with
 
5667
  branches in shared repositories accessed over bzr+http.
 
5668
  (Andrew Bennetts, #230550)
 
5669
 
 
5670
* Define ``_remote_is_at_least_1_2`` on ``SmartClientMedium`` so that all
 
5671
  implementations have the attribute.  Fixes 'PyCurlTransport' object has no
 
5672
  attribute '_remote_is_at_least_1_2' attribute errors.
 
5673
  (Andrew Bennetts, #220806)
 
5674
 
 
5675
* Failure to delete an obsolete pack file should just give a warning
 
5676
  message, not a fatal error.  It may for example fail if the file is still
 
5677
  in use by another process.
 
5678
  (Martin Pool)
 
5679
 
 
5680
* Fix MemoryError during large fetches over HTTP by limiting the amount of
 
5681
  data we try to read per ``recv`` call.  The problem was observed with
 
5682
  Windows and a proxy, but might affect other environments as well.
 
5683
  (Eric Holmberg, #215426)
 
5684
 
 
5685
* Handle old merge directives correctly in Merger.from_mergeable.  Stricter
 
5686
  get_parent_map requirements exposed a latent bug here.  (Aaron Bentley)
 
5687
 
 
5688
* Issue a warning and ignore passwords declared in authentication.conf when
 
5689
  used for an ssh scheme (sftp or bzr+ssh).
 
5690
  (Vincent Ladeuil, #203186)
 
5691
 
 
5692
* Make both http implementations raise appropriate exceptions on 403
 
5693
  Forbidden when POSTing smart requests.
 
5694
  (Vincent Ladeuil, #230223)
 
5695
 
 
5696
* Properly *title* header names in http requests instead of capitalizing
 
5697
  them.
 
5698
  (Vincent Ladeuil, #229076)
 
5699
 
 
5700
* The "Unable to obtain lock" error message now also suggests using
 
5701
  ``bzr break-lock`` to fix it.  (Martin Albisetti, #139202)
 
5702
 
 
5703
* Treat an encoding of '' as ascii; this can happen when bzr is run
 
5704
  under vim on Mac OS X.
 
5705
  (Neil Martinsen-Burrell)
 
5706
 
 
5707
* ``VersionedFile.make_mpdiffs()`` was raising an exception that wasn't in
 
5708
  scope. (Daniel Fischer #235687)
 
5709
 
 
5710
Documentation
 
5711
*************
 
5712
 
 
5713
* Added directory structure and started translation of docs in spanish.
 
5714
  (Martin Albisetti, Lucio Albenga)
 
5715
 
 
5716
* Incorporate feedback from Jelmer Vernooij and Neil Martinsen-Burrell
 
5717
  on the plugin and integration chapters of the User Guide.
 
5718
  (Ian Clatworthy)
 
5719
 
 
5720
* More Bazaar developer documentation about packaging and release process,
 
5721
  and about use of Python reprs.
 
5722
  (Martin Pool, Martin Albisetti)
 
5723
 
 
5724
* Updated Tortise strategy document. (Mark Hammond)
 
5725
 
 
5726
Testing
 
5727
*******
 
5728
 
 
5729
* ``bzrlib.tests.adapt_tests`` was broken and unused - it has been fixed.
 
5730
  (Robert Collins)
 
5731
 
 
5732
* Fix the test HTTPServer to be isolated from chdir calls made while it is
 
5733
  running, allowing it to be used in blackbox tests. (Robert Collins)
 
5734
 
 
5735
* New helper function for splitting test suites
 
5736
  ``split_suite_by_condition``. (Robert Collins)
 
5737
 
 
5738
Internals
 
5739
*********
 
5740
 
 
5741
* ``Branch.missing_revisions`` has been deprecated. Similar functionality
 
5742
  can be obtained using ``bzrlib.missing.find_unmerged``. The api was
 
5743
  fairly broken, and the function was unused, so we are getting rid of it.
 
5744
  (John Arbash Meinel)
 
5745
 
 
5746
API Changes
 
5747
***********
 
5748
 
 
5749
* ``Branch.abspath`` is deprecated; use the Tree or Transport
 
5750
  instead.  (Martin Pool)
 
5751
 
 
5752
* ``Branch.update_revisions`` now takes an optional ``Graph``
 
5753
  object. This can be used by ``update_revisions`` when it is
 
5754
  checking ancestry, and allows callers to prefer request to go to a
 
5755
  local branch.  (John Arbash Meinel)
 
5756
 
 
5757
* Branch, Repository, Tree and BzrDir should expose a Transport as an
 
5758
  attribute if they have one, rather than having it indirectly accessible
 
5759
  as ``.control_files._transport``.  This doesn't add a requirement
 
5760
  to support a Transport in cases where it was not needed before;
 
5761
  it just simplifies the way it is reached.  (Martin Pool)
 
5762
 
 
5763
* ``bzr missing --mine-only`` will return status code 0 if you have no
 
5764
  new revisions, but the remote does. Similarly for ``--theirs-only``.
 
5765
  The new code only checks one side, so it doesn't know if the other
 
5766
  side has changes. This seems more accurate with the request anyway.
 
5767
  It also changes the output to print '[This|Other] branch is up to
 
5768
  date.' rather than displaying nothing.  (John Arbash Meinel)
 
5769
 
 
5770
* ``LockableFiles.put_utf8``, ``put_bytes`` and ``controlfilename``
 
5771
  are now deprecated in favor of using Transport operations.
 
5772
  (Martin Pool)
 
5773
 
 
5774
* Many methods on ``VersionedFile``, ``Repository`` and in
 
5775
  ``bzrlib.revision``  deprecated before bzrlib 1.5 have been removed.
 
5776
  (Robert Collins)
 
5777
 
 
5778
* ``RevisionSpec.wants_revision_history`` can be set to False for a given
 
5779
  ``RevisionSpec``. This will disable the existing behavior of passing in
 
5780
  the full revision history to ``self._match_on``. Useful for specs that
 
5781
  don't actually need access to the full history. (John Arbash Meinel)
 
5782
 
 
5783
* The constructors of ``SmartClientMedium`` and its subclasses now require a
 
5784
  ``base`` parameter.  ``SmartClientMedium`` implementations now also need
 
5785
  to provide a ``remote_path_from_transport`` method.  (Andrew Bennetts)
 
5786
 
 
5787
* The default permissions for creating new files and directories
 
5788
  should now be obtained from ``BzrDir._get_file_mode()`` and
 
5789
  ``_get_dir_mode()``, rather than from LockableFiles.  The ``_set_file_mode``
 
5790
  and ``_set_dir_mode`` variables on LockableFiles which were advertised
 
5791
  as a way for plugins to control this are no longer consulted.
 
5792
  (Martin Pool)
 
5793
 
 
5794
* ``VersionedFile.join`` is deprecated. This method required local
 
5795
  instances of both versioned file objects and was thus hostile to being
 
5796
  used for streaming from a smart server. The new get_record_stream and
 
5797
  insert_record_stream are meant to efficiently replace this method.
 
5798
  (Robert Collins)
 
5799
 
 
5800
* ``WorkingTree.set_parent_(ids/trees)`` will now filter out revisions
 
5801
  which are in the ancestry of other revisions. So if you merge the same
 
5802
  tree twice, or merge an ancestor of an existing merge, it will only
 
5803
  record the newest. (If you merge a descendent, it will replace its
 
5804
  ancestor). (John Arbash Meinel, #235407)
 
5805
 
 
5806
* ``WorkingTreeFormat2.stub_initialize_remote`` is now private.
 
5807
  (Martin Pool)
 
5808
 
 
5809
 
 
5810
bzr 1.5
 
5811
#######
 
5812
 
 
5813
:Released: 2008-05-16
905
5814
 
906
5815
This release of Bazaar includes several updates to the documentation, and fixes
907
5816
to prepare for making rich root support the default format. Many bugs have been
908
5817
squashed, including fixes to log, bzr+ssh inter-operation with older servers.
909
5818
 
910
 
  CHANGES:
911
 
 
912
 
    * Suppress deprecation warnings when bzrlib is a 'final' release. This way
913
 
      users of packaged software won't be bothered with DeprecationWarnings,
914
 
      but developers and testers will still see them. (John Arbash Meinel)
915
 
 
916
 
  DOCUMENTATION:
917
 
 
918
 
    * Incorporate feedback from Jelmer Vernooij and Neil Martinsen-Burrell
919
 
      on the plugin and integration chapters of the User Guide.
920
 
      (Ian Clatworthy)
921
 
 
922
 
 
923
 
bzr 1.5rc1 2008-05-09
924
 
---------------------
925
 
 
926
 
  NOTES WHEN UPGRADING:
927
 
 
928
 
  CHANGES:
929
 
 
930
 
    * Broader support of GNU Emacs mail clients. Set
931
 
      ``mail_client=emacsclient`` in your bazaar.conf and ``send`` will pop the
932
 
      bundle in a mail buffer according to the value of ``mail-user-agent``
933
 
      variable. (Xavier Maillard)
934
 
 
935
 
  FEATURES:
936
 
 
937
 
  IMPROVEMENTS:
938
 
 
939
 
    * Diff now handles revision specs like "branch:" and "submit:" more
940
 
      efficiently.  (Aaron Bentley, #202928)
941
 
 
942
 
    * More friendly error given when attempt to start the smart server
943
 
      on an address already in use. (Andrea Corbellini, #200575)
944
 
 
945
 
    * Pull completes much faster when there is nothing to pull.
946
 
      (Aaron Bentley)
947
 
 
948
 
  BUGFIXES:
949
 
 
950
 
    * Authentication.conf can define sections without password.
951
 
      (Vincent Ladeuil, #199440)
952
 
 
953
 
    * Avoid muttering every time a child update does not cause a progress bar
954
 
      update. (John Arbash Meinel, #213771)
955
 
 
956
 
    * ``Branch.reconcile()`` is now implemented. This allows ``bzr reconcile``
957
 
      to fix when a Branch has a non-canonical mainline history. ``bzr check``
958
 
      also detects this condition. (John Arbash Meinel, #177855)
959
 
 
960
 
    * ``bzr log -r ..X bzr://`` was failing, because it was getting a request
961
 
      for ``revision_id=None`` which was not a string.
962
 
      (John Arbash Meinel, #211661)
963
 
 
964
 
    * ``bzr commit`` now works with Microsoft's FTP service.
965
 
      (Andreas Deininger)
966
 
 
967
 
    * Catch definitions outside sections in authentication.conf.
968
 
      (Vincent Ladeuil, #217650)
969
 
 
970
 
    * Conversion from non-rich-root to rich-root(-pack) updates inventory
971
 
      sha1s, even when bundles are used.  (Aaron Bentley, #181391)
972
 
 
973
 
    * Conversion from non-rich-root to rich-root(-pack) works correctly even
974
 
      though search keys are not topologically sorted.  (Aaron Bentley)
975
 
 
976
 
    * Conversion from non-rich-root to rich-root(-pack) works even when a
977
 
      parent revision has a different root id.  (Aaron Bentley, #177874)
978
 
 
979
 
    * Disable strace testing until strace is fixed (see bug #103133) and emit a
980
 
      warning when selftest ends to remind us of leaking tests.
981
 
      (Vincent Ladeuil, #226769)
982
 
 
983
 
    * Fetching all revisions from a repository does not cause pack collisions.
984
 
      (Robert Collins, Aaron Bentley, #212908)
985
 
 
986
 
    * Fix error about "attempt to add line-delta in non-delta knit".
987
 
      (Andrew Bennetts, #217701)
988
 
 
989
 
    * Pushing a branch in "dirstate" format (Branch5) over bzr+ssh would break
990
 
      if the remote server was < version 1.2. This was due to a bug in the
991
 
      RemoteRepository.get_parent_map() fallback code.
992
 
      (John Arbash Meinel, #214894)
993
 
 
994
 
    * Remove leftover code in ``bzr_branch`` that inappropriately creates 
995
 
      a ``branch-name`` file in the branch control directory.
996
 
      (Martin Pool)
997
 
 
998
 
    * Set SO_REUSEADDR on server sockets of ``bzr serve`` to avoid problems
999
 
      rebinding the socket when starting the server a second time.
1000
 
      (John Arbash Meinel, Martin Pool, #164288)
1001
 
 
1002
 
    * Severe performance degradation in fetching from knit repositories to
1003
 
      knits and packs due to parsing the entire revisions.kndx on every graph
1004
 
      walk iteration fixed by using the Repository.get_graph API.  There was
1005
 
      another regression in knit => knit fetching which re-read the index for
1006
 
      every revision each side had in common.
1007
 
      (Robert Collins, John Arbash Meinel)
1008
 
 
1009
 
    * When logging the changes to a particular file, there was a bug if there
1010
 
      were ghosts in the revision ancestry. (John Arbash Meinel, #209948)
1011
 
 
1012
 
    * xs4all's ftp server returns a temporary error when trying to list an
1013
 
      empty directory, rather than returning an empty list. Adding a
1014
 
      workaround so that we don't get spurious failures.
1015
 
      (John Arbash Meinel, #215522)
1016
 
 
1017
 
  DOCUMENTATION:
1018
 
 
1019
 
    * Expanded the User Guide to include new chapters on popular plugins and
1020
 
      integrating Bazaar into your environment. The *Best practices* chapter
1021
 
      was renamed to *Miscellaneous topics* as suggested by community
1022
 
      feedback as well. (Ian Clatworthy)
1023
 
 
1024
 
    * Document outlining strategies for TortoiseBzr. (Mark Hammond)
1025
 
 
1026
 
    * Improved the documentation on hooks. (Ian Clatworthy)
1027
 
 
1028
 
    * Update authentication docs regarding ssh agents.
1029
 
      (Vincent Ladeuil, #183705)
1030
 
 
1031
 
  TESTING:
1032
 
 
1033
 
    * Add ``thread_name_suffix`` parameter to SmartTCPServer_for_testing, to
1034
 
      make it easy to identify which test spawned a thread with an unhandled
1035
 
      exception. (Andrew Bennetts)
1036
 
 
1037
 
    * New ``--debugflag``/``-E`` option to ``bzr selftest`` for setting
1038
 
      options for debugging tests, these are complementary to the the -D
1039
 
      options.  The ``-Dselftest_debug`` global option has been replaced by the
1040
 
      ``-E=allow_debug`` option for selftest. (Andrew Bennetts)
1041
 
 
1042
 
    * Parameterised test ids are preserved correctly to aid diagnosis of test
1043
 
      failures. (Robert Collins, Andrew Bennetts)
1044
 
 
1045
 
    * selftest now accepts --starting-with <id> to load only the tests whose id
1046
 
      starts with the one specified. This greatly speeds up running the test
1047
 
      suite on a limited set of tests and can be used to run the tests for a
1048
 
      single module, a single class or even a single test.  (Vincent Ladeuil)
1049
 
 
1050
 
    * The test suite modules have been modified to define load_tests() instead
1051
 
      of test_suite(). That speeds up selective loading (via --load-list)
1052
 
      significantly and provides many examples on how to migrate (grep for
1053
 
      load_tests).  (Vincent Ladeuil)
1054
 
 
1055
 
  INTERNALS:
1056
 
 
1057
 
    * ``Hooks.install_hook`` is now deprecated in favour of
1058
 
      ``Hooks.install_named_hook`` which adds a required ``name`` parameter, to
1059
 
      avoid having to call ``Hooks.name_hook``. (Daniel Watkins)
1060
 
 
1061
 
    * Implement xml8 serializer.  (Aaron Bentley)
1062
 
 
1063
 
    * New form ``@deprecated_method(deprecated_in(1, 5, 0))`` for making 
1064
 
      deprecation wrappers.  (Martin Pool)
1065
 
 
1066
 
    * ``Repository.revision_parents`` is now deprecated in favour of 
1067
 
      ``Repository.get_parent_map([revid])[revid]``. (Jelmer Vernooij)
1068
 
 
1069
 
    * The Python ``assert`` statement is no longer used in Bazaar source, and 
1070
 
      a test checks this.  (Martin Pool)
1071
 
 
1072
 
  API CHANGES:
1073
 
 
1074
 
    * ``bzrlib.status.show_pending_merges`` requires the repository to be
1075
 
      locked by the caller. Callers should have been doing it anyway, but it
1076
 
      will now raise an exception if they do not. (John Arbash Meinel)
1077
 
 
1078
 
    * Repository.get_data_stream, Repository.get_data_stream_for_search(),
1079
 
      Repository.get_deltas_for_revsions(), Repository.revision_trees(),
1080
 
      Repository.item_keys_introduced_by() no longer take read locks.
1081
 
      (Aaron Bentley)
1082
 
 
1083
 
    * ``LockableFiles.get_utf8`` and ``.get`` are deprecated, as a start
1084
 
      towards removing LockableFiles and ``.control_files`` entirely.
1085
 
      (Martin Pool)
1086
 
 
1087
 
    * Methods deprecated prior to 1.1 have been removed.
1088
 
      (Martin Pool)
1089
 
 
1090
 
 
1091
 
bzr 1.4 2008-04-28
1092
 
------------------
 
5819
Changes
 
5820
*******
 
5821
 
 
5822
* Suppress deprecation warnings when bzrlib is a 'final' release. This way
 
5823
  users of packaged software won't be bothered with DeprecationWarnings,
 
5824
  but developers and testers will still see them. (John Arbash Meinel)
 
5825
 
 
5826
Documentation
 
5827
*************
 
5828
 
 
5829
* Incorporate feedback from Jelmer Vernooij and Neil Martinsen-Burrell
 
5830
  on the plugin and integration chapters of the User Guide.
 
5831
  (Ian Clatworthy)
 
5832
 
 
5833
 
 
5834
bzr 1.5rc1
 
5835
##########
 
5836
 
 
5837
:Released: 2008-05-09
 
5838
 
 
5839
Changes
 
5840
*******
 
5841
 
 
5842
* Broader support of GNU Emacs mail clients. Set
 
5843
  ``mail_client=emacsclient`` in your bazaar.conf and ``send`` will pop the
 
5844
  bundle in a mail buffer according to the value of ``mail-user-agent``
 
5845
  variable. (Xavier Maillard)
 
5846
 
 
5847
Improvements
 
5848
************
 
5849
 
 
5850
* Diff now handles revision specs like "branch:" and "submit:" more
 
5851
  efficiently.  (Aaron Bentley, #202928)
 
5852
 
 
5853
* More friendly error given when attempt to start the smart server
 
5854
  on an address already in use. (Andrea Corbellini, #200575)
 
5855
 
 
5856
* Pull completes much faster when there is nothing to pull.
 
5857
  (Aaron Bentley)
 
5858
 
 
5859
Bugfixes
 
5860
********
 
5861
 
 
5862
* Authentication.conf can define sections without password.
 
5863
  (Vincent Ladeuil, #199440)
 
5864
 
 
5865
* Avoid muttering every time a child update does not cause a progress bar
 
5866
  update. (John Arbash Meinel, #213771)
 
5867
 
 
5868
* ``Branch.reconcile()`` is now implemented. This allows ``bzr reconcile``
 
5869
  to fix when a Branch has a non-canonical mainline history. ``bzr check``
 
5870
  also detects this condition. (John Arbash Meinel, #177855)
 
5871
 
 
5872
* ``bzr log -r ..X bzr://`` was failing, because it was getting a request
 
5873
  for ``revision_id=None`` which was not a string.
 
5874
  (John Arbash Meinel, #211661)
 
5875
 
 
5876
* ``bzr commit`` now works with Microsoft's FTP service.
 
5877
  (Andreas Deininger)
 
5878
 
 
5879
* Catch definitions outside sections in authentication.conf.
 
5880
  (Vincent Ladeuil, #217650)
 
5881
 
 
5882
* Conversion from non-rich-root to rich-root(-pack) updates inventory
 
5883
  sha1s, even when bundles are used.  (Aaron Bentley, #181391)
 
5884
 
 
5885
* Conversion from non-rich-root to rich-root(-pack) works correctly even
 
5886
  though search keys are not topologically sorted.  (Aaron Bentley)
 
5887
 
 
5888
* Conversion from non-rich-root to rich-root(-pack) works even when a
 
5889
  parent revision has a different root id.  (Aaron Bentley, #177874)
 
5890
 
 
5891
* Disable strace testing until strace is fixed (see bug #103133) and emit a
 
5892
  warning when selftest ends to remind us of leaking tests.
 
5893
  (Vincent Ladeuil, #226769)
 
5894
 
 
5895
* Fetching all revisions from a repository does not cause pack collisions.
 
5896
  (Robert Collins, Aaron Bentley, #212908)
 
5897
 
 
5898
* Fix error about "attempt to add line-delta in non-delta knit".
 
5899
  (Andrew Bennetts, #217701)
 
5900
 
 
5901
* Pushing a branch in "dirstate" format (Branch5) over bzr+ssh would break
 
5902
  if the remote server was < version 1.2. This was due to a bug in the
 
5903
  RemoteRepository.get_parent_map() fallback code.
 
5904
  (John Arbash Meinel, #214894)
 
5905
 
 
5906
* Remove leftover code in ``bzr_branch`` that inappropriately creates
 
5907
  a ``branch-name`` file in the branch control directory.
 
5908
  (Martin Pool)
 
5909
 
 
5910
* Set SO_REUSEADDR on server sockets of ``bzr serve`` to avoid problems
 
5911
  rebinding the socket when starting the server a second time.
 
5912
  (John Arbash Meinel, Martin Pool, #164288)
 
5913
 
 
5914
* Severe performance degradation in fetching from knit repositories to
 
5915
  knits and packs due to parsing the entire revisions.kndx on every graph
 
5916
  walk iteration fixed by using the Repository.get_graph API.  There was
 
5917
  another regression in knit => knit fetching which re-read the index for
 
5918
  every revision each side had in common.
 
5919
  (Robert Collins, John Arbash Meinel)
 
5920
 
 
5921
* When logging the changes to a particular file, there was a bug if there
 
5922
  were ghosts in the revision ancestry. (John Arbash Meinel, #209948)
 
5923
 
 
5924
* xs4all's ftp server returns a temporary error when trying to list an
 
5925
  empty directory, rather than returning an empty list. Adding a
 
5926
  workaround so that we don't get spurious failures.
 
5927
  (John Arbash Meinel, #215522)
 
5928
 
 
5929
Documentation
 
5930
*************
 
5931
 
 
5932
* Expanded the User Guide to include new chapters on popular plugins and
 
5933
  integrating Bazaar into your environment. The *Best practices* chapter
 
5934
  was renamed to *Miscellaneous topics* as suggested by community
 
5935
  feedback as well. (Ian Clatworthy)
 
5936
 
 
5937
* Document outlining strategies for TortoiseBzr. (Mark Hammond)
 
5938
 
 
5939
* Improved the documentation on hooks. (Ian Clatworthy)
 
5940
 
 
5941
* Update authentication docs regarding ssh agents.
 
5942
  (Vincent Ladeuil, #183705)
 
5943
 
 
5944
Testing
 
5945
*******
 
5946
 
 
5947
* Add ``thread_name_suffix`` parameter to SmartTCPServer_for_testing, to
 
5948
  make it easy to identify which test spawned a thread with an unhandled
 
5949
  exception. (Andrew Bennetts)
 
5950
 
 
5951
* New ``--debugflag``/``-E`` option to ``bzr selftest`` for setting
 
5952
  options for debugging tests, these are complementary to the -D
 
5953
  options.  The ``-Dselftest_debug`` global option has been replaced by the
 
5954
  ``-E=allow_debug`` option for selftest. (Andrew Bennetts)
 
5955
 
 
5956
* Parameterised test ids are preserved correctly to aid diagnosis of test
 
5957
  failures. (Robert Collins, Andrew Bennetts)
 
5958
 
 
5959
* selftest now accepts --starting-with <id> to load only the tests whose id
 
5960
  starts with the one specified. This greatly speeds up running the test
 
5961
  suite on a limited set of tests and can be used to run the tests for a
 
5962
  single module, a single class or even a single test.  (Vincent Ladeuil)
 
5963
 
 
5964
* The test suite modules have been modified to define load_tests() instead
 
5965
  of test_suite(). That speeds up selective loading (via --load-list)
 
5966
  significantly and provides many examples on how to migrate (grep for
 
5967
  load_tests).  (Vincent Ladeuil)
 
5968
 
 
5969
Internals
 
5970
*********
 
5971
 
 
5972
* ``Hooks.install_hook`` is now deprecated in favour of
 
5973
  ``Hooks.install_named_hook`` which adds a required ``name`` parameter, to
 
5974
  avoid having to call ``Hooks.name_hook``. (Daniel Watkins)
 
5975
 
 
5976
* Implement xml8 serializer.  (Aaron Bentley)
 
5977
 
 
5978
* New form ``@deprecated_method(deprecated_in(1, 5, 0))`` for making
 
5979
  deprecation wrappers.  (Martin Pool)
 
5980
 
 
5981
* ``Repository.revision_parents`` is now deprecated in favour of
 
5982
  ``Repository.get_parent_map([revid])[revid]``. (Jelmer Vernooij)
 
5983
 
 
5984
* The Python ``assert`` statement is no longer used in Bazaar source, and
 
5985
  a test checks this.  (Martin Pool)
 
5986
 
 
5987
API Changes
 
5988
***********
 
5989
 
 
5990
* ``bzrlib.status.show_pending_merges`` requires the repository to be
 
5991
  locked by the caller. Callers should have been doing it anyway, but it
 
5992
  will now raise an exception if they do not. (John Arbash Meinel)
 
5993
 
 
5994
* Repository.get_data_stream, Repository.get_data_stream_for_search(),
 
5995
  Repository.get_deltas_for_revsions(), Repository.revision_trees(),
 
5996
  Repository.item_keys_introduced_by() no longer take read locks.
 
5997
  (Aaron Bentley)
 
5998
 
 
5999
* ``LockableFiles.get_utf8`` and ``.get`` are deprecated, as a start
 
6000
  towards removing LockableFiles and ``.control_files`` entirely.
 
6001
  (Martin Pool)
 
6002
 
 
6003
* Methods deprecated prior to 1.1 have been removed.
 
6004
  (Martin Pool)
 
6005
 
 
6006
 
 
6007
bzr 1.4 
 
6008
#######
 
6009
 
 
6010
:Released: 2008-04-28
1093
6011
 
1094
6012
This release of Bazaar includes handy improvements to the speed of log and
1095
6013
status, new options for several commands, improved documentation, and better
1099
6017
internal work in both the repository and network code to enable new features
1100
6018
and faster performance.
1101
6019
 
1102
 
  BUG FIXES:
1103
 
 
1104
 
    * Pushing a branch in "dirstate" format (Branch5) over bzr+ssh would break
1105
 
      if the remote server was < version 1.2.  This was due to a bug in the
1106
 
      RemoteRepository.get_parent_map() fallback code.
1107
 
      (John Arbash Meinel, Andrew Bennetts, #214894)
1108
 
 
1109
 
 
1110
 
bzr 1.4rc2 2008-04-21
1111
 
---------------------
1112
 
 
1113
 
  BUG FIXES:
1114
 
 
1115
 
    * ``bzr log -r ..X bzr://`` was failing, because it was getting a request
1116
 
      for ``revision_id=None`` which was not a string.
1117
 
      (John Arbash Meinel, #211661)
1118
 
 
1119
 
    * Fixed a bug in handling ghost revisions when logging changes in a 
1120
 
      particular file.  (John Arbash Meinel, #209948)
1121
 
 
1122
 
    * Fix error about "attempt to add line-delta in non-delta knit".
1123
 
      (Andrew Bennetts, #205156)
1124
 
 
1125
 
    * Fixed performance degradation in fetching from knit repositories to
1126
 
      knits and packs due to parsing the entire revisions.kndx on every graph
1127
 
      walk iteration fixed by using the Repository.get_graph API.  There was
1128
 
      another regression in knit => knit fetching which re-read the index for
1129
 
      every revision each side had in common.
1130
 
      (Robert Collins, John Arbash Meinel)
1131
 
 
1132
 
 
1133
 
bzr 1.4rc1 2008-04-11
1134
 
---------------------
1135
 
 
1136
 
  CHANGES:
1137
 
 
1138
 
   * bzr main script cannot be imported (Benjamin Peterson)
1139
 
 
1140
 
   * On Linux bzr additionally looks for plugins in arch-independent site
1141
 
     directory. (Toshio Kuratomi)
1142
 
 
1143
 
   * The ``set_rh`` branch hook is now deprecated. Please migrate
1144
 
     any plugins using this hook to use an alternative, e.g.
1145
 
     ``post_change_branch_tip``. (Ian Clatworthy)
1146
 
 
1147
 
   * When a plugin cannot be loaded as the file path is not a valid
1148
 
     python module name bzr will now strip a ``bzr_`` prefix from the
1149
 
     front of the suggested name, as many plugins (e.g. bzr-svn)
1150
 
     want to be installed without this prefix. It is a common mistake
1151
 
     to have a folder named "bzr-svn" for that plugin, especially
1152
 
     as this is what bzr branch lp:bzr-svn will give you. (James Westby,
1153
 
     Andrew Cowie)
1154
 
 
1155
 
   * UniqueIntegerBugTracker now appends bug-ids instead of joining
1156
 
     them to the base URL. Plugins that register bug trackers may
1157
 
     need a trailing / added to the base URL if one is not already there.
1158
 
     (James Wesby, Andrew Cowie)
1159
 
 
1160
 
  FEATURES:
1161
 
 
1162
 
    * Added start_commit hook for mutable trees. (Jelmer Vernooij, #186422)
1163
 
 
1164
 
    * ``status`` now accepts ``--no-pending`` to show the status without
1165
 
      listing pending merges, which speeds up the command a lot on large
1166
 
      histories.  (James Westby, #202830)
1167
 
 
1168
 
    * New ``post_change_branch_tip`` hook that is called after the
1169
 
      branch tip is moved but while the branch is still write-locked.
1170
 
      See the User Reference for signature details.
1171
 
      (Ian Clatworthy, James Henstridge)
1172
 
 
1173
 
    * Reconfigure can convert a branch to be standalone or to use a shared
1174
 
      repository.  (Aaron Bentley)
1175
 
 
1176
 
  IMPROVEMENTS:
1177
 
 
1178
 
    * The smart protocol now has support for setting branches' revision info
1179
 
      directly.  This should make operations like push slightly faster, and is a
1180
 
      step towards server-side hooks.  The new request method name is
1181
 
      ``Branch.set_last_revision_info``.  (Andrew Bennetts)
1182
 
 
1183
 
    * ``bzr commit --fixes`` now recognises "gnome" as a tag by default.
1184
 
      (James Westby, Andrew Cowie)
1185
 
 
1186
 
    * ``bzr switch`` will attempt to find branches to switch to relative to the
1187
 
      current branch. E.g. ``bzr switch branchname`` will look for
1188
 
      ``current_branch/../branchname``. (Robert Collins, Jelmer Vernooij,
1189
 
      Wouter van Heyst)
1190
 
 
1191
 
    * Diff is now more specific about execute-bit changes it describes
1192
 
      (Chad Miller)
1193
 
 
1194
 
    * Fetching data over HTTP is a bit faster when urllib is used.  This is done
1195
 
      by forcing it to recv 64k at a time when reading lines in HTTP headers,
1196
 
      rather than just 1 byte at a time.  (Andrew Bennetts)
1197
 
 
1198
 
    * Log --short and --line are much faster when -r is not specified.
1199
 
      (Aaron Bentley)
1200
 
 
1201
 
    * Merge is faster.  We no longer check a file's existence unnecessarily
1202
 
      when merging the execute bit.  (Aaron Bentley)
1203
 
 
1204
 
    * ``bzr status`` on an explicit list of files no longer shows pending
1205
 
      merges, making it much faster on large trees. (John Arbash Meinel)
1206
 
 
1207
 
    * The launchpad directory service now warns the user if they have not set
1208
 
      their launchpad login and are trying to resolve a URL using it, just
1209
 
      in case they want to do a write operation with it.  (James Westby)
1210
 
 
1211
 
    * The smart protocol client is slightly faster, because it now only queries
1212
 
      the server for the protocol version once per connection.  Also, the HTTP
1213
 
      transport will now automatically probe for and use a smart server if
1214
 
      one is present.  You can use the new ``nosmart+`` transport decorator
1215
 
      to get the old behaviour.  (Andrew Bennetts)
1216
 
 
1217
 
    * The ``version`` command takes a ``--short`` option to print just the
1218
 
      version number, for easier use in scripts.  (Martin Pool)
1219
 
 
1220
 
    * Various operations with revision specs and commands that calculate
1221
 
      revnos and revision ids are faster.  (John A. Meinel, Aaron Bentley)
1222
 
 
1223
 
  BUGFIXES:
1224
 
 
1225
 
    * Add ``root_client_path`` parameter to SmartWSGIApp and
1226
 
      SmartServerRequest.  This makes it possible to publish filesystem
1227
 
      locations that don't exactly match URL paths. SmartServerRequest
1228
 
      subclasses should use the new ``translate_client_path`` and
1229
 
      ``transport_from_client_path`` methods when dealing with paths received
1230
 
      from a client to take this into account.  (Andrew Bennetts, #124089)
1231
 
 
1232
 
    * ``bzr mv a b`` can be now used also to rename previously renamed
1233
 
      directories, not only files. (Lukáš Lalinský, #107967)
1234
 
 
1235
 
    * ``bzr uncommit --local`` can now remove revisions from the local
1236
 
      branch to be symmetric with ``bzr commit --local``.
1237
 
      (John Arbash Meinel, #93412)
1238
 
 
1239
 
    * Don't ask for a password if there is no real terminal.
1240
 
      (Alexander Belchenko, #69851)
1241
 
 
1242
 
    * Fix a bug causing a ValueError crash in ``parse_line_delta_iter`` when
1243
 
      fetching revisions from a knit to pack repository or vice versa using
1244
 
      bzr:// (including over http or ssh).
1245
 
      (#208418, Andrew Bennetts, Martin Pool, Robert Collins)
1246
 
 
1247
 
    * Fixed ``_get_line`` in ``bzrlib.smart.medium``, which was buggy.  Also
1248
 
      fixed ``_get_bytes`` in the same module to use the push back buffer.
1249
 
      These bugs had no known impact in normal use, but were problematic for
1250
 
      developers working on the code, and were likely to cause real bugs sooner
1251
 
      or later.  (Andrew Bennetts)
1252
 
 
1253
 
    * Implement handling of basename parameter for DefaultMail.  (James Westby)
1254
 
 
1255
 
    * Incompatibility with Paramiko versions newer than 1.7.2 was fixed.
1256
 
      (Andrew Bennetts, #213425)
1257
 
 
1258
 
    * Launchpad locations (lp: URLs) can be pulled.  (Aaron Bentley, #181945)
1259
 
 
1260
 
    * Merges that add files to deleted root directories complete.  They
1261
 
      do create conflicts.  (Aaron Bentley, #210092)
1262
 
 
1263
 
    * vsftp's return ``550 RNFR command failed.`` supported.
1264
 
      (Marcus Trautwig, #129786)
1265
 
 
1266
 
  DOCUMENTATION:
1267
 
 
1268
 
    * Improved documentation on send/merge relationship. (Peter Schuller)
1269
 
 
1270
 
    * Minor fixes to the User Guide. (Matthew Fuller)
1271
 
 
1272
 
    * Reduced the evangelism in the User Guide. (Ian Clatworthy)
1273
 
 
1274
 
    * Added Integrating with Bazaar document for developers (Martin Albisetti)
1275
 
 
1276
 
  API BREAKS:
1277
 
 
1278
 
    * Attempting to pull data from a ghost aware repository (e.g. knits) into a
1279
 
      non-ghost aware repository such as weaves will now fail if there are
1280
 
      ghosts.  (Robert Collins)
1281
 
 
1282
 
    * ``KnitVersionedFile`` no longer accepts an ``access_mode`` parameter, and
1283
 
      now requires the ``index`` and ``access_method`` parameters to be
1284
 
      supplied. A compatible shim has been kept in the new function
1285
 
      ``knit.make_file_knit``. (Robert Collins)
1286
 
 
1287
 
    * Log formatters must now provide log_revision instead of show and
1288
 
      show_merge_revno methods. The latter had been deprecated since the 0.17
1289
 
      release. (James Westby)
1290
 
 
1291
 
    * ``LoopbackSFTP`` is now called ``SocketAsChannelAdapter``.
1292
 
      (Andrew Bennetts)
1293
 
 
1294
 
    * ``osutils.backup_file`` is removed. (Alexander Belchenko)
1295
 
 
1296
 
    * ``Repository.get_revision_graph`` is deprecated, with no replacement
1297
 
      method. The method was size(history) and not desirable. (Robert Collins)
1298
 
 
1299
 
    * ``revision.revision_graph`` is deprecated, with no replacement function.
1300
 
      The function was size(history) and not desirable. (Robert Collins)
1301
 
 
1302
 
    * ``Transport.get_shared_medium`` is deprecated.  Use
1303
 
      ``Transport.get_smart_medium`` instead.  (Andrew Bennetts)
1304
 
 
1305
 
    * ``VersionedFile`` factories now accept a get_scope parameter rather
1306
 
      than using a call to ``transaction_finished``, allowing the removal of
1307
 
      the fixed list of versioned files per repository. (Robert Collins)
1308
 
 
1309
 
    * ``VersionedFile.annotate_iter`` is deprecated. While in principle this
1310
 
      allowed lower memory use, all users of annotations wanted full file 
1311
 
      annotations, and there is no storage format suitable for incremental
1312
 
      line-by-line annotation. (Robert Collins)
1313
 
 
1314
 
    * ``VersionedFile.clone_text`` is deprecated. This performance optimisation
1315
 
      is no longer used - reading the content of a file that is undergoing a
1316
 
      file level merge to identical state on two branches is rare enough, and
1317
 
      not expensive enough to special case. (Robert Collins)
1318
 
 
1319
 
    * ``VersionedFile.clear_cache`` and ``enable_cache`` are deprecated.
1320
 
      These methods added significant complexity to the ``VersionedFile``
1321
 
      implementation, but were only used for optimising fetches from knits - 
1322
 
      which can be done from outside the knit layer, or via a caching
1323
 
      decorator. As knits are not the default format, the complexity is no
1324
 
      longer worth paying. (Robert Collins)
1325
 
 
1326
 
    * ``VersionedFile.create_empty`` is removed. This method presupposed a
1327
 
      sensible mapping to a transport for individual files, but pack backed
1328
 
      versioned files have no such mapping. (Robert Collins)
1329
 
 
1330
 
    * ``VersionedFile.get_graph`` is deprecated, with no replacement method.
1331
 
      The method was size(history) and not desirable. (Robert Collins)
1332
 
 
1333
 
    * ``VersionedFile.get_graph_with_ghosts`` is deprecated, with no
1334
 
      replacement method.  The method was size(history) and not desirable.
1335
 
      (Robert Collins)
1336
 
 
1337
 
    * ``VersionedFile.get_parents`` is deprecated, please use
1338
 
      ``VersionedFile.get_parent_map``. (Robert Collins)
1339
 
 
1340
 
    * ``VersionedFile.get_sha1`` is deprecated, please use
1341
 
      ``VersionedFile.get_sha1s``. (Robert Collins)
1342
 
 
1343
 
    * ``VersionedFile.has_ghost`` is now deprecated, as it is both expensive
1344
 
      and unused outside of a single test. (Robert Collins)
1345
 
 
1346
 
    * ``VersionedFile.iter_parents`` is now deprecated in favour of
1347
 
      ``get_parent_map`` which can be used to instantiate a Graph on a
1348
 
      VersionedFile. (Robert Collins)
1349
 
 
1350
 
    * ``VersionedFileStore`` no longer uses the transaction parameter given
1351
 
      to most methods; amongst other things this means that the
1352
 
      get_weave_or_empty method no longer guarantees errors on a missing weave
1353
 
      in a readonly transaction, and no longer caches versioned file instances
1354
 
      which reduces memory pressure (but requires more careful management by
1355
 
      callers to preserve performance). (Robert Collins)
1356
 
 
1357
 
  TESTING:
1358
 
 
1359
 
    * New -Dselftest_debug flag disables clearing of the debug flags during
1360
 
      tests.  This is useful if you want to use e.g. -Dhpss to help debug a
1361
 
      failing test.  Be aware that using this feature is likely to cause
1362
 
      spurious test failures if used with the full suite. (Andrew Bennetts)
1363
 
 
1364
 
    * selftest --load-list now uses a new more agressive test loader that will
1365
 
      avoid loading unneeded modules and building their tests. Plugins can use
1366
 
      this new loader by defining a load_tests function instead of a test_suite
1367
 
      function. (a forthcoming patch will provide many examples on how to
1368
 
      implement this).
1369
 
      (Vincent Ladeuil)
1370
 
 
1371
 
    * selftest --load-list now does some sanity checks regarding duplicate test
1372
 
      IDs and tests present in the list but not found in the actual test suite.
1373
 
      (Vincent Ladeuil)
1374
 
 
1375
 
    * Slightly more concise format for the selftest progress bar, so there's
1376
 
      more space to show the test name.  (Martin Pool) ::
1377
 
 
1378
 
        [2500/10884, 1fail, 3miss in 1m29s] test_revisionnamespaces.TestRev
1379
 
 
1380
 
    * The test suite takes much less memory to run, and is a bit faster.  This
1381
 
      is done by clearing most attributes of TestCases after running them, if
1382
 
      they succeeded.  (Andrew Bennetts)
1383
 
 
1384
 
  INTERNALS:
1385
 
 
1386
 
    * Added ``_build_client_protocol`` to ``_SmartClient``.  (Andrew Bennetts)
1387
 
 
1388
 
    * Added basic infrastructure for automatic plugin suggestion.
1389
 
      (Martin Albisetti)
1390
 
 
1391
 
    * If a ``LockableFiles`` object is not explicitly unlocked (for example
1392
 
      because of a missing ``try/finally`` block, it will give a warning but
1393
 
      not automatically unlock itself.  (Previously they did.)  This
1394
 
      sometimes caused knock-on errors if for example the network connection
1395
 
      had already failed, and should not be relied upon by code. 
1396
 
      (Martin Pool, #109520)
1397
 
 
1398
 
    * ``make dist`` target to build a release tarball, and also 
1399
 
      ``check-dist-tarball`` and ``dist-upload-escudero``.  (Martin Pool)
1400
 
 
1401
 
    * The ``read_response_tuple`` method of ``SmartClientRequestProtocol*``
1402
 
      classes will now raise ``UnknownSmartMethod`` when appropriate, so that
1403
 
      callers don't need to try distinguish unknown request errors from other
1404
 
      errors.  (Andrew Bennetts)
1405
 
 
1406
 
    * ``set_make_working_trees`` is now implemented provided on all repository
1407
 
      implementations (Aaron Bentley)
1408
 
 
1409
 
    * ``VersionedFile`` now has a new method ``get_parent_map`` which, like
1410
 
      ``Graph.get_parent_map`` returns a dict of key:parents. (Robert Collins)
1411
 
 
1412
 
 
1413
 
bzr 1.3.1 2008-04-09
1414
 
--------------------
1415
 
 
1416
 
  No changes from 1.3.1rc1.
1417
 
 
1418
 
 
1419
 
bzr 1.3rc1 2008-04-04
1420
 
---------------------
1421
 
 
1422
 
  BUG FIXES:
1423
 
 
1424
 
    * Fix a bug causing a ValueError crash in ``parse_line_delta_iter`` when
1425
 
      fetching revisions from a knit to pack repository or vice versa using
1426
 
      bzr:// (including over http or ssh).  
1427
 
      (#208418, Andrew Bennetts, Martin Pool, Robert Collins)
1428
 
 
1429
 
 
1430
 
bzr 1.3 2008-03-20
1431
 
------------------
 
6020
Bug Fixes
 
6021
*********
 
6022
 
 
6023
* Pushing a branch in "dirstate" format (Branch5) over bzr+ssh would break
 
6024
  if the remote server was < version 1.2.  This was due to a bug in the
 
6025
  RemoteRepository.get_parent_map() fallback code.
 
6026
  (John Arbash Meinel, Andrew Bennetts, #214894)
 
6027
 
 
6028
 
 
6029
bzr 1.4rc2
 
6030
##########
 
6031
 
 
6032
:Released: 2008-04-21
 
6033
 
 
6034
Bug Fixes
 
6035
*********
 
6036
 
 
6037
* ``bzr log -r ..X bzr://`` was failing, because it was getting a request
 
6038
  for ``revision_id=None`` which was not a string.
 
6039
  (John Arbash Meinel, #211661)
 
6040
 
 
6041
* Fixed a bug in handling ghost revisions when logging changes in a
 
6042
  particular file.  (John Arbash Meinel, #209948)
 
6043
 
 
6044
* Fix error about "attempt to add line-delta in non-delta knit".
 
6045
  (Andrew Bennetts, #205156)
 
6046
 
 
6047
* Fixed performance degradation in fetching from knit repositories to
 
6048
  knits and packs due to parsing the entire revisions.kndx on every graph
 
6049
  walk iteration fixed by using the Repository.get_graph API.  There was
 
6050
  another regression in knit => knit fetching which re-read the index for
 
6051
  every revision each side had in common.
 
6052
  (Robert Collins, John Arbash Meinel)
 
6053
 
 
6054
 
 
6055
bzr 1.4rc1
 
6056
##########
 
6057
 
 
6058
:Released: 2008-04-11
 
6059
 
 
6060
Changes
 
6061
*******
 
6062
 
 
6063
* bzr main script cannot be imported (Benjamin Peterson)
 
6064
 
 
6065
* On Linux bzr additionally looks for plugins in arch-independent site
 
6066
  directory. (Toshio Kuratomi)
 
6067
 
 
6068
* The ``set_rh`` branch hook is now deprecated. Please migrate
 
6069
  any plugins using this hook to use an alternative, e.g.
 
6070
  ``post_change_branch_tip``. (Ian Clatworthy)
 
6071
 
 
6072
* When a plugin cannot be loaded as the file path is not a valid
 
6073
  python module name bzr will now strip a ``bzr_`` prefix from the
 
6074
  front of the suggested name, as many plugins (e.g. bzr-svn)
 
6075
  want to be installed without this prefix. It is a common mistake
 
6076
  to have a folder named "bzr-svn" for that plugin, especially
 
6077
  as this is what bzr branch lp:bzr-svn will give you. (James Westby,
 
6078
  Andrew Cowie)
 
6079
 
 
6080
* UniqueIntegerBugTracker now appends bug-ids instead of joining
 
6081
  them to the base URL. Plugins that register bug trackers may
 
6082
  need a trailing / added to the base URL if one is not already there.
 
6083
  (James Wesby, Andrew Cowie)
 
6084
 
 
6085
Features
 
6086
********
 
6087
 
 
6088
* Added start_commit hook for mutable trees. (Jelmer Vernooij, #186422)
 
6089
 
 
6090
* ``status`` now accepts ``--no-pending`` to show the status without
 
6091
  listing pending merges, which speeds up the command a lot on large
 
6092
  histories.  (James Westby, #202830)
 
6093
 
 
6094
* New ``post_change_branch_tip`` hook that is called after the
 
6095
  branch tip is moved but while the branch is still write-locked.
 
6096
  See the User Reference for signature details.
 
6097
  (Ian Clatworthy, James Henstridge)
 
6098
 
 
6099
* Reconfigure can convert a branch to be standalone or to use a shared
 
6100
  repository.  (Aaron Bentley)
 
6101
 
 
6102
Improvements
 
6103
************
 
6104
 
 
6105
* The smart protocol now has support for setting branches' revision info
 
6106
  directly.  This should make operations like push slightly faster, and is a
 
6107
  step towards server-side hooks.  The new request method name is
 
6108
  ``Branch.set_last_revision_info``.  (Andrew Bennetts)
 
6109
 
 
6110
* ``bzr commit --fixes`` now recognises "gnome" as a tag by default.
 
6111
  (James Westby, Andrew Cowie)
 
6112
 
 
6113
* ``bzr switch`` will attempt to find branches to switch to relative to the
 
6114
  current branch. E.g. ``bzr switch branchname`` will look for
 
6115
  ``current_branch/../branchname``. (Robert Collins, Jelmer Vernooij,
 
6116
  Wouter van Heyst)
 
6117
 
 
6118
* Diff is now more specific about execute-bit changes it describes
 
6119
  (Chad Miller)
 
6120
 
 
6121
* Fetching data over HTTP is a bit faster when urllib is used.  This is done
 
6122
  by forcing it to recv 64k at a time when reading lines in HTTP headers,
 
6123
  rather than just 1 byte at a time.  (Andrew Bennetts)
 
6124
 
 
6125
* Log --short and --line are much faster when -r is not specified.
 
6126
  (Aaron Bentley)
 
6127
 
 
6128
* Merge is faster.  We no longer check a file's existence unnecessarily
 
6129
  when merging the execute bit.  (Aaron Bentley)
 
6130
 
 
6131
* ``bzr status`` on an explicit list of files no longer shows pending
 
6132
  merges, making it much faster on large trees. (John Arbash Meinel)
 
6133
 
 
6134
* The launchpad directory service now warns the user if they have not set
 
6135
  their launchpad login and are trying to resolve a URL using it, just
 
6136
  in case they want to do a write operation with it.  (James Westby)
 
6137
 
 
6138
* The smart protocol client is slightly faster, because it now only queries
 
6139
  the server for the protocol version once per connection.  Also, the HTTP
 
6140
  transport will now automatically probe for and use a smart server if
 
6141
  one is present.  You can use the new ``nosmart+`` transport decorator
 
6142
  to get the old behaviour.  (Andrew Bennetts)
 
6143
 
 
6144
* The ``version`` command takes a ``--short`` option to print just the
 
6145
  version number, for easier use in scripts.  (Martin Pool)
 
6146
 
 
6147
* Various operations with revision specs and commands that calculate
 
6148
  revnos and revision ids are faster.  (John A. Meinel, Aaron Bentley)
 
6149
 
 
6150
Bugfixes
 
6151
********
 
6152
 
 
6153
* Add ``root_client_path`` parameter to SmartWSGIApp and
 
6154
  SmartServerRequest.  This makes it possible to publish filesystem
 
6155
  locations that don't exactly match URL paths. SmartServerRequest
 
6156
  subclasses should use the new ``translate_client_path`` and
 
6157
  ``transport_from_client_path`` methods when dealing with paths received
 
6158
  from a client to take this into account.  (Andrew Bennetts, #124089)
 
6159
 
 
6160
* ``bzr mv a b`` can be now used also to rename previously renamed
 
6161
  directories, not only files. (Lukáš Lalinský, #107967)
 
6162
 
 
6163
* ``bzr uncommit --local`` can now remove revisions from the local
 
6164
  branch to be symmetric with ``bzr commit --local``.
 
6165
  (John Arbash Meinel, #93412)
 
6166
 
 
6167
* Don't ask for a password if there is no real terminal.
 
6168
  (Alexander Belchenko, #69851)
 
6169
 
 
6170
* Fix a bug causing a ValueError crash in ``parse_line_delta_iter`` when
 
6171
  fetching revisions from a knit to pack repository or vice versa using
 
6172
  bzr:// (including over http or ssh).
 
6173
  (#208418, Andrew Bennetts, Martin Pool, Robert Collins)
 
6174
 
 
6175
* Fixed ``_get_line`` in ``bzrlib.smart.medium``, which was buggy.  Also
 
6176
  fixed ``_get_bytes`` in the same module to use the push back buffer.
 
6177
  These bugs had no known impact in normal use, but were problematic for
 
6178
  developers working on the code, and were likely to cause real bugs sooner
 
6179
  or later.  (Andrew Bennetts)
 
6180
 
 
6181
* Implement handling of basename parameter for DefaultMail.  (James Westby)
 
6182
 
 
6183
* Incompatibility with Paramiko versions newer than 1.7.2 was fixed.
 
6184
  (Andrew Bennetts, #213425)
 
6185
 
 
6186
* Launchpad locations (lp: URLs) can be pulled.  (Aaron Bentley, #181945)
 
6187
 
 
6188
* Merges that add files to deleted root directories complete.  They
 
6189
  do create conflicts.  (Aaron Bentley, #210092)
 
6190
 
 
6191
* vsftp's return ``550 RNFR command failed.`` supported.
 
6192
  (Marcus Trautwig, #129786)
 
6193
 
 
6194
Documentation
 
6195
*************
 
6196
 
 
6197
* Improved documentation on send/merge relationship. (Peter Schuller)
 
6198
 
 
6199
* Minor fixes to the User Guide. (Matthew Fuller)
 
6200
 
 
6201
* Reduced the evangelism in the User Guide. (Ian Clatworthy)
 
6202
 
 
6203
* Added Integrating with Bazaar document for developers (Martin Albisetti)
 
6204
 
 
6205
API Breaks
 
6206
**********
 
6207
 
 
6208
* Attempting to pull data from a ghost aware repository (e.g. knits) into a
 
6209
  non-ghost aware repository such as weaves will now fail if there are
 
6210
  ghosts.  (Robert Collins)
 
6211
 
 
6212
* ``KnitVersionedFile`` no longer accepts an ``access_mode`` parameter, and
 
6213
  now requires the ``index`` and ``access_method`` parameters to be
 
6214
  supplied. A compatible shim has been kept in the new function
 
6215
  ``knit.make_file_knit``. (Robert Collins)
 
6216
 
 
6217
* Log formatters must now provide log_revision instead of show and
 
6218
  show_merge_revno methods. The latter had been deprecated since the 0.17
 
6219
  release. (James Westby)
 
6220
 
 
6221
* ``LoopbackSFTP`` is now called ``SocketAsChannelAdapter``.
 
6222
  (Andrew Bennetts)
 
6223
 
 
6224
* ``osutils.backup_file`` is removed. (Alexander Belchenko)
 
6225
 
 
6226
* ``Repository.get_revision_graph`` is deprecated, with no replacement
 
6227
  method. The method was size(history) and not desirable. (Robert Collins)
 
6228
 
 
6229
* ``revision.revision_graph`` is deprecated, with no replacement function.
 
6230
  The function was size(history) and not desirable. (Robert Collins)
 
6231
 
 
6232
* ``Transport.get_shared_medium`` is deprecated.  Use
 
6233
  ``Transport.get_smart_medium`` instead.  (Andrew Bennetts)
 
6234
 
 
6235
* ``VersionedFile`` factories now accept a get_scope parameter rather
 
6236
  than using a call to ``transaction_finished``, allowing the removal of
 
6237
  the fixed list of versioned files per repository. (Robert Collins)
 
6238
 
 
6239
* ``VersionedFile.annotate_iter`` is deprecated. While in principle this
 
6240
  allowed lower memory use, all users of annotations wanted full file
 
6241
  annotations, and there is no storage format suitable for incremental
 
6242
  line-by-line annotation. (Robert Collins)
 
6243
 
 
6244
* ``VersionedFile.clone_text`` is deprecated. This performance optimisation
 
6245
  is no longer used - reading the content of a file that is undergoing a
 
6246
  file level merge to identical state on two branches is rare enough, and
 
6247
  not expensive enough to special case. (Robert Collins)
 
6248
 
 
6249
* ``VersionedFile.clear_cache`` and ``enable_cache`` are deprecated.
 
6250
  These methods added significant complexity to the ``VersionedFile``
 
6251
  implementation, but were only used for optimising fetches from knits -
 
6252
  which can be done from outside the knit layer, or via a caching
 
6253
  decorator. As knits are not the default format, the complexity is no
 
6254
  longer worth paying. (Robert Collins)
 
6255
 
 
6256
* ``VersionedFile.create_empty`` is removed. This method presupposed a
 
6257
  sensible mapping to a transport for individual files, but pack backed
 
6258
  versioned files have no such mapping. (Robert Collins)
 
6259
 
 
6260
* ``VersionedFile.get_graph`` is deprecated, with no replacement method.
 
6261
  The method was size(history) and not desirable. (Robert Collins)
 
6262
 
 
6263
* ``VersionedFile.get_graph_with_ghosts`` is deprecated, with no
 
6264
  replacement method.  The method was size(history) and not desirable.
 
6265
  (Robert Collins)
 
6266
 
 
6267
* ``VersionedFile.get_parents`` is deprecated, please use
 
6268
  ``VersionedFile.get_parent_map``. (Robert Collins)
 
6269
 
 
6270
* ``VersionedFile.get_sha1`` is deprecated, please use
 
6271
  ``VersionedFile.get_sha1s``. (Robert Collins)
 
6272
 
 
6273
* ``VersionedFile.has_ghost`` is now deprecated, as it is both expensive
 
6274
  and unused outside of a single test. (Robert Collins)
 
6275
 
 
6276
* ``VersionedFile.iter_parents`` is now deprecated in favour of
 
6277
  ``get_parent_map`` which can be used to instantiate a Graph on a
 
6278
  VersionedFile. (Robert Collins)
 
6279
 
 
6280
* ``VersionedFileStore`` no longer uses the transaction parameter given
 
6281
  to most methods; amongst other things this means that the
 
6282
  get_weave_or_empty method no longer guarantees errors on a missing weave
 
6283
  in a readonly transaction, and no longer caches versioned file instances
 
6284
  which reduces memory pressure (but requires more careful management by
 
6285
  callers to preserve performance). (Robert Collins)
 
6286
 
 
6287
Testing
 
6288
*******
 
6289
 
 
6290
* New -Dselftest_debug flag disables clearing of the debug flags during
 
6291
  tests.  This is useful if you want to use e.g. -Dhpss to help debug a
 
6292
  failing test.  Be aware that using this feature is likely to cause
 
6293
  spurious test failures if used with the full suite. (Andrew Bennetts)
 
6294
 
 
6295
* selftest --load-list now uses a new more agressive test loader that will
 
6296
  avoid loading unneeded modules and building their tests. Plugins can use
 
6297
  this new loader by defining a load_tests function instead of a test_suite
 
6298
  function. (a forthcoming patch will provide many examples on how to
 
6299
  implement this).
 
6300
  (Vincent Ladeuil)
 
6301
 
 
6302
* selftest --load-list now does some sanity checks regarding duplicate test
 
6303
  IDs and tests present in the list but not found in the actual test suite.
 
6304
  (Vincent Ladeuil)
 
6305
 
 
6306
* Slightly more concise format for the selftest progress bar, so there's
 
6307
  more space to show the test name.  (Martin Pool) ::
 
6308
 
 
6309
    [2500/10884, 1fail, 3miss in 1m29s] test_revisionnamespaces.TestRev
 
6310
 
 
6311
* The test suite takes much less memory to run, and is a bit faster.  This
 
6312
  is done by clearing most attributes of TestCases after running them, if
 
6313
  they succeeded.  (Andrew Bennetts)
 
6314
 
 
6315
Internals
 
6316
*********
 
6317
 
 
6318
* Added ``_build_client_protocol`` to ``_SmartClient``.  (Andrew Bennetts)
 
6319
 
 
6320
* Added basic infrastructure for automatic plugin suggestion.
 
6321
  (Martin Albisetti)
 
6322
 
 
6323
* If a ``LockableFiles`` object is not explicitly unlocked (for example
 
6324
  because of a missing ``try/finally`` block, it will give a warning but
 
6325
  not automatically unlock itself.  (Previously they did.)  This
 
6326
  sometimes caused knock-on errors if for example the network connection
 
6327
  had already failed, and should not be relied upon by code.
 
6328
  (Martin Pool, #109520)
 
6329
 
 
6330
* ``make dist`` target to build a release tarball, and also
 
6331
  ``check-dist-tarball`` and ``dist-upload-escudero``.  (Martin Pool)
 
6332
 
 
6333
* The ``read_response_tuple`` method of ``SmartClientRequestProtocol*``
 
6334
  classes will now raise ``UnknownSmartMethod`` when appropriate, so that
 
6335
  callers don't need to try distinguish unknown request errors from other
 
6336
  errors.  (Andrew Bennetts)
 
6337
 
 
6338
* ``set_make_working_trees`` is now implemented provided on all repository
 
6339
  implementations (Aaron Bentley)
 
6340
 
 
6341
* ``VersionedFile`` now has a new method ``get_parent_map`` which, like
 
6342
  ``Graph.get_parent_map`` returns a dict of key:parents. (Robert Collins)
 
6343
 
 
6344
 
 
6345
bzr 1.3.1
 
6346
#########
 
6347
 
 
6348
:Released: 2008-04-09
 
6349
 
 
6350
No changes from 1.3.1rc1.
 
6351
 
 
6352
 
 
6353
bzr 1.3.1rc1
 
6354
############
 
6355
 
 
6356
:Released: 2008-04-04
 
6357
 
 
6358
Bug Fixes
 
6359
*********
 
6360
 
 
6361
* Fix a bug causing a ValueError crash in ``parse_line_delta_iter`` when
 
6362
  fetching revisions from a knit to pack repository or vice versa using
 
6363
  bzr:// (including over http or ssh).
 
6364
  (#208418, Andrew Bennetts, Martin Pool, Robert Collins)
 
6365
 
 
6366
 
 
6367
bzr 1.3
 
6368
#######
 
6369
 
 
6370
:Released: 2008-03-20
1432
6371
 
1433
6372
Bazaar has become part of the GNU project <http://www.gnu.org>
1434
6373
 
1436
6375
substantially faster.  Several bugs have been fixed and several new options and
1437
6376
features have been added.
1438
6377
 
1439
 
  TESTING:
1440
 
 
1441
 
    * Avoid spurious failure of ``TestVersion.test_version`` matching
1442
 
      directory names.
1443
 
      (#202778, Martin Pool)
1444
 
 
1445
 
 
1446
 
bzr 1.3rc1 2008-03-16
1447
 
---------------------
1448
 
 
1449
 
  NOTES WHEN UPGRADING:
1450
 
 
1451
 
    * The backup directory created by ``upgrade`` is now called
1452
 
      ``backup.bzr``, not ``.bzr.backup``. (Martin Albisetti)
1453
 
 
1454
 
  CHANGES:
1455
 
 
1456
 
    * A new repository format 'development' has been added. This format will
1457
 
      represent the latest 'in-progress' format that the bzr developers are
1458
 
      interested in getting early-adopter testing and feedback on.
1459
 
      ``doc/developers/development-repo.txt`` has detailed information.
1460
 
      (Robert Collins)
1461
 
 
1462
 
    * BZR_LOG environment variable controls location of .bzr.log trace file. 
1463
 
      User can suppress writing messages to .bzr.log by using '/dev/null'
1464
 
      filename (on Linux) or 'NUL' (on Windows). If BZR_LOG variable 
1465
 
      is not defined but BZR_HOME is defined then default location
1466
 
      for .bzr.log trace file is ``$BZR_HOME/.bzr.log``.
1467
 
      (Alexander Belchenko)
1468
 
 
1469
 
    * ``launchpad`` builtin plugin now shipped as separate part in standalone
1470
 
      bzr.exe, installed to ``C:\Program Files\Bazaar\plugins`` directory, 
1471
 
      and standalone installer allows user to skip installation of this plugin.
1472
 
      (Alexander Belchenko)
1473
 
 
1474
 
    * Restore auto-detection of plink.exe on Windows. (Dmitry Vasiliev)
1475
 
 
1476
 
    * Version number is now shown as "1.2" or "1.2pr2", without zeroed or
1477
 
      missing final fields.  (Martin Pool)
1478
 
 
1479
 
  FEATURES:
1480
 
 
1481
 
    * ``branch`` and ``checkout`` can hard-link working tree files, which is
1482
 
      faster and saves space.  (Aaron Bentley)
1483
 
 
1484
 
    * ``bzr send`` will now also look at the ``child_submit_to`` setting in
1485
 
      the submit branch to determine the email address to send to. 
1486
 
      (Jelmer Vernooij)
1487
 
 
1488
 
  IMPROVEMENTS:
1489
 
 
1490
 
    * BzrBranch._lefthand_history is faster on pack repos.  (Aaron Bentley)
1491
 
 
1492
 
    * Branch6.generate_revision_history is faster.  (Aaron Bentley)
1493
 
 
1494
 
    * Directory services can now be registered, allowing special URLs to be
1495
 
      dereferenced into real URLs.  This is a generalization and cleanup of
1496
 
      the lp: transport lookup.  (Aaron Bentley)
1497
 
 
1498
 
    * Merge directives that are automatically attached to emails have nicer
1499
 
      filenames, based on branch-nick + revno. (Aaron Bentley)
1500
 
 
1501
 
    * ``push`` has a ``--revision`` option, to specify what revision to push up
1502
 
      to.  (Daniel Watkins)
1503
 
 
1504
 
    * Significantly reducing execution time and network traffic for trivial 
1505
 
      case of running ``bzr missing`` command for two identical branches.
1506
 
      (Alexander Belchenko)
1507
 
 
1508
 
    * Speed up operations that look at the revision graph (such as 'bzr log').
1509
 
      ``KnitPackRepositor.get_revision_graph`` uses ``Graph.iter_ancestry`` to
1510
 
      extract the revision history. This allows filtering ghosts while
1511
 
      stepping instead of needing to peek ahead. (John Arbash Meinel)
1512
 
 
1513
 
    * The ``hooks`` command lists installed hooks, to assist in debugging.
1514
 
      (Daniel Watkins)
1515
 
 
1516
 
    * Updates to how ``annotate`` work. Should see a measurable improvement in
1517
 
      performance and memory consumption for file with a lot of merges.
1518
 
      Also, correctly handle when a line is introduced by both parents (it
1519
 
      should be attributed to the first merge which notices this, and not
1520
 
      to all subsequent merges.) (John Arbash Meinel)
1521
 
 
1522
 
  BUGFIXES:
1523
 
 
1524
 
    * Autopacking no longer holds the full set of inventory lines in
1525
 
      memory while copying. For large repositories, this can amount to
1526
 
      hundreds of MB of ram consumption.
1527
 
      (Ian Clatworthy, John Arbash Meinel)
1528
 
 
1529
 
    * Cherrypicking when using ``--format=merge3`` now explictly excludes
1530
 
      BASE lines. (John Arbash Meinel, #151731)
1531
 
 
1532
 
    * Disable plink's interactive prompt for password.
1533
 
      (#107593, Dmitry Vasiliev)
1534
 
 
1535
 
    * Encode command line arguments from unicode to user_encoding before
1536
 
      invoking external mail client in `bzr send` command.
1537
 
      (#139318, Alexander Belchenko)
1538
 
 
1539
 
    * Fixed problem connecting to ``bzr+https://`` servers.
1540
 
      (#198793, John Ferlito)
1541
 
 
1542
 
    * Improved error reporting in the Launchpad plugin. (Daniel Watkins,
1543
 
      #196618)
1544
 
 
1545
 
    * Include quick-start-summary.svg file to python-based installer(s)
1546
 
      for Windows. (#192924, Alexander Belchenko)
1547
 
 
1548
 
    * lca merge now respects specified files. (Aaron Bentley)
1549
 
 
1550
 
    * Make version-info --custom imply --all. (#195560, James Westby)
1551
 
 
1552
 
    * ``merge --preview`` now works for merges that add or modify
1553
 
      symlinks (James Henstridge)
1554
 
 
1555
 
    * Redirecting the output from ``bzr merge`` (when the remembered
1556
 
      location is used) now works. (John Arbash Meinel)
1557
 
 
1558
 
    * setup.py script explicitly checks for Python version.
1559
 
      (Jari Aalto, Alexander Belchenko, #200569)
1560
 
 
1561
 
    * UnknownFormatErrors no longer refer to branches regardless of kind of
1562
 
      unknown format. (Daniel Watkins, #173980)
1563
 
 
1564
 
    * Upgrade bundled ConfigObj to version 4.5.2, which properly quotes #
1565
 
      signs, among other small improvements. (Matt Nordhoff, #86838)
1566
 
 
1567
 
    * Use correct indices when emitting LCA conflicts.  This fixes IndexError
1568
 
      errors.  (Aaron Bentley, #196780)
1569
 
 
1570
 
  DOCUMENTATION:
1571
 
 
1572
 
    * Explained how to use ``version-info --custom`` in the User Guide.
1573
 
      (Neil Martinsen-Burrell)
1574
 
 
1575
 
  API BREAKS:
1576
 
 
1577
 
    * Support for loading plugins from zip files and
1578
 
      ``bzrlib.plugin.load_from_zip()`` function are deprecated.
1579
 
      (Alexander Belchenko)
1580
 
 
1581
 
  TESTING:
1582
 
    
1583
 
    * Added missing blackbox tests for ``modified`` (Adrian Wilkins)
1584
 
 
1585
 
    * The branch interface tests were invalid for branches using rich-root
1586
 
      repositories because the empty string is not a valid file-id.
1587
 
      (Robert Collins)
1588
 
 
1589
 
  INTERNALS:
1590
 
 
1591
 
    * ``Graph.iter_ancestry`` returns the ancestry of revision ids. Similar to
1592
 
      ``Repository.get_revision_graph()`` except it includes ghosts and you can
1593
 
      stop part-way through. (John Arbash Meinel)
1594
 
 
1595
 
    * New module ``tools/package_mf.py`` provide custom module finder for
1596
 
      python packages (improves standard python library's modulefinder.py)
1597
 
      used by ``setup.py`` script while building standalone bzr.exe.
1598
 
      (Alexander Belchenko)
1599
 
 
1600
 
    * New remote method ``RemoteBzrDir.find_repositoryV2`` adding support for
1601
 
      detecting external lookup support on remote repositories. This method is
1602
 
      now attempted first when lookup up repositories, leading to an extra 
1603
 
      round trip on older bzr smart servers. (Robert Collins)
1604
 
 
1605
 
    * Repository formats have a new supported-feature attribute
1606
 
      ``supports_external_lookups`` used to indicate repositories which support
1607
 
      falling back to other repositories when they have partial data.
1608
 
      (Robert Collins)
1609
 
 
1610
 
    * ``Repository.get_revision_graph_with_ghosts`` and
1611
 
      ``bzrlib.revision.(common_ancestor,MultipleRevisionSources,common_graph)``
1612
 
      have been deprecated.  (John Arbash Meinel)
1613
 
 
1614
 
    * ``Tree.iter_changes`` is now a public API, replacing the work-in-progress
1615
 
      ``Tree._iter_changes``. The api is now considered stable and ready for
1616
 
      external users.  (Aaron Bentley)
1617
 
 
1618
 
    * The bzrdir format registry now accepts an ``alias`` keyword to
1619
 
      register_metadir, used to indicate that a format name is an alias for
1620
 
      some other format and thus should not be reported when describing the
1621
 
      format. (Robert Collins)
1622
 
 
1623
 
 
1624
 
bzr 1.2 2008-02-15
1625
 
------------------
1626
 
 
1627
 
  BUG FIXES:
1628
 
 
1629
 
    * Fix failing test in Launchpad plugin. (Martin Pool)
1630
 
 
1631
 
 
1632
 
bzr 1.2rc1 2008-02-13
1633
 
---------------------
1634
 
 
1635
 
  NOTES WHEN UPGRADING:
1636
 
  
1637
 
    * Fetching via the smart protocol may need to reconnect once during a fetch
1638
 
      if the remote server is running Bazaar 1.1 or earlier, because the client
1639
 
      attempts to use more efficient requests that confuse older servers.  You
1640
 
      may be required to re-enter a password or passphrase when this happens.
1641
 
      This won't happen if the server is upgraded to Bazaar 1.2.
1642
 
      (Andrew Bennetts)
1643
 
 
1644
 
  CHANGES:
1645
 
 
1646
 
    * Fetching via bzr+ssh will no longer fill ghosts by default (this is
1647
 
      consistent with pack-0.92 fetching over SFTP). (Robert Collins)
1648
 
 
1649
 
    * Formatting of ``bzr plugins`` output is changed to be more human-
1650
 
      friendly. Full path of plugins locations will be shown only with
1651
 
      ``--verbose`` command-line option. (Alexander Belchenko)
1652
 
 
1653
 
    * ``merge`` now prefers to use the submit branch, but will fall back to
1654
 
      parent branch.  For many users, this has no effect.  But some users who
1655
 
      pull and merge on the same branch will notice a change.  This change
1656
 
      makes it easier to work on a branch on two different machines, pulling
1657
 
      between the machines, while merging from the upstream.
1658
 
      ``merge --remember`` can now be used to set the submit_branch.
1659
 
      (Aaron Bentley)
1660
 
 
1661
 
  FEATURES:
1662
 
 
1663
 
    * ``merge --preview`` produces a diff of the changes merge would make,
1664
 
      but does not actually perform the merge.  (Aaron Bentley)
1665
 
 
1666
 
    * New smart method ``Repository.get_parent_map`` for getting revision
1667
 
      parent data. This returns additional parent information topologically
1668
 
      adjacent to the requested data to reduce round trip latency impacts.
1669
 
      (Robert Collins)
1670
 
 
1671
 
    * New smart method, ``Repository.stream_revisions_chunked``, for fetching
1672
 
      revision data that streams revision data via a chunked encoding.  This
1673
 
      avoids buffering large amounts of revision data on the server and on the
1674
 
      client, and sends less data to the server to request the revisions.
1675
 
      (Andrew Bennetts, Robert Collins, #178353)
1676
 
 
1677
 
    * The launchpad plugin now handles lp urls of the form
1678
 
      ``lp://staging/``, ``lp://demo/``, ``lp://dev/`` to use the appropriate
1679
 
      launchpad instance to do the resolution of the branch identities.
1680
 
      This is primarily of use to Launchpad developers, but can also
1681
 
      be used by other users who want to try out Launchpad as
1682
 
      a branch location without messing up their public Launchpad
1683
 
      account.  Branches that are pushed to the staging environment
1684
 
      have an expected lifetime of one day. (Tim Penhey)
1685
 
 
1686
 
  IMPROVEMENTS:
1687
 
 
1688
 
    * Creating a new branch no longer tries to read the entire revision-history
1689
 
      unnecessarily over smart server operations. (Robert Collins)
1690
 
 
1691
 
    * Fetching between different repository formats with compatible models now
1692
 
      takes advantage of the smart method to stream revisions.  (Andrew Bennetts)
1693
 
 
1694
 
    * The ``--coverage`` option is now global, rather specific to ``bzr
1695
 
      selftest``.  (Andrew Bennetts)
1696
 
 
1697
 
    * The ``register-branch`` command will now use the public url of the branch
1698
 
      containing the current directory, if one has been set and no explicit
1699
 
      branch is provided.  (Robert Collins)
1700
 
 
1701
 
    * Tweak the ``reannotate`` code path to optimize the 2-parent case.
1702
 
      Speeds up ``bzr annotate`` with a pack repository by approx 3:2.
1703
 
      (John Arbash Meinel)
1704
 
 
1705
 
  BUGFIXES:
1706
 
 
1707
 
    * Calculate remote path relative to the shared medium in _SmartClient.  This
1708
 
      is related to the problem in bug #124089.  (Andrew Bennetts)
1709
 
 
1710
 
    * Cleanly handle connection errors in smart protocol version two, the same
1711
 
      way as they are handled by version one.  (Andrew Bennetts)
1712
 
 
1713
 
    * Clearer error when ``version-info --custom`` is used without
1714
 
      ``--template`` (Lukáš Lalinský)
1715
 
 
1716
 
    * Don't raise UnavailableFeature during test setup when medusa is not
1717
 
      available or tearDown is never called leading to nasty side effects.
1718
 
      (#137823, Vincent Ladeuil)
1719
 
 
1720
 
    * If a plugin's test suite cannot be loaded, for example because of a syntax
1721
 
      error in the tests, then ``selftest`` fails, rather than just printing 
1722
 
      a warning.  (Martin Pool, #189771)
1723
 
      
1724
 
    * List possible values for BZR_SSH environment variable in env-variables
1725
 
      help topic. (Alexander Belchenko, #181842)
1726
 
 
1727
 
    * New methods ``push_log_file`` and ``pop_log_file`` to intercept messages:
1728
 
      popping the log redirection now precisely restores the previous state,
1729
 
      which makes it easier to use bzr log output from other programs.
1730
 
      TestCaseInTempDir no longer depends on a log redirection being established
1731
 
      by the test framework, which lets bzr tests cleanly run from a normal
1732
 
      unittest runner.
1733
 
      (#124153, #124849, Martin Pool, Jonathan Lange)
1734
 
 
1735
 
    * ``pull --quiet`` is now more quiet, in particular a message is no longer
1736
 
      printed when the remembered pull location is used. (James Westby,
1737
 
      #185907)
1738
 
 
1739
 
    * ``reconfigure`` can safely be interrupted while fetching.
1740
 
      (Aaron Bentley, #179316)
1741
 
 
1742
 
    * ``reconfigure`` preserves tags when converting to and from lightweight
1743
 
      checkouts.  (Aaron Bentley, #182040)
1744
 
 
1745
 
    * Stop polluting /tmp when running selftest.
1746
 
      (Vincent Ladeuil, #123623)
1747
 
 
1748
 
    * Switch from NFKC => NFC for normalization checks. NFC allows a few
1749
 
      more characters which should be considered valid.
1750
 
      (John Arbash Meinel, #185458)
1751
 
 
1752
 
    * The launchpad plugin now uses the ``edge`` xmlrpc server to avoid
1753
 
      interacting badly with a bug on the launchpad side. (Robert Collins)
1754
 
 
1755
 
    * Unknown hostnames when connecting to a ``bzr://`` URL no longer cause
1756
 
      tracebacks.  (Andrew Bennetts, #182849)
1757
 
 
1758
 
  API BREAKS:
1759
 
 
1760
 
    * Classes implementing Merge types like Merge3Merger must now accept (and
1761
 
      honour) a do_merge flag in their constructor.  (Aaron Bentley)
1762
 
 
1763
 
    * ``Repository.add_inventory`` and ``add_revision`` now require the caller
1764
 
      to previously take a write lock (and start a write group.)
1765
 
      (Martin Pool)
1766
 
 
1767
 
  TESTING:
1768
 
 
1769
 
    * selftest now accepts --load-list <file> to load a test id list. This
1770
 
      speeds up running the test suite on a limited set of tests.
1771
 
      (Vincent Ladeuil)
1772
 
 
1773
 
  INTERNALS:
1774
 
 
1775
 
    * Add a new method ``get_result`` to graph search objects. The resulting
1776
 
      ``SearchResult`` can be used to recreate the search later, which will
1777
 
      be useful in reducing network traffic. (Robert Collins)
1778
 
 
1779
 
    * Use convenience function to check whether two repository handles 
1780
 
      are referring to the same repository in ``Repository.get_graph``. 
1781
 
      (Jelmer Vernooij, #187162)
1782
 
 
1783
 
    * Fetching now passes the find_ghosts flag through to the 
1784
 
      ``InterRepository.missing_revision_ids`` call consistently for all
1785
 
      repository types. This will enable faster missing revision discovery with
1786
 
      bzr+ssh. (Robert Collins)
1787
 
 
1788
 
    * Fix error handling in Repository.insert_data_stream. (Lukas Lalinsky)
1789
 
 
1790
 
    * ``InterRepository.missing_revision_ids`` is now deprecated in favour of
1791
 
      ``InterRepository.search_missing_revision_ids`` which returns a 
1792
 
      ``bzrlib.graph.SearchResult`` suitable for making requests from the smart
1793
 
      server. (Robert Collins)
1794
 
 
1795
 
    * New error ``NoPublicBranch`` for commands that need a public branch to
1796
 
      operate. (Robert Collins)
1797
 
 
1798
 
    * New method ``iter_inventories`` on Repository for access to many
1799
 
      inventories. This is primarily used by the ``revision_trees`` method, as
1800
 
      direct access to inventories is discouraged. (Robert Collins)
1801
 
 
1802
 
    * New method ``next_with_ghosts`` on the Graph breadth-first-search objects
1803
 
      which will split out ghosts and present parents into two separate sets,
1804
 
      useful for code which needs to be aware of ghosts (e.g. fetching data
1805
 
      cares about ghosts during revision selection). (Robert Collins)
1806
 
 
1807
 
    * Record a timestamp against each mutter to the trace file, relative to the
1808
 
      first import of bzrlib.  (Andrew Bennetts)
1809
 
 
1810
 
    * ``Repository.get_data_stream`` is now deprecated in favour of
1811
 
      ``Repository.get_data_stream_for_search`` which allows less network
1812
 
      traffic when requesting data streams over a smart server. (Robert Collins)
1813
 
 
1814
 
    * ``RemoteBzrDir._get_tree_branch`` no longer triggers ``_ensure_real``,
1815
 
      removing one round trip on many network operations. (Robert Collins)
1816
 
 
1817
 
    * RemoteTransport's ``recommended_page_size`` method now returns 64k, like
1818
 
      SFTPTransport and HttpTransportBase.  (Andrew Bennetts)
1819
 
 
1820
 
    * Repository has a new method ``has_revisions`` which signals the presence
1821
 
      of many revisions by returning a set of the revisions listed which are
1822
 
      present. This can be done by index queries without reading data for parent
1823
 
      revision names etc. (Robert Collins)
1824
 
 
1825
 
 
1826
 
bzr 1.1 2008-01-15
1827
 
------------------
 
6378
Testing
 
6379
*******
 
6380
 
 
6381
* Avoid spurious failure of ``TestVersion.test_version`` matching
 
6382
  directory names.
 
6383
  (#202778, Martin Pool)
 
6384
 
 
6385
 
 
6386
bzr 1.3rc1
 
6387
##########
 
6388
 
 
6389
:Released: 2008-03-16
 
6390
 
 
6391
Notes When Upgrading
 
6392
********************
 
6393
 
 
6394
* The backup directory created by ``upgrade`` is now called
 
6395
  ``backup.bzr``, not ``.bzr.backup``. (Martin Albisetti)
 
6396
 
 
6397
Changes
 
6398
*******
 
6399
 
 
6400
* A new repository format 'development' has been added. This format will
 
6401
  represent the latest 'in-progress' format that the bzr developers are
 
6402
  interested in getting early-adopter testing and feedback on.
 
6403
  ``doc/developers/development-repo.txt`` has detailed information.
 
6404
  (Robert Collins)
 
6405
 
 
6406
* BZR_LOG environment variable controls location of .bzr.log trace file.
 
6407
  User can suppress writing messages to .bzr.log by using '/dev/null'
 
6408
  filename (on Linux) or 'NUL' (on Windows). If BZR_LOG variable
 
6409
  is not defined but BZR_HOME is defined then default location
 
6410
  for .bzr.log trace file is ``$BZR_HOME/.bzr.log``.
 
6411
  (Alexander Belchenko, #106117)
 
6412
 
 
6413
* ``launchpad`` builtin plugin now shipped as separate part in standalone
 
6414
  bzr.exe, installed to ``C:\Program Files\Bazaar\plugins`` directory,
 
6415
  and standalone installer allows user to skip installation of this plugin.
 
6416
  (Alexander Belchenko)
 
6417
 
 
6418
* Restore auto-detection of plink.exe on Windows. (Dmitry Vasiliev)
 
6419
 
 
6420
* Version number is now shown as "1.2" or "1.2pr2", without zeroed or
 
6421
  missing final fields.  (Martin Pool)
 
6422
 
 
6423
Features
 
6424
********
 
6425
 
 
6426
* ``branch`` and ``checkout`` can hard-link working tree files, which is
 
6427
  faster and saves space.  (Aaron Bentley)
 
6428
 
 
6429
* ``bzr send`` will now also look at the ``child_submit_to`` setting in
 
6430
  the submit branch to determine the email address to send to.
 
6431
  (Jelmer Vernooij)
 
6432
 
 
6433
Improvements
 
6434
************
 
6435
 
 
6436
* BzrBranch._lefthand_history is faster on pack repos.  (Aaron Bentley)
 
6437
 
 
6438
* Branch6.generate_revision_history is faster.  (Aaron Bentley)
 
6439
 
 
6440
* Directory services can now be registered, allowing special URLs to be
 
6441
  dereferenced into real URLs.  This is a generalization and cleanup of
 
6442
  the lp: transport lookup.  (Aaron Bentley)
 
6443
 
 
6444
* Merge directives that are automatically attached to emails have nicer
 
6445
  filenames, based on branch-nick + revno. (Aaron Bentley)
 
6446
 
 
6447
* ``push`` has a ``--revision`` option, to specify what revision to push up
 
6448
  to.  (Daniel Watkins)
 
6449
 
 
6450
* Significantly reducing execution time and network traffic for trivial
 
6451
  case of running ``bzr missing`` command for two identical branches.
 
6452
  (Alexander Belchenko)
 
6453
 
 
6454
* Speed up operations that look at the revision graph (such as 'bzr log').
 
6455
  ``KnitPackRepositor.get_revision_graph`` uses ``Graph.iter_ancestry`` to
 
6456
  extract the revision history. This allows filtering ghosts while
 
6457
  stepping instead of needing to peek ahead. (John Arbash Meinel)
 
6458
 
 
6459
* The ``hooks`` command lists installed hooks, to assist in debugging.
 
6460
  (Daniel Watkins)
 
6461
 
 
6462
* Updates to how ``annotate`` work. Should see a measurable improvement in
 
6463
  performance and memory consumption for file with a lot of merges.
 
6464
  Also, correctly handle when a line is introduced by both parents (it
 
6465
  should be attributed to the first merge which notices this, and not
 
6466
  to all subsequent merges.) (John Arbash Meinel)
 
6467
 
 
6468
Bugfixes
 
6469
********
 
6470
 
 
6471
* Autopacking no longer holds the full set of inventory lines in
 
6472
  memory while copying. For large repositories, this can amount to
 
6473
  hundreds of MB of ram consumption.
 
6474
  (Ian Clatworthy, John Arbash Meinel)
 
6475
 
 
6476
* Cherrypicking when using ``--format=merge3`` now explictly excludes
 
6477
  BASE lines. (John Arbash Meinel, #151731)
 
6478
 
 
6479
* Disable plink's interactive prompt for password.
 
6480
  (#107593, Dmitry Vasiliev)
 
6481
 
 
6482
* Encode command line arguments from unicode to user_encoding before
 
6483
  invoking external mail client in `bzr send` command.
 
6484
  (#139318, Alexander Belchenko)
 
6485
 
 
6486
* Fixed problem connecting to ``bzr+https://`` servers.
 
6487
  (#198793, John Ferlito)
 
6488
 
 
6489
* Improved error reporting in the Launchpad plugin. (Daniel Watkins,
 
6490
  #196618)
 
6491
 
 
6492
* Include quick-start-summary.svg file to python-based installer(s)
 
6493
  for Windows. (#192924, Alexander Belchenko)
 
6494
 
 
6495
* lca merge now respects specified files. (Aaron Bentley)
 
6496
 
 
6497
* Make version-info --custom imply --all. (#195560, James Westby)
 
6498
 
 
6499
* ``merge --preview`` now works for merges that add or modify
 
6500
  symlinks (James Henstridge)
 
6501
 
 
6502
* Redirecting the output from ``bzr merge`` (when the remembered
 
6503
  location is used) now works. (John Arbash Meinel)
 
6504
 
 
6505
* setup.py script explicitly checks for Python version.
 
6506
  (Jari Aalto, Alexander Belchenko, #200569)
 
6507
 
 
6508
* UnknownFormatErrors no longer refer to branches regardless of kind of
 
6509
  unknown format. (Daniel Watkins, #173980)
 
6510
 
 
6511
* Upgrade bundled ConfigObj to version 4.5.2, which properly quotes #
 
6512
  signs, among other small improvements. (Matt Nordhoff, #86838)
 
6513
 
 
6514
* Use correct indices when emitting LCA conflicts.  This fixes IndexError
 
6515
  errors.  (Aaron Bentley, #196780)
 
6516
 
 
6517
Documentation
 
6518
*************
 
6519
 
 
6520
* Explained how to use ``version-info --custom`` in the User Guide.
 
6521
  (Neil Martinsen-Burrell)
 
6522
 
 
6523
API Breaks
 
6524
**********
 
6525
 
 
6526
* Support for loading plugins from zip files and
 
6527
  ``bzrlib.plugin.load_from_zip()`` function are deprecated.
 
6528
  (Alexander Belchenko)
 
6529
 
 
6530
Testing
 
6531
*******
 
6532
 
 
6533
* Added missing blackbox tests for ``modified`` (Adrian Wilkins)
 
6534
 
 
6535
* The branch interface tests were invalid for branches using rich-root
 
6536
  repositories because the empty string is not a valid file-id.
 
6537
  (Robert Collins)
 
6538
 
 
6539
Internals
 
6540
*********
 
6541
 
 
6542
* ``Graph.iter_ancestry`` returns the ancestry of revision ids. Similar to
 
6543
  ``Repository.get_revision_graph()`` except it includes ghosts and you can
 
6544
  stop part-way through. (John Arbash Meinel)
 
6545
 
 
6546
* New module ``tools/package_mf.py`` provide custom module finder for
 
6547
  python packages (improves standard python library's modulefinder.py)
 
6548
  used by ``setup.py`` script while building standalone bzr.exe.
 
6549
  (Alexander Belchenko)
 
6550
 
 
6551
* New remote method ``RemoteBzrDir.find_repositoryV2`` adding support for
 
6552
  detecting external lookup support on remote repositories. This method is
 
6553
  now attempted first when lookup up repositories, leading to an extra
 
6554
  round trip on older bzr smart servers. (Robert Collins)
 
6555
 
 
6556
* Repository formats have a new supported-feature attribute
 
6557
  ``supports_external_lookups`` used to indicate repositories which support
 
6558
  falling back to other repositories when they have partial data.
 
6559
  (Robert Collins)
 
6560
 
 
6561
* ``Repository.get_revision_graph_with_ghosts`` and
 
6562
  ``bzrlib.revision.(common_ancestor,MultipleRevisionSources,common_graph)``
 
6563
  have been deprecated.  (John Arbash Meinel)
 
6564
 
 
6565
* ``Tree.iter_changes`` is now a public API, replacing the work-in-progress
 
6566
  ``Tree._iter_changes``. The api is now considered stable and ready for
 
6567
  external users.  (Aaron Bentley)
 
6568
 
 
6569
* The bzrdir format registry now accepts an ``alias`` keyword to
 
6570
  register_metadir, used to indicate that a format name is an alias for
 
6571
  some other format and thus should not be reported when describing the
 
6572
  format. (Robert Collins)
 
6573
 
 
6574
 
 
6575
bzr 1.2
 
6576
#######
 
6577
 
 
6578
:Released: 2008-02-15
 
6579
 
 
6580
Bug Fixes
 
6581
*********
 
6582
 
 
6583
* Fix failing test in Launchpad plugin. (Martin Pool)
 
6584
 
 
6585
 
 
6586
bzr 1.2rc1
 
6587
##########
 
6588
 
 
6589
:Released: 2008-02-13
 
6590
 
 
6591
Notes When Upgrading
 
6592
********************
 
6593
 
 
6594
* Fetching via the smart protocol may need to reconnect once during a fetch
 
6595
  if the remote server is running Bazaar 1.1 or earlier, because the client
 
6596
  attempts to use more efficient requests that confuse older servers.  You
 
6597
  may be required to re-enter a password or passphrase when this happens.
 
6598
  This won't happen if the server is upgraded to Bazaar 1.2.
 
6599
  (Andrew Bennetts)
 
6600
 
 
6601
Changes
 
6602
*******
 
6603
 
 
6604
* Fetching via bzr+ssh will no longer fill ghosts by default (this is
 
6605
  consistent with pack-0.92 fetching over SFTP). (Robert Collins)
 
6606
 
 
6607
* Formatting of ``bzr plugins`` output is changed to be more human-
 
6608
  friendly. Full path of plugins locations will be shown only with
 
6609
  ``--verbose`` command-line option. (Alexander Belchenko)
 
6610
 
 
6611
* ``merge`` now prefers to use the submit branch, but will fall back to
 
6612
  parent branch.  For many users, this has no effect.  But some users who
 
6613
  pull and merge on the same branch will notice a change.  This change
 
6614
  makes it easier to work on a branch on two different machines, pulling
 
6615
  between the machines, while merging from the upstream.
 
6616
  ``merge --remember`` can now be used to set the submit_branch.
 
6617
  (Aaron Bentley)
 
6618
 
 
6619
Features
 
6620
********
 
6621
 
 
6622
* ``merge --preview`` produces a diff of the changes merge would make,
 
6623
  but does not actually perform the merge.  (Aaron Bentley)
 
6624
 
 
6625
* New smart method ``Repository.get_parent_map`` for getting revision
 
6626
  parent data. This returns additional parent information topologically
 
6627
  adjacent to the requested data to reduce round trip latency impacts.
 
6628
  (Robert Collins)
 
6629
 
 
6630
* New smart method, ``Repository.stream_revisions_chunked``, for fetching
 
6631
  revision data that streams revision data via a chunked encoding.  This
 
6632
  avoids buffering large amounts of revision data on the server and on the
 
6633
  client, and sends less data to the server to request the revisions.
 
6634
  (Andrew Bennetts, Robert Collins, #178353)
 
6635
 
 
6636
* The launchpad plugin now handles lp urls of the form
 
6637
  ``lp://staging/``, ``lp://demo/``, ``lp://dev/`` to use the appropriate
 
6638
  launchpad instance to do the resolution of the branch identities.
 
6639
  This is primarily of use to Launchpad developers, but can also
 
6640
  be used by other users who want to try out Launchpad as
 
6641
  a branch location without messing up their public Launchpad
 
6642
  account.  Branches that are pushed to the staging environment
 
6643
  have an expected lifetime of one day. (Tim Penhey)
 
6644
 
 
6645
Improvements
 
6646
************
 
6647
 
 
6648
* Creating a new branch no longer tries to read the entire revision-history
 
6649
  unnecessarily over smart server operations. (Robert Collins)
 
6650
 
 
6651
* Fetching between different repository formats with compatible models now
 
6652
  takes advantage of the smart method to stream revisions.  (Andrew Bennetts)
 
6653
 
 
6654
* The ``--coverage`` option is now global, rather specific to ``bzr
 
6655
  selftest``.  (Andrew Bennetts)
 
6656
 
 
6657
* The ``register-branch`` command will now use the public url of the branch
 
6658
  containing the current directory, if one has been set and no explicit
 
6659
  branch is provided.  (Robert Collins)
 
6660
 
 
6661
* Tweak the ``reannotate`` code path to optimize the 2-parent case.
 
6662
  Speeds up ``bzr annotate`` with a pack repository by approx 3:2.
 
6663
  (John Arbash Meinel)
 
6664
 
 
6665
Bugfixes
 
6666
********
 
6667
 
 
6668
* Calculate remote path relative to the shared medium in _SmartClient.  This
 
6669
  is related to the problem in bug #124089.  (Andrew Bennetts)
 
6670
 
 
6671
* Cleanly handle connection errors in smart protocol version two, the same
 
6672
  way as they are handled by version one.  (Andrew Bennetts)
 
6673
 
 
6674
* Clearer error when ``version-info --custom`` is used without
 
6675
  ``--template`` (Lukáš Lalinský)
 
6676
 
 
6677
* Don't raise UnavailableFeature during test setup when medusa is not
 
6678
  available or tearDown is never called leading to nasty side effects.
 
6679
  (#137823, Vincent Ladeuil)
 
6680
 
 
6681
* If a plugin's test suite cannot be loaded, for example because of a syntax
 
6682
  error in the tests, then ``selftest`` fails, rather than just printing
 
6683
  a warning.  (Martin Pool, #189771)
 
6684
 
 
6685
* List possible values for BZR_SSH environment variable in env-variables
 
6686
  help topic. (Alexander Belchenko, #181842)
 
6687
 
 
6688
* New methods ``push_log_file`` and ``pop_log_file`` to intercept messages:
 
6689
  popping the log redirection now precisely restores the previous state,
 
6690
  which makes it easier to use bzr log output from other programs.
 
6691
  TestCaseInTempDir no longer depends on a log redirection being established
 
6692
  by the test framework, which lets bzr tests cleanly run from a normal
 
6693
  unittest runner.
 
6694
  (#124153, #124849, Martin Pool, Jonathan Lange)
 
6695
 
 
6696
* ``pull --quiet`` is now more quiet, in particular a message is no longer
 
6697
  printed when the remembered pull location is used. (James Westby,
 
6698
  #185907)
 
6699
 
 
6700
* ``reconfigure`` can safely be interrupted while fetching.
 
6701
  (Aaron Bentley, #179316)
 
6702
 
 
6703
* ``reconfigure`` preserves tags when converting to and from lightweight
 
6704
  checkouts.  (Aaron Bentley, #182040)
 
6705
 
 
6706
* Stop polluting /tmp when running selftest.
 
6707
  (Vincent Ladeuil, #123363)
 
6708
 
 
6709
* Switch from NFKC => NFC for normalization checks. NFC allows a few
 
6710
  more characters which should be considered valid.
 
6711
  (John Arbash Meinel, #185458)
 
6712
 
 
6713
* The launchpad plugin now uses the ``edge`` xmlrpc server to avoid
 
6714
  interacting badly with a bug on the launchpad side. (Robert Collins)
 
6715
 
 
6716
* Unknown hostnames when connecting to a ``bzr://`` URL no longer cause
 
6717
  tracebacks.  (Andrew Bennetts, #182849)
 
6718
 
 
6719
API Breaks
 
6720
**********
 
6721
 
 
6722
* Classes implementing Merge types like Merge3Merger must now accept (and
 
6723
  honour) a do_merge flag in their constructor.  (Aaron Bentley)
 
6724
 
 
6725
* ``Repository.add_inventory`` and ``add_revision`` now require the caller
 
6726
  to previously take a write lock (and start a write group.)
 
6727
  (Martin Pool)
 
6728
 
 
6729
Testing
 
6730
*******
 
6731
 
 
6732
* selftest now accepts --load-list <file> to load a test id list. This
 
6733
  speeds up running the test suite on a limited set of tests.
 
6734
  (Vincent Ladeuil)
 
6735
 
 
6736
Internals
 
6737
*********
 
6738
 
 
6739
* Add a new method ``get_result`` to graph search objects. The resulting
 
6740
  ``SearchResult`` can be used to recreate the search later, which will
 
6741
  be useful in reducing network traffic. (Robert Collins)
 
6742
 
 
6743
* Use convenience function to check whether two repository handles
 
6744
  are referring to the same repository in ``Repository.get_graph``.
 
6745
  (Jelmer Vernooij, #187162)
 
6746
 
 
6747
* Fetching now passes the find_ghosts flag through to the
 
6748
  ``InterRepository.missing_revision_ids`` call consistently for all
 
6749
  repository types. This will enable faster missing revision discovery with
 
6750
  bzr+ssh. (Robert Collins)
 
6751
 
 
6752
* Fix error handling in Repository.insert_data_stream. (Lukas Lalinsky)
 
6753
 
 
6754
* ``InterRepository.missing_revision_ids`` is now deprecated in favour of
 
6755
  ``InterRepository.search_missing_revision_ids`` which returns a
 
6756
  ``bzrlib.graph.SearchResult`` suitable for making requests from the smart
 
6757
  server. (Robert Collins)
 
6758
 
 
6759
* New error ``NoPublicBranch`` for commands that need a public branch to
 
6760
  operate. (Robert Collins)
 
6761
 
 
6762
* New method ``iter_inventories`` on Repository for access to many
 
6763
  inventories. This is primarily used by the ``revision_trees`` method, as
 
6764
  direct access to inventories is discouraged. (Robert Collins)
 
6765
 
 
6766
* New method ``next_with_ghosts`` on the Graph breadth-first-search objects
 
6767
  which will split out ghosts and present parents into two separate sets,
 
6768
  useful for code which needs to be aware of ghosts (e.g. fetching data
 
6769
  cares about ghosts during revision selection). (Robert Collins)
 
6770
 
 
6771
* Record a timestamp against each mutter to the trace file, relative to the
 
6772
  first import of bzrlib.  (Andrew Bennetts)
 
6773
 
 
6774
* ``Repository.get_data_stream`` is now deprecated in favour of
 
6775
  ``Repository.get_data_stream_for_search`` which allows less network
 
6776
  traffic when requesting data streams over a smart server. (Robert Collins)
 
6777
 
 
6778
* ``RemoteBzrDir._get_tree_branch`` no longer triggers ``_ensure_real``,
 
6779
  removing one round trip on many network operations. (Robert Collins)
 
6780
 
 
6781
* RemoteTransport's ``recommended_page_size`` method now returns 64k, like
 
6782
  SFTPTransport and HttpTransportBase.  (Andrew Bennetts)
 
6783
 
 
6784
* Repository has a new method ``has_revisions`` which signals the presence
 
6785
  of many revisions by returning a set of the revisions listed which are
 
6786
  present. This can be done by index queries without reading data for parent
 
6787
  revision names etc. (Robert Collins)
 
6788
 
 
6789
 
 
6790
bzr 1.1
 
6791
#######
 
6792
 
 
6793
:Released: 2008-01-15
1828
6794
 
1829
6795
(no changes from 1.1rc1)
1830
6796
 
1831
 
bzr 1.1rc1 2008-01-05
1832
 
---------------------
1833
 
 
1834
 
  CHANGES:
1835
 
   
1836
 
   * Dotted revision numbers have been revised. Instead of growing longer with
1837
 
     nested branches the branch number just increases. (eg instead of 1.1.1.1.1
1838
 
     we now report 1.2.1.) This helps scale long lived branches which have many
1839
 
     feature branches merged between them. (John Arbash Meinel)
1840
 
 
1841
 
   * The syntax ``bzr diff branch1 branch2`` is no longer supported.
1842
 
     Use ``bzr diff branch1 --new branch2`` instead. This change has
1843
 
     been made to remove the ambiguity where ``branch2`` is in fact a
1844
 
     specific file to diff within ``branch1``.
1845
 
 
1846
 
  FEATURES:
1847
 
 
1848
 
   * New option to use custom template-based formats in  ``bzr version-info``.
1849
 
     (Lukáš Lalinský)
1850
 
 
1851
 
   * diff '--using' allows an external diff tool to be used for files.
1852
 
     (Aaron Bentley)
1853
 
 
1854
 
   * New "lca" merge-type for fast everyday merging that also supports
1855
 
     criss-cross merges.  (Aaron Bentley)
1856
 
 
1857
 
  IMPROVEMENTS:
1858
 
 
1859
 
   * ``annotate`` now doesn't require a working tree. (Lukáš Lalinský,
1860
 
     #90049)
1861
 
 
1862
 
   * ``branch`` and ``checkout`` can now use files from a working tree to
1863
 
     to speed up the process.  For checkout, this requires the new
1864
 
     --files-from flag.  (Aaron Bentley)
1865
 
 
1866
 
   * ``bzr diff`` now sorts files in alphabetical order.  (Aaron Bentley)
1867
 
 
1868
 
   * ``bzr diff`` now works on branches without working trees. Tree-less
1869
 
     branches can also be compared to each other and to working trees using
1870
 
     the new diff options ``--old`` and ``--new``. Diffing between branches,
1871
 
     with or without trees, now supports specific file filtering as well.
1872
 
     (Ian Clatworthy, #6700)
1873
 
 
1874
 
   * ``bzr pack`` now orders revision texts in topological order, with newest
1875
 
     at the start of the file, promoting linear reads for ``bzr log`` and the
1876
 
     like. This partially fixes #154129. (Robert Collins)
1877
 
 
1878
 
   * Merge directives now fetch prerequisites from the target branch if
1879
 
     needed.  (Aaron Bentley)
1880
 
 
1881
 
   * pycurl now handles digest authentication.
1882
 
     (Vincent Ladeuil)
1883
 
 
1884
 
   * ``reconfigure`` can now convert from repositories.  (Aaron Bentley)
1885
 
 
1886
 
   * ``-l`` is now a short form for ``--limit`` in ``log``.  (Matt Nordhoff)
1887
 
 
1888
 
   * ``merge`` now warns when merge directives cause cherrypicks.
1889
 
     (Aaron Bentley)
1890
 
 
1891
 
   * ``split`` now supported, to enable splitting large trees into smaller
1892
 
     pieces.  (Aaron Bentley)
1893
 
 
1894
 
  BUGFIXES:
1895
 
 
1896
 
   * Avoid AttributeError when unlocking a pack repository when an error occurs.
1897
 
     (Martin Pool, #180208)
1898
 
 
1899
 
   * Better handle short reads when processing multiple range requests.
1900
 
     (Vincent Ladeuil, #179368)
1901
 
 
1902
 
   * build_tree acceleration uses the correct path when a file has been moved.
1903
 
     (Aaron Bentley)
1904
 
 
1905
 
   * ``commit`` now succeeds when a checkout and its master branch share a
1906
 
     repository.  (Aaron Bentley, #177592)
1907
 
 
1908
 
   * Fixed error reporting of unsupported timezone format in
1909
 
     ``log --timezone``. (Lukáš Lalinský, #178722)
1910
 
 
1911
 
   * Fixed Unicode encoding error in ``ignored`` when the output is
1912
 
     redirected to a pipe. (Lukáš Lalinský)
1913
 
 
1914
 
   * Fix traceback when sending large response bodies over the smart protocol
1915
 
     on Windows. (Andrew Bennetts, #115781)
1916
 
 
1917
 
   * Fix ``urlutils.relative_url`` for the case of two ``file:///`` URLs
1918
 
     pointed to different logical drives on Windows.
1919
 
     (Alexander Belchenko, #90847)
1920
 
 
1921
 
   * HTTP test servers are now compatible with the http protocol version 1.1.
1922
 
     (Vincent Ladeuil, #175524)
1923
 
 
1924
 
   * _KnitParentsProvider.get_parent_map now handles requests for ghosts
1925
 
     correctly, instead of erroring or attributing incorrect parents to ghosts.
1926
 
     (Aaron Bentley)
1927
 
 
1928
 
   * ``merge --weave --uncommitted`` now works.  (Aaron Bentley)
1929
 
 
1930
 
   * pycurl authentication handling was broken and incomplete. Fix handling of
1931
 
     user:pass embedded in the urls.
1932
 
     (Vincent Ladeuil, #177643)
1933
 
 
1934
 
   * Files inside non-directories are now handled like other conflict types.
1935
 
     (Aaron Bentley, #177390)
1936
 
 
1937
 
   * ``reconfigure`` is able to convert trees into lightweight checkouts.
1938
 
     (Aaron Bentley)
1939
 
 
1940
 
   * Reduce lockdir timeout to 0 when running ``bzr serve``.  (Andrew Bennetts,
1941
 
     #148087)
1942
 
 
1943
 
   * Test that the old ``version_info_format`` functions still work, even
1944
 
     though they are deprecated. (John Arbash Meinel, ShenMaq, #177872)
1945
 
 
1946
 
   * Transform failures no longer cause ImmortalLimbo errors (Aaron Bentley,
1947
 
     #137681)
1948
 
 
1949
 
   * ``uncommit`` works even when the commit messages of revisions to be
1950
 
     removed use characters not supported in the terminal encoding.
1951
 
     (Aaron Bentley)
1952
 
 
1953
 
   * When dumb http servers return whole files instead of the requested ranges,
1954
 
     read the remaining bytes by chunks to avoid overflowing network buffers.
1955
 
     (Vincent Ladeuil, #175886)
1956
 
 
1957
 
  DOCUMENTATION:
1958
 
 
1959
 
   * Minor tweaks made to the bug tracker integration documentation.
1960
 
     (Ian Clatworthy)
1961
 
 
1962
 
   * Reference material has now be moved out of the User Guide and added
1963
 
     to the User Reference. The User Reference has gained 4 sections as
1964
 
     a result: Authenication Settings, Configuration Settings, Conflicts
1965
 
     and Hooks. All help topics are now dumped into text format in the
1966
 
     doc/en/user-reference directory for those who like browsing that
1967
 
     information in their editor. (Ian Clatworthy)
1968
 
 
1969
 
   * *Using Bazaar with Launchpad* tutorial added. (Ian Clatworthy)
1970
 
 
1971
 
  INTERNALS:
1972
 
 
1973
 
    * find_* methods available for BzrDirs, Branches and WorkingTrees.
1974
 
      (Aaron Bentley)
1975
 
 
1976
 
    * Help topics can now be loaded from files. 
1977
 
      (Ian Clatworthy, Alexander Belchenko)
1978
 
 
1979
 
    * get_parent_map now always provides tuples as its output.  (Aaron Bentley)
1980
 
 
1981
 
    * Parent Providers should now implement ``get_parent_map`` returning a
1982
 
      dictionary instead of ``get_parents`` returning a list.
1983
 
      ``Graph.get_parents`` is now deprecated. (John Arbash Meinel,
1984
 
      Robert Collins)
1985
 
 
1986
 
    * Patience Diff now supports arbitrary python objects, as long as they
1987
 
      support ``hash()``. (John Arbash Meinel)
1988
 
 
1989
 
    * Reduce selftest overhead to establish test names by memoization.
1990
 
      (Vincent Ladeuil)
1991
 
 
1992
 
  API BREAKS:
1993
 
 
1994
 
  TESTING:
1995
 
 
1996
 
   * Modules can now customise their tests by defining a ``load_tests``
1997
 
     attribute. ``pydoc bzrlib.tests.TestUtil.TestLoader.loadTestsFromModule``
1998
 
     for the documentation on this attribute. (Robert Collins)
1999
 
 
2000
 
   * New helper function ``bzrlib.tests.condition_id_re`` which helps
2001
 
     filter tests based on a regular expression search on the tests id.
2002
 
     (Robert Collins)
2003
 
    
2004
 
   * New helper function ``bzrlib.tests.condition_isinstance`` which helps
2005
 
     filter tests based on class. (Robert Collins)
2006
 
    
2007
 
   * New helper function ``bzrlib.tests.exclude_suite_by_condition`` which
2008
 
     generalises the ``exclude_suite_by_re`` function. (Robert Collins)
2009
 
 
2010
 
   * New helper function ``bzrlib.tests.filter_suite_by_condition`` which
2011
 
     generalises the ``filter_suite_by_re`` function. (Robert Collins)
2012
 
 
2013
 
   * New helper method ``bzrlib.tests.exclude_tests_by_re`` which gives a new
2014
 
     TestSuite that does not contain tests from the input that matched a
2015
 
     regular expression. (Robert Collins)
2016
 
 
2017
 
   * New helper method ``bzrlib.tests.randomize_suite`` which returns a
2018
 
     randomized copy of the input suite. (Robert Collins)
2019
 
 
2020
 
   * New helper method ``bzrlib.tests.split_suite_by_re`` which splits a test
2021
 
     suite into two according to a regular expression. (Robert Collins)
2022
 
 
2023
 
   * Parametrize all http tests for the transport implementations, the http
2024
 
     protocol versions (1.0 and 1.1) and the authentication schemes.
2025
 
     (Vincent Ladeuil) 
2026
 
 
2027
 
   * The ``exclude_pattern`` and ``random_order`` parameters to the function
2028
 
     ``bzrlib.tests.filter_suite_by_re`` have been deprecated. (Robert Collins)
2029
 
 
2030
 
   * The method ``bzrlib.tests.sort_suite_by_re`` has been deprecated. It is 
2031
 
     replaced by the new helper methods added in this release. (Robert Collins)
2032
 
 
2033
 
 
2034
 
bzr 1.0 2007-12-14
2035
 
------------------
2036
 
 
2037
 
  DOCUMENTATION:
2038
 
 
2039
 
   * More improvements and fixes to the User Guide.  (Ian Clatworthy)
2040
 
 
2041
 
   * Add information on cherrypicking/rebasing to the User Guide.
2042
 
     (Ian Clatworthy)
2043
 
 
2044
 
   * Improve bug tracker integration documentation. (Ian Clatworthy)
2045
 
 
2046
 
   * Minor edits to ``Bazaar in five minutes`` from David Roberts and
2047
 
     to the rebasing section of the User Guide from Aaron Bentley.
2048
 
     (Ian Clatworthy)
2049
 
 
2050
 
 
2051
 
bzr 1.0rc3 2007-12-11
2052
 
---------------------
2053
 
 
2054
 
  CHANGES:
2055
 
   
2056
 
   * If a traceback occurs, users are now asked to report the bug 
2057
 
     through Launchpad (https://bugs.launchpad.net/bzr/), rather than 
2058
 
     by mail to the mailing list.
2059
 
     (Martin Pool)
2060
 
 
2061
 
  BUGFIXES:
2062
 
 
2063
 
   * Fix Makefile rules for doc generation. (Ian Clatworthy, #175207)
2064
 
 
2065
 
   * Give more feedback during long http downloads by making readv deliver data
2066
 
     as it arrives for urllib, and issue more requests for pycurl. High latency
2067
 
     networks are better handled by urllib, the pycurl implementation give more
2068
 
     feedback but also incur more latency.
2069
 
     (Vincent Ladeuil, #173010)
2070
 
 
2071
 
   * Implement _make_parents_provider on RemoteRepository, allowing generating
2072
 
     bundles against branches on a smart server.  (Andrew Bennetts, #147836)
2073
 
 
2074
 
  DOCUMENTATION:
2075
 
 
2076
 
   * Improved user guide.  (Ian Clatworthy)
2077
 
 
2078
 
   * The single-page quick reference guide is now available as a PDF.
2079
 
     (Ian Clatworthy)
2080
 
 
2081
 
  INTERNALS:
2082
 
 
2083
 
    * readv urllib http implementation is now a real iterator above the
2084
 
      underlying socket and deliver data as soon as it arrives. 'get' still
2085
 
      wraps its output in a StringIO.
2086
 
      (Vincent Ladeuil)
2087
 
 
2088
 
 
2089
 
bzr 1.0rc2 2007-12-07
2090
 
---------------------
2091
 
 
2092
 
  IMPROVEMENTS:
2093
 
 
2094
 
   * Added a --coverage option to selftest. (Andrew Bennetts)
2095
 
 
2096
 
   * Annotate merge (merge-type=weave) now supports cherrypicking.
2097
 
     (Aaron Bentley)
2098
 
 
2099
 
   * ``bzr commit`` now doesn't print the revision number twice. (Matt
2100
 
     Nordhoff, #172612)
2101
 
 
2102
 
   * New configuration option ``bugtracker_<tracker_abbrevation>_url`` to
2103
 
     define locations of bug trackers that are not directly supported by
2104
 
     bzr or a plugin. The URL will be treated as a template and ``{id}``
2105
 
     placeholders will be replaced by specific bug IDs.  (Lukáš Lalinský)
2106
 
 
2107
 
   * Support logging single merge revisions with short and line log formatters.
2108
 
     (Kent Gibson)
2109
 
 
2110
 
   * User Guide enhanced with suggested readability improvements from
2111
 
     Matt Revell and corrections from John Arbash Meinel. (Ian Clatworthy)
2112
 
 
2113
 
   * Quick Start Guide renamed to Quick Start Card, moved down in
2114
 
     the catalog, provided in pdf and png format and updated to refer
2115
 
     to ``send`` instead of ``bundle``. (Ian Clatworthy, #165080)
2116
 
 
2117
 
   * ``switch`` can now be used on heavyweight checkouts as well as
2118
 
     lightweight ones. After switching a heavyweight checkout, the
2119
 
     local branch is a mirror/cache of the new bound branch and
2120
 
     uncommitted changes in the working tree are merged. As a safety
2121
 
     check, if there are local commits in a checkout which have not
2122
 
     been committed to the previously bound branch, then ``switch``
2123
 
     fails unless the ``--force`` option is given. This option is
2124
 
     now also required if the branch a lightweight checkout is pointing
2125
 
     to has been moved. (Ian Clatworthy)
2126
 
 
2127
 
  INTERNALS:
2128
 
 
2129
 
    * New -Dhttp debug option reports http connections, requests and responses.
2130
 
      (Vincent Ladeuil)
2131
 
 
2132
 
    * New -Dmerge debug option, which emits merge plans for merge-type=weave.
2133
 
 
2134
 
  BUGFIXES:
2135
 
 
2136
 
   * Better error message when running ``bzr cat`` on a non-existant branch.
2137
 
     (Lukáš Lalinský, #133782)
2138
 
 
2139
 
   * Catch OSError 17 (file exists) in final phase of tree transform and show
2140
 
     filename to user.
2141
 
     (Alexander Belchenko, #111758)
2142
 
 
2143
 
   * Catch ShortReadvErrors while using pycurl. Also make readv more robust by
2144
 
     allowing multiple GET requests to be issued if too many ranges are
2145
 
     required.
2146
 
     (Vincent Ladeuil, #172701)
2147
 
 
2148
 
   * Check for missing basis texts when fetching from packs to packs.
2149
 
     (John Arbash Meinel, #165290)
2150
 
 
2151
 
   * Fall back to showing e-mail in ``log --short/--line`` if the 
2152
 
     committer/author has only e-mail. (Lukáš Lalinský, #157026)
2153
 
 
2154
 
  API BREAKS:
2155
 
 
2156
 
   * Deprecate not passing a ``location`` argument to commit reporters'
2157
 
     ``started`` methods. (Matt Nordhoff)
2158
 
 
2159
 
 
2160
 
bzr 1.0rc1 2007-11-30
2161
 
---------------------
2162
 
 
2163
 
  NOTES WHEN UPGRADING:
2164
 
 
2165
 
   * The default repository format is now ``pack-0.92``.  This 
2166
 
     default is used when creating new repositories with ``init`` and 
2167
 
     ``init-repo``, and when branching over bzr+ssh or bzr+hpss. 
2168
 
     (See https://bugs.launchpad.net/bugs/164626)
2169
 
 
2170
 
     This format can be read and written by Bazaar 0.92 and later, and 
2171
 
     data can be transferred to and from older formats.
2172
 
 
2173
 
     To upgrade, please reconcile your repository (``bzr reconcile``), and then
2174
 
     upgrade (``bzr upgrade``). 
2175
 
     
2176
 
     ``pack-0.92`` offers substantially better scaling and performance than the
2177
 
     previous knits format. Some operations are slower where the code already
2178
 
     had bad scaling characteristics under knits, the pack format makes such
2179
 
     operations more visible as part of being more scalable overall. We will
2180
 
     correct such operations over the coming releases and encourage the filing
2181
 
     of bugs on any operation which you observe to be slower in a packs
2182
 
     repository. One particular case that we do not intend to fix is pulling
2183
 
     data from a pack repository into a knit repository over a high latency
2184
 
     link;  downgrading such data requires reinsertion of the file texts, and
2185
 
     this is a classic space/time tradeoff. The current implementation is
2186
 
     conservative on memory usage because we need to support converting data
2187
 
     from any tree without problems.  
2188
 
     (Robert Collins, Martin Pool, #164476)
2189
 
 
2190
 
  CHANGES:
2191
 
 
2192
 
   * Disable detection of plink.exe as possible ssh vendor. Plink vendor
2193
 
     still available if user selects it explicitly with BZR_SSH environment
2194
 
     variable. (Alexander Belchenko, workaround for bug #107593)
2195
 
 
2196
 
   * The pack format is now accessible as "pack-0.92", or "pack-0.92-subtree" 
2197
 
     to enable the subtree functions (for example, for bzr-svn).  
2198
 
     See http://doc.bazaar-vcs.org/latest/developer/packrepo.html
2199
 
     (Martin Pool)
2200
 
 
2201
 
  FEATURES:
2202
 
 
2203
 
   * New ``authentication.conf`` file holding the password or other credentials
2204
 
     for remote servers. This can be used for ssh, sftp, smtp and other 
2205
 
     supported transports.
2206
 
     (Vincent Ladeuil)
2207
 
 
2208
 
   * New rich-root and rich-root-pack formats, recording the same data about
2209
 
     tree roots that's recorded for all other directories.
2210
 
     (Aaron Bentley, #164639)
2211
 
 
2212
 
   * ``pack-0.92`` repositories can now be reconciled.
2213
 
     (Robert Collins, #154173)
2214
 
 
2215
 
   * ``switch`` command added for changing the branch a lightweight checkout
2216
 
     is associated with and updating the tree to reflect the latest content
2217
 
     accordingly. This command was previously part of the BzrTools plug-in.
2218
 
     (Ian Clatworthy, Aaron Bentley, David Allouche)
2219
 
 
2220
 
   * ``reconfigure`` command can now convert branches, trees, or checkouts to
2221
 
     lightweight checkouts.  (Aaron Bentley)
2222
 
 
2223
 
  PERFORMANCE:
2224
 
 
2225
 
   * Commit updates the state of the working tree via a delta rather than
2226
 
     supplying entirely new basis trees. For commit of a single specified file
2227
 
     this reduces the wall clock time for commit by roughly a 30%.
2228
 
     (Robert Collins, Martin Pool)
2229
 
 
2230
 
   * Commit with many automatically found deleted paths no longer performs
2231
 
     linear scanning for the children of those paths during inventory
2232
 
     iteration. This should fix commit performance blowing out when many such
2233
 
     paths occur during commit. (Robert Collins, #156491)
2234
 
 
2235
 
   * Fetch with pack repositories will no longer read the entire history graph.
2236
 
     (Robert Collins, #88319)
2237
 
 
2238
 
   * Revert takes out an appropriate lock when reverting to a basis tree, and
2239
 
     does not read the basis inventory twice. (Robert Collins)
2240
 
 
2241
 
   * Diff does not require an inventory to be generated on dirstate trees.
2242
 
     (Aaron Bentley, #149254)
2243
 
 
2244
 
   * New annotate merge (--merge-type=weave) implementation is fast on
2245
 
     versionedfiles withough cached annotations, e.g. pack-0.92.
2246
 
     (Aaron Bentley)
2247
 
 
2248
 
  IMPROVEMENTS:
2249
 
 
2250
 
   * ``bzr merge`` now warns when it encounters a criss-cross merge.
2251
 
     (Aaron Bentley)
2252
 
 
2253
 
   * ``bzr send`` now doesn't require the target e-mail address to be
2254
 
     specified on the command line if an interactive e-mail client is used.
2255
 
     (Lukáš Lalinský)
2256
 
 
2257
 
   * ``bzr tags`` now prints the revision number for each tag, instead of
2258
 
     the revision id, unless --show-ids is passed. In addition, tags can be
2259
 
     sorted chronologically instead of lexicographically with --sort=time.
2260
 
     (Adeodato Simó, #120231)
2261
 
 
2262
 
   * Windows standalone version of bzr is able to load system-wide plugins from
2263
 
     "plugins" subdirectory in installation directory. In addition standalone
2264
 
     installer write to the registry (HKLM\SOFTWARE\Bazaar) useful info 
2265
 
     about paths and bzr version. (Alexander Belchenko, #129298)
2266
 
 
2267
 
  DOCUMENTATION:
2268
 
 
2269
 
  BUG FIXES:
2270
 
 
2271
 
   * A progress bar has been added for knitpack -> knitpack fetching.
2272
 
     (Robert Collins, #157789, #159147)
2273
 
 
2274
 
   * Branching from a branch via smart server now preserves the repository
2275
 
     format. (Andrew Bennetts,  #164626)
2276
 
     
2277
 
   * ``commit`` is now able to invoke an external editor in a non-ascii
2278
 
     directory. (Daniel Watkins, #84043)
2279
 
 
2280
 
   * Catch connection errors for ftp.
2281
 
     (Vincent Ladeuil, #164567)
2282
 
 
2283
 
   * ``check`` no longer reports spurious unreferenced text versions.
2284
 
     (Robert Collins, John A Meinel, #162931, #165071)
2285
 
 
2286
 
   * Conflicts are now resolved recursively by ``revert``.
2287
 
     (Aaron Bentley, #102739)
2288
 
 
2289
 
   * Detect invalid transport reuse attempts by catching invalid URLs.
2290
 
     (Vincent Ladeuil, #161819)
2291
 
 
2292
 
   * Deleting a file without removing it shows a correct diff, not a traceback.
2293
 
     (Aaron Bentley)
2294
 
 
2295
 
   * Do no use timeout in HttpServer anymore.
2296
 
     (Vincent Ladeuil, #158972).
2297
 
 
2298
 
   * Don't catch the exceptions related to the http pipeline status before
2299
 
     retrying an http request or some programming errors may be masked.
2300
 
     (Vincent Ladeuil, #160012)
2301
 
 
2302
 
   * Fix ``bzr rm`` to not delete modified and ignored files.
2303
 
     (Lukáš Lalinský, #172598)
2304
 
 
2305
 
   * Fix exception when revisionspec contains merge revisons but log
2306
 
     formatter doesn't support merge revisions. (Kent Gibson, #148908)
2307
 
 
2308
 
   * Fix exception when ScopeReplacer is assigned to before any members have
2309
 
     been retrieved.  (Aaron Bentley)
2310
 
 
2311
 
   * Fix multiple connections during checkout --lightweight.
2312
 
     (Vincent Ladeuil, #159150)
2313
 
 
2314
 
   * Fix possible error in insert_data_stream when copying between 
2315
 
     pack repositories over bzr+ssh or bzr+http.  
2316
 
     KnitVersionedFile.get_data_stream now makes sure that requested
2317
 
     compression parents are sent before any delta hunks that depend 
2318
 
     on them.
2319
 
     (Martin Pool, #164637)
2320
 
 
2321
 
   * Fix typo in limiting offsets coalescing for http, leading to
2322
 
     whole files being downloaded instead of parts.
2323
 
     (Vincent Ladeuil, #165061)
2324
 
 
2325
 
   * FTP server errors don't error in the error handling code.
2326
 
     (Robert Collins, #161240)
2327
 
 
2328
 
   * Give a clearer message when a pull fails because the source needs
2329
 
     to be reconciled.
2330
 
     (Martin Pool, #164443)
2331
 
 
2332
 
   * It is clearer when a plugin cannot be loaded because of its name, and a
2333
 
     suggestion for an acceptable name is given. (Daniel Watkins, #103023)
2334
 
 
2335
 
   * Leave port as None in transport objects if user doesn't
2336
 
     specify a port in urls.
2337
 
     (vincent Ladeuil, #150860)
2338
 
 
2339
 
   * Make sure Repository.fetch(self) is properly a no-op for all
2340
 
     Repository implementations. (John Arbash Meinel, #158333)
2341
 
 
2342
 
   * Mark .bzr directories as "hidden" on Windows.
2343
 
     (Alexander Belchenko, #71147)
2344
 
 
2345
 
   * ``merge --uncommitted`` can now operate on a single file.
2346
 
     (Aaron Bentley, Lukáš Lalinský, #136890)
2347
 
 
2348
 
   * Obsolete packs are now cleaned up by pack and autopack operations.
2349
 
     (Robert Collins, #153789)
2350
 
 
2351
 
   * Operations pulling data from a smart server where the underlying
2352
 
     repositories are not both annotated/both unannotated will now work.
2353
 
     (Robert Collins, #165304).
2354
 
 
2355
 
   * Reconcile now shows progress bars. (Robert Collins, #159351)
2356
 
 
2357
 
   * ``RemoteBranch`` was not initializing ``self._revision_id_to_revno_map``
2358
 
     properly. (John Arbash Meinel, #162486)
2359
 
 
2360
 
   * Removing an already-removed file reports the file does not exist. (Daniel
2361
 
     Watkins, #152811)
2362
 
 
2363
 
   * Rename on Windows is able to change filename case.
2364
 
     (Alexander Belchenko, #77740)
2365
 
 
2366
 
   * Return error instead of a traceback for ``bzr log -r0``.
2367
 
     (Kent Gibson, #133751)
2368
 
 
2369
 
   * Return error instead of a traceback when bzr is unable to create
2370
 
     symlink on some platforms (e.g. on Windows).
2371
 
     (Alexander Belchenko, workaround for #81689)
2372
 
 
2373
 
   * Revert doesn't crash when restoring a single file from a deleted
2374
 
     directory. (Aaron Bentley)
2375
 
 
2376
 
   * Stderr output via logging mechanism now goes through encoded wrapper
2377
 
     and no more uses utf-8, but terminal encoding instead. So all unicode
2378
 
     strings now should be readable in non-utf-8 terminal.
2379
 
     (Alexander Belchenko, #54173)
2380
 
 
2381
 
   * The error message when ``move --after`` should be used makes how to do so
2382
 
     clearer. (Daniel Watkins, #85237)
2383
 
 
2384
 
   * Unicode-safe output from ``bzr info``. The output will be encoded
2385
 
     using the terminal encoding and unrepresentable characters will be
2386
 
     replaced by '?'. (Lukáš Lalinský, #151844)
2387
 
 
2388
 
   * Working trees are no longer created when pushing into a local no-trees
2389
 
     repo. (Daniel Watkins, #50582)
2390
 
 
2391
 
   * Upgrade util/configobj to version 4.4.0.
2392
 
     (Vincent Ladeuil, #151208).
2393
 
 
2394
 
   * Wrap medusa ftp test server as an FTPServer feature.
2395
 
     (Vincent Ladeuil, #157752)
2396
 
 
2397
 
  API BREAKS:
2398
 
 
2399
 
   * ``osutils.backup_file`` is deprecated. Actually it's not used in bzrlib
2400
 
     during very long time. (Alexander Belchenko)
2401
 
 
2402
 
   * The return value of
2403
 
     ``VersionedFile.iter_lines_added_or_present_in_versions`` has been
2404
 
     changed. Previously it was an iterator of lines, now it is an iterator of
2405
 
     (line, version_id) tuples. This change has been made to aid reconcile and
2406
 
     fetch operations. (Robert Collins)
2407
 
 
2408
 
   * ``bzrlib.repository.get_versioned_file_checker`` is now private.
2409
 
     (Robert Collins)
2410
 
 
2411
 
   * The Repository format registry default has been removed; it was previously
2412
 
     obsoleted by the bzrdir format default, which implies a default repository
2413
 
     format.
2414
 
     (Martin Pool)
2415
 
 
2416
 
  INTERNALS:
2417
 
 
2418
 
   * Added ``ContainerSerialiser`` and ``ContainerPushParser`` to
2419
 
     ``bzrlib.pack``.  These classes provide more convenient APIs for generating
2420
 
     and parsing containers from streams rather than from files.  (Andrew
2421
 
     Bennetts)
2422
 
 
2423
 
   * New module ``lru_cache`` providing a cache for use by tasks that need
2424
 
     semi-random access to large amounts of data. (John A Meinel)
2425
 
 
2426
 
   * InventoryEntry.diff is now deprecated.  Please use diff.DiffTree instead.
2427
 
 
2428
 
  TESTING:
2429
 
 
2430
 
 
2431
 
bzr 0.92 2007-11-05
2432
 
-------------------
2433
 
 
2434
 
  CHANGES:
 
6797
bzr 1.1rc1
 
6798
##########
 
6799
 
 
6800
:Released: 2008-01-05
 
6801
 
 
6802
Changes
 
6803
*******
 
6804
 
 
6805
* Dotted revision numbers have been revised. Instead of growing longer with
 
6806
  nested branches the branch number just increases. (eg instead of 1.1.1.1.1
 
6807
  we now report 1.2.1.) This helps scale long lived branches which have many
 
6808
  feature branches merged between them. (John Arbash Meinel)
 
6809
 
 
6810
* The syntax ``bzr diff branch1 branch2`` is no longer supported.
 
6811
  Use ``bzr diff branch1 --new branch2`` instead. This change has
 
6812
  been made to remove the ambiguity where ``branch2`` is in fact a
 
6813
  specific file to diff within ``branch1``.
 
6814
 
 
6815
Features
 
6816
********
 
6817
 
 
6818
* New option to use custom template-based formats in  ``bzr version-info``.
 
6819
  (Lukáš Lalinský)
 
6820
 
 
6821
* diff '--using' allows an external diff tool to be used for files.
 
6822
  (Aaron Bentley)
 
6823
 
 
6824
* New "lca" merge-type for fast everyday merging that also supports
 
6825
  criss-cross merges.  (Aaron Bentley)
 
6826
 
 
6827
Improvements
 
6828
************
 
6829
 
 
6830
* ``annotate`` now doesn't require a working tree. (Lukáš Lalinský,
 
6831
  #90049)
 
6832
 
 
6833
* ``branch`` and ``checkout`` can now use files from a working tree to
 
6834
  to speed up the process.  For checkout, this requires the new
 
6835
  --files-from flag.  (Aaron Bentley)
 
6836
 
 
6837
* ``bzr diff`` now sorts files in alphabetical order.  (Aaron Bentley)
 
6838
 
 
6839
* ``bzr diff`` now works on branches without working trees. Tree-less
 
6840
  branches can also be compared to each other and to working trees using
 
6841
  the new diff options ``--old`` and ``--new``. Diffing between branches,
 
6842
  with or without trees, now supports specific file filtering as well.
 
6843
  (Ian Clatworthy, #6700)
 
6844
 
 
6845
* ``bzr pack`` now orders revision texts in topological order, with newest
 
6846
  at the start of the file, promoting linear reads for ``bzr log`` and the
 
6847
  like. This partially fixes #154129. (Robert Collins)
 
6848
 
 
6849
* Merge directives now fetch prerequisites from the target branch if
 
6850
  needed.  (Aaron Bentley)
 
6851
 
 
6852
* pycurl now handles digest authentication.
 
6853
  (Vincent Ladeuil)
 
6854
 
 
6855
* ``reconfigure`` can now convert from repositories.  (Aaron Bentley)
 
6856
 
 
6857
* ``-l`` is now a short form for ``--limit`` in ``log``.  (Matt Nordhoff)
 
6858
 
 
6859
* ``merge`` now warns when merge directives cause cherrypicks.
 
6860
  (Aaron Bentley)
 
6861
 
 
6862
* ``split`` now supported, to enable splitting large trees into smaller
 
6863
  pieces.  (Aaron Bentley)
 
6864
 
 
6865
Bugfixes
 
6866
********
 
6867
 
 
6868
* Avoid AttributeError when unlocking a pack repository when an error occurs.
 
6869
  (Martin Pool, #180208)
 
6870
 
 
6871
* Better handle short reads when processing multiple range requests.
 
6872
  (Vincent Ladeuil, #179368)
 
6873
 
 
6874
* build_tree acceleration uses the correct path when a file has been moved.
 
6875
  (Aaron Bentley)
 
6876
 
 
6877
* ``commit`` now succeeds when a checkout and its master branch share a
 
6878
  repository.  (Aaron Bentley, #177592)
 
6879
 
 
6880
* Fixed error reporting of unsupported timezone format in
 
6881
  ``log --timezone``. (Lukáš Lalinský, #178722)
 
6882
 
 
6883
* Fixed Unicode encoding error in ``ignored`` when the output is
 
6884
  redirected to a pipe. (Lukáš Lalinský)
 
6885
 
 
6886
* Fix traceback when sending large response bodies over the smart protocol
 
6887
  on Windows. (Andrew Bennetts, #115781)
 
6888
 
 
6889
* Fix ``urlutils.relative_url`` for the case of two ``file:///`` URLs
 
6890
  pointed to different logical drives on Windows.
 
6891
  (Alexander Belchenko, #90847)
 
6892
 
 
6893
* HTTP test servers are now compatible with the http protocol version 1.1.
 
6894
  (Vincent Ladeuil, #175524)
 
6895
 
 
6896
* _KnitParentsProvider.get_parent_map now handles requests for ghosts
 
6897
  correctly, instead of erroring or attributing incorrect parents to ghosts.
 
6898
  (Aaron Bentley)
 
6899
 
 
6900
* ``merge --weave --uncommitted`` now works.  (Aaron Bentley)
 
6901
 
 
6902
* pycurl authentication handling was broken and incomplete. Fix handling of
 
6903
  user:pass embedded in the urls.
 
6904
  (Vincent Ladeuil, #177643)
 
6905
 
 
6906
* Files inside non-directories are now handled like other conflict types.
 
6907
  (Aaron Bentley, #177390)
 
6908
 
 
6909
* ``reconfigure`` is able to convert trees into lightweight checkouts.
 
6910
  (Aaron Bentley)
 
6911
 
 
6912
* Reduce lockdir timeout to 0 when running ``bzr serve``.  (Andrew Bennetts,
 
6913
  #148087)
 
6914
 
 
6915
* Test that the old ``version_info_format`` functions still work, even
 
6916
  though they are deprecated. (John Arbash Meinel, ShenMaq, #177872)
 
6917
 
 
6918
* Transform failures no longer cause ImmortalLimbo errors (Aaron Bentley,
 
6919
  #137681)
 
6920
 
 
6921
* ``uncommit`` works even when the commit messages of revisions to be
 
6922
  removed use characters not supported in the terminal encoding.
 
6923
  (Aaron Bentley)
 
6924
 
 
6925
* When dumb http servers return whole files instead of the requested ranges,
 
6926
  read the remaining bytes by chunks to avoid overflowing network buffers.
 
6927
  (Vincent Ladeuil, #175886)
 
6928
 
 
6929
Documentation
 
6930
*************
 
6931
 
 
6932
* Minor tweaks made to the bug tracker integration documentation.
 
6933
  (Ian Clatworthy)
 
6934
 
 
6935
* Reference material has now be moved out of the User Guide and added
 
6936
  to the User Reference. The User Reference has gained 4 sections as
 
6937
  a result: Authenication Settings, Configuration Settings, Conflicts
 
6938
  and Hooks. All help topics are now dumped into text format in the
 
6939
  doc/en/user-reference directory for those who like browsing that
 
6940
  information in their editor. (Ian Clatworthy)
 
6941
 
 
6942
* *Using Bazaar with Launchpad* tutorial added. (Ian Clatworthy)
 
6943
 
 
6944
Internals
 
6945
*********
 
6946
 
 
6947
* find_* methods available for BzrDirs, Branches and WorkingTrees.
 
6948
  (Aaron Bentley)
 
6949
 
 
6950
* Help topics can now be loaded from files.
 
6951
  (Ian Clatworthy, Alexander Belchenko)
 
6952
 
 
6953
* get_parent_map now always provides tuples as its output.  (Aaron Bentley)
 
6954
 
 
6955
* Parent Providers should now implement ``get_parent_map`` returning a
 
6956
  dictionary instead of ``get_parents`` returning a list.
 
6957
  ``Graph.get_parents`` is now deprecated. (John Arbash Meinel,
 
6958
  Robert Collins)
 
6959
 
 
6960
* Patience Diff now supports arbitrary python objects, as long as they
 
6961
  support ``hash()``. (John Arbash Meinel)
 
6962
 
 
6963
* Reduce selftest overhead to establish test names by memoization.
 
6964
  (Vincent Ladeuil)
 
6965
 
 
6966
API Breaks
 
6967
**********
 
6968
 
 
6969
Testing
 
6970
*******
 
6971
 
 
6972
* Modules can now customise their tests by defining a ``load_tests``
 
6973
  attribute. ``pydoc bzrlib.tests.TestUtil.TestLoader.loadTestsFromModule``
 
6974
  for the documentation on this attribute. (Robert Collins)
 
6975
 
 
6976
* New helper function ``bzrlib.tests.condition_id_re`` which helps
 
6977
  filter tests based on a regular expression search on the tests id.
 
6978
  (Robert Collins)
 
6979
 
 
6980
* New helper function ``bzrlib.tests.condition_isinstance`` which helps
 
6981
  filter tests based on class. (Robert Collins)
 
6982
 
 
6983
* New helper function ``bzrlib.tests.exclude_suite_by_condition`` which
 
6984
  generalises the ``exclude_suite_by_re`` function. (Robert Collins)
 
6985
 
 
6986
* New helper function ``bzrlib.tests.filter_suite_by_condition`` which
 
6987
  generalises the ``filter_suite_by_re`` function. (Robert Collins)
 
6988
 
 
6989
* New helper method ``bzrlib.tests.exclude_tests_by_re`` which gives a new
 
6990
  TestSuite that does not contain tests from the input that matched a
 
6991
  regular expression. (Robert Collins)
 
6992
 
 
6993
* New helper method ``bzrlib.tests.randomize_suite`` which returns a
 
6994
  randomized copy of the input suite. (Robert Collins)
 
6995
 
 
6996
* New helper method ``bzrlib.tests.split_suite_by_re`` which splits a test
 
6997
  suite into two according to a regular expression. (Robert Collins)
 
6998
 
 
6999
* Parametrize all http tests for the transport implementations, the http
 
7000
  protocol versions (1.0 and 1.1) and the authentication schemes.
 
7001
  (Vincent Ladeuil)
 
7002
 
 
7003
* The ``exclude_pattern`` and ``random_order`` parameters to the function
 
7004
  ``bzrlib.tests.filter_suite_by_re`` have been deprecated. (Robert Collins)
 
7005
 
 
7006
* The method ``bzrlib.tests.sort_suite_by_re`` has been deprecated. It is
 
7007
  replaced by the new helper methods added in this release. (Robert Collins)
 
7008
 
 
7009
 
 
7010
bzr 1.0
 
7011
#######
 
7012
 
 
7013
:Released: 2007-12-14
 
7014
 
 
7015
Documentation
 
7016
*************
 
7017
 
 
7018
* More improvements and fixes to the User Guide.  (Ian Clatworthy)
 
7019
 
 
7020
* Add information on cherrypicking/rebasing to the User Guide.
 
7021
  (Ian Clatworthy)
 
7022
 
 
7023
* Improve bug tracker integration documentation. (Ian Clatworthy)
 
7024
 
 
7025
* Minor edits to ``Bazaar in five minutes`` from David Roberts and
 
7026
  to the rebasing section of the User Guide from Aaron Bentley.
 
7027
  (Ian Clatworthy)
 
7028
 
 
7029
 
 
7030
bzr 1.0rc3
 
7031
##########
 
7032
 
 
7033
:Released: 2007-12-11
 
7034
 
 
7035
Changes
 
7036
*******
 
7037
 
 
7038
* If a traceback occurs, users are now asked to report the bug
 
7039
  through Launchpad (https://bugs.launchpad.net/bzr/), rather than
 
7040
  by mail to the mailing list.
 
7041
  (Martin Pool)
 
7042
 
 
7043
Bugfixes
 
7044
********
 
7045
 
 
7046
* Fix Makefile rules for doc generation. (Ian Clatworthy, #175207)
 
7047
 
 
7048
* Give more feedback during long http downloads by making readv deliver data
 
7049
  as it arrives for urllib, and issue more requests for pycurl. High latency
 
7050
  networks are better handled by urllib, the pycurl implementation give more
 
7051
  feedback but also incur more latency.
 
7052
  (Vincent Ladeuil, #173010)
 
7053
 
 
7054
* Implement _make_parents_provider on RemoteRepository, allowing generating
 
7055
  bundles against branches on a smart server.  (Andrew Bennetts, #147836)
 
7056
 
 
7057
Documentation
 
7058
*************
 
7059
 
 
7060
* Improved user guide.  (Ian Clatworthy)
 
7061
 
 
7062
* The single-page quick reference guide is now available as a PDF.
 
7063
  (Ian Clatworthy)
 
7064
 
 
7065
Internals
 
7066
*********
 
7067
 
 
7068
* readv urllib http implementation is now a real iterator above the
 
7069
  underlying socket and deliver data as soon as it arrives. 'get' still
 
7070
  wraps its output in a StringIO.
 
7071
  (Vincent Ladeuil)
 
7072
 
 
7073
 
 
7074
bzr 1.0rc2
 
7075
##########
 
7076
 
 
7077
:Released: 2007-12-07
 
7078
 
 
7079
Improvements
 
7080
************
 
7081
 
 
7082
* Added a --coverage option to selftest. (Andrew Bennetts)
 
7083
 
 
7084
* Annotate merge (merge-type=weave) now supports cherrypicking.
 
7085
  (Aaron Bentley)
 
7086
 
 
7087
* ``bzr commit`` now doesn't print the revision number twice. (Matt
 
7088
  Nordhoff, #172612)
 
7089
 
 
7090
* New configuration option ``bugtracker_<tracker_abbrevation>_url`` to
 
7091
  define locations of bug trackers that are not directly supported by
 
7092
  bzr or a plugin. The URL will be treated as a template and ``{id}``
 
7093
  placeholders will be replaced by specific bug IDs.  (Lukáš Lalinský)
 
7094
 
 
7095
* Support logging single merge revisions with short and line log formatters.
 
7096
  (Kent Gibson)
 
7097
 
 
7098
* User Guide enhanced with suggested readability improvements from
 
7099
  Matt Revell and corrections from John Arbash Meinel. (Ian Clatworthy)
 
7100
 
 
7101
* Quick Start Guide renamed to Quick Start Card, moved down in
 
7102
  the catalog, provided in pdf and png format and updated to refer
 
7103
  to ``send`` instead of ``bundle``. (Ian Clatworthy, #165080)
 
7104
 
 
7105
* ``switch`` can now be used on heavyweight checkouts as well as
 
7106
  lightweight ones. After switching a heavyweight checkout, the
 
7107
  local branch is a mirror/cache of the new bound branch and
 
7108
  uncommitted changes in the working tree are merged. As a safety
 
7109
  check, if there are local commits in a checkout which have not
 
7110
  been committed to the previously bound branch, then ``switch``
 
7111
  fails unless the ``--force`` option is given. This option is
 
7112
  now also required if the branch a lightweight checkout is pointing
 
7113
  to has been moved. (Ian Clatworthy)
 
7114
 
 
7115
Internals
 
7116
*********
 
7117
 
 
7118
* New -Dhttp debug option reports http connections, requests and responses.
 
7119
  (Vincent Ladeuil)
 
7120
 
 
7121
* New -Dmerge debug option, which emits merge plans for merge-type=weave.
 
7122
 
 
7123
Bugfixes
 
7124
********
 
7125
 
 
7126
* Better error message when running ``bzr cat`` on a non-existant branch.
 
7127
  (Lukáš Lalinský, #133782)
 
7128
 
 
7129
* Catch OSError 17 (file exists) in final phase of tree transform and show
 
7130
  filename to user.
 
7131
  (Alexander Belchenko, #111758)
 
7132
 
 
7133
* Catch ShortReadvErrors while using pycurl. Also make readv more robust by
 
7134
  allowing multiple GET requests to be issued if too many ranges are
 
7135
  required.
 
7136
  (Vincent Ladeuil, #172701)
 
7137
 
 
7138
* Check for missing basis texts when fetching from packs to packs.
 
7139
  (John Arbash Meinel, #165290)
 
7140
 
 
7141
* Fall back to showing e-mail in ``log --short/--line`` if the
 
7142
  committer/author has only e-mail. (Lukáš Lalinský, #157026)
 
7143
 
 
7144
API Breaks
 
7145
**********
 
7146
 
 
7147
* Deprecate not passing a ``location`` argument to commit reporters'
 
7148
  ``started`` methods. (Matt Nordhoff)
 
7149
 
 
7150
 
 
7151
bzr 1.0rc1
 
7152
##########
 
7153
 
 
7154
:Released: 2007-11-30
 
7155
 
 
7156
Notes When Upgrading
 
7157
********************
 
7158
 
 
7159
* The default repository format is now ``pack-0.92``.  This
 
7160
  default is used when creating new repositories with ``init`` and
 
7161
  ``init-repo``, and when branching over bzr+ssh or bzr+hpss.
 
7162
  (See https://bugs.launchpad.net/bugs/164626)
 
7163
 
 
7164
  This format can be read and written by Bazaar 0.92 and later, and
 
7165
  data can be transferred to and from older formats.
 
7166
 
 
7167
  To upgrade, please reconcile your repository (``bzr reconcile``), and then
 
7168
  upgrade (``bzr upgrade``).
 
7169
 
 
7170
  ``pack-0.92`` offers substantially better scaling and performance than the
 
7171
  previous knits format. Some operations are slower where the code already
 
7172
  had bad scaling characteristics under knits, the pack format makes such
 
7173
  operations more visible as part of being more scalable overall. We will
 
7174
  correct such operations over the coming releases and encourage the filing
 
7175
  of bugs on any operation which you observe to be slower in a packs
 
7176
  repository. One particular case that we do not intend to fix is pulling
 
7177
  data from a pack repository into a knit repository over a high latency
 
7178
  link;  downgrading such data requires reinsertion of the file texts, and
 
7179
  this is a classic space/time tradeoff. The current implementation is
 
7180
  conservative on memory usage because we need to support converting data
 
7181
  from any tree without problems.
 
7182
  (Robert Collins, Martin Pool, #164476)
 
7183
 
 
7184
Changes
 
7185
*******
 
7186
 
 
7187
* Disable detection of plink.exe as possible ssh vendor. Plink vendor
 
7188
  still available if user selects it explicitly with BZR_SSH environment
 
7189
  variable. (Alexander Belchenko, workaround for bug #107593)
 
7190
 
 
7191
* The pack format is now accessible as "pack-0.92", or "pack-0.92-subtree"
 
7192
  to enable the subtree functions (for example, for bzr-svn).
 
7193
  (Martin Pool)
 
7194
 
 
7195
Features
 
7196
********
 
7197
 
 
7198
* New ``authentication.conf`` file holding the password or other credentials
 
7199
  for remote servers. This can be used for ssh, sftp, smtp and other
 
7200
  supported transports.
 
7201
  (Vincent Ladeuil)
 
7202
 
 
7203
* New rich-root and rich-root-pack formats, recording the same data about
 
7204
  tree roots that's recorded for all other directories.
 
7205
  (Aaron Bentley, #164639)
 
7206
 
 
7207
* ``pack-0.92`` repositories can now be reconciled.
 
7208
  (Robert Collins, #154173)
 
7209
 
 
7210
* ``switch`` command added for changing the branch a lightweight checkout
 
7211
  is associated with and updating the tree to reflect the latest content
 
7212
  accordingly. This command was previously part of the BzrTools plug-in.
 
7213
  (Ian Clatworthy, Aaron Bentley, David Allouche)
 
7214
 
 
7215
* ``reconfigure`` command can now convert branches, trees, or checkouts to
 
7216
  lightweight checkouts.  (Aaron Bentley)
 
7217
 
 
7218
Performance
 
7219
***********
 
7220
 
 
7221
* Commit updates the state of the working tree via a delta rather than
 
7222
  supplying entirely new basis trees. For commit of a single specified file
 
7223
  this reduces the wall clock time for commit by roughly a 30%.
 
7224
  (Robert Collins, Martin Pool)
 
7225
 
 
7226
* Commit with many automatically found deleted paths no longer performs
 
7227
  linear scanning for the children of those paths during inventory
 
7228
  iteration. This should fix commit performance blowing out when many such
 
7229
  paths occur during commit. (Robert Collins, #156491)
 
7230
 
 
7231
* Fetch with pack repositories will no longer read the entire history graph.
 
7232
  (Robert Collins, #88319)
 
7233
 
 
7234
* Revert takes out an appropriate lock when reverting to a basis tree, and
 
7235
  does not read the basis inventory twice. (Robert Collins)
 
7236
 
 
7237
* Diff does not require an inventory to be generated on dirstate trees.
 
7238
  (Aaron Bentley, #149254)
 
7239
 
 
7240
* New annotate merge (--merge-type=weave) implementation is fast on
 
7241
  versionedfiles withough cached annotations, e.g. pack-0.92.
 
7242
  (Aaron Bentley)
 
7243
 
 
7244
Improvements
 
7245
************
 
7246
 
 
7247
* ``bzr merge`` now warns when it encounters a criss-cross merge.
 
7248
  (Aaron Bentley)
 
7249
 
 
7250
* ``bzr send`` now doesn't require the target e-mail address to be
 
7251
  specified on the command line if an interactive e-mail client is used.
 
7252
  (Lukáš Lalinský)
 
7253
 
 
7254
* ``bzr tags`` now prints the revision number for each tag, instead of
 
7255
  the revision id, unless --show-ids is passed. In addition, tags can be
 
7256
  sorted chronologically instead of lexicographically with --sort=time.
 
7257
  (Adeodato Simó, #120231)
 
7258
 
 
7259
* Windows standalone version of bzr is able to load system-wide plugins from
 
7260
  "plugins" subdirectory in installation directory. In addition standalone
 
7261
  installer write to the registry (HKLM\SOFTWARE\Bazaar) useful info
 
7262
  about paths and bzr version. (Alexander Belchenko, #129298)
 
7263
 
 
7264
Documentation
 
7265
*************
 
7266
 
 
7267
Bug Fixes
 
7268
*********
 
7269
 
 
7270
* A progress bar has been added for knitpack -> knitpack fetching.
 
7271
  (Robert Collins, #157789, #159147)
 
7272
 
 
7273
* Branching from a branch via smart server now preserves the repository
 
7274
  format. (Andrew Bennetts,  #164626)
 
7275
 
 
7276
* ``commit`` is now able to invoke an external editor in a non-ascii
 
7277
  directory. (Daniel Watkins, #84043)
 
7278
 
 
7279
* Catch connection errors for ftp.
 
7280
  (Vincent Ladeuil, #164567)
 
7281
 
 
7282
* ``check`` no longer reports spurious unreferenced text versions.
 
7283
  (Robert Collins, John A Meinel, #162931, #165071)
 
7284
 
 
7285
* Conflicts are now resolved recursively by ``revert``.
 
7286
  (Aaron Bentley, #102739)
 
7287
 
 
7288
* Detect invalid transport reuse attempts by catching invalid URLs.
 
7289
  (Vincent Ladeuil, #161819)
 
7290
 
 
7291
* Deleting a file without removing it shows a correct diff, not a traceback.
 
7292
  (Aaron Bentley)
 
7293
 
 
7294
* Do no use timeout in HttpServer anymore.
 
7295
  (Vincent Ladeuil, #158972).
 
7296
 
 
7297
* Don't catch the exceptions related to the http pipeline status before
 
7298
  retrying an http request or some programming errors may be masked.
 
7299
  (Vincent Ladeuil, #160012)
 
7300
 
 
7301
* Fix ``bzr rm`` to not delete modified and ignored files.
 
7302
  (Lukáš Lalinský, #172598)
 
7303
 
 
7304
* Fix exception when revisionspec contains merge revisons but log
 
7305
  formatter doesn't support merge revisions. (Kent Gibson, #148908)
 
7306
 
 
7307
* Fix exception when ScopeReplacer is assigned to before any members have
 
7308
  been retrieved.  (Aaron Bentley)
 
7309
 
 
7310
* Fix multiple connections during checkout --lightweight.
 
7311
  (Vincent Ladeuil, #159150)
 
7312
 
 
7313
* Fix possible error in insert_data_stream when copying between
 
7314
  pack repositories over bzr+ssh or bzr+http.
 
7315
  KnitVersionedFile.get_data_stream now makes sure that requested
 
7316
  compression parents are sent before any delta hunks that depend
 
7317
  on them.
 
7318
  (Martin Pool, #164637)
 
7319
 
 
7320
* Fix typo in limiting offsets coalescing for http, leading to
 
7321
  whole files being downloaded instead of parts.
 
7322
  (Vincent Ladeuil, #165061)
 
7323
 
 
7324
* FTP server errors don't error in the error handling code.
 
7325
  (Robert Collins, #161240)
 
7326
 
 
7327
* Give a clearer message when a pull fails because the source needs
 
7328
  to be reconciled.
 
7329
  (Martin Pool, #164443)
 
7330
 
 
7331
* It is clearer when a plugin cannot be loaded because of its name, and a
 
7332
  suggestion for an acceptable name is given. (Daniel Watkins, #103023)
 
7333
 
 
7334
* Leave port as None in transport objects if user doesn't
 
7335
  specify a port in urls.
 
7336
  (vincent Ladeuil, #150860)
 
7337
 
 
7338
* Make sure Repository.fetch(self) is properly a no-op for all
 
7339
  Repository implementations. (John Arbash Meinel, #158333)
 
7340
 
 
7341
* Mark .bzr directories as "hidden" on Windows.
 
7342
  (Alexander Belchenko, #71147)
 
7343
 
 
7344
* ``merge --uncommitted`` can now operate on a single file.
 
7345
  (Aaron Bentley, Lukáš Lalinský, #136890)
 
7346
 
 
7347
* Obsolete packs are now cleaned up by pack and autopack operations.
 
7348
  (Robert Collins, #153789)
 
7349
 
 
7350
* Operations pulling data from a smart server where the underlying
 
7351
  repositories are not both annotated/both unannotated will now work.
 
7352
  (Robert Collins, #165304).
 
7353
 
 
7354
* Reconcile now shows progress bars. (Robert Collins, #159351)
 
7355
 
 
7356
* ``RemoteBranch`` was not initializing ``self._revision_id_to_revno_map``
 
7357
  properly. (John Arbash Meinel, #162486)
 
7358
 
 
7359
* Removing an already-removed file reports the file does not exist. (Daniel
 
7360
  Watkins, #152811)
 
7361
 
 
7362
* Rename on Windows is able to change filename case.
 
7363
  (Alexander Belchenko, #77740)
 
7364
 
 
7365
* Return error instead of a traceback for ``bzr log -r0``.
 
7366
  (Kent Gibson, #133751)
 
7367
 
 
7368
* Return error instead of a traceback when bzr is unable to create
 
7369
  symlink on some platforms (e.g. on Windows).
 
7370
  (Alexander Belchenko, workaround for #81689)
 
7371
 
 
7372
* Revert doesn't crash when restoring a single file from a deleted
 
7373
  directory. (Aaron Bentley)
 
7374
 
 
7375
* Stderr output via logging mechanism now goes through encoded wrapper
 
7376
  and no more uses utf-8, but terminal encoding instead. So all unicode
 
7377
  strings now should be readable in non-utf-8 terminal.
 
7378
  (Alexander Belchenko, #54173)
 
7379
 
 
7380
* The error message when ``move --after`` should be used makes how to do so
 
7381
  clearer. (Daniel Watkins, #85237)
 
7382
 
 
7383
* Unicode-safe output from ``bzr info``. The output will be encoded
 
7384
  using the terminal encoding and unrepresentable characters will be
 
7385
  replaced by '?'. (Lukáš Lalinský, #151844)
 
7386
 
 
7387
* Working trees are no longer created when pushing into a local no-trees
 
7388
  repo. (Daniel Watkins, #50582)
 
7389
 
 
7390
* Upgrade util/configobj to version 4.4.0.
 
7391
  (Vincent Ladeuil, #151208).
 
7392
 
 
7393
* Wrap medusa ftp test server as an FTPServer feature.
 
7394
  (Vincent Ladeuil, #157752)
 
7395
 
 
7396
API Breaks
 
7397
**********
 
7398
 
 
7399
* ``osutils.backup_file`` is deprecated. Actually it's not used in bzrlib
 
7400
  during very long time. (Alexander Belchenko)
 
7401
 
 
7402
* The return value of
 
7403
  ``VersionedFile.iter_lines_added_or_present_in_versions`` has been
 
7404
  changed. Previously it was an iterator of lines, now it is an iterator of
 
7405
  (line, version_id) tuples. This change has been made to aid reconcile and
 
7406
  fetch operations. (Robert Collins)
 
7407
 
 
7408
* ``bzrlib.repository.get_versioned_file_checker`` is now private.
 
7409
  (Robert Collins)
 
7410
 
 
7411
* The Repository format registry default has been removed; it was previously
 
7412
  obsoleted by the bzrdir format default, which implies a default repository
 
7413
  format.
 
7414
  (Martin Pool)
 
7415
 
 
7416
Internals
 
7417
*********
 
7418
 
 
7419
* Added ``ContainerSerialiser`` and ``ContainerPushParser`` to
 
7420
  ``bzrlib.pack``.  These classes provide more convenient APIs for generating
 
7421
  and parsing containers from streams rather than from files.  (Andrew
 
7422
  Bennetts)
 
7423
 
 
7424
* New module ``lru_cache`` providing a cache for use by tasks that need
 
7425
  semi-random access to large amounts of data. (John A Meinel)
 
7426
 
 
7427
* InventoryEntry.diff is now deprecated.  Please use diff.DiffTree instead.
 
7428
 
 
7429
 
 
7430
bzr 0.92
 
7431
########
 
7432
 
 
7433
:Released: 2007-11-05
 
7434
 
 
7435
Changes
 
7436
*******
2435
7437
 
2436
7438
  * New uninstaller on Win32.  (Alexander Belchenko)
2437
7439
 
2438
7440
 
2439
 
bzr 0.92rc1 2007-10-29
2440
 
----------------------
2441
 
 
2442
 
  NOTES WHEN UPGRADING:
2443
 
 
2444
 
  CHANGES:
2445
 
  
2446
 
   * ``bzr`` now returns exit code 4 if an internal error occurred, and 
2447
 
     3 if a normal error occurred.  (Martin Pool)
2448
 
 
2449
 
   * ``pull``, ``merge`` and ``push`` will no longer silently correct some
2450
 
     repository index errors that occured as a result of the Weave disk format.
2451
 
     Instead the ``reconcile`` command needs to be run to correct those
2452
 
     problems if they exist (and it has been able to fix most such problems
2453
 
     since bzr 0.8). Some new problems have been identified during this release
2454
 
     and you should run ``bzr check`` once on every repository to see if you
2455
 
     need to reconcile. If you cannot ``pull`` or ``merge`` from a remote
2456
 
     repository due to mismatched parent errors - a symptom of index errors -
2457
 
     you should simply take a full copy of that remote repository to a clean
2458
 
     directory outside any local repositories, then run reconcile on it, and
2459
 
     finally pull from it locally. (And naturally email the repositories owner
2460
 
     to ask them to upgrade and run reconcile).
2461
 
     (Robert Collins)
2462
 
 
2463
 
  FEATURES:
2464
 
 
2465
 
   * New ``knitpack-experimental`` repository format. This is interoperable with
2466
 
     the ``dirstate-tags`` format but uses a smarter storage design that greatly
2467
 
     speeds up many operations, both local and remote. This new format can be
2468
 
     used as an option to the ``init``, ``init-repository`` and ``upgrade``
2469
 
     commands. See http://doc.bazaar-vcs.org/0.92/developers/knitpack.html
2470
 
     for further details. (Robert Collins)
2471
 
 
2472
 
   * For users of bzr-svn (and those testing the prototype subtree support) that
2473
 
     wish to try packs, a new ``knitpack-subtree-experimental`` format has also
2474
 
     been added. This is interoperable with the ``dirstate-subtrees`` format.
2475
 
     (Robert Collins)
2476
 
 
2477
 
   * New ``reconfigure`` command. (Aaron Bentley)
2478
 
 
2479
 
   * New ``revert --forget-merges`` command, which removes the record of a pending 
2480
 
     merge without affecting the working tree contents.  (Martin Pool)
2481
 
 
2482
 
   * New ``bzr_remote_path`` configuration variable allows finer control of
2483
 
     remote bzr locations than BZR_REMOTE_PATH environment variable.
2484
 
     (Aaron Bentley)
2485
 
 
2486
 
   * New ``launchpad-login`` command to tell Bazaar your Launchpad
2487
 
     user ID.  This can then be used by other functions of the
2488
 
     Launchpad plugin. (James Henstridge)
2489
 
 
2490
 
  PERFORMANCE:
2491
 
 
2492
 
   * Commit in quiet mode is now slightly faster as the information to
2493
 
     output is no longer calculated. (Ian Clatworthy)
2494
 
 
2495
 
   * Commit no longer checks for new text keys during insertion when the
2496
 
     revision id was deterministically unique. (Robert Collins)
2497
 
 
2498
 
   * Committing a change which is not a merge and does not change the number of
2499
 
     files in the tree is faster by utilising the data about whether files are
2500
 
     changed to determine if the tree is unchanged rather than recalculating
2501
 
     it at the end of the commit process. (Robert Collins)
2502
 
 
2503
 
   * Inventory serialisation no longer double-sha's the content.
2504
 
     (Robert Collins)
2505
 
 
2506
 
   * Knit text reconstruction now avoids making copies of the lines list for
2507
 
     interim texts when building a single text. The new ``apply_delta`` method
2508
 
     on ``KnitContent`` aids this by allowing modification of the revision id
2509
 
     such objects represent. (Robert Collins)
2510
 
 
2511
 
   * Pack indices are now partially parsed for specific key lookup using a
2512
 
     bisection approach. (Robert Collins)
2513
 
 
2514
 
   * Partial commits are now approximately 40% faster by walking over the
2515
 
     unselected current tree more efficiently. (Robert Collins)
2516
 
 
2517
 
   * XML inventory serialisation takes 20% less time while being stricter about
2518
 
     the contents. (Robert Collins)
2519
 
 
2520
 
   * Graph ``heads()`` queries have been fixed to no longer access all history
2521
 
     unnecessarily. (Robert Collins)
2522
 
 
2523
 
  IMPROVEMENTS:
2524
 
 
2525
 
   * ``bzr+https://`` smart server across https now supported. 
2526
 
     (John Ferlito, Martin Pool, #128456)
2527
 
 
2528
 
   * Mutt is now a supported mail client; set ``mail_client=mutt`` in your
2529
 
     bazaar.conf and ``send`` will use mutt. (Keir Mierle)
2530
 
 
2531
 
   * New option ``-c``/``--change`` for ``merge`` command for cherrypicking 
2532
 
     changes from one revision. (Alexander Belchenko, #141368)
2533
 
 
2534
 
   * Show encodings, locale and list of plugins in the traceback message.
2535
 
     (Martin Pool, #63894)
2536
 
 
2537
 
   * Experimental directory formats can now be marked with
2538
 
     ``experimental = True`` during registration. (Ian Clatworthy)
2539
 
 
2540
 
  DOCUMENTATION:
2541
 
 
2542
 
   * New *Bazaar in Five Minutes* guide.  (Matthew Revell)
2543
 
 
2544
 
   * The hooks reference documentation is now converted to html as expected.
2545
 
     (Ian Clatworthy)
2546
 
 
2547
 
  BUG FIXES:
2548
 
 
2549
 
   * Connection error reporting for the smart server has been fixed to
2550
 
     display a user friendly message instead of a traceback.
2551
 
     (Ian Clatworthy, #115601)
2552
 
 
2553
 
   * Make sure to use ``O_BINARY`` when opening files to check their
2554
 
     sha1sum. (Alexander Belchenko, John Arbash Meinel, #153493)
2555
 
 
2556
 
   * Fix a problem with Win32 handling of the executable bit.
2557
 
     (John Arbash Meinel, #149113)
2558
 
 
2559
 
   * ``bzr+ssh://`` and ``sftp://`` URLs that do not specify ports explicitly
2560
 
     no longer assume that means port 22.  This allows people using OpenSSH to
2561
 
     override the default port in their ``~/.ssh/config`` if they wish.  This
2562
 
     fixes a bug introduced in bzr 0.91.  (Andrew Bennetts, #146715)
2563
 
 
2564
 
   * Commands reporting exceptions can now be profiled and still have their
2565
 
     data correctly dumped to a file. For example, a ``bzr commit`` with
2566
 
     no changes still reports the operation as pointless but doing so no
2567
 
     longer throws away the profiling data if this command is run with
2568
 
     ``--lsprof-file callgrind.out.ci`` say. (Ian Clatworthy)
2569
 
 
2570
 
   * Fallback to ftp when paramiko is not installed and sftp can't be used for
2571
 
     ``tests/commands`` so that the test suite is still usable without
2572
 
     paramiko.
2573
 
     (Vincent Ladeuil, #59150)
2574
 
 
2575
 
   * Fix commit ordering in corner case. (Aaron Bentley, #94975)
2576
 
 
2577
 
   * Fix long standing bug in partial commit when there are renames 
2578
 
     left in tree. (Robert Collins, #140419)
2579
 
 
2580
 
   * Fix selftest semi-random noise during http related tests.
2581
 
     (Vincent Ladeuil, #140614)
2582
 
 
2583
 
   * Fix typo in ftp.py making the reconnection fail on temporary errors.
2584
 
     (Vincent Ladeuil, #154259)
2585
 
 
2586
 
   * Fix failing test by comparing real paths to cover the case where the TMPDIR
2587
 
     contains a symbolic link.
2588
 
     (Vincent Ladeuil, #141382).
2589
 
 
2590
 
   * Fix log against smart server branches that don't support tags.
2591
 
     (James Westby, #140615)
2592
 
 
2593
 
   * Fix pycurl http implementation by defining error codes from
2594
 
     pycurl instead of relying on an old curl definition.
2595
 
     (Vincent Ladeuil, #147530)
2596
 
 
2597
 
   * Fix 'unprintable error' message when displaying BzrCheckError and 
2598
 
     some other exceptions on Python 2.5.
2599
 
     (Martin Pool, #144633)
2600
 
 
2601
 
   * Fix ``Inventory.copy()`` and add test for it. (Jelmer Vernooij)
2602
 
 
2603
 
   * Handles default value for ListOption in cmd_commit.
2604
 
     (Vincent Ladeuil, #140432)
2605
 
 
2606
 
   * HttpServer and FtpServer need to be closed properly or a listening socket
2607
 
     will remain opened.
2608
 
     (Vincent Ladeuil, #140055)
2609
 
 
2610
 
   * Monitor the .bzr directory created in the top level test
2611
 
     directory to detect leaking tests.
2612
 
     (Vincent Ladeuil, #147986)
2613
 
 
2614
 
   * The basename, not the full path, is now used when checking whether
2615
 
     the profiling dump file begins with ``callgrind.out`` or not. This
2616
 
     fixes a bug reported by Aaron Bentley on IRC. (Ian Clatworthy)
2617
 
 
2618
 
   * Trivial fix for invoking command ``reconfigure`` without arguments.
2619
 
     (Rob Weir, #141629)
2620
 
 
2621
 
   * ``WorkingTree.rename_one`` will now raise an error if normalisation of the
2622
 
     new path causes bzr to be unable to access the file. (Robert Collins)
2623
 
 
2624
 
   * Correctly detect a NoSuchFile when using a filezilla server. (Gary van der
2625
 
     Merwe)
2626
 
 
2627
 
  API BREAKS:
2628
 
 
2629
 
   * ``bzrlib.index.GraphIndex`` now requires a size parameter to the
2630
 
     constructor, for enabling bisection searches. (Robert Collins)
2631
 
 
2632
 
   * ``CommitBuilder.record_entry_contents`` now requires the root entry of a
2633
 
     tree be supplied to it, previously failing to do so would trigger a
2634
 
     deprecation warning. (Robert Collins)
2635
 
 
2636
 
   * ``KnitVersionedFile.add*`` will no longer cache added records even when
2637
 
     enable_cache() has been called - the caching feature is now exclusively for
2638
 
     reading existing data. (Robert Collins)
2639
 
 
2640
 
   * ``ReadOnlyLockError`` is deprecated; ``LockFailed`` is usually more 
2641
 
     appropriate.  (Martin Pool)
2642
 
 
2643
 
   * Removed ``bzrlib.transport.TransportLogger`` - please see the new
2644
 
     ``trace+`` transport instead. (Robert Collins)
2645
 
 
2646
 
   * Removed previously deprecated varargs interface to ``TestCase.run_bzr`` and
2647
 
     deprecated methods ``TestCase.capture`` and ``TestCase.run_bzr_captured``.
2648
 
     (Martin Pool)
2649
 
 
2650
 
   * Removed previous deprecated ``basis_knit`` parameter to the
2651
 
     ``KnitVersionedFile`` constructor. (Robert Collins)
2652
 
 
2653
 
   * Special purpose method ``TestCase.run_bzr_decode`` is moved to the test_non_ascii 
2654
 
     class that needs it.
2655
 
     (Martin Pool)
2656
 
 
2657
 
   * The class ``bzrlib.repofmt.knitrepo.KnitRepository3`` has been folded into
2658
 
     ``KnitRepository`` by parameters to the constructor. (Robert Collins)
2659
 
 
2660
 
   * The ``VersionedFile`` interface now allows content checks to be bypassed
2661
 
     by supplying check_content=False.  This saves nearly 30% of the minimum
2662
 
     cost to store a version of a file. (Robert Collins)
2663
 
 
2664
 
   * Tree's with bad state such as files with no length or sha will no longer
2665
 
     be silently accepted by the repository XML serialiser. To serialise
2666
 
     inventories without such data, pass working=True to write_inventory.
2667
 
     (Robert Collins)
2668
 
 
2669
 
   * ``VersionedFile.fix_parents`` has been removed as a harmful API.
2670
 
     ``VersionedFile.join`` will no longer accept different parents on either
2671
 
     side of a join - it will either ignore them, or error, depending on the
2672
 
     implementation. See notes when upgrading for more information.
2673
 
     (Robert Collins)
2674
 
 
2675
 
  INTERNALS:
2676
 
 
2677
 
   * ``bzrlib.transport.Transport.put_file`` now returns the number of bytes
2678
 
     put by the method call, to allow avoiding stat-after-write or
2679
 
     housekeeping in callers. (Robert Collins)
2680
 
 
2681
 
   * ``bzrlib.xml_serializer.Serializer`` is now responsible for checking that
2682
 
     mandatory attributes are present on serialisation and deserialisation.
2683
 
     This fixes some holes in API usage and allows better separation between
2684
 
     physical storage and object serialisation. (Robert Collins)
2685
 
 
2686
 
   * New class ``bzrlib.errors.InternalBzrError`` which is just a convenient
2687
 
     shorthand for deriving from BzrError and setting internal_error = True.
2688
 
     (Robert Collins)
2689
 
 
2690
 
   * New method ``bzrlib.mutabletree.update_to_one_parent_via_delta`` for
2691
 
     moving the state of a parent tree to a new version via a delta rather than
2692
 
     a complete replacement tree. (Robert Collins)
2693
 
 
2694
 
   * New method ``bzrlib.osutils.minimum_path_selection`` useful for removing
2695
 
     duplication from user input, when a user mentions both a path and an item
2696
 
     contained within that path. (Robert Collins)
2697
 
 
2698
 
   * New method ``bzrlib.repository.Repository.is_write_locked`` useful for
2699
 
     determining if a repository is write locked. (Robert Collins)
2700
 
 
2701
 
   * New method on ``bzrlib.tree.Tree`` ``path_content_summary`` provides a
2702
 
     tuple containing the key information about a path for commit processing
2703
 
     to complete. (Robert Collins)
2704
 
 
2705
 
   * New method on xml serialisers, write_inventory_to_lines, which matches the
2706
 
     API used by knits for adding content. (Robert Collins)
2707
 
 
2708
 
   * New module ``bzrlib.bisect_multi`` with generic multiple-bisection-at-once
2709
 
     logic, currently only available for byte-based lookup
2710
 
     (``bisect_multi_bytes``). (Robert Collins)
2711
 
 
2712
 
   * New helper ``bzrlib.tuned_gzip.bytes_to_gzip`` which takes a byte string
2713
 
     and returns a gzipped version of the same. This is used to avoid a bunch
2714
 
     of api friction during adding of knit hunks. (Robert Collins)
2715
 
 
2716
 
   * New parameter on ``bzrlib.transport.Transport.readv``
2717
 
     ``adjust_for_latency`` which changes readv from returning strictly the
2718
 
     requested data to inserted return larger ranges and in forward read order
2719
 
     to reduce the effect of network latency. (Robert Collins)
2720
 
 
2721
 
   * New parameter yield_parents on ``Inventory.iter_entries_by_dir`` which
2722
 
     causes the parents of a selected id to be returned recursively, so all the
2723
 
     paths from the root down to each element of selected_file_ids are
2724
 
     returned. (Robert Collins)
2725
 
 
2726
 
   * Knit joining has been enhanced to support plain to annotated conversion
2727
 
     and annotated to plain conversion. (Ian Clatworthy)
2728
 
 
2729
 
   * The CommitBuilder method ``record_entry_contents`` now returns summary
2730
 
     information about the effect of the commit on the repository. This tuple
2731
 
     contains an inventory delta item if the entry changed from the basis, and a
2732
 
     boolean indicating whether a new file graph node was recorded.
2733
 
     (Robert Collins)
2734
 
 
2735
 
   * The python path used in the Makefile can now be overridden.
2736
 
     (Andrew Bennetts, Ian Clatworthy)
2737
 
 
2738
 
  TESTING:
2739
 
 
2740
 
   * New transport implementation ``trace+`` which is useful for testing,
2741
 
     logging activity taken to its _activity attribute. (Robert Collins)
2742
 
 
2743
 
   * When running bzr commands within the test suite, internal exceptions are
2744
 
     not caught and reported in the usual way, but rather allowed to propagate
2745
 
     up and be visible to the test suite.  A new API ``run_bzr_catch_user_errors``
2746
 
     makes this behavior available to other users.
2747
 
     (Martin Pool)
2748
 
 
2749
 
   * New method ``TestCase.call_catch_warnings`` for testing methods that 
2750
 
     raises a Python warning.  (Martin Pool)
2751
 
 
2752
 
 
2753
 
bzr 0.91 2007-09-26
2754
 
-------------------
2755
 
 
2756
 
  BUG FIXES:
2757
 
 
2758
 
   * Print a warning instead of aborting the ``python setup.py install``
2759
 
     process if building of a C extension is not possible.
2760
 
     (Lukáš Lalinský, Alexander Belchenko)
2761
 
 
2762
 
   * Fix commit ordering in corner case (Aaron Bentley, #94975)
2763
 
 
2764
 
   * Fix ''bzr info bzr://host/'' and other operations on ''bzr://' URLs with
2765
 
     an implicit port.  We were incorrectly raising PathNotChild due to
2766
 
     inconsistent treatment of the ''_port'' attribute on the Transport object.
2767
 
     (Andrew Bennetts, #133965)
2768
 
 
2769
 
   * Make RemoteRepository.sprout cope gracefully with servers that don't
2770
 
     support the ``Repository.tarball`` request.
2771
 
     (Andrew Bennetts)
2772
 
 
2773
 
 
2774
 
bzr 0.91rc2 2007-09-11
2775
 
----------------------
2776
 
 
2777
 
   * Replaced incorrect tarball for previous release; a debug statement was left 
2778
 
     in bzrlib/remote.py.
2779
 
 
2780
 
 
2781
 
bzr 0.91rc1 2007-09-11
2782
 
----------------------
2783
 
 
2784
 
  CHANGES:
2785
 
 
2786
 
   * The default branch and repository format has changed to 
2787
 
     ``dirstate-tags``, so tag commands are active by default.
2788
 
     This format is compatible with Bazaar 0.15 and later.
2789
 
     This incidentally fixes bug #126141.
2790
 
     (Martin Pool)
2791
 
 
2792
 
   * ``--quiet`` or ``-q`` is no longer a global option. If present, it
2793
 
     must now appear after the command name. Scripts doing things like
2794
 
     ``bzr -q missing`` need to be rewritten as ``bzr missing -q``.
2795
 
     (Ian Clatworthy)
2796
 
 
2797
 
  FEATURES:
2798
 
 
2799
 
   * New option ``--author`` in ``bzr commit`` to specify the author of the
2800
 
     change, if it's different from the committer. ``bzr log`` and
2801
 
     ``bzr annotate`` display the author instead of the committer.
2802
 
     (Lukáš Lalinský)
2803
 
 
2804
 
   * In addition to global options and command specific options, a set of
2805
 
     standard options are now supported. Standard options are legal for
2806
 
     all commands. The initial set of standard options are:
2807
 
     
2808
 
     * ``--help`` or ``-h`` - display help message
2809
 
     * ``--verbose`` or ``-v`` - display additional information
2810
 
     * ``--quiet``  or ``-q`` - only output warnings and errors.
2811
 
 
2812
 
     Unlike global options, standard options can be used in aliases and
2813
 
     may have command-specific help. (Ian Clatworthy)
2814
 
 
2815
 
   * Verbosity level processing has now been unified. If ``--verbose``
2816
 
     or ``-v`` is specified on the command line multiple times, the
2817
 
     verbosity level is made positive the first time then increased.
2818
 
     If ``--quiet`` or ``-q`` is specified on the command line
2819
 
     multiple times, the verbosity level is made negative the first
2820
 
     time then decreased. To get the default verbosity level of zero,
2821
 
     either specify none of the above , ``--no-verbose`` or ``--no-quiet``.
2822
 
     Note that most commands currently ignore the magnitude of the
2823
 
     verbosity level but do respect *quiet vs normal vs verbose* when
2824
 
     generating output. (Ian Clatworthy)
2825
 
 
2826
 
   * ``Branch.hooks`` now supports ``pre_commit`` hook. The hook's signature
2827
 
     is documented in BranchHooks constructor. (Nam T. Nguyen, #102747)
2828
 
 
2829
 
   * New ``Repository.stream_knit_data_for_revisions`` request added to the
2830
 
     network protocol for greatly reduced roundtrips when retrieving a set of
2831
 
     revisions. (Andrew Bennetts)
2832
 
 
2833
 
  BUG FIXES:
2834
 
 
2835
 
   * ``bzr plugins`` now lists the version number for each plugin in square
2836
 
     brackets after the path. (Robert Collins, #125421)
2837
 
 
2838
 
   * Pushing, pulling and branching branches with subtree references was not
2839
 
     copying the subtree weave, preventing the file graph from being accessed
2840
 
     and causing errors in commits in clones. (Robert Collins)
2841
 
 
2842
 
   * Suppress warning "integer argument expected, got float" from Paramiko,
2843
 
     which sometimes caused false test failures.  (Martin Pool)
2844
 
 
2845
 
   * Fix bug in bundle 4 that could cause attempts to write data to wrong
2846
 
     versionedfile.  (Aaron Bentley)
2847
 
 
2848
 
   * Diffs generated using "diff -p" no longer break the patch parser.
2849
 
     (Aaron Bentley)
2850
 
 
2851
 
   * get_transport treats an empty possible_transports list the same as a non-
2852
 
     empty one.  (Aaron Bentley)
2853
 
 
2854
 
   * patch verification for merge directives is reactivated, and works with
2855
 
     CRLF and CR files.  (Aaron Bentley)
2856
 
 
2857
 
   * Accept ..\ as a path in revision specifiers. This fixes for example
2858
 
     "-r branch:..\other-branch" on Windows.  (Lukáš Lalinský) 
2859
 
 
2860
 
   * ``BZR_PLUGIN_PATH`` may now contain trailing slashes.
2861
 
     (Blake Winton, #129299)
2862
 
 
2863
 
   * man page no longer lists hidden options (#131667, Aaron Bentley)
2864
 
 
2865
 
   * ``uncommit --help`` now explains the -r option adequately.  (Daniel
2866
 
     Watkins, #106726)
2867
 
 
2868
 
   * Error messages are now better formatted with parameters (such as
2869
 
     filenames) quoted when necessary. This avoids confusion when directory
2870
 
     names ending in a '.' at the end of messages were confused with a
2871
 
     full stop that may or not have been there. (Daniel Watkins, #129791)
2872
 
 
2873
 
   * Fix ``status FILE -r X..Y``. (Lukáš Lalinský)
2874
 
 
2875
 
   * If a particular command is an alias, ``help`` will show the alias
2876
 
     instead of claiming there is no help for said alias. (Daniel Watkins,
2877
 
     #133548)
2878
 
 
2879
 
   * TreeTransform-based operations, like pull, merge, revert, and branch,
2880
 
     now roll back if they encounter an error.  (Aaron Bentley, #67699)
2881
 
 
2882
 
   * ``bzr commit`` now exits cleanly if a character unsupported by the
2883
 
     current encoding is used in the commit message.  (Daniel Watkins,
2884
 
     #116143)
2885
 
 
2886
 
   * bzr send uses default values for ranges when only half of an elipsis
2887
 
     is specified ("-r..5" or "-r5..").  (#61685, Aaron Bentley)
2888
 
 
2889
 
   * Avoid trouble when Windows ssh calls itself 'plink' but no plink
2890
 
     binary is present.  (Martin Albisetti, #107155)
2891
 
 
2892
 
   * ``bzr remove`` should remove clean subtrees.  Now it will remove (without
2893
 
     needing ``--force``) subtrees that contain no files with text changes or
2894
 
     modified files.  With ``--force`` it removes the subtree regardless of
2895
 
     text changes or unknown files. Directories with renames in or out (but
2896
 
     not changed otherwise) will now be removed without needing ``--force``.
2897
 
     Unknown ignored files will be deleted without needing ``--force``.
2898
 
     (Marius Kruger, #111665)
2899
 
 
2900
 
   * When two plugins conflict, the source of both the losing and now the
2901
 
     winning definition is shown.  (Konstantin Mikhaylov, #5454)
2902
 
 
2903
 
   * When committing to a branch, the location being committed to is
2904
 
     displayed.  (Daniel Watkins, #52479)
2905
 
 
2906
 
   * ``bzr --version`` takes care about encoding of stdout, especially
2907
 
     when output is redirected. (Alexander Belchenko, #131100)
2908
 
 
2909
 
   * Prompt for an ftp password if none is provided.
2910
 
     (Vincent Ladeuil, #137044)
2911
 
 
2912
 
   * Reuse bound branch associated transport to avoid multiple
2913
 
     connections.
2914
 
     (Vincent Ladeuil, #128076, #131396)
2915
 
 
2916
 
   * Overwrite conflicting tags by ``push`` and ``pull`` if the
2917
 
     ``--overwrite`` option is specified.  (Lukáš Lalinský, #93947)
2918
 
 
2919
 
   * In checkouts, tags are copied into the master branch when created,
2920
 
     changed or deleted, and are copied into the checkout when it is 
2921
 
     updated.  (Martin Pool, #93856, #93860)
2922
 
 
2923
 
   * Print a warning instead of aborting the ``python setup.py install``
2924
 
     process if building of a C extension is not possible.
2925
 
     (Lukáš Lalinský, Alexander Belchenko)
2926
 
 
2927
 
  IMPROVEMENTS:
2928
 
 
2929
 
   * Add the option "--show-diff" to the commit command in order to display
2930
 
     the diff during the commit log creation. (Goffredo Baroncelli)
2931
 
 
2932
 
   * ``pull`` and ``merge`` are much faster at installing bundle format 4.
2933
 
     (Aaron Bentley)
2934
 
 
2935
 
   * ``pull -v`` no longer includes deltas, making it much faster.
2936
 
     (Aaron Bentley)
2937
 
 
2938
 
   * ``send`` now sends the directive as an attachment by default.
2939
 
     (Aaron Bentley, Lukáš Lalinský, Alexander Belchenko)
2940
 
 
2941
 
   * Documentation updates (Martin Albisetti)
2942
 
 
2943
 
   * Help on debug flags is now included in ``help global-options``.
2944
 
     (Daniel Watkins, #124853)
2945
 
 
2946
 
   * Parameters passed on the command line are checked to ensure they are
2947
 
     supported by the encoding in use. (Daniel Watkins)
2948
 
 
2949
 
   * The compression used within the bzr repository has changed from zlib
2950
 
     level 9 to the zlib default level. This improves commit performance with
2951
 
     only a small increase in space used (and in some cases a reduction in
2952
 
     space). (Robert Collins)
2953
 
 
2954
 
   * Initial commit no longer SHAs files twice and now reuses the path
2955
 
     rather than looking it up again, making it faster.
2956
 
     (Ian Clatworthy)
2957
 
 
2958
 
   * New option ``-c``/``--change`` for ``diff`` and ``status`` to show
2959
 
     changes in one revision.  (Lukáš Lalinský)
2960
 
 
2961
 
   * If versioned files match a given ignore pattern, a warning is now
2962
 
     given. (Daniel Watkins, #48623)
2963
 
 
2964
 
   * ``bzr status`` now has -S as a short name for --short and -V as a
2965
 
     short name for --versioned. These have been added to assist users
2966
 
     migrating from Subversion: ``bzr status -SV`` is now like
2967
 
     ``svn status -q``.  (Daniel Watkins, #115990)
2968
 
 
2969
 
   * Added C implementation of  ``PatienceSequenceMatcher``, which is about
2970
 
     10x faster than the Python version. This speeds up commands that
2971
 
     need file diffing, such as ``bzr commit`` or ``bzr diff``.
2972
 
     (Lukáš Lalinský)
2973
 
 
2974
 
   * HACKING has been extended with a large section on core developer tasks.
2975
 
     (Ian Clatworthy)
2976
 
 
2977
 
   * Add ``branches`` and ``standalone-trees`` as online help topics and
2978
 
     include them as Concepts within the User Reference.
2979
 
     (Paul Moore, Ian Clatworthy)
2980
 
 
2981
 
    * ``check`` can detect versionedfile parent references that are
2982
 
      inconsistent with revision and inventory info, and ``reconcile`` can fix
2983
 
      them.  These faulty references were generated by 0.8-era releases,
2984
 
      so repositories which were manipulated by old bzrs should be
2985
 
      checked, and possibly reconciled ASAP.  (Aaron Bentley, Andrew Bennetts)
2986
 
 
2987
 
  API BREAKS:
2988
 
 
2989
 
   * ``Branch.append_revision`` is removed altogether; please use 
2990
 
     ``Branch.set_last_revision_info`` instead.  (Martin Pool)
2991
 
 
2992
 
   * CommitBuilder now advertises itself as requiring the root entry to be
2993
 
     supplied. This only affects foreign repository implementations which reuse
2994
 
     CommitBuilder directly and have changed record_entry_contents to require
2995
 
     that the root not be supplied. This should be precisely zero plugins
2996
 
     affected. (Robert Collins)
2997
 
 
2998
 
   * The ``add_lines`` methods on ``VersionedFile`` implementations has changed
2999
 
     its return value to include the sha1 and length of the inserted text. This
3000
 
     allows the avoidance of double-sha1 calculations during commit.
3001
 
     (Robert Collins)
3002
 
 
3003
 
   * ``Transport.should_cache`` has been removed.  It was not called in the
3004
 
     previous release.  (Martin Pool)
3005
 
 
3006
 
  TESTING:
3007
 
 
3008
 
   * Tests may now raise TestNotApplicable to indicate they shouldn't be 
3009
 
     run in a particular scenario.  (Martin Pool)
3010
 
 
3011
 
   * New function multiply_tests_from_modules to give a simpler interface
3012
 
     to test parameterization.  (Martin Pool, Robert Collins)
3013
 
 
3014
 
   * ``Transport.should_cache`` has been removed.  It was not called in the
3015
 
     previous release.  (Martin Pool)
3016
 
 
3017
 
   * NULL_REVISION is returned to indicate the null revision, not None.
3018
 
     (Aaron Bentley)
3019
 
 
3020
 
   * Use UTF-8 encoded StringIO for log tests to avoid failures on
3021
 
     non-ASCII committer names.  (Lukáš Lalinský)
3022
 
 
3023
 
  INTERNALS:
3024
 
 
3025
 
   * ``bzrlib.plugin.all_plugins`` has been deprecated in favour of
3026
 
     ``bzrlib.plugin.plugins()`` which returns PlugIn objects that provide
3027
 
     useful functionality for determining the path of a plugin, its tests, and
3028
 
     its version information. (Robert Collins)
3029
 
 
3030
 
   * Add the option user_encoding to the function 'show_diff_trees()'
3031
 
     in order to move the user encoding at the UI level. (Goffredo Baroncelli)
3032
 
 
3033
 
   * Add the function make_commit_message_template_encoded() and the function
3034
 
     edit_commit_message_encoded() which handle encoded strings.
3035
 
     This is done in order to mix the commit messages (which is a unicode
3036
 
     string), and the diff which is a raw string. (Goffredo Baroncelli)
3037
 
 
3038
 
   * CommitBuilder now defaults to using add_lines_with_ghosts, reducing
3039
 
     overhead on non-weave repositories which don't require all parents to be
3040
 
     present. (Robert Collins)
3041
 
 
3042
 
   * Deprecated method ``find_previous_heads`` on
3043
 
     ``bzrlib.inventory.InventoryEntry``. This has been superseded by the use
3044
 
     of ``parent_candidates`` and a separate heads check via the repository
3045
 
     API. (Robert Collins)
3046
 
 
3047
 
   * New trace function ``mutter_callsite`` will print out a subset of the
3048
 
     stack to the log, which can be useful for gathering debug details.
3049
 
     (Robert Collins)
3050
 
 
3051
 
   * ``bzrlib.pack.ContainerWriter`` now tracks how many records have been
3052
 
     added via a public attribute records_written. (Robert Collins)
3053
 
 
3054
 
   * New method ``bzrlib.transport.Transport.get_recommended_page_size``.
3055
 
     This provides a hint to users of transports as to the reasonable
3056
 
     minimum data to read. In principle this can take latency and
3057
 
     bandwidth into account on a per-connection basis, but for now it
3058
 
     just has hard coded values based on the url. (e.g. http:// has a large
3059
 
     page size, file:// has a small one.) (Robert Collins)
3060
 
 
3061
 
   * New method on ``bzrlib.transport.Transport`` ``open_write_stream`` allows
3062
 
     incremental addition of data to a file without requiring that all the
3063
 
     data be buffered in memory. (Robert Collins)
3064
 
 
3065
 
   * New methods on ``bzrlib.knit.KnitVersionedFile``:
3066
 
     ``get_data_stream(versions)``, ``insert_data_stream(stream)`` and
3067
 
     ``get_format_signature()``.  These provide some infrastructure for
3068
 
     efficiently streaming the knit data for a set of versions over the smart
3069
 
     protocol.
3070
 
 
3071
 
   * Knits with no annotation cache still produce correct annotations.
3072
 
     (Aaron Bentley)
3073
 
 
3074
 
   * Three new methods have been added to ``bzrlib.trace``:
3075
 
     ``set_verbosity_level``, ``get_verbosity_level`` and ``is_verbose``.
3076
 
     ``set_verbosity_level`` expects a numeric value: negative for quiet,
3077
 
     zero for normal, positive for verbose. The size of the number can be
3078
 
     used to determine just how quiet or verbose the application should be.
3079
 
     The existing ``be_quiet`` and ``is_quiet`` routines have been
3080
 
     integrated into this new scheme. (Ian Clatworthy)
3081
 
 
3082
 
   * Options can now be delcared with a ``custom_callback`` parameter. If
3083
 
     set, this routine is called after the option is processed. This feature
3084
 
     is now used by the standard options ``verbose`` and ``quiet`` so that
3085
 
     setting one implicitly resets the other. (Ian Clatworthy)
3086
 
 
3087
 
   * Rather than declaring a new option from scratch in order to provide
3088
 
     custom help, a centrally registered option can be decorated using the
3089
 
     new ``bzrlib.Option.custom_help`` routine. In particular, this routine
3090
 
     is useful when declaring better help for the ``verbose`` and ``quiet``
3091
 
     standard options as the base definition of these is now more complex
3092
 
     than before thanks to their use of a custom callback. (Ian Clatworthy)
3093
 
      
3094
 
    * Tree._iter_changes(specific_file=[]) now iterates through no files,
3095
 
      instead of iterating through all files.  None is used to iterate through
3096
 
      all files.  (Aaron Bentley)
3097
 
 
3098
 
    * WorkingTree.revert() now accepts None to revert all files.  The use of
3099
 
      [] to revert all files is deprecated.  (Aaron Bentley)
3100
 
 
3101
 
 
3102
 
bzr 0.90 2007-08-28
3103
 
-------------------
3104
 
 
3105
 
  IMPROVEMENTS:
3106
 
 
3107
 
    * Documentation is now organized into multiple directories with a level
3108
 
      added for different languages or locales. Added the Mini Tutorial
3109
 
      and Quick Start Summary (en) documents from the Wiki, improving the
3110
 
      content and readability of the former. Formatted NEWS as Release Notes
3111
 
      complete with a Table of Conents, one heading per release. Moved the
3112
 
      Developer Guide into the main document catalog and provided a link
3113
 
      from the developer document catalog back to the main one.
3114
 
      (Ian Clatworthy, Sabin Iacob, Alexander Belchenko)
3115
 
 
3116
 
 
3117
 
  API CHANGES:
3118
 
 
3119
 
    * The static convenience method ``BzrDir.create_repository``
3120
 
      is deprecated.  Callers should instead create a ``BzrDir`` instance
3121
 
      and call ``create_repository`` on that.  (Martin Pool)
3122
 
 
3123
 
 
3124
 
bzr 0.90rc1 2007-08-14
3125
 
----------------------
3126
 
 
3127
 
  BUGFIXES:
3128
 
 
3129
 
    * ``bzr init`` should connect to the remote location one time only.  We
3130
 
      have been connecting several times because we forget to pass around the
3131
 
      Transport object. This modifies ``BzrDir.create_branch_convenience``,
3132
 
      so that we can give it the Transport we already have.
3133
 
      (John Arbash Meinel, Vincent Ladeuil, #111702)
3134
 
 
3135
 
    * Get rid of sftp connection cache (get rid of the FTP one too).
3136
 
      (Vincent Ladeuil, #43731)
3137
 
 
3138
 
    * bzr branch {local|remote} remote don't try to create a working tree
3139
 
      anymore.
3140
 
      (Vincent Ladeuil, #112173)
3141
 
 
3142
 
    * All identified multiple connections for a single bzr command have been
3143
 
      fixed. See bzrlib/tests/commands directory.
3144
 
      (Vincent Ladeuil)
3145
 
 
3146
 
    * ``bzr rm`` now does not insist on ``--force`` to delete files that
3147
 
      have been renamed but not otherwise modified.  (Marius Kruger,
3148
 
      #111664)
3149
 
 
3150
 
    * ``bzr selftest --bench`` no longer emits deprecation warnings
3151
 
      (Lukáš Lalinský)
3152
 
 
3153
 
    * ``bzr status`` now honours FILE parameters for conflict lists
3154
 
      (Aaron Bentley, #127606)
3155
 
 
3156
 
    * ``bzr checkout`` now honours -r when reconstituting a working tree.
3157
 
      It also honours -r 0.  (Aaron Bentley, #127708)
3158
 
 
3159
 
    * ``bzr add *`` no more fails on Windows if working tree contains
3160
 
      non-ascii file names. (Kuno Meyer, #127361)
3161
 
 
3162
 
    * allow ``easy_install bzr`` runs without fatal errors. 
3163
 
      (Alexander Belchenko, #125521)
3164
 
 
3165
 
    * Graph._filter_candidate_lca does not raise KeyError if a candidate
3166
 
      is eliminated just before it would normally be examined.  (Aaron Bentley)
3167
 
 
3168
 
    * SMTP connection failures produce a nice message, not a traceback.
3169
 
      (Aaron Bentley)
3170
 
 
3171
 
  IMPROVEMENTS:
3172
 
 
3173
 
    * Don't show "dots" progress indicators when run non-interactively, such
3174
 
      as from cron.  (Martin Pool)
3175
 
 
3176
 
    * ``info`` now formats locations more nicely and lists "submit" and
3177
 
      "public" branches (Aaron Bentley)
3178
 
 
3179
 
    * New ``pack`` command that will trigger database compression within
3180
 
      the repository (Robert Collins)
3181
 
 
3182
 
    * Implement ``_KnitIndex._load_data`` in a pyrex extension. The pyrex
3183
 
      version is approximately 2-3x faster at parsing a ``.kndx`` file.
3184
 
      Which yields a measurable improvement for commands which have to
3185
 
      read from the repository, such as a 1s => 0.75s improvement in
3186
 
      ``bzr diff`` when there are changes to be shown.  (John Arbash Meinel)
3187
 
 
3188
 
    * Merge is now faster.  Depending on the scenario, it can be more than 2x
3189
 
      faster. (Aaron Bentley)
3190
 
 
3191
 
    * Give a clearer warning, and allow ``python setup.py install`` to
3192
 
      succeed even if pyrex is not available.
3193
 
      (John Arbash Meinel)
3194
 
 
3195
 
    * ``DirState._read_dirblocks`` now has an optional Pyrex
3196
 
      implementation. This improves the speed of any command that has to
3197
 
      read the entire DirState. (``diff``, ``status``, etc, improve by
3198
 
      about 10%).
3199
 
      ``bisect_dirblocks`` has also been improved, which helps all
3200
 
      ``_get_entry`` type calls (whenever we are searching for a
3201
 
      particular entry in the in-memory DirState).
3202
 
      (John Arbash Meinel)
3203
 
 
3204
 
    * ``bzr pull`` and ``bzr push`` no longer do a complete walk of the 
3205
 
      branch revision history for ui display unless -v is supplied.
3206
 
      (Robert Collins)
3207
 
 
3208
 
    * ``bzr log -rA..B`` output shifted to the left margin if the log only 
3209
 
      contains merge revisions. (Kent Gibson) 
3210
 
 
3211
 
    * The ``plugins`` command is now public with improved help.
3212
 
      (Ian Clatworthy)
3213
 
 
3214
 
    * New bundle and merge directive formats are faster to generate, and
3215
 
 
3216
 
    * Annotate merge now works when there are local changes. (Aaron Bentley)
3217
 
 
3218
 
    * Commit now only shows the progress in terms of directories instead of
3219
 
      entries. (Ian Clatworthy)
3220
 
 
3221
 
    * Fix ``KnitRepository.get_revision_graph`` to not request the graph 2
3222
 
      times. This makes ``get_revision_graph`` 2x faster. (John Arbash
3223
 
      Meinel)
3224
 
 
3225
 
    * Fix ``VersionedFile.get_graph()`` to avoid using
3226
 
      ``set.difference_update(other)``, which has bad scaling when
3227
 
      ``other`` is large. This improves ``VF.get_graph([version_id])`` for
3228
 
      a 12.5k graph from 2.9s down to 200ms. (John Arbash Meinel)
3229
 
 
3230
 
    * The ``--lsprof-file`` option now generates output for KCacheGrind if
3231
 
      the file starts with ``callgrind.out``. This matches the default file
3232
 
      filtering done by KCacheGrind's Open Dialog. (Ian Clatworthy)
3233
 
 
3234
 
    * Fix ``bzr update`` to avoid an unnecessary
3235
 
      ``branch.get_master_branch`` call, which avoids 1 extra connection
3236
 
      to the remote server. (Partial fix for #128076, John Arbash Meinel)
3237
 
 
3238
 
    * Log errors from the smart server in the trace file, to make debugging 
3239
 
      test failures (and live failures!) easier.  (Andrew Bennetts)
3240
 
 
3241
 
    * The HTML version of the man page has been superceded by a more
3242
 
      comprehensive manual called the Bazaar User Reference. This manual
3243
 
      is completed generated from the online help topics. As part of this
3244
 
      change, limited reStructuredText is now explicitly supported in help
3245
 
      topics and command help with 'unnatural' markup being removed prior
3246
 
      to display by the online help or inclusion in the man page.
3247
 
      (Ian Clatworthy)
3248
 
 
3249
 
    * HTML documentation now use files extension ``*.html``
3250
 
      (Alexander Belchenko)
3251
 
 
3252
 
    * The cache of ignore definitions is now cleared in WorkingTree.unlock()
3253
 
      so that changes to .bzrignore aren't missed. (#129694, Daniel Watkins)
3254
 
 
3255
 
    * ``bzr selftest --strict`` fails if there are any missing features or
3256
 
      expected test failures. (Daniel Watkins, #111914)
3257
 
 
3258
 
    * Link to registration survey added to README. (Ian Clatworthy)
3259
 
 
3260
 
    * Windows standalone installer show link to registration survey
3261
 
      when installation finished. (Alexander Belchenko)
3262
 
 
3263
 
  LIBRARY API BREAKS:
3264
 
 
3265
 
    * Deprecated dictionary ``bzrlib.option.SHORT_OPTIONS`` removed.
3266
 
      Options are now required to provide a help string and it must
3267
 
      comply with the style guide by being one or more sentences with an
3268
 
      initial capital and final period. (Martin Pool)
3269
 
 
3270
 
    * KnitIndex.get_parents now returns tuples. (Robert Collins)
3271
 
 
3272
 
    * Ancient unused ``Repository.text_store`` attribute has been removed.
3273
 
      (Robert Collins)
3274
 
 
3275
 
    * The ``bzrlib.pack`` interface has changed to use tuples of bytestrings
3276
 
      rather than just bytestrings, making it easier to represent multiple
3277
 
      element names. As this interface was not used by any internal facilities
3278
 
      since it was introduced in 0.18 no API compatibility is being preserved.
3279
 
      The serialised form of these packs is identical with 0.18 when a single
3280
 
      element tuple is in use. (Robert Collins)
3281
 
 
3282
 
  INTERNALS:
3283
 
 
3284
 
    * merge now uses ``iter_changes`` to calculate changes, which makes room for
3285
 
      future performance increases.  It is also more consistent with other
3286
 
      operations that perform comparisons, and reduces reliance on
3287
 
      Tree.inventory.  (Aaron Bentley)
3288
 
 
3289
 
    * Refactoring of transport classes connected to a remote server.
3290
 
      ConnectedTransport is a new class that serves as a basis for all
3291
 
      transports needing to connect to a remote server.  transport.split_url
3292
 
      have been deprecated, use the static method on the object instead. URL
3293
 
      tests have been refactored too.
3294
 
      (Vincent Ladeuil)
3295
 
 
3296
 
    * Better connection sharing for ConnectedTransport objects.
3297
 
      transport.get_transport() now accepts a 'possible_transports' parameter.
3298
 
      If a newly requested transport can share a connection with one of the
3299
 
      list, it will.
3300
 
      (Vincent Ladeuil)
3301
 
 
3302
 
    * Most functions now accept ``bzrlib.revision.NULL_REVISION`` to indicate
3303
 
      the null revision, and consider using ``None`` for this purpose
3304
 
      deprecated.  (Aaron Bentley)
3305
 
 
3306
 
    * New ``index`` module with abstract index functionality. This will be
3307
 
      used during the planned changes in the repository layer. Currently the
3308
 
      index layer provides a graph aware immutable index, a builder for the
3309
 
      same index type to allow creating them, and finally a composer for
3310
 
      such indices to allow the use of many indices in a single query. The
3311
 
      index performance is not optimised, however the API is stable to allow
3312
 
      development on top of the index. (Robert Collins)
3313
 
 
3314
 
    * ``bzrlib.dirstate.cmp_by_dirs`` can be used to compare two paths by
3315
 
      their directory sections. This is equivalent to comparing
3316
 
      ``path.split('/')``, only without having to split the paths.
3317
 
      This has a Pyrex implementation available.
3318
 
      (John Arbash Meinel)
3319
 
 
3320
 
    * New transport decorator 'unlistable+' which disables the list_dir
3321
 
      functionality for testing.
3322
 
 
3323
 
    * Deprecated ``change_entry`` in transform.py. (Ian Clatworthy)
3324
 
 
3325
 
    * RevisionTree.get_weave is now deprecated.  Tree.plan_merge is now used
3326
 
      for performing annotate-merge.  (Aaron Bentley)
3327
 
 
3328
 
    * New EmailMessage class to create email messages. (Adeodato Simó)
3329
 
 
3330
 
    * Unused functions on the private interface KnitIndex have been removed.
3331
 
      (Robert Collins)
3332
 
 
3333
 
    * New ``knit.KnitGraphIndex`` which provides a ``KnitIndex`` layered on top
3334
 
      of a ``index.GraphIndex``. (Robert Collins)
3335
 
 
3336
 
    * New ``knit.KnitVersionedFile.iter_parents`` method that allows querying
3337
 
      the parents of many knit nodes at once, reducing round trips to the 
3338
 
      underlying index. (Robert Collins)
3339
 
 
3340
 
    * Graph now has an is_ancestor method, various bits use it.
3341
 
      (Aaron Bentley)
3342
 
 
3343
 
    * The ``-Dhpss`` flag now includes timing information. As well as
3344
 
      logging when a new connection is opened. (John Arbash Meinel)
3345
 
 
3346
 
    * ``bzrlib.pack.ContainerWriter`` now returns an offset, length tuple to
3347
 
      callers when inserting data, allowing generation of readv style access
3348
 
      during pack creation, without needing a separate pass across the output
3349
 
      pack to gather such details. (Robert Collins)
3350
 
 
3351
 
    * ``bzrlib.pack.make_readv_reader`` allows readv based access to pack
3352
 
      files that are stored on a transport. (Robert Collins)
3353
 
 
3354
 
    * New ``Repository.has_same_location`` method that reports if two
3355
 
      repository objects refer to the same repository (although with some risk
3356
 
      of false negatives).  (Andrew Bennetts)
3357
 
 
3358
 
    * InterTree.compare now passes require_versioned on correctly.
3359
 
      (Marius Kruger)
3360
 
 
3361
 
    * New methods on Repository - ``start_write_group``,
3362
 
      ``commit_write_group``, ``abort_write_group`` and ``is_in_write_group`` -
3363
 
      which provide a clean hook point for transactional Repositories - ones
3364
 
      where all the data for a fetch or commit needs to be made atomically
3365
 
      available in one step. This allows the write lock to remain while making
3366
 
      a series of data insertions.  (e.g. data conversion). (Robert Collins)
3367
 
 
3368
 
    * In ``bzrlib.knit`` the internal interface has been altered to use
3369
 
      3-tuples (index, pos, length) rather than two-tuples (pos, length) to
3370
 
      describe where data in a knit is, allowing knits to be split into 
3371
 
      many files. (Robert Collins)
3372
 
 
3373
 
    * ``bzrlib.knit._KnitData`` split into cache management and physical access
3374
 
      with two access classes - ``_PackAccess`` and ``_KnitAccess`` defined.
3375
 
      The former provides access into a .pack file, and the latter provides the
3376
 
      current production repository form of .knit files. (Robert Collins)
3377
 
 
3378
 
  TESTING:
3379
 
 
3380
 
    * Remove selftest ``--clean-output``, ``--numbered-dirs`` and
3381
 
      ``--keep-output`` options, which are obsolete now that tests
3382
 
      are done within directories in $TMPDIR.  (Martin Pool)
3383
 
 
3384
 
    * The SSH_AUTH_SOCK environment variable is now reset to avoid 
3385
 
      interaction with any running ssh agents.  (Jelmer Vernooij, #125955)
3386
 
 
3387
 
    * run_bzr_subprocess handles parameters the same way as run_bzr:
3388
 
      either a string or a list of strings should be passed as the first
3389
 
      parameter.  Varargs-style parameters are deprecated. (Aaron Bentley)
3390
 
 
3391
 
 
3392
 
bzr 0.18  2007-07-17
3393
 
--------------------
3394
 
 
3395
 
  BUGFIXES:
3396
 
 
3397
 
    * Fix 'bzr add' crash under Win32 (Kuno Meyer)
3398
 
 
3399
 
 
3400
 
bzr 0.18rc1  2007-07-10
3401
 
-----------------------
3402
 
 
3403
 
  BUGFIXES:
3404
 
 
3405
 
    * Do not suppress pipe errors, etc. in non-display commands
3406
 
      (Alexander Belchenko, #87178)
3407
 
 
3408
 
    * Display a useful error message when the user requests to annotate
3409
 
      a file that is not present in the specified revision.
3410
 
      (James Westby, #122656)
3411
 
 
3412
 
    * Commands that use status flags now have a reference to 'help
3413
 
      status-flags'.  (Daniel Watkins, #113436)
3414
 
 
3415
 
    * Work around python-2.4.1 inhability to correctly parse the
3416
 
      authentication header.
3417
 
      (Vincent Ladeuil, #121889)
3418
 
 
3419
 
    * Use exact encoding for merge directives. (Adeodato Simó, #120591)
3420
 
 
3421
 
    * Fix tempfile permissions error in smart server tar bundling under
3422
 
      Windows. (Martin _, #119330)
3423
 
 
3424
 
    * Fix detection of directory entries in the inventory. (James Westby)
3425
 
 
3426
 
    * Fix handling of http code 400: Bad Request When issuing too many ranges.
3427
 
      (Vincent Ladeuil, #115209)
3428
 
 
3429
 
    * Issue a CONNECT request when connecting to an https server
3430
 
      via a proxy to enable SSL tunneling.
3431
 
      (Vincent Ladeuil, #120678)
3432
 
 
3433
 
    * Fix ``bzr log -r`` to support selecting merge revisions, both 
3434
 
      individually and as part of revision ranges.
3435
 
      (Kent Gibson, #4663)
3436
 
 
3437
 
    * Don't leave cruft behind when failing to acquire a lockdir.
3438
 
      (Martin Pool, #109169)
3439
 
 
3440
 
    * Don't use the '-f' strace option during tests.
3441
 
      (Vincent Ladeuil, #102019).
3442
 
 
3443
 
    * Warn when setting ``push_location`` to a value that will be masked by
3444
 
      locations.conf.  (Aaron Bentley, #122286)
3445
 
 
3446
 
    * Fix commit ordering in corner case (Aaron Bentley, #94975)
3447
 
 
3448
 
    *  Make annotate behave in a non-ASCII world (Adeodato Simó).
3449
 
 
3450
 
  IMPROVEMENTS:
3451
 
 
3452
 
    * The --lsprof-file option now dumps a text rendering of the profiling
3453
 
      information if the filename ends in ".txt". It will also convert the
3454
 
      profiling information to a format suitable for KCacheGrind if the
3455
 
      output filename ends in ".callgrind". Fixes to the lsprofcalltree
3456
 
      conversion process by Jean Paul Calderone and Itamar were also merged.
3457
 
      See http://ddaa.net/blog/python/lsprof-calltree. (Ian Clatworthy)
3458
 
 
3459
 
    * ``info`` now defaults to non-verbose mode, displaying only paths and
3460
 
      abbreviated format info.  ``info -v`` displays all the information
3461
 
      formerly displayed by ``info``.  (Aaron Bentley, Adeodato Simó)
3462
 
 
3463
 
    * ``bzr missing`` now has better option names ``--this`` and ``--other``.
3464
 
      (Elliot Murphy)
3465
 
 
3466
 
    * The internal ``weave-list`` command has become ``versionedfile-list``,
3467
 
      and now lists knits as well as weaves.  (Aaron Bentley)
3468
 
 
3469
 
    * Automatic merge base selection uses a faster algorithm that chooses
3470
 
      better bases in criss-cross merge situations (Aaron Bentley)
3471
 
 
3472
 
    * Progress reporting in ``commit`` has been improved. The various logical
3473
 
      stages are now reported on as follows, namely:
3474
 
 
3475
 
      * Collecting changes [Entry x/y] - Stage n/m
3476
 
      * Saving data locally - Stage n/m
3477
 
      * Uploading data to master branch - Stage n/m
3478
 
      * Updating the working tree - Stage n/m
3479
 
      * Running post commit hooks - Stage n/m
3480
 
      
3481
 
      If there is no master branch, the 3rd stage is omitted and the total
3482
 
      number of stages is adjusted accordingly.
3483
 
 
3484
 
      Each hook that is run after commit is listed with a name (as hooks
3485
 
      can be slow it is useful feedback).
3486
 
      (Ian Clatworthy, Robert Collins)
3487
 
 
3488
 
    * Various operations that are now faster due to avoiding unnecessary
3489
 
      topological sorts. (Aaron Bentley)
3490
 
 
3491
 
    * Make merge directives robust against broken bundles. (Aaron Bentley)
3492
 
 
3493
 
    * The lsprof filename note is emitted via trace.note(), not standard
3494
 
      output.  (Aaron Bentley)
3495
 
 
3496
 
    * ``bzrlib`` now exports explicit API compatibility information to assist
3497
 
      library users and plugins. See the ``bzrlib.api`` module for details.
3498
 
      (Robert Collins)
3499
 
 
3500
 
    * Remove unnecessary lock probes when acquiring a lockdir.
3501
 
      (Martin Pool)
3502
 
 
3503
 
    * ``bzr --version`` now shows the location of the bzr log file, which
3504
 
      is especially useful on Windows.  (Martin Pool)
3505
 
 
3506
 
    * -D now supports hooks to get debug tracing of hooks (though its currently
3507
 
      minimal in nature). (Robert Collins)
3508
 
 
3509
 
    * Long log format reports deltas on merge revisions. 
3510
 
      (John Arbash Meinel, Kent Gibson)
3511
 
 
3512
 
    * Make initial push over ftp more resilient. (John Arbash Meinel)
3513
 
 
3514
 
    * Print a summary of changes for update just like pull does.
3515
 
      (Daniel Watkins, #113990)
3516
 
 
3517
 
    * Add a -Dhpss option to trace smart protocol requests and responses.
3518
 
      (Andrew Bennetts)
3519
 
 
3520
 
  LIBRARY API BREAKS:
3521
 
 
3522
 
    * Testing cleanups - 
3523
 
      ``bzrlib.repository.RepositoryTestProviderAdapter`` has been moved
3524
 
      to ``bzrlib.tests.repository_implementations``;
3525
 
      ``bzrlib.repository.InterRepositoryTestProviderAdapter`` has been moved
3526
 
      to ``bzrlib.tests.interrepository_implementations``;
3527
 
      ``bzrlib.transport.TransportTestProviderAdapter`` has moved to 
3528
 
      ``bzrlib.tests.test_transport_implementations``.
3529
 
      ``bzrlib.branch.BranchTestProviderAdapter`` has moved to
3530
 
      ``bzrlib.tests.branch_implementations``.
3531
 
      ``bzrlib.bzrdir.BzrDirTestProviderAdapter`` has moved to 
3532
 
      ``bzrlib.tests.bzrdir_implementations``.
3533
 
      ``bzrlib.versionedfile.InterVersionedFileTestProviderAdapter`` has moved
3534
 
      to ``bzrlib.tests.interversionedfile_implementations``.
3535
 
      ``bzrlib.store.revision.RevisionStoreTestProviderAdapter`` has moved to
3536
 
      ``bzrlib.tests.revisionstore_implementations``.
3537
 
      ``bzrlib.workingtree.WorkingTreeTestProviderAdapter`` has moved to
3538
 
      ``bzrlib.tests.workingtree_implementations``.
3539
 
      These changes are an API break in the testing infrastructure only.
3540
 
      (Robert Collins)
3541
 
 
3542
 
    * Relocate TestCaseWithRepository to be more central. (Robert Collins)
3543
 
 
3544
 
    * ``bzrlib.add.smart_add_tree`` will no longer perform glob expansion on
3545
 
      win32. Callers of the function should do this and use the new
3546
 
      ``MutableTree.smart_add`` method instead. (Robert Collins)
3547
 
 
3548
 
    * ``bzrlib.add.glob_expand_for_win32`` is now
3549
 
      ``bzrlib.win32utils.glob_expand``.  (Robert Collins)
3550
 
 
3551
 
    * ``bzrlib.add.FastPath`` is now private and moved to 
3552
 
      ``bzrlib.mutabletree._FastPath``. (Robert Collins, Martin Pool)
3553
 
 
3554
 
    * ``LockDir.wait`` removed.  (Martin Pool)
3555
 
 
3556
 
    * The ``SmartServer`` hooks API has changed for the ``server_started`` and
3557
 
      ``server_stopped`` hooks. The first parameter is now an iterable of
3558
 
      backing URLs rather than a single URL. This is to reflect that many
3559
 
      URLs may map to the external URL of the server. E.g. the server interally
3560
 
      may have a chrooted URL but also the local file:// URL will be at the 
3561
 
      same location. (Robert Collins)
3562
 
 
3563
 
  INTERNALS:
3564
 
 
3565
 
    * New SMTPConnection class to unify email handling.  (Adeodato Simó)
3566
 
 
3567
 
    * Fix documentation of BzrError. (Adeodato Simó)
3568
 
 
3569
 
    * Make BzrBadParameter an internal error. (Adeodato Simó)
3570
 
 
3571
 
    * Remove use of 'assert False' to raise an exception unconditionally.
3572
 
      (Martin Pool)
3573
 
 
3574
 
    * Give a cleaner error when failing to decode knit index entry.
3575
 
      (Martin Pool)
3576
 
 
3577
 
    * TreeConfig would mistakenly search the top level when asked for options
3578
 
      from a section. It now respects the section argument and only
3579
 
      searches the specified section. (James Westby)
3580
 
 
3581
 
    * Improve ``make api-docs`` output. (John Arbash Meinel)
3582
 
 
3583
 
    * Use os.lstat rather than os.stat for osutils.make_readonly and
3584
 
      osutils.make_writeable. This makes the difftools plugin more
3585
 
      robust when dangling symlinks are found. (Elliot Murphy)
3586
 
 
3587
 
    * New ``-Dlock`` option to log (to ~/.bzr.log) information on when 
3588
 
      lockdirs are taken or released.  (Martin Pool)
3589
 
 
3590
 
    * ``bzrlib`` Hooks are now nameable using ``Hooks.name_hook``. This 
3591
 
      allows a nicer UI when hooks are running as the current hook can
3592
 
      be displayed. (Robert Collins)
3593
 
 
3594
 
    * ``Transport.get`` has had its interface made more clear for ease of use.
3595
 
      Retrieval of a directory must now fail with either 'PathError' at open
3596
 
      time, or raise 'ReadError' on a read. (Robert Collins)
3597
 
 
3598
 
    * New method ``_maybe_expand_globs`` on the ``Command`` class for 
3599
 
      dealing with unexpanded glob lists - e.g. on the win32 platform. This
3600
 
      was moved from ``bzrlib.add._prepare_file_list``. (Robert Collins)
3601
 
 
3602
 
    * ``bzrlib.add.smart_add`` and ``bzrlib.add.smart_add_tree`` are now
3603
 
      deprecated in favour of ``MutableTree.smart_add``. (Robert Collins,
3604
 
      Martin Pool)
3605
 
 
3606
 
    * New method ``external_url`` on Transport for obtaining the url to
3607
 
      hand to external processes. (Robert Collins)
3608
 
 
3609
 
    * Teach windows installers to build pyrex/C extensions.
3610
 
      (Alexander Belchenko)
3611
 
 
3612
 
  TESTING:
3613
 
 
3614
 
    * Removed the ``--keep-output`` option from selftest and clean up test
3615
 
      directories as they're used.  This reduces the IO load from 
3616
 
      running the test suite and cuts the time by about half.
3617
 
      (Andrew Bennetts, Martin Pool)
3618
 
 
3619
 
    * Add scenarios as a public attribute on the TestAdapter classes to allow
3620
 
      modification of the generated scenarios before adaption and easier
3621
 
      testing. (Robert Collins)
3622
 
 
3623
 
    * New testing support class ``TestScenarioApplier`` which multiplies
3624
 
      out a single teste by a list of supplied scenarios. (RobertCollins)
3625
 
 
3626
 
    * Setting ``repository_to_test_repository`` on a repository_implementations
3627
 
      test will cause it to be called during repository creation, allowing the
3628
 
      testing of repository classes which are not based around the Format
3629
 
      concept. For example a repository adapter can be tested in this manner,
3630
 
      by altering the repository scenarios to include a scenario that sets this
3631
 
      attribute during the test parameterisation in
3632
 
      ``bzrlib.tests.repository.repository_implementations``. (Robert Collins)
3633
 
 
3634
 
    * Clean up many of the APIs for blackbox testing of Bazaar.  The standard 
3635
 
      interface is now self.run_bzr.  The command to run can be passed as
3636
 
      either a list of parameters, a string containing the command line, or
3637
 
      (deprecated) varargs parameters.  (Martin Pool)
3638
 
 
3639
 
    * The base TestCase now isolates tests from -D parameters by clearing
3640
 
      ``debug.debug_flags`` and restores it afterwards. (Robert Collins)
3641
 
 
3642
 
    * Add a relpath parameter to get_transport methods in test framework to
3643
 
      avoid useless cloning.
3644
 
      (Vincent Ladeuil, #110448)
3645
 
 
3646
 
 
3647
 
bzr 0.17  2007-06-18
3648
 
--------------------
3649
 
 
3650
 
  BUGFIXES:
3651
 
 
3652
 
    * Fix crash of commit due to wrong lookup of filesystem encoding.
3653
 
      (Colin Watson, #120647)
3654
 
 
3655
 
    * Revert logging just to stderr in commit as broke unicode filenames.
3656
 
      (Aaron Bentley, Ian Clatworthy, #120930)
3657
 
 
3658
 
 
3659
 
bzr 0.17rc1  2007-06-12
3660
 
-----------------------
3661
 
 
3662
 
  NOTES WHEN UPGRADING:
3663
 
 
3664
 
    * The kind() and is_executable() APIs on the WorkingTree interface no
3665
 
      longer implicitly (read) locks and unlocks the tree. This *might*
3666
 
      impact some plug-ins and tools using this part of the API. If you find
3667
 
      an issue that may be caused by this change, please let us know,
3668
 
      particularly the plug-in/tool maintainer. If encountered, the API
3669
 
      fix is to surround kind() and is_executable() calls with lock_read()
3670
 
      and unlock() like so::
3671
 
 
3672
 
        work_tree.lock_read()
3673
 
        try:
3674
 
            kind = work_tree.kind(...)
3675
 
        finally:
3676
 
            work_tree.unlock()
3677
 
 
3678
 
  INTERNALS:
3679
 
    * Rework of LogFormatter API to provide beginning/end of log hooks and to
3680
 
      encapsulate the details of the revision to be logged in a LogRevision
3681
 
      object.
3682
 
      In long log formats, merge revision ids are only shown when --show-ids
3683
 
      is specified, and are labelled "revision-id:", as per mainline
3684
 
      revisions, instead of "merged:". (Kent Gibson)
3685
 
 
3686
 
    * New ``BranchBuilder`` API which allows the construction of particular
3687
 
      histories quickly. Useful for testing and potentially other applications
3688
 
      too. (Robert Collins)
3689
 
 
3690
 
  IMPROVEMENTS:
3691
 
  
3692
 
    * There are two new help topics, working-trees and repositories that
3693
 
      attempt to explain these concepts. (James Westby, John Arbash Meinel,
3694
 
      Aaron Bentley)
3695
 
 
3696
 
    * Added ``bzr log --limit`` to report a limited number of revisions.
3697
 
      (Kent Gibson, #3659)
3698
 
 
3699
 
    * Revert does not try to preserve file contents that were originally
3700
 
      produced by reverting to a historical revision.  (Aaron Bentley)
3701
 
 
3702
 
    * ``bzr log --short`` now includes ``[merge]`` for revisions which
3703
 
      have more than one parent. This is a small improvement to help
3704
 
      understanding what changes have occurred
3705
 
      (John Arbash Meinel, #83887)
3706
 
 
3707
 
    * TreeTransform avoids many renames when contructing large trees,
3708
 
      improving speed.  3.25x speedups have been observed for construction of
3709
 
      kernel-sized-trees, and checkouts are 1.28x faster.  (Aaron Bentley)
3710
 
 
3711
 
    * Commit on large trees is now faster. In my environment, a commit of
3712
 
      a small change to the Mozilla tree (55k files) has dropped from
3713
 
      66 seconds to 32 seconds. For a small tree of 600 files, commit of a
3714
 
      small change is 33% faster. (Ian Clatworthy)
3715
 
 
3716
 
    * New --create-prefix option to bzr init, like for push.  (Daniel Watkins,
3717
 
      #56322)
3718
 
 
3719
 
  BUGFIXES:
3720
 
 
3721
 
    * ``bzr push`` should only connect to the remote location one time.
3722
 
      We have been connecting 3 times because we forget to pass around
3723
 
      the Transport object. This adds ``BzrDir.clone_on_transport()``, so
3724
 
      that we can pass in the Transport that we already have.
3725
 
      (John Arbash Meinel, #75721)
3726
 
 
3727
 
    * ``DirState.set_state_from_inventory()`` needs to properly order
3728
 
      based on split paths, not just string paths.
3729
 
      (John Arbash Meinel, #115947)
3730
 
 
3731
 
    * Let TestUIFactoy encode the password prompt with its own stdout.
3732
 
      (Vincent Ladeuil, #110204)
3733
 
 
3734
 
    * pycurl should take use the range header that takes the range hint
3735
 
      into account.
3736
 
      (Vincent Ladeuil, #112719)
3737
 
 
3738
 
    * WorkingTree4.get_file_sha1 no longer raises an exception when invoked
3739
 
      on a missing file.  (Aaron Bentley, #118186)
3740
 
 
3741
 
    * WorkingTree.remove works correctly with tree references, and when pwd is
3742
 
      not the tree root. (Aaron Bentley)
3743
 
 
3744
 
    * Merge no longer fails when a file is renamed in one tree and deleted
3745
 
      in the other. (Aaron Bentley, #110279)
3746
 
 
3747
 
    * ``revision-info`` now accepts dotted revnos, doesn't require a tree,
3748
 
      and defaults to the last revision (Matthew Fuller, #90048)
3749
 
 
3750
 
    * Tests no longer fail when BZR_REMOTE_PATH is set in the environment.
3751
 
      (Daniel Watkins, #111958)
3752
 
 
3753
 
    * ``bzr branch -r revid:foo`` can be used to branch any revision in
3754
 
      your repository. (Previously Branch6 only supported revisions in your
3755
 
      mainline). (John Arbash Meinel, #115343)
3756
 
 
3757
 
bzr 0.16  2007-05-07
3758
 
--------------------
3759
 
  
3760
 
  BUGFIXES:
3761
 
 
3762
 
    * Handle when you have 2 directories with similar names, but one has a
3763
 
      hyphen. (``'abc'`` versus ``'abc-2'``). The WT4._iter_changes
3764
 
      iterator was using direct comparison and ``'abc/a'`` sorts after
3765
 
      ``'abc-2'``, but ``('abc', 'a')`` sorts before ``('abc-2',)``.
3766
 
      (John Arbash Meinel, #111227)
3767
 
 
3768
 
    * Handle when someone renames a file on disk without telling bzr.
3769
 
      Previously we would report the first file as missing, but not show
3770
 
      the new unknown file. (John Arbash Meinel, #111288)
3771
 
 
3772
 
    * Avoid error when running hooks after pulling into or pushing from
3773
 
      a branch bound to a smartserver branch.  (Martin Pool, #111968)
3774
 
 
3775
 
  IMPROVEMENTS:
3776
 
 
3777
 
    * Move developer documentation to doc/developers/. This reduces clutter in
3778
 
      the root of the source tree and allows HACKING to be split into multiple
3779
 
      files. (Robert Collins, Alexander Belchenko)
3780
 
 
3781
 
    * Clean up the ``WorkingTree4._iter_changes()`` internal loops as well as
3782
 
      ``DirState.update_entry()``. This optimizes the core logic for ``bzr
3783
 
      diff`` and ``bzr status`` significantly improving the speed of
3784
 
      both. (John Arbash Meinel)
3785
 
 
3786
 
bzr 0.16rc2  2007-04-30
3787
 
-----------------------
3788
 
 
3789
 
  BUGFIXES:
3790
 
 
3791
 
    * Handle the case when you delete a file, and then rename another file
3792
 
      on top of it. Also handle the case of ``bzr rm --keep foo``. ``bzr
3793
 
      status`` should show the removed file and an unknown file in its
3794
 
      place. (John Arbash Meinel, #109993)
3795
 
 
3796
 
    * Bundles properly read and write revision properties that have an
3797
 
      empty value. And when the value is not ASCII.
3798
 
      (John Arbash Meinel, #109613)
3799
 
 
3800
 
    * Fix the bzr commit message to be in text mode.
3801
 
      (Alexander Belchenko, #110901)
3802
 
 
3803
 
    * Also handle when you rename a file and create a file where it used
3804
 
      to be. (John Arbash Meinel, #110256)
3805
 
 
3806
 
    * ``WorkingTree4._iter_changes`` should not descend into unversioned
3807
 
      directories. (John Arbash Meinel, #110399)
3808
 
 
3809
 
bzr 0.16rc1  2007-04-26
3810
 
-----------------------
3811
 
 
3812
 
  NOTES WHEN UPGRADING:
3813
 
 
3814
 
    * ``bzr remove`` and ``bzr rm`` will now remove the working file, if
3815
 
      it could be recovered again.
3816
 
      This has been done for consistency with svn and the unix rm command.
3817
 
      The old ``remove`` behaviour has been retained in the new option
3818
 
      ``bzr remove --keep``, which will just stop versioning the file,
3819
 
      but not delete it.
3820
 
      ``bzr remove --force`` have been added which will always delete the
3821
 
      files.
3822
 
      ``bzr remove`` is also more verbose.
3823
 
      (Marius Kruger, #82602)
3824
 
 
3825
 
  IMPROVEMENTS:
3826
 
 
3827
 
    * Merge directives can now be supplied as input to `merge` and `pull`,
3828
 
      like bundles can.  (Aaron Bentley)
3829
 
 
3830
 
    * Sending the SIGQUIT signal to bzr, which can be done on Unix by
3831
 
      pressing Control-Backslash, drops bzr into a debugger.  Type ``'c'``
3832
 
      to continue.  This can be disabled by setting the environment variable
3833
 
      ``BZR_SIGQUIT_PDB=0``.  (Martin Pool)
3834
 
 
3835
 
    * selftest now supports --list-only to list tests instead of running
3836
 
      them. (Ian Clatworthy)
3837
 
 
3838
 
    * selftest now supports --exclude PATTERN (or -x PATTERN) to exclude
3839
 
      tests with names that match that regular expression.
3840
 
      (Ian Clatworthy, #102679)
3841
 
 
3842
 
    * selftest now supports --randomize SEED to run tests in a random order.
3843
 
      SEED is typically the value 'now' meaning 'use the current time'.
3844
 
      (Ian Clatworthy, #102686)
3845
 
 
3846
 
    * New option ``--fixes`` to commit, which stores bug fixing annotations as
3847
 
      revision properties. Built-in support for Launchpad, Debian, Trac and
3848
 
      Bugzilla bug trackers. (Jonathan Lange, James Henstridge, Robert Collins)
3849
 
 
3850
 
    * New API, ``bzrlib.bugtracker.tracker_registry``, for adding support for
3851
 
      other bug trackers to ``fixes``. (Jonathan Lange, James Henstridge,
3852
 
      Robert Collins)
3853
 
 
3854
 
    * ``selftest`` has new short options ``-f`` and ``-1``.  (Martin
3855
 
      Pool)
3856
 
 
3857
 
    * ``bzrlib.tsort.MergeSorter`` optimizations. Change the inner loop
3858
 
      into using local variables instead of going through ``self._var``.
3859
 
      Improves the time to ``merge_sort`` a 10k revision graph by
3860
 
      approximately 40% (~700->400ms).  (John Arbash Meinel)
3861
 
 
3862
 
    * ``make docs`` now creates a man page at ``man1/bzr.1`` fixing bug 107388.
3863
 
      (Robert Collins)
3864
 
 
3865
 
    * ``bzr help`` now provides cross references to other help topics using
3866
 
      the _see_also facility on command classes. Likewise the bzr_man
3867
 
      documentation, and the bzr.1 man page also include this information.
3868
 
      (Robert Collins)
3869
 
 
3870
 
    * Tags are now included in logs, that use the long log formatter. 
3871
 
      (Erik Bågfors, Alexander Belchenko)
3872
 
 
3873
 
    * ``bzr help`` provides a clearer message when a help topic cannot be
3874
 
      found. (Robert Collins, #107656)
3875
 
 
3876
 
    * ``bzr help`` now accepts optional prefixes for command help. The help
3877
 
      for all commands can now be found at ``bzr help commands/COMMANDNAME``
3878
 
      as well as ``bzr help COMMANDNAME`` (which only works for commands 
3879
 
      where the name is not the same as a more general help topic). 
3880
 
      (Robert Collins)
3881
 
 
3882
 
    * ``bzr help PLUGINNAME`` will now return the module docstring from the
3883
 
      plugin PLUGINNAME. (Robert Collins, #50408)
3884
 
 
3885
 
    * New help topic ``urlspec`` which lists the availables transports.
3886
 
      (Goffredo Baroncelli)
3887
 
 
3888
 
    * doc/server.txt updated to document the default bzr:// port
3889
 
      and also update the blurb about the hpss' current status.
3890
 
      (Robert Collins, #107125).
3891
 
 
3892
 
    * ``bzr serve`` now listens on interface 0.0.0.0 by default, making it
3893
 
      serve out to the local LAN (and anyone in the world that can reach the
3894
 
      machine running ``bzr serve``. (Robert Collins, #98918)
3895
 
 
3896
 
    * A new smart server protocol version has been added.  It prefixes requests
3897
 
      and responses with an explicit version identifier so that future protocol
3898
 
      revisions can be dealt with gracefully.  (Andrew Bennetts, Robert Collins)
3899
 
 
3900
 
    * The bzr protocol version 2 indicates success or failure in every response
3901
 
      without depending on particular commands encoding that consistently,
3902
 
      allowing future client refactorings to be much more robust about error
3903
 
      handling. (Robert Collins, Martin Pool, Andrew Bennetts)
3904
 
 
3905
 
    * The smart protocol over HTTP client has been changed to always post to the
3906
 
      same ``.bzr/smart`` URL under the original location when it can.  This allows
3907
 
      HTTP servers to only have to pass URLs ending in .bzr/smart to the smart
3908
 
      server handler, and not arbitrary ``.bzr/*/smart`` URLs.  (Andrew Bennetts)
3909
 
 
3910
 
    * digest authentication is now supported for proxies and HTTP by the urllib
3911
 
      based http implementation. Tested against Apache 2.0.55 and Squid
3912
 
      2.6.5. Basic and digest authentication are handled coherently for HTTP
3913
 
      and proxy: if the user is provided in the url (bzr command line for HTTP,
3914
 
      proxy environment variables for proxies), the password is prompted for
3915
 
      (only once). If the password is provided, it is taken into account. Once
3916
 
      the first authentication is successful, all further authentication
3917
 
      roundtrips are avoided by preventively setting the right authentication
3918
 
      header(s).
3919
 
      (Vincent Ladeuil).
3920
 
 
3921
 
  INTERNALS:
3922
 
 
3923
 
    * bzrlib API compatability with 0.8 has been dropped, cleaning up some
3924
 
      code paths. (Robert Collins)
3925
 
 
3926
 
    * Change the format of chroot urls so that they can be safely manipulated
3927
 
      by generic url utilities without causing the resulting urls to have
3928
 
      escaped the chroot. A side effect of this is that creating a chroot
3929
 
      requires an explicit action using a ChrootServer.
3930
 
      (Robert Collins, Andrew Bennetts)
3931
 
 
3932
 
    * Deprecate ``Branch.get_root_id()`` because branches don't have root ids,
3933
 
      rather than fixing bug #96847.  (Aaron Bentley)
3934
 
 
3935
 
    * ``WorkingTree.apply_inventory_delta`` provides a better alternative to
3936
 
      ``WorkingTree._write_inventory``.  (Aaron Bentley)
3937
 
 
3938
 
    * Convenience method ``TestCase.expectFailure`` ensures that known failures
3939
 
      do not silently pass.  (Aaron Bentley)
3940
 
 
3941
 
    * ``Transport.local_abspath`` now raises ``NotLocalUrl`` rather than 
3942
 
      ``TransportNotPossible``. (Martin Pool, Ian Clatworthy)
3943
 
 
3944
 
    * New SmartServer hooks facility. There are two initial hooks documented
3945
 
      in ``bzrlib.transport.smart.SmartServerHooks``. The two initial hooks allow
3946
 
      plugins to execute code upon server startup and shutdown.
3947
 
      (Robert Collins).
3948
 
 
3949
 
    * SmartServer in standalone mode will now close its listening socket
3950
 
      when it stops, rather than waiting for garbage collection. This primarily
3951
 
      fixes test suite hangs when a test tries to connect to a shutdown server.
3952
 
      It may also help improve behaviour when dealing with a server running
3953
 
      on a specific port (rather than dynamically assigned ports).
3954
 
      (Robert Collins)
3955
 
 
3956
 
    * Move most SmartServer code into a new package, bzrlib/smart.
3957
 
      bzrlib/transport/remote.py contains just the Transport classes that used
3958
 
      to be in bzrlib/transport/smart.py.  (Andrew Bennetts)
3959
 
 
3960
 
    * urllib http implementation avoid roundtrips associated with
3961
 
      401 (and 407) errors once the authentication succeeds.
3962
 
      (Vincent Ladeuil).
3963
 
 
3964
 
    * urlib http now supports querying the user for a proxy password if
3965
 
      needed. Realm is shown in the prompt for both HTTP and proxy
3966
 
      authentication when the user is required to type a password. 
3967
 
      (Vincent Ladeuil).
3968
 
 
3969
 
    * Renamed SmartTransport (and subclasses like SmartTCPTransport) to
3970
 
      RemoteTransport (and subclasses to RemoteTCPTransport, etc).  This is more
3971
 
      consistent with its new home in ``bzrlib/transport/remote.py``, and because
3972
 
      it's not really a "smart" transport, just one that does file operations
3973
 
      via remote procedure calls.  (Andrew Bennetts)
3974
 
 
3975
 
    * The ``lock_write`` method of ``LockableFiles``, ``Repository`` and
3976
 
      ``Branch`` now accept a ``token`` keyword argument, so that separate
3977
 
      instances of those objects can share a lock if it has the right token.
3978
 
      (Andrew Bennetts, Robert Collins)
3979
 
 
3980
 
    * New method ``get_branch_reference`` on ``BzrDir`` allows the detection of
3981
 
      branch references - which the smart server component needs.
3982
 
 
3983
 
    * The Repository API ``make_working_trees`` is now permitted to return
3984
 
      False when ``set_make_working_trees`` is not implemented - previously
3985
 
      an unimplemented ``set_make_working_trees`` implied the result True
3986
 
      from ``make_working_trees``. This has been changed to accomodate the
3987
 
      smart server, where it does not make sense (at this point) to ever
3988
 
      make working trees by default. (Robert Collins)
3989
 
 
3990
 
    * Command objects can now declare related help topics by having _see_also
3991
 
      set to a list of related topic. (Robert Collins)
3992
 
 
3993
 
    * ``bzrlib.help`` now delegates to the Command class for Command specific
3994
 
      help. (Robert Collins)
3995
 
 
3996
 
    * New class ``TransportListRegistry``, derived from the Registry class, which 
3997
 
      simplifies tracking the available Transports. (Goffredo Baroncelli)
3998
 
 
3999
 
    * New function ``Branch.get_revision_id_to_revno_map`` which will
4000
 
      return a dictionary mapping revision ids to dotted revnos. Since
4001
 
      dotted revnos are defined in the context of the branch tip, it makes
4002
 
      sense to generate them from a ``Branch`` object.
4003
 
      (John Arbash Meinel)
4004
 
 
4005
 
    * Fix the 'Unprintable error' message display to use the repr of the 
4006
 
      exception that prevented printing the error because the str value
4007
 
      for it is often not useful in debugging (e.g. KeyError('foo') has a
4008
 
      str() of 'foo' but a repr of 'KeyError('foo')' which is much more
4009
 
      useful. (Robert Collins)
4010
 
 
4011
 
    * ``urlutils.normalize_url`` now unescapes unreserved characters, such as "~".
4012
 
      (Andrew Bennetts)
4013
 
 
4014
 
  BUGFIXES:
4015
 
 
4016
 
    * Don't fail bundle selftest if email has 'two' embedded.  
4017
 
      (Ian Clatworthy, #98510)
4018
 
 
4019
 
    * Remove ``--verbose`` from ``bzr bundle``. It didn't work anyway.
4020
 
      (Robert Widhopf-Fenk, #98591)
4021
 
 
4022
 
    * Remove ``--basis`` from the checkout/branch commands - it didn't work
4023
 
      properly and is no longer beneficial.
4024
 
      (Robert Collins, #53675, #43486)
4025
 
 
4026
 
    * Don't produce encoding error when adding duplicate files.
4027
 
      (Aaron Bentley)
4028
 
 
4029
 
    * Fix ``bzr log <file>`` so it only logs the revisions that changed
4030
 
      the file, and does it faster.
4031
 
      (Kent Gibson, John Arbash Meinel, #51980, #69477)
4032
 
 
4033
 
    * Fix ``InterDirstateTre._iter_changes`` to handle when we come across
4034
 
      an empty versioned directory, which now has files in it.
4035
 
      (John Arbash Meinel, #104257)
4036
 
 
4037
 
    * Teach ``common_ancestor`` to shortcut when the tip of one branch is
4038
 
      inside the ancestry of the other. Saves a lot of graph processing
4039
 
      (with an ancestry of 16k revisions, ``bzr merge ../already-merged``
4040
 
      changes from 2m10s to 13s).  (John Arbash Meinel, #103757)
4041
 
 
4042
 
    * Fix ``show_diff_trees`` to handle the case when a file is modified,
4043
 
      and the containing directory is renamed. (The file path is different
4044
 
      in this versus base, but it isn't marked as a rename).
4045
 
      (John Arbash Meinel, #103870)
4046
 
 
4047
 
    * FTP now works even when the FTP server does not support atomic rename.
4048
 
      (Aaron Bentley, #89436)
4049
 
 
4050
 
    * Correct handling in bundles and merge directives of timezones with
4051
 
      that are not an integer number of hours offset from UTC.  Always 
4052
 
      represent the epoch time in UTC to avoid problems with formatting 
4053
 
      earlier times on win32.  (Martin Pool, Alexander Belchenko, John
4054
 
      Arbash Meinel)
4055
 
 
4056
 
    * Typo in the help for ``register-branch`` fixed. (Robert Collins, #96770)
4057
 
 
4058
 
    * "dirstate" and "dirstate-tags" formats now produce branches compatible
4059
 
      with old versions of bzr. (Aaron Bentley, #107168))
4060
 
 
4061
 
    * Handle moving a directory when children have been added, removed,
4062
 
      and renamed. (John Arbash Meinel, #105479)
4063
 
 
4064
 
    * Don't preventively use basic authentication for proxy before receiving a
4065
 
      407 error. Otherwise people willing to use other authentication schemes
4066
 
      may expose their password in the clear (or nearly). This add one
4067
 
      roundtrip in case basic authentication should be used, but plug the
4068
 
      security hole.
4069
 
      (Vincent Ladeuil)
4070
 
 
4071
 
    * Handle http and proxy digest authentication.
4072
 
      (Vincent Ladeuil, #94034).
4073
 
 
4074
 
  TESTING:
4075
 
 
4076
 
    * Added ``bzrlib.strace.strace`` which will strace a single callable and
4077
 
      return a StraceResult object which contains just the syscalls involved
4078
 
      in running it. (Robert Collins)
4079
 
 
4080
 
    * New test method ``reduceLockdirTimeout`` to drop the default (ui-centric)
4081
 
      default time down to one suitable for tests. (Andrew Bennetts)
4082
 
 
4083
 
    * Add new ``vfs_transport_factory`` attribute on tests which provides the 
4084
 
      common vfs backing for both the readonly and readwrite transports.
4085
 
      This allows the RemoteObject tests to back onto local disk or memory,
4086
 
      and use the existing ``transport_server`` attribute all tests know about
4087
 
      to be the smart server transport. This in turn allows tests to 
4088
 
      differentiate between 'transport to access the branch', and 
4089
 
      'transport which is a VFS' - which matters in Remote* tests.
4090
 
      (Robert Collins, Andrew Bennetts)
4091
 
 
4092
 
    * The ``make_branch_and_tree`` method for tests will now create a 
4093
 
      lightweight checkout for the tree if the ``vfs_transport_factory`` is not
4094
 
      a LocalURLServer. (Robert Collins, Andrew Bennetts)
4095
 
 
4096
 
    * Branch implementation tests have been audited to ensure that all urls 
4097
 
      passed to Branch APIs use proper urls, except when local-disk paths
4098
 
      are intended. This is so that tests correctly access the test transport
4099
 
      which is often not equivalent to local disk in Remote* tests. As part
4100
 
      of this many tests were adjusted to remove dependencies on local disk
4101
 
      access.
4102
 
      (Robert Collins, Andrew Bennetts)
4103
 
 
4104
 
    * Mark bzrlib.tests and bzrlib.tests.TestUtil as providing assertFOO helper
4105
 
      functions by adding a ``__unittest`` global attribute. (Robert Collins,
4106
 
      Andrew Bennetts, Martin Pool, Jonathan Lange)
4107
 
 
4108
 
    * Refactored proxy and authentication handling to simplify the
4109
 
      implementation of new auth schemes for both http and proxy. 
4110
 
      (Vincent Ladeuil)
4111
 
 
4112
 
bzr 0.15 2007-04-01
4113
 
-------------------
4114
 
 
4115
 
  BUGFIXES:
4116
 
 
4117
 
    * Handle incompatible repositories as a user issue when fetching.
4118
 
      (Aaron Bentley)
4119
 
 
4120
 
    * Don't give a recommendation to upgrade when branching or 
4121
 
      checking out a branch that contains an old-format working tree.
4122
 
      (Martin Pool)
4123
 
 
4124
 
bzr 0.15rc3  2007-03-26
4125
 
-----------------------
4126
 
 
4127
 
  CHANGES:
4128
 
 
4129
 
    * A warning is now displayed when opening working trees in older 
4130
 
      formats, to encourage people to upgrade to WorkingTreeFormat4.
4131
 
      (Martin Pool)
4132
 
 
4133
 
  IMPROVEMENTS:
4134
 
 
4135
 
    * HTTP redirections are now taken into account when a branch (or a
4136
 
      bundle) is accessed for the first time. A message is issued at each
4137
 
      redirection to inform the user. In the past, http redirections were
4138
 
      silently followed for each request which significantly degraded the
4139
 
      performances. The http redirections are not followed anymore by
4140
 
      default, instead a RedirectRequested exception is raised. For bzrlib
4141
 
      users needing to follow http redirections anyway,
4142
 
      ``bzrlib.transport.do_catching_redirections`` provide an easy transition
4143
 
      path.  (vila)
4144
 
 
4145
 
  INTERNALS:
4146
 
 
4147
 
    * Added ``ReadLock.temporary_write_lock()`` to allow upgrading an OS read
4148
 
      lock to an OS write lock. Linux can do this without unlocking, Win32
4149
 
      needs to unlock in between. (John Arbash Meinel)
4150
 
 
4151
 
    * New parameter ``recommend_upgrade`` to ``BzrDir.open_workingtree``
4152
 
      to silence (when false) warnings about opening old formats.
4153
 
      (Martin Pool)
4154
 
 
4155
 
    * Fix minor performance regression with bzr-0.15 on pre-dirstate
4156
 
      trees. (We were reading the working inventory too many times).
4157
 
      (John Arbash Meinel)
4158
 
 
4159
 
    * Remove ``Branch.get_transaction()`` in favour of a simple cache of
4160
 
      ``revision_history``.  Branch subclasses should override
4161
 
      ``_gen_revision_history`` rather than ``revision_history`` to make use of
4162
 
      this cache, and call ``_clear_revision_history_cache`` and
4163
 
      ``_cache_revision_history`` at appropriate times. (Andrew Bennetts)
4164
 
 
4165
 
  BUGFIXES:
4166
 
 
4167
 
    * Take ``smtp_server`` from user config into account.
4168
 
      (vila, #92195)
4169
 
 
4170
 
    * Restore Unicode filename handling for versioned and unversioned files.
4171
 
      (John Arbash Meinel, #92608)
4172
 
 
4173
 
    * Don't fail during ``bzr commit`` if a file is marked removed, and
4174
 
      the containing directory is auto-removed.  (John Arbash Meinel, #93681)
4175
 
 
4176
 
    * ``bzr status FILENAME`` failed on Windows because of an uncommon
4177
 
      errno. (``ERROR_DIRECTORY == 267 != ENOTDIR``).
4178
 
      (Wouter van Heyst, John Arbash Meinel, #90819)
4179
 
 
4180
 
    * ``bzr checkout source`` should create a local branch in the same
4181
 
      format as source. (John Arbash Meinel, #93854)
4182
 
 
4183
 
    * ``bzr commit`` with a kind change was failing to update the
4184
 
      last-changed-revision for directories.  The
4185
 
      InventoryDirectory._unchanged only looked at the ``parent_id`` and name,
4186
 
      ignoring the fact that the kind could have changed, too.
4187
 
      (John Arbash Meinel, #90111)
4188
 
 
4189
 
    * ``bzr mv dir/subdir other`` was incorrectly updating files inside
4190
 
      the directory. So that there was a chance it would break commit,
4191
 
      etc. (John Arbash Meinel, #94037)
4192
 
 
4193
 
    * Correctly handles mutiple permanent http redirections.
4194
 
      (vila, #88780)
4195
 
 
4196
 
bzr 0.15rc2  2007-03-14
4197
 
-----------------------
4198
 
 
4199
 
  NOTES WHEN UPGRADING:
4200
 
        
4201
 
    * Release 0.15rc2 of bzr changes the ``bzr init-repo`` command to
4202
 
      default to ``--trees`` instead of ``--no-trees``.
4203
 
      Existing shared repositories are not affected.
4204
 
 
4205
 
  IMPROVEMENTS:
4206
 
 
4207
 
    * New ``merge-directive`` command to generate machine- and human-readable
4208
 
      merge requests.  (Aaron Bentley)
4209
 
 
4210
 
    * New ``submit:`` revision specifier makes it easy to diff against the
4211
 
      common ancestor with the submit location (Aaron Bentley)
4212
 
 
4213
 
    * Added support for Putty's SSH implementation. (Dmitry Vasiliev)
4214
 
 
4215
 
    * Added ``bzr status --versioned`` to report only versioned files, 
4216
 
      not unknowns. (Kent Gibson)
4217
 
 
4218
 
    * Merge now autodetects the correct line-ending style for its conflict
4219
 
      markers.  (Aaron Bentley)
4220
 
 
4221
 
  INTERNALS:
4222
 
 
4223
 
    * Refactored SSH vendor registration into SSHVendorManager class.
4224
 
      (Dmitry Vasiliev)
4225
 
 
4226
 
  BUGFIXES:
4227
 
 
4228
 
    * New ``--numbered-dirs`` option to ``bzr selftest`` to use
4229
 
      numbered dirs for TestCaseInTempDir. This is default behavior
4230
 
      on Windows. Anyone can force named dirs on Windows
4231
 
      with ``--no-numbered-dirs``. (Alexander Belchenko)
4232
 
 
4233
 
    * Fix ``RevisionSpec_revid`` to handle the Unicode strings passed in
4234
 
      from the command line. (Marien Zwart, #90501)
4235
 
 
4236
 
    * Fix ``TreeTransform._iter_changes`` when both the source and
4237
 
      destination are missing. (Aaron Bentley, #88842)
4238
 
 
4239
 
    * Fix commit of merges with symlinks in dirstate trees.
4240
 
      (Marien Zwart)
4241
 
    
4242
 
    * Switch the ``bzr init-repo`` default from --no-trees to --trees. 
4243
 
      (Wouter van Heyst, #53483)
4244
 
 
4245
 
 
4246
 
bzr 0.15rc1  2007-03-07
4247
 
-----------------------
4248
 
 
4249
 
  SURPRISES:
4250
 
 
4251
 
    * The default disk format has changed. Please run 'bzr upgrade' in your
4252
 
      working trees to upgrade. This new default is compatible for network
4253
 
      operations, but not for local operations. That is, if you have two
4254
 
      versions of bzr installed locally, after upgrading you can only use the
4255
 
      bzr 0.15 version. This new default does not enable tags or nested-trees
4256
 
      as they are incompatible with bzr versions before 0.15 over the network.
4257
 
 
4258
 
    * For users of bzrlib: Two major changes have been made to the working tree
4259
 
      api in bzrlib. The first is that many methods and attributes, including
4260
 
      the inventory attribute, are no longer valid for use until one of
4261
 
      ``lock_read``/``lock_write``/``lock_tree_write`` has been called,
4262
 
      and become invalid again after unlock is called. This has been done
4263
 
      to improve performance and correctness as part of the dirstate
4264
 
      development.
4265
 
      (Robert Collins, John A Meinel, Martin Pool, and others).
4266
 
 
4267
 
    * For users of bzrlib: The attribute 'tree.inventory' should be considered
4268
 
      readonly. Previously it was possible to directly alter this attribute, or
4269
 
      its contents, and have the tree notice this. This has been made
4270
 
      unsupported - it may work in some tree formats, but in the newer dirstate
4271
 
      format such actions will have no effect and will be ignored, or even
4272
 
      cause assertions. All operations possible can still be carried out by a
4273
 
      combination of the tree API, and the bzrlib.transform API. (Robert
4274
 
      Collins, John A Meinel, Martin Pool, and others).
4275
 
 
4276
 
  IMPROVEMENTS:
4277
 
 
4278
 
    * Support for OS Windows 98. Also .bzr.log on any windows system
4279
 
      saved in My Documents folder. (Alexander Belchenko)
4280
 
 
4281
 
    * ``bzr mv`` enhanced to support already moved files.
4282
 
      In the past the mv command would have failed if the source file doesn't
4283
 
      exist. In this situation ``bzr mv`` would now detect that the file has
4284
 
      already moved and update the repository accordingly, if the target file
4285
 
      does exist.
4286
 
      A new option ``--after`` has been added so that if two files already
4287
 
      exist, you could notify Bazaar that you have moved a (versioned) file
4288
 
      and replaced it with another. Thus in this case ``bzr move --after``
4289
 
      will only update the Bazaar identifier.
4290
 
      (Steffen Eichenberg, Marius Kruger)
4291
 
 
4292
 
    * ``ls`` now works on treeless branches and remote branches.
4293
 
      (Aaron Bentley)
4294
 
 
4295
 
    * ``bzr help global-options`` describes the global options.
4296
 
      (Aaron Bentley)
4297
 
 
4298
 
    * ``bzr pull --overwrite`` will now correctly overwrite checkouts.
4299
 
      (Robert Collins)
4300
 
 
4301
 
    * Files are now allowed to change kind (e.g. from file to symlink).
4302
 
      Supported by ``commit``, ``revert`` and ``status``
4303
 
      (Aaron Bentley)
4304
 
 
4305
 
    * ``inventory`` and ``unknowns`` hidden in favour of ``ls``
4306
 
      (Aaron Bentley)
4307
 
 
4308
 
    * ``bzr help checkouts`` descibes what checkouts are and some possible
4309
 
      uses of them. (James Westby, Aaron Bentley)
4310
 
 
4311
 
    * A new ``-d`` option to push, pull and merge overrides the default 
4312
 
      directory.  (Martin Pool)
4313
 
 
4314
 
    * Branch format 6: smaller, and potentially faster than format 5.  Supports
4315
 
      ``append_history_only`` mode, where the log view and revnos do not change,
4316
 
      except by being added to.  Stores policy settings in
4317
 
      ".bzr/branch/branch.conf".
4318
 
 
4319
 
    * ``append_only`` branches:  Format 6 branches may be configured so that log
4320
 
      view and revnos are always consistent.  Either create the branch using
4321
 
      "bzr init --append-revisions-only" or edit the config file as descriped
4322
 
      in docs/configuration.txt.
4323
 
 
4324
 
    * rebind: Format 6 branches retain the last-used bind location, so if you
4325
 
      "bzr unbind", you can "bzr bind" to bind to the previously-selected
4326
 
      bind location.
4327
 
 
4328
 
    * Builtin tags support, created and deleted by the ``tag`` command and
4329
 
      stored in the branch.  Tags can be accessed with the revisionspec
4330
 
      ``-rtag:``, and listed with ``bzr tags``.  Tags are not versioned 
4331
 
      at present. Tags require a network incompatible upgrade. To perform this
4332
 
      upgrade, run ``bzr upgrade --dirstate-tags`` in your branch and
4333
 
      repositories. (Martin Pool)
4334
 
 
4335
 
    * The ``bzr://`` transport now has a well-known port number, 4155,
4336
 
      which it will use by default.  (Andrew Bennetts, Martin Pool)
4337
 
 
4338
 
    * Bazaar now looks for user-installed plugins before looking for site-wide
4339
 
      plugins. (Jonathan Lange)
4340
 
 
4341
 
    * ``bzr resolve`` now detects and marks resolved text conflicts.
4342
 
      (Aaron Bentley)
4343
 
 
4344
 
  INTERNALS:
4345
 
 
4346
 
    * Internally revision ids and file ids are now passed around as utf-8
4347
 
      bytestrings, rather than treating them as Unicode strings. This has
4348
 
      performance benefits for Knits, since we no longer need to decode the
4349
 
      revision id for each line of content, nor for each entry in the index.
4350
 
      This will also help with the future dirstate format.
4351
 
      (John Arbash Meinel)
4352
 
 
4353
 
    * Reserved ids (any revision-id ending in a colon) are rejected by
4354
 
      versionedfiles, repositories, branches, and working trees
4355
 
      (Aaron Bentley)
4356
 
 
4357
 
    * Minor performance improvement by not creating a ProgressBar for
4358
 
      every KnitIndex we create. (about 90ms for a bzr.dev tree)
4359
 
      (John Arbash Meinel)
4360
 
 
4361
 
    * New easier to use Branch hooks facility. There are five initial hooks,
4362
 
      all documented in bzrlib.branch.BranchHooks.__init__ - ``'set_rh'``,
4363
 
      ``'post_push'``, ``'post_pull'``, ``'post_commit'``,
4364
 
      ``'post_uncommit'``. These hooks fire after the matching operation
4365
 
      on a branch has taken place, and were originally added for the
4366
 
      branchrss plugin. (Robert Collins)
4367
 
 
4368
 
    * New method ``Branch.push()`` which should be used when pushing from a
4369
 
      branch as it makes performance and policy decisions to match the UI
4370
 
      level command ``push``. (Robert Collins).
4371
 
 
4372
 
    * Add a new method ``Tree.revision_tree`` which allows access to cached
4373
 
      trees for arbitrary revisions. This allows the in development dirstate
4374
 
      tree format to provide access to the callers to cached copies of 
4375
 
      inventory data which are cheaper to access than inventories from the
4376
 
      repository.
4377
 
      (Robert Collins, Martin Pool)
4378
 
 
4379
 
    * New ``Branch.last_revision_info`` method, this is being done to allow
4380
 
      optimization of requests for both the number of revisions and the last
4381
 
      revision of a branch with smartservers and potentially future branch
4382
 
      formats. (Wouter van Heyst, Robert Collins)
4383
 
 
4384
 
    * Allow ``'import bzrlib.plugins.NAME'`` to work when the plugin NAME has not
4385
 
      yet been loaded by ``load_plugins()``. This allows plugins to depend on each
4386
 
      other for code reuse without requiring users to perform file-renaming
4387
 
      gymnastics. (Robert Collins)
4388
 
 
4389
 
    * New Repository method ``'gather_stats'`` for statistic data collection.
4390
 
      This is expected to grow to cover a number of related uses mainly
4391
 
      related to bzr info. (Robert Collins)
4392
 
 
4393
 
    * Log formatters are now managed with a registry.
4394
 
      ``log.register_formatter`` continues to work, but callers accessing
4395
 
      the FORMATTERS dictionary directly will not.
4396
 
 
4397
 
    * Allow a start message to be passed to the ``edit_commit_message``
4398
 
      function.  This will be placed in the message offered to the user
4399
 
      for editing above the separator. It allows a template commit message
4400
 
      to be used more easily. (James Westby)
4401
 
 
4402
 
    * ``GPGStrategy.sign()`` will now raise ``BzrBadParameterUnicode`` if
4403
 
      you pass a Unicode string rather than an 8-bit string. Callers need
4404
 
      to be updated to encode first. (John Arbash Meinel)
4405
 
 
4406
 
    * Branch.push, pull, merge now return Result objects with information
4407
 
      about what happened, rather than a scattering of various methods.  These
4408
 
      are also passed to the post hooks.  (Martin Pool)
4409
 
 
4410
 
    * File formats and architecture is in place for managing a forest of trees
4411
 
      in bzr, and splitting up existing trees into smaller subtrees, and
4412
 
      finally joining trees to make a larger tree. This is the first iteration
4413
 
      of this support, and the user-facing aspects still require substantial
4414
 
      work.  If you wish to experiment with it, use ``bzr upgrade
4415
 
      --dirstate-with-subtree`` in your working trees and repositories.
4416
 
      You can use the hidden commands ``split`` and ``join`` and to create
4417
 
      and manipulate nested trees, but please consider using the nested-trees
4418
 
      branch, which contains substantial UI improvements, instead.
4419
 
      http://code.aaronbentley.com/bzr/bzrrepo/nested-trees/
4420
 
      (Aaron Bentley, Martin Pool, Robert Collins).
4421
 
 
4422
 
  BUGFIXES:
4423
 
 
4424
 
    * ``bzr annotate`` now uses dotted revnos from the viewpoint of the
4425
 
      branch, rather than the last changed revision of the file.
4426
 
      (John Arbash Meinel, #82158)
4427
 
 
4428
 
    * Lock operations no longer hang if they encounter a permission problem.
4429
 
      (Aaron Bentley)
4430
 
 
4431
 
    * ``bzr push`` can resume a push that was canceled before it finished.
4432
 
      Also, it can push even if the target directory exists if you supply
4433
 
      the ``--use-existing-dir`` flag.
4434
 
      (John Arbash Meinel, #30576, #45504)
4435
 
 
4436
 
    * Fix http proxy authentication when user and an optional
4437
 
      password appears in the ``*_proxy`` vars. (Vincent Ladeuil,
4438
 
      #83954).
4439
 
 
4440
 
    * ``bzr log branch/file`` works for local treeless branches
4441
 
      (Aaron Bentley, #84247)
4442
 
 
4443
 
    * Fix problem with UNC paths on Windows 98. (Alexander Belchenko, #84728)
4444
 
 
4445
 
    * Searching location of CA bundle for PyCurl in env variable
4446
 
      (``CURL_CA_BUNDLE``), and on win32 along the PATH.
4447
 
      (Alexander Belchenko, #82086)
4448
 
 
4449
 
    * ``bzr init`` works with unicode argument LOCATION.
4450
 
      (Alexander Belchenko, #85599)
4451
 
 
4452
 
    * Raise ``DependencyNotPresent`` if pycurl do not support https. 
4453
 
      (Vincent Ladeuil, #85305)
4454
 
 
4455
 
    * Invalid proxy env variables should not cause a traceback.
4456
 
      (Vincent Ladeuil, #87765)
4457
 
 
4458
 
    * Ignore patterns normalised to use '/' path separator.
4459
 
      (Kent Gibson, #86451)
4460
 
 
4461
 
    * bzr rocks. It sure does! Fix case. (Vincent Ladeuil, #78026)
4462
 
 
4463
 
    * Fix bzrtools shelve command for removed lines beginning with "--"
4464
 
      (Johan Dahlberg, #75577)
4465
 
 
4466
 
  TESTING:
4467
 
 
4468
 
    * New ``--first`` option to ``bzr selftest`` to run specified tests
4469
 
      before the rest of the suite.  (Martin Pool)
4470
 
 
4471
 
 
4472
 
bzr 0.14  2007-01-23
4473
 
--------------------
4474
 
 
4475
 
  IMPROVEMENTS:
4476
 
 
4477
 
    * ``bzr help global-options`` describes the global options. (Aaron Bentley)
4478
 
 
4479
 
  BUG FIXES:
4480
 
    
4481
 
    * Skip documentation generation tests if the tools to do so are not
4482
 
      available. Fixes running selftest for installled copies of bzr. 
4483
 
      (John Arbash Meinel, #80330)
4484
 
 
4485
 
    * Fix the code that discovers whether bzr is being run from it's
4486
 
      working tree to handle the case when it isn't but the directory
4487
 
      it is in is below a repository. (James Westby, #77306)
4488
 
 
4489
 
 
4490
 
bzr 0.14rc1  2007-01-16
4491
 
-----------------------
4492
 
 
4493
 
  IMPROVEMENTS:
4494
 
 
4495
 
    * New connection: ``bzr+http://`` which supports tunnelling the smart
4496
 
      protocol over an HTTP connection. If writing is enabled on the bzr
4497
 
      server, then you can write over the http connection.
4498
 
      (Andrew Bennetts, John Arbash Meinel)
4499
 
 
4500
 
    * Aliases now support quotation marks, so they can contain whitespace
4501
 
      (Marius Kruger)
4502
 
 
4503
 
    * PyCurlTransport now use a single curl object. By specifying explicitly
4504
 
      the 'Range' header, we avoid the need to use two different curl objects
4505
 
      (and two connections to the same server). (Vincent Ladeuil)
4506
 
 
4507
 
    * ``bzr commit`` does not prompt for a message until it is very likely to
4508
 
      succeed.  (Aaron Bentley)
4509
 
 
4510
 
    * ``bzr conflicts`` now takes --text to list pathnames of text conflicts
4511
 
      (Aaron Bentley)
4512
 
 
4513
 
    * Fix ``iter_lines_added_or_present_in_versions`` to use a set instead
4514
 
      of a list while checking if a revision id was requested. Takes 10s
4515
 
      off of the ``fileids_affected_by_revision_ids`` time, which is 10s
4516
 
      of the ``bzr branch`` time. Also improve ``fileids_...`` time by
4517
 
      filtering lines with a regex rather than multiple ``str.find()``
4518
 
      calls. (saves another 300ms) (John Arbash Meinel)
4519
 
 
4520
 
    * Policy can be set for each configuration key. This allows keys to be
4521
 
      inherited properly across configuration entries. For example, this
4522
 
      should enable you to do::
4523
 
        
4524
 
        [/home/user/project]
4525
 
        push_location = sftp://host/srv/project/
4526
 
        push_location:policy = appendpath
4527
 
 
4528
 
      And then a branch like ``/home/user/project/mybranch`` should get an
4529
 
      automatic push location of ``sftp://host/srv/project/mybranch``.
4530
 
      (James Henstridge)
4531
 
 
4532
 
    * Added ``bzr status --short`` to make status report svn style flags
4533
 
      for each file.  For example::
4534
 
 
4535
 
        $ bzr status --short
4536
 
        A  foo
4537
 
        A  bar
4538
 
        D  baz
4539
 
        ?  wooley
4540
 
 
4541
 
    * 'bzr selftest --clean-output' allows easily clean temporary tests 
4542
 
      directories without running tests. (Alexander Belchenko)
4543
 
 
4544
 
    * ``bzr help hidden-commands`` lists all hidden commands. (Aaron Bentley)
4545
 
 
4546
 
    * ``bzr merge`` now has an option ``--pull`` to fall back to pull if
4547
 
      local is fully merged into remote. (Jan Hudec)
4548
 
 
4549
 
    * ``bzr help formats`` describes available directory formats. (Aaron Bentley)
4550
 
 
4551
 
  INTERNALS:
4552
 
 
4553
 
    * A few tweaks directly to ``fileids_affected_by_revision_ids`` to
4554
 
      help speed up processing, as well allowing to extract unannotated
4555
 
      lines. Between the two ``fileids_affected_by_revision_ids`` is
4556
 
      improved by approx 10%. (John Arbash Meinel)
4557
 
 
4558
 
    * Change Revision serialization to only write out millisecond
4559
 
      resolution. Rather than expecting floating point serialization to
4560
 
      preserve more resolution than we need. (Henri Weichers, Martin Pool)
4561
 
 
4562
 
    * Test suite ends cleanly on Windows.  (Vincent Ladeuil)
4563
 
 
4564
 
    * When ``encoding_type`` attribute of class Command is equal to 'exact', 
4565
 
      force sys.stdout to be a binary stream on Windows, and therefore
4566
 
      keep exact line-endings (without LF -> CRLF conversion).
4567
 
      (Alexander Belchenko)
4568
 
 
4569
 
    * Single-letter short options are no longer globally declared.  (Martin
4570
 
      Pool)
4571
 
 
4572
 
    * Before using detected user/terminal encoding bzr should check
4573
 
      that Python has corresponding codec. (Alexander Belchenko)
4574
 
 
4575
 
    * Formats for end-user selection are provided via a FormatRegistry (Aaron Bentley)
4576
 
 
4577
 
  BUG FIXES:
4578
 
 
4579
 
    * ``bzr missing --verbose`` was showing adds/removals in the wrong
4580
 
      direction. (John Arbash Meinel)
4581
 
 
4582
 
    * ``bzr annotate`` now defaults to showing dotted revnos for merged
4583
 
      revisions. It cuts them off at a depth of 12 characters, but you can
4584
 
      supply ``--long`` to see the full number. You can also use
4585
 
      ``--show-ids`` to display the original revision ids, rather than
4586
 
      revision numbers and committer names. (John Arbash Meinel, #75637)
4587
 
 
4588
 
    * bzr now supports Win32 UNC path (e.g. ``\HOST\path``. 
4589
 
      (Alexander Belchenko, #57869)
4590
 
 
4591
 
    * Win32-specific: output of cat, bundle and diff commands don't mangle
4592
 
      line-endings (Alexander Belchenko, #55276)
4593
 
 
4594
 
    * Replace broken fnmatch based ignore pattern matching with custom pattern
4595
 
      matcher.
4596
 
      (Kent Gibson, Jan Hudec #57637)
4597
 
 
4598
 
    * pycurl and urllib can detect short reads at different places. Update
4599
 
      the test suite to test more cases. Also detect http error code 416
4600
 
      which was raised for that specific bug. Also enhance the urllib
4601
 
      robustness by detecting invalid ranges (and pycurl's one by detecting
4602
 
      short reads during the initial GET). (Vincent Ladeuil, #73948)
4603
 
 
4604
 
    * The urllib connection sharing interacts badly with urllib2
4605
 
      proxy setting (the connections didn't go thru the proxy
4606
 
      anymore). Defining a proper ProxyHandler solves the
4607
 
      problem.  (Vincent Ladeuil, #74759)
4608
 
 
4609
 
    * Use urlutils to generate relative URLs, not osutils 
4610
 
      (Aaron Bentley, #76229)
4611
 
 
4612
 
    * ``bzr status`` in a readonly directory should work without giving
4613
 
      lots of errors. (John Arbash Meinel, #76299)
4614
 
 
4615
 
    * Mention the revisionspec topic for the revision option help.
4616
 
      (Wouter van Heyst, #31663)
4617
 
 
4618
 
    * Allow plugins import from zip archives.
4619
 
      (Alexander Belchenko, #68124)
4620
 
 
4621
 
 
4622
 
bzr 0.13  2006-12-05
4623
 
--------------------
4624
 
    
4625
 
  No changes from 0.13rc1
4626
 
    
4627
 
bzr 0.13rc1  2006-11-27
4628
 
-----------------------
4629
 
 
4630
 
  IMPROVEMENTS:
4631
 
 
4632
 
    * New command ``bzr remove-tree`` allows the removal of the working
4633
 
      tree from a branch.
4634
 
      (Daniel Silverstone)
4635
 
 
4636
 
    * urllib uses shared keep-alive connections, so http 
4637
 
      operations are substantially faster.
4638
 
      (Vincent Ladeuil, #53654)
4639
 
 
4640
 
    * ``bzr export`` allows an optional branch parameter, to export a bzr
4641
 
      tree from some other url. For example:
4642
 
      ``bzr export bzr.tar.gz http://bazaar-vcs.org/bzr/bzr.dev``
4643
 
      (Daniel Silverstone)
4644
 
 
4645
 
    * Added ``bzr help topics`` to the bzr help system. This gives a
4646
 
      location for general information, outside of a specific command.
4647
 
      This includes updates for ``bzr help revisionspec`` the first topic
4648
 
      included. (Goffredo Baroncelli, John Arbash Meinel, #42714)
4649
 
 
4650
 
    * WSGI-compatible HTTP smart server.  See ``doc/http_smart_server.txt``.
4651
 
      (Andrew Bennetts)
4652
 
 
4653
 
    * Knit files will now cache full texts only when the size of the
4654
 
      deltas is as large as the size of the fulltext. (Or after 200
4655
 
      deltas, whichever comes first). This has the most benefit on large
4656
 
      files with small changes, such as the inventory for a large project.
4657
 
      (eg For a project with 2500 files, and 7500 revisions, it changes
4658
 
      the size of inventory.knit from 11MB to 5.4MB) (John Arbash Meinel)
4659
 
 
4660
 
  INTERNALS:
4661
 
 
4662
 
    * New -D option given before the command line turns on debugging output
4663
 
      for particular areas.  -Derror shows tracebacks on all errors.
4664
 
      (Martin Pool)
4665
 
 
4666
 
    * Clean up ``bzr selftest --benchmark bundle`` to correct an import,
4667
 
      and remove benchmarks that take longer than 10min to run.
4668
 
      (John Arbash Meinel)
4669
 
 
4670
 
    * Use ``time.time()`` instead of ``time.clock()`` to decide on
4671
 
      progress throttling. Because ``time.clock()`` is actually CPU time,
4672
 
      so over a high-latency connection, too many updates get throttled.
4673
 
      (John Arbash Meinel)
4674
 
 
4675
 
    * ``MemoryTransport.list_dir()`` would strip the first character for
4676
 
      files or directories in root directory. (John Arbash Meinel)
4677
 
 
4678
 
    * New method ``get_branch_reference`` on 'BzrDir' allows the detection of 
4679
 
      branch references - which the smart server component needs.
4680
 
  
4681
 
    * New ``ChrootTransportDecorator``, accessible via the ``chroot+`` url
4682
 
      prefix.  It disallows any access to locations above a set URL.  (Andrew
4683
 
      Bennetts)
4684
 
 
4685
 
  BUG FIXES:
4686
 
 
4687
 
    * Now ``_KnitIndex`` properly decode revision ids when loading index data.
4688
 
      And optimize the knit index parsing code. 
4689
 
      (Dmitry Vasiliev, John Arbash Meinel)
4690
 
 
4691
 
    * ``bzrlib/bzrdir.py`` was directly referencing ``bzrlib.workingtree``,
4692
 
      without importing it. This prevented ``bzr upgrade`` from working
4693
 
      unless a plugin already imported ``bzrlib.workingtree``
4694
 
      (John Arbash Meinel, #70716)
4695
 
 
4696
 
    * Suppress the traceback on invalid URLs (Vincent Ladeuil, #70803).
4697
 
 
4698
 
    * Give nicer error message when an http server returns a 403
4699
 
      error code. (Vincent Ladeuil, #57644).
4700
 
 
4701
 
    * When a multi-range http GET request fails, try a single
4702
 
      range one. If it fails too, forget about ranges. Remember that until 
4703
 
      the death of the transport and propagates that to the clones.
4704
 
      (Vincent Ladeuil, #62276, #62029).
4705
 
 
4706
 
    * Handles user/passwords supplied in url from command
4707
 
      line (for the urllib implementation). Don't request already
4708
 
      known passwords (Vincent Ladeuil, #42383, #44647, #48527)
4709
 
 
4710
 
    * ``_KnitIndex.add_versions()`` dictionary compresses revision ids as they
4711
 
      are added. This fixes bug where fetching remote revisions records
4712
 
      them as full references rather than integers.
4713
 
      (John Arbash Meinel, #64789)
4714
 
 
4715
 
    * ``bzr ignore`` strips trailing slashes in patterns.
4716
 
      Also ``bzr ignore`` rejects absolute paths. (Kent Gibson, #4559)
4717
 
 
4718
 
    * ``bzr ignore`` takes multiple arguments. (Cheuksan Edward Wang, #29488)
4719
 
 
4720
 
    * mv correctly handles paths that traverse symlinks. 
4721
 
      (Aaron Bentley, #66964)
4722
 
 
4723
 
    * Give nicer looking error messages when failing to connect over ssh.
4724
 
      (John Arbash Meinel, #49172)
4725
 
 
4726
 
    * Pushing to a remote branch does not currently update the remote working
4727
 
      tree. After a remote push, ``bzr status`` and ``bzr diff`` on the remote
4728
 
      machine now show that the working tree is out of date.
4729
 
      (Cheuksan Edward Wang #48136)
4730
 
 
4731
 
    * Use patiencediff instead of difflib for determining deltas to insert
4732
 
      into knits. This avoids the O(N^3) behavior of difflib. Patience
4733
 
      diff should be O(N^2). (Cheuksan Edward Wang, #65714)
4734
 
 
4735
 
    * Running ``bzr log`` on nonexistent file gives an error instead of the
4736
 
      entire log history. (Cheuksan Edward Wang #50793)
4737
 
 
4738
 
    * ``bzr cat`` can look up contents of removed or renamed files. If the
4739
 
      pathname is ambiguous, i.e. the files in the old and new trees have
4740
 
      different id's, the default is the file in the new tree. The user can
4741
 
      use "--name-from-revision" to select the file in the old tree.
4742
 
      (Cheuksan Edward Wang, #30190)
4743
 
 
4744
 
  TESTING:
4745
 
 
4746
 
    * TestingHTTPRequestHandler really handles the Range header
4747
 
      (previously it was ignoring it and returning the whole file,).
4748
 
 
4749
 
bzr 0.12  2006-10-30
4750
 
--------------------
4751
 
 
4752
 
  INTERNALS:
4753
 
 
4754
 
    * Clean up ``bzr selftest --benchmark bundle`` to correct an import,
4755
 
      and remove benchmarks that take longer than 10min to run.
4756
 
      (John Arbash Meinel)
4757
 
  
4758
 
bzr 0.12rc1  2006-10-23
4759
 
-----------------------
4760
 
 
4761
 
  IMPROVEMENTS:
4762
 
 
4763
 
    * ``bzr log`` now shows dotted-decimal revision numbers for all revisions,
4764
 
      rather than just showing a decimal revision number for revisions on the
4765
 
      mainline. These revision numbers are not yet accepted as input into bzr
4766
 
      commands such as log, diff etc. (Robert Collins)
4767
 
 
4768
 
    * revisions can now be specified using dotted-decimal revision numbers.
4769
 
      For instance, ``bzr diff -r 1.2.1..1.2.3``. (Robert Collins)
4770
 
 
4771
 
    * ``bzr help commands`` output is now shorter (Aaron Bentley)
4772
 
 
4773
 
    * ``bzr`` now uses lazy importing to reduce the startup time. This has
4774
 
      a moderate effect on lots of actions, especially ones that have
4775
 
      little to do. For example ``bzr rocks`` time is down to 116ms from
4776
 
      283ms. (John Arbash Meinel)
4777
 
 
4778
 
    * New Registry class to provide name-to-object registry-like support,
4779
 
      for example for schemes where plugins can register new classes to
4780
 
      do certain tasks (e.g. log formatters). Also provides lazy registration
4781
 
      to allow modules to be loaded on request.
4782
 
      (John Arbash Meinel, Adeodato Simó)
4783
 
 
4784
 
  API INCOMPATABILITY:
4785
 
  
4786
 
    * LogFormatter subclasses show now expect the 'revno' parameter to 
4787
 
      show() to be a string rather than an int. (Robert Collins)
4788
 
 
4789
 
  INTERNALS:
4790
 
 
4791
 
    * ``TestCase.run_bzr``, ``run_bzr_captured``, and ``run_bzr_subprocess``
4792
 
      can take a ``working_dir='foo'`` parameter, which will change directory 
4793
 
      for the command. (John Arbash Meinel)
4794
 
 
4795
 
    * ``bzrlib.lazy_regex.lazy_compile`` can be used to create a proxy
4796
 
      around a regex, which defers compilation until first use. 
4797
 
      (John Arbash Meinel)
4798
 
 
4799
 
    * ``TestCase.run_bzr_subprocess`` defaults to supplying the
4800
 
      ``--no-plugins`` parameter to ensure test reproducability, and avoid
4801
 
      problems with system-wide installed plugins. (John Arbash Meinel)
4802
 
 
4803
 
    * Unique tree root ids are now supported. Newly created trees still
4804
 
      use the common root id for compatibility with bzr versions before 0.12.
4805
 
      (Aaron Bentley)
4806
 
 
4807
 
    * ``WorkingTree.set_root_id(None)`` is now deprecated. Please
4808
 
      pass in ``inventory.ROOT_ID`` if you want the default root id value.
4809
 
      (Robert Collins, John Arbash Meinel)
4810
 
 
4811
 
    * New method ``WorkingTree.flush()`` which will write the current memory
4812
 
      inventory out to disk. At the same time, ``read_working_inventory`` will
4813
 
      no longer trash the current tree inventory if it has been modified within
4814
 
      the current lock, and the tree will now ``flush()`` automatically on
4815
 
      ``unlock()``. ``WorkingTree.set_root_id()`` has been updated to take
4816
 
      advantage of this functionality. (Robert Collins, John Arbash Meinel)
4817
 
 
4818
 
    * ``bzrlib.tsort.merge_sorted`` now accepts ``generate_revnos``. This
4819
 
      parameter will cause it to add another column to its output, which
4820
 
      contains the dotted-decimal revno for each revision, as a tuple.
4821
 
      (Robert Collins)
4822
 
 
4823
 
    * ``LogFormatter.show_merge`` is deprecated in favour of
4824
 
      ``LogFormatter.show_merge_revno``. (Robert Collins)
4825
 
 
4826
 
  BUG FIXES:
4827
 
 
4828
 
    * Avoid circular imports by creating a deprecated function for
4829
 
      ``bzrlib.tree.RevisionTree``. Callers should have been using
4830
 
      ``bzrlib.revisontree.RevisionTree`` anyway. (John Arbash Meinel,
4831
 
      #63360, #66349)
4832
 
 
4833
 
    * Don't use ``socket.MSG_WAITALL`` as it doesn't exist on all
4834
 
      platforms. (Martin Pool, #66356)
4835
 
 
4836
 
    * Don't require ``Content-Type`` in range responses. Assume they are a
4837
 
      single range if ``Content-Type`` does not exist.
4838
 
      (John Arbash Meinel, #62473)
4839
 
 
4840
 
    * bzr branch/pull no longer complain about progress bar cleanup when
4841
 
      interrupted during fetch.  (Aaron Bentley, #54000)
4842
 
 
4843
 
    * ``WorkingTree.set_parent_trees()`` uses the trees to directly write
4844
 
      the basis inventory, rather than going through the repository. This
4845
 
      allows us to have 1 inventory read, and 2 inventory writes when
4846
 
      committing a new tree. (John Arbash Meinel)
4847
 
 
4848
 
    * When reverting, files that are not locally modified that do not exist
4849
 
      in the target are deleted, not just unversioned (Aaron Bentley)
4850
 
 
4851
 
    * When trying to acquire a lock, don't fail immediately. Instead, try
4852
 
      a few times (up to 1 hour) before timing out. Also, report why the
4853
 
      lock is unavailable (John Arbash Meinel, #43521, #49556)
4854
 
 
4855
 
    * Leave HttpTransportBase daughter classes decides how they
4856
 
      implement cloning. (Vincent Ladeuil, #61606)
4857
 
 
4858
 
    * diff3 does not indicate conflicts on clean merge. (Aaron Bentley)
4859
 
 
4860
 
    * If a commit fails, the commit message is stored in a file at the root of
4861
 
      the tree for later commit. (Cheuksan Edward Wang, Stefan Metzmacher,
4862
 
      #32054)
4863
 
 
4864
 
  TESTING:
4865
 
 
4866
 
    * New test base class TestCaseWithMemoryTransport offers memory-only
4867
 
      testing facilities: its not suitable for tests that need to mutate disk
4868
 
      state, but most tests should not need that and should be converted to
4869
 
      TestCaseWithMemoryTransport. (Robert Collins)
4870
 
 
4871
 
    * ``TestCase.make_branch_and_memory_tree`` now takes a format
4872
 
      option to set the BzrDir, Repository and Branch formats of the
4873
 
      created objects. (Robert Collins, John Arbash Meinel)
4874
 
 
4875
 
bzr 0.11  2006-10-02
4876
 
--------------------
4877
 
 
4878
 
    * Smart server transport test failures on windows fixed. (Lukáš Lalinský).
4879
 
 
4880
 
bzr 0.11rc2  2006-09-27
4881
 
-----------------------
4882
 
 
4883
 
  BUG FIXES:
4884
 
 
4885
 
    * Test suite hangs on windows fixed. (Andrew Bennets, Alexander Belchenko).
4886
 
    
4887
 
    * Commit performance regression fixed. (Aaron Bentley, Robert Collins, John
4888
 
      Arbash Meinel).
4889
 
 
4890
 
bzr 0.11rc1  2006-09-25
4891
 
-----------------------
4892
 
 
4893
 
  IMPROVEMENTS:
4894
 
 
4895
 
    * Knit files now wait to create their contents until the first data is
4896
 
      added. The old code used to create an empty .knit and a .kndx with just
4897
 
      the header. However, this caused a lot of extra round trips over sftp.
4898
 
      This can change the time for ``bzr push`` to create a new remote branch
4899
 
      from 160s down to 100s. This also affects ``bzr commit`` performance when
4900
 
      adding new files, ``bzr commit`` on a new kernel-like tree drops from 50s
4901
 
      down to 40s (John Arbash Meinel, #44692)
4902
 
 
4903
 
    * When an entire subtree has been deleted, commit will now report that
4904
 
      just the top of the subtree has been deleted, rather than reporting
4905
 
      all the individual items. (Robert Collins)
4906
 
 
4907
 
    * Commit performs one less XML parse. (Robert Collins)
4908
 
 
4909
 
    * ``bzr checkout`` now operates on readonly branches as well
4910
 
      as readwrite branches. This fixes bug #39542. (Robert Collins)
4911
 
 
4912
 
    * ``bzr bind`` no longer synchronises history with the master branch.
4913
 
      Binding should be followed by an update or push to synchronise the 
4914
 
      two branches. This is closely related to the fix for bug #39542.
4915
 
      (Robert Collins)
4916
 
 
4917
 
    * ``bzrlib.lazy_import.lazy_import`` function to create on-demand 
4918
 
      objects.  This allows all imports to stay at the global scope, but
4919
 
      modules will not actually be imported if they are not used.
4920
 
      (John Arbash Meinel)
4921
 
 
4922
 
    * Support ``bzr://`` and ``bzr+ssh://`` urls to work with the new RPC-based
4923
 
      transport which will be used with the upcoming high-performance smart
4924
 
      server. The new command ``bzr serve`` will invoke bzr in server mode,
4925
 
      which processes these requests. (Andrew Bennetts, Robert Collins, Martin
4926
 
      Pool)
4927
 
 
4928
 
    * New command ``bzr version-info`` which can be used to get a summary
4929
 
      of the current state of the tree. This is especially useful as part
4930
 
      of a build commands. See ``doc/version_info.txt`` for more information 
4931
 
      (John Arbash Meinel)
4932
 
 
4933
 
  BUG FIXES:
4934
 
 
4935
 
    * ``'bzr inventory [FILE...]'`` allows restricting the file list to a
4936
 
      specific set of files. (John Arbash Meinel, #3631)
4937
 
 
4938
 
    * Don't abort when annotating empty files (John Arbash Meinel, #56814)
4939
 
 
4940
 
    * Add ``Stanza.to_unicode()`` which can be passed to another Stanza
4941
 
      when nesting stanzas. Also, add ``read_stanza_unicode`` to handle when
4942
 
      reading a nested Stanza. (John Arbash Meinel)
4943
 
 
4944
 
    * Transform._set_mode() needs to stat the right file. 
4945
 
      (John Arbash Meinel, #56549)
4946
 
 
4947
 
    * Raise WeaveFormatError rather than StopIteration when trying to read
4948
 
      an empty Weave file. (John Arbash Meinel, #46871)
4949
 
 
4950
 
    * Don't access e.code for generic URLErrors, only HTTPErrors have .code.
4951
 
      (Vincent Ladeuil, #59835)
4952
 
 
4953
 
    * Handle boundary="" lines properly to allow access through a Squid proxy.
4954
 
      (John Arbash Meinel, #57723)
4955
 
 
4956
 
    * revert now removes newly-added directories (Aaron Bentley, #54172)
4957
 
 
4958
 
    * ``bzr upgrade sftp://`` shouldn't fail to upgrade v6 branches if there 
4959
 
      isn't a working tree. (David Allouche, #40679)
4960
 
 
4961
 
    * Give nicer error messages when a user supplies an invalid --revision
4962
 
      parameter. (John Arbash Meinel, #55420)
4963
 
 
4964
 
    * Handle when LANG is not recognized by python. Emit a warning, but
4965
 
      just revert to using 'ascii'. (John Arbash Meinel, #35392)
4966
 
 
4967
 
    * Don't use ``preexec_fn`` on win32, as it is not supported by subprocess.
4968
 
      (John Arbash Meinel)
4969
 
 
4970
 
    * Skip specific tests when the dependencies aren't met. This includes
4971
 
      some ``setup.py`` tests when ``python-dev`` is not available, and
4972
 
      some tests that depend on paramiko. (John Arbash Meinel, Mattheiu Moy)
4973
 
 
4974
 
    * Fallback to Paramiko properly, if no ``ssh`` executable exists on
4975
 
      the system. (Andrew Bennetts, John Arbash Meinel)
4976
 
 
4977
 
    * ``Branch.bind(other_branch)`` no longer takes a write lock on the
4978
 
      other branch, and will not push or pull between the two branches.
4979
 
      API users will need to perform a push or pull or update operation if they
4980
 
      require branch synchronisation to take place. (Robert Collins, #47344)
4981
 
 
4982
 
    * When creating a tarball or zipfile export, export unicode names as utf-8
4983
 
      paths. This may not work perfectly on all platforms, but has the best
4984
 
      chance of working in the common case. (John Arbash Meinel, #56816)
4985
 
 
4986
 
    * When committing, only files that exist in working tree or basis tree
4987
 
      may be specified (Aaron Bentley, #50793)
4988
 
 
4989
 
  PORTABILITY:
4990
 
 
4991
 
    * Fixes to run on Python 2.5 (Brian M. Carlson, Martin Pool, Marien Zwart)
4992
 
 
4993
 
  INTERNALS:
4994
 
 
4995
 
    * TestCaseInTempDir now creates a separate directory for HOME, rather
4996
 
      than having HOME set to the same location as the working directory.
4997
 
      (John Arbash Meinel)
4998
 
 
4999
 
    * ``run_bzr_subprocess()`` can take an optional ``env_changes={}`` parameter,
5000
 
      which will update os.environ inside the spawned child. It also can
5001
 
      take a ``universal_newlines=True``, which helps when checking the output
5002
 
      of the command. (John Arbash Meinel)
5003
 
 
5004
 
    * Refactor SFTP vendors to allow easier re-use when ssh is used. 
5005
 
      (Andrew Bennetts)
5006
 
 
5007
 
    * ``Transport.list_dir()`` and ``Transport.iter_files_recursive()`` should always
5008
 
      return urlescaped paths. This is now tested (there were bugs in a few
5009
 
      of the transports) (Andrew Bennetts, David Allouche, John Arbash Meinel)
5010
 
 
5011
 
    * New utility function ``symbol_versioning.deprecation_string``. Returns the
5012
 
      formatted string for a callable, deprecation format pair. (Robert Collins)
5013
 
 
5014
 
    * New TestCase helper applyDeprecated. This allows you to call a callable
5015
 
      which is deprecated without it spewing to the screen, just by supplying
5016
 
      the deprecation format string issued for it. (Robert Collins)
5017
 
 
5018
 
    * Transport.append and Transport.put have been deprecated in favor of
5019
 
      ``.append_bytes``, ``.append_file``, ``.put_bytes``, and
5020
 
      ``.put_file``. This removes the ambiguity in what type of object the
5021
 
      functions take.  ``Transport.non_atomic_put_{bytes,file}`` has also
5022
 
      been added. Which works similarly to ``Transport.append()`` except for
5023
 
      SFTP, it doesn't have a round trip when opening the file. Also, it
5024
 
      provides functionality for creating a parent directory when trying
5025
 
      to create a file, rather than raise NoSuchFile and forcing the
5026
 
      caller to repeat their request.
5027
 
      (John Arbash Meinel)
5028
 
 
5029
 
    * WorkingTree has a new api ``unversion`` which allow the unversioning of
5030
 
      entries by their file id. (Robert Collins)
5031
 
 
5032
 
    * ``WorkingTree.pending_merges`` is deprecated.  Please use the
5033
 
      ``get_parent_ids`` (introduced in 0.10) method instead. (Robert Collins)
5034
 
 
5035
 
    * WorkingTree has a new ``lock_tree_write`` method which locks the branch for
5036
 
      read rather than write. This is appropriate for actions which only need
5037
 
      the branch data for reference rather than mutation. A new decorator
5038
 
      ``needs_tree_write_lock`` is provided in the workingtree module. Like the
5039
 
      ``needs_read_lock`` and ``needs_write_lock`` decorators this allows static 
5040
 
      declaration of the locking requirements of a function to ensure that
5041
 
      a lock is taken out for casual scripts. (Robert Collins, #54107)
5042
 
 
5043
 
    * All WorkingTree methods which write to the tree, but not to the branch
5044
 
      have been converted to use ``needs_tree_write_lock`` rather than 
5045
 
      ``needs_write_lock``. Also converted is the revert, conflicts and tree
5046
 
      transform modules. This provides a modest performance improvement on 
5047
 
      metadir style trees, due to the reduce lock-acquisition, and a more
5048
 
      significant performance improvement on lightweight checkouts from 
5049
 
      remote branches, where trivial operations used to pay a significant 
5050
 
      penalty. It also provides the basis for allowing readonly checkouts.
5051
 
      (Robert Collins)
5052
 
 
5053
 
    * Special case importing the standard library 'copy' module. This shaves
5054
 
      off 40ms of startup time, while retaining compatibility. See:
5055
 
      ``bzrlib/inspect_for_copy.py`` for more details. (John Arbash Meinel)
5056
 
 
5057
 
    * WorkingTree has a new parent class MutableTree which represents the 
5058
 
      specialisations of Tree which are able to be altered. (Robert Collins)
5059
 
 
5060
 
    * New methods mkdir and ``put_file_bytes_non_atomic`` on MutableTree that
5061
 
      mutate the tree and its contents. (Robert Collins)
5062
 
 
5063
 
    * Transport behaviour at the root of the URL is now defined and tested.
5064
 
      (Andrew Bennetts, Robert Collins)
5065
 
 
5066
 
  TESTING:
5067
 
 
5068
 
    * New test helper classs MemoryTree. This is typically accessed via
5069
 
      ``self.make_branch_and_memory_tree()`` in test cases. (Robert Collins)
5070
 
      
5071
 
    * Add ``start_bzr_subprocess`` and ``stop_bzr_subprocess`` to allow test
5072
 
      code to continue running concurrently with a subprocess of bzr.
5073
 
      (Andrew Bennetts, Robert Collins)
5074
 
 
5075
 
    * Add a new method ``Transport.get_smart_client()``. This is provided to
5076
 
      allow upgrades to a richer interface than the VFS one provided by
5077
 
      Transport. (Andrew Bennetts, Martin Pool)
5078
 
 
5079
 
bzr 0.10  2006-08-29
5080
 
--------------------
5081
 
  
5082
 
  IMPROVEMENTS:
5083
 
    * 'merge' now takes --uncommitted, to apply uncommitted changes from a
5084
 
      tree.  (Aaron Bentley)
5085
 
  
5086
 
    * 'bzr add --file-ids-from' can be used to specify another path to use
5087
 
      for creating file ids, rather than generating all new ones. Internally,
5088
 
      the 'action' passed to ``smart_add_tree()`` can return ``file_ids`` that
5089
 
      will be used, rather than having bzrlib generate new ones.
5090
 
      (John Arbash Meinel, #55781)
5091
 
 
5092
 
    * ``bzr selftest --benchmark`` now allows a ``--cache-dir`` parameter.
5093
 
      This will cache some of the intermediate trees, and decrease the
5094
 
      setup time for benchmark tests. (John Arbash Meinel)
5095
 
 
5096
 
    * Inverse forms are provided for all boolean options.  For example,
5097
 
      --strict has --no-strict, --no-recurse has --recurse (Aaron Bentley)
5098
 
 
5099
 
    * Serialize out Inventories directly, rather than using ElementTree.
5100
 
      Writing out a kernel sized inventory drops from 2s down to ~350ms.
5101
 
      (Robert Collins, John Arbash Meinel)
5102
 
 
5103
 
  BUG FIXES:
5104
 
 
5105
 
    * Help diffutils 2.8.4 get along with binary tests (Marien Zwart: #57614)
5106
 
 
5107
 
    * Change LockDir so that if the lock directory doesn't exist when
5108
 
      ``lock_write()`` is called, an attempt will be made to create it.
5109
 
      (John Arbash Meinel, #56974)
5110
 
 
5111
 
    * ``bzr uncommit`` preserves pending merges. (John Arbash Meinel, #57660)
5112
 
 
5113
 
    * Active FTP transport now works as intended. (ghozzy, #56472)
5114
 
 
5115
 
    * Really fix mutter() so that it won't ever raise a UnicodeError.
5116
 
      It means it is possible for ~/.bzr.log to contain non UTF-8 characters.
5117
 
      But it is a debugging log, not a real user file.
5118
 
      (John Arbash Meinel, #56947, #53880)
5119
 
 
5120
 
    * Change Command handle to allow Unicode command and options.
5121
 
      At present we cannot register Unicode command names, so we will get
5122
 
      BzrCommandError('unknown command'), or BzrCommandError('unknown option')
5123
 
      But that is better than a UnicodeError + a traceback.
5124
 
      (John Arbash Meinel, #57123)
5125
 
 
5126
 
    * Handle TZ=UTC properly when reading/writing revisions.
5127
 
      (John Arbash Meinel, #55783, #56290)
5128
 
 
5129
 
    * Use ``GPG_TTY`` to allow gpg --cl to work with gpg-agent in a pipeline,
5130
 
      (passing text to sign in on stdin). (John Arbash Meinel, #54468)
5131
 
 
5132
 
    * External diff does the right thing for binaries even in foreign 
5133
 
      languages. (John Arbash Meinel, #56307)
5134
 
 
5135
 
    * Testament handles more cases when content is unicode. Specific bug was
5136
 
      in handling of revision properties.
5137
 
      (John Arbash Meinel, Holger Krekel, #54723)
5138
 
 
5139
 
    * The bzr selftest was failing on installed versions due to a bug in a new
5140
 
      test helper. (John Arbash Meinel, Robert Collins, #58057)
5141
 
 
5142
 
  INTERNALS:
5143
 
 
5144
 
    * ``bzrlib.cache_utf8`` contains ``encode()`` and ``decode()`` functions
5145
 
      which can be used to cache the conversion between utf8 and Unicode.
5146
 
      Especially helpful for some of the knit annotation code, which has to
5147
 
      convert revision ids to utf8 to annotate lines in storage.
5148
 
      (John Arbash Meinel)
5149
 
 
5150
 
    * ``setup.py`` now searches the filesystem to find all packages which
5151
 
      need to be installed. This should help make the life of packagers
5152
 
      easier. (John Arbash Meinel)
5153
 
 
5154
 
bzr 0.9.0  2006-08-11
5155
 
---------------------
5156
 
 
5157
 
  SURPRISES:
5158
 
 
5159
 
   * The hard-coded built-in ignore rules have been removed. There are
5160
 
     now two rulesets which are enforced. A user global one in 
5161
 
     ``~/.bazaar/ignore`` which will apply to every tree, and the tree
5162
 
     specific one '.bzrignore'.
5163
 
     ``~/.bazaar/ignore`` will be created if it does not exist, but with
5164
 
     a more conservative list than the old default.
5165
 
     This fixes bugs with default rules being enforced no matter what. 
5166
 
     The old list of ignore rules from bzr is available by
5167
 
     running 'bzr ignore --old-default-rules'.
5168
 
     (Robert Collins, Martin Pool, John Arbash Meinel)
5169
 
 
5170
 
   * 'branches.conf' has been changed to 'locations.conf', since it can apply
5171
 
     to more locations than just branch locations.
5172
 
     (Aaron Bentley)
5173
 
   
5174
 
  IMPROVEMENTS:
5175
 
 
5176
 
   * The revision specifier "revno:" is extended to accept the syntax
5177
 
     revno:N:branch. For example,
5178
 
     revno:42:http://bazaar-vcs.org/bzr/bzr.dev/ means revision 42 in
5179
 
     bzr.dev.  (Matthieu Moy)
5180
 
 
5181
 
   * Tests updates to ensure proper URL handling, UNICODE support, and
5182
 
     proper printing when the user's terminal encoding cannot display 
5183
 
     the path of a file that has been versioned.
5184
 
     ``bzr branch`` can take a target URL rather than only a local directory.
5185
 
     ``Branch.get_parent()/set_parent()`` now save a relative path if possible,
5186
 
     and normalize the parent based on root, allowing access across
5187
 
     different transports. (John Arbash Meinel, Wouter van Heyst, Martin Pool)
5188
 
     (Malone #48906, #42699, #40675, #5281, #3980, #36363, #43689,
5189
 
     #42517, #42514)
5190
 
 
5191
 
   * On Unix, detect terminal width using an ioctl not just $COLUMNS.
5192
 
     Use terminal width for single-line logs from ``bzr log --line`` and
5193
 
     pending-merge display.  (Robert Widhopf-Fenk, Gustavo Niemeyer)
5194
 
     (Malone #3507)
5195
 
 
5196
 
   * On Windows, detect terminal width using GetConsoleScreenBufferInfo.
5197
 
     (Alexander Belchenko)
5198
 
 
5199
 
   * Speedup improvement for 'date:'-revision search. (Guillaume Pinot).
5200
 
 
5201
 
   * Show the correct number of revisions pushed when pushing a new branch.
5202
 
     (Robert Collins).
5203
 
 
5204
 
   * 'bzr selftest' now shows a progress bar with the number of tests, and 
5205
 
     progress made. 'make check' shows tests in -v mode, to be more useful
5206
 
     for the PQM status window. (Robert Collins).
5207
 
     When using a progress bar, failed tests are printed out, rather than
5208
 
     being overwritten by the progress bar until the suite finishes.
5209
 
     (John Arbash Meinel)
5210
 
 
5211
 
   * 'bzr selftest --benchmark' will run a new benchmarking selftest.
5212
 
     'bzr selftest --benchmark --lsprof-timed' will use lsprofile to generate
5213
 
     profile data for the individual profiled calls, allowing for fine
5214
 
     grained analysis of performance.
5215
 
     (Robert Collins, Martin Pool).
5216
 
 
5217
 
   * 'bzr commit' shows a progress bar. This is useful for commits over sftp
5218
 
     where commit can take an appreciable time. (Robert Collins)
5219
 
 
5220
 
   * 'bzr add' is now less verbose in telling you what ignore globs were
5221
 
     matched by files being ignored. Instead it just tells you how many 
5222
 
     were ignored (because you might reasonably be expecting none to be
5223
 
     ignored). 'bzr add -v' is unchanged and will report every ignored
5224
 
     file. (Robert Collins).
5225
 
 
5226
 
   * ftp now has a test server if medusa is installed. As part of testing,
5227
 
     ftp support has been improved, including support for supplying a
5228
 
     non-standard port. (John Arbash Meinel).
5229
 
 
5230
 
   * 'bzr log --line' shows the revision number, and uses only the
5231
 
     first line of the log message (#5162, Alexander Belchenko;
5232
 
     Matthieu Moy)
5233
 
 
5234
 
   * 'bzr status' has had the --all option removed. The 'bzr ls' command
5235
 
     should be used to retrieve all versioned files. (Robert Collins)
5236
 
 
5237
 
   * 'bzr bundle OTHER/BRANCH' will create a bundle which can be sent
5238
 
     over email, and applied on the other end, while maintaining ancestry.
5239
 
     This bundle can be applied with either 'bzr merge' or 'bzr pull',
5240
 
     the same way you would apply another branch.
5241
 
     (John Arbash Meinel, Aaron Bentley)
5242
 
  
5243
 
   * 'bzr whoami' can now be used to set your identity from the command line,
5244
 
     for a branch or globally.  (Robey Pointer)
5245
 
 
5246
 
   * 'bzr checkout' now aliased to 'bzr co', and 'bzr annotate' to 'bzr ann'.
5247
 
     (Michael Ellerman)
5248
 
 
5249
 
   * 'bzr revert DIRECTORY' now reverts the contents of the directory as well.
5250
 
     (Aaron Bentley)
5251
 
 
5252
 
   * 'bzr get sftp://foo' gives a better error when paramiko is not present.
5253
 
     Also updates things like 'http+pycurl://' if pycurl is not present.
5254
 
     (John Arbash Meinel) (Malone #47821, #52204)
5255
 
 
5256
 
   * New env variable ``BZR_PROGRESS_BAR``, sets the default progress bar type.
5257
 
     Can be set to 'none' or 'dummy' to disable the progress bar, 'dots' or 
5258
 
     'tty' to create the respective type. (John Arbash Meinel, #42197, #51107)
5259
 
 
5260
 
   * Improve the help text for 'bzr diff' to explain what various options do.
5261
 
     (John Arbash Meinel, #6391)
5262
 
 
5263
 
   * 'bzr uncommit -r 10' now uncommits revisions 11.. rather than uncommitting
5264
 
     revision 10. This makes -r10 more in line with what other commands do.
5265
 
     'bzr uncommit' also now saves the pending merges of the revisions that
5266
 
     were removed. So it is safe to uncommit after a merge, fix something,
5267
 
     and commit again. (John Arbash Meinel, #32526, #31426)
5268
 
 
5269
 
   * 'bzr init' now also works on remote locations.
5270
 
     (Wouter van Heyst, #48904)
5271
 
 
5272
 
   * HTTP support has been updated. When using pycurl we now support 
5273
 
     connection keep-alive, which reduces dns requests and round trips.
5274
 
     And for both urllib and pycurl we support multi-range requests, 
5275
 
     which decreases the number of round-trips. Performance results for
5276
 
     ``bzr branch http://bazaar-vcs.org/bzr/bzr.dev/`` indicate
5277
 
     http branching is now 2-3x faster, and ``bzr pull`` in an existing 
5278
 
     branch is as much as 4x faster.
5279
 
     (Michael Ellerman, Johan Rydberg, John Arbash Meinel, #46768)
5280
 
 
5281
 
   * Performance improvements for sftp. Branching and pulling are now up to
5282
 
     2x faster. Utilize paramiko.readv() support for async requests if it
5283
 
     is available (paramiko > 1.6) (John Arbash Meinel)
5284
 
 
5285
 
  BUG FIXES:
5286
 
 
5287
 
    * Fix shadowed definition of TestLocationConfig that caused some 
5288
 
      tests not to run.
5289
 
      (Erik Bågfors, Michael Ellerman, Martin Pool, #32587)
5290
 
 
5291
 
    * Fix unnecessary requirement of sign-my-commits that it be run from
5292
 
      a working directory.  (Martin Pool, Robert Collins)
5293
 
 
5294
 
    * 'bzr push location' will only remember the push location if it succeeds
5295
 
      in connecting to the remote location. (John Arbash Meinel, #49742)
5296
 
 
5297
 
    * 'bzr revert' no longer toggles the executable bit on win32
5298
 
      (John Arbash Meinel, #45010)
5299
 
 
5300
 
    * Handle broken pipe under win32 correctly. (John Arbash Meinel)
5301
 
    
5302
 
    * sftp tests now work correctly on win32 if you have a newer paramiko
5303
 
      (John Arbash Meinel)
5304
 
 
5305
 
    * Cleanup win32 test suite, and general cleanup of places where
5306
 
      file handles were being held open. (John Arbash Meinel)
5307
 
 
5308
 
    * When specifying filenames for 'diff -r x..y', the name of the file in the
5309
 
      working directory can be used, even if its name is different in both x
5310
 
      and y.
5311
 
 
5312
 
    * File-ids containing single- or double-quotes are handled correctly by
5313
 
      push. (Aaron Bentley, #52227)
5314
 
 
5315
 
    * Normalize unicode filenames to ensure cross-platform consistency.
5316
 
      (John Arbash Meinel, #43689)
5317
 
 
5318
 
    * The argument parser can now handle '-' as an argument. Currently
5319
 
      no code interprets it specially (it is mostly handled as a file named 
5320
 
      '-'). But plugins, and future operations can use it.
5321
 
      (John Arbash meinel, #50984)
5322
 
 
5323
 
    * Bundles can properly read binary files with a plain '\r' in them.
5324
 
      (John Arbash Meinel, #51927)
5325
 
 
5326
 
    * Tuning ``iter_entries()`` to be more efficient (John Arbash Meinel, #5444)
5327
 
 
5328
 
    * Lots of win32 fixes (the test suite passes again).
5329
 
      (John Arbash Meinel, #50155)
5330
 
 
5331
 
    * Handle openbsd returning None for sys.getfilesystemencoding() (#41183) 
5332
 
 
5333
 
    * Support ftp APPE (append) to allow Knits to be used over ftp (#42592)
5334
 
 
5335
 
    * Removals are only committed if they match the filespec (or if there is
5336
 
      no filespec).  (#46635, Aaron Bentley)
5337
 
 
5338
 
    * smart-add recurses through all supplied directories 
5339
 
      (John Arbash Meinel, #52578)
5340
 
 
5341
 
    * Make the bundle reader extra lines before and after the bundle text.
5342
 
      This allows you to parse an email with the bundle inline.
5343
 
      (John Arbash Meinel, #49182)
5344
 
 
5345
 
    * Change the file id generator to squash a little bit more. Helps when
5346
 
      working with long filenames on windows. (Also helps for unicode filenames
5347
 
      not generating hidden files). (John Arbash Meinel, #43801)
5348
 
 
5349
 
    * Restore terminal mode on C-c while reading sftp password.  (#48923, 
5350
 
      Nicholas Allen, Martin Pool)
5351
 
 
5352
 
    * Timestamps are rounded to 1ms, and revision entries can be recreated
5353
 
      exactly. (John Arbash Meinel, Jamie Wilkinson, #40693)
5354
 
 
5355
 
    * Branch.base has changed to a URL, but ~/.bazaar/locations.conf should
5356
 
      use local paths, since it is user visible (John Arbash Meinel, #53653)
5357
 
 
5358
 
    * ``bzr status foo`` when foo was unversioned used to cause a full delta
5359
 
      to be generated (John Arbash Meinel, #53638)
5360
 
 
5361
 
    * When reading revision properties, an empty value should be considered
5362
 
      the empty string, not None (John Arbash Meinel, #47782)
5363
 
 
5364
 
    * ``bzr diff --diff-options`` can now handle binary files being changed.
5365
 
      Also, the output is consistent when --diff-options is not supplied.
5366
 
      (John Arbash Meinel, #54651, #52930)
5367
 
 
5368
 
    * Use the right suffixes for loading plugins (John Arbash Meinel, #51810)
5369
 
 
5370
 
    * Fix ``Branch.get_parent()`` to handle the case when the parent is not 
5371
 
      accessible (John Arbash Meinel, #52976)
5372
 
 
5373
 
  INTERNALS:
5374
 
 
5375
 
    * Combine the ignore rules into a single regex rather than looping over
5376
 
      them to reduce the threshold where  N^2 behaviour occurs in operations
5377
 
      like status. (Jan Hudec, Robert Collins).
5378
 
 
5379
 
    * Appending to ``bzrlib.DEFAULT_IGNORE`` is now deprecated. Instead, use
5380
 
      one of the add functions in bzrlib.ignores. (John Arbash Meinel)
5381
 
 
5382
 
    * 'bzr push' should only push the ancestry of the current revision, not
5383
 
      all of the history in the repository. This is especially important for
5384
 
      shared repositories. (John Arbash Meinel)
5385
 
 
5386
 
    * ``bzrlib.delta.compare_trees`` now iterates in alphabetically sorted order,
5387
 
      rather than randomly walking the inventories. (John Arbash Meinel)
5388
 
 
5389
 
    * Doctests are now run in temporary directories which are cleaned up when
5390
 
      they finish, rather than using special ScratchDir/ScratchBranch objects.
5391
 
      (Martin Pool)
5392
 
 
5393
 
    * Split ``check`` into separate methods on the branch and on the repository,
5394
 
      so that it can be specialized in ways that are useful or efficient for
5395
 
      different formats.  (Martin Pool, Robert Collins)
5396
 
 
5397
 
    * Deprecate ``Repository.all_revision_ids``; most methods don't really need
5398
 
      the global revision graph but only that part leading up to a particular
5399
 
      revision.  (Martin Pool, Robert Collins)
5400
 
 
5401
 
    * Add a BzrDirFormat ``control_formats`` list which allows for control formats
5402
 
      that do not use '.bzr' to store their data - i.e. '.svn', '.hg' etc.
5403
 
      (Robert Collins, Jelmer Vernooij).
5404
 
 
5405
 
    * ``bzrlib.diff.external_diff`` can be redirected to any file-like object.
5406
 
      Uses subprocess instead of spawnvp.
5407
 
      (James Henstridge, John Arbash Meinel, #4047, #48914)
5408
 
 
5409
 
    * New command line option '--profile-imports', which will install a custom
5410
 
      importer to log time to import modules and regex compilation time to 
5411
 
      sys.stderr (John Arbash Meinel)
5412
 
 
5413
 
    * 'EmptyTree' is now deprecated, please use ``repository.revision_tree(None)``
5414
 
      instead. (Robert Collins)
5415
 
 
5416
 
    * "RevisionTree" is now in bzrlib/revisiontree.py. (Robert Collins)
5417
 
 
5418
 
bzr 0.8.2  2006-05-17
5419
 
---------------------
5420
 
  
5421
 
  BUG FIXES:
5422
 
   
5423
 
    * setup.py failed to install launchpad plugin.  (Martin Pool)
5424
 
 
5425
 
bzr 0.8.1  2006-05-16
5426
 
---------------------
5427
 
 
5428
 
  BUG FIXES:
5429
 
 
5430
 
    * Fix failure to commit a merge in a checkout.  (Martin Pool, 
5431
 
      Robert Collins, Erik Bågfors, #43959)
5432
 
 
5433
 
    * Nicer messages from 'commit' in the case of renames, and correct
5434
 
      messages when a merge has occured. (Robert Collins, Martin Pool)
5435
 
 
5436
 
    * Separate functionality from assert statements as they are skipped in
5437
 
      optimized mode of python. Add the same check to pending merges.
5438
 
      (Olaf Conradi, #44443)
5439
 
 
5440
 
  CHANGES:
5441
 
 
5442
 
    * Do not show the None revision in output of bzr ancestry. (Olaf Conradi)
5443
 
 
5444
 
    * Add info on standalone branches without a working tree.
5445
 
      (Olaf Conradi, #44155)
5446
 
 
5447
 
    * Fix bug in knits when raising InvalidRevisionId. (Olaf Conradi, #44284)
5448
 
 
5449
 
  CHANGES:
5450
 
 
5451
 
    * Make editor invocation comply with Debian Policy. First check
5452
 
      environment variables VISUAL and EDITOR, then try editor from
5453
 
      alternatives system. If that all fails, fall back to the pre-defined
5454
 
      list of editors. (Olaf Conradi, #42904)
5455
 
 
5456
 
  NEW FEATURES:
5457
 
 
5458
 
    * New 'register-branch' command registers a public branch into 
5459
 
      Launchpad.net, where it can be associated with bugs, etc.
5460
 
      (Martin Pool, Bjorn Tillenius, Robert Collins)
5461
 
 
5462
 
  INTERNALS:
5463
 
 
5464
 
    * New public api in InventoryEntry - ``describe_change(old, new)`` which
5465
 
      provides a human description of the changes between two old and
5466
 
      new. (Robert Collins, Martin Pool)
5467
 
 
5468
 
  TESTING:
5469
 
 
5470
 
    * Fix test case for bzr info in upgrading a standalone branch to metadir,
5471
 
      uses bzrlib api now. (Olaf Conradi)
5472
 
 
5473
 
bzr 0.8  2006-05-08
5474
 
-------------------
5475
 
 
5476
 
  NOTES WHEN UPGRADING:
5477
 
 
5478
 
    Release 0.8 of bzr introduces a new format for history storage, called
5479
 
    'knit', as an evolution of to the 'weave' format used in 0.7.  Local 
5480
 
    and remote operations are faster using knits than weaves.  Several
5481
 
    operations including 'init', 'init-repo', and 'upgrade' take a 
5482
 
    --format option that controls this.  Branching from an existing branch
5483
 
    will keep the same format.
5484
 
 
5485
 
    It is possible to merge, pull and push between branches of different
5486
 
    formats but this is slower than moving data between homogenous
5487
 
    branches.  It is therefore recommended (but not required) that you
5488
 
    upgrade all branches for a project at the same time.  Information on
5489
 
    formats is shown by 'bzr info'.
5490
 
 
5491
 
    bzr 0.8 now allows creation of 'repositories', which hold the history 
5492
 
    of files and revisions for several branches.  Previously bzr kept all
5493
 
    the history for a branch within the .bzr directory at the root of the
5494
 
    branch, and this is still the default.  To create a repository, use
5495
 
    the new 'bzr init-repo' command.  Branches exist as directories under
5496
 
    the repository and contain just a small amount of information
5497
 
    indicating the current revision of the branch.
5498
 
 
5499
 
    bzr 0.8 also supports 'checkouts', which are similar to in cvs and
5500
 
    subversion.  Checkouts are associated with a branch (optionally in a
5501
 
    repository), which contains all the historical information.  The
5502
 
    result is that a checkout can be deleted without losing any
5503
 
    already-committed revisions.  A new 'update' command is also available. 
5504
 
 
5505
 
    Repositories and checkouts are not supported with the 0.7 storage
5506
 
    format.  To use them you must upgrad to either knits, or to the
5507
 
    'metaweave' format, which uses weaves but changes the .bzr directory
5508
 
    arrangement.
5509
 
    
5510
 
 
5511
 
  IMPROVEMENTS:
5512
 
 
5513
 
    * Sftp paths can now be relative, or local, according to the lftp
5514
 
      convention. Paths now take the form::
5515
 
 
5516
 
          sftp://user:pass@host:port/~/relative/path
5517
 
          or
5518
 
          sftp://user:pass@host:port/absolute/path
5519
 
 
5520
 
    * The FTP transport now tries to reconnect after a temporary
5521
 
      failure. ftp put is made atomic. (Matthieu Moy)
5522
 
 
5523
 
    * The FTP transport now maintains a pool of connections, and
5524
 
      reuses them to avoid multiple connections to the same host (like
5525
 
      sftp did). (Daniel Silverstone)
5526
 
 
5527
 
    * The ``bzr_man.py`` file has been removed. To create the man page now,
5528
 
      use ``./generate_docs.py man``. The new program can also create other files.
5529
 
      Run ``python generate_docs.py --help`` for usage information.
5530
 
      (Hans Ulrich Niedermann & James Blackwell).
5531
 
 
5532
 
    * Man Page now gives full help (James Blackwell).
5533
 
      Help also updated to reflect user config now being stored in .bazaar
5534
 
      (Hans Ulrich Niedermann)
5535
 
 
5536
 
    * It's now possible to set aliases in bazaar.conf (Erik Bågfors)
5537
 
 
5538
 
    * Pull now accepts a --revision argument (Erik Bågfors)
5539
 
 
5540
 
    * ``bzr re-sign`` now allows multiple revisions to be supplied on the command
5541
 
      line. You can now use the following command to sign all of your old
5542
 
      commits::
5543
 
 
5544
 
        find .bzr/revision-store// -name my@email-* \
5545
 
          | sed 's/.*\/\/..\///' \
5546
 
          | xargs bzr re-sign
5547
 
 
5548
 
    * Upgrade can now upgrade over the network. (Robert Collins)
5549
 
 
5550
 
    * Two new commands 'bzr checkout' and 'bzr update' allow for CVS/SVN-alike
5551
 
      behaviour.  By default they will cache history in the checkout, but
5552
 
      with --lightweight almost all data is kept in the master branch.
5553
 
      (Robert Collins)
5554
 
 
5555
 
    * 'revert' unversions newly-versioned files, instead of deleting them.
5556
 
 
5557
 
    * 'merge' is more robust.  Conflict messages have changed.
5558
 
 
5559
 
    * 'merge' and 'revert' no longer clobber existing files that end in '~' or
5560
 
      '.moved'.
5561
 
 
5562
 
    * Default log format can be set in configuration and plugins can register
5563
 
      their own formatters. (Erik Bågfors)
5564
 
 
5565
 
    * New 'reconcile' command will check branch consistency and repair indexes
5566
 
      that can become out of sync in pre 0.8 formats. (Robert Collins,
5567
 
      Daniel Silverstone)
5568
 
 
5569
 
    * New 'bzr init --format' and 'bzr upgrade --format' option to control 
5570
 
      what storage format is created or produced.  (Robert Collins, 
5571
 
      Martin Pool)
5572
 
 
5573
 
    * Add parent location to 'bzr info', if there is one.  (Olaf Conradi)
5574
 
 
5575
 
    * New developer commands 'weave-list' and 'weave-join'.  (Martin Pool)
5576
 
 
5577
 
    * New 'init-repository' command, plus support for repositories in 'init'
5578
 
      and 'branch' (Aaron Bentley, Erik Bågfors, Robert Collins)
5579
 
 
5580
 
    * Improve output of 'info' command. Show all relevant locations related to
5581
 
      working tree, branch and repository. Use kibibytes for binary quantities.
5582
 
      Fix off-by-one error in missing revisions of working tree.  Make 'info'
5583
 
      work on branches, repositories and remote locations.  Show locations
5584
 
      relative to the shared repository, if applicable.  Show locking status
5585
 
      of locations.  (Olaf Conradi)
5586
 
 
5587
 
    * Diff and merge now safely handle binary files. (Aaron Bentley)
5588
 
 
5589
 
    * 'pull' and 'push' now normalise the revision history, so that any two
5590
 
      branches with the same tip revision will have the same output from 'log'.
5591
 
      (Robert Collins)
5592
 
 
5593
 
    * 'merge' accepts --remember option to store parent location, like 'push'
5594
 
      and 'pull'. (Olaf Conradi)
5595
 
 
5596
 
    * bzr status and diff when files given as arguments do not exist
5597
 
      in the relevant trees.  (Martin Pool, #3619)
5598
 
 
5599
 
    * Add '.hg' to the default ignore list.  (Martin Pool)
5600
 
 
5601
 
    * 'knit' is now the default disk format. This improves disk performance and
5602
 
      utilization, increases incremental pull performance, robustness with SFTP
5603
 
      and allows checkouts over SFTP to perform acceptably. 
5604
 
      The initial Knit code was contributed by Johan Rydberg based on a
5605
 
      specification by Martin Pool.
5606
 
      (Robert Collins, Aaron Bentley, Johan Rydberg, Martin Pool).
5607
 
 
5608
 
    * New tool to generate all-in-one html version of the manual.  (Alexander
5609
 
      Belchenko)
5610
 
 
5611
 
    * Hitting CTRL-C while doing an SFTP push will no longer cause stale locks
5612
 
      to be left in the SFTP repository. (Robert Collins, Martin Pool).
5613
 
 
5614
 
    * New option 'diff --prefix' to control how files are named in diff
5615
 
      output, with shortcuts '-p0' and '-p1' corresponding to the options for 
5616
 
      GNU patch.  (Alexander Belchenko, Goffredo Baroncelli, Martin Pool)
5617
 
 
5618
 
    * Add --revision option to 'annotate' command.  (Olaf Conradi)
5619
 
 
5620
 
    * If bzr shows an unexpected revision-history after pulling (perhaps due
5621
 
      to a reweave) it can now be corrected by 'bzr reconcile'.
5622
 
      (Robert Collins)
5623
 
 
5624
 
  CHANGES:
5625
 
 
5626
 
    * Commit is now verbose by default, and shows changed filenames and the 
5627
 
      new revision number.  (Robert Collins, Martin Pool)
5628
 
 
5629
 
    * Unify 'mv', 'move', 'rename'.  (Matthew Fuller, #5379)
5630
 
 
5631
 
    * 'bzr -h' shows help.  (Martin Pool, Ian Bicking, #35940)
5632
 
 
5633
 
    * Make 'pull' and 'push' remember location on failure using --remember.
5634
 
      (Olaf Conradi)
5635
 
 
5636
 
    * For compatibility, make old format for using weaves inside metadir
5637
 
      available as 'metaweave' format.  Rename format 'metadir' to 'default'.
5638
 
      Clean up help for option --format in commands 'init', 'init-repo' and
5639
 
      'upgrade'.  (Olaf Conradi)
5640
 
 
5641
 
  INTERNALS:
5642
 
  
5643
 
    * The internal storage of history, and logical branch identity have now
5644
 
      been split into Branch, and Repository. The common locking and file 
5645
 
      management routines are now in bzrlib.lockablefiles. 
5646
 
      (Aaron Bentley, Robert Collins, Martin Pool)
5647
 
 
5648
 
    * Transports can now raise DependencyNotPresent if they need a library
5649
 
      which is not installed, and then another implementation will be 
5650
 
      tried.  (Martin Pool)
5651
 
 
5652
 
    * Remove obsolete (and no-op) `decode` parameter to `Transport.get`.  
5653
 
      (Martin Pool)
5654
 
 
5655
 
    * Using Tree Transform for merge, revert, tree-building
5656
 
 
5657
 
    * WorkingTree.create, Branch.create, ``WorkingTree.create_standalone``,
5658
 
      Branch.initialize are now deprecated. Please see ``BzrDir.create_*`` for
5659
 
      replacement API's. (Robert Collins)
5660
 
 
5661
 
    * New BzrDir class represents the .bzr control directory and manages
5662
 
      formatting issues. (Robert Collins)
5663
 
 
5664
 
    * New repository.InterRepository class encapsulates Repository to 
5665
 
      Repository actions and allows for clean selection of optimised code
5666
 
      paths. (Robert Collins)
5667
 
 
5668
 
    * ``bzrlib.fetch.fetch`` and ``bzrlib.fetch.greedy_fetch`` are now
5669
 
      deprecated, please use ``branch.fetch`` or ``repository.fetch``
5670
 
      depending on your needs. (Robert Collins)
5671
 
 
5672
 
    * deprecated methods now have a ``is_deprecated`` flag on them that can
5673
 
      be checked, if you need to determine whether a given callable is 
5674
 
      deprecated at runtime. (Robert Collins)
5675
 
 
5676
 
    * Progress bars are now nested - see
5677
 
      ``bzrlib.ui.ui_factory.nested_progress_bar``.
5678
 
      (Robert Collins, Robey Pointer)
5679
 
 
5680
 
    * New API call ``get_format_description()`` for each type of format.
5681
 
      (Olaf Conradi)
5682
 
 
5683
 
    * Changed ``branch.set_parent()`` to accept None to remove parent.
5684
 
      (Olaf Conradi)
5685
 
 
5686
 
    * Deprecated BzrError AmbiguousBase.  (Olaf Conradi)
5687
 
 
5688
 
    * WorkingTree.branch is now a read only property.  (Robert Collins)
5689
 
 
5690
 
    * bzrlib.ui.text.TextUIFactory now accepts a ``bar_type`` parameter which
5691
 
      can be None or a factory that will create a progress bar. This is
5692
 
      useful for testing or for overriding the bzrlib.progress heuristic.
5693
 
      (Robert Collins)
5694
 
 
5695
 
    * New API method ``get_physical_lock_status()`` to query locks present on a
5696
 
      transport.  (Olaf Conradi)
5697
 
 
5698
 
    * Repository.reconcile now takes a thorough keyword parameter to allow
5699
 
      requesting an indepth reconciliation, rather than just a data-loss 
5700
 
      check. (Robert Collins)
5701
 
 
5702
 
    * ``bzrlib.ui.ui_factory protocol`` now supports ``get_boolean`` to prompt
5703
 
      the user for yes/no style input. (Robert Collins)
5704
 
 
5705
 
  TESTING:
5706
 
 
5707
 
    * SFTP tests now shortcut the SSH negotiation, reducing test overhead
5708
 
      for testing SFTP protocol support. (Robey Pointer)
5709
 
 
5710
 
    * Branch formats are now tested once per implementation (see ``bzrlib.
5711
 
      tests.branch_implementations``. This is analagous to the transport
5712
 
      interface tests, and has been followed up with working tree,
5713
 
      repository and BzrDir tests. (Robert Collins)
5714
 
 
5715
 
    * New test base class TestCaseWithTransport provides a transport aware
5716
 
      test environment, useful for testing any transport-interface using
5717
 
      code. The test suite option --transport controls the transport used
5718
 
      by this class (when its not being used as part of implementation
5719
 
      contract testing). (Robert Collins)
5720
 
 
5721
 
    * Close logging handler on disabling the test log. This will remove the
5722
 
      handler from the internal list inside python's logging module,
5723
 
      preventing shutdown from closing it twice.  (Olaf Conradi)
5724
 
 
5725
 
    * Move test case for uncommit to blackbox tests.  (Olaf Conradi)
5726
 
 
5727
 
    * ``run_bzr`` and ``run_bzr_captured`` now accept a 'stdin="foo"'
5728
 
      parameter which will provide String("foo") to the command as its stdin.
5729
 
 
5730
 
bzr 0.7 2006-01-09
5731
 
------------------
5732
 
 
5733
 
  CHANGES:
5734
 
 
5735
 
    * .bzrignore is excluded from exports, on the grounds that it's a bzr 
5736
 
      internal-use file and may not be wanted.  (Jamie Wilkinson)
5737
 
 
5738
 
    * The "bzr directories" command were removed in favor of the new
5739
 
      --kind option to the "bzr inventory" command.  To list all 
5740
 
      versioned directories, now use "bzr inventory --kind directory".  
5741
 
      (Johan Rydberg)
5742
 
 
5743
 
    * Under Windows configuration directory is now ``%APPDATA%\bazaar\2.0``
5744
 
      by default. (John Arbash Meinel)
5745
 
 
5746
 
    * The parent of Bzr configuration directory can be set by ``BZR_HOME``
5747
 
      environment variable. Now the path for it is searched in ``BZR_HOME``,
5748
 
      then in HOME. Under Windows the order is: ``BZR_HOME``, ``APPDATA``
5749
 
      (usually points to ``C:\Documents and Settings\User Name\Application Data``),
5750
 
      ``HOME``. (John Arbash Meinel)
5751
 
 
5752
 
    * Plugins with the same name in different directories in the bzr plugin
5753
 
      path are no longer loaded: only the first successfully loaded one is
5754
 
      used. (Robert Collins)
5755
 
 
5756
 
    * Use systems' external ssh command to open connections if possible.  
5757
 
      This gives better integration with user settings such as ProxyCommand.
5758
 
      (James Henstridge)
5759
 
 
5760
 
    * Permissions on files underneath .bzr/ are inherited from the .bzr 
5761
 
      directory. So for a shared repository, simply doing 'chmod -R g+w .bzr/'
5762
 
      will mean that future file will be created with group write permissions.
5763
 
 
5764
 
    * configure.in and config.guess are no longer in the builtin default 
5765
 
      ignore list.
5766
 
 
5767
 
    * '.sw[nop]' pattern ignored, to ignore vim swap files for nameless
5768
 
      files.  (John Arbash Meinel, Martin Pool)
5769
 
 
5770
 
  IMPROVEMENTS:
5771
 
 
5772
 
    * "bzr INIT dir" now initializes the specified directory, and creates 
5773
 
      it if it does not exist.  (John Arbash Meinel)
5774
 
 
5775
 
    * New remerge command (Aaron Bentley)
5776
 
 
5777
 
    * Better zsh completion script.  (Steve Borho)
5778
 
 
5779
 
    * 'bzr diff' now returns 1 when there are changes in the working 
5780
 
      tree. (Robert Collins)
5781
 
 
5782
 
    * 'bzr push' now exists and can push changes to a remote location. 
5783
 
      This uses the transport infrastructure, and can store the remote
5784
 
      location in the ~/.bazaar/branches.conf configuration file.
5785
 
      (Robert Collins)
5786
 
 
5787
 
    * Test directories are only kept if the test fails and the user requests
5788
 
      that they be kept.
5789
 
 
5790
 
    * Tweaks to short log printing
5791
 
 
5792
 
    * Added branch nicks, new nick command, printing them in log output. 
5793
 
      (Aaron Bentley)
5794
 
 
5795
 
    * If ``$BZR_PDB`` is set, pop into the debugger when an uncaught exception 
5796
 
      occurs.  (Martin Pool)
5797
 
 
5798
 
    * Accept 'bzr resolved' (an alias for 'bzr resolve'), as this is
5799
 
      the same as Subversion.  (Martin Pool)
5800
 
 
5801
 
    * New ftp transport support (on ftplib), for ftp:// and aftp:// 
5802
 
      URLs.  (Daniel Silverstone)
5803
 
 
5804
 
    * Commit editor temporary files now start with ``bzr_log.``, to allow 
5805
 
      text editors to match the file name and set up appropriate modes or 
5806
 
      settings.  (Magnus Therning)
5807
 
 
5808
 
    * Improved performance when integrating changes from a remote weave.  
5809
 
      (Goffredo Baroncelli)
5810
 
 
5811
 
    * Sftp will attempt to cache the connection, so it is more likely that
5812
 
      a connection will be reused, rather than requiring multiple password
5813
 
      requests.
5814
 
 
5815
 
    * bzr revno now takes an optional argument indicating the branch whose
5816
 
      revno should be printed.  (Michael Ellerman)
5817
 
 
5818
 
    * bzr cat defaults to printing the last version of the file.  
5819
 
      (Matthieu Moy, #3632)
5820
 
 
5821
 
    * New global option 'bzr --lsprof COMMAND' runs bzr under the lsprof 
5822
 
      profiler.  (Denys Duchier)
5823
 
 
5824
 
    * Faster commits by reading only the headers of affected weave files. 
5825
 
      (Denys Duchier)
5826
 
 
5827
 
    * 'bzr add' now takes a --dry-run parameter which shows you what would be
5828
 
      added, but doesn't actually add anything. (Michael Ellerman)
5829
 
 
5830
 
    * 'bzr add' now lists how many files were ignored per glob.  add --verbose
5831
 
      lists the specific files.  (Aaron Bentley)
5832
 
 
5833
 
    * 'bzr missing' now supports displaying changes in diverged trees and can
5834
 
      be limited to show what either end of the comparison is missing.
5835
 
      (Aaron Bently, with a little prompting from Daniel Silverstone)
5836
 
 
5837
 
  BUG FIXES:
5838
 
 
5839
 
    * SFTP can walk up to the root path without index errors. (Robert Collins)
5840
 
 
5841
 
    * Fix bugs in running bzr with 'python -O'.  (Martin Pool)
5842
 
 
5843
 
    * Error when run with -OO
5844
 
 
5845
 
    * Fix bug in reporting http errors that don't have an http error code.
5846
 
      (Martin Pool)
5847
 
 
5848
 
    * Handle more cases of pipe errors in display commands
5849
 
 
5850
 
    * Change status to 3 for all errors
5851
 
 
5852
 
    * Files that are added and unlinked before committing are completely
5853
 
      ignored by diff and status
5854
 
 
5855
 
    * Stores with some compressed texts and some uncompressed texts are now
5856
 
      able to be used. (John A Meinel)
5857
 
 
5858
 
    * Fix for bzr pull failing sometimes under windows
5859
 
 
5860
 
    * Fix for sftp transport under windows when using interactive auth
5861
 
 
5862
 
    * Show files which are both renamed and modified as such in 'bzr 
5863
 
      status' output.  (Daniel Silverstone, #4503)
5864
 
 
5865
 
    * Make annotate cope better with revisions committed without a valid 
5866
 
      email address.  (Marien Zwart)
5867
 
 
5868
 
    * Fix representation of tab characters in commit messages.
5869
 
      (Harald Meland)
5870
 
 
5871
 
    * List of plugin directories in ``BZR_PLUGIN_PATH`` environment variable is
5872
 
      now parsed properly under Windows. (Alexander Belchenko)
5873
 
 
5874
 
    * Show number of revisions pushed/pulled/merged. (Robey Pointer)
5875
 
 
5876
 
    * Keep a cached copy of the basis inventory to speed up operations 
5877
 
      that need to refer to it.  (Johan Rydberg, Martin Pool)
5878
 
 
5879
 
    * Fix bugs in bzr status display of non-ascii characters.
5880
 
      (Martin Pool)
5881
 
 
5882
 
    * Remove Makefile.in from default ignore list.
5883
 
      (Tollef Fog Heen, Martin Pool, #6413)
5884
 
 
5885
 
    * Fix failure in 'bzr added'.  (Nathan McCallum, Martin Pool)
5886
 
 
5887
 
  TESTING:
5888
 
 
5889
 
    * Fix selftest asking for passwords when there are no SFTP keys.  
5890
 
      (Robey Pointer, Jelmer Vernooij) 
5891
 
 
5892
 
    * Fix selftest run with 'python -O'.  (Martin Pool)
5893
 
 
5894
 
    * Fix HTTP tests under Windows. (John Arbash Meinel)
5895
 
 
5896
 
    * Make tests work even if HOME is not set (Aaron Bentley)
5897
 
 
5898
 
    * Updated ``build_tree`` to use fixed line-endings for tests which read 
5899
 
      the file cotents and compare. Make some tests use this to pass under
5900
 
      Windows. (John Arbash Meinel)
5901
 
 
5902
 
    * Skip stat and symlink tests under Windows. (Alexander Belchenko)
5903
 
 
5904
 
    * Delay in selftest/testhashcash is now issued under win32 and Cygwin.
5905
 
      (John Arbash Meinel)
5906
 
 
5907
 
    * Use terminal width to align verbose test output.  (Martin Pool)
5908
 
 
5909
 
    * Blackbox tests are maintained within the bzrlib.tests.blackbox directory.
5910
 
      If adding a new test script please add that to
5911
 
      ``bzrlib.tests.blackbox.__init__``. (Robert Collins)
5912
 
 
5913
 
    * Much better error message if one of the test suites can't be 
5914
 
      imported.  (Martin Pool)
5915
 
 
5916
 
    * Make check now runs the test suite twice - once with the default locale,
5917
 
      and once with all locales forced to C, to expose bugs. This is not 
5918
 
      trivially done within python, so for now its only triggered by running
5919
 
      Make check. Integrators and packagers who wish to check for full 
5920
 
      platform support should run 'make check' to test the source.
5921
 
      (Robert Collins)
5922
 
 
5923
 
    * Tests can now run TestSkipped if they can't execute for any reason.
5924
 
      (Martin Pool) (NB: TestSkipped should only be raised for correctable
5925
 
      reasons - see the wiki spec ImprovingBzrTestSuite).
5926
 
 
5927
 
    * Test sftp with relative, absolute-in-homedir and absolute-not-in-homedir
5928
 
      paths for the transport tests. Introduce blackbox remote sftp tests that
5929
 
      test the same permutations. (Robert Collins, Robey Pointer)
5930
 
 
5931
 
    * Transport implementation tests are now independent of the local file
5932
 
      system, which allows tests for esoteric transports, and for features
5933
 
      not available in the local file system. They also repeat for variations
5934
 
      on the URL scheme that can introduce issues in the transport code,
5935
 
      see bzrlib.transport.TransportTestProviderAdapter() for this.
5936
 
      (Robert Collins).
5937
 
 
5938
 
    * ``TestCase.build_tree`` uses the transport interface to build trees,
5939
 
      pass in a transport parameter to give it an existing connection.
5940
 
      (Robert Collins).
5941
 
 
5942
 
  INTERNALS:
5943
 
 
5944
 
    * WorkingTree.pull has been split across Branch and WorkingTree,
5945
 
      to allow Branch only pulls. (Robert Collins)
5946
 
 
5947
 
    * ``commands.display_command`` now returns the result of the decorated 
5948
 
      function. (Robert Collins)
5949
 
 
5950
 
    * LocationConfig now has a ``set_user_option(key, value)`` call to save
5951
 
      a setting in its matching location section (a new one is created
5952
 
      if needed). (Robert Collins)
5953
 
 
5954
 
    * Branch has two new methods, ``get_push_location`` and
5955
 
      ``set_push_location`` to respectively, get and set the push location.
5956
 
      (Robert Collins)
5957
 
 
5958
 
    * ``commands.register_command`` now takes an optional flag to signal that
5959
 
      the registrant is planning to decorate an existing command. When 
5960
 
      given multiple plugins registering a command is not an error, and
5961
 
      the original command class (whether built in or a plugin based one) is
5962
 
      returned to the caller. There is a new error 'MustUseDecorated' for
5963
 
      signalling when a wrapping command should switch to the original
5964
 
      version. (Robert Collins)
5965
 
 
5966
 
    * Some option parsing errors will raise 'BzrOptionError', allowing 
5967
 
      granular detection for decorating commands. (Robert Collins).
5968
 
 
5969
 
    * ``Branch.read_working_inventory`` has moved to
5970
 
      ``WorkingTree.read_working_inventory``. This necessitated changes to
5971
 
      ``Branch.get_root_id``, and a move of ``Branch.set_inventory`` to
5972
 
      WorkingTree as well. To make it clear that a WorkingTree cannot always
5973
 
      be obtained ``Branch.working_tree()`` will raise
5974
 
      ``errors.NoWorkingTree`` if one cannot be obtained. (Robert Collins)
5975
 
 
5976
 
    * All pending merges operations from Branch are now on WorkingTree.
5977
 
      (Robert Collins)
5978
 
 
5979
 
    * The follow operations from Branch have moved to WorkingTree::
5980
 
 
5981
 
          add()
5982
 
          commit()
5983
 
          move()
5984
 
          rename_one()
5985
 
          unknowns()
5986
 
 
5987
 
      (Robert Collins)
5988
 
 
5989
 
    * ``bzrlib.add.smart_add_branch`` is now ``smart_add_tree``. (Robert Collins)
5990
 
 
5991
 
    * New "rio" serialization format, similar to rfc-822. (Martin Pool)
5992
 
 
5993
 
    * Rename selftests to ``bzrlib.tests.test_foo``.  (John A Meinel, Martin 
5994
 
      Pool)
5995
 
 
5996
 
    * ``bzrlib.plugin.all_plugins`` has been changed from an attribute to a 
5997
 
      query method. (Robert Collins)
5998
 
 
5999
 
    * New options to read only the table-of-contents of a weave.  
6000
 
      (Denys Duchier)
6001
 
 
6002
 
    * Raise NoSuchFile when someone tries to add a non-existant file.
6003
 
      (Michael Ellerman)
6004
 
 
6005
 
    * Simplify handling of DivergedBranches in ``cmd_pull()``.
6006
 
      (Michael Ellerman)
6007
 
   
6008
 
    * Branch.controlfile* logic has moved to lockablefiles.LockableFiles, which
6009
 
      is exposed as ``Branch().control_files``. Also this has been altered with the
6010
 
      controlfile pre/suffix replaced by simple method names like 'get' and
6011
 
      'put'. (Aaron Bentley, Robert Collins).
6012
 
 
6013
 
    * Deprecated functions and methods can now be marked as such using the 
6014
 
      ``bzrlib.symbol_versioning`` module. Marked method have their docstring
6015
 
      updated and will issue a DeprecationWarning using the warnings module
6016
 
      when they are used. (Robert Collins)
6017
 
 
6018
 
    * ``bzrlib.osutils.safe_unicode`` now exists to provide parameter coercion
6019
 
      for functions that need unicode strings. (Robert Collins)
6020
 
 
6021
 
bzr 0.6 2005-10-28
6022
 
------------------
6023
 
 
6024
 
  IMPROVEMENTS:
6025
 
  
6026
 
    * pull now takes --verbose to show you what revisions are added or removed
6027
 
      (John A Meinel)
6028
 
 
6029
 
    * merge now takes a --show-base option to include the base text in
6030
 
      conflicts.
6031
 
      (Aaron Bentley)
6032
 
 
6033
 
    * The config files are now read using ConfigObj, so '=' should be used as
6034
 
      a separator, not ':'.
6035
 
      (Aaron Bentley)
6036
 
 
6037
 
    * New 'bzr commit --strict' option refuses to commit if there are 
6038
 
      any unknown files in the tree.  To commit, make sure all files are 
6039
 
      either ignored, added, or deleted.  (Michael Ellerman)
6040
 
 
6041
 
    * The config directory is now ~/.bazaar, and there is a single file 
6042
 
      ~/.bazaar/bazaar.conf storing email, editor and other preferences.
6043
 
      (Robert Collins)
6044
 
 
6045
 
    * 'bzr add' no longer takes a --verbose option, and a --quiet option
6046
 
      has been added that suppresses all output.
6047
 
 
6048
 
    * Improved zsh completion support in contrib/zsh, from Clint
6049
 
      Adams.
6050
 
 
6051
 
    * Builtin 'bzr annotate' command, by Martin Pool with improvements from 
6052
 
      Goffredo Baroncelli.
6053
 
    
6054
 
    * 'bzr check' now accepts -v for verbose reporting, and checks for
6055
 
      ghosts in the branch. (Robert Collins)
6056
 
 
6057
 
    * New command 're-sign' which will regenerate the gpg signature for 
6058
 
      a revision. (Robert Collins)
6059
 
 
6060
 
    * If you set ``check_signatures=require`` for a path in 
6061
 
      ``~/.bazaar/branches.conf`` then bzr will invoke your
6062
 
      ``gpg_signing_command`` (defaults to gpg) and record a digital signature
6063
 
      of your commit. (Robert Collins)
6064
 
 
6065
 
    * New sftp transport, based on Paramiko.  (Robey Pointer)
6066
 
 
6067
 
    * 'bzr pull' now accepts '--clobber' which will discard local changes
6068
 
      and make this branch identical to the source branch. (Robert Collins)
6069
 
 
6070
 
    * Just give a quieter warning if a plugin can't be loaded, and 
6071
 
      put the details in .bzr.log.  (Martin Pool)
6072
 
 
6073
 
    * 'bzr branch' will now set the branch-name to the last component of the
6074
 
      output directory, if one was supplied.
6075
 
 
6076
 
    * If the option ``post_commit`` is set to one (or more) python function
6077
 
      names (must be in the bzrlib namespace), then they will be invoked
6078
 
      after the commit has completed, with the branch and ``revision_id`` as
6079
 
      parameters. (Robert Collins)
6080
 
 
6081
 
    * Merge now has a retcode of 1 when conflicts occur. (Robert Collins)
6082
 
 
6083
 
    * --merge-type weave is now supported for file contents.  Tree-shape
6084
 
      changes are still three-way based.  (Martin Pool, Aaron Bentley)
6085
 
 
6086
 
    * 'bzr check' allows the first revision on revision-history to have
6087
 
      parents - something that is expected for cheap checkouts, and occurs
6088
 
      when conversions from baz do not have all history.  (Robert Collins).
6089
 
 
6090
 
   * 'bzr merge' can now graft unrelated trees together, if your specify
6091
 
     0 as a base. (Aaron Bentley)
6092
 
 
6093
 
   * 'bzr commit branch' and 'bzr commit branch/file1 branch/file2' now work
6094
 
     (Aaron Bentley)
6095
 
 
6096
 
    * Add '.sconsign*' to default ignore list.  (Alexander Belchenko)
6097
 
 
6098
 
   * 'bzr merge --reprocess' minimizes conflicts
6099
 
 
6100
 
  TESTING:
6101
 
 
6102
 
    * The 'bzr selftest --pattern' option for has been removed, now 
6103
 
      test specifiers on the command line can be simple strings, or 
6104
 
      regexps, or both. (Robert Collins)
6105
 
 
6106
 
    * Passing -v to selftest will now show the time each test took to 
6107
 
      complete, which will aid in analysing performance regressions and
6108
 
      related questions. (Robert Collins)
6109
 
 
6110
 
    * 'bzr selftest' runs all tests, even if one fails, unless '--one'
6111
 
      is given. (Martin Pool)
6112
 
 
6113
 
    * There is a new method for TestCaseInTempDir, assertFileEqual, which
6114
 
      will check that a given content is equal to the content of the named
6115
 
      file. (Robert Collins)
6116
 
 
6117
 
    * Fix test suite's habit of leaving many temporary log files in $TMPDIR.
6118
 
      (Martin Pool)
6119
 
 
6120
 
  INTERNALS:
6121
 
 
6122
 
    * New 'testament' command and concept for making gpg-signatures 
6123
 
      of revisions that are not tied to a particular internal
6124
 
      representation.  (Martin Pool).
6125
 
 
6126
 
    * Per-revision properties ('revprops') as key-value associated 
6127
 
      strings on each revision created when the revision is committed.
6128
 
      Intended mainly for the use of external tools.  (Martin Pool).
6129
 
 
6130
 
    * Config options have moved from bzrlib.osutils to bzrlib.config.
6131
 
      (Robert Collins)
6132
 
 
6133
 
    * Improved command line option definitions allowing explanations
6134
 
      for individual options, among other things.  Contributed by 
6135
 
      Magnus Therning.
6136
 
 
6137
 
    * Config options have moved from bzrlib.osutils to bzrlib.config.
6138
 
      Configuration is now done via the config.Config interface:
6139
 
      Depending on whether you have a Branch, a Location or no information
6140
 
      available, construct a ``*Config``, and use its ``signature_checking``,
6141
 
      ``username`` and ``user_email`` methods. (Robert Collins)
6142
 
 
6143
 
    * Plugins are now loaded under bzrlib.plugins, not bzrlib.plugin, and
6144
 
      they are made available for other plugins to use. You should not 
6145
 
      import other plugins during the ``__init__`` of your plugin though, as 
6146
 
      no ordering is guaranteed, and the plugins directory is not on the
6147
 
      python path. (Robert Collins)
6148
 
 
6149
 
    * Branch.relpath has been moved to WorkingTree.relpath. WorkingTree no
6150
 
      no longer takes an inventory, rather it takes an option branch
6151
 
      parameter, and if None is given will open the branch at basedir 
6152
 
      implicitly. (Robert Collins)
6153
 
 
6154
 
    * Cleaner exception structure and error reporting.  Suggested by 
6155
 
      Scott James Remnant.  (Martin Pool)
6156
 
 
6157
 
    * Branch.remove has been moved to WorkingTree, which has also gained
6158
 
      ``lock_read``, ``lock_write`` and ``unlock`` methods for convenience.
6159
 
      (Robert Collins)
6160
 
 
6161
 
    * Two decorators, ``needs_read_lock`` and ``needs_write_lock`` have been
6162
 
      added to the branch module. Use these to cause a function to run in a
6163
 
      read or write lock respectively. (Robert Collins)
6164
 
 
6165
 
    * ``Branch.open_containing`` now returns a tuple (Branch, relative-path),
6166
 
      which allows direct access to the common case of 'get me this file
6167
 
      from its branch'. (Robert Collins)
6168
 
 
6169
 
    * Transports can register using ``register_lazy_transport``, and they 
6170
 
      will be loaded when first used.  (Martin Pool)
6171
 
 
6172
 
    * 'pull' has been factored out of the command as ``WorkingTree.pull()``.
6173
 
      A new option to WorkingTree.pull has been added, clobber, which will
6174
 
      ignore diverged history and pull anyway.
6175
 
      (Robert Collins)
6176
 
 
6177
 
    * config.Config has a ``get_user_option`` call that accepts an option name.
6178
 
      This will be looked up in branches.conf and bazaar.conf as normal.
6179
 
      It is intended that this be used by plugins to support options - 
6180
 
      options of built in programs should have specific methods on the config.
6181
 
      (Robert Collins)
6182
 
 
6183
 
    * ``merge.merge_inner`` now has tempdir as an optional parameter.
6184
 
      (Robert Collins)
6185
 
 
6186
 
    * Tree.kind is not recorded at the top level of the hierarchy, as it was
6187
 
      missing on EmptyTree, leading to a bug with merge on EmptyTrees.
6188
 
      (Robert Collins)
6189
 
 
6190
 
    * ``WorkingTree.__del__`` has been removed, it was non deterministic and not 
6191
 
      doing what it was intended to. See ``WorkingTree.__init__`` for a comment
6192
 
      about future directions. (Robert Collins/Martin Pool)
6193
 
 
6194
 
    * bzrlib.transport.http has been modified so that only 404 urllib errors
6195
 
      are returned as NoSuchFile. Other exceptions will propogate as normal.
6196
 
      This allows debuging of actual errors. (Robert Collins)
6197
 
 
6198
 
    * bzrlib.transport.Transport now accepts *ONLY* url escaped relative paths
6199
 
      to apis like 'put', 'get' and 'has'. This is to provide consistent
6200
 
      behaviour - it operates on url's only. (Robert Collins)
6201
 
 
6202
 
    * Transports can register using ``register_lazy_transport``, and they 
6203
 
      will be loaded when first used.  (Martin Pool)
6204
 
 
6205
 
    * ``merge_flex`` no longer calls ``conflict_handler.finalize()``, instead that
6206
 
      is called by ``merge_inner``. This is so that the conflict count can be 
6207
 
      retrieved (and potentially manipulated) before returning to the caller
6208
 
      of ``merge_inner``. Likewise 'merge' now returns the conflict count to the
6209
 
      caller. (Robert Collins)
6210
 
 
6211
 
    * ``revision.revision_graph`` can handle having only partial history for
6212
 
      a revision - that is no revisions in the graph with no parents.
6213
 
      (Robert Collins).
6214
 
 
6215
 
    * New ``builtins.branch_files`` uses the standard ``file_list`` rules to
6216
 
      produce a branch and a list of paths, relative to that branch
6217
 
      (Aaron Bentley)
6218
 
 
6219
 
    * New TestCase.addCleanup facility.
6220
 
 
6221
 
    * New ``bzrlib.version_info`` tuple (similar to ``sys.version_info``),
6222
 
      which can be used by programs importing bzrlib.
6223
 
 
6224
 
  BUG FIXES:
6225
 
 
6226
 
    * Better handling of branches in directories with non-ascii names. 
6227
 
      (Joel Rosdahl, Panagiotis Papadakos)
6228
 
 
6229
 
    * Upgrades of trees with no commits will not fail due to accessing
6230
 
      [-1] in the revision-history. (Andres Salomon)
6231
 
 
6232
 
 
6233
 
bzr 0.1.1 2005-10-12
6234
 
--------------------
6235
 
 
6236
 
  BUG FIXES:
6237
 
 
6238
 
    * Fix problem in pulling over http from machines that do not 
6239
 
      allow directories to be listed.
6240
 
 
6241
 
    * Avoid harmless warning about invalid hash cache after 
6242
 
      upgrading branch format.
6243
 
 
6244
 
  PERFORMANCE: 
6245
 
  
6246
 
    * Avoid some unnecessary http operations in branch and pull.
6247
 
 
6248
 
 
6249
 
bzr 0.1 2005-10-11
6250
 
------------------
6251
 
 
6252
 
  NOTES:
6253
 
 
6254
 
    * 'bzr branch' over http initially gives a very high estimate
6255
 
      of completion time but it should fall as the first few 
6256
 
      revisions are pulled in.  branch is still slow on 
6257
 
      high-latency connections.
6258
 
 
6259
 
  BUG FIXES:
6260
 
  
6261
 
    * bzr-man.py has been updated to work again. Contributed by
6262
 
      Rob Weir.
6263
 
 
6264
 
    * Locking is now done with fcntl.lockf which works with NFS
6265
 
      file systems. Contributed by Harald Meland.
6266
 
 
6267
 
    * When a merge encounters a file that has been deleted on
6268
 
      one side and modified on the other, the old contents are
6269
 
      written out to foo.BASE and foo.SIDE, where SIDE is this
6270
 
      or OTHER. Contributed by Aaron Bentley.
6271
 
 
6272
 
    * Export was choosing incorrect file paths for the content of
6273
 
      the tarball, this has been fixed by Aaron Bentley.
6274
 
 
6275
 
    * Commit will no longer commit without a log message, an 
6276
 
      error is returned instead. Contributed by Jelmer Vernooij.
6277
 
 
6278
 
    * If you commit a specific file in a sub directory, any of its
6279
 
      parent directories that are added but not listed will be 
6280
 
      automatically included. Suggested by Michael Ellerman.
6281
 
 
6282
 
    * bzr commit and upgrade did not correctly record new revisions
6283
 
      for files with only a change to their executable status.
6284
 
      bzr will correct this when it encounters it. Fixed by
6285
 
      Robert Collins
6286
 
 
6287
 
    * HTTP tests now force off the use of ``http_proxy`` for the duration.
6288
 
      Contributed by Gustavo Niemeyer.
6289
 
 
6290
 
    * Fix problems in merging weave-based branches that have 
6291
 
      different partial views of history.
6292
 
 
6293
 
    * Symlink support: working with symlinks when not in the root of a 
6294
 
      bzr tree was broken, patch from Scott James Remnant.
6295
 
 
6296
 
  IMPROVEMENTS:
6297
 
 
6298
 
    * 'branch' now accepts a --basis parameter which will take advantage
6299
 
      of local history when making a new branch. This allows faster 
6300
 
      branching of remote branches. Contributed by Aaron Bentley.
6301
 
 
6302
 
    * New tree format based on weave files, called version 5.
6303
 
      Existing branches can be upgraded to this format using 
6304
 
      'bzr upgrade'.
6305
 
 
6306
 
    * Symlinks are now versionable. Initial patch by 
6307
 
      Erik Toubro Nielsen, updated to head by Robert Collins.
6308
 
 
6309
 
    * Executable bits are tracked on files. Patch from Gustavo
6310
 
      Niemeyer.
6311
 
 
6312
 
    * 'bzr status' now shows unknown files inside a selected directory.
6313
 
      Patch from Heikki Paajanen.
6314
 
 
6315
 
    * Merge conflicts are recorded in .bzr. Two new commands 'conflicts'
6316
 
      and 'resolve' have needed added, which list and remove those 
6317
 
      merge conflicts respectively. A conflicted tree cannot be committed
6318
 
      in. Contributed by Aaron Bentley.
6319
 
 
6320
 
    * 'rm' is now an alias for 'remove'.
6321
 
 
6322
 
    * Stores now split out their content in a single byte prefixed hash,
6323
 
      dropping the density of files per directory by 256. Contributed by
6324
 
      Gustavo Niemeyer.
6325
 
 
6326
 
    * 'bzr diff -r branch:URL' will now perform a diff between two branches.
6327
 
      Contributed by Robert Collins.
6328
 
 
6329
 
    * 'bzr log' with the default formatter will show merged revisions,
6330
 
      indented to the right. Initial implementation contributed by Gustavo
6331
 
      Niemeyer, made incremental by Robert Collins.
6332
 
 
6333
 
 
6334
 
  INTERNALS:
6335
 
 
6336
 
    * Test case failures have the exception printed after the log 
6337
 
      for your viewing pleasure.
6338
 
 
6339
 
    * InventoryEntry is now an abstract base class, use one of the
6340
 
      concrete InventoryDirectory etc classes instead.
6341
 
 
6342
 
    * Branch raises an UnsupportedFormatError when it detects a 
6343
 
      bzr branch it cannot understand. This allows for precise
6344
 
      handling of such circumstances.
6345
 
 
6346
 
    * Remove RevisionReference class; ``Revision.parent_ids`` is now simply a
6347
 
      list of their ids and ``parent_sha1s`` is a list of their corresponding
6348
 
      sha1s (for old branches only at the moment.)
6349
 
 
6350
 
    * New method-object style interface for Commit() and Fetch().
6351
 
 
6352
 
    * Renamed ``Branch.last_patch()`` to ``Branch.last_revision()``, since
6353
 
      we call them revisions not patches.
6354
 
 
6355
 
    * Move ``copy_branch`` to ``bzrlib.clone.copy_branch``.  The destination
6356
 
      directory is created if it doesn't exist.
6357
 
 
6358
 
    * Inventories now identify the files which were present by 
6359
 
      giving the revision *of that file*.
6360
 
 
6361
 
    * Inventory and Revision XML contains a version identifier.  
6362
 
      This must be consistent with the overall branch version
6363
 
      but allows for more flexibility in future upgrades.
6364
 
 
6365
 
  TESTING:
6366
 
 
6367
 
    * Removed testsweet module so that tests can be run after 
6368
 
      bzr installed by 'bzr selftest'.
6369
 
 
6370
 
    * 'bzr selftest' command-line arguments can now be partial ids
6371
 
      of tests to run, e.g. ``bzr selftest test_weave``
6372
 
 
6373
 
      
6374
 
bzr 0.0.9 2005-09-23
6375
 
--------------------
6376
 
 
6377
 
  BUG FIXES:
6378
 
 
6379
 
    * Fixed "branch -r" option.
6380
 
 
6381
 
    * Fix remote access to branches containing non-compressed history.
6382
 
      (Robert Collins).
6383
 
 
6384
 
    * Better reliability of http server tests.  (John Arbash-Meinel)
6385
 
 
6386
 
    * Merge graph maximum distance calculation fix.  (Aaron Bentley)
6387
 
   
6388
 
    * Various minor bug in windows support have been fixed, largely in the
6389
 
      test suite. Contributed by Alexander Belchenko.
6390
 
 
6391
 
  IMPROVEMENTS:
6392
 
 
6393
 
    * Status now accepts a -r argument to give status between chosen
6394
 
      revisions. Contributed by Heikki Paajanen.
6395
 
 
6396
 
    * Revision arguments no longer use +/-/= to control ranges, instead
6397
 
      there is a 'before' namespace, which limits the successive namespace.
6398
 
      For example '$ bzr log -r date:yesterday..before:date:today' will
6399
 
      select everything from yesterday and before today. Contributed by
6400
 
      Robey Pointer
6401
 
 
6402
 
    * There is now a bzr.bat file created by distutils when building on 
6403
 
      Windows. Contributed by Alexander Belchenko.
6404
 
 
6405
 
  INTERNALS:
6406
 
 
6407
 
    * Removed uuid() as it was unused.
6408
 
 
6409
 
    * Improved 'fetch' code for pulling revisions from one branch into
6410
 
      another (used by pull, merged, etc.)
6411
 
 
6412
 
 
6413
 
bzr 0.0.8 2005-09-20
6414
 
--------------------
6415
 
 
6416
 
  IMPROVEMENTS:
6417
 
 
6418
 
    * Adding a file whose parent directory is not versioned will
6419
 
      implicitly add the parent, and so on up to the root. This means
6420
 
      you should never need to explictly add a directory, they'll just
6421
 
      get added when you add a file in the directory.  Contributed by
6422
 
      Michael Ellerman.
6423
 
 
6424
 
    * Ignore ``.DS_Store`` (contains Mac metadata) by default.
6425
 
      (Nir Soffer)
6426
 
 
6427
 
    * If you set ``BZR_EDITOR`` in the environment, it is checked in
6428
 
      preference to EDITOR and the config file for the interactive commit
6429
 
      editing program. Related to this is a bugfix where a missing program
6430
 
      set in EDITOR would cause editing to fail, now the fallback program
6431
 
      for the operating system is still tried.
6432
 
 
6433
 
    * Files that are not directories/symlinks/regular files will no longer
6434
 
      cause bzr to fail, it will just ignore them by default. You cannot add
6435
 
      them to the tree though - they are not versionable.
6436
 
 
6437
 
 
6438
 
  INTERNALS:
6439
 
 
6440
 
    * Refactor xml packing/unpacking.
6441
 
 
6442
 
  BUG FIXES: 
6443
 
 
6444
 
    * Fixed 'bzr mv' by Ollie Rutherfurd.
6445
 
 
6446
 
    * Fixed strange error when trying to access a nonexistent http
6447
 
      branch.
6448
 
 
6449
 
    * Make sure that the hashcache gets written out if it can't be
6450
 
      read.
6451
 
 
6452
 
 
6453
 
  PORTABILITY:
6454
 
 
6455
 
    * Various Windows fixes from Ollie Rutherfurd.
6456
 
 
6457
 
    * Quieten warnings about locking; patch from Matt Lavin.
6458
 
 
6459
 
 
6460
 
bzr-0.0.7 2005-09-02
6461
 
--------------------
6462
 
 
6463
 
  NEW FEATURES:
6464
 
 
6465
 
    * ``bzr shell-complete`` command contributed by Clint Adams to
6466
 
      help with intelligent shell completion.
6467
 
 
6468
 
    * New expert command ``bzr find-merge-base`` for debugging merges.
6469
 
 
6470
 
 
6471
 
  ENHANCEMENTS:
6472
 
 
6473
 
    * Much better merge support.
6474
 
 
6475
 
    * merge3 conflicts are now reported with markers like '<<<<<<<'
6476
 
      (seven characters) which is the same as CVS and pleases things
6477
 
      like emacs smerge.
6478
 
 
6479
 
 
6480
 
  BUG FIXES:
6481
 
 
6482
 
    * ``bzr upgrade`` no longer fails when trying to fix trees that
6483
 
      mention revisions that are not present.
6484
 
 
6485
 
    * Fixed bugs in listing plugins from ``bzr plugins``.
6486
 
 
6487
 
    * Fix case of $EDITOR containing options for the editor.
6488
 
 
6489
 
    * Fix log -r refusing to show the last revision.
6490
 
      (Patch from Goffredo Baroncelli.)
6491
 
 
6492
 
 
6493
 
  CHANGES:
6494
 
 
6495
 
    * ``bzr log --show-ids`` shows the revision ids of all parents.
6496
 
 
6497
 
    * Externally provided commands on your $BZRPATH no longer need
6498
 
      to recognize --bzr-usage to work properly, and can just handle
6499
 
      --help themselves.
6500
 
 
6501
 
 
6502
 
  LIBRARY:
6503
 
 
6504
 
    * Changed trace messages to go through the standard logging
6505
 
      framework, so that they can more easily be redirected by
6506
 
      libraries.
6507
 
 
6508
 
 
6509
 
 
6510
 
bzr-0.0.6 2005-08-18
6511
 
--------------------
6512
 
 
6513
 
  NEW FEATURES:
6514
 
 
6515
 
    * Python plugins, automatically loaded from the directories on
6516
 
      ``BZR_PLUGIN_PATH`` or ``~/.bzr.conf/plugins`` by default.
6517
 
 
6518
 
    * New 'bzr mkdir' command.
6519
 
 
6520
 
    * Commit mesage is fetched from an editor if not given on the
6521
 
      command line; patch from Torsten Marek.
6522
 
 
6523
 
    * ``bzr log -m FOO`` displays commits whose message matches regexp 
6524
 
      FOO.
6525
 
      
6526
 
    * ``bzr add`` with no arguments adds everything under the current directory.
6527
 
 
6528
 
    * ``bzr mv`` does move or rename depending on its arguments, like
6529
 
      the Unix command.
6530
 
 
6531
 
    * ``bzr missing`` command shows a summary of the differences
6532
 
      between two trees.  (Merged from John Arbash-Meinel.)
6533
 
 
6534
 
    * An email address for commits to a particular tree can be
6535
 
      specified by putting it into .bzr/email within a branch.  (Based
6536
 
      on a patch from Heikki Paajanen.)
6537
 
 
6538
 
 
6539
 
  ENHANCEMENTS:
6540
 
 
6541
 
    * Faster working tree operations.
6542
 
 
6543
 
 
6544
 
  CHANGES:
6545
 
 
6546
 
    * 3rd-party modules shipped with bzr are copied within the bzrlib
6547
 
      python package, so that they can be installed by the setup
6548
 
      script without clashing with anything already existing on the
6549
 
      system.  (Contributed by Gustavo Niemeyer.)
6550
 
 
6551
 
    * Moved plugins directory to bzrlib/, so that there's a standard
6552
 
      plugin directory which is not only installed with bzr itself but
6553
 
      is also available when using bzr from the development tree.
6554
 
      ``BZR_PLUGIN_PATH`` and ``DEFAULT_PLUGIN_PATH`` are then added to the
6555
 
      standard plugins directory.
6556
 
 
6557
 
    * When exporting to a tarball with ``bzr export --format tgz``, put 
6558
 
      everything under a top directory rather than dumping it into the
6559
 
      current directory.   This can be overridden with the ``--root`` 
6560
 
      option.  Patch from William Dodé and John Meinel.
6561
 
 
6562
 
    * New ``bzr upgrade`` command to upgrade the format of a branch,
6563
 
      replacing ``bzr check --update``.
6564
 
 
6565
 
    * Files within store directories are no longer marked readonly on
6566
 
      disk.
6567
 
 
6568
 
    * Changed ``bzr log`` output to a more compact form suggested by
6569
 
      John A Meinel.  Old format is available with the ``--long`` or
6570
 
      ``-l`` option, patched by William Dodé.
6571
 
 
6572
 
    * By default the commit command refuses to record a revision with
6573
 
      no changes unless the ``--unchanged`` option is given.
6574
 
 
6575
 
    * The ``--no-plugins``, ``--profile`` and ``--builtin`` command
6576
 
      line options must come before the command name because they 
6577
 
      affect what commands are available; all other options must come 
6578
 
      after the command name because their interpretation depends on
6579
 
      it.
6580
 
 
6581
 
    * ``branch`` and ``clone`` added as aliases for ``branch``.
6582
 
 
6583
 
    * Default log format is back to the long format; the compact one
6584
 
      is available with ``--short``.
6585
 
      
6586
 
      
6587
 
  BUG FIXES:
6588
 
  
6589
 
    * Fix bugs in committing only selected files or within a subdirectory.
6590
 
 
6591
 
 
6592
 
bzr-0.0.5  2005-06-15
6593
 
---------------------
6594
 
  
6595
 
  CHANGES:
6596
 
 
6597
 
    * ``bzr`` with no command now shows help rather than giving an
6598
 
      error.  Suggested by Michael Ellerman.
6599
 
 
6600
 
    * ``bzr status`` output format changed, because svn-style output
6601
 
      doesn't really match the model of bzr.  Now files are grouped by
6602
 
      status and can be shown with their IDs.  ``bzr status --all``
6603
 
      shows all versioned files and unknown files but not ignored files.
6604
 
 
6605
 
    * ``bzr log`` runs from most-recent to least-recent, the reverse
6606
 
      of the previous order.  The previous behaviour can be obtained
6607
 
      with the ``--forward`` option.
6608
 
        
6609
 
    * ``bzr inventory`` by default shows only filenames, and also ids
6610
 
      if ``--show-ids`` is given, in which case the id is the second
6611
 
      field.
6612
 
 
6613
 
 
6614
 
  ENHANCEMENTS:
6615
 
 
6616
 
    * New 'bzr whoami --email' option shows only the email component
6617
 
      of the user identification, from Jo Vermeulen.
6618
 
 
6619
 
    * New ``bzr ignore PATTERN`` command.
6620
 
 
6621
 
    * Nicer error message for broken pipe, interrupt and similar
6622
 
      conditions that don't indicate an internal error.
6623
 
 
6624
 
    * Add ``.*.sw[nop] .git .*.tmp *,v`` to default ignore patterns.
6625
 
 
6626
 
    * Per-branch locks keyed on ``.bzr/branch-lock``, available in
6627
 
      either read or write mode.
6628
 
 
6629
 
    * New option ``bzr log --show-ids`` shows revision and file ids.
6630
 
 
6631
 
    * New usage ``bzr log FILENAME`` shows only revisions that
6632
 
      affected that file.
6633
 
 
6634
 
    * Changed format for describing changes in ``bzr log -v``.
6635
 
 
6636
 
    * New option ``bzr commit --file`` to take a message from a file,
6637
 
      suggested by LarstiQ.
6638
 
 
6639
 
    * New syntax ``bzr status [FILE...]`` contributed by Bartosz
6640
 
      Oler.  File may be in a branch other than the working directory.
6641
 
 
6642
 
    * ``bzr log`` and ``bzr root`` can be given an http URL instead of
6643
 
      a filename.
6644
 
 
6645
 
    * Commands can now be defined by external programs or scripts
6646
 
      in a directory on $BZRPATH.
6647
 
 
6648
 
    * New "stat cache" avoids reading the contents of files if they 
6649
 
      haven't changed since the previous time.
6650
 
 
6651
 
    * If the Python interpreter is too old, try to find a better one
6652
 
      or give an error.  Based on a patch from Fredrik Lundh.
6653
 
 
6654
 
    * New optional parameter ``bzr info [BRANCH]``.
6655
 
 
6656
 
    * New form ``bzr commit SELECTED`` to commit only selected files.
6657
 
 
6658
 
    * New form ``bzr log -r FROM:TO`` shows changes in selected
6659
 
      range; contributed by John A Meinel.
6660
 
 
6661
 
    * New option ``bzr diff --diff-options 'OPTS'`` allows passing
6662
 
      options through to an external GNU diff.
6663
 
 
6664
 
    * New option ``bzr add --no-recurse`` to add a directory but not
6665
 
      their contents.
6666
 
 
6667
 
    * ``bzr --version`` now shows more information if bzr is being run
6668
 
      from a branch.
6669
 
 
6670
 
  
6671
 
  BUG FIXES:
6672
 
 
6673
 
    * Fixed diff format so that added and removed files will be
6674
 
      handled properly by patch.  Fix from Lalo Martins.
6675
 
 
6676
 
    * Various fixes for files whose names contain spaces or other
6677
 
      metacharacters.
6678
 
 
6679
 
 
6680
 
  TESTING:
6681
 
 
6682
 
    * Converted black-box test suites from Bourne shell into Python;
6683
 
      now run using ``./testbzr``.  Various structural improvements to
6684
 
      the tests.
6685
 
 
6686
 
    * testbzr by default runs the version of bzr found in the same
6687
 
      directory as the tests, or the one given as the first parameter.
6688
 
 
6689
 
    * testbzr also runs the internal tests, so the only command
6690
 
      required to check is just ``./testbzr``.
6691
 
 
6692
 
    * testbzr requires python2.4, but can be used to test bzr running
6693
 
      under a different version.
6694
 
 
6695
 
    * Tests added for many other changes in this release.
6696
 
 
6697
 
 
6698
 
  INTERNAL:
6699
 
 
6700
 
    * Included ElementTree library upgraded to 1.2.6 by Fredrik Lundh.
6701
 
 
6702
 
    * Refactor command functions into Command objects based on HCT by
6703
 
      Scott James Remnant.
6704
 
 
6705
 
    * Better help messages for many commands.
6706
 
 
6707
 
    * Expose ``bzrlib.open_tracefile()`` to start the tracefile; until
6708
 
      this is called trace messages are just discarded.
6709
 
 
6710
 
    * New internal function ``find_touching_revisions()`` and hidden
6711
 
      command touching-revisions trace the changes to a given file.
6712
 
 
6713
 
    * Simpler and faster ``compare_inventories()`` function.
6714
 
 
6715
 
    * ``bzrlib.open_tracefile()`` takes a tracefilename parameter.
6716
 
 
6717
 
    * New AtomicFile class.
6718
 
 
6719
 
    * New developer commands ``added``, ``modified``.
6720
 
 
6721
 
 
6722
 
  PORTABILITY:
6723
 
 
6724
 
    * Cope on Windows on python2.3 by using the weaker random seed.
6725
 
      2.4 is now only recommended.
6726
 
 
6727
 
 
6728
 
bzr-0.0.4  2005-04-22
6729
 
---------------------
6730
 
 
6731
 
  ENHANCEMENTS:
6732
 
 
6733
 
    * 'bzr diff' optionally takes a list of files to diff.  Still a bit
6734
 
      basic.  Patch from QuantumG.
6735
 
 
6736
 
    * More default ignore patterns.
6737
 
 
6738
 
    * New 'bzr log --verbose' shows a list of files changed in the
6739
 
      changeset.  Patch from Sebastian Cote.
6740
 
 
6741
 
    * Roll over ~/.bzr.log if it gets too large.
6742
 
 
6743
 
    * Command abbreviations 'ci', 'st', 'stat', '?' based on a patch
6744
 
      by Jason Diamon.
6745
 
 
6746
 
    * New 'bzr help commands' based on a patch from Denys Duchier.
6747
 
 
6748
 
 
6749
 
  CHANGES:
6750
 
 
6751
 
    * User email is determined by looking at $BZREMAIL or ~/.bzr.email
6752
 
      or $EMAIL.  All are decoded by the locale preferred encoding.
6753
 
      If none of these are present user@hostname is used.  The host's
6754
 
      fully-qualified name is not used because that tends to fail when
6755
 
      there are DNS problems.
6756
 
 
6757
 
    * New 'bzr whoami' command instead of username user-email.
6758
 
 
6759
 
 
6760
 
  BUG FIXES: 
6761
 
 
6762
 
    * Make commit safe for hardlinked bzr trees.
6763
 
 
6764
 
    * Some Unicode/locale fixes.
6765
 
 
6766
 
    * Partial workaround for ``difflib.unified_diff`` not handling
6767
 
      trailing newlines properly.
6768
 
 
6769
 
 
6770
 
  INTERNAL:
6771
 
 
6772
 
    * Allow docstrings for help to be in PEP0257 format.  Patch from
6773
 
      Matt Brubeck.
6774
 
 
6775
 
    * More tests in test.sh.
6776
 
 
6777
 
    * Write profile data to a temporary file not into working
6778
 
      directory and delete it when done.
6779
 
 
6780
 
    * Smaller .bzr.log with process ids.
6781
 
 
6782
 
 
6783
 
  PORTABILITY:
6784
 
 
6785
 
    * Fix opening of ~/.bzr.log on Windows.  Patch from Andrew
6786
 
      Bennetts.
6787
 
 
6788
 
    * Some improvements in handling paths on Windows, based on a patch
6789
 
      from QuantumG.
6790
 
 
6791
 
 
6792
 
bzr-0.0.3  2005-04-06
6793
 
---------------------
6794
 
 
6795
 
  ENHANCEMENTS:
6796
 
 
6797
 
    * New "directories" internal command lists versioned directories
6798
 
      in the tree.
6799
 
 
6800
 
    * Can now say "bzr commit --help".
6801
 
 
6802
 
    * New "rename" command to rename one file to a different name
6803
 
      and/or directory.
6804
 
 
6805
 
    * New "move" command to move one or more files into a different
6806
 
      directory.
6807
 
 
6808
 
    * New "renames" command lists files renamed since base revision.
6809
 
 
6810
 
    * New cat command contributed by janmar.
6811
 
 
6812
 
  CHANGES:
6813
 
 
6814
 
    * .bzr.log is placed in $HOME (not pwd) and is always written in
6815
 
      UTF-8.  (Probably not a completely good long-term solution, but
6816
 
      will do for now.)
6817
 
 
6818
 
  PORTABILITY:
6819
 
 
6820
 
    * Workaround for difflib bug in Python 2.3 that causes an
6821
 
      exception when comparing empty files.  Reported by Erik Toubro
6822
 
      Nielsen.
6823
 
 
6824
 
  INTERNAL:
6825
 
 
6826
 
    * Refactored inventory storage to insert a root entry at the top.
6827
 
 
6828
 
  TESTING:
6829
 
 
6830
 
    * Start of shell-based black-box testing in test.sh.
 
7441
bzr 0.92rc1
 
7442
###########
 
7443
 
 
7444
:Released: 2007-10-29
 
7445
 
 
7446
Changes
 
7447
*******
 
7448
 
 
7449
* ``bzr`` now returns exit code 4 if an internal error occurred, and
 
7450
  3 if a normal error occurred.  (Martin Pool)
 
7451
 
 
7452
* ``pull``, ``merge`` and ``push`` will no longer silently correct some
 
7453
  repository index errors that occured as a result of the Weave disk format.
 
7454
  Instead the ``reconcile`` command needs to be run to correct those
 
7455
  problems if they exist (and it has been able to fix most such problems
 
7456
  since bzr 0.8). Some new problems have been identified during this release
 
7457
  and you should run ``bzr check`` once on every repository to see if you
 
7458
  need to reconcile. If you cannot ``pull`` or ``merge`` from a remote
 
7459
  repository due to mismatched parent errors - a symptom of index errors -
 
7460
  you should simply take a full copy of that remote repository to a clean
 
7461
  directory outside any local repositories, then run reconcile on it, and
 
7462
  finally pull from it locally. (And naturally email the repositories owner
 
7463
  to ask them to upgrade and run reconcile).
 
7464
  (Robert Collins)
 
7465
 
 
7466
Features
 
7467
********
 
7468
 
 
7469
* New ``knitpack-experimental`` repository format. This is interoperable with
 
7470
  the ``dirstate-tags`` format but uses a smarter storage design that greatly
 
7471
  speeds up many operations, both local and remote. This new format can be
 
7472
  used as an option to the ``init``, ``init-repository`` and ``upgrade``
 
7473
  commands. (Robert Collins)
 
7474
 
 
7475
* For users of bzr-svn (and those testing the prototype subtree support) that
 
7476
  wish to try packs, a new ``knitpack-subtree-experimental`` format has also
 
7477
  been added. This is interoperable with the ``dirstate-subtrees`` format.
 
7478
  (Robert Collins)
 
7479
 
 
7480
* New ``reconfigure`` command. (Aaron Bentley)
 
7481
 
 
7482
* New ``revert --forget-merges`` command, which removes the record of a pending
 
7483
  merge without affecting the working tree contents.  (Martin Pool)
 
7484
 
 
7485
* New ``bzr_remote_path`` configuration variable allows finer control of
 
7486
  remote bzr locations than BZR_REMOTE_PATH environment variable.
 
7487
  (Aaron Bentley)
 
7488
 
 
7489
* New ``launchpad-login`` command to tell Bazaar your Launchpad
 
7490
  user ID.  This can then be used by other functions of the
 
7491
  Launchpad plugin. (James Henstridge)
 
7492
 
 
7493
Performance
 
7494
***********
 
7495
 
 
7496
* Commit in quiet mode is now slightly faster as the information to
 
7497
  output is no longer calculated. (Ian Clatworthy)
 
7498
 
 
7499
* Commit no longer checks for new text keys during insertion when the
 
7500
  revision id was deterministically unique. (Robert Collins)
 
7501
 
 
7502
* Committing a change which is not a merge and does not change the number of
 
7503
  files in the tree is faster by utilising the data about whether files are
 
7504
  changed to determine if the tree is unchanged rather than recalculating
 
7505
  it at the end of the commit process. (Robert Collins)
 
7506
 
 
7507
* Inventory serialisation no longer double-sha's the content.
 
7508
  (Robert Collins)
 
7509
 
 
7510
* Knit text reconstruction now avoids making copies of the lines list for
 
7511
  interim texts when building a single text. The new ``apply_delta`` method
 
7512
  on ``KnitContent`` aids this by allowing modification of the revision id
 
7513
  such objects represent. (Robert Collins)
 
7514
 
 
7515
* Pack indices are now partially parsed for specific key lookup using a
 
7516
  bisection approach. (Robert Collins)
 
7517
 
 
7518
* Partial commits are now approximately 40% faster by walking over the
 
7519
  unselected current tree more efficiently. (Robert Collins)
 
7520
 
 
7521
* XML inventory serialisation takes 20% less time while being stricter about
 
7522
  the contents. (Robert Collins)
 
7523
 
 
7524
* Graph ``heads()`` queries have been fixed to no longer access all history
 
7525
  unnecessarily. (Robert Collins)
 
7526
 
 
7527
Improvements
 
7528
************
 
7529
 
 
7530
* ``bzr+https://`` smart server across https now supported.
 
7531
  (John Ferlito, Martin Pool, #128456)
 
7532
 
 
7533
* Mutt is now a supported mail client; set ``mail_client=mutt`` in your
 
7534
  bazaar.conf and ``send`` will use mutt. (Keir Mierle)
 
7535
 
 
7536
* New option ``-c``/``--change`` for ``merge`` command for cherrypicking
 
7537
  changes from one revision. (Alexander Belchenko, #141368)
 
7538
 
 
7539
* Show encodings, locale and list of plugins in the traceback message.
 
7540
  (Martin Pool, #63894)
 
7541
 
 
7542
* Experimental directory formats can now be marked with
 
7543
  ``experimental = True`` during registration. (Ian Clatworthy)
 
7544
 
 
7545
Documentation
 
7546
*************
 
7547
 
 
7548
* New *Bazaar in Five Minutes* guide.  (Matthew Revell)
 
7549
 
 
7550
* The hooks reference documentation is now converted to html as expected.
 
7551
  (Ian Clatworthy)
 
7552
 
 
7553
Bug Fixes
 
7554
*********
 
7555
 
 
7556
* Connection error reporting for the smart server has been fixed to
 
7557
  display a user friendly message instead of a traceback.
 
7558
  (Ian Clatworthy, #115601)
 
7559
 
 
7560
* Make sure to use ``O_BINARY`` when opening files to check their
 
7561
  sha1sum. (Alexander Belchenko, John Arbash Meinel, #153493)
 
7562
 
 
7563
* Fix a problem with Win32 handling of the executable bit.
 
7564
  (John Arbash Meinel, #149113)
 
7565
 
 
7566
* ``bzr+ssh://`` and ``sftp://`` URLs that do not specify ports explicitly
 
7567
  no longer assume that means port 22.  This allows people using OpenSSH to
 
7568
  override the default port in their ``~/.ssh/config`` if they wish.  This
 
7569
  fixes a bug introduced in bzr 0.91.  (Andrew Bennetts, #146715)
 
7570
 
 
7571
* Commands reporting exceptions can now be profiled and still have their
 
7572
  data correctly dumped to a file. For example, a ``bzr commit`` with
 
7573
  no changes still reports the operation as pointless but doing so no
 
7574
  longer throws away the profiling data if this command is run with
 
7575
  ``--lsprof-file callgrind.out.ci`` say. (Ian Clatworthy)
 
7576
 
 
7577
* Fallback to ftp when paramiko is not installed and sftp can't be used for
 
7578
  ``tests/commands`` so that the test suite is still usable without
 
7579
  paramiko.
 
7580
  (Vincent Ladeuil, #59150)
 
7581
 
 
7582
* Fix commit ordering in corner case. (Aaron Bentley, #94975)
 
7583
 
 
7584
* Fix long standing bug in partial commit when there are renames
 
7585
  left in tree. (Robert Collins, #140419)
 
7586
 
 
7587
* Fix selftest semi-random noise during http related tests.
 
7588
  (Vincent Ladeuil, #140614)
 
7589
 
 
7590
* Fix typo in ftp.py making the reconnection fail on temporary errors.
 
7591
  (Vincent Ladeuil, #154259)
 
7592
 
 
7593
* Fix failing test by comparing real paths to cover the case where the TMPDIR
 
7594
  contains a symbolic link.
 
7595
  (Vincent Ladeuil, #141382).
 
7596
 
 
7597
* Fix log against smart server branches that don't support tags.
 
7598
  (James Westby, #140615)
 
7599
 
 
7600
* Fix pycurl http implementation by defining error codes from
 
7601
  pycurl instead of relying on an old curl definition.
 
7602
  (Vincent Ladeuil, #147530)
 
7603
 
 
7604
* Fix 'unprintable error' message when displaying BzrCheckError and
 
7605
  some other exceptions on Python 2.5.
 
7606
  (Martin Pool, #144633)
 
7607
 
 
7608
* Fix ``Inventory.copy()`` and add test for it. (Jelmer Vernooij)
 
7609
 
 
7610
* Handles default value for ListOption in cmd_commit.
 
7611
  (Vincent Ladeuil, #140432)
 
7612
 
 
7613
* HttpServer and FtpServer need to be closed properly or a listening socket
 
7614
  will remain opened.
 
7615
  (Vincent Ladeuil, #140055)
 
7616
 
 
7617
* Monitor the .bzr directory created in the top level test
 
7618
  directory to detect leaking tests.
 
7619
  (Vincent Ladeuil, #147986)
 
7620
 
 
7621
* The basename, not the full path, is now used when checking whether
 
7622
  the profiling dump file begins with ``callgrind.out`` or not. This
 
7623
  fixes a bug reported by Aaron Bentley on IRC. (Ian Clatworthy)
 
7624
 
 
7625
* Trivial fix for invoking command ``reconfigure`` without arguments.
 
7626
  (Rob Weir, #141629)
 
7627
 
 
7628
* ``WorkingTree.rename_one`` will now raise an error if normalisation of the
 
7629
  new path causes bzr to be unable to access the file. (Robert Collins)
 
7630
 
 
7631
* Correctly detect a NoSuchFile when using a filezilla server. (Gary van der
 
7632
  Merwe)
 
7633
 
 
7634
API Breaks
 
7635
**********
 
7636
 
 
7637
* ``bzrlib.index.GraphIndex`` now requires a size parameter to the
 
7638
  constructor, for enabling bisection searches. (Robert Collins)
 
7639
 
 
7640
* ``CommitBuilder.record_entry_contents`` now requires the root entry of a
 
7641
  tree be supplied to it, previously failing to do so would trigger a
 
7642
  deprecation warning. (Robert Collins)
 
7643
 
 
7644
* ``KnitVersionedFile.add*`` will no longer cache added records even when
 
7645
  enable_cache() has been called - the caching feature is now exclusively for
 
7646
  reading existing data. (Robert Collins)
 
7647
 
 
7648
* ``ReadOnlyLockError`` is deprecated; ``LockFailed`` is usually more
 
7649
  appropriate.  (Martin Pool)
 
7650
 
 
7651
* Removed ``bzrlib.transport.TransportLogger`` - please see the new
 
7652
  ``trace+`` transport instead. (Robert Collins)
 
7653
 
 
7654
* Removed previously deprecated varargs interface to ``TestCase.run_bzr`` and
 
7655
  deprecated methods ``TestCase.capture`` and ``TestCase.run_bzr_captured``.
 
7656
  (Martin Pool)
 
7657
 
 
7658
* Removed previous deprecated ``basis_knit`` parameter to the
 
7659
  ``KnitVersionedFile`` constructor. (Robert Collins)
 
7660
 
 
7661
* Special purpose method ``TestCase.run_bzr_decode`` is moved to the test_non_ascii
 
7662
  class that needs it.
 
7663
  (Martin Pool)
 
7664
 
 
7665
* The class ``bzrlib.repofmt.knitrepo.KnitRepository3`` has been folded into
 
7666
  ``KnitRepository`` by parameters to the constructor. (Robert Collins)
 
7667
 
 
7668
* The ``VersionedFile`` interface now allows content checks to be bypassed
 
7669
  by supplying check_content=False.  This saves nearly 30% of the minimum
 
7670
  cost to store a version of a file. (Robert Collins)
 
7671
 
 
7672
* Tree's with bad state such as files with no length or sha will no longer
 
7673
  be silently accepted by the repository XML serialiser. To serialise
 
7674
  inventories without such data, pass working=True to write_inventory.
 
7675
  (Robert Collins)
 
7676
 
 
7677
* ``VersionedFile.fix_parents`` has been removed as a harmful API.
 
7678
  ``VersionedFile.join`` will no longer accept different parents on either
 
7679
  side of a join - it will either ignore them, or error, depending on the
 
7680
  implementation. See notes when upgrading for more information.
 
7681
  (Robert Collins)
 
7682
 
 
7683
Internals
 
7684
*********
 
7685
 
 
7686
* ``bzrlib.transport.Transport.put_file`` now returns the number of bytes
 
7687
  put by the method call, to allow avoiding stat-after-write or
 
7688
  housekeeping in callers. (Robert Collins)
 
7689
 
 
7690
* ``bzrlib.xml_serializer.Serializer`` is now responsible for checking that
 
7691
  mandatory attributes are present on serialisation and deserialisation.
 
7692
  This fixes some holes in API usage and allows better separation between
 
7693
  physical storage and object serialisation. (Robert Collins)
 
7694
 
 
7695
* New class ``bzrlib.errors.InternalBzrError`` which is just a convenient
 
7696
  shorthand for deriving from BzrError and setting internal_error = True.
 
7697
  (Robert Collins)
 
7698
 
 
7699
* New method ``bzrlib.mutabletree.update_to_one_parent_via_delta`` for
 
7700
  moving the state of a parent tree to a new version via a delta rather than
 
7701
  a complete replacement tree. (Robert Collins)
 
7702
 
 
7703
* New method ``bzrlib.osutils.minimum_path_selection`` useful for removing
 
7704
  duplication from user input, when a user mentions both a path and an item
 
7705
  contained within that path. (Robert Collins)
 
7706
 
 
7707
* New method ``bzrlib.repository.Repository.is_write_locked`` useful for
 
7708
  determining if a repository is write locked. (Robert Collins)
 
7709
 
 
7710
* New method on ``bzrlib.tree.Tree`` ``path_content_summary`` provides a
 
7711
  tuple containing the key information about a path for commit processing
 
7712
  to complete. (Robert Collins)
 
7713
 
 
7714
* New method on xml serialisers, write_inventory_to_lines, which matches the
 
7715
  API used by knits for adding content. (Robert Collins)
 
7716
 
 
7717
* New module ``bzrlib.bisect_multi`` with generic multiple-bisection-at-once
 
7718
  logic, currently only available for byte-based lookup
 
7719
  (``bisect_multi_bytes``). (Robert Collins)
 
7720
 
 
7721
* New helper ``bzrlib.tuned_gzip.bytes_to_gzip`` which takes a byte string
 
7722
  and returns a gzipped version of the same. This is used to avoid a bunch
 
7723
  of api friction during adding of knit hunks. (Robert Collins)
 
7724
 
 
7725
* New parameter on ``bzrlib.transport.Transport.readv``
 
7726
  ``adjust_for_latency`` which changes readv from returning strictly the
 
7727
  requested data to inserted return larger ranges and in forward read order
 
7728
  to reduce the effect of network latency. (Robert Collins)
 
7729
 
 
7730
* New parameter yield_parents on ``Inventory.iter_entries_by_dir`` which
 
7731
  causes the parents of a selected id to be returned recursively, so all the
 
7732
  paths from the root down to each element of selected_file_ids are
 
7733
  returned. (Robert Collins)
 
7734
 
 
7735
* Knit joining has been enhanced to support plain to annotated conversion
 
7736
  and annotated to plain conversion. (Ian Clatworthy)
 
7737
 
 
7738
* The CommitBuilder method ``record_entry_contents`` now returns summary
 
7739
  information about the effect of the commit on the repository. This tuple
 
7740
  contains an inventory delta item if the entry changed from the basis, and a
 
7741
  boolean indicating whether a new file graph node was recorded.
 
7742
  (Robert Collins)
 
7743
 
 
7744
* The python path used in the Makefile can now be overridden.
 
7745
  (Andrew Bennetts, Ian Clatworthy)
 
7746
 
 
7747
Testing
 
7748
*******
 
7749
 
 
7750
* New transport implementation ``trace+`` which is useful for testing,
 
7751
  logging activity taken to its _activity attribute. (Robert Collins)
 
7752
 
 
7753
* When running bzr commands within the test suite, internal exceptions are
 
7754
  not caught and reported in the usual way, but rather allowed to propagate
 
7755
  up and be visible to the test suite.  A new API ``run_bzr_catch_user_errors``
 
7756
  makes this behavior available to other users.
 
7757
  (Martin Pool)
 
7758
 
 
7759
* New method ``TestCase.call_catch_warnings`` for testing methods that
 
7760
  raises a Python warning.  (Martin Pool)
 
7761
 
 
7762
 
 
7763
bzr 0.91
 
7764
########
 
7765
 
 
7766
:Released: 2007-09-26
 
7767
 
 
7768
Bug Fixes
 
7769
*********
 
7770
 
 
7771
* Print a warning instead of aborting the ``python setup.py install``
 
7772
  process if building of a C extension is not possible.
 
7773
  (Lukáš Lalinský, Alexander Belchenko)
 
7774
 
 
7775
* Fix commit ordering in corner case (Aaron Bentley, #94975)
 
7776
 
 
7777
* Fix ''bzr info bzr://host/'' and other operations on ''bzr://' URLs with
 
7778
  an implicit port.  We were incorrectly raising PathNotChild due to
 
7779
  inconsistent treatment of the ''_port'' attribute on the Transport object.
 
7780
  (Andrew Bennetts, #133965)
 
7781
 
 
7782
* Make RemoteRepository.sprout cope gracefully with servers that don't
 
7783
  support the ``Repository.tarball`` request.
 
7784
  (Andrew Bennetts)
 
7785
 
 
7786
 
 
7787
bzr 0.91rc2
 
7788
###########
 
7789
 
 
7790
:Released: 2007-09-11
 
7791
 
 
7792
* Replaced incorrect tarball for previous release; a debug statement was left
 
7793
  in bzrlib/remote.py.
 
7794
 
 
7795
 
 
7796
bzr 0.91rc1
 
7797
###########
 
7798
 
 
7799
:Released: 2007-09-11
 
7800
 
 
7801
Changes
 
7802
*******
 
7803
 
 
7804
* The default branch and repository format has changed to
 
7805
  ``dirstate-tags``, so tag commands are active by default.
 
7806
  This format is compatible with Bazaar 0.15 and later.
 
7807
  This incidentally fixes bug #126141.
 
7808
  (Martin Pool)
 
7809
 
 
7810
* ``--quiet`` or ``-q`` is no longer a global option. If present, it
 
7811
  must now appear after the command name. Scripts doing things like
 
7812
  ``bzr -q missing`` need to be rewritten as ``bzr missing -q``.
 
7813
  (Ian Clatworthy)
 
7814
 
 
7815
Features
 
7816
********
 
7817
 
 
7818
* New option ``--author`` in ``bzr commit`` to specify the author of the
 
7819
  change, if it's different from the committer. ``bzr log`` and
 
7820
  ``bzr annotate`` display the author instead of the committer.
 
7821
  (Lukáš Lalinský)
 
7822
 
 
7823
* In addition to global options and command specific options, a set of
 
7824
  standard options are now supported. Standard options are legal for
 
7825
  all commands. The initial set of standard options are:
 
7826
 
 
7827
  * ``--help`` or ``-h`` - display help message
 
7828
  * ``--verbose`` or ``-v`` - display additional information
 
7829
  * ``--quiet``  or ``-q`` - only output warnings and errors.
 
7830
 
 
7831
  Unlike global options, standard options can be used in aliases and
 
7832
  may have command-specific help. (Ian Clatworthy)
 
7833
 
 
7834
* Verbosity level processing has now been unified. If ``--verbose``
 
7835
  or ``-v`` is specified on the command line multiple times, the
 
7836
  verbosity level is made positive the first time then increased.
 
7837
  If ``--quiet`` or ``-q`` is specified on the command line
 
7838
  multiple times, the verbosity level is made negative the first
 
7839
  time then decreased. To get the default verbosity level of zero,
 
7840
  either specify none of the above , ``--no-verbose`` or ``--no-quiet``.
 
7841
  Note that most commands currently ignore the magnitude of the
 
7842
  verbosity level but do respect *quiet vs normal vs verbose* when
 
7843
  generating output. (Ian Clatworthy)
 
7844
 
 
7845
* ``Branch.hooks`` now supports ``pre_commit`` hook. The hook's signature
 
7846
  is documented in BranchHooks constructor. (Nam T. Nguyen, #102747)
 
7847
 
 
7848
* New ``Repository.stream_knit_data_for_revisions`` request added to the
 
7849
  network protocol for greatly reduced roundtrips when retrieving a set of
 
7850
  revisions. (Andrew Bennetts)
 
7851
 
 
7852
Bug Fixes
 
7853
*********
 
7854
 
 
7855
* ``bzr plugins`` now lists the version number for each plugin in square
 
7856
  brackets after the path. (Robert Collins, #125421)
 
7857
 
 
7858
* Pushing, pulling and branching branches with subtree references was not
 
7859
  copying the subtree weave, preventing the file graph from being accessed
 
7860
  and causing errors in commits in clones. (Robert Collins)
 
7861
 
 
7862
* Suppress warning "integer argument expected, got float" from Paramiko,
 
7863
  which sometimes caused false test failures.  (Martin Pool)
 
7864
 
 
7865
* Fix bug in bundle 4 that could cause attempts to write data to wrong
 
7866
  versionedfile.  (Aaron Bentley)
 
7867
 
 
7868
* Diffs generated using "diff -p" no longer break the patch parser.
 
7869
  (Aaron Bentley)
 
7870
 
 
7871
* get_transport treats an empty possible_transports list the same as a non-
 
7872
  empty one.  (Aaron Bentley)
 
7873
 
 
7874
* patch verification for merge directives is reactivated, and works with
 
7875
  CRLF and CR files.  (Aaron Bentley)
 
7876
 
 
7877
* Accept ..\ as a path in revision specifiers. This fixes for example
 
7878
  "-r branch:..\other-branch" on Windows.  (Lukáš Lalinský)
 
7879
 
 
7880
* ``BZR_PLUGIN_PATH`` may now contain trailing slashes.
 
7881
  (Blake Winton, #129299)
 
7882
 
 
7883
* man page no longer lists hidden options (#131667, Aaron Bentley)
 
7884
 
 
7885
* ``uncommit --help`` now explains the -r option adequately.  (Daniel
 
7886
  Watkins, #106726)
 
7887
 
 
7888
* Error messages are now better formatted with parameters (such as
 
7889
  filenames) quoted when necessary. This avoids confusion when directory
 
7890
  names ending in a '.' at the end of messages were confused with a
 
7891
  full stop that may or not have been there. (Daniel Watkins, #129791)
 
7892
 
 
7893
* Fix ``status FILE -r X..Y``. (Lukáš Lalinský)
 
7894
 
 
7895
* If a particular command is an alias, ``help`` will show the alias
 
7896
  instead of claiming there is no help for said alias. (Daniel Watkins,
 
7897
  #133548)
 
7898
 
 
7899
* TreeTransform-based operations, like pull, merge, revert, and branch,
 
7900
  now roll back if they encounter an error.  (Aaron Bentley, #67699)
 
7901
 
 
7902
* ``bzr commit`` now exits cleanly if a character unsupported by the
 
7903
  current encoding is used in the commit message.  (Daniel Watkins,
 
7904
  #116143)
 
7905
 
 
7906
* bzr send uses default values for ranges when only half of an elipsis
 
7907
  is specified ("-r..5" or "-r5..").  (#61685, Aaron Bentley)
 
7908
 
 
7909
* Avoid trouble when Windows ssh calls itself 'plink' but no plink
 
7910
  binary is present.  (Martin Albisetti, #107155)
 
7911
 
 
7912
* ``bzr remove`` should remove clean subtrees.  Now it will remove (without
 
7913
  needing ``--force``) subtrees that contain no files with text changes or
 
7914
  modified files.  With ``--force`` it removes the subtree regardless of
 
7915
  text changes or unknown files. Directories with renames in or out (but
 
7916
  not changed otherwise) will now be removed without needing ``--force``.
 
7917
  Unknown ignored files will be deleted without needing ``--force``.
 
7918
  (Marius Kruger, #111665)
 
7919
 
 
7920
* When two plugins conflict, the source of both the losing and now the
 
7921
  winning definition is shown.  (Konstantin Mikhaylov, #5454)
 
7922
 
 
7923
* When committing to a branch, the location being committed to is
 
7924
  displayed.  (Daniel Watkins, #52479)
 
7925
 
 
7926
* ``bzr --version`` takes care about encoding of stdout, especially
 
7927
  when output is redirected. (Alexander Belchenko, #131100)
 
7928
 
 
7929
* Prompt for an ftp password if none is provided.
 
7930
  (Vincent Ladeuil, #137044)
 
7931
 
 
7932
* Reuse bound branch associated transport to avoid multiple
 
7933
  connections.
 
7934
  (Vincent Ladeuil, #128076, #131396)
 
7935
 
 
7936
* Overwrite conflicting tags by ``push`` and ``pull`` if the
 
7937
  ``--overwrite`` option is specified.  (Lukáš Lalinský, #93947)
 
7938
 
 
7939
* In checkouts, tags are copied into the master branch when created,
 
7940
  changed or deleted, and are copied into the checkout when it is
 
7941
  updated.  (Martin Pool, #93856, #93860)
 
7942
 
 
7943
* Print a warning instead of aborting the ``python setup.py install``
 
7944
  process if building of a C extension is not possible.
 
7945
  (Lukáš Lalinský, Alexander Belchenko)
 
7946
 
 
7947
Improvements
 
7948
************
 
7949
 
 
7950
* Add the option "--show-diff" to the commit command in order to display
 
7951
  the diff during the commit log creation. (Goffredo Baroncelli)
 
7952
 
 
7953
* ``pull`` and ``merge`` are much faster at installing bundle format 4.
 
7954
  (Aaron Bentley)
 
7955
 
 
7956
* ``pull -v`` no longer includes deltas, making it much faster.
 
7957
  (Aaron Bentley)
 
7958
 
 
7959
* ``send`` now sends the directive as an attachment by default.
 
7960
  (Aaron Bentley, Lukáš Lalinský, Alexander Belchenko)
 
7961
 
 
7962
* Documentation updates (Martin Albisetti)
 
7963
 
 
7964
* Help on debug flags is now included in ``help global-options``.
 
7965
  (Daniel Watkins, #124853)
 
7966
 
 
7967
* Parameters passed on the command line are checked to ensure they are
 
7968
  supported by the encoding in use. (Daniel Watkins)
 
7969
 
 
7970
* The compression used within the bzr repository has changed from zlib
 
7971
  level 9 to the zlib default level. This improves commit performance with
 
7972
  only a small increase in space used (and in some cases a reduction in
 
7973
  space). (Robert Collins)
 
7974
 
 
7975
* Initial commit no longer SHAs files twice and now reuses the path
 
7976
  rather than looking it up again, making it faster.
 
7977
  (Ian Clatworthy)
 
7978
 
 
7979
* New option ``-c``/``--change`` for ``diff`` and ``status`` to show
 
7980
  changes in one revision.  (Lukáš Lalinský)
 
7981
 
 
7982
* If versioned files match a given ignore pattern, a warning is now
 
7983
  given. (Daniel Watkins, #48623)
 
7984
 
 
7985
* ``bzr status`` now has -S as a short name for --short and -V as a
 
7986
  short name for --versioned. These have been added to assist users
 
7987
  migrating from Subversion: ``bzr status -SV`` is now like
 
7988
  ``svn status -q``.  (Daniel Watkins, #115990)
 
7989
 
 
7990
* Added C implementation of  ``PatienceSequenceMatcher``, which is about
 
7991
  10x faster than the Python version. This speeds up commands that
 
7992
  need file diffing, such as ``bzr commit`` or ``bzr diff``.
 
7993
  (Lukáš Lalinský)
 
7994
 
 
7995
* HACKING has been extended with a large section on core developer tasks.
 
7996
  (Ian Clatworthy)
 
7997
 
 
7998
* Add ``branches`` and ``standalone-trees`` as online help topics and
 
7999
  include them as Concepts within the User Reference.
 
8000
  (Paul Moore, Ian Clatworthy)
 
8001
 
 
8002
* ``check`` can detect versionedfile parent references that are
 
8003
  inconsistent with revision and inventory info, and ``reconcile`` can fix
 
8004
  them.  These faulty references were generated by 0.8-era releases,
 
8005
  so repositories which were manipulated by old bzrs should be
 
8006
  checked, and possibly reconciled ASAP.  (Aaron Bentley, Andrew Bennetts)
 
8007
 
 
8008
API Breaks
 
8009
**********
 
8010
 
 
8011
* ``Branch.append_revision`` is removed altogether; please use
 
8012
  ``Branch.set_last_revision_info`` instead.  (Martin Pool)
 
8013
 
 
8014
* CommitBuilder now advertises itself as requiring the root entry to be
 
8015
  supplied. This only affects foreign repository implementations which reuse
 
8016
  CommitBuilder directly and have changed record_entry_contents to require
 
8017
  that the root not be supplied. This should be precisely zero plugins
 
8018
  affected. (Robert Collins)
 
8019
 
 
8020
* The ``add_lines`` methods on ``VersionedFile`` implementations has changed
 
8021
  its return value to include the sha1 and length of the inserted text. This
 
8022
  allows the avoidance of double-sha1 calculations during commit.
 
8023
  (Robert Collins)
 
8024
 
 
8025
* ``Transport.should_cache`` has been removed.  It was not called in the
 
8026
  previous release.  (Martin Pool)
 
8027
 
 
8028
Testing
 
8029
*******
 
8030
 
 
8031
* Tests may now raise TestNotApplicable to indicate they shouldn't be
 
8032
  run in a particular scenario.  (Martin Pool)
 
8033
 
 
8034
* New function multiply_tests_from_modules to give a simpler interface
 
8035
  to test parameterization.  (Martin Pool, Robert Collins)
 
8036
 
 
8037
* ``Transport.should_cache`` has been removed.  It was not called in the
 
8038
  previous release.  (Martin Pool)
 
8039
 
 
8040
* NULL_REVISION is returned to indicate the null revision, not None.
 
8041
  (Aaron Bentley)
 
8042
 
 
8043
* Use UTF-8 encoded StringIO for log tests to avoid failures on
 
8044
  non-ASCII committer names.  (Lukáš Lalinský)
 
8045
 
 
8046
Internals
 
8047
*********
 
8048
 
 
8049
* ``bzrlib.plugin.all_plugins`` has been deprecated in favour of
 
8050
  ``bzrlib.plugin.plugins()`` which returns PlugIn objects that provide
 
8051
  useful functionality for determining the path of a plugin, its tests, and
 
8052
  its version information. (Robert Collins)
 
8053
 
 
8054
* Add the option user_encoding to the function 'show_diff_trees()'
 
8055
  in order to move the user encoding at the UI level. (Goffredo Baroncelli)
 
8056
 
 
8057
* Add the function make_commit_message_template_encoded() and the function
 
8058
  edit_commit_message_encoded() which handle encoded strings.
 
8059
  This is done in order to mix the commit messages (which is a unicode
 
8060
  string), and the diff which is a raw string. (Goffredo Baroncelli)
 
8061
 
 
8062
* CommitBuilder now defaults to using add_lines_with_ghosts, reducing
 
8063
  overhead on non-weave repositories which don't require all parents to be
 
8064
  present. (Robert Collins)
 
8065
 
 
8066
* Deprecated method ``find_previous_heads`` on
 
8067
  ``bzrlib.inventory.InventoryEntry``. This has been superseded by the use
 
8068
  of ``parent_candidates`` and a separate heads check via the repository
 
8069
  API. (Robert Collins)
 
8070
 
 
8071
* New trace function ``mutter_callsite`` will print out a subset of the
 
8072
  stack to the log, which can be useful for gathering debug details.
 
8073
  (Robert Collins)
 
8074
 
 
8075
* ``bzrlib.pack.ContainerWriter`` now tracks how many records have been
 
8076
  added via a public attribute records_written. (Robert Collins)
 
8077
 
 
8078
* New method ``bzrlib.transport.Transport.get_recommended_page_size``.
 
8079
  This provides a hint to users of transports as to the reasonable
 
8080
  minimum data to read. In principle this can take latency and
 
8081
  bandwidth into account on a per-connection basis, but for now it
 
8082
  just has hard coded values based on the url. (e.g. http:// has a large
 
8083
  page size, file:// has a small one.) (Robert Collins)
 
8084
 
 
8085
* New method on ``bzrlib.transport.Transport`` ``open_write_stream`` allows
 
8086
  incremental addition of data to a file without requiring that all the
 
8087
  data be buffered in memory. (Robert Collins)
 
8088
 
 
8089
* New methods on ``bzrlib.knit.KnitVersionedFile``:
 
8090
  ``get_data_stream(versions)``, ``insert_data_stream(stream)`` and
 
8091
  ``get_format_signature()``.  These provide some infrastructure for
 
8092
  efficiently streaming the knit data for a set of versions over the smart
 
8093
  protocol.
 
8094
 
 
8095
* Knits with no annotation cache still produce correct annotations.
 
8096
  (Aaron Bentley)
 
8097
 
 
8098
* Three new methods have been added to ``bzrlib.trace``:
 
8099
  ``set_verbosity_level``, ``get_verbosity_level`` and ``is_verbose``.
 
8100
  ``set_verbosity_level`` expects a numeric value: negative for quiet,
 
8101
  zero for normal, positive for verbose. The size of the number can be
 
8102
  used to determine just how quiet or verbose the application should be.
 
8103
  The existing ``be_quiet`` and ``is_quiet`` routines have been
 
8104
  integrated into this new scheme. (Ian Clatworthy)
 
8105
 
 
8106
* Options can now be delcared with a ``custom_callback`` parameter. If
 
8107
  set, this routine is called after the option is processed. This feature
 
8108
  is now used by the standard options ``verbose`` and ``quiet`` so that
 
8109
  setting one implicitly resets the other. (Ian Clatworthy)
 
8110
 
 
8111
* Rather than declaring a new option from scratch in order to provide
 
8112
  custom help, a centrally registered option can be decorated using the
 
8113
  new ``bzrlib.Option.custom_help`` routine. In particular, this routine
 
8114
  is useful when declaring better help for the ``verbose`` and ``quiet``
 
8115
  standard options as the base definition of these is now more complex
 
8116
  than before thanks to their use of a custom callback. (Ian Clatworthy)
 
8117
 
 
8118
* Tree._iter_changes(specific_file=[]) now iterates through no files,
 
8119
  instead of iterating through all files.  None is used to iterate through
 
8120
  all files.  (Aaron Bentley)
 
8121
 
 
8122
* WorkingTree.revert() now accepts None to revert all files.  The use of
 
8123
  [] to revert all files is deprecated.  (Aaron Bentley)
 
8124
 
 
8125
 
 
8126
bzr 0.90
 
8127
########
 
8128
 
 
8129
:Released: 2007-08-28
 
8130
 
 
8131
Improvements
 
8132
************
 
8133
 
 
8134
* Documentation is now organized into multiple directories with a level
 
8135
  added for different languages or locales. Added the Mini Tutorial
 
8136
  and Quick Start Summary (en) documents from the Wiki, improving the
 
8137
  content and readability of the former. Formatted NEWS as Release Notes
 
8138
  complete with a Table of Conents, one heading per release. Moved the
 
8139
  Developer Guide into the main document catalog and provided a link
 
8140
  from the developer document catalog back to the main one.
 
8141
  (Ian Clatworthy, Sabin Iacob, Alexander Belchenko)
 
8142
 
 
8143
 
 
8144
API Changes
 
8145
***********
 
8146
 
 
8147
* The static convenience method ``BzrDir.create_repository``
 
8148
  is deprecated.  Callers should instead create a ``BzrDir`` instance
 
8149
  and call ``create_repository`` on that.  (Martin Pool)
 
8150
 
 
8151
 
 
8152
bzr 0.90rc1
 
8153
###########
 
8154
 
 
8155
:Released: 2007-08-14
 
8156
 
 
8157
Bugfixes
 
8158
********
 
8159
 
 
8160
* ``bzr init`` should connect to the remote location one time only.  We
 
8161
  have been connecting several times because we forget to pass around the
 
8162
  Transport object. This modifies ``BzrDir.create_branch_convenience``,
 
8163
  so that we can give it the Transport we already have.
 
8164
  (John Arbash Meinel, Vincent Ladeuil, #111702)
 
8165
 
 
8166
* Get rid of sftp connection cache (get rid of the FTP one too).
 
8167
  (Vincent Ladeuil, #43731)
 
8168
 
 
8169
* bzr branch {local|remote} remote don't try to create a working tree
 
8170
  anymore.
 
8171
  (Vincent Ladeuil, #112173)
 
8172
 
 
8173
* All identified multiple connections for a single bzr command have been
 
8174
  fixed. See bzrlib/tests/commands directory.
 
8175
  (Vincent Ladeuil)
 
8176
 
 
8177
* ``bzr rm`` now does not insist on ``--force`` to delete files that
 
8178
  have been renamed but not otherwise modified.  (Marius Kruger,
 
8179
  #111664)
 
8180
 
 
8181
* ``bzr selftest --bench`` no longer emits deprecation warnings
 
8182
  (Lukáš Lalinský)
 
8183
 
 
8184
* ``bzr status`` now honours FILE parameters for conflict lists
 
8185
  (Aaron Bentley, #127606)
 
8186
 
 
8187
* ``bzr checkout`` now honours -r when reconstituting a working tree.
 
8188
  It also honours -r 0.  (Aaron Bentley, #127708)
 
8189
 
 
8190
* ``bzr add *`` no more fails on Windows if working tree contains
 
8191
  non-ascii file names. (Kuno Meyer, #127361)
 
8192
 
 
8193
* allow ``easy_install bzr`` runs without fatal errors.
 
8194
  (Alexander Belchenko, #125521)
 
8195
 
 
8196
* Graph._filter_candidate_lca does not raise KeyError if a candidate
 
8197
  is eliminated just before it would normally be examined.  (Aaron Bentley)
 
8198
 
 
8199
* SMTP connection failures produce a nice message, not a traceback.
 
8200
  (Aaron Bentley)
 
8201
 
 
8202
Improvements
 
8203
************
 
8204
 
 
8205
* Don't show "dots" progress indicators when run non-interactively, such
 
8206
  as from cron.  (Martin Pool)
 
8207
 
 
8208
* ``info`` now formats locations more nicely and lists "submit" and
 
8209
  "public" branches (Aaron Bentley)
 
8210
 
 
8211
* New ``pack`` command that will trigger database compression within
 
8212
  the repository (Robert Collins)
 
8213
 
 
8214
* Implement ``_KnitIndex._load_data`` in a pyrex extension. The pyrex
 
8215
  version is approximately 2-3x faster at parsing a ``.kndx`` file.
 
8216
  Which yields a measurable improvement for commands which have to
 
8217
  read from the repository, such as a 1s => 0.75s improvement in
 
8218
  ``bzr diff`` when there are changes to be shown.  (John Arbash Meinel)
 
8219
 
 
8220
* Merge is now faster.  Depending on the scenario, it can be more than 2x
 
8221
  faster. (Aaron Bentley)
 
8222
 
 
8223
* Give a clearer warning, and allow ``python setup.py install`` to
 
8224
  succeed even if pyrex is not available.
 
8225
  (John Arbash Meinel)
 
8226
 
 
8227
* ``DirState._read_dirblocks`` now has an optional Pyrex
 
8228
  implementation. This improves the speed of any command that has to
 
8229
  read the entire DirState. (``diff``, ``status``, etc, improve by
 
8230
  about 10%).
 
8231
  ``bisect_dirblocks`` has also been improved, which helps all
 
8232
  ``_get_entry`` type calls (whenever we are searching for a
 
8233
  particular entry in the in-memory DirState).
 
8234
  (John Arbash Meinel)
 
8235
 
 
8236
* ``bzr pull`` and ``bzr push`` no longer do a complete walk of the
 
8237
  branch revision history for ui display unless -v is supplied.
 
8238
  (Robert Collins)
 
8239
 
 
8240
* ``bzr log -rA..B`` output shifted to the left margin if the log only
 
8241
  contains merge revisions. (Kent Gibson)
 
8242
 
 
8243
* The ``plugins`` command is now public with improved help.
 
8244
  (Ian Clatworthy)
 
8245
 
 
8246
* New bundle and merge directive formats are faster to generate, and
 
8247
 
 
8248
* Annotate merge now works when there are local changes. (Aaron Bentley)
 
8249
 
 
8250
* Commit now only shows the progress in terms of directories instead of
 
8251
  entries. (Ian Clatworthy)
 
8252
 
 
8253
* Fix ``KnitRepository.get_revision_graph`` to not request the graph 2
 
8254
  times. This makes ``get_revision_graph`` 2x faster. (John Arbash
 
8255
  Meinel)
 
8256
 
 
8257
* Fix ``VersionedFile.get_graph()`` to avoid using
 
8258
  ``set.difference_update(other)``, which has bad scaling when
 
8259
  ``other`` is large. This improves ``VF.get_graph([version_id])`` for
 
8260
  a 12.5k graph from 2.9s down to 200ms. (John Arbash Meinel)
 
8261
 
 
8262
* The ``--lsprof-file`` option now generates output for KCacheGrind if
 
8263
  the file starts with ``callgrind.out``. This matches the default file
 
8264
  filtering done by KCacheGrind's Open Dialog. (Ian Clatworthy)
 
8265
 
 
8266
* Fix ``bzr update`` to avoid an unnecessary
 
8267
  ``branch.get_master_branch`` call, which avoids 1 extra connection
 
8268
  to the remote server. (Partial fix for #128076, John Arbash Meinel)
 
8269
 
 
8270
* Log errors from the smart server in the trace file, to make debugging
 
8271
  test failures (and live failures!) easier.  (Andrew Bennetts)
 
8272
 
 
8273
* The HTML version of the man page has been superceded by a more
 
8274
  comprehensive manual called the Bazaar User Reference. This manual
 
8275
  is completed generated from the online help topics. As part of this
 
8276
  change, limited reStructuredText is now explicitly supported in help
 
8277
  topics and command help with 'unnatural' markup being removed prior
 
8278
  to display by the online help or inclusion in the man page.
 
8279
  (Ian Clatworthy)
 
8280
 
 
8281
* HTML documentation now use files extension ``*.html``
 
8282
  (Alexander Belchenko)
 
8283
 
 
8284
* The cache of ignore definitions is now cleared in WorkingTree.unlock()
 
8285
  so that changes to .bzrignore aren't missed. (#129694, Daniel Watkins)
 
8286
 
 
8287
* ``bzr selftest --strict`` fails if there are any missing features or
 
8288
  expected test failures. (Daniel Watkins, #111914)
 
8289
 
 
8290
* Link to registration survey added to README. (Ian Clatworthy)
 
8291
 
 
8292
* Windows standalone installer show link to registration survey
 
8293
  when installation finished. (Alexander Belchenko)
 
8294
 
 
8295
Library API Breaks
 
8296
******************
 
8297
 
 
8298
* Deprecated dictionary ``bzrlib.option.SHORT_OPTIONS`` removed.
 
8299
  Options are now required to provide a help string and it must
 
8300
  comply with the style guide by being one or more sentences with an
 
8301
  initial capital and final period. (Martin Pool)
 
8302
 
 
8303
* KnitIndex.get_parents now returns tuples. (Robert Collins)
 
8304
 
 
8305
* Ancient unused ``Repository.text_store`` attribute has been removed.
 
8306
  (Robert Collins)
 
8307
 
 
8308
* The ``bzrlib.pack`` interface has changed to use tuples of bytestrings
 
8309
  rather than just bytestrings, making it easier to represent multiple
 
8310
  element names. As this interface was not used by any internal facilities
 
8311
  since it was introduced in 0.18 no API compatibility is being preserved.
 
8312
  The serialised form of these packs is identical with 0.18 when a single
 
8313
  element tuple is in use. (Robert Collins)
 
8314
 
 
8315
Internals
 
8316
*********
 
8317
 
 
8318
* merge now uses ``iter_changes`` to calculate changes, which makes room for
 
8319
  future performance increases.  It is also more consistent with other
 
8320
  operations that perform comparisons, and reduces reliance on
 
8321
  Tree.inventory.  (Aaron Bentley)
 
8322
 
 
8323
* Refactoring of transport classes connected to a remote server.
 
8324
  ConnectedTransport is a new class that serves as a basis for all
 
8325
  transports needing to connect to a remote server.  transport.split_url
 
8326
  have been deprecated, use the static method on the object instead. URL
 
8327
  tests have been refactored too.
 
8328
  (Vincent Ladeuil)
 
8329
 
 
8330
* Better connection sharing for ConnectedTransport objects.
 
8331
  transport.get_transport() now accepts a 'possible_transports' parameter.
 
8332
  If a newly requested transport can share a connection with one of the
 
8333
  list, it will.
 
8334
  (Vincent Ladeuil)
 
8335
 
 
8336
* Most functions now accept ``bzrlib.revision.NULL_REVISION`` to indicate
 
8337
  the null revision, and consider using ``None`` for this purpose
 
8338
  deprecated.  (Aaron Bentley)
 
8339
 
 
8340
* New ``index`` module with abstract index functionality. This will be
 
8341
  used during the planned changes in the repository layer. Currently the
 
8342
  index layer provides a graph aware immutable index, a builder for the
 
8343
  same index type to allow creating them, and finally a composer for
 
8344
  such indices to allow the use of many indices in a single query. The
 
8345
  index performance is not optimised, however the API is stable to allow
 
8346
  development on top of the index. (Robert Collins)
 
8347
 
 
8348
* ``bzrlib.dirstate.cmp_by_dirs`` can be used to compare two paths by
 
8349
  their directory sections. This is equivalent to comparing
 
8350
  ``path.split('/')``, only without having to split the paths.
 
8351
  This has a Pyrex implementation available.
 
8352
  (John Arbash Meinel)
 
8353
 
 
8354
* New transport decorator 'unlistable+' which disables the list_dir
 
8355
  functionality for testing.
 
8356
 
 
8357
* Deprecated ``change_entry`` in transform.py. (Ian Clatworthy)
 
8358
 
 
8359
* RevisionTree.get_weave is now deprecated.  Tree.plan_merge is now used
 
8360
  for performing annotate-merge.  (Aaron Bentley)
 
8361
 
 
8362
* New EmailMessage class to create email messages. (Adeodato Simó)
 
8363
 
 
8364
* Unused functions on the private interface KnitIndex have been removed.
 
8365
  (Robert Collins)
 
8366
 
 
8367
* New ``knit.KnitGraphIndex`` which provides a ``KnitIndex`` layered on top
 
8368
  of a ``index.GraphIndex``. (Robert Collins)
 
8369
 
 
8370
* New ``knit.KnitVersionedFile.iter_parents`` method that allows querying
 
8371
  the parents of many knit nodes at once, reducing round trips to the
 
8372
  underlying index. (Robert Collins)
 
8373
 
 
8374
* Graph now has an is_ancestor method, various bits use it.
 
8375
  (Aaron Bentley)
 
8376
 
 
8377
* The ``-Dhpss`` flag now includes timing information. As well as
 
8378
  logging when a new connection is opened. (John Arbash Meinel)
 
8379
 
 
8380
* ``bzrlib.pack.ContainerWriter`` now returns an offset, length tuple to
 
8381
  callers when inserting data, allowing generation of readv style access
 
8382
  during pack creation, without needing a separate pass across the output
 
8383
  pack to gather such details. (Robert Collins)
 
8384
 
 
8385
* ``bzrlib.pack.make_readv_reader`` allows readv based access to pack
 
8386
  files that are stored on a transport. (Robert Collins)
 
8387
 
 
8388
* New ``Repository.has_same_location`` method that reports if two
 
8389
  repository objects refer to the same repository (although with some risk
 
8390
  of false negatives).  (Andrew Bennetts)
 
8391
 
 
8392
* InterTree.compare now passes require_versioned on correctly.
 
8393
  (Marius Kruger)
 
8394
 
 
8395
* New methods on Repository - ``start_write_group``,
 
8396
  ``commit_write_group``, ``abort_write_group`` and ``is_in_write_group`` -
 
8397
  which provide a clean hook point for transactional Repositories - ones
 
8398
  where all the data for a fetch or commit needs to be made atomically
 
8399
  available in one step. This allows the write lock to remain while making
 
8400
  a series of data insertions.  (e.g. data conversion). (Robert Collins)
 
8401
 
 
8402
* In ``bzrlib.knit`` the internal interface has been altered to use
 
8403
  3-tuples (index, pos, length) rather than two-tuples (pos, length) to
 
8404
  describe where data in a knit is, allowing knits to be split into
 
8405
  many files. (Robert Collins)
 
8406
 
 
8407
* ``bzrlib.knit._KnitData`` split into cache management and physical access
 
8408
  with two access classes - ``_PackAccess`` and ``_KnitAccess`` defined.
 
8409
  The former provides access into a .pack file, and the latter provides the
 
8410
  current production repository form of .knit files. (Robert Collins)
 
8411
 
 
8412
Testing
 
8413
*******
 
8414
 
 
8415
* Remove selftest ``--clean-output``, ``--numbered-dirs`` and
 
8416
  ``--keep-output`` options, which are obsolete now that tests
 
8417
  are done within directories in $TMPDIR.  (Martin Pool)
 
8418
 
 
8419
* The SSH_AUTH_SOCK environment variable is now reset to avoid
 
8420
  interaction with any running ssh agents.  (Jelmer Vernooij, #125955)
 
8421
 
 
8422
* run_bzr_subprocess handles parameters the same way as run_bzr:
 
8423
  either a string or a list of strings should be passed as the first
 
8424
  parameter.  Varargs-style parameters are deprecated. (Aaron Bentley)
 
8425
 
 
8426
 
 
8427
bzr 0.18
 
8428
########
 
8429
 
 
8430
:Released:  2007-07-17
 
8431
 
 
8432
Bugfixes
 
8433
********
 
8434
 
 
8435
* Fix 'bzr add' crash under Win32 (Kuno Meyer)
 
8436
 
 
8437
 
 
8438
bzr 0.18rc1
 
8439
###########
 
8440
 
 
8441
:Released:  2007-07-10
 
8442
 
 
8443
Bugfixes
 
8444
********
 
8445
 
 
8446
* Do not suppress pipe errors, etc. in non-display commands
 
8447
  (Alexander Belchenko, #87178)
 
8448
 
 
8449
* Display a useful error message when the user requests to annotate
 
8450
  a file that is not present in the specified revision.
 
8451
  (James Westby, #122656)
 
8452
 
 
8453
* Commands that use status flags now have a reference to 'help
 
8454
  status-flags'.  (Daniel Watkins, #113436)
 
8455
 
 
8456
* Work around python-2.4.1 inhability to correctly parse the
 
8457
  authentication header.
 
8458
  (Vincent Ladeuil, #121889)
 
8459
 
 
8460
* Use exact encoding for merge directives. (Adeodato Simó, #120591)
 
8461
 
 
8462
* Fix tempfile permissions error in smart server tar bundling under
 
8463
  Windows. (Martin _, #119330)
 
8464
 
 
8465
* Fix detection of directory entries in the inventory. (James Westby)
 
8466
 
 
8467
* Fix handling of http code 400: Bad Request When issuing too many ranges.
 
8468
  (Vincent Ladeuil, #115209)
 
8469
 
 
8470
* Issue a CONNECT request when connecting to an https server
 
8471
  via a proxy to enable SSL tunneling.
 
8472
  (Vincent Ladeuil, #120678)
 
8473
 
 
8474
* Fix ``bzr log -r`` to support selecting merge revisions, both
 
8475
  individually and as part of revision ranges.
 
8476
  (Kent Gibson, #4663)
 
8477
 
 
8478
* Don't leave cruft behind when failing to acquire a lockdir.
 
8479
  (Martin Pool, #109169)
 
8480
 
 
8481
* Don't use the '-f' strace option during tests.
 
8482
  (Vincent Ladeuil, #102019).
 
8483
 
 
8484
* Warn when setting ``push_location`` to a value that will be masked by
 
8485
  locations.conf.  (Aaron Bentley, #122286)
 
8486
 
 
8487
* Fix commit ordering in corner case (Aaron Bentley, #94975)
 
8488
 
 
8489
*  Make annotate behave in a non-ASCII world (Adeodato Simó).
 
8490
 
 
8491
Improvements
 
8492
************
 
8493
 
 
8494
* The --lsprof-file option now dumps a text rendering of the profiling
 
8495
  information if the filename ends in ".txt". It will also convert the
 
8496
  profiling information to a format suitable for KCacheGrind if the
 
8497
  output filename ends in ".callgrind". Fixes to the lsprofcalltree
 
8498
  conversion process by Jean Paul Calderone and Itamar were also merged.
 
8499
  See http://ddaa.net/blog/python/lsprof-calltree. (Ian Clatworthy)
 
8500
 
 
8501
* ``info`` now defaults to non-verbose mode, displaying only paths and
 
8502
  abbreviated format info.  ``info -v`` displays all the information
 
8503
  formerly displayed by ``info``.  (Aaron Bentley, Adeodato Simó)
 
8504
 
 
8505
* ``bzr missing`` now has better option names ``--this`` and ``--other``.
 
8506
  (Elliot Murphy)
 
8507
 
 
8508
* The internal ``weave-list`` command has become ``versionedfile-list``,
 
8509
  and now lists knits as well as weaves.  (Aaron Bentley)
 
8510
 
 
8511
* Automatic merge base selection uses a faster algorithm that chooses
 
8512
  better bases in criss-cross merge situations (Aaron Bentley)
 
8513
 
 
8514
* Progress reporting in ``commit`` has been improved. The various logical
 
8515
  stages are now reported on as follows, namely:
 
8516
 
 
8517
  * Collecting changes [Entry x/y] - Stage n/m
 
8518
  * Saving data locally - Stage n/m
 
8519
  * Uploading data to master branch - Stage n/m
 
8520
  * Updating the working tree - Stage n/m
 
8521
  * Running post commit hooks - Stage n/m
 
8522
 
 
8523
  If there is no master branch, the 3rd stage is omitted and the total
 
8524
  number of stages is adjusted accordingly.
 
8525
 
 
8526
  Each hook that is run after commit is listed with a name (as hooks
 
8527
  can be slow it is useful feedback).
 
8528
  (Ian Clatworthy, Robert Collins)
 
8529
 
 
8530
* Various operations that are now faster due to avoiding unnecessary
 
8531
  topological sorts. (Aaron Bentley)
 
8532
 
 
8533
* Make merge directives robust against broken bundles. (Aaron Bentley)
 
8534
 
 
8535
* The lsprof filename note is emitted via trace.note(), not standard
 
8536
  output.  (Aaron Bentley)
 
8537
 
 
8538
* ``bzrlib`` now exports explicit API compatibility information to assist
 
8539
  library users and plugins. See the ``bzrlib.api`` module for details.
 
8540
  (Robert Collins)
 
8541
 
 
8542
* Remove unnecessary lock probes when acquiring a lockdir.
 
8543
  (Martin Pool)
 
8544
 
 
8545
* ``bzr --version`` now shows the location of the bzr log file, which
 
8546
  is especially useful on Windows.  (Martin Pool)
 
8547
 
 
8548
* -D now supports hooks to get debug tracing of hooks (though its currently
 
8549
  minimal in nature). (Robert Collins)
 
8550
 
 
8551
* Long log format reports deltas on merge revisions.
 
8552
  (John Arbash Meinel, Kent Gibson)
 
8553
 
 
8554
* Make initial push over ftp more resilient. (John Arbash Meinel)
 
8555
 
 
8556
* Print a summary of changes for update just like pull does.
 
8557
  (Daniel Watkins, #113990)
 
8558
 
 
8559
* Add a -Dhpss option to trace smart protocol requests and responses.
 
8560
  (Andrew Bennetts)
 
8561
 
 
8562
Library API Breaks
 
8563
******************
 
8564
 
 
8565
* Testing cleanups -
 
8566
  ``bzrlib.repository.RepositoryTestProviderAdapter`` has been moved
 
8567
  to ``bzrlib.tests.repository_implementations``;
 
8568
  ``bzrlib.repository.InterRepositoryTestProviderAdapter`` has been moved
 
8569
  to ``bzrlib.tests.interrepository_implementations``;
 
8570
  ``bzrlib.transport.TransportTestProviderAdapter`` has moved to
 
8571
  ``bzrlib.tests.test_transport_implementations``.
 
8572
  ``bzrlib.branch.BranchTestProviderAdapter`` has moved to
 
8573
  ``bzrlib.tests.branch_implementations``.
 
8574
  ``bzrlib.bzrdir.BzrDirTestProviderAdapter`` has moved to
 
8575
  ``bzrlib.tests.bzrdir_implementations``.
 
8576
  ``bzrlib.versionedfile.InterVersionedFileTestProviderAdapter`` has moved
 
8577
  to ``bzrlib.tests.interversionedfile_implementations``.
 
8578
  ``bzrlib.store.revision.RevisionStoreTestProviderAdapter`` has moved to
 
8579
  ``bzrlib.tests.revisionstore_implementations``.
 
8580
  ``bzrlib.workingtree.WorkingTreeTestProviderAdapter`` has moved to
 
8581
  ``bzrlib.tests.workingtree_implementations``.
 
8582
  These changes are an API break in the testing infrastructure only.
 
8583
  (Robert Collins)
 
8584
 
 
8585
* Relocate TestCaseWithRepository to be more central. (Robert Collins)
 
8586
 
 
8587
* ``bzrlib.add.smart_add_tree`` will no longer perform glob expansion on
 
8588
  win32. Callers of the function should do this and use the new
 
8589
  ``MutableTree.smart_add`` method instead. (Robert Collins)
 
8590
 
 
8591
* ``bzrlib.add.glob_expand_for_win32`` is now
 
8592
  ``bzrlib.win32utils.glob_expand``.  (Robert Collins)
 
8593
 
 
8594
* ``bzrlib.add.FastPath`` is now private and moved to
 
8595
  ``bzrlib.mutabletree._FastPath``. (Robert Collins, Martin Pool)
 
8596
 
 
8597
* ``LockDir.wait`` removed.  (Martin Pool)
 
8598
 
 
8599
* The ``SmartServer`` hooks API has changed for the ``server_started`` and
 
8600
  ``server_stopped`` hooks. The first parameter is now an iterable of
 
8601
  backing URLs rather than a single URL. This is to reflect that many
 
8602
  URLs may map to the external URL of the server. E.g. the server interally
 
8603
  may have a chrooted URL but also the local file:// URL will be at the
 
8604
  same location. (Robert Collins)
 
8605
 
 
8606
Internals
 
8607
*********
 
8608
 
 
8609
* New SMTPConnection class to unify email handling.  (Adeodato Simó)
 
8610
 
 
8611
* Fix documentation of BzrError. (Adeodato Simó)
 
8612
 
 
8613
* Make BzrBadParameter an internal error. (Adeodato Simó)
 
8614
 
 
8615
* Remove use of 'assert False' to raise an exception unconditionally.
 
8616
  (Martin Pool)
 
8617
 
 
8618
* Give a cleaner error when failing to decode knit index entry.
 
8619
  (Martin Pool)
 
8620
 
 
8621
* TreeConfig would mistakenly search the top level when asked for options
 
8622
  from a section. It now respects the section argument and only
 
8623
  searches the specified section. (James Westby)
 
8624
 
 
8625
* Improve ``make api-docs`` output. (John Arbash Meinel)
 
8626
 
 
8627
* Use os.lstat rather than os.stat for osutils.make_readonly and
 
8628
  osutils.make_writeable. This makes the difftools plugin more
 
8629
  robust when dangling symlinks are found. (Elliot Murphy)
 
8630
 
 
8631
* New ``-Dlock`` option to log (to ~/.bzr.log) information on when
 
8632
  lockdirs are taken or released.  (Martin Pool)
 
8633
 
 
8634
* ``bzrlib`` Hooks are now nameable using ``Hooks.name_hook``. This
 
8635
  allows a nicer UI when hooks are running as the current hook can
 
8636
  be displayed. (Robert Collins)
 
8637
 
 
8638
* ``Transport.get`` has had its interface made more clear for ease of use.
 
8639
  Retrieval of a directory must now fail with either 'PathError' at open
 
8640
  time, or raise 'ReadError' on a read. (Robert Collins)
 
8641
 
 
8642
* New method ``_maybe_expand_globs`` on the ``Command`` class for
 
8643
  dealing with unexpanded glob lists - e.g. on the win32 platform. This
 
8644
  was moved from ``bzrlib.add._prepare_file_list``. (Robert Collins)
 
8645
 
 
8646
* ``bzrlib.add.smart_add`` and ``bzrlib.add.smart_add_tree`` are now
 
8647
  deprecated in favour of ``MutableTree.smart_add``. (Robert Collins,
 
8648
  Martin Pool)
 
8649
 
 
8650
* New method ``external_url`` on Transport for obtaining the url to
 
8651
  hand to external processes. (Robert Collins)
 
8652
 
 
8653
* Teach windows installers to build pyrex/C extensions.
 
8654
  (Alexander Belchenko)
 
8655
 
 
8656
Testing
 
8657
*******
 
8658
 
 
8659
* Removed the ``--keep-output`` option from selftest and clean up test
 
8660
  directories as they're used.  This reduces the IO load from
 
8661
  running the test suite and cuts the time by about half.
 
8662
  (Andrew Bennetts, Martin Pool)
 
8663
 
 
8664
* Add scenarios as a public attribute on the TestAdapter classes to allow
 
8665
  modification of the generated scenarios before adaption and easier
 
8666
  testing. (Robert Collins)
 
8667
 
 
8668
* New testing support class ``TestScenarioApplier`` which multiplies
 
8669
  out a single teste by a list of supplied scenarios. (RobertCollins)
 
8670
 
 
8671
* Setting ``repository_to_test_repository`` on a repository_implementations
 
8672
  test will cause it to be called during repository creation, allowing the
 
8673
  testing of repository classes which are not based around the Format
 
8674
  concept. For example a repository adapter can be tested in this manner,
 
8675
  by altering the repository scenarios to include a scenario that sets this
 
8676
  attribute during the test parameterisation in
 
8677
  ``bzrlib.tests.repository.repository_implementations``. (Robert Collins)
 
8678
 
 
8679
* Clean up many of the APIs for blackbox testing of Bazaar.  The standard
 
8680
  interface is now self.run_bzr.  The command to run can be passed as
 
8681
  either a list of parameters, a string containing the command line, or
 
8682
  (deprecated) varargs parameters.  (Martin Pool)
 
8683
 
 
8684
* The base TestCase now isolates tests from -D parameters by clearing
 
8685
  ``debug.debug_flags`` and restores it afterwards. (Robert Collins)
 
8686
 
 
8687
* Add a relpath parameter to get_transport methods in test framework to
 
8688
  avoid useless cloning.
 
8689
  (Vincent Ladeuil, #110448)
 
8690
 
 
8691
 
 
8692
bzr 0.17
 
8693
########
 
8694
 
 
8695
:Released:  2007-06-18
 
8696
 
 
8697
Bugfixes
 
8698
********
 
8699
 
 
8700
* Fix crash of commit due to wrong lookup of filesystem encoding.
 
8701
  (Colin Watson, #120647)
 
8702
 
 
8703
* Revert logging just to stderr in commit as broke unicode filenames.
 
8704
  (Aaron Bentley, Ian Clatworthy, #120930)
 
8705
 
 
8706
 
 
8707
bzr 0.17rc1
 
8708
###########
 
8709
 
 
8710
:Released:  2007-06-12
 
8711
 
 
8712
Notes When Upgrading
 
8713
********************
 
8714
 
 
8715
* The kind() and is_executable() APIs on the WorkingTree interface no
 
8716
  longer implicitly (read) locks and unlocks the tree. This *might*
 
8717
  impact some plug-ins and tools using this part of the API. If you find
 
8718
  an issue that may be caused by this change, please let us know,
 
8719
  particularly the plug-in/tool maintainer. If encountered, the API
 
8720
  fix is to surround kind() and is_executable() calls with lock_read()
 
8721
  and unlock() like so::
 
8722
 
 
8723
    work_tree.lock_read()
 
8724
    try:
 
8725
        kind = work_tree.kind(...)
 
8726
    finally:
 
8727
        work_tree.unlock()
 
8728
 
 
8729
Internals
 
8730
*********
 
8731
* Rework of LogFormatter API to provide beginning/end of log hooks and to
 
8732
  encapsulate the details of the revision to be logged in a LogRevision
 
8733
  object.
 
8734
  In long log formats, merge revision ids are only shown when --show-ids
 
8735
  is specified, and are labelled "revision-id:", as per mainline
 
8736
  revisions, instead of "merged:". (Kent Gibson)
 
8737
 
 
8738
* New ``BranchBuilder`` API which allows the construction of particular
 
8739
  histories quickly. Useful for testing and potentially other applications
 
8740
  too. (Robert Collins)
 
8741
 
 
8742
Improvements
 
8743
************
 
8744
 
 
8745
* There are two new help topics, working-trees and repositories that
 
8746
  attempt to explain these concepts. (James Westby, John Arbash Meinel,
 
8747
  Aaron Bentley)
 
8748
 
 
8749
* Added ``bzr log --limit`` to report a limited number of revisions.
 
8750
  (Kent Gibson, #3659)
 
8751
 
 
8752
* Revert does not try to preserve file contents that were originally
 
8753
  produced by reverting to a historical revision.  (Aaron Bentley)
 
8754
 
 
8755
* ``bzr log --short`` now includes ``[merge]`` for revisions which
 
8756
  have more than one parent. This is a small improvement to help
 
8757
  understanding what changes have occurred
 
8758
  (John Arbash Meinel, #83887)
 
8759
 
 
8760
* TreeTransform avoids many renames when contructing large trees,
 
8761
  improving speed.  3.25x speedups have been observed for construction of
 
8762
  kernel-sized-trees, and checkouts are 1.28x faster.  (Aaron Bentley)
 
8763
 
 
8764
* Commit on large trees is now faster. In my environment, a commit of
 
8765
  a small change to the Mozilla tree (55k files) has dropped from
 
8766
  66 seconds to 32 seconds. For a small tree of 600 files, commit of a
 
8767
  small change is 33% faster. (Ian Clatworthy)
 
8768
 
 
8769
* New --create-prefix option to bzr init, like for push.  (Daniel Watkins,
 
8770
  #56322)
 
8771
 
 
8772
Bugfixes
 
8773
********
 
8774
 
 
8775
* ``bzr push`` should only connect to the remote location one time.
 
8776
  We have been connecting 3 times because we forget to pass around
 
8777
  the Transport object. This adds ``BzrDir.clone_on_transport()``, so
 
8778
  that we can pass in the Transport that we already have.
 
8779
  (John Arbash Meinel, #75721)
 
8780
 
 
8781
* ``DirState.set_state_from_inventory()`` needs to properly order
 
8782
  based on split paths, not just string paths.
 
8783
  (John Arbash Meinel, #115947)
 
8784
 
 
8785
* Let TestUIFactoy encode the password prompt with its own stdout.
 
8786
  (Vincent Ladeuil, #110204)
 
8787
 
 
8788
* pycurl should take use the range header that takes the range hint
 
8789
  into account.
 
8790
  (Vincent Ladeuil, #112719)
 
8791
 
 
8792
* WorkingTree4.get_file_sha1 no longer raises an exception when invoked
 
8793
  on a missing file.  (Aaron Bentley, #118186)
 
8794
 
 
8795
* WorkingTree.remove works correctly with tree references, and when pwd is
 
8796
  not the tree root. (Aaron Bentley)
 
8797
 
 
8798
* Merge no longer fails when a file is renamed in one tree and deleted
 
8799
  in the other. (Aaron Bentley, #110279)
 
8800
 
 
8801
* ``revision-info`` now accepts dotted revnos, doesn't require a tree,
 
8802
  and defaults to the last revision (Matthew Fuller, #90048)
 
8803
 
 
8804
* Tests no longer fail when BZR_REMOTE_PATH is set in the environment.
 
8805
  (Daniel Watkins, #111958)
 
8806
 
 
8807
* ``bzr branch -r revid:foo`` can be used to branch any revision in
 
8808
  your repository. (Previously Branch6 only supported revisions in your
 
8809
  mainline). (John Arbash Meinel, #115343)
 
8810
 
 
8811
bzr 0.16
 
8812
########
 
8813
 
 
8814
:Released:  2007-05-07
 
8815
 
 
8816
Bugfixes
 
8817
********
 
8818
 
 
8819
* Handle when you have 2 directories with similar names, but one has a
 
8820
  hyphen. (``'abc'`` versus ``'abc-2'``). The WT4._iter_changes
 
8821
  iterator was using direct comparison and ``'abc/a'`` sorts after
 
8822
  ``'abc-2'``, but ``('abc', 'a')`` sorts before ``('abc-2',)``.
 
8823
  (John Arbash Meinel, #111227)
 
8824
 
 
8825
* Handle when someone renames a file on disk without telling bzr.
 
8826
  Previously we would report the first file as missing, but not show
 
8827
  the new unknown file. (John Arbash Meinel, #111288)
 
8828
 
 
8829
* Avoid error when running hooks after pulling into or pushing from
 
8830
  a branch bound to a smartserver branch.  (Martin Pool, #111968)
 
8831
 
 
8832
Improvements
 
8833
************
 
8834
 
 
8835
* Move developer documentation to doc/developers/. This reduces clutter in
 
8836
  the root of the source tree and allows HACKING to be split into multiple
 
8837
  files. (Robert Collins, Alexander Belchenko)
 
8838
 
 
8839
* Clean up the ``WorkingTree4._iter_changes()`` internal loops as well as
 
8840
  ``DirState.update_entry()``. This optimizes the core logic for ``bzr
 
8841
  diff`` and ``bzr status`` significantly improving the speed of
 
8842
  both. (John Arbash Meinel)
 
8843
 
 
8844
bzr 0.16rc2
 
8845
###########
 
8846
 
 
8847
:Released:  2007-04-30
 
8848
 
 
8849
Bugfixes
 
8850
********
 
8851
 
 
8852
* Handle the case when you delete a file, and then rename another file
 
8853
  on top of it. Also handle the case of ``bzr rm --keep foo``. ``bzr
 
8854
  status`` should show the removed file and an unknown file in its
 
8855
  place. (John Arbash Meinel, #109993)
 
8856
 
 
8857
* Bundles properly read and write revision properties that have an
 
8858
  empty value. And when the value is not ASCII.
 
8859
  (John Arbash Meinel, #109613)
 
8860
 
 
8861
* Fix the bzr commit message to be in text mode.
 
8862
  (Alexander Belchenko, #110901)
 
8863
 
 
8864
* Also handle when you rename a file and create a file where it used
 
8865
  to be. (John Arbash Meinel, #110256)
 
8866
 
 
8867
* ``WorkingTree4._iter_changes`` should not descend into unversioned
 
8868
  directories. (John Arbash Meinel, #110399)
 
8869
 
 
8870
bzr 0.16rc1
 
8871
###########
 
8872
 
 
8873
:Released:  2007-04-26
 
8874
 
 
8875
Notes When Upgrading
 
8876
********************
 
8877
 
 
8878
* ``bzr remove`` and ``bzr rm`` will now remove the working file, if
 
8879
  it could be recovered again.
 
8880
  This has been done for consistency with svn and the unix rm command.
 
8881
  The old ``remove`` behaviour has been retained in the new option
 
8882
  ``bzr remove --keep``, which will just stop versioning the file,
 
8883
  but not delete it.
 
8884
  ``bzr remove --force`` have been added which will always delete the
 
8885
  files.
 
8886
  ``bzr remove`` is also more verbose.
 
8887
  (Marius Kruger, #82602)
 
8888
 
 
8889
Improvements
 
8890
************
 
8891
 
 
8892
* Merge directives can now be supplied as input to `merge` and `pull`,
 
8893
  like bundles can.  (Aaron Bentley)
 
8894
 
 
8895
* Sending the SIGQUIT signal to bzr, which can be done on Unix by
 
8896
  pressing Control-Backslash, drops bzr into a debugger.  Type ``'c'``
 
8897
  to continue.  This can be disabled by setting the environment variable
 
8898
  ``BZR_SIGQUIT_PDB=0``.  (Martin Pool)
 
8899
 
 
8900
* selftest now supports --list-only to list tests instead of running
 
8901
  them. (Ian Clatworthy)
 
8902
 
 
8903
* selftest now supports --exclude PATTERN (or -x PATTERN) to exclude
 
8904
  tests with names that match that regular expression.
 
8905
  (Ian Clatworthy, #102679)
 
8906
 
 
8907
* selftest now supports --randomize SEED to run tests in a random order.
 
8908
  SEED is typically the value 'now' meaning 'use the current time'.
 
8909
  (Ian Clatworthy, #102686)
 
8910
 
 
8911
* New option ``--fixes`` to commit, which stores bug fixing annotations as
 
8912
  revision properties. Built-in support for Launchpad, Debian, Trac and
 
8913
  Bugzilla bug trackers. (Jonathan Lange, James Henstridge, Robert Collins)
 
8914
 
 
8915
* New API, ``bzrlib.bugtracker.tracker_registry``, for adding support for
 
8916
  other bug trackers to ``fixes``. (Jonathan Lange, James Henstridge,
 
8917
  Robert Collins)
 
8918
 
 
8919
* ``selftest`` has new short options ``-f`` and ``-1``.  (Martin
 
8920
  Pool)
 
8921
 
 
8922
* ``bzrlib.tsort.MergeSorter`` optimizations. Change the inner loop
 
8923
  into using local variables instead of going through ``self._var``.
 
8924
  Improves the time to ``merge_sort`` a 10k revision graph by
 
8925
  approximately 40% (~700->400ms).  (John Arbash Meinel)
 
8926
 
 
8927
* ``make docs`` now creates a man page at ``man1/bzr.1`` fixing bug 107388.
 
8928
  (Robert Collins)
 
8929
 
 
8930
* ``bzr help`` now provides cross references to other help topics using
 
8931
  the _see_also facility on command classes. Likewise the bzr_man
 
8932
  documentation, and the bzr.1 man page also include this information.
 
8933
  (Robert Collins)
 
8934
 
 
8935
* Tags are now included in logs, that use the long log formatter.
 
8936
  (Erik Bågfors, Alexander Belchenko)
 
8937
 
 
8938
* ``bzr help`` provides a clearer message when a help topic cannot be
 
8939
  found. (Robert Collins, #107656)
 
8940
 
 
8941
* ``bzr help`` now accepts optional prefixes for command help. The help
 
8942
  for all commands can now be found at ``bzr help commands/COMMANDNAME``
 
8943
  as well as ``bzr help COMMANDNAME`` (which only works for commands
 
8944
  where the name is not the same as a more general help topic).
 
8945
  (Robert Collins)
 
8946
 
 
8947
* ``bzr help PLUGINNAME`` will now return the module docstring from the
 
8948
  plugin PLUGINNAME. (Robert Collins, #50408)
 
8949
 
 
8950
* New help topic ``urlspec`` which lists the availables transports.
 
8951
  (Goffredo Baroncelli)
 
8952
 
 
8953
* doc/server.txt updated to document the default bzr:// port
 
8954
  and also update the blurb about the hpss' current status.
 
8955
  (Robert Collins, #107125).
 
8956
 
 
8957
* ``bzr serve`` now listens on interface 0.0.0.0 by default, making it
 
8958
  serve out to the local LAN (and anyone in the world that can reach the
 
8959
  machine running ``bzr serve``. (Robert Collins, #98918)
 
8960
 
 
8961
* A new smart server protocol version has been added.  It prefixes requests
 
8962
  and responses with an explicit version identifier so that future protocol
 
8963
  revisions can be dealt with gracefully.  (Andrew Bennetts, Robert Collins)
 
8964
 
 
8965
* The bzr protocol version 2 indicates success or failure in every response
 
8966
  without depending on particular commands encoding that consistently,
 
8967
  allowing future client refactorings to be much more robust about error
 
8968
  handling. (Robert Collins, Martin Pool, Andrew Bennetts)
 
8969
 
 
8970
* The smart protocol over HTTP client has been changed to always post to the
 
8971
  same ``.bzr/smart`` URL under the original location when it can.  This allows
 
8972
  HTTP servers to only have to pass URLs ending in .bzr/smart to the smart
 
8973
  server handler, and not arbitrary ``.bzr/*/smart`` URLs.  (Andrew Bennetts)
 
8974
 
 
8975
* digest authentication is now supported for proxies and HTTP by the urllib
 
8976
  based http implementation. Tested against Apache 2.0.55 and Squid
 
8977
  2.6.5. Basic and digest authentication are handled coherently for HTTP
 
8978
  and proxy: if the user is provided in the url (bzr command line for HTTP,
 
8979
  proxy environment variables for proxies), the password is prompted for
 
8980
  (only once). If the password is provided, it is taken into account. Once
 
8981
  the first authentication is successful, all further authentication
 
8982
  roundtrips are avoided by preventively setting the right authentication
 
8983
  header(s).
 
8984
  (Vincent Ladeuil).
 
8985
 
 
8986
Internals
 
8987
*********
 
8988
 
 
8989
* bzrlib API compatability with 0.8 has been dropped, cleaning up some
 
8990
  code paths. (Robert Collins)
 
8991
 
 
8992
* Change the format of chroot urls so that they can be safely manipulated
 
8993
  by generic url utilities without causing the resulting urls to have
 
8994
  escaped the chroot. A side effect of this is that creating a chroot
 
8995
  requires an explicit action using a ChrootServer.
 
8996
  (Robert Collins, Andrew Bennetts)
 
8997
 
 
8998
* Deprecate ``Branch.get_root_id()`` because branches don't have root ids,
 
8999
  rather than fixing bug #96847.  (Aaron Bentley)
 
9000
 
 
9001
* ``WorkingTree.apply_inventory_delta`` provides a better alternative to
 
9002
  ``WorkingTree._write_inventory``.  (Aaron Bentley)
 
9003
 
 
9004
* Convenience method ``TestCase.expectFailure`` ensures that known failures
 
9005
  do not silently pass.  (Aaron Bentley)
 
9006
 
 
9007
* ``Transport.local_abspath`` now raises ``NotLocalUrl`` rather than
 
9008
  ``TransportNotPossible``. (Martin Pool, Ian Clatworthy)
 
9009
 
 
9010
* New SmartServer hooks facility. There are two initial hooks documented
 
9011
  in ``bzrlib.transport.smart.SmartServerHooks``. The two initial hooks allow
 
9012
  plugins to execute code upon server startup and shutdown.
 
9013
  (Robert Collins).
 
9014
 
 
9015
* SmartServer in standalone mode will now close its listening socket
 
9016
  when it stops, rather than waiting for garbage collection. This primarily
 
9017
  fixes test suite hangs when a test tries to connect to a shutdown server.
 
9018
  It may also help improve behaviour when dealing with a server running
 
9019
  on a specific port (rather than dynamically assigned ports).
 
9020
  (Robert Collins)
 
9021
 
 
9022
* Move most SmartServer code into a new package, bzrlib/smart.
 
9023
  bzrlib/transport/remote.py contains just the Transport classes that used
 
9024
  to be in bzrlib/transport/smart.py.  (Andrew Bennetts)
 
9025
 
 
9026
* urllib http implementation avoid roundtrips associated with
 
9027
  401 (and 407) errors once the authentication succeeds.
 
9028
  (Vincent Ladeuil).
 
9029
 
 
9030
* urlib http now supports querying the user for a proxy password if
 
9031
  needed. Realm is shown in the prompt for both HTTP and proxy
 
9032
  authentication when the user is required to type a password.
 
9033
  (Vincent Ladeuil).
 
9034
 
 
9035
* Renamed SmartTransport (and subclasses like SmartTCPTransport) to
 
9036
  RemoteTransport (and subclasses to RemoteTCPTransport, etc).  This is more
 
9037
  consistent with its new home in ``bzrlib/transport/remote.py``, and because
 
9038
  it's not really a "smart" transport, just one that does file operations
 
9039
  via remote procedure calls.  (Andrew Bennetts)
 
9040
 
 
9041
* The ``lock_write`` method of ``LockableFiles``, ``Repository`` and
 
9042
  ``Branch`` now accept a ``token`` keyword argument, so that separate
 
9043
  instances of those objects can share a lock if it has the right token.
 
9044
  (Andrew Bennetts, Robert Collins)
 
9045
 
 
9046
* New method ``get_branch_reference`` on ``BzrDir`` allows the detection of
 
9047
  branch references - which the smart server component needs.
 
9048
 
 
9049
* The Repository API ``make_working_trees`` is now permitted to return
 
9050
  False when ``set_make_working_trees`` is not implemented - previously
 
9051
  an unimplemented ``set_make_working_trees`` implied the result True
 
9052
  from ``make_working_trees``. This has been changed to accomodate the
 
9053
  smart server, where it does not make sense (at this point) to ever
 
9054
  make working trees by default. (Robert Collins)
 
9055
 
 
9056
* Command objects can now declare related help topics by having _see_also
 
9057
  set to a list of related topic. (Robert Collins)
 
9058
 
 
9059
* ``bzrlib.help`` now delegates to the Command class for Command specific
 
9060
  help. (Robert Collins)
 
9061
 
 
9062
* New class ``TransportListRegistry``, derived from the Registry class, which
 
9063
  simplifies tracking the available Transports. (Goffredo Baroncelli)
 
9064
 
 
9065
* New function ``Branch.get_revision_id_to_revno_map`` which will
 
9066
  return a dictionary mapping revision ids to dotted revnos. Since
 
9067
  dotted revnos are defined in the context of the branch tip, it makes
 
9068
  sense to generate them from a ``Branch`` object.
 
9069
  (John Arbash Meinel)
 
9070
 
 
9071
* Fix the 'Unprintable error' message display to use the repr of the
 
9072
  exception that prevented printing the error because the str value
 
9073
  for it is often not useful in debugging (e.g. KeyError('foo') has a
 
9074
  str() of 'foo' but a repr of 'KeyError('foo')' which is much more
 
9075
  useful. (Robert Collins)
 
9076
 
 
9077
* ``urlutils.normalize_url`` now unescapes unreserved characters, such as "~".
 
9078
  (Andrew Bennetts)
 
9079
 
 
9080
Bugfixes
 
9081
********
 
9082
 
 
9083
* Don't fail bundle selftest if email has 'two' embedded.
 
9084
  (Ian Clatworthy, #98510)
 
9085
 
 
9086
* Remove ``--verbose`` from ``bzr bundle``. It didn't work anyway.
 
9087
  (Robert Widhopf-Fenk, #98591)
 
9088
 
 
9089
* Remove ``--basis`` from the checkout/branch commands - it didn't work
 
9090
  properly and is no longer beneficial.
 
9091
  (Robert Collins, #53675, #43486)
 
9092
 
 
9093
* Don't produce encoding error when adding duplicate files.
 
9094
  (Aaron Bentley)
 
9095
 
 
9096
* Fix ``bzr log <file>`` so it only logs the revisions that changed
 
9097
  the file, and does it faster.
 
9098
  (Kent Gibson, John Arbash Meinel, #51980, #69477)
 
9099
 
 
9100
* Fix ``InterDirstateTre._iter_changes`` to handle when we come across
 
9101
  an empty versioned directory, which now has files in it.
 
9102
  (John Arbash Meinel, #104257)
 
9103
 
 
9104
* Teach ``common_ancestor`` to shortcut when the tip of one branch is
 
9105
  inside the ancestry of the other. Saves a lot of graph processing
 
9106
  (with an ancestry of 16k revisions, ``bzr merge ../already-merged``
 
9107
  changes from 2m10s to 13s).  (John Arbash Meinel, #103757)
 
9108
 
 
9109
* Fix ``show_diff_trees`` to handle the case when a file is modified,
 
9110
  and the containing directory is renamed. (The file path is different
 
9111
  in this versus base, but it isn't marked as a rename).
 
9112
  (John Arbash Meinel, #103870)
 
9113
 
 
9114
* FTP now works even when the FTP server does not support atomic rename.
 
9115
  (Aaron Bentley, #89436)
 
9116
 
 
9117
* Correct handling in bundles and merge directives of timezones with
 
9118
  that are not an integer number of hours offset from UTC.  Always
 
9119
  represent the epoch time in UTC to avoid problems with formatting
 
9120
  earlier times on win32.  (Martin Pool, Alexander Belchenko, John
 
9121
  Arbash Meinel)
 
9122
 
 
9123
* Typo in the help for ``register-branch`` fixed. (Robert Collins, #96770)
 
9124
 
 
9125
* "dirstate" and "dirstate-tags" formats now produce branches compatible
 
9126
  with old versions of bzr. (Aaron Bentley, #107168))
 
9127
 
 
9128
* Handle moving a directory when children have been added, removed,
 
9129
  and renamed. (John Arbash Meinel, #105479)
 
9130
 
 
9131
* Don't preventively use basic authentication for proxy before receiving a
 
9132
  407 error. Otherwise people willing to use other authentication schemes
 
9133
  may expose their password in the clear (or nearly). This add one
 
9134
  roundtrip in case basic authentication should be used, but plug the
 
9135
  security hole.
 
9136
  (Vincent Ladeuil)
 
9137
 
 
9138
* Handle http and proxy digest authentication.
 
9139
  (Vincent Ladeuil, #94034).
 
9140
 
 
9141
Testing
 
9142
*******
 
9143
 
 
9144
* Added ``bzrlib.strace.strace`` which will strace a single callable and
 
9145
  return a StraceResult object which contains just the syscalls involved
 
9146
  in running it. (Robert Collins)
 
9147
 
 
9148
* New test method ``reduceLockdirTimeout`` to drop the default (ui-centric)
 
9149
  default time down to one suitable for tests. (Andrew Bennetts)
 
9150
 
 
9151
* Add new ``vfs_transport_factory`` attribute on tests which provides the
 
9152
  common vfs backing for both the readonly and readwrite transports.
 
9153
  This allows the RemoteObject tests to back onto local disk or memory,
 
9154
  and use the existing ``transport_server`` attribute all tests know about
 
9155
  to be the smart server transport. This in turn allows tests to
 
9156
  differentiate between 'transport to access the branch', and
 
9157
  'transport which is a VFS' - which matters in Remote* tests.
 
9158
  (Robert Collins, Andrew Bennetts)
 
9159
 
 
9160
* The ``make_branch_and_tree`` method for tests will now create a
 
9161
  lightweight checkout for the tree if the ``vfs_transport_factory`` is not
 
9162
  a LocalURLServer. (Robert Collins, Andrew Bennetts)
 
9163
 
 
9164
* Branch implementation tests have been audited to ensure that all urls
 
9165
  passed to Branch APIs use proper urls, except when local-disk paths
 
9166
  are intended. This is so that tests correctly access the test transport
 
9167
  which is often not equivalent to local disk in Remote* tests. As part
 
9168
  of this many tests were adjusted to remove dependencies on local disk
 
9169
  access.
 
9170
  (Robert Collins, Andrew Bennetts)
 
9171
 
 
9172
* Mark bzrlib.tests and bzrlib.tests.TestUtil as providing assertFOO helper
 
9173
  functions by adding a ``__unittest`` global attribute. (Robert Collins,
 
9174
  Andrew Bennetts, Martin Pool, Jonathan Lange)
 
9175
 
 
9176
* Refactored proxy and authentication handling to simplify the
 
9177
  implementation of new auth schemes for both http and proxy.
 
9178
  (Vincent Ladeuil)
 
9179
 
 
9180
bzr 0.15
 
9181
########
 
9182
 
 
9183
:Released: 2007-04-01
 
9184
 
 
9185
Bugfixes
 
9186
********
 
9187
 
 
9188
* Handle incompatible repositories as a user issue when fetching.
 
9189
  (Aaron Bentley)
 
9190
 
 
9191
* Don't give a recommendation to upgrade when branching or
 
9192
  checking out a branch that contains an old-format working tree.
 
9193
  (Martin Pool)
 
9194
 
 
9195
bzr 0.15rc3
 
9196
###########
 
9197
 
 
9198
:Released:  2007-03-26
 
9199
 
 
9200
Changes
 
9201
*******
 
9202
 
 
9203
* A warning is now displayed when opening working trees in older
 
9204
  formats, to encourage people to upgrade to WorkingTreeFormat4.
 
9205
  (Martin Pool)
 
9206
 
 
9207
Improvements
 
9208
************
 
9209
 
 
9210
* HTTP redirections are now taken into account when a branch (or a
 
9211
  bundle) is accessed for the first time. A message is issued at each
 
9212
  redirection to inform the user. In the past, http redirections were
 
9213
  silently followed for each request which significantly degraded the
 
9214
  performances. The http redirections are not followed anymore by
 
9215
  default, instead a RedirectRequested exception is raised. For bzrlib
 
9216
  users needing to follow http redirections anyway,
 
9217
  ``bzrlib.transport.do_catching_redirections`` provide an easy transition
 
9218
  path.  (vila)
 
9219
 
 
9220
Internals
 
9221
*********
 
9222
 
 
9223
* Added ``ReadLock.temporary_write_lock()`` to allow upgrading an OS read
 
9224
  lock to an OS write lock. Linux can do this without unlocking, Win32
 
9225
  needs to unlock in between. (John Arbash Meinel)
 
9226
 
 
9227
* New parameter ``recommend_upgrade`` to ``BzrDir.open_workingtree``
 
9228
  to silence (when false) warnings about opening old formats.
 
9229
  (Martin Pool)
 
9230
 
 
9231
* Fix minor performance regression with bzr-0.15 on pre-dirstate
 
9232
  trees. (We were reading the working inventory too many times).
 
9233
  (John Arbash Meinel)
 
9234
 
 
9235
* Remove ``Branch.get_transaction()`` in favour of a simple cache of
 
9236
  ``revision_history``.  Branch subclasses should override
 
9237
  ``_gen_revision_history`` rather than ``revision_history`` to make use of
 
9238
  this cache, and call ``_clear_revision_history_cache`` and
 
9239
  ``_cache_revision_history`` at appropriate times. (Andrew Bennetts)
 
9240
 
 
9241
Bugfixes
 
9242
********
 
9243
 
 
9244
* Take ``smtp_server`` from user config into account.
 
9245
  (vila, #92195)
 
9246
 
 
9247
* Restore Unicode filename handling for versioned and unversioned files.
 
9248
  (John Arbash Meinel, #92608)
 
9249
 
 
9250
* Don't fail during ``bzr commit`` if a file is marked removed, and
 
9251
  the containing directory is auto-removed.  (John Arbash Meinel, #93681)
 
9252
 
 
9253
* ``bzr status FILENAME`` failed on Windows because of an uncommon
 
9254
  errno. (``ERROR_DIRECTORY == 267 != ENOTDIR``).
 
9255
  (Wouter van Heyst, John Arbash Meinel, #90819)
 
9256
 
 
9257
* ``bzr checkout source`` should create a local branch in the same
 
9258
  format as source. (John Arbash Meinel, #93854)
 
9259
 
 
9260
* ``bzr commit`` with a kind change was failing to update the
 
9261
  last-changed-revision for directories.  The
 
9262
  InventoryDirectory._unchanged only looked at the ``parent_id`` and name,
 
9263
  ignoring the fact that the kind could have changed, too.
 
9264
  (John Arbash Meinel, #90111)
 
9265
 
 
9266
* ``bzr mv dir/subdir other`` was incorrectly updating files inside
 
9267
  the directory. So that there was a chance it would break commit,
 
9268
  etc. (John Arbash Meinel, #94037)
 
9269
 
 
9270
* Correctly handles mutiple permanent http redirections.
 
9271
  (vila, #88780)
 
9272
 
 
9273
bzr 0.15rc2
 
9274
###########
 
9275
 
 
9276
:Released:  2007-03-14
 
9277
 
 
9278
Notes When Upgrading
 
9279
********************
 
9280
 
 
9281
* Release 0.15rc2 of bzr changes the ``bzr init-repo`` command to
 
9282
  default to ``--trees`` instead of ``--no-trees``.
 
9283
  Existing shared repositories are not affected.
 
9284
 
 
9285
Improvements
 
9286
************
 
9287
 
 
9288
* New ``merge-directive`` command to generate machine- and human-readable
 
9289
  merge requests.  (Aaron Bentley)
 
9290
 
 
9291
* New ``submit:`` revision specifier makes it easy to diff against the
 
9292
  common ancestor with the submit location (Aaron Bentley)
 
9293
 
 
9294
* Added support for Putty's SSH implementation. (Dmitry Vasiliev)
 
9295
 
 
9296
* Added ``bzr status --versioned`` to report only versioned files,
 
9297
  not unknowns. (Kent Gibson)
 
9298
 
 
9299
* Merge now autodetects the correct line-ending style for its conflict
 
9300
  markers.  (Aaron Bentley)
 
9301
 
 
9302
Internals
 
9303
*********
 
9304
 
 
9305
* Refactored SSH vendor registration into SSHVendorManager class.
 
9306
  (Dmitry Vasiliev)
 
9307
 
 
9308
Bugfixes
 
9309
********
 
9310
 
 
9311
* New ``--numbered-dirs`` option to ``bzr selftest`` to use
 
9312
  numbered dirs for TestCaseInTempDir. This is default behavior
 
9313
  on Windows. Anyone can force named dirs on Windows
 
9314
  with ``--no-numbered-dirs``. (Alexander Belchenko)
 
9315
 
 
9316
* Fix ``RevisionSpec_revid`` to handle the Unicode strings passed in
 
9317
  from the command line. (Marien Zwart, #90501)
 
9318
 
 
9319
* Fix ``TreeTransform._iter_changes`` when both the source and
 
9320
  destination are missing. (Aaron Bentley, #88842)
 
9321
 
 
9322
* Fix commit of merges with symlinks in dirstate trees.
 
9323
  (Marien Zwart)
 
9324
 
 
9325
* Switch the ``bzr init-repo`` default from --no-trees to --trees.
 
9326
  (Wouter van Heyst, #53483)
 
9327
 
 
9328
 
 
9329
bzr 0.15rc1
 
9330
###########
 
9331
 
 
9332
:Released:  2007-03-07
 
9333
 
 
9334
Surprises
 
9335
*********
 
9336
 
 
9337
* The default disk format has changed. Please run 'bzr upgrade' in your
 
9338
  working trees to upgrade. This new default is compatible for network
 
9339
  operations, but not for local operations. That is, if you have two
 
9340
  versions of bzr installed locally, after upgrading you can only use the
 
9341
  bzr 0.15 version. This new default does not enable tags or nested-trees
 
9342
  as they are incompatible with bzr versions before 0.15 over the network.
 
9343
 
 
9344
* For users of bzrlib: Two major changes have been made to the working tree
 
9345
  api in bzrlib. The first is that many methods and attributes, including
 
9346
  the inventory attribute, are no longer valid for use until one of
 
9347
  ``lock_read``/``lock_write``/``lock_tree_write`` has been called,
 
9348
  and become invalid again after unlock is called. This has been done
 
9349
  to improve performance and correctness as part of the dirstate
 
9350
  development.
 
9351
  (Robert Collins, John A Meinel, Martin Pool, and others).
 
9352
 
 
9353
* For users of bzrlib: The attribute 'tree.inventory' should be considered
 
9354
  readonly. Previously it was possible to directly alter this attribute, or
 
9355
  its contents, and have the tree notice this. This has been made
 
9356
  unsupported - it may work in some tree formats, but in the newer dirstate
 
9357
  format such actions will have no effect and will be ignored, or even
 
9358
  cause assertions. All operations possible can still be carried out by a
 
9359
  combination of the tree API, and the bzrlib.transform API. (Robert
 
9360
  Collins, John A Meinel, Martin Pool, and others).
 
9361
 
 
9362
Improvements
 
9363
************
 
9364
 
 
9365
* Support for OS Windows 98. Also .bzr.log on any windows system
 
9366
  saved in My Documents folder. (Alexander Belchenko)
 
9367
 
 
9368
* ``bzr mv`` enhanced to support already moved files.
 
9369
  In the past the mv command would have failed if the source file doesn't
 
9370
  exist. In this situation ``bzr mv`` would now detect that the file has
 
9371
  already moved and update the repository accordingly, if the target file
 
9372
  does exist.
 
9373
  A new option ``--after`` has been added so that if two files already
 
9374
  exist, you could notify Bazaar that you have moved a (versioned) file
 
9375
  and replaced it with another. Thus in this case ``bzr move --after``
 
9376
  will only update the Bazaar identifier.
 
9377
  (Steffen Eichenberg, Marius Kruger)
 
9378
 
 
9379
* ``ls`` now works on treeless branches and remote branches.
 
9380
  (Aaron Bentley)
 
9381
 
 
9382
* ``bzr help global-options`` describes the global options.
 
9383
  (Aaron Bentley)
 
9384
 
 
9385
* ``bzr pull --overwrite`` will now correctly overwrite checkouts.
 
9386
  (Robert Collins)
 
9387
 
 
9388
* Files are now allowed to change kind (e.g. from file to symlink).
 
9389
  Supported by ``commit``, ``revert`` and ``status``
 
9390
  (Aaron Bentley)
 
9391
 
 
9392
* ``inventory`` and ``unknowns`` hidden in favour of ``ls``
 
9393
  (Aaron Bentley)
 
9394
 
 
9395
* ``bzr help checkouts`` descibes what checkouts are and some possible
 
9396
  uses of them. (James Westby, Aaron Bentley)
 
9397
 
 
9398
* A new ``-d`` option to push, pull and merge overrides the default
 
9399
  directory.  (Martin Pool)
 
9400
 
 
9401
* Branch format 6: smaller, and potentially faster than format 5.  Supports
 
9402
  ``append_history_only`` mode, where the log view and revnos do not change,
 
9403
  except by being added to.  Stores policy settings in
 
9404
  ".bzr/branch/branch.conf".
 
9405
 
 
9406
* ``append_only`` branches:  Format 6 branches may be configured so that log
 
9407
  view and revnos are always consistent.  Either create the branch using
 
9408
  "bzr init --append-revisions-only" or edit the config file as descriped
 
9409
  in docs/configuration.txt.
 
9410
 
 
9411
* rebind: Format 6 branches retain the last-used bind location, so if you
 
9412
  "bzr unbind", you can "bzr bind" to bind to the previously-selected
 
9413
  bind location.
 
9414
 
 
9415
* Builtin tags support, created and deleted by the ``tag`` command and
 
9416
  stored in the branch.  Tags can be accessed with the revisionspec
 
9417
  ``-rtag:``, and listed with ``bzr tags``.  Tags are not versioned
 
9418
  at present. Tags require a network incompatible upgrade. To perform this
 
9419
  upgrade, run ``bzr upgrade --dirstate-tags`` in your branch and
 
9420
  repositories. (Martin Pool)
 
9421
 
 
9422
* The ``bzr://`` transport now has a well-known port number, 4155,
 
9423
  which it will use by default.  (Andrew Bennetts, Martin Pool)
 
9424
 
 
9425
* Bazaar now looks for user-installed plugins before looking for site-wide
 
9426
  plugins. (Jonathan Lange)
 
9427
 
 
9428
* ``bzr resolve`` now detects and marks resolved text conflicts.
 
9429
  (Aaron Bentley)
 
9430
 
 
9431
Internals
 
9432
*********
 
9433
 
 
9434
* Internally revision ids and file ids are now passed around as utf-8
 
9435
  bytestrings, rather than treating them as Unicode strings. This has
 
9436
  performance benefits for Knits, since we no longer need to decode the
 
9437
  revision id for each line of content, nor for each entry in the index.
 
9438
  This will also help with the future dirstate format.
 
9439
  (John Arbash Meinel)
 
9440
 
 
9441
* Reserved ids (any revision-id ending in a colon) are rejected by
 
9442
  versionedfiles, repositories, branches, and working trees
 
9443
  (Aaron Bentley)
 
9444
 
 
9445
* Minor performance improvement by not creating a ProgressBar for
 
9446
  every KnitIndex we create. (about 90ms for a bzr.dev tree)
 
9447
  (John Arbash Meinel)
 
9448
 
 
9449
* New easier to use Branch hooks facility. There are five initial hooks,
 
9450
  all documented in bzrlib.branch.BranchHooks.__init__ - ``'set_rh'``,
 
9451
  ``'post_push'``, ``'post_pull'``, ``'post_commit'``,
 
9452
  ``'post_uncommit'``. These hooks fire after the matching operation
 
9453
  on a branch has taken place, and were originally added for the
 
9454
  branchrss plugin. (Robert Collins)
 
9455
 
 
9456
* New method ``Branch.push()`` which should be used when pushing from a
 
9457
  branch as it makes performance and policy decisions to match the UI
 
9458
  level command ``push``. (Robert Collins).
 
9459
 
 
9460
* Add a new method ``Tree.revision_tree`` which allows access to cached
 
9461
  trees for arbitrary revisions. This allows the in development dirstate
 
9462
  tree format to provide access to the callers to cached copies of
 
9463
  inventory data which are cheaper to access than inventories from the
 
9464
  repository.
 
9465
  (Robert Collins, Martin Pool)
 
9466
 
 
9467
* New ``Branch.last_revision_info`` method, this is being done to allow
 
9468
  optimization of requests for both the number of revisions and the last
 
9469
  revision of a branch with smartservers and potentially future branch
 
9470
  formats. (Wouter van Heyst, Robert Collins)
 
9471
 
 
9472
* Allow ``'import bzrlib.plugins.NAME'`` to work when the plugin NAME has not
 
9473
  yet been loaded by ``load_plugins()``. This allows plugins to depend on each
 
9474
  other for code reuse without requiring users to perform file-renaming
 
9475
  gymnastics. (Robert Collins)
 
9476
 
 
9477
* New Repository method ``'gather_stats'`` for statistic data collection.
 
9478
  This is expected to grow to cover a number of related uses mainly
 
9479
  related to bzr info. (Robert Collins)
 
9480
 
 
9481
* Log formatters are now managed with a registry.
 
9482
  ``log.register_formatter`` continues to work, but callers accessing
 
9483
  the FORMATTERS dictionary directly will not.
 
9484
 
 
9485
* Allow a start message to be passed to the ``edit_commit_message``
 
9486
  function.  This will be placed in the message offered to the user
 
9487
  for editing above the separator. It allows a template commit message
 
9488
  to be used more easily. (James Westby)
 
9489
 
 
9490
* ``GPGStrategy.sign()`` will now raise ``BzrBadParameterUnicode`` if
 
9491
  you pass a Unicode string rather than an 8-bit string. Callers need
 
9492
  to be updated to encode first. (John Arbash Meinel)
 
9493
 
 
9494
* Branch.push, pull, merge now return Result objects with information
 
9495
  about what happened, rather than a scattering of various methods.  These
 
9496
  are also passed to the post hooks.  (Martin Pool)
 
9497
 
 
9498
* File formats and architecture is in place for managing a forest of trees
 
9499
  in bzr, and splitting up existing trees into smaller subtrees, and
 
9500
  finally joining trees to make a larger tree. This is the first iteration
 
9501
  of this support, and the user-facing aspects still require substantial
 
9502
  work.  If you wish to experiment with it, use ``bzr upgrade
 
9503
  --dirstate-with-subtree`` in your working trees and repositories.
 
9504
  You can use the hidden commands ``split`` and ``join`` and to create
 
9505
  and manipulate nested trees, but please consider using the nested-trees
 
9506
  branch, which contains substantial UI improvements, instead.
 
9507
  http://code.aaronbentley.com/bzr/bzrrepo/nested-trees/
 
9508
  (Aaron Bentley, Martin Pool, Robert Collins).
 
9509
 
 
9510
Bugfixes
 
9511
********
 
9512
 
 
9513
* ``bzr annotate`` now uses dotted revnos from the viewpoint of the
 
9514
  branch, rather than the last changed revision of the file.
 
9515
  (John Arbash Meinel, #82158)
 
9516
 
 
9517
* Lock operations no longer hang if they encounter a permission problem.
 
9518
  (Aaron Bentley)
 
9519
 
 
9520
* ``bzr push`` can resume a push that was canceled before it finished.
 
9521
  Also, it can push even if the target directory exists if you supply
 
9522
  the ``--use-existing-dir`` flag.
 
9523
  (John Arbash Meinel, #30576, #45504)
 
9524
 
 
9525
* Fix http proxy authentication when user and an optional
 
9526
  password appears in the ``*_proxy`` vars. (Vincent Ladeuil,
 
9527
  #83954).
 
9528
 
 
9529
* ``bzr log branch/file`` works for local treeless branches
 
9530
  (Aaron Bentley, #84247)
 
9531
 
 
9532
* Fix problem with UNC paths on Windows 98. (Alexander Belchenko, #84728)
 
9533
 
 
9534
* Searching location of CA bundle for PyCurl in env variable
 
9535
  (``CURL_CA_BUNDLE``), and on win32 along the PATH.
 
9536
  (Alexander Belchenko, #82086)
 
9537
 
 
9538
* ``bzr init`` works with unicode argument LOCATION.
 
9539
  (Alexander Belchenko, #85599)
 
9540
 
 
9541
* Raise ``DependencyNotPresent`` if pycurl do not support https.
 
9542
  (Vincent Ladeuil, #85305)
 
9543
 
 
9544
* Invalid proxy env variables should not cause a traceback.
 
9545
  (Vincent Ladeuil, #87765)
 
9546
 
 
9547
* Ignore patterns normalised to use '/' path separator.
 
9548
  (Kent Gibson, #86451)
 
9549
 
 
9550
* bzr rocks. It sure does! Fix case. (Vincent Ladeuil, #78026)
 
9551
 
 
9552
* Fix bzrtools shelve command for removed lines beginning with "--"
 
9553
  (Johan Dahlberg, #75577)
 
9554
 
 
9555
Testing
 
9556
*******
 
9557
 
 
9558
* New ``--first`` option to ``bzr selftest`` to run specified tests
 
9559
  before the rest of the suite.  (Martin Pool)
 
9560
 
 
9561
 
 
9562
bzr 0.14
 
9563
########
 
9564
 
 
9565
:Released:  2007-01-23
 
9566
 
 
9567
Improvements
 
9568
************
 
9569
 
 
9570
* ``bzr help global-options`` describes the global options. (Aaron Bentley)
 
9571
 
 
9572
Bug Fixes
 
9573
*********
 
9574
 
 
9575
* Skip documentation generation tests if the tools to do so are not
 
9576
  available. Fixes running selftest for installled copies of bzr.
 
9577
  (John Arbash Meinel, #80330)
 
9578
 
 
9579
* Fix the code that discovers whether bzr is being run from it's
 
9580
  working tree to handle the case when it isn't but the directory
 
9581
  it is in is below a repository. (James Westby, #77306)
 
9582
 
 
9583
 
 
9584
bzr 0.14rc1
 
9585
###########
 
9586
 
 
9587
:Released:  2007-01-16
 
9588
 
 
9589
Improvements
 
9590
************
 
9591
 
 
9592
* New connection: ``bzr+http://`` which supports tunnelling the smart
 
9593
  protocol over an HTTP connection. If writing is enabled on the bzr
 
9594
  server, then you can write over the http connection.
 
9595
  (Andrew Bennetts, John Arbash Meinel)
 
9596
 
 
9597
* Aliases now support quotation marks, so they can contain whitespace
 
9598
  (Marius Kruger)
 
9599
 
 
9600
* PyCurlTransport now use a single curl object. By specifying explicitly
 
9601
  the 'Range' header, we avoid the need to use two different curl objects
 
9602
  (and two connections to the same server). (Vincent Ladeuil)
 
9603
 
 
9604
* ``bzr commit`` does not prompt for a message until it is very likely to
 
9605
  succeed.  (Aaron Bentley)
 
9606
 
 
9607
* ``bzr conflicts`` now takes --text to list pathnames of text conflicts
 
9608
  (Aaron Bentley)
 
9609
 
 
9610
* Fix ``iter_lines_added_or_present_in_versions`` to use a set instead
 
9611
  of a list while checking if a revision id was requested. Takes 10s
 
9612
  off of the ``fileids_affected_by_revision_ids`` time, which is 10s
 
9613
  of the ``bzr branch`` time. Also improve ``fileids_...`` time by
 
9614
  filtering lines with a regex rather than multiple ``str.find()``
 
9615
  calls. (saves another 300ms) (John Arbash Meinel)
 
9616
 
 
9617
* Policy can be set for each configuration key. This allows keys to be
 
9618
  inherited properly across configuration entries. For example, this
 
9619
  should enable you to do::
 
9620
 
 
9621
    [/home/user/project]
 
9622
    push_location = sftp://host/srv/project/
 
9623
    push_location:policy = appendpath
 
9624
 
 
9625
  And then a branch like ``/home/user/project/mybranch`` should get an
 
9626
  automatic push location of ``sftp://host/srv/project/mybranch``.
 
9627
  (James Henstridge)
 
9628
 
 
9629
* Added ``bzr status --short`` to make status report svn style flags
 
9630
  for each file.  For example::
 
9631
 
 
9632
    $ bzr status --short
 
9633
    A  foo
 
9634
    A  bar
 
9635
    D  baz
 
9636
    ?  wooley
 
9637
 
 
9638
* 'bzr selftest --clean-output' allows easily clean temporary tests
 
9639
  directories without running tests. (Alexander Belchenko)
 
9640
 
 
9641
* ``bzr help hidden-commands`` lists all hidden commands. (Aaron Bentley)
 
9642
 
 
9643
* ``bzr merge`` now has an option ``--pull`` to fall back to pull if
 
9644
  local is fully merged into remote. (Jan Hudec)
 
9645
 
 
9646
* ``bzr help formats`` describes available directory formats. (Aaron Bentley)
 
9647
 
 
9648
Internals
 
9649
*********
 
9650
 
 
9651
* A few tweaks directly to ``fileids_affected_by_revision_ids`` to
 
9652
  help speed up processing, as well allowing to extract unannotated
 
9653
  lines. Between the two ``fileids_affected_by_revision_ids`` is
 
9654
  improved by approx 10%. (John Arbash Meinel)
 
9655
 
 
9656
* Change Revision serialization to only write out millisecond
 
9657
  resolution. Rather than expecting floating point serialization to
 
9658
  preserve more resolution than we need. (Henri Weichers, Martin Pool)
 
9659
 
 
9660
* Test suite ends cleanly on Windows.  (Vincent Ladeuil)
 
9661
 
 
9662
* When ``encoding_type`` attribute of class Command is equal to 'exact',
 
9663
  force sys.stdout to be a binary stream on Windows, and therefore
 
9664
  keep exact line-endings (without LF -> CRLF conversion).
 
9665
  (Alexander Belchenko)
 
9666
 
 
9667
* Single-letter short options are no longer globally declared.  (Martin
 
9668
  Pool)
 
9669
 
 
9670
* Before using detected user/terminal encoding bzr should check
 
9671
  that Python has corresponding codec. (Alexander Belchenko)
 
9672
 
 
9673
* Formats for end-user selection are provided via a FormatRegistry (Aaron Bentley)
 
9674
 
 
9675
Bug Fixes
 
9676
*********
 
9677
 
 
9678
* ``bzr missing --verbose`` was showing adds/removals in the wrong
 
9679
  direction. (John Arbash Meinel)
 
9680
 
 
9681
* ``bzr annotate`` now defaults to showing dotted revnos for merged
 
9682
  revisions. It cuts them off at a depth of 12 characters, but you can
 
9683
  supply ``--long`` to see the full number. You can also use
 
9684
  ``--show-ids`` to display the original revision ids, rather than
 
9685
  revision numbers and committer names. (John Arbash Meinel, #75637)
 
9686
 
 
9687
* bzr now supports Win32 UNC path (e.g. ``\HOST\path``.
 
9688
  (Alexander Belchenko, #57869)
 
9689
 
 
9690
* Win32-specific: output of cat, bundle and diff commands don't mangle
 
9691
  line-endings (Alexander Belchenko, #55276)
 
9692
 
 
9693
* Replace broken fnmatch based ignore pattern matching with custom pattern
 
9694
  matcher.
 
9695
  (Kent Gibson, Jan Hudec #57637)
 
9696
 
 
9697
* pycurl and urllib can detect short reads at different places. Update
 
9698
  the test suite to test more cases. Also detect http error code 416
 
9699
  which was raised for that specific bug. Also enhance the urllib
 
9700
  robustness by detecting invalid ranges (and pycurl's one by detecting
 
9701
  short reads during the initial GET). (Vincent Ladeuil, #73948)
 
9702
 
 
9703
* The urllib connection sharing interacts badly with urllib2
 
9704
  proxy setting (the connections didn't go thru the proxy
 
9705
  anymore). Defining a proper ProxyHandler solves the
 
9706
  problem.  (Vincent Ladeuil, #74759)
 
9707
 
 
9708
* Use urlutils to generate relative URLs, not osutils
 
9709
  (Aaron Bentley, #76229)
 
9710
 
 
9711
* ``bzr status`` in a readonly directory should work without giving
 
9712
  lots of errors. (John Arbash Meinel, #76299)
 
9713
 
 
9714
* Mention the revisionspec topic for the revision option help.
 
9715
  (Wouter van Heyst, #31663)
 
9716
 
 
9717
* Allow plugins import from zip archives.
 
9718
  (Alexander Belchenko, #68124)
 
9719
 
 
9720
 
 
9721
bzr 0.13
 
9722
########
 
9723
 
 
9724
:Released:  2006-12-05
 
9725
 
 
9726
No changes from 0.13rc
 
9727
 
 
9728
 
 
9729
bzr 0.13rc1
 
9730
###########
 
9731
 
 
9732
:Released:  2006-11-27
 
9733
 
 
9734
Improvements
 
9735
************
 
9736
 
 
9737
* New command ``bzr remove-tree`` allows the removal of the working
 
9738
  tree from a branch.
 
9739
  (Daniel Silverstone)
 
9740
 
 
9741
* urllib uses shared keep-alive connections, so http
 
9742
  operations are substantially faster.
 
9743
  (Vincent Ladeuil, #53654)
 
9744
 
 
9745
* ``bzr export`` allows an optional branch parameter, to export a bzr
 
9746
  tree from some other url. For example:
 
9747
  ``bzr export bzr.tar.gz http://bazaar-vcs.org/bzr/bzr.dev``
 
9748
  (Daniel Silverstone)
 
9749
 
 
9750
* Added ``bzr help topics`` to the bzr help system. This gives a
 
9751
  location for general information, outside of a specific command.
 
9752
  This includes updates for ``bzr help revisionspec`` the first topic
 
9753
  included. (Goffredo Baroncelli, John Arbash Meinel, #42714)
 
9754
 
 
9755
* WSGI-compatible HTTP smart server.  See ``doc/http_smart_server.txt``.
 
9756
  (Andrew Bennetts)
 
9757
 
 
9758
* Knit files will now cache full texts only when the size of the
 
9759
  deltas is as large as the size of the fulltext. (Or after 200
 
9760
  deltas, whichever comes first). This has the most benefit on large
 
9761
  files with small changes, such as the inventory for a large project.
 
9762
  (eg For a project with 2500 files, and 7500 revisions, it changes
 
9763
  the size of inventory.knit from 11MB to 5.4MB) (John Arbash Meinel)
 
9764
 
 
9765
Internals
 
9766
*********
 
9767
 
 
9768
* New -D option given before the command line turns on debugging output
 
9769
  for particular areas.  -Derror shows tracebacks on all errors.
 
9770
  (Martin Pool)
 
9771
 
 
9772
* Clean up ``bzr selftest --benchmark bundle`` to correct an import,
 
9773
  and remove benchmarks that take longer than 10min to run.
 
9774
  (John Arbash Meinel)
 
9775
 
 
9776
* Use ``time.time()`` instead of ``time.clock()`` to decide on
 
9777
  progress throttling. Because ``time.clock()`` is actually CPU time,
 
9778
  so over a high-latency connection, too many updates get throttled.
 
9779
  (John Arbash Meinel)
 
9780
 
 
9781
* ``MemoryTransport.list_dir()`` would strip the first character for
 
9782
  files or directories in root directory. (John Arbash Meinel)
 
9783
 
 
9784
* New method ``get_branch_reference`` on 'BzrDir' allows the detection of
 
9785
  branch references - which the smart server component needs.
 
9786
 
 
9787
* New ``ChrootTransportDecorator``, accessible via the ``chroot+`` url
 
9788
  prefix.  It disallows any access to locations above a set URL.  (Andrew
 
9789
  Bennetts)
 
9790
 
 
9791
Bug Fixes
 
9792
*********
 
9793
 
 
9794
* Now ``_KnitIndex`` properly decode revision ids when loading index data.
 
9795
  And optimize the knit index parsing code.
 
9796
  (Dmitry Vasiliev, John Arbash Meinel)
 
9797
 
 
9798
* ``bzrlib/bzrdir.py`` was directly referencing ``bzrlib.workingtree``,
 
9799
  without importing it. This prevented ``bzr upgrade`` from working
 
9800
  unless a plugin already imported ``bzrlib.workingtree``
 
9801
  (John Arbash Meinel, #70716)
 
9802
 
 
9803
* Suppress the traceback on invalid URLs (Vincent Ladeuil, #70803).
 
9804
 
 
9805
* Give nicer error message when an http server returns a 403
 
9806
  error code. (Vincent Ladeuil, #57644).
 
9807
 
 
9808
* When a multi-range http GET request fails, try a single
 
9809
  range one. If it fails too, forget about ranges. Remember that until
 
9810
  the death of the transport and propagates that to the clones.
 
9811
  (Vincent Ladeuil, #62276, #62029).
 
9812
 
 
9813
* Handles user/passwords supplied in url from command
 
9814
  line (for the urllib implementation). Don't request already
 
9815
  known passwords (Vincent Ladeuil, #42383, #44647, #48527)
 
9816
 
 
9817
* ``_KnitIndex.add_versions()`` dictionary compresses revision ids as they
 
9818
  are added. This fixes bug where fetching remote revisions records
 
9819
  them as full references rather than integers.
 
9820
  (John Arbash Meinel, #64789)
 
9821
 
 
9822
* ``bzr ignore`` strips trailing slashes in patterns.
 
9823
  Also ``bzr ignore`` rejects absolute paths. (Kent Gibson, #4559)
 
9824
 
 
9825
* ``bzr ignore`` takes multiple arguments. (Cheuksan Edward Wang, #29488)
 
9826
 
 
9827
* mv correctly handles paths that traverse symlinks.
 
9828
  (Aaron Bentley, #66964)
 
9829
 
 
9830
* Give nicer looking error messages when failing to connect over ssh.
 
9831
  (John Arbash Meinel, #49172)
 
9832
 
 
9833
* Pushing to a remote branch does not currently update the remote working
 
9834
  tree. After a remote push, ``bzr status`` and ``bzr diff`` on the remote
 
9835
  machine now show that the working tree is out of date.
 
9836
  (Cheuksan Edward Wang #48136)
 
9837
 
 
9838
* Use patiencediff instead of difflib for determining deltas to insert
 
9839
  into knits. This avoids the O(N^3) behavior of difflib. Patience
 
9840
  diff should be O(N^2). (Cheuksan Edward Wang, #65714)
 
9841
 
 
9842
* Running ``bzr log`` on nonexistent file gives an error instead of the
 
9843
  entire log history. (Cheuksan Edward Wang #50793)
 
9844
 
 
9845
* ``bzr cat`` can look up contents of removed or renamed files. If the
 
9846
  pathname is ambiguous, i.e. the files in the old and new trees have
 
9847
  different id's, the default is the file in the new tree. The user can
 
9848
  use "--name-from-revision" to select the file in the old tree.
 
9849
  (Cheuksan Edward Wang, #30190)
 
9850
 
 
9851
Testing
 
9852
*******
 
9853
 
 
9854
* TestingHTTPRequestHandler really handles the Range header
 
9855
  (previously it was ignoring it and returning the whole file,).
 
9856
 
 
9857
bzr 0.12
 
9858
########
 
9859
 
 
9860
:Released:  2006-10-30
 
9861
 
 
9862
Internals
 
9863
*********
 
9864
 
 
9865
* Clean up ``bzr selftest --benchmark bundle`` to correct an import,
 
9866
  and remove benchmarks that take longer than 10min to run.
 
9867
  (John Arbash Meinel)
 
9868
 
 
9869
bzr 0.12rc1
 
9870
###########
 
9871
 
 
9872
:Released:  2006-10-23
 
9873
 
 
9874
Improvements
 
9875
************
 
9876
 
 
9877
* ``bzr log`` now shows dotted-decimal revision numbers for all revisions,
 
9878
  rather than just showing a decimal revision number for revisions on the
 
9879
  mainline. These revision numbers are not yet accepted as input into bzr
 
9880
  commands such as log, diff etc. (Robert Collins)
 
9881
 
 
9882
* revisions can now be specified using dotted-decimal revision numbers.
 
9883
  For instance, ``bzr diff -r 1.2.1..1.2.3``. (Robert Collins)
 
9884
 
 
9885
* ``bzr help commands`` output is now shorter (Aaron Bentley)
 
9886
 
 
9887
* ``bzr`` now uses lazy importing to reduce the startup time. This has
 
9888
  a moderate effect on lots of actions, especially ones that have
 
9889
  little to do. For example ``bzr rocks`` time is down to 116ms from
 
9890
  283ms. (John Arbash Meinel)
 
9891
 
 
9892
* New Registry class to provide name-to-object registry-like support,
 
9893
  for example for schemes where plugins can register new classes to
 
9894
  do certain tasks (e.g. log formatters). Also provides lazy registration
 
9895
  to allow modules to be loaded on request.
 
9896
  (John Arbash Meinel, Adeodato Simó)
 
9897
 
 
9898
API Incompatability
 
9899
*******************
 
9900
 
 
9901
* LogFormatter subclasses show now expect the 'revno' parameter to
 
9902
  show() to be a string rather than an int. (Robert Collins)
 
9903
 
 
9904
Internals
 
9905
*********
 
9906
 
 
9907
* ``TestCase.run_bzr``, ``run_bzr_captured``, and ``run_bzr_subprocess``
 
9908
  can take a ``working_dir='foo'`` parameter, which will change directory
 
9909
  for the command. (John Arbash Meinel)
 
9910
 
 
9911
* ``bzrlib.lazy_regex.lazy_compile`` can be used to create a proxy
 
9912
  around a regex, which defers compilation until first use.
 
9913
  (John Arbash Meinel)
 
9914
 
 
9915
* ``TestCase.run_bzr_subprocess`` defaults to supplying the
 
9916
  ``--no-plugins`` parameter to ensure test reproducability, and avoid
 
9917
  problems with system-wide installed plugins. (John Arbash Meinel)
 
9918
 
 
9919
* Unique tree root ids are now supported. Newly created trees still
 
9920
  use the common root id for compatibility with bzr versions before 0.12.
 
9921
  (Aaron Bentley)
 
9922
 
 
9923
* ``WorkingTree.set_root_id(None)`` is now deprecated. Please
 
9924
  pass in ``inventory.ROOT_ID`` if you want the default root id value.
 
9925
  (Robert Collins, John Arbash Meinel)
 
9926
 
 
9927
* New method ``WorkingTree.flush()`` which will write the current memory
 
9928
  inventory out to disk. At the same time, ``read_working_inventory`` will
 
9929
  no longer trash the current tree inventory if it has been modified within
 
9930
  the current lock, and the tree will now ``flush()`` automatically on
 
9931
  ``unlock()``. ``WorkingTree.set_root_id()`` has been updated to take
 
9932
  advantage of this functionality. (Robert Collins, John Arbash Meinel)
 
9933
 
 
9934
* ``bzrlib.tsort.merge_sorted`` now accepts ``generate_revnos``. This
 
9935
  parameter will cause it to add another column to its output, which
 
9936
  contains the dotted-decimal revno for each revision, as a tuple.
 
9937
  (Robert Collins)
 
9938
 
 
9939
* ``LogFormatter.show_merge`` is deprecated in favour of
 
9940
  ``LogFormatter.show_merge_revno``. (Robert Collins)
 
9941
 
 
9942
Bug Fixes
 
9943
*********
 
9944
 
 
9945
* Avoid circular imports by creating a deprecated function for
 
9946
  ``bzrlib.tree.RevisionTree``. Callers should have been using
 
9947
  ``bzrlib.revisontree.RevisionTree`` anyway. (John Arbash Meinel,
 
9948
  #66349)
 
9949
 
 
9950
* Don't use ``socket.MSG_WAITALL`` as it doesn't exist on all
 
9951
  platforms. (Martin Pool, #66356)
 
9952
 
 
9953
* Don't require ``Content-Type`` in range responses. Assume they are a
 
9954
  single range if ``Content-Type`` does not exist.
 
9955
  (John Arbash Meinel, #62473)
 
9956
 
 
9957
* bzr branch/pull no longer complain about progress bar cleanup when
 
9958
  interrupted during fetch.  (Aaron Bentley, #54000)
 
9959
 
 
9960
* ``WorkingTree.set_parent_trees()`` uses the trees to directly write
 
9961
  the basis inventory, rather than going through the repository. This
 
9962
  allows us to have 1 inventory read, and 2 inventory writes when
 
9963
  committing a new tree. (John Arbash Meinel)
 
9964
 
 
9965
* When reverting, files that are not locally modified that do not exist
 
9966
  in the target are deleted, not just unversioned (Aaron Bentley)
 
9967
 
 
9968
* When trying to acquire a lock, don't fail immediately. Instead, try
 
9969
  a few times (up to 1 hour) before timing out. Also, report why the
 
9970
  lock is unavailable (John Arbash Meinel, #43521, #49556)
 
9971
 
 
9972
* Leave HttpTransportBase daughter classes decides how they
 
9973
  implement cloning. (Vincent Ladeuil, #61606)
 
9974
 
 
9975
* diff3 does not indicate conflicts on clean merge. (Aaron Bentley)
 
9976
 
 
9977
* If a commit fails, the commit message is stored in a file at the root of
 
9978
  the tree for later commit. (Cheuksan Edward Wang, Stefan Metzmacher,
 
9979
  #32054)
 
9980
 
 
9981
Testing
 
9982
*******
 
9983
 
 
9984
* New test base class TestCaseWithMemoryTransport offers memory-only
 
9985
  testing facilities: its not suitable for tests that need to mutate disk
 
9986
  state, but most tests should not need that and should be converted to
 
9987
  TestCaseWithMemoryTransport. (Robert Collins)
 
9988
 
 
9989
* ``TestCase.make_branch_and_memory_tree`` now takes a format
 
9990
  option to set the BzrDir, Repository and Branch formats of the
 
9991
  created objects. (Robert Collins, John Arbash Meinel)
 
9992
 
 
9993
bzr 0.11
 
9994
########
 
9995
 
 
9996
:Released:  2006-10-02
 
9997
 
 
9998
* Smart server transport test failures on windows fixed. (Lukáš Lalinský).
 
9999
 
 
10000
bzr 0.11rc2
 
10001
###########
 
10002
 
 
10003
:Released:  2006-09-27
 
10004
 
 
10005
Bug Fixes
 
10006
*********
 
10007
 
 
10008
* Test suite hangs on windows fixed. (Andrew Bennets, Alexander Belchenko).
 
10009
 
 
10010
* Commit performance regression fixed. (Aaron Bentley, Robert Collins, John
 
10011
  Arbash Meinel).
 
10012
 
 
10013
bzr 0.11rc1
 
10014
###########
 
10015
 
 
10016
:Released:  2006-09-25
 
10017
 
 
10018
Improvements
 
10019
************
 
10020
 
 
10021
* Knit files now wait to create their contents until the first data is
 
10022
  added. The old code used to create an empty .knit and a .kndx with just
 
10023
  the header. However, this caused a lot of extra round trips over sftp.
 
10024
  This can change the time for ``bzr push`` to create a new remote branch
 
10025
  from 160s down to 100s. This also affects ``bzr commit`` performance when
 
10026
  adding new files, ``bzr commit`` on a new kernel-like tree drops from 50s
 
10027
  down to 40s (John Arbash Meinel, #44692)
 
10028
 
 
10029
* When an entire subtree has been deleted, commit will now report that
 
10030
  just the top of the subtree has been deleted, rather than reporting
 
10031
  all the individual items. (Robert Collins)
 
10032
 
 
10033
* Commit performs one less XML parse. (Robert Collins)
 
10034
 
 
10035
* ``bzr checkout`` now operates on readonly branches as well
 
10036
  as readwrite branches. This fixes bug #39542. (Robert Collins)
 
10037
 
 
10038
* ``bzr bind`` no longer synchronises history with the master branch.
 
10039
  Binding should be followed by an update or push to synchronise the
 
10040
  two branches. This is closely related to the fix for bug #39542.
 
10041
  (Robert Collins)
 
10042
 
 
10043
* ``bzrlib.lazy_import.lazy_import`` function to create on-demand
 
10044
  objects.  This allows all imports to stay at the global scope, but
 
10045
  modules will not actually be imported if they are not used.
 
10046
  (John Arbash Meinel)
 
10047
 
 
10048
* Support ``bzr://`` and ``bzr+ssh://`` urls to work with the new RPC-based
 
10049
  transport which will be used with the upcoming high-performance smart
 
10050
  server. The new command ``bzr serve`` will invoke bzr in server mode,
 
10051
  which processes these requests. (Andrew Bennetts, Robert Collins, Martin
 
10052
  Pool)
 
10053
 
 
10054
* New command ``bzr version-info`` which can be used to get a summary
 
10055
  of the current state of the tree. This is especially useful as part
 
10056
  of a build commands. See ``doc/version_info.txt`` for more information
 
10057
  (John Arbash Meinel)
 
10058
 
 
10059
Bug Fixes
 
10060
*********
 
10061
 
 
10062
* ``'bzr inventory [FILE...]'`` allows restricting the file list to a
 
10063
  specific set of files. (John Arbash Meinel, #3631)
 
10064
 
 
10065
* Don't abort when annotating empty files (John Arbash Meinel, #56814)
 
10066
 
 
10067
* Add ``Stanza.to_unicode()`` which can be passed to another Stanza
 
10068
  when nesting stanzas. Also, add ``read_stanza_unicode`` to handle when
 
10069
  reading a nested Stanza. (John Arbash Meinel)
 
10070
 
 
10071
* Transform._set_mode() needs to stat the right file.
 
10072
  (John Arbash Meinel, #56549)
 
10073
 
 
10074
* Raise WeaveFormatError rather than StopIteration when trying to read
 
10075
  an empty Weave file. (John Arbash Meinel, #46871)
 
10076
 
 
10077
* Don't access e.code for generic URLErrors, only HTTPErrors have .code.
 
10078
  (Vincent Ladeuil, #59835)
 
10079
 
 
10080
* Handle boundary="" lines properly to allow access through a Squid proxy.
 
10081
  (John Arbash Meinel, #57723)
 
10082
 
 
10083
* revert now removes newly-added directories (Aaron Bentley, #54172)
 
10084
 
 
10085
* ``bzr upgrade sftp://`` shouldn't fail to upgrade v6 branches if there
 
10086
  isn't a working tree. (David Allouche, #40679)
 
10087
 
 
10088
* Give nicer error messages when a user supplies an invalid --revision
 
10089
  parameter. (John Arbash Meinel, #55420)
 
10090
 
 
10091
* Handle when LANG is not recognized by python. Emit a warning, but
 
10092
  just revert to using 'ascii'. (John Arbash Meinel, #35392)
 
10093
 
 
10094
* Don't use ``preexec_fn`` on win32, as it is not supported by subprocess.
 
10095
  (John Arbash Meinel)
 
10096
 
 
10097
* Skip specific tests when the dependencies aren't met. This includes
 
10098
  some ``setup.py`` tests when ``python-dev`` is not available, and
 
10099
  some tests that depend on paramiko. (John Arbash Meinel, Mattheiu Moy)
 
10100
 
 
10101
* Fallback to Paramiko properly, if no ``ssh`` executable exists on
 
10102
  the system. (Andrew Bennetts, John Arbash Meinel)
 
10103
 
 
10104
* ``Branch.bind(other_branch)`` no longer takes a write lock on the
 
10105
  other branch, and will not push or pull between the two branches.
 
10106
  API users will need to perform a push or pull or update operation if they
 
10107
  require branch synchronisation to take place. (Robert Collins, #47344)
 
10108
 
 
10109
* When creating a tarball or zipfile export, export unicode names as utf-8
 
10110
  paths. This may not work perfectly on all platforms, but has the best
 
10111
  chance of working in the common case. (John Arbash Meinel, #56816)
 
10112
 
 
10113
* When committing, only files that exist in working tree or basis tree
 
10114
  may be specified (Aaron Bentley, #50793)
 
10115
 
 
10116
Portability
 
10117
***********
 
10118
 
 
10119
* Fixes to run on Python 2.5 (Brian M. Carlson, Martin Pool, Marien Zwart)
 
10120
 
 
10121
Internals
 
10122
*********
 
10123
 
 
10124
* TestCaseInTempDir now creates a separate directory for HOME, rather
 
10125
  than having HOME set to the same location as the working directory.
 
10126
  (John Arbash Meinel)
 
10127
 
 
10128
* ``run_bzr_subprocess()`` can take an optional ``env_changes={}`` parameter,
 
10129
  which will update os.environ inside the spawned child. It also can
 
10130
  take a ``universal_newlines=True``, which helps when checking the output
 
10131
  of the command. (John Arbash Meinel)
 
10132
 
 
10133
* Refactor SFTP vendors to allow easier re-use when ssh is used.
 
10134
  (Andrew Bennetts)
 
10135
 
 
10136
* ``Transport.list_dir()`` and ``Transport.iter_files_recursive()`` should always
 
10137
  return urlescaped paths. This is now tested (there were bugs in a few
 
10138
  of the transports) (Andrew Bennetts, David Allouche, John Arbash Meinel)
 
10139
 
 
10140
* New utility function ``symbol_versioning.deprecation_string``. Returns the
 
10141
  formatted string for a callable, deprecation format pair. (Robert Collins)
 
10142
 
 
10143
* New TestCase helper applyDeprecated. This allows you to call a callable
 
10144
  which is deprecated without it spewing to the screen, just by supplying
 
10145
  the deprecation format string issued for it. (Robert Collins)
 
10146
 
 
10147
* Transport.append and Transport.put have been deprecated in favor of
 
10148
  ``.append_bytes``, ``.append_file``, ``.put_bytes``, and
 
10149
  ``.put_file``. This removes the ambiguity in what type of object the
 
10150
  functions take.  ``Transport.non_atomic_put_{bytes,file}`` has also
 
10151
  been added. Which works similarly to ``Transport.append()`` except for
 
10152
  SFTP, it doesn't have a round trip when opening the file. Also, it
 
10153
  provides functionality for creating a parent directory when trying
 
10154
  to create a file, rather than raise NoSuchFile and forcing the
 
10155
  caller to repeat their request.
 
10156
  (John Arbash Meinel)
 
10157
 
 
10158
* WorkingTree has a new api ``unversion`` which allow the unversioning of
 
10159
  entries by their file id. (Robert Collins)
 
10160
 
 
10161
* ``WorkingTree.pending_merges`` is deprecated.  Please use the
 
10162
  ``get_parent_ids`` (introduced in 0.10) method instead. (Robert Collins)
 
10163
 
 
10164
* WorkingTree has a new ``lock_tree_write`` method which locks the branch for
 
10165
  read rather than write. This is appropriate for actions which only need
 
10166
  the branch data for reference rather than mutation. A new decorator
 
10167
  ``needs_tree_write_lock`` is provided in the workingtree module. Like the
 
10168
  ``needs_read_lock`` and ``needs_write_lock`` decorators this allows static
 
10169
  declaration of the locking requirements of a function to ensure that
 
10170
  a lock is taken out for casual scripts. (Robert Collins, #54107)
 
10171
 
 
10172
* All WorkingTree methods which write to the tree, but not to the branch
 
10173
  have been converted to use ``needs_tree_write_lock`` rather than
 
10174
  ``needs_write_lock``. Also converted is the revert, conflicts and tree
 
10175
  transform modules. This provides a modest performance improvement on
 
10176
  metadir style trees, due to the reduce lock-acquisition, and a more
 
10177
  significant performance improvement on lightweight checkouts from
 
10178
  remote branches, where trivial operations used to pay a significant
 
10179
  penalty. It also provides the basis for allowing readonly checkouts.
 
10180
  (Robert Collins)
 
10181
 
 
10182
* Special case importing the standard library 'copy' module. This shaves
 
10183
  off 40ms of startup time, while retaining compatibility. See:
 
10184
  ``bzrlib/inspect_for_copy.py`` for more details. (John Arbash Meinel)
 
10185
 
 
10186
* WorkingTree has a new parent class MutableTree which represents the
 
10187
  specialisations of Tree which are able to be altered. (Robert Collins)
 
10188
 
 
10189
* New methods mkdir and ``put_file_bytes_non_atomic`` on MutableTree that
 
10190
  mutate the tree and its contents. (Robert Collins)
 
10191
 
 
10192
* Transport behaviour at the root of the URL is now defined and tested.
 
10193
  (Andrew Bennetts, Robert Collins)
 
10194
 
 
10195
Testing
 
10196
*******
 
10197
 
 
10198
* New test helper classs MemoryTree. This is typically accessed via
 
10199
  ``self.make_branch_and_memory_tree()`` in test cases. (Robert Collins)
 
10200
 
 
10201
* Add ``start_bzr_subprocess`` and ``stop_bzr_subprocess`` to allow test
 
10202
  code to continue running concurrently with a subprocess of bzr.
 
10203
  (Andrew Bennetts, Robert Collins)
 
10204
 
 
10205
* Add a new method ``Transport.get_smart_client()``. This is provided to
 
10206
  allow upgrades to a richer interface than the VFS one provided by
 
10207
  Transport. (Andrew Bennetts, Martin Pool)
 
10208
 
 
10209
bzr 0.10
 
10210
########
 
10211
 
 
10212
:Released:  2006-08-29
 
10213
 
 
10214
Improvements
 
10215
************
 
10216
* 'merge' now takes --uncommitted, to apply uncommitted changes from a
 
10217
  tree.  (Aaron Bentley)
 
10218
 
 
10219
* 'bzr add --file-ids-from' can be used to specify another path to use
 
10220
  for creating file ids, rather than generating all new ones. Internally,
 
10221
  the 'action' passed to ``smart_add_tree()`` can return ``file_ids`` that
 
10222
  will be used, rather than having bzrlib generate new ones.
 
10223
  (John Arbash Meinel, #55781)
 
10224
 
 
10225
* ``bzr selftest --benchmark`` now allows a ``--cache-dir`` parameter.
 
10226
  This will cache some of the intermediate trees, and decrease the
 
10227
  setup time for benchmark tests. (John Arbash Meinel)
 
10228
 
 
10229
* Inverse forms are provided for all boolean options.  For example,
 
10230
  --strict has --no-strict, --no-recurse has --recurse (Aaron Bentley)
 
10231
 
 
10232
* Serialize out Inventories directly, rather than using ElementTree.
 
10233
  Writing out a kernel sized inventory drops from 2s down to ~350ms.
 
10234
  (Robert Collins, John Arbash Meinel)
 
10235
 
 
10236
Bug Fixes
 
10237
*********
 
10238
 
 
10239
* Help diffutils 2.8.4 get along with binary tests (Marien Zwart: #57614)
 
10240
 
 
10241
* Change LockDir so that if the lock directory doesn't exist when
 
10242
  ``lock_write()`` is called, an attempt will be made to create it.
 
10243
  (John Arbash Meinel, #56974)
 
10244
 
 
10245
* ``bzr uncommit`` preserves pending merges. (John Arbash Meinel, #57660)
 
10246
 
 
10247
* Active FTP transport now works as intended. (ghozzy, #56472)
 
10248
 
 
10249
* Really fix mutter() so that it won't ever raise a UnicodeError.
 
10250
  It means it is possible for ~/.bzr.log to contain non UTF-8 characters.
 
10251
  But it is a debugging log, not a real user file.
 
10252
  (John Arbash Meinel, #56947, #53880)
 
10253
 
 
10254
* Change Command handle to allow Unicode command and options.
 
10255
  At present we cannot register Unicode command names, so we will get
 
10256
  BzrCommandError('unknown command'), or BzrCommandError('unknown option')
 
10257
  But that is better than a UnicodeError + a traceback.
 
10258
  (John Arbash Meinel, #57123)
 
10259
 
 
10260
* Handle TZ=UTC properly when reading/writing revisions.
 
10261
  (John Arbash Meinel, #55783, #56290)
 
10262
 
 
10263
* Use ``GPG_TTY`` to allow gpg --cl to work with gpg-agent in a pipeline,
 
10264
  (passing text to sign in on stdin). (John Arbash Meinel, #54468)
 
10265
 
 
10266
* External diff does the right thing for binaries even in foreign
 
10267
  languages. (John Arbash Meinel, #56307)
 
10268
 
 
10269
* Testament handles more cases when content is unicode. Specific bug was
 
10270
  in handling of revision properties.
 
10271
  (John Arbash Meinel, Holger Krekel, #54723)
 
10272
 
 
10273
* The bzr selftest was failing on installed versions due to a bug in a new
 
10274
  test helper. (John Arbash Meinel, Robert Collins, #58057)
 
10275
 
 
10276
Internals
 
10277
*********
 
10278
 
 
10279
* ``bzrlib.cache_utf8`` contains ``encode()`` and ``decode()`` functions
 
10280
  which can be used to cache the conversion between utf8 and Unicode.
 
10281
  Especially helpful for some of the knit annotation code, which has to
 
10282
  convert revision ids to utf8 to annotate lines in storage.
 
10283
  (John Arbash Meinel)
 
10284
 
 
10285
* ``setup.py`` now searches the filesystem to find all packages which
 
10286
  need to be installed. This should help make the life of packagers
 
10287
  easier. (John Arbash Meinel)
 
10288
 
 
10289
bzr 0.9.0
 
10290
#########
 
10291
 
 
10292
:Released:  2006-08-11
 
10293
 
 
10294
Surprises
 
10295
*********
 
10296
 
 
10297
* The hard-coded built-in ignore rules have been removed. There are
 
10298
  now two rulesets which are enforced. A user global one in
 
10299
  ``~/.bazaar/ignore`` which will apply to every tree, and the tree
 
10300
  specific one '.bzrignore'.
 
10301
  ``~/.bazaar/ignore`` will be created if it does not exist, but with
 
10302
  a more conservative list than the old default.
 
10303
  This fixes bugs with default rules being enforced no matter what.
 
10304
  The old list of ignore rules from bzr is available by
 
10305
  running 'bzr ignore --old-default-rules'.
 
10306
  (Robert Collins, Martin Pool, John Arbash Meinel)
 
10307
 
 
10308
* 'branches.conf' has been changed to 'locations.conf', since it can apply
 
10309
  to more locations than just branch locations.
 
10310
  (Aaron Bentley)
 
10311
 
 
10312
Improvements
 
10313
************
 
10314
 
 
10315
* The revision specifier "revno:" is extended to accept the syntax
 
10316
  revno:N:branch. For example,
 
10317
  revno:42:http://bazaar-vcs.org/bzr/bzr.dev/ means revision 42 in
 
10318
  bzr.dev.  (Matthieu Moy)
 
10319
 
 
10320
* Tests updates to ensure proper URL handling, UNICODE support, and
 
10321
  proper printing when the user's terminal encoding cannot display
 
10322
  the path of a file that has been versioned.
 
10323
  ``bzr branch`` can take a target URL rather than only a local directory.
 
10324
  ``Branch.get_parent()/set_parent()`` now save a relative path if possible,
 
10325
  and normalize the parent based on root, allowing access across
 
10326
  different transports. (John Arbash Meinel, Wouter van Heyst, Martin Pool)
 
10327
  (Malone #48906, #42699, #40675, #5281, #3980, #36363, #43689,
 
10328
  #42517, #42514)
 
10329
 
 
10330
* On Unix, detect terminal width using an ioctl not just $COLUMNS.
 
10331
  Use terminal width for single-line logs from ``bzr log --line`` and
 
10332
  pending-merge display.  (Robert Widhopf-Fenk, Gustavo Niemeyer)
 
10333
  (Malone #3507)
 
10334
 
 
10335
* On Windows, detect terminal width using GetConsoleScreenBufferInfo.
 
10336
  (Alexander Belchenko)
 
10337
 
 
10338
* Speedup improvement for 'date:'-revision search. (Guillaume Pinot).
 
10339
 
 
10340
* Show the correct number of revisions pushed when pushing a new branch.
 
10341
  (Robert Collins).
 
10342
 
 
10343
* 'bzr selftest' now shows a progress bar with the number of tests, and
 
10344
  progress made. 'make check' shows tests in -v mode, to be more useful
 
10345
  for the PQM status window. (Robert Collins).
 
10346
  When using a progress bar, failed tests are printed out, rather than
 
10347
  being overwritten by the progress bar until the suite finishes.
 
10348
  (John Arbash Meinel)
 
10349
 
 
10350
* 'bzr selftest --benchmark' will run a new benchmarking selftest.
 
10351
  'bzr selftest --benchmark --lsprof-timed' will use lsprofile to generate
 
10352
  profile data for the individual profiled calls, allowing for fine
 
10353
  grained analysis of performance.
 
10354
  (Robert Collins, Martin Pool).
 
10355
 
 
10356
* 'bzr commit' shows a progress bar. This is useful for commits over sftp
 
10357
  where commit can take an appreciable time. (Robert Collins)
 
10358
 
 
10359
* 'bzr add' is now less verbose in telling you what ignore globs were
 
10360
  matched by files being ignored. Instead it just tells you how many
 
10361
  were ignored (because you might reasonably be expecting none to be
 
10362
  ignored). 'bzr add -v' is unchanged and will report every ignored
 
10363
  file. (Robert Collins).
 
10364
 
 
10365
* ftp now has a test server if medusa is installed. As part of testing,
 
10366
  ftp support has been improved, including support for supplying a
 
10367
  non-standard port. (John Arbash Meinel).
 
10368
 
 
10369
* 'bzr log --line' shows the revision number, and uses only the
 
10370
  first line of the log message (#5162, Alexander Belchenko;
 
10371
  Matthieu Moy)
 
10372
 
 
10373
* 'bzr status' has had the --all option removed. The 'bzr ls' command
 
10374
  should be used to retrieve all versioned files. (Robert Collins)
 
10375
 
 
10376
* 'bzr bundle OTHER/BRANCH' will create a bundle which can be sent
 
10377
  over email, and applied on the other end, while maintaining ancestry.
 
10378
  This bundle can be applied with either 'bzr merge' or 'bzr pull',
 
10379
  the same way you would apply another branch.
 
10380
  (John Arbash Meinel, Aaron Bentley)
 
10381
 
 
10382
* 'bzr whoami' can now be used to set your identity from the command line,
 
10383
  for a branch or globally.  (Robey Pointer)
 
10384
 
 
10385
* 'bzr checkout' now aliased to 'bzr co', and 'bzr annotate' to 'bzr ann'.
 
10386
  (Michael Ellerman)
 
10387
 
 
10388
* 'bzr revert DIRECTORY' now reverts the contents of the directory as well.
 
10389
  (Aaron Bentley)
 
10390
 
 
10391
* 'bzr get sftp://foo' gives a better error when paramiko is not present.
 
10392
  Also updates things like 'http+pycurl://' if pycurl is not present.
 
10393
  (John Arbash Meinel) (Malone #47821, #52204)
 
10394
 
 
10395
* New env variable ``BZR_PROGRESS_BAR``, sets the default progress bar type.
 
10396
  Can be set to 'none' or 'dummy' to disable the progress bar, 'dots' or
 
10397
  'tty' to create the respective type. (John Arbash Meinel, #42197, #51107)
 
10398
 
 
10399
* Improve the help text for 'bzr diff' to explain what various options do.
 
10400
  (John Arbash Meinel, #6391)
 
10401
 
 
10402
* 'bzr uncommit -r 10' now uncommits revisions 11.. rather than uncommitting
 
10403
  revision 10. This makes -r10 more in line with what other commands do.
 
10404
  'bzr uncommit' also now saves the pending merges of the revisions that
 
10405
  were removed. So it is safe to uncommit after a merge, fix something,
 
10406
  and commit again. (John Arbash Meinel, #32526, #31426)
 
10407
 
 
10408
* 'bzr init' now also works on remote locations.
 
10409
  (Wouter van Heyst, #48904)
 
10410
 
 
10411
* HTTP support has been updated. When using pycurl we now support
 
10412
  connection keep-alive, which reduces dns requests and round trips.
 
10413
  And for both urllib and pycurl we support multi-range requests,
 
10414
  which decreases the number of round-trips. Performance results for
 
10415
  ``bzr branch http://bazaar-vcs.org/bzr/bzr.dev/`` indicate
 
10416
  http branching is now 2-3x faster, and ``bzr pull`` in an existing
 
10417
  branch is as much as 4x faster.
 
10418
  (Michael Ellerman, Johan Rydberg, John Arbash Meinel, #46768)
 
10419
 
 
10420
* Performance improvements for sftp. Branching and pulling are now up to
 
10421
  2x faster. Utilize paramiko.readv() support for async requests if it
 
10422
  is available (paramiko > 1.6) (John Arbash Meinel)
 
10423
 
 
10424
Bug Fixes
 
10425
*********
 
10426
 
 
10427
* Fix shadowed definition of TestLocationConfig that caused some
 
10428
  tests not to run.
 
10429
  (Erik Bågfors, Michael Ellerman, Martin Pool, #32587)
 
10430
 
 
10431
* Fix unnecessary requirement of sign-my-commits that it be run from
 
10432
  a working directory.  (Martin Pool, Robert Collins)
 
10433
 
 
10434
* 'bzr push location' will only remember the push location if it succeeds
 
10435
  in connecting to the remote location. (John Arbash Meinel, #49742)
 
10436
 
 
10437
* 'bzr revert' no longer toggles the executable bit on win32
 
10438
  (John Arbash Meinel, #45010)
 
10439
 
 
10440
* Handle broken pipe under win32 correctly. (John Arbash Meinel)
 
10441
 
 
10442
* sftp tests now work correctly on win32 if you have a newer paramiko
 
10443
  (John Arbash Meinel)
 
10444
 
 
10445
* Cleanup win32 test suite, and general cleanup of places where
 
10446
  file handles were being held open. (John Arbash Meinel)
 
10447
 
 
10448
* When specifying filenames for 'diff -r x..y', the name of the file in the
 
10449
  working directory can be used, even if its name is different in both x
 
10450
  and y.
 
10451
 
 
10452
* File-ids containing single- or double-quotes are handled correctly by
 
10453
  push. (Aaron Bentley, #52227)
 
10454
 
 
10455
* Normalize unicode filenames to ensure cross-platform consistency.
 
10456
  (John Arbash Meinel, #43689)
 
10457
 
 
10458
* The argument parser can now handle '-' as an argument. Currently
 
10459
  no code interprets it specially (it is mostly handled as a file named
 
10460
  '-'). But plugins, and future operations can use it.
 
10461
  (John Arbash meinel, #50984)
 
10462
 
 
10463
* Bundles can properly read binary files with a plain '\r' in them.
 
10464
  (John Arbash Meinel, #51927)
 
10465
 
 
10466
* Tuning ``iter_entries()`` to be more efficient (John Arbash Meinel, #5444)
 
10467
 
 
10468
* Lots of win32 fixes (the test suite passes again).
 
10469
  (John Arbash Meinel, #50155)
 
10470
 
 
10471
* Handle openbsd returning None for sys.getfilesystemencoding() (#41183)
 
10472
 
 
10473
* Support ftp APPE (append) to allow Knits to be used over ftp (#42592)
 
10474
 
 
10475
* Removals are only committed if they match the filespec (or if there is
 
10476
  no filespec).  (#46635, Aaron Bentley)
 
10477
 
 
10478
* smart-add recurses through all supplied directories
 
10479
  (John Arbash Meinel, #52578)
 
10480
 
 
10481
* Make the bundle reader extra lines before and after the bundle text.
 
10482
  This allows you to parse an email with the bundle inline.
 
10483
  (John Arbash Meinel, #49182)
 
10484
 
 
10485
* Change the file id generator to squash a little bit more. Helps when
 
10486
  working with long filenames on windows. (Also helps for unicode filenames
 
10487
  not generating hidden files). (John Arbash Meinel, #43801)
 
10488
 
 
10489
* Restore terminal mode on C-c while reading sftp password.  (#48923,
 
10490
  Nicholas Allen, Martin Pool)
 
10491
 
 
10492
* Timestamps are rounded to 1ms, and revision entries can be recreated
 
10493
  exactly. (John Arbash Meinel, Jamie Wilkinson, #40693)
 
10494
 
 
10495
* Branch.base has changed to a URL, but ~/.bazaar/locations.conf should
 
10496
  use local paths, since it is user visible (John Arbash Meinel, #53653)
 
10497
 
 
10498
* ``bzr status foo`` when foo was unversioned used to cause a full delta
 
10499
  to be generated (John Arbash Meinel, #53638)
 
10500
 
 
10501
* When reading revision properties, an empty value should be considered
 
10502
  the empty string, not None (John Arbash Meinel, #47782)
 
10503
 
 
10504
* ``bzr diff --diff-options`` can now handle binary files being changed.
 
10505
  Also, the output is consistent when --diff-options is not supplied.
 
10506
  (John Arbash Meinel, #54651, #52930)
 
10507
 
 
10508
* Use the right suffixes for loading plugins (John Arbash Meinel, #51810)
 
10509
 
 
10510
* Fix ``Branch.get_parent()`` to handle the case when the parent is not
 
10511
  accessible (John Arbash Meinel, #52976)
 
10512
 
 
10513
Internals
 
10514
*********
 
10515
 
 
10516
* Combine the ignore rules into a single regex rather than looping over
 
10517
  them to reduce the threshold where  N^2 behaviour occurs in operations
 
10518
  like status. (Jan Hudec, Robert Collins).
 
10519
 
 
10520
* Appending to ``bzrlib.DEFAULT_IGNORE`` is now deprecated. Instead, use
 
10521
  one of the add functions in bzrlib.ignores. (John Arbash Meinel)
 
10522
 
 
10523
* 'bzr push' should only push the ancestry of the current revision, not
 
10524
  all of the history in the repository. This is especially important for
 
10525
  shared repositories. (John Arbash Meinel)
 
10526
 
 
10527
* ``bzrlib.delta.compare_trees`` now iterates in alphabetically sorted order,
 
10528
  rather than randomly walking the inventories. (John Arbash Meinel)
 
10529
 
 
10530
* Doctests are now run in temporary directories which are cleaned up when
 
10531
  they finish, rather than using special ScratchDir/ScratchBranch objects.
 
10532
  (Martin Pool)
 
10533
 
 
10534
* Split ``check`` into separate methods on the branch and on the repository,
 
10535
  so that it can be specialized in ways that are useful or efficient for
 
10536
  different formats.  (Martin Pool, Robert Collins)
 
10537
 
 
10538
* Deprecate ``Repository.all_revision_ids``; most methods don't really need
 
10539
  the global revision graph but only that part leading up to a particular
 
10540
  revision.  (Martin Pool, Robert Collins)
 
10541
 
 
10542
* Add a BzrDirFormat ``control_formats`` list which allows for control formats
 
10543
  that do not use '.bzr' to store their data - i.e. '.svn', '.hg' etc.
 
10544
  (Robert Collins, Jelmer Vernooij).
 
10545
 
 
10546
* ``bzrlib.diff.external_diff`` can be redirected to any file-like object.
 
10547
  Uses subprocess instead of spawnvp.
 
10548
  (James Henstridge, John Arbash Meinel, #4047, #48914)
 
10549
 
 
10550
* New command line option '--profile-imports', which will install a custom
 
10551
  importer to log time to import modules and regex compilation time to
 
10552
  sys.stderr (John Arbash Meinel)
 
10553
 
 
10554
* 'EmptyTree' is now deprecated, please use ``repository.revision_tree(None)``
 
10555
  instead. (Robert Collins)
 
10556
 
 
10557
* "RevisionTree" is now in bzrlib/revisiontree.py. (Robert Collins)
 
10558
 
 
10559
bzr 0.8.2
 
10560
#########
 
10561
 
 
10562
:Released:  2006-05-17
 
10563
 
 
10564
Bug Fixes
 
10565
*********
 
10566
 
 
10567
* setup.py failed to install launchpad plugin.  (Martin Pool)
 
10568
 
 
10569
bzr 0.8.1
 
10570
#########
 
10571
 
 
10572
:Released:  2006-05-16
 
10573
 
 
10574
Bug Fixes
 
10575
*********
 
10576
 
 
10577
* Fix failure to commit a merge in a checkout.  (Martin Pool,
 
10578
  Robert Collins, Erik Bågfors, #43959)
 
10579
 
 
10580
* Nicer messages from 'commit' in the case of renames, and correct
 
10581
  messages when a merge has occured. (Robert Collins, Martin Pool)
 
10582
 
 
10583
* Separate functionality from assert statements as they are skipped in
 
10584
  optimized mode of python. Add the same check to pending merges.
 
10585
  (Olaf Conradi, #44443)
 
10586
 
 
10587
Changes
 
10588
*******
 
10589
 
 
10590
* Do not show the None revision in output of bzr ancestry. (Olaf Conradi)
 
10591
 
 
10592
* Add info on standalone branches without a working tree.
 
10593
  (Olaf Conradi, #44155)
 
10594
 
 
10595
* Fix bug in knits when raising InvalidRevisionId. (Olaf Conradi, #44284)
 
10596
 
 
10597
Changes
 
10598
*******
 
10599
 
 
10600
* Make editor invocation comply with Debian Policy. First check
 
10601
  environment variables VISUAL and EDITOR, then try editor from
 
10602
  alternatives system. If that all fails, fall back to the pre-defined
 
10603
  list of editors. (Olaf Conradi, #42904)
 
10604
 
 
10605
New Features
 
10606
************
 
10607
 
 
10608
* New 'register-branch' command registers a public branch into
 
10609
  Launchpad.net, where it can be associated with bugs, etc.
 
10610
  (Martin Pool, Bjorn Tillenius, Robert Collins)
 
10611
 
 
10612
Internals
 
10613
*********
 
10614
 
 
10615
* New public api in InventoryEntry - ``describe_change(old, new)`` which
 
10616
  provides a human description of the changes between two old and
 
10617
  new. (Robert Collins, Martin Pool)
 
10618
 
 
10619
Testing
 
10620
*******
 
10621
 
 
10622
* Fix test case for bzr info in upgrading a standalone branch to metadir,
 
10623
  uses bzrlib api now. (Olaf Conradi)
 
10624
 
 
10625
bzr 0.8
 
10626
#######
 
10627
 
 
10628
:Released:  2006-05-08
 
10629
 
 
10630
Notes When Upgrading
 
10631
********************
 
10632
 
 
10633
Release 0.8 of bzr introduces a new format for history storage, called
 
10634
'knit', as an evolution of to the 'weave' format used in 0.7.  Local
 
10635
and remote operations are faster using knits than weaves.  Several
 
10636
operations including 'init', 'init-repo', and 'upgrade' take a
 
10637
--format option that controls this.  Branching from an existing branch
 
10638
will keep the same format.
 
10639
 
 
10640
It is possible to merge, pull and push between branches of different
 
10641
formats but this is slower than moving data between homogenous
 
10642
branches.  It is therefore recommended (but not required) that you
 
10643
upgrade all branches for a project at the same time.  Information on
 
10644
formats is shown by 'bzr info'.
 
10645
 
 
10646
bzr 0.8 now allows creation of 'repositories', which hold the history
 
10647
of files and revisions for several branches.  Previously bzr kept all
 
10648
the history for a branch within the .bzr directory at the root of the
 
10649
branch, and this is still the default.  To create a repository, use
 
10650
the new 'bzr init-repo' command.  Branches exist as directories under
 
10651
the repository and contain just a small amount of information
 
10652
indicating the current revision of the branch.
 
10653
 
 
10654
bzr 0.8 also supports 'checkouts', which are similar to in cvs and
 
10655
subversion.  Checkouts are associated with a branch (optionally in a
 
10656
repository), which contains all the historical information.  The
 
10657
result is that a checkout can be deleted without losing any
 
10658
already-committed revisions.  A new 'update' command is also available.
 
10659
 
 
10660
Repositories and checkouts are not supported with the 0.7 storage
 
10661
format.  To use them you must upgrad to either knits, or to the
 
10662
'metaweave' format, which uses weaves but changes the .bzr directory
 
10663
arrangement.
 
10664
 
 
10665
 
 
10666
Improvements
 
10667
************
 
10668
 
 
10669
* sftp paths can now be relative, or local, according to the lftp
 
10670
  convention. Paths now take the form::
 
10671
 
 
10672
      sftp://user:pass@host:port/~/relative/path
 
10673
      or
 
10674
      sftp://user:pass@host:port/absolute/path
 
10675
 
 
10676
* The FTP transport now tries to reconnect after a temporary
 
10677
  failure. ftp put is made atomic. (Matthieu Moy)
 
10678
 
 
10679
* The FTP transport now maintains a pool of connections, and
 
10680
  reuses them to avoid multiple connections to the same host (like
 
10681
  sftp did). (Daniel Silverstone)
 
10682
 
 
10683
* The ``bzr_man.py`` file has been removed. To create the man page now,
 
10684
  use ``./generate_docs.py man``. The new program can also create other files.
 
10685
  Run ``python generate_docs.py --help`` for usage information.
 
10686
  (Hans Ulrich Niedermann & James Blackwell).
 
10687
 
 
10688
* Man Page now gives full help (James Blackwell).
 
10689
  Help also updated to reflect user config now being stored in .bazaar
 
10690
  (Hans Ulrich Niedermann)
 
10691
 
 
10692
* It's now possible to set aliases in bazaar.conf (Erik Bågfors)
 
10693
 
 
10694
* Pull now accepts a --revision argument (Erik Bågfors)
 
10695
 
 
10696
* ``bzr re-sign`` now allows multiple revisions to be supplied on the command
 
10697
  line. You can now use the following command to sign all of your old
 
10698
  commits::
 
10699
 
 
10700
    find .bzr/revision-store// -name my@email-* \
 
10701
      | sed 's/.*\/\/..\///' \
 
10702
      | xargs bzr re-sign
 
10703
 
 
10704
* Upgrade can now upgrade over the network. (Robert Collins)
 
10705
 
 
10706
* Two new commands 'bzr checkout' and 'bzr update' allow for CVS/SVN-alike
 
10707
  behaviour.  By default they will cache history in the checkout, but
 
10708
  with --lightweight almost all data is kept in the master branch.
 
10709
  (Robert Collins)
 
10710
 
 
10711
* 'revert' unversions newly-versioned files, instead of deleting them.
 
10712
 
 
10713
* 'merge' is more robust.  Conflict messages have changed.
 
10714
 
 
10715
* 'merge' and 'revert' no longer clobber existing files that end in '~' or
 
10716
  '.moved'.
 
10717
 
 
10718
* Default log format can be set in configuration and plugins can register
 
10719
  their own formatters. (Erik Bågfors)
 
10720
 
 
10721
* New 'reconcile' command will check branch consistency and repair indexes
 
10722
  that can become out of sync in pre 0.8 formats. (Robert Collins,
 
10723
  Daniel Silverstone)
 
10724
 
 
10725
* New 'bzr init --format' and 'bzr upgrade --format' option to control
 
10726
  what storage format is created or produced.  (Robert Collins,
 
10727
  Martin Pool)
 
10728
 
 
10729
* Add parent location to 'bzr info', if there is one.  (Olaf Conradi)
 
10730
 
 
10731
* New developer commands 'weave-list' and 'weave-join'.  (Martin Pool)
 
10732
 
 
10733
* New 'init-repository' command, plus support for repositories in 'init'
 
10734
  and 'branch' (Aaron Bentley, Erik Bågfors, Robert Collins)
 
10735
 
 
10736
* Improve output of 'info' command. Show all relevant locations related to
 
10737
  working tree, branch and repository. Use kibibytes for binary quantities.
 
10738
  Fix off-by-one error in missing revisions of working tree.  Make 'info'
 
10739
  work on branches, repositories and remote locations.  Show locations
 
10740
  relative to the shared repository, if applicable.  Show locking status
 
10741
  of locations.  (Olaf Conradi)
 
10742
 
 
10743
* Diff and merge now safely handle binary files. (Aaron Bentley)
 
10744
 
 
10745
* 'pull' and 'push' now normalise the revision history, so that any two
 
10746
  branches with the same tip revision will have the same output from 'log'.
 
10747
  (Robert Collins)
 
10748
 
 
10749
* 'merge' accepts --remember option to store parent location, like 'push'
 
10750
  and 'pull'. (Olaf Conradi)
 
10751
 
 
10752
* bzr status and diff when files given as arguments do not exist
 
10753
  in the relevant trees.  (Martin Pool, #3619)
 
10754
 
 
10755
* Add '.hg' to the default ignore list.  (Martin Pool)
 
10756
 
 
10757
* 'knit' is now the default disk format. This improves disk performance and
 
10758
  utilization, increases incremental pull performance, robustness with SFTP
 
10759
  and allows checkouts over SFTP to perform acceptably.
 
10760
  The initial Knit code was contributed by Johan Rydberg based on a
 
10761
  specification by Martin Pool.
 
10762
  (Robert Collins, Aaron Bentley, Johan Rydberg, Martin Pool).
 
10763
 
 
10764
* New tool to generate all-in-one html version of the manual.  (Alexander
 
10765
  Belchenko)
 
10766
 
 
10767
* Hitting CTRL-C while doing an SFTP push will no longer cause stale locks
 
10768
  to be left in the SFTP repository. (Robert Collins, Martin Pool).
 
10769
 
 
10770
* New option 'diff --prefix' to control how files are named in diff
 
10771
  output, with shortcuts '-p0' and '-p1' corresponding to the options for
 
10772
  GNU patch.  (Alexander Belchenko, Goffredo Baroncelli, Martin Pool)
 
10773
 
 
10774
* Add --revision option to 'annotate' command.  (Olaf Conradi)
 
10775
 
 
10776
* If bzr shows an unexpected revision-history after pulling (perhaps due
 
10777
  to a reweave) it can now be corrected by 'bzr reconcile'.
 
10778
  (Robert Collins)
 
10779
 
 
10780
Changes
 
10781
*******
 
10782
 
 
10783
* Commit is now verbose by default, and shows changed filenames and the
 
10784
  new revision number.  (Robert Collins, Martin Pool)
 
10785
 
 
10786
* Unify 'mv', 'move', 'rename'.  (Matthew Fuller, #5379)
 
10787
 
 
10788
* 'bzr -h' shows help.  (Martin Pool, Ian Bicking, #35940)
 
10789
 
 
10790
* Make 'pull' and 'push' remember location on failure using --remember.
 
10791
  (Olaf Conradi)
 
10792
 
 
10793
* For compatibility, make old format for using weaves inside metadir
 
10794
  available as 'metaweave' format.  Rename format 'metadir' to 'default'.
 
10795
  Clean up help for option --format in commands 'init', 'init-repo' and
 
10796
  'upgrade'.  (Olaf Conradi)
 
10797
 
 
10798
Internals
 
10799
*********
 
10800
 
 
10801
* The internal storage of history, and logical branch identity have now
 
10802
  been split into Branch, and Repository. The common locking and file
 
10803
  management routines are now in bzrlib.lockablefiles.
 
10804
  (Aaron Bentley, Robert Collins, Martin Pool)
 
10805
 
 
10806
* Transports can now raise DependencyNotPresent if they need a library
 
10807
  which is not installed, and then another implementation will be
 
10808
  tried.  (Martin Pool)
 
10809
 
 
10810
* Remove obsolete (and no-op) `decode` parameter to `Transport.get`.
 
10811
  (Martin Pool)
 
10812
 
 
10813
* Using Tree Transform for merge, revert, tree-building
 
10814
 
 
10815
* WorkingTree.create, Branch.create, ``WorkingTree.create_standalone``,
 
10816
  Branch.initialize are now deprecated. Please see ``BzrDir.create_*`` for
 
10817
  replacement API's. (Robert Collins)
 
10818
 
 
10819
* New BzrDir class represents the .bzr control directory and manages
 
10820
  formatting issues. (Robert Collins)
 
10821
 
 
10822
* New repository.InterRepository class encapsulates Repository to
 
10823
  Repository actions and allows for clean selection of optimised code
 
10824
  paths. (Robert Collins)
 
10825
 
 
10826
* ``bzrlib.fetch.fetch`` and ``bzrlib.fetch.greedy_fetch`` are now
 
10827
  deprecated, please use ``branch.fetch`` or ``repository.fetch``
 
10828
  depending on your needs. (Robert Collins)
 
10829
 
 
10830
* deprecated methods now have a ``is_deprecated`` flag on them that can
 
10831
  be checked, if you need to determine whether a given callable is
 
10832
  deprecated at runtime. (Robert Collins)
 
10833
 
 
10834
* Progress bars are now nested - see
 
10835
  ``bzrlib.ui.ui_factory.nested_progress_bar``.
 
10836
  (Robert Collins, Robey Pointer)
 
10837
 
 
10838
* New API call ``get_format_description()`` for each type of format.
 
10839
  (Olaf Conradi)
 
10840
 
 
10841
* Changed ``branch.set_parent()`` to accept None to remove parent.
 
10842
  (Olaf Conradi)
 
10843
 
 
10844
* Deprecated BzrError AmbiguousBase.  (Olaf Conradi)
 
10845
 
 
10846
* WorkingTree.branch is now a read only property.  (Robert Collins)
 
10847
 
 
10848
* bzrlib.ui.text.TextUIFactory now accepts a ``bar_type`` parameter which
 
10849
  can be None or a factory that will create a progress bar. This is
 
10850
  useful for testing or for overriding the bzrlib.progress heuristic.
 
10851
  (Robert Collins)
 
10852
 
 
10853
* New API method ``get_physical_lock_status()`` to query locks present on a
 
10854
  transport.  (Olaf Conradi)
 
10855
 
 
10856
* Repository.reconcile now takes a thorough keyword parameter to allow
 
10857
  requesting an indepth reconciliation, rather than just a data-loss
 
10858
  check. (Robert Collins)
 
10859
 
 
10860
* ``bzrlib.ui.ui_factory protocol`` now supports ``get_boolean`` to prompt
 
10861
  the user for yes/no style input. (Robert Collins)
 
10862
 
 
10863
Testing
 
10864
*******
 
10865
 
 
10866
* SFTP tests now shortcut the SSH negotiation, reducing test overhead
 
10867
  for testing SFTP protocol support. (Robey Pointer)
 
10868
 
 
10869
* Branch formats are now tested once per implementation (see ``bzrlib.
 
10870
  tests.branch_implementations``. This is analagous to the transport
 
10871
  interface tests, and has been followed up with working tree,
 
10872
  repository and BzrDir tests. (Robert Collins)
 
10873
 
 
10874
* New test base class TestCaseWithTransport provides a transport aware
 
10875
  test environment, useful for testing any transport-interface using
 
10876
  code. The test suite option --transport controls the transport used
 
10877
  by this class (when its not being used as part of implementation
 
10878
  contract testing). (Robert Collins)
 
10879
 
 
10880
* Close logging handler on disabling the test log. This will remove the
 
10881
  handler from the internal list inside python's logging module,
 
10882
  preventing shutdown from closing it twice.  (Olaf Conradi)
 
10883
 
 
10884
* Move test case for uncommit to blackbox tests.  (Olaf Conradi)
 
10885
 
 
10886
* ``run_bzr`` and ``run_bzr_captured`` now accept a 'stdin="foo"'
 
10887
  parameter which will provide String("foo") to the command as its stdin.
 
10888
 
 
10889
bzr 0.7
 
10890
#######
 
10891
 
 
10892
:Released: 2006-01-09
 
10893
 
 
10894
Changes
 
10895
*******
 
10896
 
 
10897
* .bzrignore is excluded from exports, on the grounds that it's a bzr
 
10898
  internal-use file and may not be wanted.  (Jamie Wilkinson)
 
10899
 
 
10900
* The "bzr directories" command were removed in favor of the new
 
10901
  --kind option to the "bzr inventory" command.  To list all
 
10902
  versioned directories, now use "bzr inventory --kind directory".
 
10903
  (Johan Rydberg)
 
10904
 
 
10905
* Under Windows configuration directory is now ``%APPDATA%\bazaar\2.0``
 
10906
  by default. (John Arbash Meinel)
 
10907
 
 
10908
* The parent of Bzr configuration directory can be set by ``BZR_HOME``
 
10909
  environment variable. Now the path for it is searched in ``BZR_HOME``,
 
10910
  then in HOME. Under Windows the order is: ``BZR_HOME``, ``APPDATA``
 
10911
  (usually points to ``C:\Documents and Settings\User Name\Application Data``),
 
10912
  ``HOME``. (John Arbash Meinel)
 
10913
 
 
10914
* Plugins with the same name in different directories in the bzr plugin
 
10915
  path are no longer loaded: only the first successfully loaded one is
 
10916
  used. (Robert Collins)
 
10917
 
 
10918
* Use systems' external ssh command to open connections if possible.
 
10919
  This gives better integration with user settings such as ProxyCommand.
 
10920
  (James Henstridge)
 
10921
 
 
10922
* Permissions on files underneath .bzr/ are inherited from the .bzr
 
10923
  directory. So for a shared repository, simply doing 'chmod -R g+w .bzr/'
 
10924
  will mean that future file will be created with group write permissions.
 
10925
 
 
10926
* configure.in and config.guess are no longer in the builtin default
 
10927
  ignore list.
 
10928
 
 
10929
* '.sw[nop]' pattern ignored, to ignore vim swap files for nameless
 
10930
  files.  (John Arbash Meinel, Martin Pool)
 
10931
 
 
10932
Improvements
 
10933
************
 
10934
 
 
10935
* "bzr INIT dir" now initializes the specified directory, and creates
 
10936
  it if it does not exist.  (John Arbash Meinel)
 
10937
 
 
10938
* New remerge command (Aaron Bentley)
 
10939
 
 
10940
* Better zsh completion script.  (Steve Borho)
 
10941
 
 
10942
* 'bzr diff' now returns 1 when there are changes in the working
 
10943
  tree. (Robert Collins)
 
10944
 
 
10945
* 'bzr push' now exists and can push changes to a remote location.
 
10946
  This uses the transport infrastructure, and can store the remote
 
10947
  location in the ~/.bazaar/branches.conf configuration file.
 
10948
  (Robert Collins)
 
10949
 
 
10950
* Test directories are only kept if the test fails and the user requests
 
10951
  that they be kept.
 
10952
 
 
10953
* Tweaks to short log printing
 
10954
 
 
10955
* Added branch nicks, new nick command, printing them in log output.
 
10956
  (Aaron Bentley)
 
10957
 
 
10958
* If ``$BZR_PDB`` is set, pop into the debugger when an uncaught exception
 
10959
  occurs.  (Martin Pool)
 
10960
 
 
10961
* Accept 'bzr resolved' (an alias for 'bzr resolve'), as this is
 
10962
  the same as Subversion.  (Martin Pool)
 
10963
 
 
10964
* New ftp transport support (on ftplib), for ftp:// and aftp://
 
10965
  URLs.  (Daniel Silverstone)
 
10966
 
 
10967
* Commit editor temporary files now start with ``bzr_log.``, to allow
 
10968
  text editors to match the file name and set up appropriate modes or
 
10969
  settings.  (Magnus Therning)
 
10970
 
 
10971
* Improved performance when integrating changes from a remote weave.
 
10972
  (Goffredo Baroncelli)
 
10973
 
 
10974
* Sftp will attempt to cache the connection, so it is more likely that
 
10975
  a connection will be reused, rather than requiring multiple password
 
10976
  requests.
 
10977
 
 
10978
* bzr revno now takes an optional argument indicating the branch whose
 
10979
  revno should be printed.  (Michael Ellerman)
 
10980
 
 
10981
* bzr cat defaults to printing the last version of the file.
 
10982
  (Matthieu Moy, #3632)
 
10983
 
 
10984
* New global option 'bzr --lsprof COMMAND' runs bzr under the lsprof
 
10985
  profiler.  (Denys Duchier)
 
10986
 
 
10987
* Faster commits by reading only the headers of affected weave files.
 
10988
  (Denys Duchier)
 
10989
 
 
10990
* 'bzr add' now takes a --dry-run parameter which shows you what would be
 
10991
  added, but doesn't actually add anything. (Michael Ellerman)
 
10992
 
 
10993
* 'bzr add' now lists how many files were ignored per glob.  add --verbose
 
10994
  lists the specific files.  (Aaron Bentley)
 
10995
 
 
10996
* 'bzr missing' now supports displaying changes in diverged trees and can
 
10997
  be limited to show what either end of the comparison is missing.
 
10998
  (Aaron Bently, with a little prompting from Daniel Silverstone)
 
10999
 
 
11000
Bug Fixes
 
11001
*********
 
11002
 
 
11003
* SFTP can walk up to the root path without index errors. (Robert Collins)
 
11004
 
 
11005
* Fix bugs in running bzr with 'python -O'.  (Martin Pool)
 
11006
 
 
11007
* Error when run with -OO
 
11008
 
 
11009
* Fix bug in reporting http errors that don't have an http error code.
 
11010
  (Martin Pool)
 
11011
 
 
11012
* Handle more cases of pipe errors in display commands
 
11013
 
 
11014
* Change status to 3 for all errors
 
11015
 
 
11016
* Files that are added and unlinked before committing are completely
 
11017
  ignored by diff and status
 
11018
 
 
11019
* Stores with some compressed texts and some uncompressed texts are now
 
11020
  able to be used. (John A Meinel)
 
11021
 
 
11022
* Fix for bzr pull failing sometimes under windows
 
11023
 
 
11024
* Fix for sftp transport under windows when using interactive auth
 
11025
 
 
11026
* Show files which are both renamed and modified as such in 'bzr
 
11027
  status' output.  (Daniel Silverstone, #4503)
 
11028
 
 
11029
* Make annotate cope better with revisions committed without a valid
 
11030
  email address.  (Marien Zwart)
 
11031
 
 
11032
* Fix representation of tab characters in commit messages.
 
11033
  (Harald Meland)
 
11034
 
 
11035
* List of plugin directories in ``BZR_PLUGIN_PATH`` environment variable is
 
11036
  now parsed properly under Windows. (Alexander Belchenko)
 
11037
 
 
11038
* Show number of revisions pushed/pulled/merged. (Robey Pointer)
 
11039
 
 
11040
* Keep a cached copy of the basis inventory to speed up operations
 
11041
  that need to refer to it.  (Johan Rydberg, Martin Pool)
 
11042
 
 
11043
* Fix bugs in bzr status display of non-ascii characters.
 
11044
  (Martin Pool)
 
11045
 
 
11046
* Remove Makefile.in from default ignore list.
 
11047
  (Tollef Fog Heen, Martin Pool, #6413)
 
11048
 
 
11049
* Fix failure in 'bzr added'.  (Nathan McCallum, Martin Pool)
 
11050
 
 
11051
Testing
 
11052
*******
 
11053
 
 
11054
* Fix selftest asking for passwords when there are no SFTP keys.
 
11055
  (Robey Pointer, Jelmer Vernooij)
 
11056
 
 
11057
* Fix selftest run with 'python -O'.  (Martin Pool)
 
11058
 
 
11059
* Fix HTTP tests under Windows. (John Arbash Meinel)
 
11060
 
 
11061
* Make tests work even if HOME is not set (Aaron Bentley)
 
11062
 
 
11063
* Updated ``build_tree`` to use fixed line-endings for tests which read
 
11064
  the file cotents and compare. Make some tests use this to pass under
 
11065
  Windows. (John Arbash Meinel)
 
11066
 
 
11067
* Skip stat and symlink tests under Windows. (Alexander Belchenko)
 
11068
 
 
11069
* Delay in selftest/testhashcash is now issued under win32 and Cygwin.
 
11070
  (John Arbash Meinel)
 
11071
 
 
11072
* Use terminal width to align verbose test output.  (Martin Pool)
 
11073
 
 
11074
* Blackbox tests are maintained within the bzrlib.tests.blackbox directory.
 
11075
  If adding a new test script please add that to
 
11076
  ``bzrlib.tests.blackbox.__init__``. (Robert Collins)
 
11077
 
 
11078
* Much better error message if one of the test suites can't be
 
11079
  imported.  (Martin Pool)
 
11080
 
 
11081
* Make check now runs the test suite twice - once with the default locale,
 
11082
  and once with all locales forced to C, to expose bugs. This is not
 
11083
  trivially done within python, so for now its only triggered by running
 
11084
  Make check. Integrators and packagers who wish to check for full
 
11085
  platform support should run 'make check' to test the source.
 
11086
  (Robert Collins)
 
11087
 
 
11088
* Tests can now run TestSkipped if they can't execute for any reason.
 
11089
  (Martin Pool) (NB: TestSkipped should only be raised for correctable
 
11090
  reasons - see the wiki spec ImprovingBzrTestSuite).
 
11091
 
 
11092
* Test sftp with relative, absolute-in-homedir and absolute-not-in-homedir
 
11093
  paths for the transport tests. Introduce blackbox remote sftp tests that
 
11094
  test the same permutations. (Robert Collins, Robey Pointer)
 
11095
 
 
11096
* Transport implementation tests are now independent of the local file
 
11097
  system, which allows tests for esoteric transports, and for features
 
11098
  not available in the local file system. They also repeat for variations
 
11099
  on the URL scheme that can introduce issues in the transport code,
 
11100
  see bzrlib.transport.TransportTestProviderAdapter() for this.
 
11101
  (Robert Collins).
 
11102
 
 
11103
* ``TestCase.build_tree`` uses the transport interface to build trees,
 
11104
  pass in a transport parameter to give it an existing connection.
 
11105
  (Robert Collins).
 
11106
 
 
11107
Internals
 
11108
*********
 
11109
 
 
11110
* WorkingTree.pull has been split across Branch and WorkingTree,
 
11111
  to allow Branch only pulls. (Robert Collins)
 
11112
 
 
11113
* ``commands.display_command`` now returns the result of the decorated
 
11114
  function. (Robert Collins)
 
11115
 
 
11116
* LocationConfig now has a ``set_user_option(key, value)`` call to save
 
11117
  a setting in its matching location section (a new one is created
 
11118
  if needed). (Robert Collins)
 
11119
 
 
11120
* Branch has two new methods, ``get_push_location`` and
 
11121
  ``set_push_location`` to respectively, get and set the push location.
 
11122
  (Robert Collins)
 
11123
 
 
11124
* ``commands.register_command`` now takes an optional flag to signal that
 
11125
  the registrant is planning to decorate an existing command. When
 
11126
  given multiple plugins registering a command is not an error, and
 
11127
  the original command class (whether built in or a plugin based one) is
 
11128
  returned to the caller. There is a new error 'MustUseDecorated' for
 
11129
  signalling when a wrapping command should switch to the original
 
11130
  version. (Robert Collins)
 
11131
 
 
11132
* Some option parsing errors will raise 'BzrOptionError', allowing
 
11133
  granular detection for decorating commands. (Robert Collins).
 
11134
 
 
11135
* ``Branch.read_working_inventory`` has moved to
 
11136
  ``WorkingTree.read_working_inventory``. This necessitated changes to
 
11137
  ``Branch.get_root_id``, and a move of ``Branch.set_inventory`` to
 
11138
  WorkingTree as well. To make it clear that a WorkingTree cannot always
 
11139
  be obtained ``Branch.working_tree()`` will raise
 
11140
  ``errors.NoWorkingTree`` if one cannot be obtained. (Robert Collins)
 
11141
 
 
11142
* All pending merges operations from Branch are now on WorkingTree.
 
11143
  (Robert Collins)
 
11144
 
 
11145
* The follow operations from Branch have moved to WorkingTree::
 
11146
 
 
11147
      add()
 
11148
      commit()
 
11149
      move()
 
11150
      rename_one()
 
11151
      unknowns()
 
11152
 
 
11153
  (Robert Collins)
 
11154
 
 
11155
* ``bzrlib.add.smart_add_branch`` is now ``smart_add_tree``. (Robert Collins)
 
11156
 
 
11157
* New "rio" serialization format, similar to rfc-822. (Martin Pool)
 
11158
 
 
11159
* Rename selftests to ``bzrlib.tests.test_foo``.  (John A Meinel, Martin
 
11160
  Pool)
 
11161
 
 
11162
* ``bzrlib.plugin.all_plugins`` has been changed from an attribute to a
 
11163
  query method. (Robert Collins)
 
11164
 
 
11165
* New options to read only the table-of-contents of a weave.
 
11166
  (Denys Duchier)
 
11167
 
 
11168
* Raise NoSuchFile when someone tries to add a non-existant file.
 
11169
  (Michael Ellerman)
 
11170
 
 
11171
* Simplify handling of DivergedBranches in ``cmd_pull()``.
 
11172
  (Michael Ellerman)
 
11173
 
 
11174
* Branch.controlfile* logic has moved to lockablefiles.LockableFiles, which
 
11175
  is exposed as ``Branch().control_files``. Also this has been altered with the
 
11176
  controlfile pre/suffix replaced by simple method names like 'get' and
 
11177
  'put'. (Aaron Bentley, Robert Collins).
 
11178
 
 
11179
* Deprecated functions and methods can now be marked as such using the
 
11180
  ``bzrlib.symbol_versioning`` module. Marked method have their docstring
 
11181
  updated and will issue a DeprecationWarning using the warnings module
 
11182
  when they are used. (Robert Collins)
 
11183
 
 
11184
* ``bzrlib.osutils.safe_unicode`` now exists to provide parameter coercion
 
11185
  for functions that need unicode strings. (Robert Collins)
 
11186
 
 
11187
bzr 0.6
 
11188
#######
 
11189
 
 
11190
:Released: 2005-10-28
 
11191
 
 
11192
Improvements
 
11193
************
 
11194
 
 
11195
* pull now takes --verbose to show you what revisions are added or removed
 
11196
  (John A Meinel)
 
11197
 
 
11198
* merge now takes a --show-base option to include the base text in
 
11199
  conflicts.
 
11200
  (Aaron Bentley)
 
11201
 
 
11202
* The config files are now read using ConfigObj, so '=' should be used as
 
11203
  a separator, not ':'.
 
11204
  (Aaron Bentley)
 
11205
 
 
11206
* New 'bzr commit --strict' option refuses to commit if there are
 
11207
  any unknown files in the tree.  To commit, make sure all files are
 
11208
  either ignored, added, or deleted.  (Michael Ellerman)
 
11209
 
 
11210
* The config directory is now ~/.bazaar, and there is a single file
 
11211
  ~/.bazaar/bazaar.conf storing email, editor and other preferences.
 
11212
  (Robert Collins)
 
11213
 
 
11214
* 'bzr add' no longer takes a --verbose option, and a --quiet option
 
11215
  has been added that suppresses all output.
 
11216
 
 
11217
* Improved zsh completion support in contrib/zsh, from Clint
 
11218
  Adams.
 
11219
 
 
11220
* Builtin 'bzr annotate' command, by Martin Pool with improvements from
 
11221
  Goffredo Baroncelli.
 
11222
 
 
11223
* 'bzr check' now accepts -v for verbose reporting, and checks for
 
11224
  ghosts in the branch. (Robert Collins)
 
11225
 
 
11226
* New command 're-sign' which will regenerate the gpg signature for
 
11227
  a revision. (Robert Collins)
 
11228
 
 
11229
* If you set ``check_signatures=require`` for a path in
 
11230
  ``~/.bazaar/branches.conf`` then bzr will invoke your
 
11231
  ``gpg_signing_command`` (defaults to gpg) and record a digital signature
 
11232
  of your commit. (Robert Collins)
 
11233
 
 
11234
* New sftp transport, based on Paramiko.  (Robey Pointer)
 
11235
 
 
11236
* 'bzr pull' now accepts '--clobber' which will discard local changes
 
11237
  and make this branch identical to the source branch. (Robert Collins)
 
11238
 
 
11239
* Just give a quieter warning if a plugin can't be loaded, and
 
11240
  put the details in .bzr.log.  (Martin Pool)
 
11241
 
 
11242
* 'bzr branch' will now set the branch-name to the last component of the
 
11243
  output directory, if one was supplied.
 
11244
 
 
11245
* If the option ``post_commit`` is set to one (or more) python function
 
11246
  names (must be in the bzrlib namespace), then they will be invoked
 
11247
  after the commit has completed, with the branch and ``revision_id`` as
 
11248
  parameters. (Robert Collins)
 
11249
 
 
11250
* Merge now has a retcode of 1 when conflicts occur. (Robert Collins)
 
11251
 
 
11252
* --merge-type weave is now supported for file contents.  Tree-shape
 
11253
  changes are still three-way based.  (Martin Pool, Aaron Bentley)
 
11254
 
 
11255
* 'bzr check' allows the first revision on revision-history to have
 
11256
  parents - something that is expected for cheap checkouts, and occurs
 
11257
  when conversions from baz do not have all history.  (Robert Collins).
 
11258
 
 
11259
* 'bzr merge' can now graft unrelated trees together, if your specify
 
11260
  0 as a base. (Aaron Bentley)
 
11261
 
 
11262
* 'bzr commit branch' and 'bzr commit branch/file1 branch/file2' now work
 
11263
  (Aaron Bentley)
 
11264
 
 
11265
* Add '.sconsign*' to default ignore list.  (Alexander Belchenko)
 
11266
 
 
11267
* 'bzr merge --reprocess' minimizes conflicts
 
11268
 
 
11269
Testing
 
11270
*******
 
11271
 
 
11272
* The 'bzr selftest --pattern' option for has been removed, now
 
11273
  test specifiers on the command line can be simple strings, or
 
11274
  regexps, or both. (Robert Collins)
 
11275
 
 
11276
* Passing -v to selftest will now show the time each test took to
 
11277
  complete, which will aid in analysing performance regressions and
 
11278
  related questions. (Robert Collins)
 
11279
 
 
11280
* 'bzr selftest' runs all tests, even if one fails, unless '--one'
 
11281
  is given. (Martin Pool)
 
11282
 
 
11283
* There is a new method for TestCaseInTempDir, assertFileEqual, which
 
11284
  will check that a given content is equal to the content of the named
 
11285
  file. (Robert Collins)
 
11286
 
 
11287
* Fix test suite's habit of leaving many temporary log files in $TMPDIR.
 
11288
  (Martin Pool)
 
11289
 
 
11290
Internals
 
11291
*********
 
11292
 
 
11293
* New 'testament' command and concept for making gpg-signatures
 
11294
  of revisions that are not tied to a particular internal
 
11295
  representation.  (Martin Pool).
 
11296
 
 
11297
* Per-revision properties ('revprops') as key-value associated
 
11298
  strings on each revision created when the revision is committed.
 
11299
  Intended mainly for the use of external tools.  (Martin Pool).
 
11300
 
 
11301
* Config options have moved from bzrlib.osutils to bzrlib.config.
 
11302
  (Robert Collins)
 
11303
 
 
11304
* Improved command line option definitions allowing explanations
 
11305
  for individual options, among other things.  Contributed by
 
11306
  Magnus Therning.
 
11307
 
 
11308
* Config options have moved from bzrlib.osutils to bzrlib.config.
 
11309
  Configuration is now done via the config.Config interface:
 
11310
  Depending on whether you have a Branch, a Location or no information
 
11311
  available, construct a ``*Config``, and use its ``signature_checking``,
 
11312
  ``username`` and ``user_email`` methods. (Robert Collins)
 
11313
 
 
11314
* Plugins are now loaded under bzrlib.plugins, not bzrlib.plugin, and
 
11315
  they are made available for other plugins to use. You should not
 
11316
  import other plugins during the ``__init__`` of your plugin though, as
 
11317
  no ordering is guaranteed, and the plugins directory is not on the
 
11318
  python path. (Robert Collins)
 
11319
 
 
11320
* Branch.relpath has been moved to WorkingTree.relpath. WorkingTree no
 
11321
  no longer takes an inventory, rather it takes an option branch
 
11322
  parameter, and if None is given will open the branch at basedir
 
11323
  implicitly. (Robert Collins)
 
11324
 
 
11325
* Cleaner exception structure and error reporting.  Suggested by
 
11326
  Scott James Remnant.  (Martin Pool)
 
11327
 
 
11328
* Branch.remove has been moved to WorkingTree, which has also gained
 
11329
  ``lock_read``, ``lock_write`` and ``unlock`` methods for convenience.
 
11330
  (Robert Collins)
 
11331
 
 
11332
* Two decorators, ``needs_read_lock`` and ``needs_write_lock`` have been
 
11333
  added to the branch module. Use these to cause a function to run in a
 
11334
  read or write lock respectively. (Robert Collins)
 
11335
 
 
11336
* ``Branch.open_containing`` now returns a tuple (Branch, relative-path),
 
11337
  which allows direct access to the common case of 'get me this file
 
11338
  from its branch'. (Robert Collins)
 
11339
 
 
11340
* Transports can register using ``register_lazy_transport``, and they
 
11341
  will be loaded when first used.  (Martin Pool)
 
11342
 
 
11343
* 'pull' has been factored out of the command as ``WorkingTree.pull()``.
 
11344
  A new option to WorkingTree.pull has been added, clobber, which will
 
11345
  ignore diverged history and pull anyway.
 
11346
  (Robert Collins)
 
11347
 
 
11348
* config.Config has a ``get_user_option`` call that accepts an option name.
 
11349
  This will be looked up in branches.conf and bazaar.conf as normal.
 
11350
  It is intended that this be used by plugins to support options -
 
11351
  options of built in programs should have specific methods on the config.
 
11352
  (Robert Collins)
 
11353
 
 
11354
* ``merge.merge_inner`` now has tempdir as an optional parameter.
 
11355
  (Robert Collins)
 
11356
 
 
11357
* Tree.kind is not recorded at the top level of the hierarchy, as it was
 
11358
  missing on EmptyTree, leading to a bug with merge on EmptyTrees.
 
11359
  (Robert Collins)
 
11360
 
 
11361
* ``WorkingTree.__del__`` has been removed, it was non deterministic and not
 
11362
  doing what it was intended to. See ``WorkingTree.__init__`` for a comment
 
11363
  about future directions. (Robert Collins/Martin Pool)
 
11364
 
 
11365
* bzrlib.transport.http has been modified so that only 404 urllib errors
 
11366
  are returned as NoSuchFile. Other exceptions will propagate as normal.
 
11367
  This allows debuging of actual errors. (Robert Collins)
 
11368
 
 
11369
* bzrlib.transport.Transport now accepts *ONLY* url escaped relative paths
 
11370
  to apis like 'put', 'get' and 'has'. This is to provide consistent
 
11371
  behaviour - it operates on url's only. (Robert Collins)
 
11372
 
 
11373
* Transports can register using ``register_lazy_transport``, and they
 
11374
  will be loaded when first used.  (Martin Pool)
 
11375
 
 
11376
* ``merge_flex`` no longer calls ``conflict_handler.finalize()``, instead that
 
11377
  is called by ``merge_inner``. This is so that the conflict count can be
 
11378
  retrieved (and potentially manipulated) before returning to the caller
 
11379
  of ``merge_inner``. Likewise 'merge' now returns the conflict count to the
 
11380
  caller. (Robert Collins)
 
11381
 
 
11382
* ``revision.revision_graph`` can handle having only partial history for
 
11383
  a revision - that is no revisions in the graph with no parents.
 
11384
  (Robert Collins).
 
11385
 
 
11386
* New ``builtins.branch_files`` uses the standard ``file_list`` rules to
 
11387
  produce a branch and a list of paths, relative to that branch
 
11388
  (Aaron Bentley)
 
11389
 
 
11390
* New TestCase.addCleanup facility.
 
11391
 
 
11392
* New ``bzrlib.version_info`` tuple (similar to ``sys.version_info``),
 
11393
  which can be used by programs importing bzrlib.
 
11394
 
 
11395
Bug Fixes
 
11396
*********
 
11397
 
 
11398
* Better handling of branches in directories with non-ascii names.
 
11399
  (Joel Rosdahl, Panagiotis Papadakos)
 
11400
 
 
11401
* Upgrades of trees with no commits will not fail due to accessing
 
11402
  [-1] in the revision-history. (Andres Salomon)
 
11403
 
 
11404
 
 
11405
bzr 0.1.1
 
11406
#########
 
11407
 
 
11408
:Released: 2005-10-12
 
11409
 
 
11410
Bug Fixes
 
11411
*********
 
11412
 
 
11413
* Fix problem in pulling over http from machines that do not
 
11414
  allow directories to be listed.
 
11415
 
 
11416
* Avoid harmless warning about invalid hash cache after
 
11417
  upgrading branch format.
 
11418
 
 
11419
Performance
 
11420
***********
 
11421
 
 
11422
* Avoid some unnecessary http operations in branch and pull.
 
11423
 
 
11424
 
 
11425
bzr 0.1
 
11426
#######
 
11427
 
 
11428
:Released: 2005-10-11
 
11429
 
 
11430
Notes
 
11431
*****
 
11432
 
 
11433
* 'bzr branch' over http initially gives a very high estimate
 
11434
  of completion time but it should fall as the first few
 
11435
  revisions are pulled in.  branch is still slow on
 
11436
  high-latency connections.
 
11437
 
 
11438
Bug Fixes
 
11439
*********
 
11440
 
 
11441
* bzr-man.py has been updated to work again. Contributed by
 
11442
  Rob Weir.
 
11443
 
 
11444
* Locking is now done with fcntl.lockf which works with NFS
 
11445
  file systems. Contributed by Harald Meland.
 
11446
 
 
11447
* When a merge encounters a file that has been deleted on
 
11448
  one side and modified on the other, the old contents are
 
11449
  written out to foo.BASE and foo.SIDE, where SIDE is this
 
11450
  or OTHER. Contributed by Aaron Bentley.
 
11451
 
 
11452
* Export was choosing incorrect file paths for the content of
 
11453
  the tarball, this has been fixed by Aaron Bentley.
 
11454
 
 
11455
* Commit will no longer commit without a log message, an
 
11456
  error is returned instead. Contributed by Jelmer Vernooij.
 
11457
 
 
11458
* If you commit a specific file in a sub directory, any of its
 
11459
  parent directories that are added but not listed will be
 
11460
  automatically included. Suggested by Michael Ellerman.
 
11461
 
 
11462
* bzr commit and upgrade did not correctly record new revisions
 
11463
  for files with only a change to their executable status.
 
11464
  bzr will correct this when it encounters it. Fixed by
 
11465
  Robert Collins
 
11466
 
 
11467
* HTTP tests now force off the use of ``http_proxy`` for the duration.
 
11468
  Contributed by Gustavo Niemeyer.
 
11469
 
 
11470
* Fix problems in merging weave-based branches that have
 
11471
  different partial views of history.
 
11472
 
 
11473
* Symlink support: working with symlinks when not in the root of a
 
11474
  bzr tree was broken, patch from Scott James Remnant.
 
11475
 
 
11476
Improvements
 
11477
************
 
11478
 
 
11479
* 'branch' now accepts a --basis parameter which will take advantage
 
11480
  of local history when making a new branch. This allows faster
 
11481
  branching of remote branches. Contributed by Aaron Bentley.
 
11482
 
 
11483
* New tree format based on weave files, called version 5.
 
11484
  Existing branches can be upgraded to this format using
 
11485
  'bzr upgrade'.
 
11486
 
 
11487
* Symlinks are now versionable. Initial patch by
 
11488
  Erik Toubro Nielsen, updated to head by Robert Collins.
 
11489
 
 
11490
* Executable bits are tracked on files. Patch from Gustavo
 
11491
  Niemeyer.
 
11492
 
 
11493
* 'bzr status' now shows unknown files inside a selected directory.
 
11494
  Patch from Heikki Paajanen.
 
11495
 
 
11496
* Merge conflicts are recorded in .bzr. Two new commands 'conflicts'
 
11497
  and 'resolve' have needed added, which list and remove those
 
11498
  merge conflicts respectively. A conflicted tree cannot be committed
 
11499
  in. Contributed by Aaron Bentley.
 
11500
 
 
11501
* 'rm' is now an alias for 'remove'.
 
11502
 
 
11503
* Stores now split out their content in a single byte prefixed hash,
 
11504
  dropping the density of files per directory by 256. Contributed by
 
11505
  Gustavo Niemeyer.
 
11506
 
 
11507
* 'bzr diff -r branch:URL' will now perform a diff between two branches.
 
11508
  Contributed by Robert Collins.
 
11509
 
 
11510
* 'bzr log' with the default formatter will show merged revisions,
 
11511
  indented to the right. Initial implementation contributed by Gustavo
 
11512
  Niemeyer, made incremental by Robert Collins.
 
11513
 
 
11514
 
 
11515
Internals
 
11516
*********
 
11517
 
 
11518
* Test case failures have the exception printed after the log
 
11519
  for your viewing pleasure.
 
11520
 
 
11521
* InventoryEntry is now an abstract base class, use one of the
 
11522
  concrete InventoryDirectory etc classes instead.
 
11523
 
 
11524
* Branch raises an UnsupportedFormatError when it detects a
 
11525
  bzr branch it cannot understand. This allows for precise
 
11526
  handling of such circumstances.
 
11527
 
 
11528
* Remove RevisionReference class; ``Revision.parent_ids`` is now simply a
 
11529
  list of their ids and ``parent_sha1s`` is a list of their corresponding
 
11530
  sha1s (for old branches only at the moment.)
 
11531
 
 
11532
* New method-object style interface for Commit() and Fetch().
 
11533
 
 
11534
* Renamed ``Branch.last_patch()`` to ``Branch.last_revision()``, since
 
11535
  we call them revisions not patches.
 
11536
 
 
11537
* Move ``copy_branch`` to ``bzrlib.clone.copy_branch``.  The destination
 
11538
  directory is created if it doesn't exist.
 
11539
 
 
11540
* Inventories now identify the files which were present by
 
11541
  giving the revision *of that file*.
 
11542
 
 
11543
* Inventory and Revision XML contains a version identifier.
 
11544
  This must be consistent with the overall branch version
 
11545
  but allows for more flexibility in future upgrades.
 
11546
 
 
11547
Testing
 
11548
*******
 
11549
 
 
11550
* Removed testsweet module so that tests can be run after
 
11551
  bzr installed by 'bzr selftest'.
 
11552
 
 
11553
* 'bzr selftest' command-line arguments can now be partial ids
 
11554
  of tests to run, e.g. ``bzr selftest test_weave``
 
11555
 
 
11556
 
 
11557
bzr 0.0.9
 
11558
#########
 
11559
 
 
11560
:Released: 2005-09-23
 
11561
 
 
11562
Bug Fixes
 
11563
*********
 
11564
 
 
11565
* Fixed "branch -r" option.
 
11566
 
 
11567
* Fix remote access to branches containing non-compressed history.
 
11568
  (Robert Collins).
 
11569
 
 
11570
* Better reliability of http server tests.  (John Arbash-Meinel)
 
11571
 
 
11572
* Merge graph maximum distance calculation fix.  (Aaron Bentley)
 
11573
 
 
11574
* Various minor bug in windows support have been fixed, largely in the
 
11575
  test suite. Contributed by Alexander Belchenko.
 
11576
 
 
11577
Improvements
 
11578
************
 
11579
 
 
11580
* Status now accepts a -r argument to give status between chosen
 
11581
  revisions. Contributed by Heikki Paajanen.
 
11582
 
 
11583
* Revision arguments no longer use +/-/= to control ranges, instead
 
11584
  there is a 'before' namespace, which limits the successive namespace.
 
11585
  For example '$ bzr log -r date:yesterday..before:date:today' will
 
11586
  select everything from yesterday and before today. Contributed by
 
11587
  Robey Pointer
 
11588
 
 
11589
* There is now a bzr.bat file created by distutils when building on
 
11590
  Windows. Contributed by Alexander Belchenko.
 
11591
 
 
11592
Internals
 
11593
*********
 
11594
 
 
11595
* Removed uuid() as it was unused.
 
11596
 
 
11597
* Improved 'fetch' code for pulling revisions from one branch into
 
11598
  another (used by pull, merged, etc.)
 
11599
 
 
11600
 
 
11601
bzr 0.0.8
 
11602
#########
 
11603
 
 
11604
:Released: 2005-09-20
 
11605
 
 
11606
 
 
11607
Improvements
 
11608
************
 
11609
 
 
11610
* Adding a file whose parent directory is not versioned will
 
11611
  implicitly add the parent, and so on up to the root. This means
 
11612
  you should never need to explictly add a directory, they'll just
 
11613
  get added when you add a file in the directory.  Contributed by
 
11614
  Michael Ellerman.
 
11615
 
 
11616
* Ignore ``.DS_Store`` (contains Mac metadata) by default.
 
11617
  (Nir Soffer)
 
11618
 
 
11619
* If you set ``BZR_EDITOR`` in the environment, it is checked in
 
11620
  preference to EDITOR and the config file for the interactive commit
 
11621
  editing program. Related to this is a bugfix where a missing program
 
11622
  set in EDITOR would cause editing to fail, now the fallback program
 
11623
  for the operating system is still tried.
 
11624
 
 
11625
* Files that are not directories/symlinks/regular files will no longer
 
11626
  cause bzr to fail, it will just ignore them by default. You cannot add
 
11627
  them to the tree though - they are not versionable.
 
11628
 
 
11629
 
 
11630
Internals
 
11631
*********
 
11632
 
 
11633
* Refactor xml packing/unpacking.
 
11634
 
 
11635
Bug Fixes
 
11636
*********
 
11637
 
 
11638
* Fixed 'bzr mv' by Ollie Rutherfurd.
 
11639
 
 
11640
* Fixed strange error when trying to access a nonexistent http
 
11641
  branch.
 
11642
 
 
11643
* Make sure that the hashcache gets written out if it can't be
 
11644
  read.
 
11645
 
 
11646
 
 
11647
Portability
 
11648
***********
 
11649
 
 
11650
* Various Windows fixes from Ollie Rutherfurd.
 
11651
 
 
11652
* Quieten warnings about locking; patch from Matt Lavin.
 
11653
 
 
11654
 
 
11655
bzr-0.0.7
 
11656
#########
 
11657
 
 
11658
:Released: 2005-09-02
 
11659
 
 
11660
New Features
 
11661
************
 
11662
 
 
11663
* ``bzr shell-complete`` command contributed by Clint Adams to
 
11664
  help with intelligent shell completion.
 
11665
 
 
11666
* New expert command ``bzr find-merge-base`` for debugging merges.
 
11667
 
 
11668
 
 
11669
Enhancements
 
11670
************
 
11671
 
 
11672
* Much better merge support.
 
11673
 
 
11674
* merge3 conflicts are now reported with markers like '<<<<<<<'
 
11675
  (seven characters) which is the same as CVS and pleases things
 
11676
  like emacs smerge.
 
11677
 
 
11678
 
 
11679
Bug Fixes
 
11680
*********
 
11681
 
 
11682
* ``bzr upgrade`` no longer fails when trying to fix trees that
 
11683
  mention revisions that are not present.
 
11684
 
 
11685
* Fixed bugs in listing plugins from ``bzr plugins``.
 
11686
 
 
11687
* Fix case of $EDITOR containing options for the editor.
 
11688
 
 
11689
* Fix log -r refusing to show the last revision.
 
11690
  (Patch from Goffredo Baroncelli.)
 
11691
 
 
11692
 
 
11693
Changes
 
11694
*******
 
11695
 
 
11696
* ``bzr log --show-ids`` shows the revision ids of all parents.
 
11697
 
 
11698
* Externally provided commands on your $BZRPATH no longer need
 
11699
  to recognize --bzr-usage to work properly, and can just handle
 
11700
  --help themselves.
 
11701
 
 
11702
 
 
11703
Library
 
11704
*******
 
11705
 
 
11706
* Changed trace messages to go through the standard logging
 
11707
  framework, so that they can more easily be redirected by
 
11708
  libraries.
 
11709
 
 
11710
 
 
11711
 
 
11712
bzr-0.0.6
 
11713
#########
 
11714
 
 
11715
:Released: 2005-08-18
 
11716
 
 
11717
New Features
 
11718
************
 
11719
 
 
11720
* Python plugins, automatically loaded from the directories on
 
11721
  ``BZR_PLUGIN_PATH`` or ``~/.bzr.conf/plugins`` by default.
 
11722
 
 
11723
* New 'bzr mkdir' command.
 
11724
 
 
11725
* Commit mesage is fetched from an editor if not given on the
 
11726
  command line; patch from Torsten Marek.
 
11727
 
 
11728
* ``bzr log -m FOO`` displays commits whose message matches regexp
 
11729
  FOO.
 
11730
 
 
11731
* ``bzr add`` with no arguments adds everything under the current directory.
 
11732
 
 
11733
* ``bzr mv`` does move or rename depending on its arguments, like
 
11734
  the Unix command.
 
11735
 
 
11736
* ``bzr missing`` command shows a summary of the differences
 
11737
  between two trees.  (Merged from John Arbash-Meinel.)
 
11738
 
 
11739
* An email address for commits to a particular tree can be
 
11740
  specified by putting it into .bzr/email within a branch.  (Based
 
11741
  on a patch from Heikki Paajanen.)
 
11742
 
 
11743
 
 
11744
Enhancements
 
11745
************
 
11746
 
 
11747
* Faster working tree operations.
 
11748
 
 
11749
 
 
11750
Changes
 
11751
*******
 
11752
 
 
11753
* 3rd-party modules shipped with bzr are copied within the bzrlib
 
11754
  python package, so that they can be installed by the setup
 
11755
  script without clashing with anything already existing on the
 
11756
  system.  (Contributed by Gustavo Niemeyer.)
 
11757
 
 
11758
* Moved plugins directory to bzrlib/, so that there's a standard
 
11759
  plugin directory which is not only installed with bzr itself but
 
11760
  is also available when using bzr from the development tree.
 
11761
  ``BZR_PLUGIN_PATH`` and ``DEFAULT_PLUGIN_PATH`` are then added to the
 
11762
  standard plugins directory.
 
11763
 
 
11764
* When exporting to a tarball with ``bzr export --format tgz``, put
 
11765
  everything under a top directory rather than dumping it into the
 
11766
  current directory.   This can be overridden with the ``--root``
 
11767
  option.  Patch from William Dodé and John Meinel.
 
11768
 
 
11769
* New ``bzr upgrade`` command to upgrade the format of a branch,
 
11770
  replacing ``bzr check --update``.
 
11771
 
 
11772
* Files within store directories are no longer marked readonly on
 
11773
  disk.
 
11774
 
 
11775
* Changed ``bzr log`` output to a more compact form suggested by
 
11776
  John A Meinel.  Old format is available with the ``--long`` or
 
11777
  ``-l`` option, patched by William Dodé.
 
11778
 
 
11779
* By default the commit command refuses to record a revision with
 
11780
  no changes unless the ``--unchanged`` option is given.
 
11781
 
 
11782
* The ``--no-plugins``, ``--profile`` and ``--builtin`` command
 
11783
  line options must come before the command name because they
 
11784
  affect what commands are available; all other options must come
 
11785
  after the command name because their interpretation depends on
 
11786
  it.
 
11787
 
 
11788
* ``branch`` and ``clone`` added as aliases for ``branch``.
 
11789
 
 
11790
* Default log format is back to the long format; the compact one
 
11791
  is available with ``--short``.
 
11792
 
 
11793
 
 
11794
Bug Fixes
 
11795
*********
 
11796
 
 
11797
* Fix bugs in committing only selected files or within a subdirectory.
 
11798
 
 
11799
 
 
11800
bzr-0.0.5
 
11801
#########
 
11802
 
 
11803
:Released:  2005-06-15
 
11804
 
 
11805
Changes
 
11806
*******
 
11807
 
 
11808
* ``bzr`` with no command now shows help rather than giving an
 
11809
  error.  Suggested by Michael Ellerman.
 
11810
 
 
11811
* ``bzr status`` output format changed, because svn-style output
 
11812
  doesn't really match the model of bzr.  Now files are grouped by
 
11813
  status and can be shown with their IDs.  ``bzr status --all``
 
11814
  shows all versioned files and unknown files but not ignored files.
 
11815
 
 
11816
* ``bzr log`` runs from most-recent to least-recent, the reverse
 
11817
  of the previous order.  The previous behaviour can be obtained
 
11818
  with the ``--forward`` option.
 
11819
 
 
11820
* ``bzr inventory`` by default shows only filenames, and also ids
 
11821
  if ``--show-ids`` is given, in which case the id is the second
 
11822
  field.
 
11823
 
 
11824
 
 
11825
Enhancements
 
11826
************
 
11827
 
 
11828
* New 'bzr whoami --email' option shows only the email component
 
11829
  of the user identification, from Jo Vermeulen.
 
11830
 
 
11831
* New ``bzr ignore PATTERN`` command.
 
11832
 
 
11833
* Nicer error message for broken pipe, interrupt and similar
 
11834
  conditions that don't indicate an internal error.
 
11835
 
 
11836
* Add ``.*.sw[nop] .git .*.tmp *,v`` to default ignore patterns.
 
11837
 
 
11838
* Per-branch locks keyed on ``.bzr/branch-lock``, available in
 
11839
  either read or write mode.
 
11840
 
 
11841
* New option ``bzr log --show-ids`` shows revision and file ids.
 
11842
 
 
11843
* New usage ``bzr log FILENAME`` shows only revisions that
 
11844
  affected that file.
 
11845
 
 
11846
* Changed format for describing changes in ``bzr log -v``.
 
11847
 
 
11848
* New option ``bzr commit --file`` to take a message from a file,
 
11849
  suggested by LarstiQ.
 
11850
 
 
11851
* New syntax ``bzr status [FILE...]`` contributed by Bartosz
 
11852
  Oler.  File may be in a branch other than the working directory.
 
11853
 
 
11854
* ``bzr log`` and ``bzr root`` can be given an http URL instead of
 
11855
  a filename.
 
11856
 
 
11857
* Commands can now be defined by external programs or scripts
 
11858
  in a directory on $BZRPATH.
 
11859
 
 
11860
* New "stat cache" avoids reading the contents of files if they
 
11861
  haven't changed since the previous time.
 
11862
 
 
11863
* If the Python interpreter is too old, try to find a better one
 
11864
  or give an error.  Based on a patch from Fredrik Lundh.
 
11865
 
 
11866
* New optional parameter ``bzr info [BRANCH]``.
 
11867
 
 
11868
* New form ``bzr commit SELECTED`` to commit only selected files.
 
11869
 
 
11870
* New form ``bzr log -r FROM:TO`` shows changes in selected
 
11871
  range; contributed by John A Meinel.
 
11872
 
 
11873
* New option ``bzr diff --diff-options 'OPTS'`` allows passing
 
11874
  options through to an external GNU diff.
 
11875
 
 
11876
* New option ``bzr add --no-recurse`` to add a directory but not
 
11877
  their contents.
 
11878
 
 
11879
* ``bzr --version`` now shows more information if bzr is being run
 
11880
  from a branch.
 
11881
 
 
11882
 
 
11883
Bug Fixes
 
11884
*********
 
11885
 
 
11886
* Fixed diff format so that added and removed files will be
 
11887
  handled properly by patch.  Fix from Lalo Martins.
 
11888
 
 
11889
* Various fixes for files whose names contain spaces or other
 
11890
  metacharacters.
 
11891
 
 
11892
 
 
11893
Testing
 
11894
*******
 
11895
 
 
11896
* Converted black-box test suites from Bourne shell into Python;
 
11897
  now run using ``./testbzr``.  Various structural improvements to
 
11898
  the tests.
 
11899
 
 
11900
* testbzr by default runs the version of bzr found in the same
 
11901
  directory as the tests, or the one given as the first parameter.
 
11902
 
 
11903
* testbzr also runs the internal tests, so the only command
 
11904
  required to check is just ``./testbzr``.
 
11905
 
 
11906
* testbzr requires python2.4, but can be used to test bzr running
 
11907
  under a different version.
 
11908
 
 
11909
* Tests added for many other changes in this release.
 
11910
 
 
11911
 
 
11912
Internal
 
11913
********
 
11914
 
 
11915
* Included ElementTree library upgraded to 1.2.6 by Fredrik Lundh.
 
11916
 
 
11917
* Refactor command functions into Command objects based on HCT by
 
11918
  Scott James Remnant.
 
11919
 
 
11920
* Better help messages for many commands.
 
11921
 
 
11922
* Expose ``bzrlib.open_tracefile()`` to start the tracefile; until
 
11923
  this is called trace messages are just discarded.
 
11924
 
 
11925
* New internal function ``find_touching_revisions()`` and hidden
 
11926
  command touching-revisions trace the changes to a given file.
 
11927
 
 
11928
* Simpler and faster ``compare_inventories()`` function.
 
11929
 
 
11930
* ``bzrlib.open_tracefile()`` takes a tracefilename parameter.
 
11931
 
 
11932
* New AtomicFile class.
 
11933
 
 
11934
* New developer commands ``added``, ``modified``.
 
11935
 
 
11936
 
 
11937
Portability
 
11938
***********
 
11939
 
 
11940
* Cope on Windows on python2.3 by using the weaker random seed.
 
11941
  2.4 is now only recommended.
 
11942
 
 
11943
 
 
11944
bzr-0.0.4
 
11945
#########
 
11946
 
 
11947
:Released:  2005-04-22
 
11948
 
 
11949
Enhancements
 
11950
************
 
11951
 
 
11952
* 'bzr diff' optionally takes a list of files to diff.  Still a bit
 
11953
  basic.  Patch from QuantumG.
 
11954
 
 
11955
* More default ignore patterns.
 
11956
 
 
11957
* New 'bzr log --verbose' shows a list of files changed in the
 
11958
  changeset.  Patch from Sebastian Cote.
 
11959
 
 
11960
* Roll over ~/.bzr.log if it gets too large.
 
11961
 
 
11962
* Command abbreviations 'ci', 'st', 'stat', '?' based on a patch
 
11963
  by Jason Diamon.
 
11964
 
 
11965
* New 'bzr help commands' based on a patch from Denys Duchier.
 
11966
 
 
11967
 
 
11968
Changes
 
11969
*******
 
11970
 
 
11971
* User email is determined by looking at $BZREMAIL or ~/.bzr.email
 
11972
  or $EMAIL.  All are decoded by the locale preferred encoding.
 
11973
  If none of these are present user@hostname is used.  The host's
 
11974
  fully-qualified name is not used because that tends to fail when
 
11975
  there are DNS problems.
 
11976
 
 
11977
* New 'bzr whoami' command instead of username user-email.
 
11978
 
 
11979
 
 
11980
Bug Fixes
 
11981
*********
 
11982
 
 
11983
* Make commit safe for hardlinked bzr trees.
 
11984
 
 
11985
* Some Unicode/locale fixes.
 
11986
 
 
11987
* Partial workaround for ``difflib.unified_diff`` not handling
 
11988
  trailing newlines properly.
 
11989
 
 
11990
 
 
11991
Internal
 
11992
********
 
11993
 
 
11994
* Allow docstrings for help to be in PEP0257 format.  Patch from
 
11995
  Matt Brubeck.
 
11996
 
 
11997
* More tests in test.sh.
 
11998
 
 
11999
* Write profile data to a temporary file not into working
 
12000
  directory and delete it when done.
 
12001
 
 
12002
* Smaller .bzr.log with process ids.
 
12003
 
 
12004
 
 
12005
Portability
 
12006
***********
 
12007
 
 
12008
* Fix opening of ~/.bzr.log on Windows.  Patch from Andrew
 
12009
  Bennetts.
 
12010
 
 
12011
* Some improvements in handling paths on Windows, based on a patch
 
12012
  from QuantumG.
 
12013
 
 
12014
 
 
12015
bzr-0.0.3
 
12016
#########
 
12017
 
 
12018
:Released:  2005-04-06
 
12019
 
 
12020
Enhancements
 
12021
************
 
12022
 
 
12023
* New "directories" internal command lists versioned directories
 
12024
  in the tree.
 
12025
 
 
12026
* Can now say "bzr commit --help".
 
12027
 
 
12028
* New "rename" command to rename one file to a different name
 
12029
  and/or directory.
 
12030
 
 
12031
* New "move" command to move one or more files into a different
 
12032
  directory.
 
12033
 
 
12034
* New "renames" command lists files renamed since base revision.
 
12035
 
 
12036
* New cat command contributed by janmar.
 
12037
 
 
12038
Changes
 
12039
*******
 
12040
 
 
12041
* .bzr.log is placed in $HOME (not pwd) and is always written in
 
12042
  UTF-8.  (Probably not a completely good long-term solution, but
 
12043
  will do for now.)
 
12044
 
 
12045
Portability
 
12046
***********
 
12047
 
 
12048
* Workaround for difflib bug in Python 2.3 that causes an
 
12049
  exception when comparing empty files.  Reported by Erik Toubro
 
12050
  Nielsen.
 
12051
 
 
12052
Internal
 
12053
********
 
12054
 
 
12055
* Refactored inventory storage to insert a root entry at the top.
 
12056
 
 
12057
Testing
 
12058
*******
 
12059
 
 
12060
* Start of shell-based black-box testing in test.sh.
6831
12061
 
6832
12062
 
6833
12063
bzr-0.0.2.1
6834
 
-----------
6835
 
 
6836
 
  PORTABILITY:
6837
 
 
6838
 
    * Win32 fixes from Steve Brown.
6839
 
 
6840
 
 
6841
 
bzr-0.0.2  "black cube"  2005-03-31
6842
 
-----------------------------------
6843
 
 
6844
 
  ENHANCEMENTS:
6845
 
 
6846
 
    * Default ignore list extended (see bzrlib/__init__.py).
6847
 
 
6848
 
    * Patterns in .bzrignore are now added to the default ignore list,
6849
 
      rather than replacing it.
6850
 
 
6851
 
    * Ignore list isn't reread for every file.
6852
 
 
6853
 
    * More help topics.
6854
 
 
6855
 
    * Reinstate the 'bzr check' command to check invariants of the
6856
 
      branch.
6857
 
 
6858
 
    * New 'ignored' command lists which files are ignored and why;
6859
 
      'deleted' lists files deleted in the current working tree.
6860
 
 
6861
 
    * Performance improvements.
6862
 
 
6863
 
    * New global --profile option.
6864
 
    
6865
 
    * Ignore patterns like './config.h' now correctly match files in
6866
 
      the root directory only.
6867
 
 
6868
 
 
6869
 
bzr-0.0.1  2005-03-26
6870
 
---------------------
6871
 
 
6872
 
  ENHANCEMENTS:
6873
 
 
6874
 
    * More information from info command.
6875
 
 
6876
 
    * Can now say "bzr help COMMAND" for more detailed help.
6877
 
 
6878
 
    * Less file flushing and faster performance when writing logs and
6879
 
      committing to stores.
6880
 
 
6881
 
    * More useful verbose output from some commands.
6882
 
 
6883
 
  BUG FIXES:
6884
 
 
6885
 
    * Fix inverted display of 'R' and 'M' during 'commit -v'.
6886
 
 
6887
 
  PORTABILITY:
6888
 
 
6889
 
    * Include a subset of ElementTree-1.2.20040618 to make
6890
 
      installation easier.
6891
 
 
6892
 
    * Fix time.localtime call to work with Python 2.3 (the minimum
6893
 
      supported).
6894
 
 
6895
 
 
6896
 
bzr-0.0.0.69  2005-03-22
6897
 
------------------------
6898
 
 
6899
 
  ENHANCEMENTS:
6900
 
 
6901
 
    * First public release.
6902
 
 
6903
 
    * Storage of local versions: init, add, remove, rm, info, log,
6904
 
      diff, status, etc.
 
12064
###########
 
12065
 
 
12066
Portability
 
12067
***********
 
12068
 
 
12069
* Win32 fixes from Steve Brown.
 
12070
 
 
12071
 
 
12072
bzr-0.0.2
 
12073
#########
 
12074
 
 
12075
:Codename: "black cube"
 
12076
:Released: 2005-03-31
 
12077
 
 
12078
Enhancements
 
12079
************
 
12080
 
 
12081
* Default ignore list extended (see bzrlib/__init__.py).
 
12082
 
 
12083
* Patterns in .bzrignore are now added to the default ignore list,
 
12084
  rather than replacing it.
 
12085
 
 
12086
* Ignore list isn't reread for every file.
 
12087
 
 
12088
* More help topics.
 
12089
 
 
12090
* Reinstate the 'bzr check' command to check invariants of the
 
12091
  branch.
 
12092
 
 
12093
* New 'ignored' command lists which files are ignored and why;
 
12094
  'deleted' lists files deleted in the current working tree.
 
12095
 
 
12096
* Performance improvements.
 
12097
 
 
12098
* New global --profile option.
 
12099
 
 
12100
* Ignore patterns like './config.h' now correctly match files in
 
12101
  the root directory only.
 
12102
 
 
12103
 
 
12104
bzr-0.0.1
 
12105
#########
 
12106
 
 
12107
:Released:  2005-03-26
 
12108
 
 
12109
Enhancements
 
12110
************
 
12111
 
 
12112
* More information from info command.
 
12113
 
 
12114
* Can now say "bzr help COMMAND" for more detailed help.
 
12115
 
 
12116
* Less file flushing and faster performance when writing logs and
 
12117
  committing to stores.
 
12118
 
 
12119
* More useful verbose output from some commands.
 
12120
 
 
12121
Bug Fixes
 
12122
*********
 
12123
 
 
12124
* Fix inverted display of 'R' and 'M' during 'commit -v'.
 
12125
 
 
12126
Portability
 
12127
***********
 
12128
 
 
12129
* Include a subset of ElementTree-1.2.20040618 to make
 
12130
  installation easier.
 
12131
 
 
12132
* Fix time.localtime call to work with Python 2.3 (the minimum
 
12133
  supported).
 
12134
 
 
12135
 
 
12136
bzr-0.0.0.69
 
12137
############
 
12138
 
 
12139
:Released:  2005-03-22
 
12140
 
 
12141
Enhancements
 
12142
************
 
12143
 
 
12144
* First public release.
 
12145
 
 
12146
* Storage of local versions: init, add, remove, rm, info, log,
 
12147
  diff, status, etc.
 
12148
 
6905
12149
 
6906
12150
..
6907
 
   vim: tw=74 ft=rst ff=unix
 
12151
   vim: tw=74 ft=rst ff=unix encoding=utf-8