dependabot[bot] opened a new pull request, #20184: URL: https://github.com/apache/druid/pull/20184
Bumps [org.asynchttpclient:async-http-client](https://github.com/AsyncHttpClient/async-http-client) from 3.0.11 to 3.0.13. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/AsyncHttpClient/async-http-client/releases">org.asynchttpclient:async-http-client's releases</a>.</em></p> <blockquote> <h2>AHC v3.0.13 Release</h2> <h2>Security</h2> <ul> <li><a href="https://github.com/AsyncHttpClient/async-http-client/security/advisories/GHSA-rqf5-2wxv-rjf4">GHSA-rqf5-2wxv-rjf4</a> - Digest challenge without a usable nonce downgrades to Basic and sends the password in cleartext</li> <li><a href="https://github.com/AsyncHttpClient/async-http-client/security/advisories/GHSA-jmqq-x5g9-9p2w">GHSA-jmqq-x5g9-9p2w</a> - Replay to a different host sends the original host's request and credentials to the new host</li> <li><a href="https://github.com/AsyncHttpClient/async-http-client/security/advisories/GHSA-vvp4-63h8-v5pm">GHSA-vvp4-63h8-v5pm</a> - Connection pool key omits the authenticated principal, so an NTLM or Negotiate connection is reused across identities</li> <li><a href="https://github.com/AsyncHttpClient/async-http-client/security/advisories/GHSA-f9m8-cv68-674w">GHSA-f9m8-cv68-674w</a> - Cookie Domain attribute is not checked against the public suffix list, so a cookie can be set for co.uk</li> <li><a href="https://github.com/AsyncHttpClient/async-http-client/security/advisories/GHSA-qhv6-3pmh-95q4">GHSA-qhv6-3pmh-95q4</a> - Digest mutual authentication is switched off by a peer offering qop=auth-int</li> </ul> <h3>Behaviour changes</h3> <ul> <li>A Digest challenge carrying no nonce now selects Digest rather than Basic. Such an exchange previously appeared to work because the client answered in Basic, and it will now fail. It was sending the password in the clear.</li> <li>A server offering <code>qop="auth-int"</code> and nothing else now falls back to the qop-less digest of RFC 2069, which has weaker replay protection. The client logs a warning when this happens.</li> <li><code>Realm.Builder.matchParam</code> keeps a backslash that precedes any character other than a quote or another backslash. This repairs a 3.0.12 regression that corrupted <code>DOMAIN\Users</code> to <code>DOMAINUsers</code> and broke Digest against those realms.</li> <li>NTLM and Negotiate connections are pooled per principal, so an application authenticating as several identities against one host holds more connections than before.</li> <li>A cookie whose <code>Domain</code> names a public suffix is refused. A host whose own name is a public suffix, such as the short names Docker Compose and Kubernetes hand out, can still set a cookie for itself.</li> </ul> <h3>Known issues</h3> <ul> <li>Over HTTP/2, an intercepted 401 or a redirect completes the caller's future exceptionally even though the exchange succeeds on the wire. Use HTTP/1.1 where authentication or redirects are involved.</li> </ul> <h2>AHC v3.0.12 Release</h2> <h2>What's Changed</h2> <ul> <li>Release v3.0.11 by <a href="https://github.com/hyperxpro"><code>@hyperxpro</code></a> in <a href="https://redirect.github.com/AsyncHttpClient/async-http-client/pull/2198">AsyncHttpClient/async-http-client#2198</a></li> <li>Reduce per-request allocation in ThreadSafeCookieStore.get() by <a href="https://github.com/hyperxpro"><code>@hyperxpro</code></a> in <a href="https://redirect.github.com/AsyncHttpClient/async-http-client/pull/2201">AsyncHttpClient/async-http-client#2201</a></li> <li>escape quote and crlf in multipart content-disposition values by <a href="https://github.com/jmestwa-coder"><code>@jmestwa-coder</code></a> in <a href="https://redirect.github.com/AsyncHttpClient/async-http-client/pull/2203">AsyncHttpClient/async-http-client#2203</a></li> <li>Avoid Uri reallocation in UriEncoder.encode() on the no-op path by <a href="https://github.com/hyperxpro"><code>@hyperxpro</code></a> in <a href="https://redirect.github.com/AsyncHttpClient/async-http-client/pull/2204">AsyncHttpClient/async-http-client#2204</a></li> <li>Reuse a per-thread UriParser scratch to avoid per-parse allocation by <a href="https://github.com/hyperxpro"><code>@hyperxpro</code></a> in <a href="https://redirect.github.com/AsyncHttpClient/async-http-client/pull/2205">AsyncHttpClient/async-http-client#2205</a></li> <li>Intern known request header names to static AsciiString by <a href="https://github.com/hyperxpro"><code>@hyperxpro</code></a> in <a href="https://redirect.github.com/AsyncHttpClient/async-http-client/pull/2206">AsyncHttpClient/async-http-client#2206</a></li> <li>Match HTTP/2 content-encoding with AsciiString constants instead of toLowerCase by <a href="https://github.com/hyperxpro"><code>@hyperxpro</code></a> in <a href="https://redirect.github.com/AsyncHttpClient/async-http-client/pull/2207">AsyncHttpClient/async-http-client#2207</a></li> <li>Improve CI Release Workflow by <a href="https://github.com/hyperxpro"><code>@hyperxpro</code></a> in <a href="https://redirect.github.com/AsyncHttpClient/async-http-client/pull/2208">AsyncHttpClient/async-http-client#2208</a></li> <li>Fall back to NIO instead of throwing when no native transport is available by <a href="https://github.com/hyperxpro"><code>@hyperxpro</code></a> in <a href="https://redirect.github.com/AsyncHttpClient/async-http-client/pull/2209">AsyncHttpClient/async-http-client#2209</a></li> <li>fail websocket handshake on invalid sec-websocket-accept by <a href="https://github.com/jmestwa-coder"><code>@jmestwa-coder</code></a> in <a href="https://redirect.github.com/AsyncHttpClient/async-http-client/pull/2211">AsyncHttpClient/async-http-client#2211</a></li> <li>Localize tests that depended on public endpoints by <a href="https://github.com/hyperxpro"><code>@hyperxpro</code></a> in <a href="https://redirect.github.com/AsyncHttpClient/async-http-client/pull/2215">AsyncHttpClient/async-http-client#2215</a></li> <li>[Performance] Raise default HTTP/2 initial window size to 16 MiB by <a href="https://github.com/hyperxpro"><code>@hyperxpro</code></a> in <a href="https://redirect.github.com/AsyncHttpClient/async-http-client/pull/2213">AsyncHttpClient/async-http-client#2213</a></li> <li>Add LoadBalance.ROUND_ROBIN for per-request IP round-robin by <a href="https://github.com/pavel-ptashyts"><code>@pavel-ptashyts</code></a> in <a href="https://redirect.github.com/AsyncHttpClient/async-http-client/pull/2202">AsyncHttpClient/async-http-client#2202</a></li> <li>Bump the dependencies group with 5 updates by <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot] in <a href="https://redirect.github.com/AsyncHttpClient/async-http-client/pull/2222">AsyncHttpClient/async-http-client#2222</a></li> <li>Bump actions/checkout from 6 to 7 in the actions group by <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot] in <a href="https://redirect.github.com/AsyncHttpClient/async-http-client/pull/2223">AsyncHttpClient/async-http-client#2223</a></li> <li>use SecureRandom for digest auth cnonce by <a href="https://github.com/jmestwa-coder"><code>@jmestwa-coder</code></a> in <a href="https://redirect.github.com/AsyncHttpClient/async-http-client/pull/2220">AsyncHttpClient/async-http-client#2220</a></li> <li>skip origin Authorization on CONNECT proxy request by <a href="https://github.com/madib06ops"><code>@madib06ops</code></a> in <a href="https://redirect.github.com/AsyncHttpClient/async-http-client/pull/2234">AsyncHttpClient/async-http-client#2234</a></li> <li>escape quoted-string params in Digest Authorization header by <a href="https://github.com/madib06ops"><code>@madib06ops</code></a> in <a href="https://redirect.github.com/AsyncHttpClient/async-http-client/pull/2236">AsyncHttpClient/async-http-client#2236</a></li> <li>stop config realm leaking to a cross-origin redirect target by <a href="https://github.com/jmestwa-coder"><code>@jmestwa-coder</code></a> in <a href="https://redirect.github.com/AsyncHttpClient/async-http-client/pull/2224">AsyncHttpClient/async-http-client#2224</a></li> <li>fail SCRAM exchange on invalid ServerSignature by <a href="https://github.com/madib06ops"><code>@madib06ops</code></a> in <a href="https://redirect.github.com/AsyncHttpClient/async-http-client/pull/2235">AsyncHttpClient/async-http-client#2235</a></li> <li>normalize the scheme case in the Uri constructor by <a href="https://github.com/madib06ops"><code>@madib06ops</code></a> in <a href="https://redirect.github.com/AsyncHttpClient/async-http-client/pull/2239">AsyncHttpClient/async-http-client#2239</a></li> <li>Fix LICENSE file for Apache 2.0 by <a href="https://github.com/hyperxpro"><code>@hyperxpro</code></a> in <a href="https://redirect.github.com/AsyncHttpClient/async-http-client/pull/2242">AsyncHttpClient/async-http-client#2242</a></li> <li>Enable HTTPS endpoint identification in JsseSslEngineFactory by <a href="https://github.com/hyperxpro"><code>@hyperxpro</code></a> in <a href="https://redirect.github.com/AsyncHttpClient/async-http-client/pull/2243">AsyncHttpClient/async-http-client#2243</a></li> <li>Reject CR/LF in raw multipart part-header fields by <a href="https://github.com/hyperxpro"><code>@hyperxpro</code></a> in <a href="https://redirect.github.com/AsyncHttpClient/async-http-client/pull/2244">AsyncHttpClient/async-http-client#2244</a></li> <li>Read InputStream bodies straight into the buffer, no staging array by <a href="https://github.com/pavel-ptashyts"><code>@pavel-ptashyts</code></a> in <a href="https://redirect.github.com/AsyncHttpClient/async-http-client/pull/2233">AsyncHttpClient/async-http-client#2233</a></li> <li>Bind origin Kerberos/SPNEGO token to the origin service, not the proxy by <a href="https://github.com/hyperxpro"><code>@hyperxpro</code></a> in <a href="https://redirect.github.com/AsyncHttpClient/async-http-client/pull/2245">AsyncHttpClient/async-http-client#2245</a></li> <li>Avoid per-connect lock on shared Bootstrap options map (<a href="https://redirect.github.com/AsyncHttpClient/async-http-client/issues/2218">#2218</a>) by <a href="https://github.com/pavel-ptashyts"><code>@pavel-ptashyts</code></a> in <a href="https://redirect.github.com/AsyncHttpClient/async-http-client/pull/2219">AsyncHttpClient/async-http-client#2219</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/AsyncHttpClient/async-http-client/commit/35ad15f2f6b1788e3761b0c940a9d7ae3fe64c5d"><code>35ad15f</code></a> [maven-release-plugin] prepare release async-http-client-project-3.0.13</li> <li><a href="https://github.com/AsyncHttpClient/async-http-client/commit/83e552e64cabab2119addb6b47f7c6482997c94e"><code>83e552e</code></a> Keep a connection authenticated by one principal away from another</li> <li><a href="https://github.com/AsyncHttpClient/async-http-client/commit/330267895fe0bdb41bbd027ea6b151d38ee7c23d"><code>3302678</code></a> Refuse a cookie whose Domain names a public suffix</li> <li><a href="https://github.com/AsyncHttpClient/async-http-client/commit/c363701b77d20950e9e178a485120179ce8cc066"><code>c363701</code></a> Warn when an auth-int-only challenge forces the RFC 2069 fallback</li> <li><a href="https://github.com/AsyncHttpClient/async-http-client/commit/a5422493b638226666a1ecb5f82826c7c7845b99"><code>a542249</code></a> Stop negotiating a qop whose mutual authentication cannot be verified</li> <li><a href="https://github.com/AsyncHttpClient/async-http-client/commit/15b254514a411623e5f1d8c99ea79c0f82f8a466"><code>15b2545</code></a> Move the target, the proxy and the pool key together when a request is replayed</li> <li><a href="https://github.com/AsyncHttpClient/async-http-client/commit/c0fd24e642968bc8c3d65ad58022b524f5b58207"><code>c0fd24e</code></a> Disable autoPublish</li> <li><a href="https://github.com/AsyncHttpClient/async-http-client/commit/8376866aa9b5a7653ad19db9d472692f875caa83"><code>8376866</code></a> Fail a Digest challenge with no usable nonce instead of downgrading to Basic</li> <li><a href="https://github.com/AsyncHttpClient/async-http-client/commit/fc6c9b7052a0c8ccb656d333c35205642beeef24"><code>fc6c9b7</code></a> [maven-release-plugin] prepare for next development iteration</li> <li><a href="https://github.com/AsyncHttpClient/async-http-client/commit/c07038b44e5206375662b46859672e8f1df9f05a"><code>c07038b</code></a> [maven-release-plugin] prepare release async-http-client-project-3.0.12</li> <li>Additional commits viewable in <a href="https://github.com/AsyncHttpClient/async-http-client/compare/async-http-client-project-3.0.11...async-http-client-project-3.0.13">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
