7
* Drop support for Bazaar < 2.0. (Jelmer Vernooij)
11
* Cope with kind changes when generating git objects from Bazaar
12
revisions that contain kind changes where a directory is changed
13
into a file and its (file/symlink) children are removed
14
(rather than moved). (#597758, Jelmer Vernooij)
16
* Fix reading pack files over http. (#588724, Jelmer Vernooij)
18
* Fix 'bzr status' after 'bzr add' in native git working trees.
21
* Provide VersionedFiles.get_annotator(). (#508288, Jelmer Vernooij)
23
* Handle non-ascii characters in filenames. (#612291, Jelmer Vernooij)
27
* Support specifying alternative paths for git-upload-pack and
28
git-receive-pack. (Ross Light, #585204)
34
* Mark as compatible with Bazaar 2.2 (Jelmer Vernooij)
36
* Use host specified rather than localhost in `bzr serve`.
37
(David Coles, #543998)
39
* Handle working trees without valid HEAD branch.
40
(Jelmer Vernooij, #501385)
42
* Default to non-bare repositories when initializing a control directory.
45
* Cope with -0000 as timezone in Git commits. (Jelmer Vernooij, #539978)
49
* Support 'bzr diff --format=git'. (Jelmer Vernooij, #555994)
53
* Avoid the use of InventoryDirectory.children. This speeds up
54
imports significantly. (Jelmer Vernooij)
56
* Use Bazaar index files to store the sha map and git objects to cache
57
certain objects. (#520694, Jelmer Vernooij)
63
* Fix compatibility with newer versions of Python2.6, which change the
64
behaviour of urlparse.urlsplit. (Jelmer Vernooij, #561351)
66
* Avoid storing texts of symlinks, which causes checksum errors in
67
`bzr check`. (#512323, INADA Naoki, Jelmer Vernooij)
69
* Support committing to a git branch from a bzr working tree. (#506174,
72
* Support executable symlinks. (#512871, INADA Naoki, Jelmer Vernooij)
74
* When unpacking URLs, strip leftmost slash to match gits
75
behaviour. (#445156, Jelmer Vernooij)
77
* Support merging tags to a local Git repository.
78
(#4445230, Jelmer Vernooij)
80
* InterFromGitBranch.pull() supports an optional limit argument to limit
81
how many revisions to import in one go. (Michael Hudson)
83
* Cope with different encodings better, rather than just stripping out
84
unknown characters. (#529460, Jelmer Vernooij)
86
* Support ``run_hooks`` argument to ``InterGitRemoteLocalBranch.pull()``.
87
(#524843, Jelmer Vernooij)
89
* Properly ignore directories when creating bundles, deal with new files.
90
(#456849, Jelmer Vernooij)
94
* Don't import head revision twice when pulling from Git.
100
* Support (dumb) HTTP repositories. (#373688, Jelmer Vernooij)
102
* Implement API for colocated branches. (#380871, Jelmer Vernooij)
108
* Fix warning about unclosed files on Windows. (#441978, INADA Naoki)
110
* Support creating working tree for existing repository. (Jelmer Vernooij)
112
* Fix base url of Git branches - use the working tree path rather than
113
the control directory path. (Jelmer Vernooij)
115
* Fix fetching between git repositories. (#449507, Jelmer Vernooij)
117
* Refuse pulling into non-rich-root branches rather than erroring
118
out with an AttributeError. (#449507, Jelmer Vernooij)
120
* Unquote paths extracted from URLs. (#445156, Jelmer Vernooij)
124
* Improve performance of WorkingTree.extras() by not looking up the
125
SHA1, kind and stat data of each file. (Jelmer Vernooij)
127
* Provide custom InterTree for faster deltas between git working trees
128
and revision trees. (Jelmer Vernooij)
130
* Provide custom InterTree for faster deltas between git revision trees.
133
* Fix several places where a lot of memory was being consumed, especially
134
for repositories with a large number of revisions or big trees.
135
(#486076, Jelmer Vernooij
139
* Support for parsing --HG-- metadata in git commit messages, for
140
better interoperability with bzr-hg.
142
* Submodules are now imported. This requires the use of the
143
development-subtree format in bzrlib though. (#402814, Jelmer Vernooij)
149
* Cope with ghosts a bit better during "bzr dpush".
152
* Better error message when Dulwich is missing. (#427276, Jelmer Vernooij)
154
* Support checkouts. (#427310, Jelmer Vernooij)
156
* Don't break "bzr info -v" when Dulwich is not installed. (#429394,
159
* Mark as compatible with Bazaar 2.1. (Jelmer Vernooij)
161
* Fix fetching of remote repositories on Windows. (INADA Naoki,
162
Jelmer Vernooij, #382125)
164
* Ignore directories in WorkingTree.extras(). (Jelmer Vernooij, #373902)
168
* New "git" format supported by "bzr send". All revisions
169
are currently sent as one concatenated file, rather than
170
as separate files because of limitations in Bazaar.
171
(Jelmer Vernooij, Lukas Lalinsky)
175
* Avoid re-fetching basis inventory during fetch.
182
* Avoid "No such revision" error when encountering submodules.
185
* Avoid creating empty trees in Git during dpush, as they are not
186
officially allowed. (#393706)
190
* Progress bars will now show results from the remote git server.