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