chore(deps): bump tar from 0.4.44 to 0.4.45 in /packages/desktop/src-tauri#8
Conversation
Bumps [tar](https://github.com/alexcrichton/tar-rs) from 0.4.44 to 0.4.45. - [Commits](alexcrichton/tar-rs@0.4.44...0.4.45) --- updated-dependencies: - dependency-name: tar dependency-version: 0.4.45 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com>
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, have a team admin enable autofix in the Cursor dashboard.
| dependencies = [ | ||
| "libc", | ||
| "windows-sys 0.61.2", | ||
| "windows-sys 0.45.0", |
There was a problem hiding this comment.
Unrelated windows-sys dependency downgrades in lockfile
Low Severity
This PR only intends to bump tar from 0.4.44 to 0.4.45, but the Cargo.lock includes eight unrelated windows-sys dependency downgrades (e.g., os_pipe from 0.61.2 to 0.45.0, rustix/errno/tempfile/winapi-util from 0.61.2 to 0.52.0). Since tar doesn't depend on windows-sys at all, these changes indicate the lockfile was fully regenerated rather than minimally updated. While technically valid (all version constraints are satisfied), this represents unnecessary dependency resolution drift in an otherwise scoped PR.


Bumps tar from 0.4.44 to 0.4.45.
Commits
096e3d1Bump to 0.4.45 (#443)17b1fd8archive: Prevent symlink-directory collision chmod attack (#442)de1a587archive: Unconditionally honor PAX size (#441)6071cbeci: Consolidate workflows (#439)ad1fde9build-sys: Promote unused_code to an errorc8cb250tests: Squash a warning638c495ci: Add xtask infra + reverse dependency testing (#435)32a9bbbtests: Add RandomReader to exercise partial-read resilience (#436)9c5df0bFix GNU long-name extension stream corruption on validation error (#434)88b1e3bFix docs typo in header.rs (#431)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 commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill 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 versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)You can disable automated security fix PRs for this repo from the Security Alerts page.
Note
Medium Risk
Lockfile-only dependency updates, but they change several
windows-sysversions which could affect Windows build/link behavior. Thetarbump includes archive extraction security-related fixes, so regressions should be checked in any code paths that read/extract tarballs.Overview
Updates the desktop Tauri app’s Rust lockfile to pull in
tar0.4.45(from0.4.44).As part of dependency resolution, multiple crates switch to older
windows-sysversions, so the effective Windows API bindings used at build time change even though no source code is modified.Written by Cursor Bugbot for commit 165dad9. This will update automatically on new commits. Configure here.