Start on 0.7.4.
[jelmer/subvertpy.git] / NEWS
1 0.7.4.   UNRELEASED
2
3 0.7.3    2010-07-21
4
5  BUG FIXES
6
7   * Canonicalize paths to subvertpy.wc.check_wc. (Ronny Pfannschmidt)
8
9   * Canonicalize paths to subvertpy.repos.Repos. (Dan Villiom Podlaski
10                                                   Christiansen)
11
12   * Cope with leading slashes in paths. (David Wolever, #527239)
13
14   * Various methods are now a bit more liberal in accepting any
15     sort of sequence rather than explicitly requiring lists.
16     (Jelmer Vernooij)
17
18  FEATURES
19
20   * Implement subvertpy.client.Client.diff. (Dan Villiom Podlaski Christiansen,
21                                        Jelmer Vernooij)
22
23   * Support ``revprops`` argument to subvertpy.client.Client.commit. 
24     (Jelmer Vernooij)
25
26   * Implement subvertpy.wc.get_pristine_contents(). (Jelmer Vernooij)
27
28   * Use better error messages when possible. 
29     (Dan Villiom Podlaski Christiansen)
30
31   * Implement subvertpy.ra.get_platform_specific_client_providers().
32     (Dan Villiom Podlaski Christiansen)
33
34 0.7.2    2010-01-03
35
36  BUG FIXES
37
38   * Fix inconsistencies between PyArg_ParseTuple arguments and variables, 
39     which caused crashes on some 64-bit platforms. (Václav Slavík, #488780)
40
41   * Add constant for ERR_NODE_UNKNOWN_KIND. (Dan Villiom Podlaski Christiansen)
42
43   * Add svn.client.proplist() binding. (Dan Villiom Podlaski Christiansen,
44                                         Jelmer Vernooij)
45
46   * Add svn.client.list() binding. (Dan Villiom Podlaski Christiansen, 
47                                     Jelmer Vernooij)
48
49 0.7.1    2009-10-20
50
51  BUG FIXES
52
53   * Fix APR include path on Windows. (Ronald Blaschke, #456321)
54
55 0.7.0    2009-10-20
56
57  FEATURES
58
59   * Add definition for ERR_EAI_NONAME. (John Szakmeister)
60
61   * Add subvertpy.repos.FileSystem methods: youngest_revision, revision_root, 
62     revision_proplist.  (Jelmer Vernooij)
63
64   * Add subvertpy.repos.{delete,Repository.has_capability,hotcopy}.
65     (Jelmer Vernooij)
66
67   * Add subvertpy-fast-export script, based on svn-fast-export.py by Chris Lee 
68     included with bzr-fast-import. (Jelmer Vernooij)
69
70 0.6.9    2009-09-10
71
72  BUG FIXES
73
74   * Cope with leading slashes in paths specified to 
75     subvertpy.ra.RemoteAccess.get_{dir,file}(). Thanks Ronny for the bugreport.
76     (#405713)
77  
78   * Don't send too large svndiff windows as newer versions of libsvn 
79     will barf. (CVE2009-2411, #413113)
80
81 0.6.8    2009-06-18
82
83  FEATURES
84
85   * Support svn.client.Client.delete(keep_local=True)
86
87   * Support svn.wc.WorkingCopy.delete(keep_local=True)
88
89   * Define ERR_RA_DAV_FORBIDDEN.
90
91 0.6.7    2009-06-01
92
93  BUG FIXES
94  
95   * Replace PyExc_ArgumentError with PyExc_TypeError.
96
97   * Fix compilation with MSVC++.
98
99  FEATURES
100
101   * Support RemoteAccess.stat.
102   
103   * Support svn.client.add(parents=false)
104
105   * Support uuid argument to svn.ra.RemoteAccess().
106
107 0.6.6    2009-05-04
108
109  FEATURES
110
111   * wc.Entry.uuid is now provided
112
113   * New error code ERR_MALFORMED_FILE.
114
115  BUG FIXES
116
117   * Fix RemoteAccess against http:// without an auth baton.
118
119   * Cope with invalid arguments to Auth(). (#347155)
120
121   * Support svn.client.resolve.
122
123   * Allow non-canonical paths to some working copy methods
124
125   * Fixed uninitialized memory bug when reading configuration.
126
127 0.6.5    2009-03-07
128
129   FEATURES
130
131    * Add subvertpy.wc.cleanup()
132
133    * Split out subvertpy.delta.txdelta_apply_window.
134
135   Relicensed to LGPLv2.1 or later.
136
137 0.6.4    2009-02-17
138
139  BUG FIXES
140
141   * Fix reference counting for progress callback in RemoteAccess.
142
143   * Fix several (major) object leaks. 
144
145 0.6.3    2009-02-12
146
147   FEATURES
148
149    * Add svn:original-date constant.
150
151 0.6.2    2009-02-10
152
153  BUG FIXES
154
155   * Install Windows binaries to the right directory. (#323276)
156
157   * Fix import of warn().
158
159  FEATUREs
160
161   * Add WorkingCopy.remove_lock(path)
162
163 0.6.1    2009-01-25
164
165  API BREAKS
166
167  * subvertpy.properties.diff() now returns not just the new property value
168    but a tuple with the old property value and the new property value.
169
170  BUG FIXES
171
172  * Fixed bdist_rpm. (#311712)
173
174  * Fixed segfault when unsetting property values. (#319313)
175
176  * Allow non-canonical path arguments in subvertpy.wc.WorkingCopy()
177
178  * Convert APR-based OSError properly. (#323548)
179
180 0.6        2009-01-13
181
182  Initial release.