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