6
* The config directory is now ~/.bazaar, and there is a single file
7
~/.bazaar/bazaar.conf storing email, editor and other preferences.
10
* 'bzr add' no longer takes a --verbose option, and a --quiet option
11
has been added that suppresses all output.
16
* Config options have moved from bzrlib.osutils to bzrlib.config.
22
* The --pattern option has been removed, now test specifiers on the
23
command line can be simple strings, or regexps, or both.
25
* Passing -v to selftest will now show the time each test took to
26
complete, which will aid in analysing performance regressions and
34
* 'bzr branch' over http initially gives a very high estimate
35
of completion time but it should fall as the first few
36
revisions are pulled in. branch is still slow on
37
high-latency connections.
41
* bzr-man.py has been updated to work again. Contributed by
44
* Locking is now done with fcntl.lockf which works with NFS
45
file systems. Contributed by Harald Meland.
47
* When a merge encounters a file that has been deleted on
48
one side and modified on the other, the old contents are
49
written out to foo.BASE and foo.SIDE, where SIDE is this
50
or OTHER. Contributed by Aaron Bentley.
52
* Export was choosing incorrect file paths for the content of
53
the tarball, this has been fixed by Aaron Bentley.
55
* Commit will no longer commit without a log message, an
56
error is returned instead. Contributed by Jelmer Vernooij.
58
* If you commit a specific file in a sub directory, any of its
59
parent directories that are added but not listed will be
60
automatically included. Suggested by Michael Ellerman.
62
* bzr commit and upgrade did not correctly record new revisions
63
for files with only a change to their executable status.
64
bzr will correct this when it encounters it. Fixed by
67
* HTTP tests now force off the use of http_proxy for the duration.
68
Contributed by Gustavo Niemeyer.
70
* Fix problems in merging weave-based branches that have
71
different partial views of history.
73
* Symlink support: working with symlinks when not in the root of a
74
bzr tree was broken, patch from Scott James Remnant.
79
* 'branch' now accepts a --basis parameter which will take advantage
80
of local history when making a new branch. This allows faster
81
branching of remote branches. Contributed by Aaron Bentley.
83
* New tree format based on weave files, called version 5.
84
Existing branches can be upgraded to this format using
87
* Symlinks are now versionable. Initial patch by
88
Erik Toubro Nielsen, updated to head by Robert Collins.
90
* Executable bits are tracked on files. Patch from Gustavo
93
* 'bzr status' now shows unknown files inside a selected directory.
94
Patch from Heikki Paajanen.
96
* Merge conflicts are recorded in .bzr. Two new commands 'conflicts'
97
and 'resolve' have needed added, which list and remove those
98
merge conflicts respectively. A conflicted tree cannot be committed
99
in. Contributed by Aaron Bentley.
101
* 'rm' is now an alias for 'remove'.
103
* Stores now split out their content in a single byte prefixed hash,
104
dropping the density of files per directory by 256. Contributed by
107
* 'bzr diff -r branch:URL' will now perform a diff between two branches.
108
Contributed by Robert Collins.
110
* 'bzr log' with the default formatter will show merged revisions,
111
indented to the right. Initial implementation contributed by Gustavo
112
Niemeyer, made incremental by Robert Collins.
117
* Test case failures have the exception printed after the log
118
for your viewing pleasure.
120
* InventoryEntry is now an abstract base class, use one of the
121
concrete InventoryDirectory etc classes instead.
123
* Branch raises an UnsupportedFormatError when it detects a
124
bzr branch it cannot understand. This allows for precise
125
handling of such circumstances.
130
* Removed testsweet module so that tests can be run after
131
bzr installed by 'bzr selftest'.
133
* 'bzr selftest' command-line arguments can now be partial ids
134
of tests to run, e.g. 'bzr selftest test_weave'
141
* Fixed "branch -r" option.
143
* Fix remote access to branches containing non-compressed history.
146
* Better reliability of http server tests. (John Arbash-Meinel)
148
* Merge graph maximum distance calculation fix. (Aaron Bentley)
150
* Various minor bug in windows support have been fixed, largely in the
151
test suite. Contributed by Alexander Belchenko.
155
* Status now accepts a -r argument to give status between chosen
156
revisions. Contributed by Heikki Paajanen.
158
* Revision arguments no longer use +/-/= to control ranges, instead
159
there is a 'before' namespace, which limits the successive namespace.
160
For example '$ bzr log -r date:yesterday..before:date:today' will
161
select everything from yesterday and before today. Contributed by
164
* There is now a bzr.bat file created by distutils when building on
165
Windows. Contributed by Alexander Belchenko.
169
* Removed uuid() as it was unused.
171
* Improved 'fetch' code for pulling revisions from one branch into
172
another (used by pull, merged, etc.)
179
* Adding a file whose parent directory is not versioned will
180
implicitly add the parent, and so on up to the root. This means
181
you should never need to explictly add a directory, they'll just
182
get added when you add a file in the directory. Contributed by
185
* Ignore .DS_Store (contains Mac metadata) by default. Patch from
188
* If you set BZR_EDITOR in the environment, it is checked in
189
preference to EDITOR and the config file for the interactive commit
190
editing program. Related to this is a bugfix where a missing program
191
set in EDITOR would cause editing to fail, now the fallback program
192
for the operating system is still tried.
194
* Files that are not directories/symlinks/regular files will no longer
195
cause bzr to fail, it will just ignore them by default. You cannot add
196
them to the tree though - they are not versionable.
201
* Refactor xml packing/unpacking.
205
* Fixed 'bzr mv' by Ollie Rutherfurd.
207
* Fixed strange error when trying to access a nonexistent http
210
* Make sure that the hashcache gets written out if it can't be
216
* Various Windows fixes from Ollie Rutherfurd.
218
* Quieten warnings about locking; patch from Matt Lavin.