Commit 3f4bb8e
authored
build(deps): bump rpassword from 7.3.1 to 7.5.0 (#500)
Bumps [rpassword](https://github.com/conradkleinespel/rpassword) from
7.3.1 to 7.5.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/conradkleinespel/rpassword/releases">rpassword's
releases</a>.</em></p>
<blockquote>
<h2>v7.5.0</h2>
<p>This release comes with lots of stuff. It should be fully backward
compatible.</p>
<h2>New features</h2>
<ul>
<li>Support for masking or partially masking a password as it's being
typed. Thank you, <a
href="https://github.com/chipsenkbeil"><code>@chipsenkbeil</code></a>,
for your contribution.</li>
<li>New API. The documentation has been vastly improved to support this,
see <a href="https://docs.rs/rpassword/">https://docs.rs/rpassword/</a>.
To sum up, you can now call
<code>read_password_with_config(config)</code> and there is a
<code>ConfigBuilder</code> that allows you to configure how passwords
should be read. This makes the library much more flexible and means new
options will be added without breaking existing code.</li>
</ul>
<h2>Fixes</h2>
<ul>
<li>Fix for CVE-2025-64170 which affects <code>rpassword</code> on
versions v7.4.0 and below. Thank you, <a
href="https://github.com/squell"><code>@squell</code></a> and <a
href="https://github.com/DevLaTron"><code>@DevLaTron</code></a>, for
reporting this.</li>
<li>Better support for multibyte characters and more reliable handling
of control characters and terminal escape sequences. Thank you again, <a
href="https://github.com/chipsenkbeil"><code>@chipsenkbeil</code></a>,
for your contribution.</li>
</ul>
<h2>Deprecations</h2>
<ul>
<li><code>_from_bufread</code> functions have been deprecated. You are
encouraged to migrate to <code>_with_config</code> functions. See <a
href="https://github.com/conradkleinespel/rpassword/blob/main/UPGRADE.md">UPGRADE.md</a>
as well as the <a
href="https://docs.rs/rpassword/latest/rpassword/fn.read_password_from_bufread.html">documentation
which has examples</a> that you can most likely drop into your code
without other changes.</li>
</ul>
<h2>Misc</h2>
<ul>
<li>Update of the <code>windows-sys</code> dependency.</li>
<li>Update Rust edition from 2018 to 2024.</li>
<li>Better cross-platform testing, through more unit tests and a CI that
runs Linux, Windows and Wasm.</li>
</ul>
<p>Feedback is very much welcome.</p>
<h2>v7.4.0</h2>
<p>Changes and updates in this release:</p>
<ul>
<li>Updates <code>windows-sys</code> from <code>0.52</code> to
<code>0.59</code>, see <a
href="https://github.com/conradkleinespel/rpassword/commit/cb2244aba3e6b4358cf489e61c8e35c564e31952">https://github.com/conradkleinespel/rpassword/commit/cb2244aba3e6b4358cf489e61c8e35c564e31952</a>;</li>
<li>Improves Chinese character handling, the commit is in the
<code>rtoolbox</code> crate (<a
href="https://github.com/conradkleinespel/rtoolbox">https://github.com/conradkleinespel/rtoolbox</a>).
Thank you <a
href="https://github.com/Jordan-Haidee"><code>@Jordan-Haidee</code></a>
for providing a fix in <a
href="https://redirect.github.com/conradkleinespel/rpassword/issues/97">conradkleinespel/rpassword#97</a>.</li>
</ul>
<p>I've noticed after publishing the release that the size of the crate
on crates.io went from <code>7KiB</code> to <code>121KiB</code>. That's
due to the addition of an image in the <code>README.md</code>, which I
did not anticipate would be distributed to everyone. The fix (<a
href="https://github.com/conradkleinespel/rpassword/commit/7c30111dda0242967bd5ac494fbf3089d3d74dc6">https://github.com/conradkleinespel/rpassword/commit/7c30111dda0242967bd5ac494fbf3089d3d74dc6</a>)
will be included in the next release.</p>
<p>No functionality changes in this release. It is backwards
compatible.</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/conradkleinespel/rpassword/commit/2d9873eb198dd49dafef2e3263a035ac3614982c"><code>2d9873e</code></a>
release v7.5.0</li>
<li><a
href="https://github.com/conradkleinespel/rpassword/commit/e67e3b45673e51e7155d80970d2e4c80152324dc"><code>e67e3b4</code></a>
removes commented out code</li>
<li><a
href="https://github.com/conradkleinespel/rpassword/commit/fdde958f1c4753ebc22509b73da9156952c86e33"><code>fdde958</code></a>
remove .idea from .gitignore</li>
<li><a
href="https://github.com/conradkleinespel/rpassword/commit/d531c5992a5303fe418e95959a70459fb286c6b9"><code>d531c59</code></a>
allow reading from any Read and writing to any Write</li>
<li><a
href="https://github.com/conradkleinespel/rpassword/commit/205dfb2eb76d8b460f210a4541374a495a1974fa"><code>205dfb2</code></a>
differentiate Input and Output targets</li>
<li><a
href="https://github.com/conradkleinespel/rpassword/commit/6aa333a6513f3efa4b461659974a06426363447d"><code>6aa333a</code></a>
make PasswordFeedback internal though ConfigBuilder</li>
<li><a
href="https://github.com/conradkleinespel/rpassword/commit/aadeef20d93b5cc7dc20823c35b697caa5201d46"><code>aadeef2</code></a>
allow more flexible input/output</li>
<li><a
href="https://github.com/conradkleinespel/rpassword/commit/ff7be55fc47280cacd49f86dd188614157c03f77"><code>ff7be55</code></a>
add support for Ctrl-W</li>
<li><a
href="https://github.com/conradkleinespel/rpassword/commit/c56fefad218ec00d5309e8ec1d2a52ef31f86693"><code>c56fefa</code></a>
format rust files with cargo fmt</li>
<li><a
href="https://github.com/conradkleinespel/rpassword/commit/c6f4f19528553302a6d08f26d0f1daf8a9b94386"><code>c6f4f19</code></a>
handle character encodings more reliably</li>
<li>Additional commits viewable in <a
href="https://github.com/conradkleinespel/rpassword/compare/v7.3.1...v7.5.0">compare
view</a></li>
</ul>
</details>
<br />
[](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 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)
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/dyc3/steamguard-cli/network/alerts).
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>1 parent 7b67c41 commit 3f4bb8e
2 files changed
Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
31 | 31 | | |
32 | 32 | | |
33 | 33 | | |
34 | | - | |
| 34 | + | |
35 | 35 | | |
36 | 36 | | |
37 | 37 | | |
| |||
0 commit comments