Skip to content

Commit

Permalink
chore(deps): Bump the all-cargo-version-updates group with 2 updates (#…
Browse files Browse the repository at this point in the history
…1643)

Bumps the all-cargo-version-updates group with 2 updates:
[insta](https://github.com/mitsuhiko/insta) and
[moka](https://github.com/moka-rs/moka).

Updates `insta` from 1.41.1 to 1.42.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/mitsuhiko/insta/releases">insta's
releases</a>.</em></p>
<blockquote>
<h2>1.42.0</h2>
<h2>Release Notes</h2>
<ul>
<li>Text snapshots no longer contain <code>snapshot_type: text</code> in
their metadata. For context, we originally added this in the prior
release (1.41.0) to support binary snapshots, but some folks disliked
the diff noise on any snapshot changes, and the maintainers' weighted
votes favored reverting. I apologize that this will cause some
additional churn for those who used <code>cargo test
--force-update-snapshots</code> to update their snapshots to the 1.41
format; running this again with 1.42 will remove those metadata entries.
To confirm: this doesn't affect whether snapshot tests pass or fail —
the worst impact is some additional diffs in metadata. <a
href="https://redirect.github.com/mitsuhiko/insta/issues/690">#690</a></li>
<li>Pending snapshots are no longer removed throughout the workspace by
<code>cargo-insta</code> before running tests. Instead, running a test
will overwrite or remove its own pending snapshot. To remove all pending
snapshots, use <code>cargo insta reject</code> or run tests with
<code>--unreferenced=delete</code>. <a
href="https://redirect.github.com/mitsuhiko/insta/issues/651">#651</a></li>
<li><code>insta::internals::SettingsBindDropGuard</code> (returned from
<code>Settings::bind_to_scope</code>) no longer implements
<code>Send</code>. This was incorrect and any tests relying on this
behavior where not working properly. Fixes <a
href="https://redirect.github.com/mitsuhiko/insta/issues/694">#694</a>
in <a
href="https://redirect.github.com/mitsuhiko/insta/issues/695">#695</a>
by <a
href="https://github.com/jalil-salame"><code>@​jalil-salame</code></a></li>
</ul>
<h2>Install cargo-insta 1.42.0</h2>
<h3>Install prebuilt binaries via shell script</h3>
<pre lang="sh"><code>curl --proto '=https' --tlsv1.2 -LsSf
https://github.com/mitsuhiko/insta/releases/download/1.42.0/cargo-insta-installer.sh
| sh
</code></pre>
<h3>Install prebuilt binaries via powershell script</h3>
<pre lang="sh"><code>powershell -ExecutionPolicy ByPass -c &quot;irm
https://github.com/mitsuhiko/insta/releases/download/1.42.0/cargo-insta-installer.ps1
| iex&quot;
</code></pre>
<h2>Download cargo-insta 1.42.0</h2>
<table>
<thead>
<tr>
<th>File</th>
<th>Platform</th>
<th>Checksum</th>
</tr>
</thead>
<tbody>
<tr>
<td><a
href="https://github.com/mitsuhiko/insta/releases/download/1.42.0/cargo-insta-aarch64-apple-darwin.tar.xz">cargo-insta-aarch64-apple-darwin.tar.xz</a></td>
<td>Apple Silicon macOS</td>
<td><a
href="https://github.com/mitsuhiko/insta/releases/download/1.42.0/cargo-insta-aarch64-apple-darwin.tar.xz.sha256">checksum</a></td>
</tr>
<tr>
<td><a
href="https://github.com/mitsuhiko/insta/releases/download/1.42.0/cargo-insta-x86_64-apple-darwin.tar.xz">cargo-insta-x86_64-apple-darwin.tar.xz</a></td>
<td>Intel macOS</td>
<td><a
href="https://github.com/mitsuhiko/insta/releases/download/1.42.0/cargo-insta-x86_64-apple-darwin.tar.xz.sha256">checksum</a></td>
</tr>
<tr>
<td><a
href="https://github.com/mitsuhiko/insta/releases/download/1.42.0/cargo-insta-x86_64-pc-windows-msvc.zip">cargo-insta-x86_64-pc-windows-msvc.zip</a></td>
<td>x64 Windows</td>
<td><a
href="https://github.com/mitsuhiko/insta/releases/download/1.42.0/cargo-insta-x86_64-pc-windows-msvc.zip.sha256">checksum</a></td>
</tr>
<tr>
<td><a
href="https://github.com/mitsuhiko/insta/releases/download/1.42.0/cargo-insta-x86_64-unknown-linux-gnu.tar.xz">cargo-insta-x86_64-unknown-linux-gnu.tar.xz</a></td>
<td>x64 Linux</td>
<td><a
href="https://github.com/mitsuhiko/insta/releases/download/1.42.0/cargo-insta-x86_64-unknown-linux-gnu.tar.xz.sha256">checksum</a></td>
</tr>
<tr>
<td><a
href="https://github.com/mitsuhiko/insta/releases/download/1.42.0/cargo-insta-x86_64-unknown-linux-musl.tar.xz">cargo-insta-x86_64-unknown-linux-musl.tar.xz</a></td>
<td>x64 MUSL Linux</td>
<td><a
href="https://github.com/mitsuhiko/insta/releases/download/1.42.0/cargo-insta-x86_64-unknown-linux-musl.tar.xz.sha256">checksum</a></td>
</tr>
</tbody>
</table>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/mitsuhiko/insta/blob/master/CHANGELOG.md">insta's
changelog</a>.</em></p>
<blockquote>
<h2>1.42.0</h2>
<ul>
<li>Text snapshots no longer contain <code>snapshot_type: text</code> in
their metadata. For
context, we originally added this in the prior release (1.41.0) to
support
binary snapshots, but some folks disliked the diff noise on any snapshot
changes, and the maintainers' weighted votes favored reverting. I
apologize
that this will cause some additional churn for those who used
<code>cargo test --force-update-snapshots</code> to update their
snapshots to the 1.41 format;
running this again with 1.42 will remove those metadata entries. To
confirm:
this doesn't affect whether snapshot tests pass or fail — the worst
impact is
some additional diffs in metadata. <a
href="https://redirect.github.com/mitsuhiko/insta/issues/690">#690</a></li>
<li>Pending snapshots are no longer removed throughout the workspace by
<code>cargo-insta</code> before running tests. Instead, running a test
will overwrite or
remove its own pending snapshot. To remove all pending snapshots, use
<code>cargo insta reject</code> or run tests with
<code>--unreferenced=delete</code>. <a
href="https://redirect.github.com/mitsuhiko/insta/issues/651">#651</a></li>
<li><code>insta::internals::SettingsBindDropGuard</code> (returned from
<code>Settings::bind_to_scope</code>) no longer implements
<code>Send</code>. This was incorrect and
any tests relying on this behavior where not working properly. Fixes <a
href="https://redirect.github.com/mitsuhiko/insta/issues/694">#694</a>
in
<a
href="https://redirect.github.com/mitsuhiko/insta/issues/695">#695</a>
by <a
href="https://github.com/jalil-salame"><code>@​jalil-salame</code></a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/mitsuhiko/insta/commit/c20f566d29d6ca1b1b5a852066b0d5ef5ab36ce5"><code>c20f566</code></a>
Bump version to 1.42.0 (<a
href="https://redirect.github.com/mitsuhiko/insta/issues/703">#703</a>)</li>
<li><a
href="https://github.com/mitsuhiko/insta/commit/aca7fe4d040b412686e6952d834576a16417bd90"><code>aca7fe4</code></a>
Update changelog for 1.42; add <code>snapshot_kind</code> explanation
(<a
href="https://redirect.github.com/mitsuhiko/insta/issues/702">#702</a>)</li>
<li><a
href="https://github.com/mitsuhiko/insta/commit/3f1e9a1e26a78808e17afb85d9f034a226e9b470"><code>3f1e9a1</code></a>
Fix clippy error &amp; run <code>--all-features</code> in CI (<a
href="https://redirect.github.com/mitsuhiko/insta/issues/701">#701</a>)</li>
<li><a
href="https://github.com/mitsuhiko/insta/commit/f750c5b62ba61459758a930ea9bd00affba8bd09"><code>f750c5b</code></a>
Update <code>dist</code> config (<a
href="https://redirect.github.com/mitsuhiko/insta/issues/700">#700</a>)</li>
<li><a
href="https://github.com/mitsuhiko/insta/commit/60638c2902886498a6dc28f3b4ca8ca7d93a9947"><code>60638c2</code></a>
Defer to <code>cargo metadata</code> to evaluate the workspace root (<a
href="https://redirect.github.com/mitsuhiko/insta/issues/660">#660</a>)</li>
<li><a
href="https://github.com/mitsuhiko/insta/commit/1d9ddeaf3b8fda5e0c3417072b23b59e9d976603"><code>1d9ddea</code></a>
Don't clear unrelated pending snapshots (<a
href="https://redirect.github.com/mitsuhiko/insta/issues/651">#651</a>)</li>
<li><a
href="https://github.com/mitsuhiko/insta/commit/966746a1f800fe3d07fc8ae8645b159a242ce398"><code>966746a</code></a>
Replace <code>lazy_static</code> with <code>once_cell</code> (<a
href="https://redirect.github.com/mitsuhiko/insta/issues/698">#698</a>)</li>
<li><a
href="https://github.com/mitsuhiko/insta/commit/0caaaca2cbe8f17fafab30c402b5475358fe5f67"><code>0caaaca</code></a>
fix(settings): mark drop guard as !Send (<a
href="https://redirect.github.com/mitsuhiko/insta/issues/695">#695</a>)</li>
<li><a
href="https://github.com/mitsuhiko/insta/commit/02837742793bd797c94b05c5415fd3e558978683"><code>0283774</code></a>
Don't add <code>snapshot_kind: text</code> to snapshots (<a
href="https://redirect.github.com/mitsuhiko/insta/issues/690">#690</a>)</li>
<li><a
href="https://github.com/mitsuhiko/insta/commit/f2783e5339eb22bb87086154de2f870cc69fd74a"><code>f2783e5</code></a>
Fix warning, make them errors in CI (<a
href="https://redirect.github.com/mitsuhiko/insta/issues/693">#693</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/mitsuhiko/insta/compare/1.41.1...1.42.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `moka` from 0.12.9 to 0.12.10
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/moka-rs/moka/blob/main/CHANGELOG.md">moka's
changelog</a>.</em></p>
<blockquote>
<h2>Version 0.12.10</h2>
<h3>Changed</h3>
<ul>
<li>Disable the <code>quanta</code> feature by default. (<a
href="https://redirect.github.com/moka-rs/moka/issues/482">#482</a>[gh-pull-0482])</li>
<li>Replaced most uses of <code>quanta::Instant</code> with
<code>std::time::Instant</code> to increase the
accuracy of time measurements (<a
href="https://redirect.github.com/moka-rs/moka/issues/481">#481</a>[gh-pull-0481]):
<ul>
<li>When <code>quanta</code> feature is enabled,
<code>quanta::Instant</code> is used for some
performance critical parts in the cache, and
<code>std::time::Instant</code> is used for
the rest of the parts.</li>
<li>However, as of this version, enabling the <code>quanta</code>
feature will not make any
noticeable difference in the performance.</li>
<li>When <code>quanta</code> feature is disabled (default),
<code>std::time::Instant</code> is used for
all time measurements.</li>
</ul>
</li>
<li>Switched to <code>AtomicU64</code> of the
<code>portable-atomic</code> crate, which provides fallback
implementations for platforms where <code>std</code>
<code>AtomicU64</code> is not available
(<a
href="https://redirect.github.com/moka-rs/moka/issues/480">#480</a>[gh-pull-0480]):
<ul>
<li><code>moka</code>'s <code>atomic64</code> feature no longer has any
effect on the build as
<code>AtomicU64</code> is now always available on all platforms. But we
keep the
<code>atomic64</code> feature in <code>Cargo.toml</code> for backward
compatibility.</li>
</ul>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/moka-rs/moka/commit/de0b2d6092b3ee6beb4286ccb370ab0d46df7168"><code>de0b2d6</code></a>
Merge pull request <a
href="https://redirect.github.com/moka-rs/moka/issues/483">#483</a> from
moka-rs/prepare-v0-12-10</li>
<li><a
href="https://github.com/moka-rs/moka/commit/c7aec0997f3d00dcf35c852cc61b336d5c598ca3"><code>c7aec09</code></a>
Update the README; remove a broken link to the troubleshooting
section</li>
<li><a
href="https://github.com/moka-rs/moka/commit/101e3a9257065e40197e65f93fc3b80159408d74"><code>101e3a9</code></a>
Merge pull request <a
href="https://redirect.github.com/moka-rs/moka/issues/482">#482</a> from
moka-rs/disable-quanta-by-default</li>
<li><a
href="https://github.com/moka-rs/moka/commit/9764df59a81ea366a4b9f22c254b82ce0daec0a7"><code>9764df5</code></a>
Merge pull request <a
href="https://redirect.github.com/moka-rs/moka/issues/481">#481</a> from
moka-rs/increase-time-accuracy</li>
<li><a
href="https://github.com/moka-rs/moka/commit/5d03e029324e0baad4344c17ff7ed78614c64a02"><code>5d03e02</code></a>
Minor tweaks in the clock module</li>
<li><a
href="https://github.com/moka-rs/moka/commit/5dbd7abf550a2701efeda5e9d7e1410cf222301f"><code>5dbd7ab</code></a>
Merge pull request <a
href="https://redirect.github.com/moka-rs/moka/issues/480">#480</a> from
moka-rs/portable-atomic</li>
<li><a
href="https://github.com/moka-rs/moka/commit/f7d2d296477f2baaf25318fff516bdc3439c32c6"><code>f7d2d29</code></a>
Update the change log</li>
<li><a
href="https://github.com/moka-rs/moka/commit/0a6b6a45996256329884c4223e302de16d183bbd"><code>0a6b6a4</code></a>
Disable the <code>quanta</code> feature by default</li>
<li><a
href="https://github.com/moka-rs/moka/commit/d22f4f3bf71c664728507d8c5764f128fa96bb0b"><code>d22f4f3</code></a>
Update the change log</li>
<li><a
href="https://github.com/moka-rs/moka/commit/668bdc01e1e143c2f111e99826bf1dd862dc920f"><code>668bdc0</code></a>
Remove commented out codes</li>
<li>Additional commits viewable in <a
href="https://github.com/moka-rs/moka/compare/v0.12.9...v0.12.10">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 <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Jan 6, 2025
1 parent 1540791 commit 916ce51
Showing 1 changed file with 18 additions and 36 deletions.
54 changes: 18 additions & 36 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 916ce51

Please sign in to comment.