Start on 0.10.2.
[jelmer/subvertpy.git] / NEWS
diff --git a/NEWS b/NEWS
index ce5589a2a091cad7d9947d035714a7119b8460b3..5e75b2e68b5fb8a971d9d78bd9097dd12bc4ede0 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,75 @@
-0.9.1  UNRELEASED
+0.10.2 UNRELEASED
+
+0.10.1 2017-07-19
+
+ BUG FIXES
+
+  * Bundle Makefile and subvertpy.cfg. (Jelmer Vernooij)
+
+  * Fix some endianness issues. (Jelmer Vernooij)
+
+0.10.0 2017-07-17
+
+  CHANGES
+
+   * Drop support for Python versions before 2.7, in preparation of Python3 support.
+     (Jelmer Vernooij)
+
+   * Add support for Python 3.4, 3.5 and 3.6. (Jelmer Vernooij)
+
+   * subvertpy.client methods no longer canonicalize paths and URLs, instead
+     requiring the caller to do so. If uncanonicalized paths/URLs are passed in,
+     a ValueError will be raised. (Jelmer Vernooij)
+
+  IMPROVEMENTS
+
+   * Add Python3 support. (Martin Panter, Yonggang Luo, Jelmer Vernooij).
+
+   * Add constant ERR_RA_CANNOT_CREATE_SESSION. (Jelmer Vernooij)
+
+   * Support `depth` argument to RemoteAccess.get_locks(). (Jelmer Vernooij)
+
+   * Support `no_autoprops` argument to Client.add(). (Jelmer Vernooij)
+
+   * Support `ignore_ancestry` and `send_copyfrom_args` arguments to RemoteAcess.do_switch.
+     (Jelmer Vernooij)
+
+   * Support `old_value` argument to RemoteAccess.change_rev_prop().
+     (Jelmer Vernooij)
+
+   * Support `include_externals` argument to Client.list(). (Jelmer Vernooij)
+
+   * Support `expand_keywords` argument to Client.cat(). (Jelmer Vernooij)
+
+   * Support `revprops` argument to Client.delete(). (Jelmer Vernooij)
+
+ BUG FIXES
+
+   * Avoid using deprecated svn_path_canonicalize(). (Jelmer Vernooij)
+
+0.9.3  2015-08-23
+
+  BUG FIXES
+
+   * Disable tests probing for nonexistant paths in FS, as this causes
+     a crash in newer versions of libsvn_repos.
+     (Jelmer Vernooij)
+
+0.9.2  2015-04-25
+
+  BUG FIXES
+
+   * Support failing server certification check. (Mitsuhiro Koga, #1059821)
+
+  CHANGES
+
+   * Drop support for Python versions before 2.6. (Jelmer Vernooij)
+
+  IMPROVEMENTS
+
+   * Support PYDOCTOR_OPTIONS in Makefile. (Jelmer Vernooij)
+
+0.9.1  2013-05-06
 
  CHANGES
 
     don't seem to actually rely on it, it seemed better to disable it and
     support 1.7 than to prevent use of newer svn versions altogether.
 
-    (Jelmer Vernooij)
+    (Jelmer Vernooij)
 
  TESTS
 
-  * Fix TestClient.test_info when run against Subversion 1.6. (Jelmer Vernooij)
+  * Fix TestClient.test_info when run against Subversion 1.6. (Jelmer Vernooij)
+
+ BUG FIXES
+
+  * Use PyObject_AsFileDescriptor instead of PyFile_AsFile so
+    apr_file_from_object works under Win32. (Yonggang Luo)
 
 0.9.0  2012-07-08
 
   * Add bindings for svn.client.Client.info(), svn.client.Client.log() and
     svn.client.Client.cat(). (Mark Lee)
 
-  * Add constant ERR_WC_UPGRADE_REQUIRED. (Jelmer Vernooij)
+  * Add constant ERR_WC_UPGRADE_REQUIRED. (Jelmer Vernooij)
 
-  * In Client.checkout, default to HEAD revision. (Jelmer Vernooij)
+  * In Client.checkout, default to HEAD revision. (Jelmer Vernooij)
 
  TESTS
 
 
  BUG FIXES
 
-  * Fix compilation with Python 2.4 and 2.5. (Jelmer Vernooij, #860621)
+  * Fix compilation with Python 2.4 and 2.5. (Jelmer Vernooij, #860621)
 
  FEATURES
 
-  * Add constant ERR_WC_NODE_KIND_CHANGE. (Jelmer Vernooij)
+  * Add constant ERR_WC_NODE_KIND_CHANGE. (Jelmer Vernooij)
 
 0.8.8  2011-09-27
 
  BUG FIXES
 
   * Fix several memory leaks and error checks in subvertpy.client
-    pointed out by Barry Warsaw. (Jelmer Vernooij)
+    pointed out by Barry Warsaw. (Jelmer Vernooij)
 
   * Drop broken code to support loading configuration from has.
-    (Jelmer Vernooij)
+    (Jelmer Vernooij)
 
   * WorkingCopy.prop_set() now accepts None as a value,
-    removing a properties. (Jelmer Vernooij)
+    removing a properties. (Jelmer Vernooij)
 
  FEATURES
 
-  * Add constant ERR_BAD_FILENAME. (Jelmer Vernooij)
+  * Add constant ERR_BAD_FILENAME. (Jelmer Vernooij)
 
 0.8.7  2011-09-19
 
  BUG FIXES
 
   * Fix revnum types in subvertpy.repos.Repos.verify_fs().
-    (Jelmer Vernooij)
+    (Jelmer Vernooij)
 
 0.8.6  2011-09-19
 
  FEATURES
 
   * Allow passing in log_msg_func when creating subvertpy.client.Client.
-    (Jelmer Vernooij)
+    (Jelmer Vernooij)
 
   * subvertpy.client.Client.update now accepts keyword arguments.
-    (Jelmer Vernooij)
+    (Jelmer Vernooij)
 
   * Editors will now raise an exception if the protocol is not followed;
     children have to be closed before their parents are accessed again.
-    (Jelmer Vernooij)
+    (Jelmer Vernooij)
 
-  * Add constant ERR_DIR_NOT_EMPTY. (Jelmer Vernooij)
+  * Add constant ERR_DIR_NOT_EMPTY. (Jelmer Vernooij)
 
-  * Add constant ERR_FS_ROOT_DIR. (Jelmer Vernooij)
+  * Add constant ERR_FS_ROOT_DIR. (Jelmer Vernooij)
 
-  * Add `subvertpy.repos.Repository.verify_fs`. (Jelmer Vernooij)
+  * Add `subvertpy.repos.Repository.verify_fs`. (Jelmer Vernooij)
 
-  * Add `subvertpy.repos.Repository.pack_fs`. (Jelmer Vernooij)
+  * Add `subvertpy.repos.Repository.pack_fs`. (Jelmer Vernooij)
 
  BUG FIXES
 
     (Wez Furlong)
 
   * Fix double free of apr pools from subverty.repos.Repos.fs.
-    (Roland Mas, Jelmer Vernooij, #853960)
+    (Roland Mas, Jelmer Vernooij, #853960)
 
 0.8.5  2011-08-21 "boomerang arrow"
 
  BUG FIXES
 
  * Fix compatibility with python < 2.6, where T_BOOL is not available.
-   (Jelmer Vernooij, #829993)
+   (Jelmer Vernooij, #829993)
 
 0.8.4  2011-08-18 "mimic octopus"
 
  FEATURES
 
-  * Fix argument count in subvertpy.client.Client.export. (Jelmer Vernooij, #820662)
+  * Fix argument count in subvertpy.client.Client.export. (Jelmer Vernooij, #820662)
 
   * Add subvertpy.wc.WorkingCopy.status. (Mark Lee)
 
 
  BUG FIXES
 
-  * Fix memory management in subvertpy.ra.Auth. (Jelmer Vernooij)
+  * Fix memory management in subvertpy.ra.Auth. (Jelmer Vernooij)
 
-  * Fix type for revnum in process_committed_queue. (Jelmer Vernooij, #730931)
+  * Fix type for revnum in process_committed_queue. (Jelmer Vernooij, #730931)
 
   * Fix double free when calling close() more than once on editor objects.
-    (Jelmer Vernooij)
+    (Jelmer Vernooij)
 
-  * Fix too early free during iter_log. (Jelmer Vernooij)
+  * Fix too early free during iter_log. (Jelmer Vernooij)
 
   * Prevent freeing the RemoteAccess object before any
     individual request frees. Thanks very much to Steve Langasek for the help
-    debugging this! (Jelmer Vernooij, #803353)
+    debugging this! (Jelmer Vernooij, #803353)
 
   * Error out properly when editor objects are used after they are closed.
-    (Jelmer Vernooij)
+    (Jelmer Vernooij)
 
  FEATURES
 
-  * Add constant ERR_BAD_PROPERTY_VALUE. (Jelmer Vernooij)
+  * Add constant ERR_BAD_PROPERTY_VALUE. (Jelmer Vernooij)
 
 0.8.2   2011-06-17 "mathematically annoying"
 
  BUG FIXES
 
   * Abort immediately if a callback raises an exception.
-    (Jelmer Vernooij)
+    (Jelmer Vernooij)
 
-  * Fix leaking of error objects. (Jelmer Vernooij)
+  * Fix leaking of error objects. (Jelmer Vernooij)
 
 0.8.1   2011-06-02 "ornithologic reptile"
 
  FEATURES
 
-  * Add subvertpy.wc.WorkingCopy.conflicted. (Jelmer Vernooij)
+  * Add subvertpy.wc.WorkingCopy.conflicted. (Jelmer Vernooij)
 
-  * Add subvertpy.wc.WorkingCopy.resolved_conflict. (Jelmer Vernooij)
+  * Add subvertpy.wc.WorkingCopy.resolved_conflict. (Jelmer Vernooij)
 
-  * Add subvertpy.client.Client.mkdir. (Jelmer Vernooij)
+  * Add subvertpy.client.Client.mkdir. (Jelmer Vernooij)
 
  BUG FIXES
 
   * Fix compilation on OS X. (#728574)
 
-  * Keep reference to commit callback in editor. (Jelmer Vernooij, #732120)
+  * Keep reference to commit callback in editor. (Jelmer Vernooij, #732120)
 
   * Properly check return values of PyInt_AsLong() in various places.
 
   * Convert times and file sizes to 64 bit integer objects.
-    (Jelmer Vernooij, #786156)
+    (Jelmer Vernooij, #786156)
 
 0.8.0   2011-03-02 "("
 
  FEATURES
 
-  * Add --version option to subvertpy-fast-export. (Jelmer Vernooij)
+  * Add --version option to subvertpy-fast-export. (Jelmer Vernooij)
 
-  * Add basic manual page for subvertpy-fast-export. (Jelmer Vernooij)
+  * Add basic manual page for subvertpy-fast-export. (Jelmer Vernooij)
 
   * Automatically convert the appropriate errors to socket.gaierror.
-    (Jelmer Vernooij)
+    (Jelmer Vernooij)
 
-  * Add subvertpy.wc.set_adm_dir(). (Jelmer Vernooij)
+  * Add subvertpy.wc.set_adm_dir(). (Jelmer Vernooij)
 
-  * Add subvertpy.wc.WorkingCopy.has_binary_prop. (Jelmer Vernooij)
+  * Add subvertpy.wc.WorkingCopy.has_binary_prop. (Jelmer Vernooij)
 
-  * Add subvertpy.wc.WorkingCopy.get_ancestry. (Jelmer Vernooij)
+  * Add subvertpy.wc.WorkingCopy.get_ancestry. (Jelmer Vernooij)
 
   * Add subvertpy.wc.WorkingCopy.maybe_set_repos_root.
-    (Jelmer Vernooij)
+    (Jelmer Vernooij)
 
   * Add subvertpy.wc.WorkingCopy.add_repos_file.
-    (Jelmer Vernooij)
+    (Jelmer Vernooij)
 
   * Add subvertpy.wc.WorkingCopy.mark_missing_deleted.
-    (Jelmer Vernooij)
+    (Jelmer Vernooij)
 
   * Add subvertpy.wc.WorkingCopy.remove_from_revision_control.
-    (Jelmer Vernooij)
+    (Jelmer Vernooij)
 
-  * Add subvertpy.wc.WorkingCopy.relocate. (Jelmer Vernooij)
+  * Add subvertpy.wc.WorkingCopy.relocate. (Jelmer Vernooij)
 
-  * Add subvertpy.wc.WorkingCopy.crop_tree. (Jelmer Vernooij)
+  * Add subvertpy.wc.WorkingCopy.crop_tree. (Jelmer Vernooij)
 
-  * Add subvertpy.wc.WorkingCopy.translated_stream. (Jelmer Vernooij)
+  * Add subvertpy.wc.WorkingCopy.translated_stream. (Jelmer Vernooij)
 
-  * Add subvertpy.wc.WorkingCopy.text_modified. (Jelmer Vernooij)
+  * Add subvertpy.wc.WorkingCopy.text_modified. (Jelmer Vernooij)
 
-  * Add subvertpy.wc.WorkingCopy.props_modified. (Jelmer Vernooij)
+  * Add subvertpy.wc.WorkingCopy.props_modified. (Jelmer Vernooij)
 
-  * Add subvertpy.wc.CommittedQueue. (Jelmer Vernooij)
+  * Add subvertpy.wc.CommittedQueue. (Jelmer Vernooij)
 
-  * Add subvertpy.wc.get_actual_target. (Jelmer Vernooij)
+  * Add subvertpy.wc.get_actual_target. (Jelmer Vernooij)
 
-  * Add subvertpy.wc.WorkingCopy.is_wc_root. (Jelmer Vernooij)
+  * Add subvertpy.wc.WorkingCopy.is_wc_root. (Jelmer Vernooij)
 
-  * Add subvertpy.wc.WorkingCopy.transmit_text_deltas. (Jelmer Vernooij)
+  * Add subvertpy.wc.WorkingCopy.transmit_text_deltas. (Jelmer Vernooij)
 
-  * Add subvertpy.wc.WorkingCopy.transmit_prop_deltas. (Jelmer Vernooij)
+  * Add subvertpy.wc.WorkingCopy.transmit_prop_deltas. (Jelmer Vernooij)
 
   * Add subvertpy.wc.WorkingCopy.probe_retrieve, subvertpy.wc.WorkingCopy.retrieve.
-    (Jelmer Vernooij)
+    (Jelmer Vernooij)
 
-  * Add subvertpy.wc.WorkingCopy.probe_try. (Jelmer Vernooij)
+  * Add subvertpy.wc.WorkingCopy.probe_try. (Jelmer Vernooij)
 
-  * Add subvertpy.client.export. (Jelmer Vernooij)
+  * Add subvertpy.client.export. (Jelmer Vernooij)
 
  DEPRECATIONS
 
   * ERR_UNKNOWN_HOSTNAME and ERR_EAI_NONAME are deprecated
     and will be removed in the next version of subvertpy.
     Instead, subvertpy will raise socket.gaierror.
-    (Jelmer Vernooij)
+    (Jelmer Vernooij)
 
-  * Use svn_fs_paths_changed2() if available. (Jelmer Vernooij)
+  * Use svn_fs_paths_changed2() if available. (Jelmer Vernooij)
 
  BUG FIXES
 
 
   * Re-using a WorkingCopy object after calling close() on it
     now raises an exception rather than trigger a segfault.
-    (Jelmer Vernooij)
+    (Jelmer Vernooij)
 
-  * Fix type mismatch in svn.ra.get_dir(). (Jelmer Vernooij, #686663)
+  * Fix type mismatch in svn.ra.get_dir(). (Jelmer Vernooij, #686663)
 
   * Cope with trailing slash being specified to subvertpy.wc.revision_stats().
     (Ronny Pfannschmidt)
  API BREAKS
 
   * WorkingCopy.entry() will now raise KeyError if the specified entry was not found.
-    (Jelmer Vernooij)
+    (Jelmer Vernooij)
 
 0.7.5   2010-10-26
 
  FEATURES
 
   * Add constants ERR_APR_OS_START_EAIERR and ERR_APR_OS_ERRSPACE_SIZE.
-    (Jelmer Vernooij)
+    (Jelmer Vernooij)
 
-  * Implement subvertpy.wc.match_ignore_list. (Jelmer Vernooij)
+  * Implement subvertpy.wc.match_ignore_list. (Jelmer Vernooij)
 
-  * Add subvertpy.ra.RemoteAccess.iter_log(). (Jelmer Vernooij)
+  * Add subvertpy.ra.RemoteAccess.iter_log(). (Jelmer Vernooij)
 
-  * Add subvertpy.wc.STATUS_* constants. (Jelmer Vernooij)
+  * Add subvertpy.wc.STATUS_* constants. (Jelmer Vernooij)
 
   * Add subvertpy.wc.api_version(), subvertpy.ra.api_version().
-    (Dan Villiom Podlaski Christiansen, Jelmer Vernooij)
+    (Dan Villiom Podlaski Christiansen, Jelmer Vernooij)
 
  DEPRECATION
 
   * Avoid deprecation warnings for svn.client.Client.copy,
         svn.client.Client.propset, svn.client.Client.propget,
         svn.client.Client.do_update.
-    (Jelmer Vernooij)
+    (Jelmer Vernooij)
 
   * Avoid deprecation warnings for svn.ra.RemoteAccess.do_update,
         svn.ra.RemoteAccess.do_switch, svn.ra.RemoteAccess.do_diff.
-    (Jelmer Vernooij)
+    (Jelmer Vernooij)
 
   * Avoid deprecation warnings for svn.wc.WorkingCopy.propset,
         svn.wc.WorkingCopy.walk_entries,
         svn.wc.WorkingCopy.crawl_revisions,
         svn.wc.WorkingCopy.update_editor,
         svn.wc.ensure_adm.
-    (Jelmer Vernooij)
+    (Jelmer Vernooij)
 
- * Add ERR_ENTRY_NOT_FOUND constant. (Jelmer Vernooij)
+ * Add ERR_ENTRY_NOT_FOUND constant. (Jelmer Vernooij)
 
  * Add subvertpy.ra.RemoteAccess.get_url(). (Dan Villiom Podlaski Christiansen)
 
     (Ronald Blaschke, #612056)
 
   * Return an empty dictionary rather than None when there are no revision
-    properties.  (Jelmer Vernooij)
+    properties.  (Jelmer Vernooij)
 
   * Link against all libraries that are somehow called.
-    (Daniel Johnson, Jelmer Vernooij, #615015)
+    (Daniel Johnson, Jelmer Vernooij, #615015)
 
-  * Include check for apr util headers. (Jelmer Vernooij, #615017)
+  * Include check for apr util headers. (Jelmer Vernooij, #615017)
 
   * Fix reference leaks in Auth and SubversionException handling.
-    (Jelmer Vernooij, #436406)
+    (Jelmer Vernooij, #436406)
 
   * Canonicalize paths in subvertpy.ra.RemoteAccess.get_locations(). 
-    (Jelmer Vernooij)
+    (Jelmer Vernooij)
 
 0.7.3.1    2010-07-27
 
  BUG FIXES
 
-  * Fix compilation against Subversion 1.5. (Jelmer Vernooij)
+  * Fix compilation against Subversion 1.5. (Jelmer Vernooij)
 
 0.7.3    2010-07-21
 
 
   * Various methods are now a bit more liberal in accepting any
     sort of sequence rather than explicitly requiring lists.
-    (Jelmer Vernooij)
+    (Jelmer Vernooij)
 
  FEATURES
 
   * Implement subvertpy.client.Client.diff. (Dan Villiom Podlaski Christiansen,
-                                       Jelmer Vernooij)
+                                       Jelmer Vernooij)
 
   * Support ``revprops`` argument to subvertpy.client.Client.commit. 
-    (Jelmer Vernooij)
+    (Jelmer Vernooij)
 
-  * Implement subvertpy.wc.get_pristine_contents(). (Jelmer Vernooij)
+  * Implement subvertpy.wc.get_pristine_contents(). (Jelmer Vernooij)
 
   * Use better error messages when possible. 
     (Dan Villiom Podlaski Christiansen)
   * Add constant for ERR_NODE_UNKNOWN_KIND. (Dan Villiom Podlaski Christiansen)
 
   * Add svn.client.proplist() binding. (Dan Villiom Podlaski Christiansen,
-                                        Jelmer Vernooij)
+                                        Jelmer Vernooij)
 
   * Add svn.client.list() binding. (Dan Villiom Podlaski Christiansen, 
-                                    Jelmer Vernooij)
+                                    Jelmer Vernooij)
 
 0.7.1    2009-10-20
 
   * Add definition for ERR_EAI_NONAME. (John Szakmeister)
 
   * Add subvertpy.repos.FileSystem methods: youngest_revision, revision_root, 
-    revision_proplist.  (Jelmer Vernooij)
+    revision_proplist.  (Jelmer Vernooij)
 
   * Add subvertpy.repos.{delete,Repository.has_capability,hotcopy}.
-    (Jelmer Vernooij)
+    (Jelmer Vernooij)
 
   * Add subvertpy-fast-export script, based on svn-fast-export.py by Chris Lee 
-    included with bzr-fast-import. (Jelmer Vernooij)
+    included with bzr-fast-import. (Jelmer Vernooij)
 
 0.6.9    2009-09-10