dependabot[bot] opened a new pull request, #523: URL: https://github.com/apache/httpcomponents-client/pull/523
Bumps `httpcore.version` from 5.2.2 to 5.2.4. Updates `org.apache.httpcomponents.core5:httpcore5` from 5.2.2 to 5.2.4 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/apache/httpcomponents-core/blob/master/RELEASE_NOTES.txt">org.apache.httpcomponents.core5:httpcore5's changelog</a>.</em></p> <blockquote> <h2>Release 5.2.4</h2> <p>This is a maintenance release that corrects a major defect discovered since release 5.2.3 that can lead to an H2 connection failing at runtime with the message "Frame size exceeds maximum" when executing requests with an enclosed message body and the remote endpoint having negotiated a maximum frame size larger than the protocol default (16KB).</p> <h2>Change Log</h2> <ul> <li>HTTPCORE-762: H2 protocol handler incorrectly determines the maximum frame size for outgoing frames in case the remote endpoint negotiated a max frame size larger than the protocol default. Contributed by Oleg Kalnichevski <!-- raw HTML omitted --></li> </ul> <h2>Release 5.2.3</h2> <p>This is a maintenance release that corrects several defects discovered since release 5.2.2 including a major defect that can cause non-blocking character-based consumers to enter an invalid state and stop processing incoming data.</p> <h2>Change Log</h2> <ul> <li> <p>HTTPCORE-757: AbstractCharDataConsumer fails to correctly handle incomplete UTF8 encoded data split across multiple data packets. Contributed by Oleg Kalnichevski <!-- raw HTML omitted --></p> </li> <li> <p>Support SOCKS5 with username/password authentication Contributed by yndu13 <!-- raw HTML omitted --></p> </li> <li> <p>Non-blocking protocol handler to filter out non-printable ASCII and non-ASCII characters from HTTP headers by default. This makes the behavior of the non-blocking transport consistent with that of the blocking one (<a href="https://redirect.github.com/apache/httpcomponents-core/issues/416">#416</a>). Contributed by vismayku <!-- raw HTML omitted --></p> </li> <li> <p>HTTPCORE-754: StrictConnPool fails to correctly handle infinite request timeout. Contributed by Oleg Kalnichevski <!-- raw HTML omitted --></p> </li> <li> <p>HTTPCORE-753: Fixed race condition in the IOSession#close method. Contributed by Oleg Kalnichevski <!-- raw HTML omitted --></p> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/apache/httpcomponents-core/commit/8fd744d10241e723159c2030f6476fbe903e6ca9"><code>8fd744d</code></a> HttpCore 5.2.4 release</li> <li><a href="https://github.com/apache/httpcomponents-core/commit/c5a5301665c040ff5541578428b67e7c41c4f7dd"><code>c5a5301</code></a> Updated release notes for HttpCore 5.2.4 release</li> <li><a href="https://github.com/apache/httpcomponents-core/commit/faaa82fb76574c07fb31a916f64adcb52f56148e"><code>faaa82f</code></a> HTTPCORE-762: H2 protocol handler incorrectly determines the maximum frame si...</li> <li><a href="https://github.com/apache/httpcomponents-core/commit/0d4aeb557737ac717e62c6375ca0d8a86f5f886b"><code>0d4aeb5</code></a> Add security warning to TrustStrategy documentation (<a href="https://redirect.github.com/apache/httpcomponents-core/issues/438">#438</a>)</li> <li><a href="https://github.com/apache/httpcomponents-core/commit/371347add19a612f3c00904e515501a875719961"><code>371347a</code></a> HTTPCLIENT-2298: Strict connection pool to filter out expired and completed r...</li> <li><a href="https://github.com/apache/httpcomponents-core/commit/e3c770b55602eb9e5a45dfe7c6a07a1adede2c95"><code>e3c770b</code></a> Upgraded HttpCore version to 5.2.4-SNAPSHOT</li> <li><a href="https://github.com/apache/httpcomponents-core/commit/5425ae1140139d1022a24431db82d594539f299e"><code>5425ae1</code></a> Updated release notes for HttpCore 5.2.3 release</li> <li><a href="https://github.com/apache/httpcomponents-core/commit/6f8f5794b6795f7d22a24b6ea5ca24269f5a34f2"><code>6f8f579</code></a> HTTPCORE-757: AbstractCharDataConsumer fails to correctly handle incomplete U...</li> <li><a href="https://github.com/apache/httpcomponents-core/commit/bfba5f9619943cbe9b3b8d4cbc90b997e89d45a6"><code>bfba5f9</code></a> Deprecated misplaced method that introduced a dependency between the protocol...</li> <li><a href="https://github.com/apache/httpcomponents-core/commit/f44526e3ede62efe115f56d180fe7892bb5f7556"><code>f44526e</code></a> Support SOCKS5 proxy with username/password authentication</li> <li>Additional commits viewable in <a href="https://github.com/apache/httpcomponents-core/compare/rel/v5.2.2...rel/v5.2.4">compare view</a></li> </ul> </details> <br /> Updates `org.apache.httpcomponents.core5:httpcore5-h2` from 5.2.2 to 5.2.4 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/apache/httpcomponents-core/blob/master/RELEASE_NOTES.txt">org.apache.httpcomponents.core5:httpcore5-h2's changelog</a>.</em></p> <blockquote> <h2>Release 5.2.4</h2> <p>This is a maintenance release that corrects a major defect discovered since release 5.2.3 that can lead to an H2 connection failing at runtime with the message "Frame size exceeds maximum" when executing requests with an enclosed message body and the remote endpoint having negotiated a maximum frame size larger than the protocol default (16KB).</p> <h2>Change Log</h2> <ul> <li>HTTPCORE-762: H2 protocol handler incorrectly determines the maximum frame size for outgoing frames in case the remote endpoint negotiated a max frame size larger than the protocol default. Contributed by Oleg Kalnichevski <!-- raw HTML omitted --></li> </ul> <h2>Release 5.2.3</h2> <p>This is a maintenance release that corrects several defects discovered since release 5.2.2 including a major defect that can cause non-blocking character-based consumers to enter an invalid state and stop processing incoming data.</p> <h2>Change Log</h2> <ul> <li> <p>HTTPCORE-757: AbstractCharDataConsumer fails to correctly handle incomplete UTF8 encoded data split across multiple data packets. Contributed by Oleg Kalnichevski <!-- raw HTML omitted --></p> </li> <li> <p>Support SOCKS5 with username/password authentication Contributed by yndu13 <!-- raw HTML omitted --></p> </li> <li> <p>Non-blocking protocol handler to filter out non-printable ASCII and non-ASCII characters from HTTP headers by default. This makes the behavior of the non-blocking transport consistent with that of the blocking one (<a href="https://redirect.github.com/apache/httpcomponents-core/issues/416">#416</a>). Contributed by vismayku <!-- raw HTML omitted --></p> </li> <li> <p>HTTPCORE-754: StrictConnPool fails to correctly handle infinite request timeout. Contributed by Oleg Kalnichevski <!-- raw HTML omitted --></p> </li> <li> <p>HTTPCORE-753: Fixed race condition in the IOSession#close method. Contributed by Oleg Kalnichevski <!-- raw HTML omitted --></p> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/apache/httpcomponents-core/commit/8fd744d10241e723159c2030f6476fbe903e6ca9"><code>8fd744d</code></a> HttpCore 5.2.4 release</li> <li><a href="https://github.com/apache/httpcomponents-core/commit/c5a5301665c040ff5541578428b67e7c41c4f7dd"><code>c5a5301</code></a> Updated release notes for HttpCore 5.2.4 release</li> <li><a href="https://github.com/apache/httpcomponents-core/commit/faaa82fb76574c07fb31a916f64adcb52f56148e"><code>faaa82f</code></a> HTTPCORE-762: H2 protocol handler incorrectly determines the maximum frame si...</li> <li><a href="https://github.com/apache/httpcomponents-core/commit/0d4aeb557737ac717e62c6375ca0d8a86f5f886b"><code>0d4aeb5</code></a> Add security warning to TrustStrategy documentation (<a href="https://redirect.github.com/apache/httpcomponents-core/issues/438">#438</a>)</li> <li><a href="https://github.com/apache/httpcomponents-core/commit/371347add19a612f3c00904e515501a875719961"><code>371347a</code></a> HTTPCLIENT-2298: Strict connection pool to filter out expired and completed r...</li> <li><a href="https://github.com/apache/httpcomponents-core/commit/e3c770b55602eb9e5a45dfe7c6a07a1adede2c95"><code>e3c770b</code></a> Upgraded HttpCore version to 5.2.4-SNAPSHOT</li> <li><a href="https://github.com/apache/httpcomponents-core/commit/5425ae1140139d1022a24431db82d594539f299e"><code>5425ae1</code></a> Updated release notes for HttpCore 5.2.3 release</li> <li><a href="https://github.com/apache/httpcomponents-core/commit/6f8f5794b6795f7d22a24b6ea5ca24269f5a34f2"><code>6f8f579</code></a> HTTPCORE-757: AbstractCharDataConsumer fails to correctly handle incomplete U...</li> <li><a href="https://github.com/apache/httpcomponents-core/commit/bfba5f9619943cbe9b3b8d4cbc90b997e89d45a6"><code>bfba5f9</code></a> Deprecated misplaced method that introduced a dependency between the protocol...</li> <li><a href="https://github.com/apache/httpcomponents-core/commit/f44526e3ede62efe115f56d180fe7892bb5f7556"><code>f44526e</code></a> Support SOCKS5 proxy with username/password authentication</li> <li>Additional commits viewable in <a href="https://github.com/apache/httpcomponents-core/compare/rel/v5.2.2...rel/v5.2.4">compare view</a></li> </ul> </details> <br /> Updates `org.apache.httpcomponents.core5:httpcore5-testing` from 5.2.2 to 5.2.4 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/apache/httpcomponents-core/blob/master/RELEASE_NOTES.txt">org.apache.httpcomponents.core5:httpcore5-testing's changelog</a>.</em></p> <blockquote> <h2>Release 5.2.4</h2> <p>This is a maintenance release that corrects a major defect discovered since release 5.2.3 that can lead to an H2 connection failing at runtime with the message "Frame size exceeds maximum" when executing requests with an enclosed message body and the remote endpoint having negotiated a maximum frame size larger than the protocol default (16KB).</p> <h2>Change Log</h2> <ul> <li>HTTPCORE-762: H2 protocol handler incorrectly determines the maximum frame size for outgoing frames in case the remote endpoint negotiated a max frame size larger than the protocol default. Contributed by Oleg Kalnichevski <!-- raw HTML omitted --></li> </ul> <h2>Release 5.2.3</h2> <p>This is a maintenance release that corrects several defects discovered since release 5.2.2 including a major defect that can cause non-blocking character-based consumers to enter an invalid state and stop processing incoming data.</p> <h2>Change Log</h2> <ul> <li> <p>HTTPCORE-757: AbstractCharDataConsumer fails to correctly handle incomplete UTF8 encoded data split across multiple data packets. Contributed by Oleg Kalnichevski <!-- raw HTML omitted --></p> </li> <li> <p>Support SOCKS5 with username/password authentication Contributed by yndu13 <!-- raw HTML omitted --></p> </li> <li> <p>Non-blocking protocol handler to filter out non-printable ASCII and non-ASCII characters from HTTP headers by default. This makes the behavior of the non-blocking transport consistent with that of the blocking one (<a href="https://redirect.github.com/apache/httpcomponents-core/issues/416">#416</a>). Contributed by vismayku <!-- raw HTML omitted --></p> </li> <li> <p>HTTPCORE-754: StrictConnPool fails to correctly handle infinite request timeout. Contributed by Oleg Kalnichevski <!-- raw HTML omitted --></p> </li> <li> <p>HTTPCORE-753: Fixed race condition in the IOSession#close method. Contributed by Oleg Kalnichevski <!-- raw HTML omitted --></p> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/apache/httpcomponents-core/commit/8fd744d10241e723159c2030f6476fbe903e6ca9"><code>8fd744d</code></a> HttpCore 5.2.4 release</li> <li><a href="https://github.com/apache/httpcomponents-core/commit/c5a5301665c040ff5541578428b67e7c41c4f7dd"><code>c5a5301</code></a> Updated release notes for HttpCore 5.2.4 release</li> <li><a href="https://github.com/apache/httpcomponents-core/commit/faaa82fb76574c07fb31a916f64adcb52f56148e"><code>faaa82f</code></a> HTTPCORE-762: H2 protocol handler incorrectly determines the maximum frame si...</li> <li><a href="https://github.com/apache/httpcomponents-core/commit/0d4aeb557737ac717e62c6375ca0d8a86f5f886b"><code>0d4aeb5</code></a> Add security warning to TrustStrategy documentation (<a href="https://redirect.github.com/apache/httpcomponents-core/issues/438">#438</a>)</li> <li><a href="https://github.com/apache/httpcomponents-core/commit/371347add19a612f3c00904e515501a875719961"><code>371347a</code></a> HTTPCLIENT-2298: Strict connection pool to filter out expired and completed r...</li> <li><a href="https://github.com/apache/httpcomponents-core/commit/e3c770b55602eb9e5a45dfe7c6a07a1adede2c95"><code>e3c770b</code></a> Upgraded HttpCore version to 5.2.4-SNAPSHOT</li> <li><a href="https://github.com/apache/httpcomponents-core/commit/5425ae1140139d1022a24431db82d594539f299e"><code>5425ae1</code></a> Updated release notes for HttpCore 5.2.3 release</li> <li><a href="https://github.com/apache/httpcomponents-core/commit/6f8f5794b6795f7d22a24b6ea5ca24269f5a34f2"><code>6f8f579</code></a> HTTPCORE-757: AbstractCharDataConsumer fails to correctly handle incomplete U...</li> <li><a href="https://github.com/apache/httpcomponents-core/commit/bfba5f9619943cbe9b3b8d4cbc90b997e89d45a6"><code>bfba5f9</code></a> Deprecated misplaced method that introduced a dependency between the protocol...</li> <li><a href="https://github.com/apache/httpcomponents-core/commit/f44526e3ede62efe115f56d180fe7892bb5f7556"><code>f44526e</code></a> Support SOCKS5 proxy with username/password authentication</li> <li>Additional commits viewable in <a href="https://github.com/apache/httpcomponents-core/compare/rel/v5.2.2...rel/v5.2.4">compare view</a></li> </ul> </details> <br /> Updates `org.apache.httpcomponents.core5:httpcore5-reactive` from 5.2.2 to 5.2.4 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/apache/httpcomponents-core/blob/master/RELEASE_NOTES.txt">org.apache.httpcomponents.core5:httpcore5-reactive's changelog</a>.</em></p> <blockquote> <h2>Release 5.2.4</h2> <p>This is a maintenance release that corrects a major defect discovered since release 5.2.3 that can lead to an H2 connection failing at runtime with the message "Frame size exceeds maximum" when executing requests with an enclosed message body and the remote endpoint having negotiated a maximum frame size larger than the protocol default (16KB).</p> <h2>Change Log</h2> <ul> <li>HTTPCORE-762: H2 protocol handler incorrectly determines the maximum frame size for outgoing frames in case the remote endpoint negotiated a max frame size larger than the protocol default. Contributed by Oleg Kalnichevski <!-- raw HTML omitted --></li> </ul> <h2>Release 5.2.3</h2> <p>This is a maintenance release that corrects several defects discovered since release 5.2.2 including a major defect that can cause non-blocking character-based consumers to enter an invalid state and stop processing incoming data.</p> <h2>Change Log</h2> <ul> <li> <p>HTTPCORE-757: AbstractCharDataConsumer fails to correctly handle incomplete UTF8 encoded data split across multiple data packets. Contributed by Oleg Kalnichevski <!-- raw HTML omitted --></p> </li> <li> <p>Support SOCKS5 with username/password authentication Contributed by yndu13 <!-- raw HTML omitted --></p> </li> <li> <p>Non-blocking protocol handler to filter out non-printable ASCII and non-ASCII characters from HTTP headers by default. This makes the behavior of the non-blocking transport consistent with that of the blocking one (<a href="https://redirect.github.com/apache/httpcomponents-core/issues/416">#416</a>). Contributed by vismayku <!-- raw HTML omitted --></p> </li> <li> <p>HTTPCORE-754: StrictConnPool fails to correctly handle infinite request timeout. Contributed by Oleg Kalnichevski <!-- raw HTML omitted --></p> </li> <li> <p>HTTPCORE-753: Fixed race condition in the IOSession#close method. Contributed by Oleg Kalnichevski <!-- raw HTML omitted --></p> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/apache/httpcomponents-core/commit/8fd744d10241e723159c2030f6476fbe903e6ca9"><code>8fd744d</code></a> HttpCore 5.2.4 release</li> <li><a href="https://github.com/apache/httpcomponents-core/commit/c5a5301665c040ff5541578428b67e7c41c4f7dd"><code>c5a5301</code></a> Updated release notes for HttpCore 5.2.4 release</li> <li><a href="https://github.com/apache/httpcomponents-core/commit/faaa82fb76574c07fb31a916f64adcb52f56148e"><code>faaa82f</code></a> HTTPCORE-762: H2 protocol handler incorrectly determines the maximum frame si...</li> <li><a href="https://github.com/apache/httpcomponents-core/commit/0d4aeb557737ac717e62c6375ca0d8a86f5f886b"><code>0d4aeb5</code></a> Add security warning to TrustStrategy documentation (<a href="https://redirect.github.com/apache/httpcomponents-core/issues/438">#438</a>)</li> <li><a href="https://github.com/apache/httpcomponents-core/commit/371347add19a612f3c00904e515501a875719961"><code>371347a</code></a> HTTPCLIENT-2298: Strict connection pool to filter out expired and completed r...</li> <li><a href="https://github.com/apache/httpcomponents-core/commit/e3c770b55602eb9e5a45dfe7c6a07a1adede2c95"><code>e3c770b</code></a> Upgraded HttpCore version to 5.2.4-SNAPSHOT</li> <li><a href="https://github.com/apache/httpcomponents-core/commit/5425ae1140139d1022a24431db82d594539f299e"><code>5425ae1</code></a> Updated release notes for HttpCore 5.2.3 release</li> <li><a href="https://github.com/apache/httpcomponents-core/commit/6f8f5794b6795f7d22a24b6ea5ca24269f5a34f2"><code>6f8f579</code></a> HTTPCORE-757: AbstractCharDataConsumer fails to correctly handle incomplete U...</li> <li><a href="https://github.com/apache/httpcomponents-core/commit/bfba5f9619943cbe9b3b8d4cbc90b997e89d45a6"><code>bfba5f9</code></a> Deprecated misplaced method that introduced a dependency between the protocol...</li> <li><a href="https://github.com/apache/httpcomponents-core/commit/f44526e3ede62efe115f56d180fe7892bb5f7556"><code>f44526e</code></a> Support SOCKS5 proxy with username/password authentication</li> <li>Additional commits viewable in <a href="https://github.com/apache/httpcomponents-core/compare/rel/v5.2.2...rel/v5.2.4">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 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: dev-unsubscr...@hc.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@hc.apache.org For additional commands, e-mail: dev-h...@hc.apache.org