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