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