You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by xi...@apache.org on 2023/01/27 19:55:03 UTC

svn commit: r1907049 - in /tinkerpop/site/docs: 3.5.5/upgrade/index.html 3.6.2/upgrade/index.html

Author: xiazcy
Date: Fri Jan 27 19:55:03 2023
New Revision: 1907049

URL: http://svn.apache.org/viewvc?rev=1907049&view=rev
Log:
Update 3.5.5 upgrade docs

Modified:
    tinkerpop/site/docs/3.5.5/upgrade/index.html
    tinkerpop/site/docs/3.6.2/upgrade/index.html

Modified: tinkerpop/site/docs/3.5.5/upgrade/index.html
URL: http://svn.apache.org/viewvc/tinkerpop/site/docs/3.5.5/upgrade/index.html?rev=1907049&r1=1907048&r2=1907049&view=diff
==============================================================================
--- tinkerpop/site/docs/3.5.5/upgrade/index.html (original)
+++ tinkerpop/site/docs/3.5.5/upgrade/index.html Fri Jan 27 19:55:03 2023
@@ -811,6 +811,8 @@ table.CodeRay td.code>pre{padding:0}
 <ul class="sectlevel3">
 <li><a href="#_gremlin_net_add_logging">Gremlin.NET: Add logging</a></li>
 <li><a href="#_gremlin_driver_host_availability">gremlin-driver Host Availability</a></li>
+<li><a href="#_added_user_agent_to_gremlin_drivers">Added User Agent to Gremlin drivers</a></li>
+<li><a href="#_update_to_ssl_handshake_timeout_configuration">Update to SSL Handshake Timeout Configuration</a></li>
 </ul>
 </li>
 </ul>
@@ -1795,6 +1797,46 @@ more likely now to note blocking behavio
 <p>See: <a href="https://issues.apache.org/jira/browse/TINKERPOP-2813">TINKERPOP-2813</a></p>
 </div>
 </div>
+<div class="sect3">
+<h4 id="_added_user_agent_to_gremlin_drivers">Added User Agent to Gremlin drivers</h4>
+<div class="paragraph">
+<p>Previously, a server does not distinguish amongst the different types of clients connecting to it. We have now added
+user agent to web socket handshake in all the drivers, each with their own configuration to enable or disable user agent.
+User agent is enabled by default for all drivers.</p>
+</div>
+<div class="ulist">
+<ul>
+<li>
+<p>Java driver can be controlled by the <code>enableUserAgentOnConnect</code> configuration.</p>
+</li>
+<li>
+<p>.Net driver can be controlled by the <code>EnableUserAgentOnConnect</code> in <code>ConnectionPoolSettings</code>.</p>
+</li>
+<li>
+<p>Go driver can be controlled by the <code>EnableUserAgentOnConnect</code> setting.</p>
+</li>
+<li>
+<p>Python driver can be controlled by the <code>enable_user_agent_on_connect</code> setting.</p>
+</li>
+<li>
+<p>JavaScript driver can be controlled by the <code>enableUserAgentOnConnect</code> option.</p>
+</li>
+</ul>
+</div>
+<div class="paragraph">
+<p>See: <a href="https://issues.apache.org/jira/browse/TINKERPOP-2480">TINKERPOP-2480</a></p>
+</div>
+</div>
+<div class="sect3">
+<h4 id="_update_to_ssl_handshake_timeout_configuration">Update to SSL Handshake Timeout Configuration</h4>
+<div class="paragraph">
+<p>Previously, the java driver relies on the default 10 second SSL handshake timeout defined by Netty. We have removed
+the default SSL handshake timeout. The SSL handshake timeout will instead be capped by setting <code>connectionSetupTimeoutMillis</code>.</p>
+</div>
+<div class="paragraph">
+<p>See: <a href="https://issues.apache.org/jira/browse/TINKERPOP-2814">TINKERPOP-2814</a></p>
+</div>
+</div>
 </div>
 </div>
 </div>
@@ -12089,7 +12131,7 @@ gremlin&gt; g.E()
 </div>
 <div id="footer">
 <div id="footer-text">
-Last updated 2023-01-18 15:44:48 -0800
+Last updated 2023-01-27 11:06:24 -0800
 </div>
 </div>
 </body>

Modified: tinkerpop/site/docs/3.6.2/upgrade/index.html
URL: http://svn.apache.org/viewvc/tinkerpop/site/docs/3.6.2/upgrade/index.html?rev=1907049&r1=1907048&r2=1907049&view=diff
==============================================================================
--- tinkerpop/site/docs/3.6.2/upgrade/index.html (original)
+++ tinkerpop/site/docs/3.6.2/upgrade/index.html Fri Jan 27 19:55:03 2023
@@ -867,6 +867,8 @@ table.CodeRay td.code>pre{padding:0}
 <ul class="sectlevel3">
 <li><a href="#_gremlin_net_add_logging">Gremlin.NET: Add logging</a></li>
 <li><a href="#_gremlin_driver_host_availability">gremlin-driver Host Availability</a></li>
+<li><a href="#_added_user_agent_to_gremlin_drivers">Added User Agent to Gremlin drivers</a></li>
+<li><a href="#_update_to_ssl_handshake_timeout_configuration">Update to SSL Handshake Timeout Configuration</a></li>
 </ul>
 </li>
 </ul>
@@ -2901,6 +2903,46 @@ more likely now to note blocking behavio
 <p>See: <a href="https://issues.apache.org/jira/browse/TINKERPOP-2813">TINKERPOP-2813</a></p>
 </div>
 </div>
+<div class="sect3">
+<h4 id="_added_user_agent_to_gremlin_drivers">Added User Agent to Gremlin drivers</h4>
+<div class="paragraph">
+<p>Previously, a server does not distinguish amongst the different types of clients connecting to it. We have now added
+user agent to web socket handshake in all the drivers, each with their own configuration to enable or disable user agent.
+User agent is enabled by default for all drivers.</p>
+</div>
+<div class="ulist">
+<ul>
+<li>
+<p>Java driver can be controlled by the <code>enableUserAgentOnConnect</code> configuration.</p>
+</li>
+<li>
+<p>.Net driver can be controlled by the <code>EnableUserAgentOnConnect</code> in <code>ConnectionPoolSettings</code>.</p>
+</li>
+<li>
+<p>Go driver can be controlled by the <code>EnableUserAgentOnConnect</code> setting.</p>
+</li>
+<li>
+<p>Python driver can be controlled by the <code>enable_user_agent_on_connect</code> setting.</p>
+</li>
+<li>
+<p>JavaScript driver can be controlled by the <code>enableUserAgentOnConnect</code> option.</p>
+</li>
+</ul>
+</div>
+<div class="paragraph">
+<p>See: <a href="https://issues.apache.org/jira/browse/TINKERPOP-2480">TINKERPOP-2480</a></p>
+</div>
+</div>
+<div class="sect3">
+<h4 id="_update_to_ssl_handshake_timeout_configuration">Update to SSL Handshake Timeout Configuration</h4>
+<div class="paragraph">
+<p>Previously, the java driver relies on the default 10 second SSL handshake timeout defined by Netty. We have removed
+the default SSL handshake timeout. The SSL handshake timeout will instead be capped by setting <code>connectionSetupTimeoutMillis</code>.</p>
+</div>
+<div class="paragraph">
+<p>See: <a href="https://issues.apache.org/jira/browse/TINKERPOP-2814">TINKERPOP-2814</a></p>
+</div>
+</div>
 </div>
 </div>
 </div>
@@ -13223,7 +13265,7 @@ gremlin&gt; g.E()
 </div>
 <div id="footer">
 <div id="footer-text">
-Last updated 2023-01-20 17:30:26 -0800
+Last updated 2023-01-27 11:47:17 -0800
 </div>
 </div>
 </body>