dependabot[bot] opened a new pull request, #1037:
URL: https://github.com/apache/datafusion-ballista/pull/1037

   Updates the requirements on [hyper](https://github.com/hyperium/hyper) to 
permit the latest version.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/hyperium/hyper/releases";>hyper's releases</a>.</em></p>
   <blockquote>
   <h2>v1.4.1</h2>
   <h2>Bug Fixes</h2>
   <ul>
   <li><strong>http1:</strong> reject final chunked if missing 0 (<a 
href="https://github.com/hyperium/hyper/commit/8e5de1bb57e10b5bd9e70ab22489da787517238a";>8e5de1bb</a>)</li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/hyperium/hyper/blob/master/CHANGELOG.md";>hyper's 
changelog</a>.</em></p>
   <blockquote>
   <h3>v1.4.1 (2024-07-09)</h3>
   <h4>Bug Fixes</h4>
   <ul>
   <li><strong>http1:</strong> reject final chunked if missing 0 (<a 
href="https://github.com/hyperium/hyper/commit/8e5de1bb57e10b5bd9e70ab22489da787517238a";>8e5de1bb</a>)</li>
   </ul>
   <h2>v1.4.0 (2024-07-01)</h2>
   <h4>Bug Fixes</h4>
   <ul>
   <li><strong>http2:</strong> stop removing &quot;Trailer&quot; header in 
HTTP/2 responses as per RFC 9110 (<a 
href="https://redirect.github.com/hyperium/hyper/issues/3648";>#3648</a>) (<a 
href="https://github.com/hyperium/hyper/commit/a3269f7ab285dbeb44a3a7dbc163fcadd65087f9";>a3269f7a</a>)</li>
   <li><strong>server:</strong> start header read timeout immediately (<a 
href="https://redirect.github.com/hyperium/hyper/issues/3185";>#3185</a>) (<a 
href="https://github.com/hyperium/hyper/commit/0eb1b6cf4d914ce9c3f8e92a8b43754eba27a327";>0eb1b6cf</a>)</li>
   </ul>
   <h4>Features</h4>
   <ul>
   <li><strong>client:</strong>
   <ul>
   <li>add <code>SendRequest::try_send_request()</code> method (<a 
href="https://redirect.github.com/hyperium/hyper/issues/3691";>#3691</a>) (<a 
href="https://github.com/hyperium/hyper/commit/4ffaad53c78572c500584e0cb5d76ae6ffc6adb6";>4ffaad53</a>)</li>
   <li>remove <code>Send +Sync</code> bounds requirement of 
<code>http2::Connection</code> executor (<a 
href="https://redirect.github.com/hyperium/hyper/issues/3682";>#3682</a>) (<a 
href="https://github.com/hyperium/hyper/commit/56c3cd560bc10671d3d8b638f3f17a304f920c6b";>56c3cd56</a>)</li>
   <li>remove <code>'static</code> lifetime bound on http1/2 client IO (<a 
href="https://redirect.github.com/hyperium/hyper/issues/3667";>#3667</a>) (<a 
href="https://github.com/hyperium/hyper/commit/9580b357635031f3d631303f3afffc2afae77933";>9580b357</a>)</li>
   </ul>
   </li>
   <li><strong>http1:</strong> add support for receiving trailer fields (<a 
href="https://redirect.github.com/hyperium/hyper/issues/3637";>#3637</a>) (<a 
href="https://github.com/hyperium/hyper/commit/ac84af6b32a5d37d9343013ace088aaae47587b6";>ac84af6b</a>,
 closes <a 
href="https://redirect.github.com/hyperium/hyper/issues/2703";>#2703</a>)</li>
   <li><strong>server:</strong> add 
<code>Builder::auto_date_header(bool)</code> to allow disabling Date headers 
(<a 
href="https://github.com/hyperium/hyper/commit/721785efad8537513e48d900a85c05ce79483018";>721785ef</a>)</li>
   <li><strong>service:</strong> implement Service for reference types (<a 
href="https://redirect.github.com/hyperium/hyper/issues/3607";>#3607</a>) (<a 
href="https://github.com/hyperium/hyper/commit/eade122db25f51619aee5db845de2a61b7ff2f74";>eade122d</a>)</li>
   </ul>
   <h3>v1.3.1 (2024-04-16)</h3>
   <h4>Bug Fixes</h4>
   <ul>
   <li><strong>client:</strong> revert auto content-length header for some 
requests (<a 
href="https://redirect.github.com/hyperium/hyper/issues/3633";>#3633</a>)</li>
   </ul>
   <h2>v1.3.0 (2024-04-15)</h2>
   <h4>Bug Fixes</h4>
   <ul>
   <li><strong>client:</strong> send content-length even with no body (<a 
href="https://github.com/hyperium/hyper/commit/172fdfaf0e0d9222917f271a83339238082e2657";>172fdfaf</a>)</li>
   <li><strong>http2:</strong>
   <ul>
   <li><code>max_header_list_size(num)</code> defaults to 16kb (<a 
href="https://github.com/hyperium/hyper/commit/203d1b090d0d0349c7e373e881ac4ddba72129be";>203d1b09</a>)</li>
   <li><code>initial_max_send_streams</code> defaults to 100 (<a 
href="https://github.com/hyperium/hyper/commit/2d1bd7085e37a55ed6393f0e3f1b9a0b06db4d5d";>2d1bd708</a>)</li>
   </ul>
   </li>
   <li><strong>server:</strong>
   <ul>
   <li>avoid unwrapping for the <code>Future</code> impl of HTTP/1 
<code>UpgradeableConnection</code> (<a 
href="https://redirect.github.com/hyperium/hyper/issues/3627";>#3627</a>) (<a 
href="https://github.com/hyperium/hyper/commit/b79be911696f6a93e8d408080ebbf558b612ce3c";>b79be911</a>,
 closes <a 
href="https://redirect.github.com/hyperium/hyper/issues/3621";>#3621</a>)</li>
   <li>avoid  <code>graceful_shutdown</code> panic on upgraded H1 connection 
(<a href="https://redirect.github.com/hyperium/hyper/issues/3616";>#3616</a>) 
(<a 
href="https://github.com/hyperium/hyper/commit/6ecf85218fb24531184c53d5ed0eb7caf13cdcef";>6ecf8521</a>)</li>
   </ul>
   </li>
   </ul>
   <h4>Features</h4>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/hyperium/hyper/commit/4fda6b3ef7da763623797af40aa51d764be3fd2c";><code>4fda6b3</code></a>
 v1.4.1</li>
   <li><a 
href="https://github.com/hyperium/hyper/commit/8e5de1bb57e10b5bd9e70ab22489da787517238a";><code>8e5de1b</code></a>
 fix(http1): reject final chunked if missing 0</li>
   <li><a 
href="https://github.com/hyperium/hyper/commit/fdc1916be58b5b6b569aac181eb65b6b35fce4ad";><code>fdc1916</code></a>
 v1.4.0</li>
   <li><a 
href="https://github.com/hyperium/hyper/commit/4ffaad53c78572c500584e0cb5d76ae6ffc6adb6";><code>4ffaad5</code></a>
 feat(client): add <code>SendRequest::try_send_request()</code> method (<a 
href="https://redirect.github.com/hyperium/hyper/issues/3691";>#3691</a>)</li>
   <li><a 
href="https://github.com/hyperium/hyper/commit/56c3cd560bc10671d3d8b638f3f17a304f920c6b";><code>56c3cd5</code></a>
 feat(client): remove <code>Send +Sync</code> bounds requirement of 
<code>http2::Connection</code> e...</li>
   <li><a 
href="https://github.com/hyperium/hyper/commit/9580b357635031f3d631303f3afffc2afae77933";><code>9580b35</code></a>
 feat(client): remove 'static lifetime bound on http1/2 client IO (<a 
href="https://redirect.github.com/hyperium/hyper/issues/3667";>#3667</a>)</li>
   <li><a 
href="https://github.com/hyperium/hyper/commit/3e435cff7f29390f495a495df1d735b6196bd87b";><code>3e435cf</code></a>
 docs(client): Include exec arg in client::conn::http2::handshake doc (<a 
href="https://redirect.github.com/hyperium/hyper/issues/3694";>#3694</a>)</li>
   <li><a 
href="https://github.com/hyperium/hyper/commit/111d0383304733fbd6d44b53cc4581ac4c142f2c";><code>111d038</code></a>
 docs(client): better describe Uri forms are sent as-is</li>
   <li><a 
href="https://github.com/hyperium/hyper/commit/aa7ff605da3b706e855f9633b8dddeb9463217d4";><code>aa7ff60</code></a>
 docs(client): replace example on mod page with link to guide</li>
   <li><a 
href="https://github.com/hyperium/hyper/commit/7cedc133316ce135b8cfcb3d84e27b9053073065";><code>7cedc13</code></a>
 perf(client): create DispatchGone error only if needed</li>
   <li>Additional commits viewable in <a 
href="https://github.com/hyperium/hyper/compare/v0.14.4...v1.4.1";>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: [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]

Reply via email to