dependabot[bot] opened a new pull request, #813:
URL: https://github.com/apache/arrow-rs-object-store/pull/813

   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.23.0</h1>
   <ul>
   <li>Added more consts for preconfigured configs and engines</li>
   <li>Make DecodeError::InvalidLastSymbol more clear by including the decoded 
value</li>
   <li>Added SIMD-accelerated engines behind the default-on 
<code>simd-unsafe</code> feature: <code>Simd</code> picks the best
   instruction set at runtime (AVX2 on <code>x86_64</code>, NEON on 
<code>aarch64</code>) and falls back to the scalar
   <code>GeneralPurpose</code> engine, while <code>Avx2</code> and 
<code>Neon</code> target one instruction set with no runtime
   detection and work in <code>no_std</code>. The engines support the standard 
and URL-safe alphabets.</li>
   <li>Update MSRV to 1.71.0</li>
   <li>Add support for custom padding symbols</li>
   </ul>
   <h1>0.22.1</h1>
   <ul>
   <li>Correct the symbols used for the predefined 
<code>alphabet::BIN_HEX</code>.</li>
   </ul>
   <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>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/marshallpierce/rust-base64/commit/9e9220a4166f628de7c8803289e120ae1e944f78";><code>9e9220a</code></a>
 v0.23.0</li>
   <li><a 
href="https://github.com/marshallpierce/rust-base64/commit/870326ec592eebde9d6bfe4c5d8130c591273e9c";><code>870326e</code></a>
 Merge pull request <a 
href="https://redirect.github.com/marshallpierce/rust-base64/issues/306";>#306</a>
 from marshallpierce/mp/trailing-bits-docs</li>
   <li><a 
href="https://github.com/marshallpierce/rust-base64/commit/fbec5f1050f9fc16e6a826ebabaa2b7b0644bd67";><code>fbec5f1</code></a>
 Document no trailing trailing bits</li>
   <li><a 
href="https://github.com/marshallpierce/rust-base64/commit/0a23549968f059b53cf39e96eba8f46779f322a7";><code>0a23549</code></a>
 Merge pull request <a 
href="https://redirect.github.com/marshallpierce/rust-base64/issues/305";>#305</a>
 from marshallpierce/mp/edition-2021</li>
   <li><a 
href="https://github.com/marshallpierce/rust-base64/commit/f10b7e20614135aa61289140683fc93e5a45d338";><code>f10b7e2</code></a>
 Update deps &amp; edition</li>
   <li><a 
href="https://github.com/marshallpierce/rust-base64/commit/9d21a598860645cb6290940e7a43033bc43ebd74";><code>9d21a59</code></a>
 Merge pull request <a 
href="https://redirect.github.com/marshallpierce/rust-base64/issues/304";>#304</a>
 from marshallpierce/mp/custom-padding-rebase</li>
   <li><a 
href="https://github.com/marshallpierce/rust-base64/commit/f70bad2caaa85350b95d988bfb9a0997e824bfd8";><code>f70bad2</code></a>
 Support custom padding symbols</li>
   <li><a 
href="https://github.com/marshallpierce/rust-base64/commit/684d79cd3deb8dfd5323619634c75bc0ff6edfd9";><code>684d79c</code></a>
 Merge pull request <a 
href="https://redirect.github.com/marshallpierce/rust-base64/issues/301";>#301</a>
 from marshallpierce/mp/simd-gardening</li>
   <li><a 
href="https://github.com/marshallpierce/rust-base64/commit/5bf66f2646c6fd99e1b18bf4e2bb0a47d34e1eaa";><code>5bf66f2</code></a>
 Merge pull request <a 
href="https://redirect.github.com/marshallpierce/rust-base64/issues/284";>#284</a>
 from AbeZbm/add-tests</li>
   <li><a 
href="https://github.com/marshallpierce/rust-base64/commit/d3831cfbf7dafe226a8383450c3410e2f67c826a";><code>d3831cf</code></a>
 Followups to SIMD work</li>
   <li>Additional commits viewable in <a 
href="https://github.com/marshallpierce/rust-base64/compare/v0.22.0...v0.23.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 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