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