5
* Mark as compatible with Bazaar 2.2 (Jelmer Vernooij)
7
* Use host specified rather than localhost in `bzr serve`.
10
* Handle working trees without valid HEAD branch.
11
(Jelmer Vernooij, #501385)
13
* Default to non-bare repositories when initializing a control directory.
18
* Support 'bzr diff --format=git'. (Jelmer Vernooij, #555994)
22
* Avoid the use of InventoryDirectory.children. This speeds up
23
imports significantly. (Jelmer Vernooij)
29
* Fix compatibility with newer versions of Python2.6, which change the
30
behaviour of urlparse.urlsplit.
32
* Avoid storing texts of symlinks, which causes checksum errors in
33
`bzr check`. (#512323, INADA Naoki, Jelmer Vernooij)
35
* Support committing to a git branch from a bzr working tree. (#506174,
38
* Support executable symlinks. (#512871, INADA Naoki, Jelmer Vernooij)
40
* When unpacking URLs, strip leftmost slash to match gits
41
behaviour. (#445156, Jelmer Vernooij)
43
* Support merging tags to a local Git repository.
44
(#4445230, Jelmer Vernooij)
46
* InterFromGitBranch.pull() supports an optional limit argument to limit
47
how many revisions to import in one go. (Michael Hudson)
49
* Cope with different encodings better, rather than just stripping out
50
unknown characters. (#529460, Jelmer Vernooij)
52
* Support ``run_hooks`` argument to ``InterGitRemoteLocalBranch.pull()``.
53
(#524843, Jelmer Vernooij)
55
* Properly ignore directories when creating bundles, deal with new files.
56
(#456849, Jelmer Vernooij)
60
* Don't import head revision twice when pulling from Git.
65
* Support (dumb) HTTP repositories. (#373688, Jelmer Vernooij)
67
* Implement API for colocated branches. (#380871, Jelmer Vernooij)
73
* Fix warning about unclosed files on Windows. (#441978, INADA Naoki)
75
* Support creating working tree for existing repository. (Jelmer Vernooij)
77
* Fix base url of Git branches - use the working tree path rather than
78
the control directory path. (Jelmer Vernooij)
80
* Fix fetching between git repositories. (#449507, Jelmer Vernooij)
82
* Refuse pulling into non-rich-root branches rather than erroring
83
out with an AttributeError. (#449507, Jelmer Vernooij)
85
* Unquote paths extracted from URLs. (#445156, Jelmer Vernooij)
89
* Improve performance of WorkingTree.extras() by not looking up the
90
SHA1, kind and stat data of each file. (Jelmer Vernooij)
92
* Provide custom InterTree for faster deltas between git working trees
93
and revision trees. (Jelmer Vernooij)
95
* Provide custom InterTree for faster deltas between git revision trees.
98
* Fix several places where a lot of memory was being consumed, especially
99
for repositories with a large number of revisions or big trees.
100
(#486076, Jelmer Vernooij
104
* Support for parsing --HG-- metadata in git commit messages, for
105
better interoperability with bzr-hg.
107
* Submodules are now imported. This requires the use of the
108
development-subtree format in bzrlib though. (#402814, Jelmer Vernooij)
114
* Cope with ghosts a bit better during "bzr dpush".
117
* Better error message when Dulwich is missing. (#427276, Jelmer Vernooij)
119
* Support checkouts. (#427310, Jelmer Vernooij)
121
* Don't break "bzr info -v" when Dulwich is not installed. (#429394,
124
* Mark as compatible with Bazaar 2.1. (Jelmer Vernooij)
126
* Fix fetching of remote repositories on Windows. (INADA Naoki,
127
Jelmer Vernooij, #382125)
129
* Ignore directories in WorkingTree.extras(). (Jelmer Vernooij, #373902)
133
* New "git" format supported by "bzr send". All revisions
134
are currently sent as one concatenated file, rather than
135
as separate files because of limitations in Bazaar.
136
(Jelmer Vernooij, Lukas Lalinsky)
140
* Avoid re-fetching basis inventory during fetch.
147
* Avoid "No such revision" error when encountering submodules.
150
* Avoid creating empty trees in Git during dpush, as they are not
151
officially allowed. (#393706)
155
* Progress bars will now show results from the remote git server.