5
* Fixed "branch -r" option.
7
* Fix remote access to branches containing non-compressed history.
10
* Better reliability of http server tests. (John Arbash-Meinel)
12
* Merge graph maximum distance calculation fix. (Aaron Bentley)
16
* Status now accepted a -r argument to give status between chosen
17
revisions. Contributed by Heikki Paajanen.
19
* Revision arguments no longer use +/-/= to control ranges, instead
20
there is a 'before' namespace, which limits the successive namespace.
21
For example '$ bzr log -r date:yesterday..before:date:today' will
22
select everything from yesterday and before today. Contributed by
29
* Adding a file whose parent directory is not versioned will
30
implicitly add the parent, and so on up to the root. This means
31
you should never need to explictly add a directory, they'll just
32
get added when you add a file in the directory. Contributed by
35
* Ignore .DS_Store (contains Mac metadata) by default. Patch from
38
* If you set BZR_EDITOR in the environment, it is checked in
39
preference to EDITOR and the config file for the interactive commit
40
editing program. Related to this is a bugfix where a missing program
41
set in EDITOR would cause editing to fail, now the fallback program
42
for the operating system is still tried.
44
* Files that are not directories/symlinks/regular files will no longer
45
cause bzr to fail, it will just ignore them by default. You cannot add
46
them to the tree though - they are not versionable.
51
* Refactor xml packing/unpacking.
56
* Fixed 'bzr mv' by Ollie Rutherfurd.
58
* Fixed strange error when trying to access a nonexistent http
61
* Make sure that the hashcache gets written out if it can't be
67
* Various Windows fixes from Ollie Rutherfurd.
69
* Quieten warnings about locking; patch from Matt Lavin.
76
* ``bzr shell-complete`` command contributed by Clint Adams to
77
help with intelligent shell completion.
79
* New expert command ``bzr find-merge-base`` for debugging merges.
84
* Much better merge support.
86
* merge3 conflicts are now reported with markers like '<<<<<<<'
87
(seven characters) which is the same as CVS and pleases things
93
* ``bzr upgrade`` no longer fails when trying to fix trees that
94
mention revisions that are not present.
96
* Fixed bugs in listing plugins from ``bzr plugins``.
98
* Fix case of $EDITOR containing options for the editor.
100
* Fix log -r refusing to show the last revision.
101
(Patch from Goffredo Baroncelli.)
106
* ``bzr log --show-ids`` shows the revision ids of all parents.
108
* Externally provided commands on your $BZRPATH no longer need
109
to recognize --bzr-usage to work properly, and can just handle
115
* Changed trace messages to go through the standard logging
116
framework, so that they can more easily be redirected by
125
* Python plugins, automatically loaded from the directories on
126
BZR_PLUGIN_PATH or ~/.bzr.conf/plugins by default.
128
* New 'bzr mkdir' command.
130
* Commit mesage is fetched from an editor if not given on the
131
command line; patch from Torsten Marek.
133
* ``bzr log -m FOO`` displays commits whose message matches regexp
136
* ``bzr add`` with no arguments adds everything under the current directory.
138
* ``bzr mv`` does move or rename depending on its arguments, like
141
* ``bzr missing`` command shows a summary of the differences
142
between two trees. (Merged from John Arbash-Meinel.)
144
* An email address for commits to a particular tree can be
145
specified by putting it into .bzr/email within a branch. (Based
146
on a patch from Heikki Paajanen.)
151
* Faster working tree operations.
156
* 3rd-party modules shipped with bzr are copied within the bzrlib
157
python package, so that they can be installed by the setup
158
script without clashing with anything already existing on the
159
system. (Contributed by Gustavo Niemeyer.)
161
* Moved plugins directory to bzrlib/, so that there's a standard
162
plugin directory which is not only installed with bzr itself but
163
is also available when using bzr from the development tree.
164
BZR_PLUGIN_PATH and DEFAULT_PLUGIN_PATH are then added to the
165
standard plugins directory.
167
* When exporting to a tarball with ``bzr export --format tgz``, put
168
everything under a top directory rather than dumping it into the
169
current directory. This can be overridden with the ``--root``
170
option. Patch from William Dodé and John Meinel.
172
* New ``bzr upgrade`` command to upgrade the format of a branch,
173
replacing ``bzr check --update``.
175
* Files within store directories are no longer marked readonly on
178
* Changed ``bzr log`` output to a more compact form suggested by
179
John A Meinel. Old format is available with the ``--long`` or
180
``-l`` option, patched by William Dodé.
182
* By default the commit command refuses to record a revision with
183
no changes unless the ``--unchanged`` option is given.
185
* The ``--no-plugins``, ``--profile`` and ``--builtin`` command
186
line options must come before the command name because they
187
affect what commands are available; all other options must come
188
after the command name because their interpretation depends on
191
* ``branch`` and ``clone`` added as aliases for ``branch``.
193
* Default log format is back to the long format; the compact one
194
is available with ``--short``.
199
* Fix bugs in committing only selected files or within a subdirectory.
206
* ``bzr`` with no command now shows help rather than giving an
207
error. Suggested by Michael Ellerman.
209
* ``bzr status`` output format changed, because svn-style output
210
doesn't really match the model of bzr. Now files are grouped by
211
status and can be shown with their IDs. ``bzr status --all``
212
shows all versioned files and unknown files but not ignored files.
214
* ``bzr log`` runs from most-recent to least-recent, the reverse
215
of the previous order. The previous behaviour can be obtained
216
with the ``--forward`` option.
218
* ``bzr inventory`` by default shows only filenames, and also ids
219
if ``--show-ids`` is given, in which case the id is the second
1
bzr-0.0.5 NOT RELEASED YET
225
5
* New 'bzr whoami --email' option shows only the email component
226
6
of the user identification, from Jo Vermeulen.
228
* New ``bzr ignore PATTERN`` command.
8
* New 'bzr ignore PATTERN' command.
230
10
* Nicer error message for broken pipe, interrupt and similar
231
11
conditions that don't indicate an internal error.
233
* Add ``.*.sw[nop] .git .*.tmp *,v`` to default ignore patterns.
235
* Per-branch locks keyed on ``.bzr/branch-lock``, available in
236
either read or write mode.
238
* New option ``bzr log --show-ids`` shows revision and file ids.
240
* New usage ``bzr log FILENAME`` shows only revisions that
243
* Changed format for describing changes in ``bzr log -v``.
245
* New option ``bzr commit --file`` to take a message from a file,
246
suggested by LarstiQ.
248
* New syntax ``bzr status [FILE...]`` contributed by Bartosz
249
Oler. File may be in a branch other than the working directory.
251
* ``bzr log`` and ``bzr root`` can be given an http URL instead of
254
* Commands can now be defined by external programs or scripts
255
in a directory on $BZRPATH.
257
* New "stat cache" avoids reading the contents of files if they
258
haven't changed since the previous time.
260
* If the Python interpreter is too old, try to find a better one
261
or give an error. Based on a patch from Fredrik Lundh.
263
* New optional parameter ``bzr info [BRANCH]``.
265
* New form ``bzr commit SELECTED`` to commit only selected files.
267
* New form ``bzr log -r FROM:TO`` shows changes in selected
268
range; contributed by John A Meinel.
270
* New option ``bzr diff --diff-options 'OPTS'`` allows passing
271
options through to an external GNU diff.
273
* New option ``bzr add --no-recurse`` to add a directory but not
276
* ``bzr --version`` now shows more information if bzr is being run
282
* Fixed diff format so that added and removed files will be
283
handled properly by patch. Fix from Lalo Martins.
285
* Various fixes for files whose names contain spaces or other
291
* Converted black-box test suites from Bourne shell into Python;
292
now run using ``./testbzr``. Various structural improvements to
295
* testbzr by default runs the version of bzr found in the same
296
directory as the tests, or the one given as the first parameter.
298
* testbzr also runs the internal tests, so the only command
299
required to check is just ``./testbzr``.
301
* testbzr requires python2.4, but can be used to test bzr running
302
under a different version.
304
* Tests added for many other changes in this release.
15
* Converted black-box test suites from Bourne shell into Python.
16
Various structural improvements to the tests.
309
20
* Included ElementTree library upgraded to 1.2.6 by Fredrik Lundh.
311
* Refactor command functions into Command objects based on HCT by
22
* Refactor command functions into Command objects based on
23
mango-sorbet by Scott James Remnant.
314
25
* Better help messages for many commands.
316
* Expose bzrlib.open_tracefile() to start the tracefile; until
317
this is called trace messages are just discarded.
319
* New internal function find_touching_revisions() and hidden
320
command touching-revisions trace the changes to a given file.
322
* Simpler and faster compare_inventories() function.
324
* bzrlib.open_tracefile() takes a tracefilename parameter.
326
* New AtomicFile class.
328
* New developer commands ``added``, ``modified``.
333
* Cope on Windows on python2.3 by using the weaker random seed.
334
2.4 is now only recommended.
337
28
bzr-0.0.4 2005-04-22