5
* Drop support for Bazaar < 2.0. (Jelmer Vernooij)
9
* Cope with kind changes when generating git objects from Bazaar
10
revisions that contain kind changes where a directory is changed
11
into a file and its (file/symlink) children are removed
12
(rather than moved). (#597758, Jelmer Vernooij)
14
* Fix reading pack files over http. (#588724, Jelmer Vernooij)
16
* Fix 'bzr status' after 'bzr add' in native git working trees.
19
* Provide VersionedFiles.get_annotator(). (#508288, Jelmer Vernooij)
23
* Support specifying alternative paths for git-upload-pack and
24
git-receive-pack. (Ross Light, #585204)
30
* Mark as compatible with Bazaar 2.2 (Jelmer Vernooij)
32
* Use host specified rather than localhost in `bzr serve`.
33
(David Coles, #543998)
35
* Handle working trees without valid HEAD branch.
36
(Jelmer Vernooij, #501385)
38
* Default to non-bare repositories when initializing a control directory.
41
* Cope with -0000 as timezone in Git commits. (Jelmer Vernooij, #539978)
45
* Support 'bzr diff --format=git'. (Jelmer Vernooij, #555994)
49
* Avoid the use of InventoryDirectory.children. This speeds up
50
imports significantly. (Jelmer Vernooij)
52
* Use Bazaar index files to store the sha map and git objects to cache
53
certain objects. (#520694, Jelmer Vernooij)
59
* Fix compatibility with newer versions of Python2.6, which change the
60
behaviour of urlparse.urlsplit. (Jelmer Vernooij, #561351)
62
* Avoid storing texts of symlinks, which causes checksum errors in
63
`bzr check`. (#512323, INADA Naoki, Jelmer Vernooij)
65
* Support committing to a git branch from a bzr working tree. (#506174,
68
* Support executable symlinks. (#512871, INADA Naoki, Jelmer Vernooij)
70
* When unpacking URLs, strip leftmost slash to match gits
71
behaviour. (#445156, Jelmer Vernooij)
73
* Support merging tags to a local Git repository.
74
(#4445230, Jelmer Vernooij)
76
* InterFromGitBranch.pull() supports an optional limit argument to limit
77
how many revisions to import in one go. (Michael Hudson)
79
* Cope with different encodings better, rather than just stripping out
80
unknown characters. (#529460, Jelmer Vernooij)
82
* Support ``run_hooks`` argument to ``InterGitRemoteLocalBranch.pull()``.
83
(#524843, Jelmer Vernooij)
85
* Properly ignore directories when creating bundles, deal with new files.
86
(#456849, Jelmer Vernooij)
90
* Don't import head revision twice when pulling from Git.
96
* Support (dumb) HTTP repositories. (#373688, Jelmer Vernooij)
98
* Implement API for colocated branches. (#380871, Jelmer Vernooij)
104
* Fix warning about unclosed files on Windows. (#441978, INADA Naoki)
106
* Support creating working tree for existing repository. (Jelmer Vernooij)
108
* Fix base url of Git branches - use the working tree path rather than
109
the control directory path. (Jelmer Vernooij)
111
* Fix fetching between git repositories. (#449507, Jelmer Vernooij)
113
* Refuse pulling into non-rich-root branches rather than erroring
114
out with an AttributeError. (#449507, Jelmer Vernooij)
116
* Unquote paths extracted from URLs. (#445156, Jelmer Vernooij)
120
* Improve performance of WorkingTree.extras() by not looking up the
121
SHA1, kind and stat data of each file. (Jelmer Vernooij)
123
* Provide custom InterTree for faster deltas between git working trees
124
and revision trees. (Jelmer Vernooij)
126
* Provide custom InterTree for faster deltas between git revision trees.
129
* Fix several places where a lot of memory was being consumed, especially
130
for repositories with a large number of revisions or big trees.
131
(#486076, Jelmer Vernooij
135
* Support for parsing --HG-- metadata in git commit messages, for
136
better interoperability with bzr-hg.
138
* Submodules are now imported. This requires the use of the
139
development-subtree format in bzrlib though. (#402814, Jelmer Vernooij)
145
* Cope with ghosts a bit better during "bzr dpush".
148
* Better error message when Dulwich is missing. (#427276, Jelmer Vernooij)
150
* Support checkouts. (#427310, Jelmer Vernooij)
152
* Don't break "bzr info -v" when Dulwich is not installed. (#429394,
155
* Mark as compatible with Bazaar 2.1. (Jelmer Vernooij)
157
* Fix fetching of remote repositories on Windows. (INADA Naoki,
158
Jelmer Vernooij, #382125)
160
* Ignore directories in WorkingTree.extras(). (Jelmer Vernooij, #373902)
164
* New "git" format supported by "bzr send". All revisions
165
are currently sent as one concatenated file, rather than
166
as separate files because of limitations in Bazaar.
167
(Jelmer Vernooij, Lukas Lalinsky)
171
* Avoid re-fetching basis inventory during fetch.
178
* Avoid "No such revision" error when encountering submodules.
181
* Avoid creating empty trees in Git during dpush, as they are not
182
officially allowed. (#393706)
186
* Progress bars will now show results from the remote git server.
192
* Fix handling of not-executable files becoming executable without any
193
other changes. (#382609)
195
* XML-invalid characters are now no longer squashed if not required by
196
the target repository serializer format. The only non-XML based format
197
at the moment is the "2a" development format supported since bzr 1.16.
199
* Unusual file modes that could be created in Git repositories using older
200
versions of Git are now stored in Bazaar revision properties. This means
201
it's now possible to import the Git repository and the Linux kernel repository.
203
* Mark as compatible with bzr 1.16.
209
* "bzr commit" in git working trees works to some extent.
211
* "bzr push" from local git repositories to remote git repositories works.
217
* Alternative (faster) storage for SHA map using the TDB library
218
(http://tdb.samba.org/). This will automatically be used if you have
219
TDB and its Python bindings installed. In all other situations the previous
220
(slower) Sqlite database format will be used.
222
* Now warns when escaping XML-invalid characters to work around a bug in the
223
Bazaar revision serializer.
225
* Now allows "unusual" file modes (100664, etc) but will warn the user about
232
* Fixed handling kind changes (tree -> blob) during fetch.
238
* Support parsing .gitignore
240
* Support dpushing to remote repositories.