Add some basic tests for fastexport.
[jelmer/dulwich-libgit2.git] / NEWS
1 0.5.1   UNRELEASED
2
3  BUG FIXES
4  
5   * Fix ReceivePackHandler to disallow removing refs without delete-refs.
6     (Dave Borowitz)
7
8   * Deal with capabilities required by the client, even if they 
9     can not be disabled in the server. (Dave Borowitz)
10
11   * Fix trailing newlines in generated patch files.
12     (Jelmer Vernooij)
13
14   * Implement RefsContainer.__contains__. (Jelmer Vernooij)
15
16   * Cope with \r in ref files on Windows. (
17         http://github.com/jelmer/dulwich/issues/#issue/13, Jelmer Vernooij)
18
19  FEATURES
20
21   * Add include-tag capability to server. (Dave Borowitz)
22
23  TESTS
24
25   * Add framework for testing compatibility with C Git. (Dave Borowitz)
26
27  API BREAKAGES
28
29   * The 'committer' and 'message' arguments to Repo.do_commit() have 
30     been swapped. 'committer' is now optional. (Jelmer Vernooij)
31
32   * Repo.get_blob, Repo.commit, Repo.tag and Repo.tree are now deprecated.
33     (Jelmer Vernooij)
34
35   * RefsContainer.set_ref() was renamed to RefsContainer.set_symbolic_ref(),
36     for clarity. (Jelmer Vernooij)
37
38  API CHANGES
39
40   * Blob.chunked was added. (Jelmer Vernooij)
41
42 0.5.0   2010-03-03
43
44  BUG FIXES
45
46   * Support custom fields in commits (readonly). (Jelmer Vernooij)
47
48   * Improved ref handling. (Dave Borowitz)
49
50   * Rework server protocol to be smarter and interoperate with cgit client.
51     (Dave Borowitz)
52
53   * Add a GitFile class that uses the same locking protocol for writes as 
54     cgit. (Dave Borowitz)
55
56   * Cope with forward slashes correctly in the index on Windows.
57     (Jelmer Vernooij, #526793)
58
59  FEATURES
60
61   * --pure option to setup.py to allow building/installing without the C 
62     extensions. (Hal Wine, Anatoly Techtonik, Jelmer Vernooij, #434326)
63
64   * Implement Repo.get_config(). (Jelmer Vernooij, Augie Fackler)
65
66   * HTTP dumb and smart server. (Dave Borowitz)
67
68   * Add abstract baseclass for Repo that does not require file system 
69     operations. (Dave Borowitz)
70
71 0.4.1   2010-01-03
72
73  FEATURES
74
75   * Add ObjectStore.iter_tree_contents(). (Jelmer Vernooij)
76
77   * Add Index.changes_from_tree(). (Jelmer Vernooij)
78
79   * Add ObjectStore.tree_changes(). (Jelmer Vernooij)
80
81   * Add functionality for writing patches in dulwich.patch.
82     (Jelmer Vernooij)
83
84 0.4.0   2009-10-07
85
86  DOCUMENTATION
87
88   * Added tutorial.
89
90  API CHANGES
91
92   * dulwich.object_store.tree_lookup_path will now return the mode and 
93     sha of the object found rather than the object itself.
94
95  BUG FIXES
96
97   * Use binascii.hexlify / binascii.unhexlify for better performance.
98
99   * Cope with extra unknown data in index files by ignoring it (for now).
100
101   * Add proper error message when server unexpectedly hangs up. (#415843)
102
103   * Correctly write opcode for equal in create_delta.
104
105 0.3.3   2009-07-23
106
107  FEATURES
108
109   * Implement ShaFile.__hash__().
110
111   * Implement Tree.__len__()
112
113  BUG FIXES
114   
115   * Check for 'objects' and 'refs' directories
116     when looking for a Git repository. (#380818)
117
118 0.3.2   2009-05-20
119
120  BUG FIXES
121
122   * Support the encoding field in Commits.
123   
124   * Some Windows compatibility fixes.
125
126   * Fixed several issues in commit support.
127
128  FEATURES
129
130   * Basic support for handling submodules.
131
132 0.3.1   2009-05-13
133
134  FEATURES
135
136   * Implemented Repo.__getitem__, Repo.__setitem__ and Repo.__delitem__ to 
137     access content.
138
139  API CHANGES
140
141   * Removed Repo.set_ref, Repo.remove_ref, Repo.tags, Repo.get_refs and 
142     Repo.heads in favor of Repo.refs, a dictionary-like object for accessing
143         refs.
144
145  BUG FIXES
146
147   * Removed import of 'sha' module in objects.py, which was causing 
148     deprecation warnings on Python 2.6.
149
150 0.3.0   2009-05-10
151
152  FEATURES
153
154   * A new function `commit_tree' has been added that can commit a tree 
155     based on an index.
156
157  BUG FIXES
158
159   * The memory usage when generating indexes has been significantly reduced.
160  
161   * A memory leak in the C implementation of parse_tree has been fixed.
162
163   * The send-pack smart server command now works. (Thanks Scott Chacon)
164
165   * The handling of short timestamps (less than 10 digits) has been fixed.
166
167   * The handling of timezones has been fixed.
168
169 0.2.1   2009-04-30
170
171  BUG FIXES
172
173   * Fix compatibility with Python2.4.
174
175 0.2.0   2009-04-30
176
177  FEATURES
178
179   * Support for activity reporting in smart protocol client.
180
181   * Optional C extensions for better performance in a couple of 
182     places that are performance-critical.
183
184 0.1.1   2009-03-13
185
186  BUG FIXES
187
188   * Fixed regression in Repo.find_missing_objects()
189
190   * Don't fetch ^{} objects from remote hosts, as requesting them 
191     causes a hangup.
192
193   * Always write pack to disk completely before calculating checksum.
194
195  FEATURES
196
197   * Allow disabling thin packs when talking to remote hosts.
198
199 0.1.0   2009-01-24
200
201  * Initial release.