dependabot[bot] opened a new pull request, #1351:
URL: https://github.com/apache/iceberg-rust/pull/1351

   Bumps [tempfile](https://github.com/Stebalien/tempfile) from 3.19.0 to 
3.20.0.
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md";>tempfile's
 changelog</a>.</em></p>
   <blockquote>
   <h2>3.20.0</h2>
   <p>This release mostly unifies the behavior/capabilities around 
&quot;keeping&quot; temporary files:</p>
   <ul>
   <li>Rename <code>Builder::keep(bool)</code> (via deprecation) to 
<code>Builder::disable_cleanup(bool)</code> to make it clear that behaves 
differently from <code>NamedTempFile::keep()</code>. The former disables 
automatic cleanup while the latter <em>consumes</em> the 
<code>NamedTempFile</code> object entirely and unsets the &quot;temporary 
file&quot; attribute (on Windows).</li>
   <li>Rename <code>TempDir::into_path</code> (via deprecation) to 
<code>TempDir::keep</code> to mirror <code>NamedTempFile::keep</code>.</li>
   <li>Add <code>TempDir::disable_cleanup</code>, 
<code>NamedTempFile::disable_cleanup</code>, and 
<code>TempPath::disable_cleanup</code> making it possible to disable automatic 
cleanup in-place <em>after</em> creating a temporary file/directory (equivalent 
to calling <code>Builder::disable_cleanup</code> before creating the 
file/directory).</li>
   </ul>
   <p>Additionally, it adds a few spooled temporary file features:</p>
   <ul>
   <li>Add <code>SpooledTempFile::into_file</code> for turning a 
<code>SpooledTempFile</code> into a regular unnamed temporary file, writing it 
to the backing storage (&quot;rolling&quot; it) if it was still stored 
in-memory.</li>
   <li>Add <code>spooled_tempfile_in</code> and 
<code>SpooledTempFile::new_in</code> methods for creating spooled temporary 
files in a specific directory. This makes it possible to choose the backing 
device for your spooled temporary file which is rather important on Linux where 
the default temporary directory is likely backed by memory (defeating the 
entire point of having a spooled temporary file).</li>
   </ul>
   <p>Finally, this release improves documentation, especially the top-level 
documentation explaining which temporary file type to use.</p>
   <p><strong>BREAKING</strong> for those with <code>deny(warnings)</code>:</p>
   <ul>
   <li><code>Builder::keep</code> deprecated in favor of 
<code>Builder::disable_cleanup</code>.</li>
   <li><code>TempDir::into_path</code> is deprecated in favor of 
<code>TempDir::keep</code>.</li>
   </ul>
   <p><strong>BREAKING</strong>:</p>
   <h2>3.19.1</h2>
   <ul>
   <li>Don't unlink temporary files immediately on Windows (fixes <a 
href="https://redirect.github.com/Stebalien/tempfile/issues/339";>#339</a>). 
Unfortunately, this seemed to corrupt the file object (possibly a Windows 
kernel bug) in rare cases and isn't strictly speaking necessary.</li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/Stebalien/tempfile/commit/99ffea61ade621161db326b6745c7b36a90ddbd0";><code>99ffea6</code></a>
 chore: release v3.20.0 (<a 
href="https://redirect.github.com/Stebalien/tempfile/issues/358";>#358</a>)</li>
   <li><a 
href="https://github.com/Stebalien/tempfile/commit/bd2b2674423ae6598070fab30e6627810ac282a9";><code>bd2b267</code></a>
 feat: make it possible to disable cleanup in-place after creation (<a 
href="https://redirect.github.com/Stebalien/tempfile/issues/355";>#355</a>)</li>
   <li><a 
href="https://github.com/Stebalien/tempfile/commit/3b30099abd7585a9b6600276f6dcdfa557e88f19";><code>3b30099</code></a>
 ci: really check docs for warnings (<a 
href="https://redirect.github.com/Stebalien/tempfile/issues/357";>#357</a>)</li>
   <li><a 
href="https://github.com/Stebalien/tempfile/commit/f701f5245624b8cfcd782dfd62fcfe86d35c173b";><code>f701f52</code></a>
 ci: check docs (<a 
href="https://redirect.github.com/Stebalien/tempfile/issues/356";>#356</a>)</li>
   <li><a 
href="https://github.com/Stebalien/tempfile/commit/d34afe99fd93bb13253128cc58dfc4032edfa5a5";><code>d34afe9</code></a>
 doc: improve SpooledData documentation</li>
   <li><a 
href="https://github.com/Stebalien/tempfile/commit/6deb42e04ceb2f2c306510b1605d9548e77868e5";><code>6deb42e</code></a>
 doc: make it easier to pick the correct tempfile constructor/type</li>
   <li><a 
href="https://github.com/Stebalien/tempfile/commit/e284782c6c1c2f565af2ab9b5c0be9f9c5ed3607";><code>e284782</code></a>
 feat: allow creating spooled temporary files in a specific directory (<a 
href="https://redirect.github.com/Stebalien/tempfile/issues/353";>#353</a>)</li>
   <li><a 
href="https://github.com/Stebalien/tempfile/commit/07edc310a5c8725346cd2bb2a5d065ff298f4fa0";><code>07edc31</code></a>
 feat: implement <code>SpooledTempFile::into_file</code> (<a 
href="https://redirect.github.com/Stebalien/tempfile/issues/352";>#352</a>)</li>
   <li><a 
href="https://github.com/Stebalien/tempfile/commit/b1223553bb888e35bab7675fbac235e4be6eaf7e";><code>b122355</code></a>
 fix: add must_use attribute to TempDir::keep (<a 
href="https://redirect.github.com/Stebalien/tempfile/issues/351";>#351</a>)</li>
   <li><a 
href="https://github.com/Stebalien/tempfile/commit/cbd1e976e106d4a12432e124494f735bf40eafe2";><code>cbd1e97</code></a>
 feat: rename <code>TempDir::into_path</code> to <code>TempDir::keep</code> (<a 
href="https://redirect.github.com/Stebalien/tempfile/issues/349";>#349</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/Stebalien/tempfile/compare/v3.19.0...v3.20.0";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tempfile&package-manager=cargo&previous-version=3.19.0&new-version=3.20.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: issues-unsubscr...@iceberg.apache.org

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


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

Reply via email to