You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicecomb.apache.org by GitBox <gi...@apache.org> on 2022/06/13 07:50:02 UTC

[GitHub] [servicecomb-java-chassis] dependabot[bot] opened a new pull request, #3064: Bump okhttp3.version from 4.9.3 to 4.10.0

dependabot[bot] opened a new pull request, #3064:
URL: https://github.com/apache/servicecomb-java-chassis/pull/3064

   Bumps `okhttp3.version` from 4.9.3 to 4.10.0.
   Updates `okhttp` from 4.9.3 to 4.10.0
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a href="https://github.com/square/okhttp/blob/master/CHANGELOG.md">okhttp's changelog</a>.</em></p>
   <blockquote>
   <h1>Change Log</h1>
   <h2>Version 5.0.0-alpha.8</h2>
   <p><em>2022-06-08</em></p>
   <ul>
   <li>
   <p>Fix: Change how <code>H2_PRIOR_KNOWLEDGE</code> works with HTTP proxies. Previously OkHttp assumed the
   proxy itself was a prior knowledge HTTP/2 server. With this update, OkHttp attempts a <code>CONNECT</code>
   tunnel just as it would with HTTPS. For prior knowledge with proxies OkHttp's is now consistent
   with these curl arguments:</p>
   <pre><code>curl \
     --http2-prior-knowledge \
     --proxy localhost:8888 \
     --proxytunnel \
     http://squareup.com/robots.txt
   </code></pre>
   </li>
   <li>
   <p>Fix: Support executing OkHttp on kotlin-stdlib versions as old as 1.4. The library still builds
   on up-to-date Kotlin releases (1.6.21) but no longer needs that version as a runtime dependency.
   This should make it easier to use OkHttp in Gradle plugins.</p>
   </li>
   <li>
   <p>Fix: Don't start the clock on response timeouts until the request body is fully transmitted.
   This is only relevant for duplex request bodies, because they are written concurrently when
   reading the response body.</p>
   </li>
   <li>
   <p>New: <code>MockResponse.inTunnel()</code> is a new <code>mockwebserver3</code> API to configure responses that are
   served while creating a proxy tunnel. This obsoletes both the <code>tunnelProxy</code> argument on
   <code>MockWebServer</code> and the <code>UPGRADE_TO_SSL_AT_END</code> socket option. (Only APIs on <code>mockwebserver3</code>
   are changed; the old <code>okhttp3.mockwebserver</code> APIs remain as they always have been.</p>
   </li>
   </ul>
   <h2>Version 5.0.0-alpha.7</h2>
   <p><em>2022-04-26</em></p>
   <p><strong>This release introduces new Kotlin-friendly APIs.</strong> When we migrated OkHttp from Java to Kotlin in
   OkHttp 4.0, we kept our Java-first APIs. With 5.0 we're continuing to support Java and adding
   additional improvements for Kotlin users. In this alpha we're excited to skip-the-builder for
   requests and remove a common source of non-null assertions (<code>!!</code>) on the response body.</p>
   <p>The alpha releases in the 5.0.0 series have production-quality code and an unstable API. We expect
   to make changes to the APIs introduced in 5.0.0-alpha.X. These releases are safe for production use
   and 'alpha' strictly signals that we're still experimenting with some new APIs. If you're eager for
   the fixes or features below, please upgrade.</p>
   <ul>
   <li>New: Named and default parameters constructor for <code>Request</code>:</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a href="https://github.com/square/okhttp/commit/6b07f6227416506a44bb97012551929cd6a1dd79"><code>6b07f62</code></a> Prepare for release 4.10.0.</li>
   <li><a href="https://github.com/square/okhttp/commit/c657392a6e807d9b77df73827d4c7e1d8beeb1b0"><code>c657392</code></a> Fix Conscrypt NPE workaround (<a href="https://github-redirect.dependabot.com/square/okhttp/issues/7219">#7219</a>) (<a href="https://github-redirect.dependabot.com/square/okhttp/issues/7230">#7230</a>)</li>
   <li><a href="https://github.com/square/okhttp/commit/5aa716af8ee31a7bd2dca37361f00bafc8f7700e"><code>5aa716a</code></a> 4.10: Version bump of kotlin, okio. (<a href="https://github-redirect.dependabot.com/square/okhttp/issues/7225">#7225</a>)</li>
   <li><a href="https://github.com/square/okhttp/commit/acf873543f197283995232446a35fd8a83fad77e"><code>acf8735</code></a> Backport of <a href="https://github-redirect.dependabot.com/square/okhttp/pull/6495">square/okhttp#6495</a> (<a href="https://github-redirect.dependabot.com/square/okhttp/issues/6940">#6940</a>)</li>
   <li><a href="https://github.com/square/okhttp/commit/86acfbd65a4d1030b3827afb57b8c45c35465879"><code>86acfbd</code></a> Prepare next development version.</li>
   <li>See full diff in <a href="https://github.com/square/okhttp/compare/parent-4.9.3...parent-4.10.0">compare view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `mockwebserver` from 4.9.3 to 4.10.0
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a href="https://github.com/square/okhttp/blob/master/CHANGELOG.md">mockwebserver's changelog</a>.</em></p>
   <blockquote>
   <h1>Change Log</h1>
   <h2>Version 5.0.0-alpha.8</h2>
   <p><em>2022-06-08</em></p>
   <ul>
   <li>
   <p>Fix: Change how <code>H2_PRIOR_KNOWLEDGE</code> works with HTTP proxies. Previously OkHttp assumed the
   proxy itself was a prior knowledge HTTP/2 server. With this update, OkHttp attempts a <code>CONNECT</code>
   tunnel just as it would with HTTPS. For prior knowledge with proxies OkHttp's is now consistent
   with these curl arguments:</p>
   <pre><code>curl \
     --http2-prior-knowledge \
     --proxy localhost:8888 \
     --proxytunnel \
     http://squareup.com/robots.txt
   </code></pre>
   </li>
   <li>
   <p>Fix: Support executing OkHttp on kotlin-stdlib versions as old as 1.4. The library still builds
   on up-to-date Kotlin releases (1.6.21) but no longer needs that version as a runtime dependency.
   This should make it easier to use OkHttp in Gradle plugins.</p>
   </li>
   <li>
   <p>Fix: Don't start the clock on response timeouts until the request body is fully transmitted.
   This is only relevant for duplex request bodies, because they are written concurrently when
   reading the response body.</p>
   </li>
   <li>
   <p>New: <code>MockResponse.inTunnel()</code> is a new <code>mockwebserver3</code> API to configure responses that are
   served while creating a proxy tunnel. This obsoletes both the <code>tunnelProxy</code> argument on
   <code>MockWebServer</code> and the <code>UPGRADE_TO_SSL_AT_END</code> socket option. (Only APIs on <code>mockwebserver3</code>
   are changed; the old <code>okhttp3.mockwebserver</code> APIs remain as they always have been.</p>
   </li>
   </ul>
   <h2>Version 5.0.0-alpha.7</h2>
   <p><em>2022-04-26</em></p>
   <p><strong>This release introduces new Kotlin-friendly APIs.</strong> When we migrated OkHttp from Java to Kotlin in
   OkHttp 4.0, we kept our Java-first APIs. With 5.0 we're continuing to support Java and adding
   additional improvements for Kotlin users. In this alpha we're excited to skip-the-builder for
   requests and remove a common source of non-null assertions (<code>!!</code>) on the response body.</p>
   <p>The alpha releases in the 5.0.0 series have production-quality code and an unstable API. We expect
   to make changes to the APIs introduced in 5.0.0-alpha.X. These releases are safe for production use
   and 'alpha' strictly signals that we're still experimenting with some new APIs. If you're eager for
   the fixes or features below, please upgrade.</p>
   <ul>
   <li>New: Named and default parameters constructor for <code>Request</code>:</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a href="https://github.com/square/okhttp/commit/6b07f6227416506a44bb97012551929cd6a1dd79"><code>6b07f62</code></a> Prepare for release 4.10.0.</li>
   <li><a href="https://github.com/square/okhttp/commit/c657392a6e807d9b77df73827d4c7e1d8beeb1b0"><code>c657392</code></a> Fix Conscrypt NPE workaround (<a href="https://github-redirect.dependabot.com/square/okhttp/issues/7219">#7219</a>) (<a href="https://github-redirect.dependabot.com/square/okhttp/issues/7230">#7230</a>)</li>
   <li><a href="https://github.com/square/okhttp/commit/5aa716af8ee31a7bd2dca37361f00bafc8f7700e"><code>5aa716a</code></a> 4.10: Version bump of kotlin, okio. (<a href="https://github-redirect.dependabot.com/square/okhttp/issues/7225">#7225</a>)</li>
   <li><a href="https://github.com/square/okhttp/commit/acf873543f197283995232446a35fd8a83fad77e"><code>acf8735</code></a> Backport of <a href="https://github-redirect.dependabot.com/square/okhttp/pull/6495">square/okhttp#6495</a> (<a href="https://github-redirect.dependabot.com/square/okhttp/issues/6940">#6940</a>)</li>
   <li><a href="https://github.com/square/okhttp/commit/86acfbd65a4d1030b3827afb57b8c45c35465879"><code>86acfbd</code></a> Prepare next development version.</li>
   <li>See full diff in <a href="https://github.com/square/okhttp/compare/parent-4.9.3...parent-4.10.0">compare view</a></li>
   </ul>
   </details>
   <br />
   
   
   Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   <details>
   <summary>Dependabot commands and options</summary>
   <br />
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
   - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
   
   
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@servicecomb.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [servicecomb-java-chassis] Shoothzj merged pull request #3064: Bump okhttp3.version from 4.9.3 to 4.10.0

Posted by GitBox <gi...@apache.org>.
Shoothzj merged PR #3064:
URL: https://github.com/apache/servicecomb-java-chassis/pull/3064


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@servicecomb.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org