7
7
revno:42:http://bazaar-vcs.org/bzr/bzr.dev/ means revision 42 in
8
8
bzr.dev. (Matthieu Moy)
10
* No default ignore rules are applied by bzr - only the rules in .bzrignore
11
are considered. This fixes bugs with default rules being enforced no
12
matter what. The old list of ignore rules from bzr is available by
10
* The hard-coded built-in ignore rules have been removed. There are
11
now two rulesets which are enforced. A user global one in
12
~/.bazaar/ignore which will apply to every tree, and the tree
13
specific one '.bzrignore'.
14
~/.bazaar/ignore will be created if it does not exist, but with
15
a more conservative list than the old default.
16
This fixes bugs with default rules being enforced no matter what.
17
The old list of ignore rules from bzr is available by
13
18
running 'bzr ignore --old-default-rules'.
19
(Robert Collins, Martin Pool, John Arbash Meinel)
15
21
* Tests updates to ensure proper URL handling, UNICODE support, and
16
22
proper printing when the user's terminal encoding cannot display
38
44
* 'bzr selftest' now shows a progress bar with the number of tests, and
39
45
progress made. 'make check' shows tests in -v mode, to be more useful
40
46
for the PQM status window. (Robert Collins).
47
When using a progress bar, failed tests are printed out, rather than
48
being overwritten by the progress bar until the suite finishes.
42
51
* 'bzr selftest --benchmark' will run a new benchmarking selftest.
43
52
'bzr selftest --benchmark --lsprof-timed' will use lsprofile to generate
101
110
were removed. So it is safe to uncommit after a merge, fix something,
102
111
and commit again. (John Arbash Meinel, #32526, #31426)
113
* 'bzr init' now also works on remote locations.
114
(Wouter van Heyst, #48904)
116
* HTTP support has been updated. When using pycurl we now support
117
connection keep-alive, which reduces dns requests and round trips.
118
And for both urllib and pycurl we support multi-range requests,
119
which decreases the number of round-trips. Performance results for
120
``bzr branch http://bazaar-vcs.org/bzr/bzr.dev/`` is not 2-3x faster.
121
And ``bzr pull`` in an existing branch is as much as 4x faster.
122
(Michael Ellerman, Johan Rydberg, John Arbash Meinel, #46768)
106
126
* Fix shadowed definition of TestLocationConfig that caused some
161
181
This allows you to parse an email with the bundle inline.
162
182
(John Arbash Meinel, #49182)
184
* Change the file id generator to squash a little bit more. Helps when
185
working with long filenames on windows. (Also helps for unicode filenames
186
not generating hidden files). (John Arbash Meinel, #43801)
188
* Restore terminal mode on C-c while reading sftp password. (#48923,
189
Nicholas Allen, Martin Pool)
191
* Branch.base has changed to a URL, but ~/.bazaar/locations.conf should
192
use local paths, since it is user visible (John Arbash Meinel, #53653)
194
* ``bzr status foo`` when foo was unversioned used to cause a full delta
195
to be generated (John Arbash Meinel, #53638)
166
199
* Combine the ignore rules into a single regex rather than looping over
167
200
them to reduce the threshold where N^2 behaviour occurs in operations
168
201
like status. (Jan Hudec, Robert Collins).
203
* Appending to bzrlib.DEFAULT_IGNORE is now deprecated. Instead, use
204
one of the add functions in bzrlib.ignores. (John Arbash Meinel)
170
206
* 'bzr push' should only push the ancestry of the current revision, not
171
207
all of the history in the repository. This is especially important for
172
208
shared repositories. (John Arbash Meinel)
198
234
importer to log time to import modules and regex compilation time to
199
235
sys.stderr (John Arbash Meinel)
237
* 'EmptyTree' is now deprecated, please use repository.revision_tree(None)
238
instead. (Robert Collins)
240
* "RevisionTree" is now in bzrlib/revisiontree.py. (Robert Collins)
201
242
bzr 0.8.2 2006-05-17