Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(deps): bump zip from 1.2.3 to 1.3.0 in /userspace/ksud (tiann#1738
) Bumps [zip](https://github.com/zip-rs/zip2) from 1.2.3 to 1.3.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/zip-rs/zip2/releases">zip's releases</a>.</em></p> <blockquote> <h2>v1.3.0</h2> <h3><!-- raw HTML omitted -->🚀 Features</h3> <ul> <li>Add <code>is_symlink</code> method</li> </ul> <h3><!-- raw HTML omitted -->🐛 Bug Fixes</h3> <ul> <li>Extract symlinks into symlinks on Unix and Windows, and fix a bug that affected making directories writable on MacOS</li> </ul> <h3><!-- raw HTML omitted -->🚜 Refactor</h3> <ul> <li>Eliminate deprecation warning when <code>--all-features</code> implicitly enables the deprecated feature</li> <li>Check if archive contains a symlink's target, without borrowing both at the same time</li> <li>Eliminate a clone that's no longer necessary</li> <li>is_dir only needs to look at the filename</li> <li>Remove unnecessary #[cfg] attributes</li> </ul> <h3><!-- raw HTML omitted -->⚙️ Miscellaneous Tasks</h3> <ul> <li>Fix borrow-of-moved-value</li> <li>Box<!-- raw HTML omitted --> doesn't directly convert to PathBuf, so convert back to String first</li> <li>partial revert - only &str has chars(), but Box<!-- raw HTML omitted --> should auto-deref</li> <li>contains_key needs a <code>Box<str></code>, so generify <code>is_dir</code> to accept one</li> <li>Add missing <code>ZipFileData::is_dir()</code> method</li> <li>Fix another Windows-specific error</li> <li>More bug fixes for Windows-specific symlink code</li> <li>More bug fixes for Windows-specific symlink code</li> <li>Bug fix: variable name change</li> <li>Bug fix: need both internal and output path to determine whether to symlink_dir</li> <li>Another bug fix</li> <li>Fix another error-type conversion error</li> <li>Fix error-type conversion on Windows</li> <li>Fix conditionally-unused import</li> <li>Fix continued issues, and factor out the Vec<!-- raw HTML omitted -->-to-OsString conversion (cc: <a href="https://redirect.github.com/zip-rs/zip2/pull/125">#125</a>)</li> <li>Fix CI failure involving conversion to OsString for symlinks (see my comments on <a href="https://redirect.github.com/zip-rs/zip2/pull/125">#125</a>)</li> <li>Move path join into platform-independent code</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md">zip's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/zip-rs/zip2/compare/v1.2.3...v1.3.0">1.3.0</a> - 2024-05-17</h2> <h3><!-- raw HTML omitted -->🚀 Features</h3> <ul> <li>Add <code>is_symlink</code> method</li> </ul> <h3><!-- raw HTML omitted -->🐛 Bug Fixes</h3> <ul> <li>Extract symlinks into symlinks on Unix and Windows, and fix a bug that affected making directories writable on MacOS</li> </ul> <h3><!-- raw HTML omitted -->🚜 Refactor</h3> <ul> <li>Eliminate deprecation warning when <code>--all-features</code> implicitly enables the deprecated feature</li> <li>Check if archive contains a symlink's target, without borrowing both at the same time</li> <li>Eliminate a clone that's no longer necessary</li> <li>is_dir only needs to look at the filename</li> <li>Remove unnecessary #[cfg] attributes</li> </ul> <h3><!-- raw HTML omitted -->⚙️ Miscellaneous Tasks</h3> <ul> <li>Fix borrow-of-moved-value</li> <li>Box<!-- raw HTML omitted --> doesn't directly convert to PathBuf, so convert back to String first</li> <li>partial revert - only &str has chars(), but Box<!-- raw HTML omitted --> should auto-deref</li> <li>contains_key needs a <code>Box<str></code>, so generify <code>is_dir</code> to accept one</li> <li>Add missing <code>ZipFileData::is_dir()</code> method</li> <li>Fix another Windows-specific error</li> <li>More bug fixes for Windows-specific symlink code</li> <li>More bug fixes for Windows-specific symlink code</li> <li>Bug fix: variable name change</li> <li>Bug fix: need both internal and output path to determine whether to symlink_dir</li> <li>Another bug fix</li> <li>Fix another error-type conversion error</li> <li>Fix error-type conversion on Windows</li> <li>Fix conditionally-unused import</li> <li>Fix continued issues, and factor out the Vec<!-- raw HTML omitted -->-to-OsString conversion (cc: <a href="https://redirect.github.com/zip-rs/zip2/pull/125">#125</a>)</li> <li>Fix CI failure involving conversion to OsString for symlinks (see my comments on <a href="https://redirect.github.com/zip-rs/zip2/pull/125">#125</a>)</li> <li>Move path join into platform-independent code</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/zip-rs/zip2/commit/102e31113daa5e9553db14c985b1db3f519174a8"><code>102e311</code></a> Merge pull request <a href="https://redirect.github.com/zip-rs/zip2/issues/131">#131</a> from zip-rs/release-plz-2024-05-15T23-52-34Z</li> <li><a href="https://github.com/zip-rs/zip2/commit/461fb58a0257689204ed6b314b4c3d48239b8fc0"><code>461fb58</code></a> chore: release</li> <li><a href="https://github.com/zip-rs/zip2/commit/a8b2855910da393a147b634dffe3127e39360897"><code>a8b2855</code></a> ci: Auto-merge PRs from within repo even if I'm the triggering actor</li> <li><a href="https://github.com/zip-rs/zip2/commit/6fa4486089eff50d3dc6fdf77fe73d55c8087475"><code>6fa4486</code></a> Enable attestation of release builds</li> <li><a href="https://github.com/zip-rs/zip2/commit/3e81fddb78e2faa1f7a6caacfc03ef1879092feb"><code>3e81fdd</code></a> style: cargo fmt --all</li> <li><a href="https://github.com/zip-rs/zip2/commit/1cb0e1b3b7812182f4ac44750ee37353386ef48c"><code>1cb0e1b</code></a> refactor: Eliminate deprecation warning when <code>--all-features</code> implicitly enab...</li> <li><a href="https://github.com/zip-rs/zip2/commit/fbf111ef9714a91edf4fed8d80c0b63748b80d63"><code>fbf111e</code></a> style: cargo fmt --all</li> <li><a href="https://github.com/zip-rs/zip2/commit/3e06f6433afdc485fbbf4e46f79070ade5996e63"><code>3e06f64</code></a> chore: Fix borrow-of-moved-value</li> <li><a href="https://github.com/zip-rs/zip2/commit/633a6733e6ebb19de9745d6679935c2b168821d0"><code>633a673</code></a> refactor: Check if archive contains a symlink's target, without borrowing bot...</li> <li><a href="https://github.com/zip-rs/zip2/commit/17fee7938a33aebaab84f21f12a7551c2576bb48"><code>17fee79</code></a> refactor: Eliminate a clone that's no longer necessary</li> <li>Additional commits viewable in <a href="https://github.com/zip-rs/zip2/compare/v1.2.3...v1.3.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=zip&package-manager=cargo&previous-version=1.2.3&new-version=1.3.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> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information