Author: svn-role
Date: Tue Aug 13 04:15:02 2019
New Revision: 1865002

URL: http://svn.apache.org/viewvc?rev=1865002&view=rev
Log:
* upcoming.part.html: Automatically regenerated

Modified:
    subversion/site/publish/upcoming.part.html

Modified: subversion/site/publish/upcoming.part.html
URL: 
http://svn.apache.org/viewvc/subversion/site/publish/upcoming.part.html?rev=1865002&r1=1865001&r2=1865002&view=diff
==============================================================================
--- subversion/site/publish/upcoming.part.html (original)
+++ subversion/site/publish/upcoming.part.html Tue Aug 13 04:15:02 2019
@@ -2,6 +2,113 @@
 <pre style="border-style: none">
 Changes in ^/subversion/branches/1.12.x:
 ------------------------------------------------------------------------
+<a href="https://svn.apache.org/r1860377";>r1860377</a> | svn-role | 2019-05-30 
04:00:08 +0000 (Thu, 30 May 2019) | 11 lines
+
+Merge <a href="https://svn.apache.org/r1857391";>r1857391</a> from trunk:
+
+ * <a href="https://svn.apache.org/r1857391";>r1857391</a>
+   Fix build with APR 1.7.0.
+   Justification:
+     Bogus configure script check relies on APR internals.
+     See https://svn.haxx.se/users/archive-2019-04/0041.shtml
+     and https://svn.haxx.se/dev/archive-2019-04/0020.shtml
+   Votes:
+     +1: stsp, rhuijben (bindings change so 2+1&#x27;s is enough)
+
+------------------------------------------------------------------------
+<a href="https://svn.apache.org/r1863267";>r1863267</a> | julianfoad | 
2019-07-18 10:11:00 +0000 (Thu, 18 Jul 2019) | 4 lines
+
+On &#x27;1.12.x&#x27; branch: Backport <a 
href="https://svn.apache.org/r1863262";>r1863262</a> (Do not print password to 
screen in
+svn_load_dirs.pl). A contrib script, so backported without voting.
+This commit adds the missing mergeinfo.
+------------------------------------------------------------------------
+<a href="https://svn.apache.org/r1863285";>r1863285</a> | julianfoad | 
2019-07-18 13:36:09 +0000 (Thu, 18 Jul 2019) | 11 lines
+
+Merge <a href="https://svn.apache.org/r1855419";>r1855419</a> from trunk:
+
+ * <a href="https://svn.apache.org/r1855419";>r1855419</a>
+   Fix conflict resolver bug where local and incoming edits got swapped.
+   Justification:
+     Bug breaks text conflict resolution.
+     User complained: https://svn.haxx.se/dev/archive-2019-03/0012.shtml
+   Votes:
+     +1: stsp
+     +0: rhuijben
+
+------------------------------------------------------------------------
+<a href="https://svn.apache.org/r1863286";>r1863286</a> | julianfoad | 
2019-07-18 13:36:17 +0000 (Thu, 18 Jul 2019) | 9 lines
+
+Merge <a href="https://svn.apache.org/r1856397";>r1856397</a> from trunk:
+
+ * <a href="https://svn.apache.org/r1856397";>r1856397</a>
+   Allow generating Visual Studio 2019 projects
+   Justification:
+     Makes it easier to build Subversion on Windows. Simple local fix.
+   Votes:
+     +1: rhuijben
+
+------------------------------------------------------------------------
+<a href="https://svn.apache.org/r1863287";>r1863287</a> | julianfoad | 
2019-07-18 13:36:24 +0000 (Thu, 18 Jul 2019) | 9 lines
+
+Merge <a href="https://svn.apache.org/r1857367";>r1857367</a> from trunk:
+
+ * <a href="https://svn.apache.org/r1857367";>r1857367</a>
+    Fix memory lifetime problem in a libsvn_wc error code path.
+    Justification:
+      Edge-case crash. Subversion should not crash.
+    Votes:
+      +1: stsp, rhuijben
+
+------------------------------------------------------------------------
+<a href="https://svn.apache.org/r1863288";>r1863288</a> | julianfoad | 
2019-07-18 13:36:36 +0000 (Thu, 18 Jul 2019) | 16 lines
+
+Merge the <a href="https://svn.apache.org/r1860175";>r1860175</a> group from 
trunk:
+
+ * <a href="https://svn.apache.org/r1860175";>r1860175</a>,<a 
href="https://svn.apache.org/r1860186";>r1860186</a>,<a 
href="https://svn.apache.org/r1860187";>r1860187</a>,<a 
href="https://svn.apache.org/r1860188";>r1860188</a>
+   Fix building Subversion with Visual Studio 2005 and 2008.
+   Justification:
+     A change in 1.12 accidentally introduced a macro escaping issue
+     which broke compilation with these older versions of VC++.
+   Notes:
+     Should have been a simple patch. But lack of this version on my
+     development machine made things harder.
+     (I don&#x27;t see a problem with dropping VS200 2008 support with
+      a future Subversion version, but then we should provide better
+      documentation on that change.)
+   Votes:
+     +1: rhuijben
+
+------------------------------------------------------------------------
+<a href="https://svn.apache.org/r1863289";>r1863289</a> | julianfoad | 
2019-07-18 13:36:46 +0000 (Thu, 18 Jul 2019) | 15 lines
+
+Merge the <a href="https://svn.apache.org/r1859732";>r1859732</a> group from 
trunk:
+
+ * <a href="https://svn.apache.org/r1859732";>r1859732</a>, <a 
href="https://svn.apache.org/r1859734";>r1859734</a>
+   io: Implement the functions that check for node existence using the native
+   Win32 APIs on Windows.
+   Justification:
+     - This allows us to remove the hack from <a 
href="https://svn.apache.org/r1833621";>r1833621</a> and properly handle
+       reparse points on Windows irrespectively of the used APR version.
+     - This improves the I/O performance by using only a single call to
+       GetFileAttributes(), which is much faster than the generic stat
+       implementations from APR 1.6.x and 1.7.x (the latter should be
+       even more slower).
+   Votes:
+     +1: kotkov, rhuijben
+
+------------------------------------------------------------------------
+<a href="https://svn.apache.org/r1863290";>r1863290</a> | julianfoad | 
2019-07-18 13:36:57 +0000 (Thu, 18 Jul 2019) | 9 lines
+
+Merge the <a href="https://svn.apache.org/r1860936";>r1860936</a> group from 
trunk:
+
+ * <a href="https://svn.apache.org/r1860936";>r1860936</a>, <a 
href="https://svn.apache.org/r1860951";>r1860951</a>, <a 
href="https://svn.apache.org/r1860958";>r1860958</a>
+   Provide a way for svnserve&#x27;s &#x27;get-deleted-rev&#x27; API to return 
&#x27;not deleted&#x27;.
+   Justification:
+     Error handling was inconsistent across RA layers.
+   Votes:
+     +1: julianfoad, stsp
+
+------------------------------------------------------------------------
 </pre>
 
 <p>Further changes currently under consideration are listed in each release 
line's 


Reply via email to