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