[PR #20] Bump base64 from 0.20.0 to 0.21.1 #21

Open
opened 2026-02-26 17:38:06 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Crosse/resync/pull/20
Author: @dependabot[bot]
Created: 5/22/2023
Status: 🔄 Open

Base: mainHead: dependabot/cargo/base64-0.21.1


📝 Commits (1)

  • 802d4bd Bump base64 from 0.20.0 to 0.21.1

📊 Changes

2 files changed (+3 additions, -3 deletions)

View changed files

📝 Cargo.lock (+2 -2)
📝 Cargo.toml (+1 -1)

📄 Description

Bumps base64 from 0.20.0 to 0.21.1.

Changelog

Sourced from base64's changelog.

0.21.1

  • Remove the possibility of panicking during decoded length calculations
  • DecoderReader no longer sometimes erroneously ignores padding #226

Breaking changes

  • Engine.internal_decode return type changed
  • Update MSRV to 1.60.0

0.21.0

Migration

Functions

< 0.20 function 0.21 equivalent
encode() engine::general_purpose::STANDARD.encode() or prelude::BASE64_STANDARD.encode()
encode_config() engine.encode()
encode_config_buf() engine.encode_string()
encode_config_slice() engine.encode_slice()
decode() engine::general_purpose::STANDARD.decode() or prelude::BASE64_STANDARD.decode()
decode_config() engine.decode()
decode_config_buf() engine.decode_vec()
decode_config_slice() engine.decode_slice()

The short-lived 0.20 functions were the 0.13 functions with config replaced with engine.

Padding

If applicable, use the preset engines engine::STANDARD, engine::STANDARD_NO_PAD, engine::URL_SAFE, or engine::URL_SAFE_NO_PAD. The NO_PAD ones require that padding is absent when decoding, and the others require that canonical padding is present .

If you need the < 0.20 behavior that did not care about padding, or want to recreate < 0.20.0's predefined Configs precisely, see the following table.

0.13.1 Config 0.20.0+ alphabet encode_padding decode_padding_mode
STANDARD STANDARD true Indifferent
STANDARD_NO_PAD STANDARD false Indifferent
URL_SAFE URL_SAFE true Indifferent
URL_SAFE_NO_PAD URL_SAFE false Indifferent

0.21.0-rc.1

  • Restore the ability to decode into a slice of precisely the correct length with Engine.decode_slice_unchecked.

... (truncated)

Commits

Dependabot compatibility score

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 commands and options

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 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)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Crosse/resync/pull/20 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 5/22/2023 **Status:** 🔄 Open **Base:** `main` ← **Head:** `dependabot/cargo/base64-0.21.1` --- ### 📝 Commits (1) - [`802d4bd`](https://github.com/Crosse/resync/commit/802d4bdce2370d209d5631317e044bed4a28f6c1) Bump base64 from 0.20.0 to 0.21.1 ### 📊 Changes **2 files changed** (+3 additions, -3 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+2 -2) 📝 `Cargo.toml` (+1 -1) </details> ### 📄 Description Bumps [base64](https://github.com/marshallpierce/rust-base64) from 0.20.0 to 0.21.1. <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.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> <table> <thead> <tr> <th>&lt; 0.20 function</th> <th>0.21 equivalent</th> </tr> </thead> <tbody> <tr> <td><code>encode()</code></td> <td><code>engine::general_purpose::STANDARD.encode()</code> or <code>prelude::BASE64_STANDARD.encode()</code></td> </tr> <tr> <td><code>encode_config()</code></td> <td><code>engine.encode()</code></td> </tr> <tr> <td><code>encode_config_buf()</code></td> <td><code>engine.encode_string()</code></td> </tr> <tr> <td><code>encode_config_slice()</code></td> <td><code>engine.encode_slice()</code></td> </tr> <tr> <td><code>decode()</code></td> <td><code>engine::general_purpose::STANDARD.decode()</code> or <code>prelude::BASE64_STANDARD.decode()</code></td> </tr> <tr> <td><code>decode_config()</code></td> <td><code>engine.decode()</code></td> </tr> <tr> <td><code>decode_config_buf()</code></td> <td><code>engine.decode_vec()</code></td> </tr> <tr> <td><code>decode_config_slice()</code></td> <td><code>engine.decode_slice()</code></td> </tr> </tbody> </table> <p>The short-lived 0.20 functions were the 0.13 functions with <code>config</code> replaced with <code>engine</code>.</p> <h3>Padding</h3> <p>If applicable, use the preset engines <code>engine::STANDARD</code>, <code>engine::STANDARD_NO_PAD</code>, <code>engine::URL_SAFE</code>, or <code>engine::URL_SAFE_NO_PAD</code>. The <code>NO_PAD</code> ones require that padding is absent when decoding, and the others require that canonical padding is present .</p> <p>If you need the &lt; 0.20 behavior that did not care about padding, or want to recreate &lt; 0.20.0's predefined <code>Config</code>s precisely, see the following table.</p> <table> <thead> <tr> <th>0.13.1 Config</th> <th>0.20.0+ alphabet</th> <th><code>encode_padding</code></th> <th><code>decode_padding_mode</code></th> </tr> </thead> <tbody> <tr> <td>STANDARD</td> <td>STANDARD</td> <td>true</td> <td>Indifferent</td> </tr> <tr> <td>STANDARD_NO_PAD</td> <td>STANDARD</td> <td>false</td> <td>Indifferent</td> </tr> <tr> <td>URL_SAFE</td> <td>URL_SAFE</td> <td>true</td> <td>Indifferent</td> </tr> <tr> <td>URL_SAFE_NO_PAD</td> <td>URL_SAFE</td> <td>false</td> <td>Indifferent</td> </tr> </tbody> </table> <h1>0.21.0-rc.1</h1> <ul> <li>Restore the ability to decode into a slice of precisely the correct length with <code>Engine.decode_slice_unchecked</code>.</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/marshallpierce/rust-base64/commits">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=base64&package-manager=cargo&previous-version=0.20.0&new-version=0.21.1)](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 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 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> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
Sign in to join this conversation.
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/resync#21
No description provided.