5
* The revision specifier "revno:" is extended to accept the syntax
6
revno:N:branch. For example,
7
revno:42:http://bazaar-vcs.org/bzr/bzr.dev/ means revision 42 in
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
13
running 'bzr ignore --old-default-rules'.
15
* Tests updates to ensure proper URL handling, UNICODE support, and
16
proper printing when the user's terminal encoding cannot display
17
the path of a file that has been versioned.
18
``bzr branch`` can take a target URL rather than only a local directory.
19
Branch.get_parent()/set_parent() now save a relative path if possible,
20
and normalize the parent based on root, allowing access across
21
different transports. (John Arbash Meinel, Wouter van Heyst, Martin Pool)
22
(Malone #48906, #42699, #40675, #5281, #3980, #36363, #43689,
25
* On Unix, detect terminal width using an ioctl not just $COLUMNS.
26
Use terminal width for single-line logs from ``bzr log --line`` and
27
pending-merge display. (Robert Widhopf-Fenk, Gustavo Niemeyer)
30
* On Windows, detect terminal width using GetConsoleScreenBufferInfo.
33
* Speedup improvement for 'date:'-revision search. (Guillaume Pinot).
35
* Show the correct number of revisions pushed when pushing a new branch.
38
* 'bzr selftest' now shows a progress bar with the number of tests, and
39
progress made. 'make check' shows tests in -v mode, to be more useful
40
for the PQM status window. (Robert Collins).
42
* 'bzr selftest --benchmark' will run a new benchmarking selftest.
43
'bzr selftest --benchmark --lsprof-timed' will use lsprofile to generate
44
profile data for the individual profiled calls, allowing for fine
45
grained analysis of performance.
46
(Robert Collins, Martin Pool).
48
* 'bzr commit' shows a progress bar. This is useful for commits over sftp
49
where commit can take an appreciable time. (Robert Collins)
51
* 'bzr add' is now less verbose in telling you what ignore globs were
52
matched by files being ignored. Instead it just tells you how many
53
were ignored (because you might reasonably be expecting none to be
54
ignored). 'bzr add -v' is unchanged and will report every ignored
55
file. (Robert Collins).
57
* ftp now has a test server if medusa is installed. As part of testing,
58
ftp support has been improved, including support for supplying a
59
non-standard port. (John Arbash Meinel).
61
* 'bzr log --line' shows the revision number, and uses only the
62
first line of the log message (#5162, Alexander Belchenko;
65
* 'bzr status' has had the --all option removed. The 'bzr ls' command
66
should be used to retrieve all versioned files. (Robert Collins)
68
* 'bzr bundle OTHER/BRANCH' will create a bundle which can be sent
69
over email, and applied on the other end, while maintaining ancestry.
70
This bundle can be applied with either 'bzr merge' or 'bzr pull',
71
the same way you would apply another branch.
72
(John Arbash Meinel, Aaron Bentley)
74
* 'branches.conf' has been changed to 'locations.conf', since it can apply
75
to more locations than just branch locations.
78
* 'bzr whoami' can now be used to set your identity from the command line,
79
for a branch or globally. (Robey Pointer)
81
* 'bzr checkout' now aliased to 'bzr co', and 'bzr annotate' to 'bzr ann'.
84
* 'bzr revert DIRECTORY' now reverts the contents of the directory as well.
87
* 'bzr get sftp://foo' gives a better error when paramiko is not present.
88
Also updates things like 'http+pycurl://' if pycurl is not present.
89
(John Arbash Meinel) (Malone #47821, #52204)
91
* New env variable BZR_PROGRESS_BAR, sets the default progress bar type.
92
Can be set to 'none' or 'dummy' to disable the progress bar, 'dots' or
93
'tty' to create the respective type. (John Arbash Meinel, #42197, #51107)
95
* Improve the help text for 'bzr diff' to explain what various options do.
96
(John Arbash Meinel, #6391)
98
* 'bzr uncommit -r 10' now uncommits revisions 11.. rather than uncommitting
99
revision 10. This makes -r10 more in line with what other commands do.
100
'bzr uncommit' also now saves the pending merges of the revisions that
101
were removed. So it is safe to uncommit after a merge, fix something,
102
and commit again. (John Arbash Meinel, #32526, #31426)
106
* Fix shadowed definition of TestLocationConfig that caused some
107
tests not to run. (#32587, Erik Bågfors, Michael Ellerman,
110
* Fix unnecessary requirement of sign-my-commits that it be run from
111
a working directory. (Martin Pool, Robert Collins)
113
* 'bzr push location' will only remember the push location if it succeeds
114
in connecting to the remote location. (#49742, John Arbash Meinel)
116
* 'bzr revert' no longer toggles the executable bit on win32
117
(#45010, John Arbash Meinel)
119
* Handle broken pipe under win32 correctly. (John Arbash Meinel)
121
* sftp tests now work correctly on win32 if you have a newer paramiko
124
* Cleanup win32 test suite, and general cleanup of places where
125
file handles were being held open. (John Arbash Meinel)
127
* When specifying filenames for 'diff -r x..y', the name of the file in the
128
working directory can be used, even if its name is different in both x
131
* File-ids containing single- or double-quotes are handled correctly by
132
push. (#52227, Aaron Bentley)
134
* Normalize unicode filenames to ensure cross-platform consistency.
135
(John Arbash Meinel, #43689)
137
* The argument parser can now handle '-' as an argument. Currently
138
no code interprets it specially (it is mostly handled as a file named
139
'-'). But plugins, and future operations can use it.
140
(John Arbash meinel, #50984)
142
* Bundles can properly read binary files with a plain '\r' in them.
143
(John Arbash Meinel, #51927)
145
* Tuning iter_entries() to be more efficient (John Arbash Meinel, #5444)
147
* Lots of win32 fixes (the test suite passes again).
148
(John Arbash Meinel, #50155)
150
* Handle openbsd returning None for sys.getfilesystemencoding() (#41183)
152
* Support ftp APPE (append) to allow Knits to be used over ftp (#42592)
154
* Removals are only committed if they match the filespec (or if there is
155
no filespec). (#46635, Aaron Bentley)
157
* smart-add recurses through all supplied directories
158
(John Arbash Meinel, #52578)
162
* Combine the ignore rules into a single regex rather than looping over
163
them to reduce the threshold where N^2 behaviour occurs in operations
164
like status. (Jan Hudec, Robert Collins).
166
* 'bzr push' should only push the ancestry of the current revision, not
167
all of the history in the repository. This is especially important for
168
shared repositories. (John Arbash Meinel)
170
* bzrlib.delta.compare_trees now iterates in alphabetically sorted order,
171
rather than randomly walking the inventories. (John Arbash Meinel)
173
* Doctests are now run in temporary directories which are cleaned up when
174
they finish, rather than using special ScratchDir/ScratchBranch objects.
177
* Split ``check`` into separate methods on the branch and on the repository,
178
so that it can be specialized in ways that are useful or efficient for
179
different formats. (Martin Pool, Robert Collins)
181
* Deprecate Repository.all_revision_ids; most methods don't really need
182
the global revision graph but only that part leading up to a particular
183
revision. (Martin Pool, Robert Collins)
185
* Add a BzrDirFormat control_formats list which allows for control formats
186
that do not use '.bzr' to store their data - i.e. '.svn', '.hg' etc.
187
(Robert Collins, Jelmer Vernooij).
189
* bzrlib.diff.external_diff can be redirected to any file-like object.
190
Uses subprocess instead of spawnvp.
191
(#4047, #48914, James Henstridge, John Arbash Meinel)
193
* New command line option '--profile-imports', which will install a custom
194
importer to log time to import modules and regex compilation time to
195
sys.stderr (John Arbash Meinel)
201
* setup.py failed to install launchpad plugin. (Martin Pool)
207
* Fix failure to commit a merge in a checkout. (Martin Pool,
208
Robert Collins, Erik Bågfors, #43959)
210
* Nicer messages from 'commit' in the case of renames, and correct
211
messages when a merge has occured. (Robert Collins, Martin Pool)
213
* Separate functionality from assert statements as they are skipped in
214
optimized mode of python. Add the same check to pending merges.
215
(#44443, Olaf Conradi)
219
* Do not show the None revision in output of bzr ancestry. (Olaf Conradi)
221
* Add info on standalone branches without a working tree.
222
(#44155, Olaf Conradi)
224
* Fix bug in knits when raising InvalidRevisionId. (#44284, Olaf Conradi)
228
* Make editor invocation comply with Debian Policy. First check
229
environment variables VISUAL and EDITOR, then try editor from
230
alternatives system. If that all fails, fall back to the pre-defined
231
list of editors. (#42904, Olaf Conradi)
235
* New 'register-branch' command registers a public branch into
236
Launchpad.net, where it can be associated with bugs, etc.
237
(Martin Pool, Bjorn Tillenius, Robert Collins)
241
* New public api in InventoryEntry - 'describe_change(old, new)' which
242
provides a human description of the changes between two old and
243
new. (Robert Collins, Martin Pool)
247
* Fix test case for bzr info in upgrading a standalone branch to metadir,
248
uses bzrlib api now. (Olaf Conradi)
252
NOTES WHEN UPGRADING:
254
Release 0.8 of bzr introduces a new format for history storage, called
255
'knit', as an evolution of to the 'weave' format used in 0.7. Local
256
and remote operations are faster using knits than weaves. Several
257
operations including 'init', 'init-repo', and 'upgrade' take a
258
--format option that controls this. Branching from an existing branch
259
will keep the same format.
261
It is possible to merge, pull and push between branches of different
262
formats but this is slower than moving data between homogenous
263
branches. It is therefore recommended (but not required) that you
264
upgrade all branches for a project at the same time. Information on
265
formats is shown by 'bzr info'.
267
bzr 0.8 now allows creation of 'repositories', which hold the history
268
of files and revisions for several branches. Previously bzr kept all
269
the history for a branch within the .bzr directory at the root of the
270
branch, and this is still the default. To create a repository, use
271
the new 'bzr init-repo' command. Branches exist as directories under
272
the repository and contain just a small amount of information
273
indicating the current revision of the branch.
275
bzr 0.8 also supports 'checkouts', which are similar to in cvs and
276
subversion. Checkouts are associated with a branch (optionally in a
277
repository), which contains all the historical information. The
278
result is that a checkout can be deleted without losing any
279
already-committed revisions. A new 'update' command is also available.
281
Repositories and checkouts are not supported with the 0.7 storage
282
format. To use them you must upgrad to either knits, or to the
283
'metaweave' format, which uses weaves but changes the .bzr directory
1
bzr development version
335
52
* Default log format can be set in configuration and plugins can register
336
53
their own formatters. (Erik Bågfors)
338
* New 'reconcile' command will check branch consistency and repair indexes
339
that can become out of sync in pre 0.8 formats. (Robert Collins,
342
* New 'bzr init --format' and 'bzr upgrade --format' option to control
343
what storage format is created or produced. (Robert Collins,
346
* Add parent location to 'bzr info', if there is one. (Olaf Conradi)
348
* New developer commands 'weave-list' and 'weave-join'. (Martin Pool)
350
* New 'init-repository' command, plus support for repositories in 'init'
351
and 'branch' (Aaron Bentley, Erik Bågfors, Robert Collins)
353
* Improve output of 'info' command. Show all relevant locations related to
354
working tree, branch and repository. Use kibibytes for binary quantities.
355
Fix off-by-one error in missing revisions of working tree. Make 'info'
356
work on branches, repositories and remote locations. Show locations
357
relative to the shared repository, if applicable. Show locking status
358
of locations. (Olaf Conradi)
360
* Diff and merge now safely handle binary files. (Aaron Bentley)
362
* 'pull' and 'push' now normalise the revision history, so that any two
363
branches with the same tip revision will have the same output from 'log'.
366
* 'merge' accepts --remember option to store parent location, like 'push'
367
and 'pull'. (Olaf Conradi)
369
* bzr status and diff when files given as arguments do not exist
370
in the relevant trees. (Martin Pool, #3619)
372
* Add '.hg' to the default ignore list. (Martin Pool)
374
* 'knit' is now the default disk format. This improves disk performance and
375
utilization, increases incremental pull performance, robustness with SFTP
376
and allows checkouts over SFTP to perform acceptably.
377
The initial Knit code was contributed by Johan Rydberg based on a
378
specification by Martin Pool.
379
(Robert Collins, Aaron Bentley, Johan Rydberg, Martin Pool).
381
* New tool to generate all-in-one html version of the manual. (Alexander
384
* Hitting CTRL-C while doing an SFTP push will no longer cause stale locks
385
to be left in the SFTP repository. (Robert Collins, Martin Pool).
387
* New option 'diff --prefix' to control how files are named in diff
388
output, with shortcuts '-p0' and '-p1' corresponding to the options for
389
GNU patch. (Alexander Belchenko, Goffredo Baroncelli, Martin Pool)
391
* Add --revision option to 'annotate' command. (Olaf Conradi)
393
* If bzr shows an unexpected revision-history after pulling (perhaps due
394
to a reweave) it can now be corrected by 'bzr reconcile'.
399
* Commit is now verbose by default, and shows changed filenames and the
400
new revision number. (Robert Collins, Martin Pool)
402
* Unify 'mv', 'move', 'rename'. (#5379, Matthew Fuller)
404
* 'bzr -h' shows help. (#35940, Martin Pool, Ian Bicking)
406
* Make 'pull' and 'push' remember location on failure using --remember.
409
* For compatibility, make old format for using weaves inside metadir
410
available as 'metaweave' format. Rename format 'metadir' to 'default'.
411
Clean up help for option --format in commands 'init', 'init-repo' and
412
'upgrade'. (Olaf Conradi)
416
57
* The internal storage of history, and logical branch identity have now