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

   Updates the requirements on 
[base64](https://github.com/marshallpierce/rust-base64) to permit the latest 
version.
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/marshallpierce/rust-base64/blob/master/RELEASE-NOTES.md";>base64's
 changelog</a>.</em></p>
   <blockquote>
   <h1>0.22.0</h1>
   <ul>
   <li><code>DecodeSliceError::OutputSliceTooSmall</code> is now conservative 
rather than precise. That is, the error will only occur if the decoded output 
<em>cannot</em> fit, meaning that <code>Engine::decode_slice</code> can now be 
used with exactly-sized output slices. As part of this, 
<code>Engine::internal_decode</code> now returns <code>DecodeSliceError</code> 
instead of <code>DecodeError</code>, but that is not expected to affect any 
external callers.</li>
   <li><code>DecodeError::InvalidLength</code> now refers specifically to the 
<em>number of valid symbols</em> being invalid (i.e. <code>len % 4 == 
1</code>), rather than just the number of input bytes. This avoids confusing 
scenarios when based on interpretation you could make a case for either 
<code>InvalidLength</code> or <code>InvalidByte</code> being appropriate.</li>
   <li>Decoding is somewhat faster (5-10%)</li>
   </ul>
   <h1>0.21.7</h1>
   <ul>
   <li>Support getting an alphabet's contents as a str via 
<code>Alphabet::as_str()</code></li>
   </ul>
   <h1>0.21.6</h1>
   <ul>
   <li>Improved introductory documentation and example</li>
   </ul>
   <h1>0.21.5</h1>
   <ul>
   <li>Add <code>Debug</code> and <code>Clone</code> impls for the general 
purpose Engine</li>
   </ul>
   <h1>0.21.4</h1>
   <ul>
   <li>Make <code>encoded_len</code> <code>const</code>, allowing the creation 
of arrays sized to encode compile-time-known data lengths</li>
   </ul>
   <h1>0.21.3</h1>
   <ul>
   <li>Implement <code>source</code> instead of <code>cause</code> on Error 
types</li>
   <li>Roll back MSRV to 1.48.0 so Debian can continue to live in a time 
warp</li>
   <li>Slightly faster chunked encoding for short inputs</li>
   <li>Decrease binary size</li>
   </ul>
   <h1>0.21.2</h1>
   <ul>
   <li>Rollback MSRV to 1.57.0 -- only dev dependencies need 1.60, not the main 
code</li>
   </ul>
   <h1>0.21.1</h1>
   <ul>
   <li>Remove the possibility of panicking during decoded length 
calculations</li>
   <li><code>DecoderReader</code> no longer sometimes erroneously ignores
   padding  <a 
href="https://redirect.github.com/marshallpierce/rust-base64/issues/226";>#226</a></li>
   </ul>
   <h2>Breaking changes</h2>
   <ul>
   <li><code>Engine.internal_decode</code> return type changed</li>
   <li>Update MSRV to 1.60.0</li>
   </ul>
   <h1>0.21.0</h1>
   <h2>Migration</h2>
   <h3>Functions</h3>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/marshallpierce/rust-base64/commit/5d70ba7576f9aafcbf02bd8acfcb9973411fb95f";><code>5d70ba7</code></a>
 Merge pull request <a 
href="https://redirect.github.com/marshallpierce/rust-base64/issues/269";>#269</a>
 from marshallpierce/mp/decode-precisely</li>
   <li><a 
href="https://github.com/marshallpierce/rust-base64/commit/efb6c006c75ddbe60c084c2e3e0e084cd18b0122";><code>efb6c00</code></a>
 Release notes</li>
   <li><a 
href="https://github.com/marshallpierce/rust-base64/commit/2b91084a31ad11624acd81e06455ba0cbd21d4a8";><code>2b91084</code></a>
 Add some tests to boost coverage</li>
   <li><a 
href="https://github.com/marshallpierce/rust-base64/commit/9e9c7abe65fed78c35a1e94e11446d66ff118c25";><code>9e9c7ab</code></a>
 Engine::internal_decode now returns DecodeSliceError</li>
   <li><a 
href="https://github.com/marshallpierce/rust-base64/commit/a8a60f43c56597259558261353b5bf7e953eed36";><code>a8a60f4</code></a>
 Decode main loop improvements</li>
   <li><a 
href="https://github.com/marshallpierce/rust-base64/commit/a25be0667c63460827cfadd71d1630acb442bb09";><code>a25be06</code></a>
 Simplify leftover output writes</li>
   <li><a 
href="https://github.com/marshallpierce/rust-base64/commit/9979cc33bb964b4ee36898773a01f546d2c6487a";><code>9979cc3</code></a>
 Keep morsels as separate bytes</li>
   <li><a 
href="https://github.com/marshallpierce/rust-base64/commit/37670c5ec224eec3af9778fb371c5529dfab52af";><code>37670c5</code></a>
 Bump dev toolchain version (<a 
href="https://redirect.github.com/marshallpierce/rust-base64/issues/268";>#268</a>)</li>
   <li><a 
href="https://github.com/marshallpierce/rust-base64/commit/9652c787730e58515ce7b44fcafd2430ab424628";><code>9652c78</code></a>
 v0.21.7</li>
   <li><a 
href="https://github.com/marshallpierce/rust-base64/commit/08deccf7031b9c769a556cd9ebb0bc9cac988272";><code>08deccf</code></a>
 provide as_str() method to return the alphabet characters (<a 
href="https://redirect.github.com/marshallpierce/rust-base64/issues/264";>#264</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/marshallpierce/rust-base64/compare/v0.21.0...v0.22.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 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]

Reply via email to