Fix copyright in dul-web.
[jelmer/dulwich-libgit2.git] / NEWS
1 0.6.1   UNRELEASED
2
3  BUG FIXES
4
5   * Fix memory leak in C implementation of sorted_tree_items. (Dave Borowitz)
6
7  TESTS
8
9   * Add tests for sorted_tree_items and C implementation. (Dave Borowitz)
10
11  CLEANUP
12
13   * Clean up file headers. (Dave Borowitz)
14
15
16 0.6.0   2010-05-22
17
18 note: This list is most likely incomplete for 0.6.0.
19
20  BUG FIXES
21  
22   * Fix ReceivePackHandler to disallow removing refs without delete-refs.
23     (Dave Borowitz)
24
25   * Deal with capabilities required by the client, even if they 
26     can not be disabled in the server. (Dave Borowitz)
27
28   * Fix trailing newlines in generated patch files.
29     (Jelmer Vernooij)
30
31   * Implement RefsContainer.__contains__. (Jelmer Vernooij)
32
33   * Cope with \r in ref files on Windows. (
34         http://github.com/jelmer/dulwich/issues/#issue/13, Jelmer Vernooij)
35
36   * Fix GitFile breakage on Windows. (Anatoly Techtonik, #557585)
37
38   * Support packed ref deletion with no peeled refs. (Augie Fackler)
39
40   * Fix send pack when there is nothing to fetch. (Augie Fackler)
41
42   * Fix fetch if no progress function is specified. (Augie Fackler)
43
44   * Allow double-staging of files that are deleted in the index. 
45     (Dave Borowitz)
46
47   * Fix RefsContainer.add_if_new to support dangling symrefs.
48     (Dave Borowitz)
49
50   * Non-existant index files in non-bare repositories are now treated as 
51     empty. (Dave Borowitz)
52
53   * Always update ShaFile.id when the contents of the object get changed. 
54     (Jelmer Vernooij)
55
56   * Various Python2.4-compatibility fixes. (Dave Borowitz)
57
58   * Fix thin pack handling. (Dave Borowitz)
59  
60  FEATURES
61
62   * Add include-tag capability to server. (Dave Borowitz)
63
64   * New dulwich.fastexport module that can generate fastexport 
65     streams. (Jelmer Vernooij)
66
67   * Implemented BaseRepo.__contains__. (Jelmer Vernooij)
68
69   * Add __setitem__ to DictRefsContainer. (Dave Borowitz)
70
71   * Overall improvements checking Git objects. (Dave Borowitz)
72
73   * Packs are now verified while they are received. (Dave Borowitz)
74
75  TESTS
76
77   * Add framework for testing compatibility with C Git. (Dave Borowitz)
78
79   * Add various tests for the use of non-bare repositories. (Dave Borowitz)
80
81   * Cope with diffstat not being available on all platforms. 
82     (Tay Ray Chuan, Jelmer Vernooij)
83
84   * Add make_object and make_commit convenience functions to test utils.
85     (Dave Borowitz)
86
87  API BREAKAGES
88
89   * The 'committer' and 'message' arguments to Repo.do_commit() have 
90     been swapped. 'committer' is now optional. (Jelmer Vernooij)
91
92   * Repo.get_blob, Repo.commit, Repo.tag and Repo.tree are now deprecated.
93     (Jelmer Vernooij)
94
95   * RefsContainer.set_ref() was renamed to RefsContainer.set_symbolic_ref(),
96     for clarity. (Jelmer Vernooij)
97
98  API CHANGES
99
100   * The primary serialization APIs in dulwich.objects now work 
101     with chunks of strings rather than with full-text strings. 
102     (Jelmer Vernooij)
103
104 0.5.0   2010-03-03
105
106  BUG FIXES
107
108   * Support custom fields in commits (readonly). (Jelmer Vernooij)
109
110   * Improved ref handling. (Dave Borowitz)
111
112   * Rework server protocol to be smarter and interoperate with cgit client.
113     (Dave Borowitz)
114
115   * Add a GitFile class that uses the same locking protocol for writes as 
116     cgit. (Dave Borowitz)
117
118   * Cope with forward slashes correctly in the index on Windows.
119     (Jelmer Vernooij, #526793)
120
121  FEATURES
122
123   * --pure option to setup.py to allow building/installing without the C 
124     extensions. (Hal Wine, Anatoly Techtonik, Jelmer Vernooij, #434326)
125
126   * Implement Repo.get_config(). (Jelmer Vernooij, Augie Fackler)
127
128   * HTTP dumb and smart server. (Dave Borowitz)
129
130   * Add abstract baseclass for Repo that does not require file system 
131     operations. (Dave Borowitz)
132
133 0.4.1   2010-01-03
134
135  FEATURES
136
137   * Add ObjectStore.iter_tree_contents(). (Jelmer Vernooij)
138
139   * Add Index.changes_from_tree(). (Jelmer Vernooij)
140
141   * Add ObjectStore.tree_changes(). (Jelmer Vernooij)
142
143   * Add functionality for writing patches in dulwich.patch.
144     (Jelmer Vernooij)
145
146 0.4.0   2009-10-07
147
148  DOCUMENTATION
149
150   * Added tutorial.
151
152  API CHANGES
153
154   * dulwich.object_store.tree_lookup_path will now return the mode and 
155     sha of the object found rather than the object itself.
156
157  BUG FIXES
158
159   * Use binascii.hexlify / binascii.unhexlify for better performance.
160
161   * Cope with extra unknown data in index files by ignoring it (for now).
162
163   * Add proper error message when server unexpectedly hangs up. (#415843)
164
165   * Correctly write opcode for equal in create_delta.
166
167 0.3.3   2009-07-23
168
169  FEATURES
170
171   * Implement ShaFile.__hash__().
172
173   * Implement Tree.__len__()
174
175  BUG FIXES
176   
177   * Check for 'objects' and 'refs' directories
178     when looking for a Git repository. (#380818)
179
180 0.3.2   2009-05-20
181
182  BUG FIXES
183
184   * Support the encoding field in Commits.
185   
186   * Some Windows compatibility fixes.
187
188   * Fixed several issues in commit support.
189
190  FEATURES
191
192   * Basic support for handling submodules.
193
194 0.3.1   2009-05-13
195
196  FEATURES
197
198   * Implemented Repo.__getitem__, Repo.__setitem__ and Repo.__delitem__ to 
199     access content.
200
201  API CHANGES
202
203   * Removed Repo.set_ref, Repo.remove_ref, Repo.tags, Repo.get_refs and 
204     Repo.heads in favor of Repo.refs, a dictionary-like object for accessing
205         refs.
206
207  BUG FIXES
208
209   * Removed import of 'sha' module in objects.py, which was causing 
210     deprecation warnings on Python 2.6.
211
212 0.3.0   2009-05-10
213
214  FEATURES
215
216   * A new function `commit_tree' has been added that can commit a tree 
217     based on an index.
218
219  BUG FIXES
220
221   * The memory usage when generating indexes has been significantly reduced.
222  
223   * A memory leak in the C implementation of parse_tree has been fixed.
224
225   * The send-pack smart server command now works. (Thanks Scott Chacon)
226
227   * The handling of short timestamps (less than 10 digits) has been fixed.
228
229   * The handling of timezones has been fixed.
230
231 0.2.1   2009-04-30
232
233  BUG FIXES
234
235   * Fix compatibility with Python2.4.
236
237 0.2.0   2009-04-30
238
239  FEATURES
240
241   * Support for activity reporting in smart protocol client.
242
243   * Optional C extensions for better performance in a couple of 
244     places that are performance-critical.
245
246 0.1.1   2009-03-13
247
248  BUG FIXES
249
250   * Fixed regression in Repo.find_missing_objects()
251
252   * Don't fetch ^{} objects from remote hosts, as requesting them 
253     causes a hangup.
254
255   * Always write pack to disk completely before calculating checksum.
256
257  FEATURES
258
259   * Allow disabling thin packs when talking to remote hosts.
260
261 0.1.0   2009-01-24
262
263  * Initial release.