Bump tar, npm-check-updates and node-gyp in /ui
Type: Pull Request
State: Open
Association: Unknown
Comments: 2
(3 months ago)
(3 months ago)
component:UI dependencies javascript
Bumps tar to 7.5.9 and updates ancestor dependencies tar, npm-check-updates and node-gyp. These dependencies need to be updated together.
Updates tar from 6.1.11 to 7.5.9
Release notes
Sourced from tar's releases.
v6.1.13
6.1.13 (2022-12-07)
Dependencies
v6.1.12
6.1.12 (2022-10-31)
Bug Fixes
57493ee#332 ensuring close event is emited after stream has ended (@webark)b003c64#314 replace deprecated String.prototype.substr() (#314) (@CommanderRoot,@lukekarrys)Documentation
Changelog
Sourced from tar's changelog.
Changelog
7.5
- Added
zstdcompression 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
onentryin favor ofonReadEntryfor clarity.7.3
- Add
onWriteEntryoption7.2
- DRY the command definitions into a single
makeCommandmethod, 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()andend()methods onUnpackandParserclasses 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')andimport('tar/read-entry')to get individual functions or classes.- Add
chmodoption that defaults to false, and deprecatenoChmod. That is, reverse the default option regarding explicitly setting file system modes to match tar entry settings.- Add
processUmaskoption to avoid having to callprocess.umask()whenchmod: true(ornoChmod: false) is set.
... (truncated)
Commits
1f0c2c97.5.9fbb0851build minified version as default export6b8eba07.5.82cb1120fix(unpack): improve UnpackSync symlink error "into" path accuracyd18e4e1fix: do not write linkpaths through symlinks4a37eb97.5.7f4a7aa9fix: properly sanitize hard links containing ..394ece67.5.67d4cc17fix race puting a Link ahead of its target File26ab9047.5.5- Additional commits viewable in compare view
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 npm-check-updates from 6.0.1 to 19.3.2
Release notes
Sourced from npm-check-updates's releases.
v19.3.2
What's Changed
- docs: close code tag instead of reopening another one by
@sodin raineorshine/npm-check-updates#1588- fix(tests): resolve EBUSY errors on Windows by retrying directory removal by
@Zamiellin raineorshine/npm-check-updates#1590New Contributors
@sodmade their first contribution in raineorshine/npm-check-updates#1588Full Changelog: https://github.com/raineorshine/npm-check-updates/compare/v19.3.1...v19.3.2
v19.3.1
What's Changed
- fix(catalog): use the right yarn config name by
@MKruschkein raineorshine/npm-check-updates#1586Full Changelog: https://github.com/raineorshine/npm-check-updates/compare/v19.3.0...v19.3.1
v19.3.0
What's Changed
- feat: support yarn catalogs by
@MKruschkein raineorshine/npm-check-updates#1582- Fixed default catalog behavior.
- See discussion here: raineorshine/npm-check-updates#1582
- If you think this is wrong, please open an issue.
Full Changelog: https://github.com/raineorshine/npm-check-updates/compare/v19.2.1...v19.3.0
v19.2.1
Full Changelog: https://github.com/raineorshine/npm-check-updates/compare/v19.2.0...v19.2.1
v19.2.0
What's Changed
- Add --format dep
- Add interactive mode keyboard controls to docs by
@jsorefin raineorshine/npm-check-updates#1577- Spelling by
@jsorefin raineorshine/npm-check-updates#1578New Contributors
@jsorefmade their first contribution in raineorshine/npm-check-updates#1577Full Changelog: https://github.com/raineorshine/npm-check-updates/compare/v19.1.2...v19.2.0
v19.1.2
What's Changed
- fix: support singular 'catalog' field in pnpm-workspace.yaml by
@afonsojramosin raineorshine/npm-check-updates#1572New Contributors
@afonsojramosmade their first contribution in raineorshine/npm-check-updates#1572Full Changelog: https://github.com/raineorshine/npm-check-updates/compare/v19.1.1...v19.1.2
... (truncated)
Changelog
Sourced from npm-check-updates's changelog.
Changelog
This file only documents major version releases. For smaller releases, you're stuck reading the commit history.
[18.0.0] - 2025-04-21
Breaking
The only breaking change in v18 is with the
-g/--globalflag.
npm-check-updates -gwill now auto-detect your package manager based on the execution path. Previously, it defaulted tonpm.
yarn dlx ncu -g --packageManager yarn→yarn dlx ncu -gpnpm dlx ncu --global --packageManager pnpm→pnpm dlx ncu -gbunx ncu -g--packageManager pnpm→bunx ncu -gIf for some reason you were running
ncu -gwith an alternative package manager and relying on it checking the globalnpmpackages, you will need to now explicitly specify npm:
ncu -g→ncu -g--packageManager npmThanks to
@LuisFerLCCfor the improvement (#1514).https://github.com/raineorshine/npm-check-updates/compare/v17.1.18...v18.0.0
[17.0.0] - 2024-07-31
Breaking
- Require node >= 18.18.0
- Deprecated versions are no longer excluded by default, as it requires fetching package info for every published version, significantly slowing down upgrades.
- You can opt in with
--no-deprecatedin the CLI ordeprecated: falsein yourncurcconfig.- In workspaces mode,
--rootis now set by default (#1353)
- To not check the root package.json, use
--no-root.- If you have a packageManager field in your package.json, it is now upgraded by default (#1390)
- Use
--dep prod,dev,optionalfor the old behavior.https://github.com/raineorshine/npm-check-updates/compare/v16.14.20...v17.0.0
[16.0.0] - 2022-07-23
Breaking
- Automatic detection of package data on stdin has been removed. This feature was deprecated in
v14.0.0. Add--stdinfor old behavior.- Wild card filters now apply to scoped packages. Previously,
ncu -f '*vite*'would not include@vitejs/plugin-react. Now, filters will match any part of the package name, including the scope. Use a more specific glob or regex expression for old behavior.https://github.com/raineorshine/npm-check-updates/compare/v15.3.4...v16.0.0
[15.0.0] - 2022-06-30
Breaking
... (truncated)
Commits
168325c19.3.2e057a79install: Provide more helpful message on install failure.7f32052fix(tests): resolve EBUSY errors on Windows by retrying directory removal (#1...30a0e08docs: close code tag instead of reopening another one (#1588)f2a802219.3.1388deaffix(catalog): use the right yarn config name (#1586)325ac2f19.3.099042d1feat: support yarn catalogs (#1582)97f349c19.2.10251206Do not assume that --deep is disabled when only one package is found. Fixes #...- Additional commits viewable in compare view
Install script changes
This version adds prepare script that runs during installation. Review the package contents before updating.
Updates node-gyp from 7.1.2 to 12.2.0
Release notes
Sourced from node-gyp's releases.
v12.2.0
12.2.0 (2026-01-26)
Features
- include built package version in error logs (#3254) (ee9cbdd)
- update gyp-next to v0.21.1 (#3273) (888ff2c)
Bug Fixes
- cpu concurrency detection on some platforms (#3255) (f15b79a), closes #3191
- python is no longer a valid npm config setting (#3258) (c7c678f)
- Switch to URL instead of url.parse (#3256) (3f81949)
- Test Windows on Python 3.14, not 3.13 (#3262) (7b4f315)
Core
Doc
- add a note about changes in gyp folder (#3259) (a52bc81)
- correct typos (#3269) (0f2bc7d)
- remove obsolete Microsoft Node.js Guidelines link (#3268) (30cda26)
- update Python manual install instructions for Windows (#3265) (0407877)
Miscellaneous
v12.1.0
12.1.0 (2025-11-12)
Features
v12.0.0
12.0.0 (2025-11-10)
⚠ BREAKING CHANGES
... (truncated)
Changelog
Sourced from node-gyp's changelog.
12.2.0 (2026-01-26)
Features
- include built package version in error logs (#3254) (ee9cbdd)
- update gyp-next to v0.21.1 (#3273) (888ff2c)
Bug Fixes
- cpu concurrency detection on some platforms (#3255) (f15b79a), closes #3191
- python is no longer a valid npm config setting (#3258) (c7c678f)
- Switch to URL instead of url.parse (#3256) (3f81949)
- Test Windows on Python 3.14, not 3.13 (#3262) (7b4f315)
Core
Doc
- add a note about changes in gyp folder (#3259) (a52bc81)
- correct typos (#3269) (0f2bc7d)
- remove obsolete Microsoft Node.js Guidelines link (#3268) (30cda26)
- update Python manual install instructions for Windows (#3265) (0407877)
Miscellaneous
12.1.0 (2025-11-12)
Features
12.0.0 (2025-11-10)
⚠ BREAKING CHANGES
- align to npm 11 node engine range
Features
... (truncated)
Commits
878061fchore(main): release 12.2.0 (#3249)7bf371cchore(deps): upgrade tar to 7.5.4 to address CVE-2026-23950 (#3271)888ff2cfeat: update gyp-next to v0.21.1 (#3273)30cda26readme: remove obsolete Microsoft Node.js Guidelines link (#3268)0f2bc7dreadme: correct typos (#3269)0407877readme: update Python manual install instructions for Windows (#3265)3f81949fix: Switch to URL instead of url.parse (#3256)7b4f315fix: Test Windows on Python 3.14, not 3.13 (#3262)a52bc81doc: add a note about changes in gyp folder (#3259)c7c678ffix: python is no longer a valid npm config setting (#3258)- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for node-gyp since your current version.
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.
Package Dependencies
Technical Details
| ID: | 13924019 |
| UUID: | 3956633456 |
| Node ID: | PR_kwDOAJTq2M7EjnAk |
| Host: | GitHub |
| Repository: | apache/cloudstack |