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