1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
|
0.4.4 UNRELEASED
BUG FIXES
* Avoid storing texts of symlinks, which causes checksum errors in
`bzr check`. (#512323, INADA Naoki, Jelmer Vernooij)
* Support committing to a git branch from a bzr working tree. (#506174,
Jelmer Vernooij)
* Support executable symlinks. (#512871, INADA Naoki, Jelmer Vernooij)
* When unpacking URLs, strip leftmost slash to match gits
behaviour. (#445156, Jelmer Vernooij)
* Support merging tags to a local Git repository.
(#4445230, Jelmer Vernooij)
0.4.3 2010-01-19
BUG FIXES
* Fix warning about unclosed files on Windows. (#441978, INADA Naoki)
* Support creating working tree for existing repository. (Jelmer Vernooij)
* Fix base url of Git branches - use the working tree path rather than
the control directory path. (Jelmer Vernooij)
* Fix fetching between git repositories. (#449507, Jelmer Vernooij)
* Refuse pulling into non-rich-root branches rather than erroring
out with an AttributeError. (#449507, Jelmer Vernooij)
* Unquote paths extracted from URLs. (#445156, Jelmer Vernooij)
PERFORMANCE
* Improve performance of WorkingTree.extras() by not looking up the
SHA1, kind and stat data of each file. (Jelmer Vernooij)
* Provide custom InterTree for faster deltas between git working trees
and revision trees. (Jelmer Vernooij)
* Provide custom InterTree for faster deltas between git revision trees.
(Jelmer Vernooij)
* Fix several places where a lot of memory was being consumed, especially
for repositories with a large number of revisions or big trees.
(#486076, Jelmer Vernooij
FEATURES
* Support for parsing --HG-- metadata in git commit messages, for
better interoperability with bzr-hg.
* Submodules are now imported. This requires the use of the
development-subtree format in bzrlib though. (#402814, Jelmer Vernooij)
0.4.2 2009-10-01
BUG FIXES
* Cope with ghosts a bit better during "bzr dpush".
(Jelmer Vernooij)
* Better error message when Dulwich is missing. (#427276, Jelmer Vernooij)
* Support checkouts. (#427310, Jelmer Vernooij)
* Don't break "bzr info -v" when Dulwich is not installed. (#429394,
Jelmer Vernooij)
* Mark as compatible with Bazaar 2.1. (Jelmer Vernooij)
* Fix fetching of remote repositories on Windows. (INADA Naoki,
Jelmer Vernooij, #382125)
* Ignore directories in WorkingTree.extras(). (Jelmer Vernooij, #373902)
FEATURES
* New "git" format supported by "bzr send". All revisions
are currently sent as one concatenated file, rather than
as separate files because of limitations in Bazaar.
(Jelmer Vernooij, Lukas Lalinsky)
PERFORMANCE
* Avoid re-fetching basis inventory during fetch.
(Jelmer Vernooij)
0.4.1 2009-07-24
BUG FIXES
* Avoid "No such revision" error when encountering submodules.
(#400598)
* Avoid creating empty trees in Git during dpush, as they are not
officially allowed. (#393706)
FEATURES
* Progress bars will now show results from the remote git server.
0.4.0 2009-06-18
BUG FIXES
* Fix handling of not-executable files becoming executable without any
other changes. (#382609)
* XML-invalid characters are now no longer squashed if not required by
the target repository serializer format. The only non-XML based format
at the moment is the "2a" development format supported since bzr 1.16.
* Unusual file modes that could be created in Git repositories using older
versions of Git are now stored in Bazaar revision properties. This means
it's now possible to import the Git repository and the Linux kernel repository.
* Mark as compatible with bzr 1.16.
0.3.2 2009-05-20
FEATURES
* "bzr commit" in git working trees works to some extent.
* "bzr push" from local git repositories to remote git repositories works.
0.3.1 2009-05-13
FEATURES
* Alternative (faster) storage for SHA map using the TDB library
(http://tdb.samba.org/). This will automatically be used if you have
TDB and its Python bindings installed. In all other situations the previous
(slower) Sqlite database format will be used.
* Now warns when escaping XML-invalid characters to work around a bug in the
Bazaar revision serializer.
* Now allows "unusual" file modes (100664, etc) but will warn the user about
them.
BUG FIXES
* Fixed git-import.
* Fixed handling kind changes (tree -> blob) during fetch.
0.3.0 2009-05-10
FEATURES
* Support parsing .gitignore
* Support dpushing to remote repositories.
|