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