/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to NEWS

Require dulwich 0.6.1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
0.3.3   UNRELEASED
 
1
0.5.3   UNRELEASED
 
2
 
 
3
 BUG FIXES
 
4
 
 
5
  * Add in an empty git repository now works. (Jelmer Vernooij, #603823)
 
6
 
 
7
 FEATURES
 
8
 
 
9
  * Remove all remaining dependencies on C git. (Jelmer Vernooij)
 
10
 
 
11
0.5.2   2010-07-30
 
12
 
 
13
 COMPATIBILITY
 
14
 
 
15
  * Drop support for Bazaar < 2.0. (Jelmer Vernooij)
 
16
 
 
17
 BUG FIXES
 
18
 
 
19
  * Cope with kind changes when generating git objects from Bazaar 
 
20
    revisions that contain kind changes where a directory is changed 
 
21
    into a file and its (file/symlink) children are removed 
 
22
    (rather than moved). (#597758, Jelmer Vernooij)
 
23
 
 
24
  * Fix reading pack files over http. (#588724, Jelmer Vernooij)
 
25
 
 
26
  * Fix 'bzr status' after 'bzr add' in native git working trees.
 
27
    (#603800, Chadrik)
 
28
 
 
29
  * Provide VersionedFiles.get_annotator(). (#508288, Jelmer Vernooij)
 
30
 
 
31
  * Handle non-ascii characters in filenames. (#612291, Jelmer Vernooij)
 
32
 
 
33
 FEATURES
 
34
 
 
35
  * Support specifying alternative paths for git-upload-pack and 
 
36
    git-receive-pack. (Ross Light, #585204)
 
37
 
 
38
0.5.1   2010-05-22
 
39
 
 
40
 BUG FIXES
 
41
 
 
42
  * Mark as compatible with Bazaar 2.2 (Jelmer Vernooij)
 
43
 
 
44
  * Use host specified rather than localhost in `bzr serve`.
 
45
    (David Coles, #543998)
 
46
 
 
47
  * Handle working trees without valid HEAD branch.
 
48
    (Jelmer Vernooij, #501385)
 
49
 
 
50
  * Default to non-bare repositories when initializing a control directory.
 
51
    (Jelmer Vernooij)
 
52
 
 
53
  * Cope with -0000 as timezone in Git commits. (Jelmer Vernooij, #539978)
 
54
 
 
55
 FEATURES
 
56
 
 
57
  * Support 'bzr diff --format=git'. (Jelmer Vernooij, #555994)
 
58
 
 
59
 PERFORMANCE
 
60
 
 
61
  * Avoid the use of InventoryDirectory.children. This speeds up 
 
62
    imports significantly. (Jelmer Vernooij)
 
63
 
 
64
  * Use Bazaar index files to store the sha map and git objects to cache 
 
65
    certain objects. (#520694, Jelmer Vernooij)
 
66
 
 
67
0.5.0   2010-03-18
 
68
 
 
69
 BUG FIXES
 
70
 
 
71
  * Fix compatibility with newer versions of Python2.6, which change the 
 
72
    behaviour of urlparse.urlsplit. (Jelmer Vernooij, #561351)
 
73
 
 
74
  * Avoid storing texts of symlinks, which causes checksum errors in 
 
75
    `bzr check`. (#512323, INADA Naoki, Jelmer Vernooij)
 
76
 
 
77
  * Support committing to a git branch from a bzr working tree. (#506174,
 
78
        Jelmer Vernooij)
 
79
 
 
80
  * Support executable symlinks. (#512871, INADA Naoki, Jelmer Vernooij)
 
81
 
 
82
  * When unpacking URLs, strip leftmost slash to match gits 
 
83
    behaviour. (#445156, Jelmer Vernooij)
 
84
 
 
85
  * Support merging tags to a local Git repository.
 
86
    (#4445230, Jelmer Vernooij)
 
87
 
 
88
  * InterFromGitBranch.pull() supports an optional limit argument to limit
 
89
    how many revisions to import in one go. (Michael Hudson)
 
90
 
 
91
  * Cope with different encodings better, rather than just stripping out 
 
92
    unknown characters. (#529460, Jelmer Vernooij)
 
93
 
 
94
  * Support ``run_hooks`` argument to ``InterGitRemoteLocalBranch.pull()``.
 
95
    (#524843, Jelmer Vernooij)
 
96
 
 
97
  * Properly ignore directories when creating bundles, deal with new files.
 
98
    (#456849, Jelmer Vernooij)
 
99
 
 
100
 PERFORMANCE
 
101
 
 
102
  * Don't import head revision twice when pulling from Git.
 
103
    (Jelmer Vernooij)
 
104
 
 
105
 
 
106
 FEATURES
 
107
 
 
108
  * Support (dumb) HTTP repositories. (#373688, Jelmer Vernooij)
 
109
 
 
110
  * Implement API for colocated branches. (#380871, Jelmer Vernooij)
 
111
 
 
112
0.4.3   2010-01-19
 
113
 
 
114
 BUG FIXES
 
115
 
 
116
  * Fix warning about unclosed files on Windows. (#441978, INADA Naoki)
 
117
 
 
118
  * Support creating working tree for existing repository. (Jelmer Vernooij)
 
119
 
 
120
  * Fix base url of Git branches - use the working tree path rather than 
 
121
    the control directory path. (Jelmer Vernooij)
 
122
 
 
123
  * Fix fetching between git repositories. (#449507, Jelmer Vernooij)
 
124
 
 
125
  * Refuse pulling into non-rich-root branches rather than erroring 
 
126
    out with an AttributeError. (#449507, Jelmer Vernooij)
 
127
 
 
128
  * Unquote paths extracted from URLs. (#445156, Jelmer Vernooij)
 
129
 
 
130
 PERFORMANCE
 
131
 
 
132
  * Improve performance of WorkingTree.extras() by not looking up the 
 
133
    SHA1, kind and stat data of each file. (Jelmer Vernooij)
 
134
 
 
135
  * Provide custom InterTree for faster deltas between git working trees 
 
136
    and revision trees. (Jelmer Vernooij)
 
137
 
 
138
  * Provide custom InterTree for faster deltas between git revision trees.
 
139
    (Jelmer Vernooij)
 
140
 
 
141
  * Fix several places where a lot of memory was being consumed, especially
 
142
    for repositories with a large number of revisions or big trees.
 
143
    (#486076, Jelmer Vernooij
 
144
 
 
145
 FEATURES
 
146
 
 
147
  * Support for parsing --HG-- metadata in git commit messages, for 
 
148
    better interoperability with bzr-hg.
 
149
 
 
150
  * Submodules are now imported. This requires the use of the 
 
151
    development-subtree format in bzrlib though. (#402814, Jelmer Vernooij)
 
152
 
 
153
0.4.2   2009-10-01
 
154
 
 
155
 BUG FIXES
 
156
 
 
157
  * Cope with ghosts a bit better during "bzr dpush".
 
158
    (Jelmer Vernooij)
 
159
 
 
160
  * Better error message when Dulwich is missing. (#427276, Jelmer Vernooij)
 
161
 
 
162
  * Support checkouts. (#427310, Jelmer Vernooij)
 
163
  
 
164
  * Don't break "bzr info -v" when Dulwich is not installed. (#429394, 
 
165
                                                                                                                          Jelmer Vernooij)
 
166
 
 
167
  * Mark as compatible with Bazaar 2.1. (Jelmer Vernooij)
 
168
 
 
169
  * Fix fetching of remote repositories on Windows. (INADA Naoki,
 
170
                                                                                                         Jelmer Vernooij, #382125)
 
171
 
 
172
  * Ignore directories in WorkingTree.extras(). (Jelmer Vernooij, #373902)
 
173
 
 
174
 FEATURES
 
175
 
 
176
  * New "git" format supported by "bzr send". All revisions 
 
177
    are currently sent as one concatenated file, rather than 
 
178
        as separate files because of limitations in Bazaar.
 
179
        (Jelmer Vernooij, Lukas Lalinsky)
 
180
 
 
181
 PERFORMANCE
 
182
 
 
183
  * Avoid re-fetching basis inventory during fetch.
 
184
    (Jelmer Vernooij)
 
185
 
 
186
0.4.1   2009-07-24
 
187
 
 
188
 BUG FIXES
 
189
 
 
190
  * Avoid "No such revision" error when encountering submodules.
 
191
   (#400598)
 
192
 
 
193
  * Avoid creating empty trees in Git during dpush, as they are not 
 
194
    officially allowed. (#393706)
 
195
 
 
196
 FEATURES
 
197
 
 
198
  * Progress bars will now show results from the remote git server.
 
199
 
 
200
0.4.0   2009-06-18
2
201
 
3
202
 BUG FIXES
4
203
 
13
212
    versions of Git are now stored in Bazaar revision properties. This means 
14
213
        it's now possible to import the Git repository and the Linux kernel repository.
15
214
 
 
215
  * Mark as compatible with bzr 1.16.
 
216
 
16
217
0.3.2   2009-05-20
17
218
 
18
219
 FEATURES