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