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

   Bumps [insta](https://github.com/mitsuhiko/insta) from 1.44.3 to 1.45.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.45.0</h2>
   <h2>Release Notes</h2>
   <ul>
   <li>Add external diff tool support via <code>INSTA_DIFF_TOOL</code> 
environment variable. When set, insta uses the specified tool (e.g., 
<code>delta</code>, <code>difftastic</code>) to display snapshot diffs instead 
of the built-in diff. The tool is invoked as <code>&lt;tool&gt; 
&lt;old_file&gt; &lt;new_file&gt;</code>. <a 
href="https://redirect.github.com/mitsuhiko/insta/issues/844";>#844</a></li>
   <li>Add <code>test.disable_nextest_doctest</code> config option to 
<code>insta.yaml</code>, allowing users to silence the nextest doctest warning 
via config instead of passing <code>--dnd</code> every time. <a 
href="https://redirect.github.com/mitsuhiko/insta/issues/842";>#842</a></li>
   <li>Skip non-insta snapshot files in unreferenced detection. Projects using 
both insta and other snapshot tools (like vitest or jest) can now use 
<code>--unreferenced=reject</code> without false positives on 
<code>.snap</code> files from other tools. <a 
href="https://redirect.github.com/mitsuhiko/insta/issues/846";>#846</a></li>
   <li>Collect warnings from tests for display after run. Ensures deprecation 
warnings are visible even when nextest suppresses stdout/stderr from passing 
tests. <a 
href="https://redirect.github.com/mitsuhiko/insta/issues/840";>#840</a></li>
   <li>Update TOML serialization to be up-to-date and backwards-compatible. <a 
href="https://redirect.github.com/mitsuhiko/insta/issues/834";>#834</a></li>
   <li>Support <code>clippy::needless_raw_strings</code> lint by only using raw 
strings when content contains backslashes or quotes. <a 
href="https://redirect.github.com/mitsuhiko/insta/issues/828";>#828</a></li>
   </ul>
   <h2>Install cargo-insta 1.45.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.45.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.45.0/cargo-insta-installer.ps1
 | iex&quot;
   </code></pre>
   <h2>Download cargo-insta 1.45.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.45.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.45.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.45.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.45.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.45.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.45.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.45.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.45.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.45.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.45.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.45.0</h2>
   <ul>
   <li>Add external diff tool support via <code>INSTA_DIFF_TOOL</code> 
environment variable. When set, insta uses the specified tool (e.g., 
<code>delta</code>, <code>difftastic</code>) to display snapshot diffs instead 
of the built-in diff. The tool is invoked as <code>&lt;tool&gt; 
&lt;old_file&gt; &lt;new_file&gt;</code>. <a 
href="https://redirect.github.com/mitsuhiko/insta/issues/844";>#844</a></li>
   <li>Add <code>test.disable_nextest_doctest</code> config option to 
<code>insta.yaml</code>, allowing users to silence the nextest doctest warning 
via config instead of passing <code>--dnd</code> every time. <a 
href="https://redirect.github.com/mitsuhiko/insta/issues/842";>#842</a></li>
   <li>Skip non-insta snapshot files in unreferenced detection. Projects using 
both insta and other snapshot tools (like vitest or jest) can now use 
<code>--unreferenced=reject</code> without false positives on 
<code>.snap</code> files from other tools. <a 
href="https://redirect.github.com/mitsuhiko/insta/issues/846";>#846</a></li>
   <li>Collect warnings from tests for display after run. Ensures deprecation 
warnings are visible even when nextest suppresses stdout/stderr from passing 
tests. <a 
href="https://redirect.github.com/mitsuhiko/insta/issues/840";>#840</a></li>
   <li>Update TOML serialization to be up-to-date and backwards-compatible. <a 
href="https://redirect.github.com/mitsuhiko/insta/issues/834";>#834</a></li>
   <li>Support <code>clippy::needless_raw_strings</code> lint by only using raw 
strings when content contains backslashes or quotes. <a 
href="https://redirect.github.com/mitsuhiko/insta/issues/828";>#828</a></li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/mitsuhiko/insta/commit/681a02612b2030e7fb39fe216dba0a1a9c5c46c9";><code>681a026</code></a>
 Release 1.45.0 (<a 
href="https://redirect.github.com/mitsuhiko/insta/issues/847";>#847</a>)</li>
   <li><a 
href="https://github.com/mitsuhiko/insta/commit/ad233cd21b1022559377072af5bc9b1e0e2fec4a";><code>ad233cd</code></a>
 Skip non-insta snapshot files in unreferenced detection (<a 
href="https://redirect.github.com/mitsuhiko/insta/issues/846";>#846</a>)</li>
   <li><a 
href="https://github.com/mitsuhiko/insta/commit/d8e8dfe7aa5cdc720239398648bc97f9eabb965c";><code>d8e8dfe</code></a>
 Collect warnings from tests for display after run (<a 
href="https://redirect.github.com/mitsuhiko/insta/issues/840";>#840</a>)</li>
   <li><a 
href="https://github.com/mitsuhiko/insta/commit/521812cb86d758d08b0e76051437df2337775d86";><code>521812c</code></a>
 Support clippy::needless_raw_strings lint (<a 
href="https://redirect.github.com/mitsuhiko/insta/issues/828";>#828</a>)</li>
   <li><a 
href="https://github.com/mitsuhiko/insta/commit/5822a95759c8b528bf0b64f997d312c523acc523";><code>5822a95</code></a>
 Add external diff tool support via INSTA_DIFF_TOOL (<a 
href="https://redirect.github.com/mitsuhiko/insta/issues/844";>#844</a>)</li>
   <li><a 
href="https://github.com/mitsuhiko/insta/commit/e50388f534145e353c435420e322bd6ac9cc8bf2";><code>e50388f</code></a>
 Add config file support for disable_nextest_doctest (<a 
href="https://redirect.github.com/mitsuhiko/insta/issues/842";>#842</a>)</li>
   <li><a 
href="https://github.com/mitsuhiko/insta/commit/5aadfe480601b77bfd27420a7553fd2480b67fed";><code>5aadfe4</code></a>
 Up-to-date, backwards-compatible TOML (<a 
href="https://redirect.github.com/mitsuhiko/insta/issues/834";>#834</a>)</li>
   <li>See full diff in <a 
href="https://github.com/mitsuhiko/insta/compare/1.44.3...1.45.0";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=insta&package-manager=cargo&previous-version=1.44.3&new-version=1.45.0)](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 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]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to