Skip to content

Commit

Permalink
Deploying to gh-pages from @ 96bcf95 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
vietj committed Dec 18, 2024
1 parent 1829fdc commit 4fa480f
Showing 1 changed file with 47 additions and 1 deletion.
48 changes: 47 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -613,6 +613,7 @@ <h1>Migrate from Vert.x 4 to 5</h1>
<li><a href="#_options_addendpointsetendpoint_replacements">Options addEndpoint/setEndpoint replacements</a></li>
</ul>
</li>
<li><a href="#_vert_x_consul_client">Vert.x Consul Client</a></li>
<li><a href="#_vert_x_health_check">Vert.x Health Check</a>
<ul class="sectlevel2">
<li><a href="#_health_checks_dependencies_improvements">Health checks dependencies improvements</a></li>
Expand Down Expand Up @@ -1589,6 +1590,15 @@ <h4 id="_timeoutstream_removal">TimeoutStream removal</h4>
</div>
</div>
<div class="sect3">
<h4 id="_context_local_storage_removal">Context local storage removal</h4>
<div class="paragraph">
<p>The context local storage API has been removed from the public API since it should not have been public in the first place and is meant for extending Vert.x</p>
</div>
<div class="paragraph">
<p>Its methods have been moved to <code>io.vertx.core.internal.ContextInternal</code> interface and might be removed any time in Vert.x 5 since there is a alternative implementation for it (`io.vertx.core.spi.context.storage.ContextLocal).</p>
</div>
</div>
<div class="sect3">
<h4 id="_keycertoptions_key_manager_mapper_removal">keyCertOptions key manager mapper removal</h4>
<div class="paragraph">
<p><code>KeyCertOptions#keyManagerMapper()</code> method has been removed in Vert.x 5, implementors must instead implement <code>keyManagerFactoryMappermethod</code> that provides the opportunity to cache the <code>KeyManagerFactory</code> to the implementor that controls the lifecycle of the key manager.</p>
Expand Down Expand Up @@ -2065,6 +2075,42 @@ <h3 id="_options_addendpointsetendpoint_replacements">Options addEndpoint/setEnd
</div>
</div>
<div class="sect1">
<h2 id="_vert_x_consul_client">Vert.x Consul Client</h2>
<div class="sectionbody">
<div class="paragraph">
<p>The <code>io.vertx.ext.consul.AclToken</code> has been removed, instead <code>io.vertx.ext.consul.token.AclToken</code> should be used.</p>
</div>
<div class="paragraph">
<p>These deprecated API methods has been removed:</p>
</div>
<div class="ulist">
<ul>
<li>
<p><code>Check#getNodeName()</code>, instead <code>Check#getNode()</code> should be used.</p>
</li>
<li>
<p><code>ConsulClient#createAclToken(io.vertx.ext.consul.AclToken)</code>, instead use <code>createAclToken(io.vertx.ext.consul.token.AclToken)</code></p>
</li>
<li>
<p><code>ConsulClient#updateAclToken(io.vertx.ext.consul.AclToken)</code>, instead use <code>updateAclToken(String, io.vertx.ext.consul.token.AclToken)</code></p>
</li>
<li>
<p><code>ConsulClient#cloneAclToken(String)</code>, instead use <code>cloneAclToken(String, CloneAclTokenOptions)</code></p>
</li>
<li>
<p><code>ConsulClient#infoAclToken(String)</code>, instead use <code>readAclToken(String)</code></p>
</li>
<li>
<p><code>ConsulClient#destroyAclToken(String)</code>, instead use <code>deleteAclToken(String)</code></p>
</li>
<li>
<p><code>ConsulClient#listAclTokens()</code>, instead use <code>getAclTokens()</code></p>
</li>
</ul>
</div>
</div>
</div>
<div class="sect1">
<h2 id="_vert_x_health_check">Vert.x Health Check</h2>
<div class="sectionbody">
<div class="sect2">
Expand Down Expand Up @@ -2540,7 +2586,7 @@ <h3 id="_upgrade_to_hazelcast_5_3">Upgrade to Hazelcast 5.3</h3>
</div>
<div id="footer">
<div id="footer-text">
Last updated 2024-12-18 04:01:19 UTC
Last updated 2024-12-18 11:41:12 UTC
</div>
</div>
</body>
Expand Down

0 comments on commit 4fa480f

Please sign in to comment.