5
5
* Added support for Putty's SSH implementation. (Dmitry Vasiliev)
7
* ``bzr mv`` enhanced to support already moved files.
8
In the past the mv command would have failed if the source file doesn't
9
exist. In this situation ``bzr mv`` would now detect that the file has
10
already moved and update the repository accordingly, if the target file
12
A new option ``--after`` has been added so that if two files already
13
exist, you could notify Bazaar that you have moved a (versioned) file and
14
replaced it with another. Thus in this case ``bzr move --after`` will
15
only update the Bazaar identifier.
16
(Steffen Eichenberg, Marius Kruger)
18
* ``ls`` now works on treeless branches and remote branches.
21
* ``bzr help global-options`` describes the global options.
26
* Reserved ids (any revision-id ending in a colon) are rejected by
27
versionedfiles, repositories, branches, and working trees
30
* New Branch hooks facility, with one initial hook 'set_rh' which triggers
31
whenever the revision history is set. This allows triggering on e.g.
32
push, pull, commit, and so on. Developed for use with the branchrss
33
plugin. See bzrlib.branch.BranchHooks for more details. (Robert Collins)
35
* New method ``Branch.push()`` which should be used when pushing from a
36
branch as it makes performance and policy decisions to match the UI
37
level command ``push``. (Robert Collins).
39
* New Branch.last_revision_info method, this is being done to allow
40
optimization of requests for both the number of revisions and the last
41
revision of a branch with smartservers and potentially future branch
42
formats. (Wouter van Heyst, Robert Collins)
44
* Allow 'import bzrlib.plugins.NAME' to work when the plugin NAME has not
45
yet been loaded by load_plugins(). This allows plugins to depend on each
46
other for code reuse without requiring users to perform file-renaming
47
gymnastics. (Robert Collins)
51
* ``bzr annotate`` now uses dotted revnos from the viewpoint of the
52
branch, rather than the last changed revision of the file.
53
(John Arbash Meinel, #82158)
55
* Lock operations no longer hang if they encounter a permission problem.
60
* New ``--first`` option to ``bzr selftest`` to run specified tests
61
before the rest of the suite. (Martin Pool)
68
* ``bzr help global-options`` describes the global options. (Aaron Bentley)
72
* Skip documentation generation tests if the tools to do so are not
73
available. Fixes running selftest for installled copies of bzr.
74
(John Arbash Meinel, #80330)
76
* Fix the code that discovers whether bzr is being run from it's
77
working tree to handle the case when it isn't but the directory
78
it is in is below a repository. (James Westby, #77306)
81
bzr 0.14rc1 2007-01-16
7
85
* New connection: ``bzr+http://`` which supports tunnelling the smart
8
86
protocol over an HTTP connection. If writing is enabled on the bzr
9
87
server, then you can write over the http connection.