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