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

   Bumps [insta](https://github.com/mitsuhiko/insta) from 1.42.2 to 1.43.1.
   <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.43.1</h2>
   <h2>Release Notes</h2>
   <p>This release in identical in rust code to 1.43.0, but reruns the GitHub 
Actions
   workflows, which failed to create a release within GitHub for 1.43.0.</p>
   <h2>Install cargo-insta 1.43.1</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.43.1/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.43.1/cargo-insta-installer.ps1
 | iex&quot;
   </code></pre>
   <h2>Download cargo-insta 1.43.1</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.43.1/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.43.1/cargo-insta-aarch64-apple-darwin.tar.xz.sha256";>checksum</a></td>
   </tr>
   <tr>
   <td><a 
href="https://github.com/mitsuhiko/insta/releases/download/1.43.1/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.43.1/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.43.1/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.43.1/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.43.1/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.43.1/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.43.1/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.43.1/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.43.1</h2>
   <p>This release in identical in rust code to 1.43.0, but reruns the GitHub 
Actions
   workflows, which failed to create a release within GitHub for 1.43.0.</p>
   <h2>1.43.0</h2>
   <ul>
   <li>Add uppercase keyboard shortcuts for bulk operations in <code>cargo 
insta review</code>:
   <code>A</code> to accept all, <code>R</code> to reject all, and 
<code>S</code> to skip all remaining snapshots.
   <a 
href="https://redirect.github.com/mitsuhiko/insta/issues/745";>#745</a></li>
   <li><code>--unreferenced=auto</code> (or other relevant values) no longer 
cleans up pending
   snapshots. A bug where <code>cargo insta test --unreferenced=auto</code> 
would
   incorrectly pass on new pending snapshots has been fixed.</li>
   <li>Support specifying <code>cargo-nextest</code> bin with 
<code>INSTA_CARGO_NEXTEST_BIN</code>.  <a 
href="https://redirect.github.com/mitsuhiko/insta/issues/721";>#721</a> (Louis 
Fruleux)</li>
   <li>Allow setting <code>INSTA_WORKSPACE_ROOT</code> at compile time. This is 
useful for reproducible binaries
   so they don't contain references to <code>CARGO_MANIFEST_DIR</code>. <a 
href="https://redirect.github.com/mitsuhiko/insta/issues/726";>#726</a> (Pascal 
Bach)</li>
   <li>Qualify all references in macros to avoid name clashes. <a 
href="https://redirect.github.com/mitsuhiko/insta/issues/729";>#729</a> (Austin 
Schey)</li>
   <li>Remove <code>linked-hash-map</code> and <code>pin-project</code> 
dependencies.  <a 
href="https://redirect.github.com/mitsuhiko/insta/issues/742";>#742</a>, <a 
href="https://redirect.github.com/mitsuhiko/insta/issues/741";>#741</a>, <a 
href="https://redirect.github.com/mitsuhiko/insta/issues/738";>#738</a></li>
   <li><code>cargo insta review</code> fails with a helpful error message when 
run in a non-TTY environment.</li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/mitsuhiko/insta/commit/82c62242a6764855046a8874a42c6a4a00f221ad";><code>82c6224</code></a>
 Update runners for <code>dist</code> on musl (<a 
href="https://redirect.github.com/mitsuhiko/insta/issues/769";>#769</a>)</li>
   <li><a 
href="https://github.com/mitsuhiko/insta/commit/c055282a553970d33f15c2bf30fe15f10b9bc45c";><code>c055282</code></a>
 Bump versions to 1.43.1 (<a 
href="https://redirect.github.com/mitsuhiko/insta/issues/767";>#767</a>)</li>
   <li><a 
href="https://github.com/mitsuhiko/insta/commit/7335b554dee869b70edafd84c3b8e237018cc687";><code>7335b55</code></a>
 Update runners for <code>dist</code> (<a 
href="https://redirect.github.com/mitsuhiko/insta/issues/768";>#768</a>)</li>
   <li><a 
href="https://github.com/mitsuhiko/insta/commit/34196da9ee1a33df6d9e0a57a47c5692e3c5de8f";><code>34196da</code></a>
 bump version to 1.43.0 (<a 
href="https://redirect.github.com/mitsuhiko/insta/issues/763";>#763</a>)</li>
   <li><a 
href="https://github.com/mitsuhiko/insta/commit/fd8ec9fc99cd3af71824f1faa4ea7ba863ab6af8";><code>fd8ec9f</code></a>
 fix <code>--unreferenced=auto</code> clearing new pending snapshots (<a 
href="https://redirect.github.com/mitsuhiko/insta/issues/762";>#762</a>)</li>
   <li><a 
href="https://github.com/mitsuhiko/insta/commit/f78195804ce364c16583e8016595207659f646bf";><code>f781958</code></a>
 Rename process_snapshots function to review_snapshots for clarity (<a 
href="https://redirect.github.com/mitsuhiko/insta/issues/761";>#761</a>)</li>
   <li><a 
href="https://github.com/mitsuhiko/insta/commit/93b12c60f9fac1e9ad6115deb04272f520b89ad8";><code>93b12c6</code></a>
 Add pre-commit hook for Rust code formatting (<a 
href="https://redirect.github.com/mitsuhiko/insta/issues/760";>#760</a>)</li>
   <li><a 
href="https://github.com/mitsuhiko/insta/commit/e91a7acb2c41e7e35fda1ce18612d9fa3ef90a83";><code>e91a7ac</code></a>
 fix <code>unreferenced</code> not being read from config file (<a 
href="https://redirect.github.com/mitsuhiko/insta/issues/759";>#759</a>)</li>
   <li><a 
href="https://github.com/mitsuhiko/insta/commit/7aa23e015abc0ffee35c9eba19f2a0cce3e45e85";><code>7aa23e0</code></a>
 small simplification of macros (<a 
href="https://redirect.github.com/mitsuhiko/insta/issues/758";>#758</a>)</li>
   <li><a 
href="https://github.com/mitsuhiko/insta/commit/2c30a7ff3f7dcc1e2a3fc14c9ee9e5de9b7f179a";><code>2c30a7f</code></a>
 Run with <code>--force-update-snapshots</code> (<a 
href="https://redirect.github.com/mitsuhiko/insta/issues/749";>#749</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/mitsuhiko/insta/compare/1.42.2...1.43.1";>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.42.2&new-version=1.43.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 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: github-unsubscr...@datafusion.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org
For additional commands, e-mail: github-h...@datafusion.apache.org

Reply via email to