1
1
bzr development version
6
* Sftp paths can now be relative, or local, according to the lftp
7
convention. Paths now take the form:
8
sftp://user:pass@host:port/~/relative/path
10
sftp://user:pass@host:port/absolute/path
12
* The FTP transport now tries to reconnect after a temporary
13
failure. ftp put is made atomic. (Matthieu Moy)
15
* The FTP transport now maintains a pool of connections, and
16
reuses them to avoid multiple connections to the same host (like
17
sftp did). (Daniel Silverstone)
19
* The bzr_man.py file has been removed. To create the man page now,
20
use ./generate_docs.py man. The new program can also create other files.
21
Run "python generate_docs.py --help" for usage information. (Hans
22
Ulrich Niedermann & James Blackwell).
24
* Man Page now gives full help (James Blackwell). Help also updated to
25
reflect user config now being stored in .bazaar (Hans Ulrich
28
* It's now possible to set aliases in bazaar.conf (Erik Bågfors)
30
* Pull now accepts a --revision argument (Erik Bågfors)
32
* 'bzr re-sign' now allows multiple revisions to be supplied on the command
33
line. You can now use the following command to sign all of your old commits.
34
find .bzr/revision-store// -name my@email-* \
35
| sed 's/.*\/\/..\///' \
38
* Upgrade can now upgrade over the network. (Robert Collins)
40
* Two new commands 'bzr checkout' and 'bzr update' allow for CVS/SVN-alike
41
behaviour. They use the existing serverless-mode and store no data
42
locally. As such they are not suitable for use except in high bandwidth
43
low latency environments like LAN's or local disk. (Robert Collins)
45
* 'revert' unversions newly-versioned files, instead of deleting them.
47
* 'merge' is more robust. Conflict messages have changed.
49
* 'merge' and 'revert' no longer clobber existing files that end in '~' or
52
* Default log format can be set in configuration and plugins can register
53
their own formatters. (Erik Bågfors)
7
59
management routines are now in bzrlib.lockablefiles.
8
60
(Aaron Bentley, Robert Collins, Martin Pool)
62
* Using Tree Transform for merge, revert, tree-building
64
* WorkingTree.create, Branch.create, WorkingTree.create_standalone,
65
Branch.initialize are now deprecated. Please see BzrDir.create_* for
66
replacement API's. (Robert Collins)
68
* New BzrDir class represents the .bzr control directory and manages
69
formatting issues. (Robert Collins)
71
* New repository.InterRepository class encapsulates Repository to
72
Repository actions and allows for clean selection of optimised code
73
paths. (Robert Collins)
75
* bzrlib.fetch.fetch and bzrlib.fetch.greedy_fetch are now deprecated,
76
please use 'branch.fetch' or 'repository.fetch' depending on your
77
needs. (Robert Collins)
79
* deprecated methods now have a 'is_deprecated' flag on them that can
80
be checked, if you need to determine whether a given callable is
81
deprecated at runtime. (Robert Collins)
12
85
* SFTP tests now shortcut the SSH negotiation, reducing test overhead
13
86
for testing SFTP protocol support. (Robey Pointer)
88
* Branch formats are now tested once per implementation (see bzrlib.
89
tests.branch_implementations. This is analagous to the transport
90
interface tests, and has been followed up with working tree,
91
repository and BzrDir tests. (Robert Collins)
93
* New test base class TestCaseWithTransport provides a transport aware
94
test environment, useful for testing any transport-interface using
95
code. The test suite option --transport controls the transport used
96
by this class (when its not being used as part of implementation
97
contract testing). (Robert Collins)
15
100
bzr 0.7rc1 2006-01-09
41
126
This gives better integration with user settings such as ProxyCommand.
42
127
(James Henstridge)
44
* Sftp paths can now be relative, or local, according to the lftp
45
convention. Paths now take the form:
46
sftp://user:pass@host:port/~/relative/path
48
sftp://user:pass@host:port/absolute/path
50
129
* Permissions on files underneath .bzr/ are inherited from the .bzr
51
130
directory. So for a shared repository, simply doing 'chmod -R g+w .bzr/'
52
131
will mean that future file will be created with group write permissions.