[PR #2177] chore(deps): Bump tar and @capacitor/cli #2013

Open
opened 2026-02-25 23:31:31 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/floccusaddon/floccus/pull/2177
Author: @dependabot[bot]
Created: 2/18/2026
Status: 🔄 Open

Base: developHead: dependabot/npm_and_yarn/multi-6f5fae528e


📝 Commits (1)

  • 6de0dc0 chore(deps): Bump tar and @capacitor/cli

📊 Changes

2 files changed (+64 additions, -93 deletions)

View changed files

📝 package-lock.json (+63 -92)
📝 package.json (+1 -1)

📄 Description

Bumps tar to 7.5.9 and updates ancestor dependency @capacitor/cli. These dependencies need to be updated together.

Updates tar from 6.2.1 to 7.5.9

Changelog

Sourced from tar's changelog.

Changelog

7.5

  • Added zstd compression support.
  • Consistent TOCTOU behavior in sync t.list
  • Only read from ustar block if not specified in Pax
  • Fix sync tar.list when file size reduces while reading
  • Sanitize absolute linkpaths properly
  • Prevent writing hardlink entries to the archive ahead of their file target

7.4

  • Deprecate onentry in favor of onReadEntry for clarity.

7.3

  • Add onWriteEntry option

7.2

  • DRY the command definitions into a single makeCommand method, and update the type signatures to more appropriately infer the return type from the options and arguments provided.

7.1

  • Update minipass to v7.1.0
  • Update the type definitions of write() and end() methods on Unpack and Parser classes to be compatible with the NodeJS.WritableStream type in the latest versions of @types/node.

7.0

  • Drop support for node <18
  • Rewrite in TypeScript, provide ESM and CommonJS hybrid interface
  • Add tree-shake friendly exports, like import('tar/create') and import('tar/read-entry') to get individual functions or classes.
  • Add chmod option that defaults to false, and deprecate noChmod. That is, reverse the default option regarding explicitly setting file system modes to match tar entry settings.
  • Add processUmask option to avoid having to call process.umask() when chmod: true (or noChmod: false) is set.

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by isaacs, a new releaser for tar since your current version.

Install script changes

This version adds prepare script that runs during installation. Review the package contents before updating.


Updates @capacitor/cli from 7.4.5 to 7.5.0

Release notes

Sourced from @​capacitor/cli's releases.

7.5.0

7.5.0 (2026-02-11)

Bug Fixes

  • android: AGP 9.0 no longer supports proguard-android.txt (#8315) (d716e41)
  • cli: Update tar package (#8311) (#8313) (f62bf77)
  • cookies: only send expires param on web if a date is set (259202b)

Features

Changelog

Sourced from @​capacitor/cli's changelog.

7.5.0 (2026-02-11)

Bug Fixes

  • android: AGP 9.0 no longer supports proguard-android.txt (#8315) (d716e41)
  • cli: Update tar package (#8311) (#8313) (f62bf77)
  • cookies: only send expires param on web if a date is set (259202b)

Features

Commits

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 rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @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)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/floccusaddon/floccus/pull/2177 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 2/18/2026 **Status:** 🔄 Open **Base:** `develop` ← **Head:** `dependabot/npm_and_yarn/multi-6f5fae528e` --- ### 📝 Commits (1) - [`6de0dc0`](https://github.com/floccusaddon/floccus/commit/6de0dc0c190f683252050bc353af36b8a56588c8) chore(deps): Bump tar and @capacitor/cli ### 📊 Changes **2 files changed** (+64 additions, -93 deletions) <details> <summary>View changed files</summary> 📝 `package-lock.json` (+63 -92) 📝 `package.json` (+1 -1) </details> ### 📄 Description Bumps [tar](https://github.com/isaacs/node-tar) to 7.5.9 and updates ancestor dependency [@capacitor/cli](https://github.com/ionic-team/capacitor). These dependencies need to be updated together. Updates `tar` from 6.2.1 to 7.5.9 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/isaacs/node-tar/blob/main/CHANGELOG.md">tar's changelog</a>.</em></p> <blockquote> <h1>Changelog</h1> <h2>7.5</h2> <ul> <li>Added <code>zstd</code> compression support.</li> <li>Consistent TOCTOU behavior in sync t.list</li> <li>Only read from ustar block if not specified in Pax</li> <li>Fix sync tar.list when file size reduces while reading</li> <li>Sanitize absolute linkpaths properly</li> <li>Prevent writing hardlink entries to the archive ahead of their file target</li> </ul> <h2>7.4</h2> <ul> <li>Deprecate <code>onentry</code> in favor of <code>onReadEntry</code> for clarity.</li> </ul> <h2>7.3</h2> <ul> <li>Add <code>onWriteEntry</code> option</li> </ul> <h2>7.2</h2> <ul> <li>DRY the command definitions into a single <code>makeCommand</code> method, and update the type signatures to more appropriately infer the return type from the options and arguments provided.</li> </ul> <h2>7.1</h2> <ul> <li>Update minipass to v7.1.0</li> <li>Update the type definitions of <code>write()</code> and <code>end()</code> methods on <code>Unpack</code> and <code>Parser</code> classes to be compatible with the NodeJS.WritableStream type in the latest versions of <code>@types/node</code>.</li> </ul> <h2>7.0</h2> <ul> <li>Drop support for node &lt;18</li> <li>Rewrite in TypeScript, provide ESM and CommonJS hybrid interface</li> <li>Add tree-shake friendly exports, like <code>import('tar/create')</code> and <code>import('tar/read-entry')</code> to get individual functions or classes.</li> <li>Add <code>chmod</code> option that defaults to false, and deprecate <code>noChmod</code>. That is, reverse the default option regarding explicitly setting file system modes to match tar entry settings.</li> <li>Add <code>processUmask</code> option to avoid having to call <code>process.umask()</code> when <code>chmod: true</code> (or <code>noChmod: false</code>) is set.</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/isaacs/node-tar/commit/1f0c2c9006b10199cf2686f8ef43e79a1773e1aa"><code>1f0c2c9</code></a> 7.5.9</li> <li><a href="https://github.com/isaacs/node-tar/commit/fbb08518bf290733b68ca4d4135f75becf73fd75"><code>fbb0851</code></a> build minified version as default export</li> <li><a href="https://github.com/isaacs/node-tar/commit/6b8eba0ef367ac937e703238daa6df94ae6f823f"><code>6b8eba0</code></a> 7.5.8</li> <li><a href="https://github.com/isaacs/node-tar/commit/2cb1120bcefe28d7ecc719b41441ade59c52e384"><code>2cb1120</code></a> fix(unpack): improve UnpackSync symlink error &quot;into&quot; path accuracy</li> <li><a href="https://github.com/isaacs/node-tar/commit/d18e4e1f846f4ddddc153b0f536a19c050e7499f"><code>d18e4e1</code></a> fix: do not write linkpaths through symlinks</li> <li><a href="https://github.com/isaacs/node-tar/commit/4a37eb9a1cf1137df4eb70c5c7f849f412ff3cdb"><code>4a37eb9</code></a> 7.5.7</li> <li><a href="https://github.com/isaacs/node-tar/commit/f4a7aa9bc3d717c987fdf1480ff7a64e87ffdb46"><code>f4a7aa9</code></a> fix: properly sanitize hard links containing ..</li> <li><a href="https://github.com/isaacs/node-tar/commit/394ece6ad8d81742a4e4058af227c616cd947a25"><code>394ece6</code></a> 7.5.6</li> <li><a href="https://github.com/isaacs/node-tar/commit/7d4cc17c76f6bd11dcd83de47187dc6dff206eee"><code>7d4cc17</code></a> fix race puting a Link ahead of its target File</li> <li><a href="https://github.com/isaacs/node-tar/commit/26ab90474e642cf00d84a05bcdc2eaf2a19f1581"><code>26ab904</code></a> 7.5.5</li> <li>Additional commits viewable in <a href="https://github.com/isaacs/node-tar/compare/v6.2.1...v7.5.9">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by <a href="https://www.npmjs.com/~isaacs">isaacs</a>, a new releaser for tar since your current version.</p> </details> <details> <summary>Install script changes</summary> <p>This version adds <code>prepare</code> script that runs during installation. Review the package contents before updating.</p> </details> <br /> Updates `@capacitor/cli` from 7.4.5 to 7.5.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/ionic-team/capacitor/releases"><code>@​capacitor/cli</code>'s releases</a>.</em></p> <blockquote> <h2>7.5.0</h2> <h1><a href="https://github.com/ionic-team/capacitor/compare/7.4.5...7.5.0">7.5.0</a> (2026-02-11)</h1> <h3>Bug Fixes</h3> <ul> <li><strong>android:</strong> AGP 9.0 no longer supports <code>proguard-android.txt</code> (<a href="https://redirect.github.com/ionic-team/capacitor/issues/8315">#8315</a>) (<a href="https://github.com/ionic-team/capacitor/commit/d716e41312dd8f6884d89bd20c2d829a255ed7d7">d716e41</a>)</li> <li><strong>cli:</strong> Update tar package (<a href="https://redirect.github.com/ionic-team/capacitor/issues/8311">#8311</a>) (<a href="https://redirect.github.com/ionic-team/capacitor/issues/8313">#8313</a>) (<a href="https://github.com/ionic-team/capacitor/commit/f62bf777c776e361871fdcf0950ba96eaa4da227">f62bf77</a>)</li> <li><strong>cookies:</strong> only send expires param on web if a date is set (<a href="https://github.com/ionic-team/capacitor/commit/259202bd19c8a7859da3d921ff9b0fd419f787af">259202b</a>)</li> </ul> <h3>Features</h3> <ul> <li><strong>cli:</strong> Add packageManager to iOS config (<a href="https://redirect.github.com/ionic-team/capacitor/issues/8321">#8321</a>) (<a href="https://redirect.github.com/ionic-team/capacitor/issues/8332">#8332</a>) (<a href="https://github.com/ionic-team/capacitor/commit/521d163e95a4e186459e024cbbdca5da40355b97">521d163</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/ionic-team/capacitor/blob/7.5.0/CHANGELOG.md"><code>@​capacitor/cli</code>'s changelog</a>.</em></p> <blockquote> <h1><a href="https://github.com/ionic-team/capacitor/compare/7.4.5...7.5.0">7.5.0</a> (2026-02-11)</h1> <h3>Bug Fixes</h3> <ul> <li><strong>android:</strong> AGP 9.0 no longer supports <code>proguard-android.txt</code> (<a href="https://redirect.github.com/ionic-team/capacitor/issues/8315">#8315</a>) (<a href="https://github.com/ionic-team/capacitor/commit/d716e41312dd8f6884d89bd20c2d829a255ed7d7">d716e41</a>)</li> <li><strong>cli:</strong> Update tar package (<a href="https://redirect.github.com/ionic-team/capacitor/issues/8311">#8311</a>) (<a href="https://redirect.github.com/ionic-team/capacitor/issues/8313">#8313</a>) (<a href="https://github.com/ionic-team/capacitor/commit/f62bf777c776e361871fdcf0950ba96eaa4da227">f62bf77</a>)</li> <li><strong>cookies:</strong> only send expires param on web if a date is set (<a href="https://github.com/ionic-team/capacitor/commit/259202bd19c8a7859da3d921ff9b0fd419f787af">259202b</a>)</li> </ul> <h3>Features</h3> <ul> <li><strong>cli:</strong> Add packageManager to iOS config (<a href="https://redirect.github.com/ionic-team/capacitor/issues/8321">#8321</a>) (<a href="https://redirect.github.com/ionic-team/capacitor/issues/8332">#8332</a>) (<a href="https://github.com/ionic-team/capacitor/commit/521d163e95a4e186459e024cbbdca5da40355b97">521d163</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/ionic-team/capacitor/commit/9efa0bdd79a5f028dca3b20ac5ff865bbbe1d9b8"><code>9efa0bd</code></a> Release 7.5.0</li> <li><a href="https://github.com/ionic-team/capacitor/commit/259202bd19c8a7859da3d921ff9b0fd419f787af"><code>259202b</code></a> fix(cookies): only send expires param on web if a date is set</li> <li><a href="https://github.com/ionic-team/capacitor/commit/d716e41312dd8f6884d89bd20c2d829a255ed7d7"><code>d716e41</code></a> fix(android): AGP 9.0 no longer supports <code>proguard-android.txt</code> (<a href="https://redirect.github.com/ionic-team/capacitor/issues/8315">#8315</a>)</li> <li><a href="https://github.com/ionic-team/capacitor/commit/521d163e95a4e186459e024cbbdca5da40355b97"><code>521d163</code></a> feat(cli): Add packageManager to iOS config (<a href="https://redirect.github.com/ionic-team/capacitor/issues/8321">#8321</a>) (<a href="https://redirect.github.com/ionic-team/capacitor/issues/8332">#8332</a>)</li> <li><a href="https://github.com/ionic-team/capacitor/commit/f62bf777c776e361871fdcf0950ba96eaa4da227"><code>f62bf77</code></a> fix(cli): Update tar package (<a href="https://redirect.github.com/ionic-team/capacitor/issues/8311">#8311</a>) (<a href="https://redirect.github.com/ionic-team/capacitor/issues/8313">#8313</a>)</li> <li>See full diff in <a href="https://github.com/ionic-team/capacitor/compare/7.4.5...7.5.0">compare view</a></li> </ul> </details> <br /> 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 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) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/floccusaddon/floccus/network/alerts). </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/floccus#2013
No description provided.