Skip to content

Bump tar, @vercel/nft and serverless#8

Closed
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/multi-b118767aed
Closed

Bump tar, @vercel/nft and serverless#8
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/multi-b118767aed

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jan 21, 2026

Copy link
Copy Markdown

Bumps tar to 7.5.6 and updates ancestor dependencies tar, @vercel/nft and serverless. These dependencies need to be updated together.

Updates tar from 4.4.19 to 7.5.6

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

Documentation

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.


Updates @vercel/nft from 0.18.2 to 1.2.0

Release notes

Sourced from @​vercel/nft's releases.

1.2.0

1.2.0 (2026-01-07)

Features

  • support module.createRequire when mixedModules: false (#558) (67038d5), closes #543

1.1.1

1.1.1 (2025-11-26)

Bug Fixes

  • evaluate nested export conditions when resolving a module-sync fallback (#557) (1e455b0)

1.1.0

1.1.0 (2025-11-24)

Features

  • Ensure module-sync conditions also trace cjs fallback (#550) (684032b)

1.0.0

1.0.0 (2025-11-20)

Features

  • bump glob@13 and set engines node@20 (#554) (6fb8680)

BREAKING CHANGES

  • (requires node@20 or newer)

0.30.4

0.30.4 (2025-11-19)

Bug Fixes

0.30.3

0.30.3 (2025-10-16)

... (truncated)

Commits
  • 67038d5 feat: support module.createRequire when mixedModules: false (#558)
  • 1e455b0 fix: evaluate nested export conditions when resolving a module-sync fallback ...
  • 684032b feat: Ensure module-sync conditions also trace cjs fallback (#550)
  • b327dba chore: bump npm@11.6.3 (#555)
  • 6fb8680 feat: bump glob@13 and set engines node@20 (#554)
  • 4e0a9a2 fix: Bump glob from 10.4.5 to 10.5.0 (#551)
  • b2ac206 chore: Bump js-yaml from 3.14.1 to 3.14.2 in the npm_and_yarn group across 1 ...
  • 45dea49 chore: Bump validator from 13.11.0 to 13.15.20 (#548)
  • 78b3823 fix: Revert "fs.readFile emit relative assets using cwd" (#547)
  • d484ea1 chore: add icyJoseph to codeowners (#544)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by vercel-release-bot, a new releaser for @​vercel/nft since your current version.


Updates serverless from 3.14.0 to 4.31.0

Release notes

Sourced from serverless's releases.

4.31.0

Features

Serverless Framework

  • Integrated serverless-prune-plugin functionality. Lambda version and layer pruning is now built directly into the Serverless Framework. Use the sls prune command to manually remove old function versions, or enable automatic pruning after deployments via the custom.prune configuration. Read more in our docs. (#13244)

    Thanks to @​claygregory for creating the original plugin and to all contributors!

    custom:
      prune:
        automatic: true
        number: 3           # Keep 3 most recent versions
        includeLayers: true # Also prune layer versions
    # Manual pruning
    sls prune -n 3
  • Added support for AWS Asia Pacific (Taipei) region ap-east-2. (#13260, #13257)

    provider:
      name: aws
      region: ap-east-2

[!NOTE] The serverless dev command is not supported in ap-east-2 because AWS IoT Core is not currently available in that region.

Bug Fixes

Serverless Framework

  • Fixed esbuild sourcemap configuration error. Setting build.esbuild.sourcemap.setNodeOptions: false no longer throws "sourcemap" must be a string or a boolean. The framework now correctly defaults to sourcemap: true when only setNodeOptions is specified. (#13246)

  • Fixed AppSync schema empty on Windows. Resolved an issue where .graphql schema files using glob patterns (e.g., Schema/*.graphql) were not found on Windows due to path separator incompatibility with globby. (#13242, #13240)

  • Fixed Windows CI/CD intermittent failures. Resolved EPERM: operation not permitted, rename errors on Windows by using the system temp directory for AJV cache and adding retry logic with exponential backoff for file operations. (#13243, #13264)

Maintenance

  • Updated multiple dependencies:
    • Upgraded dotenv to v17.2.3 (#13259)
    • Upgraded chokidar to v4.0.3 (#13251)
    • Upgraded jest to v30.2.0 (#13250)
    • Upgraded globby to v14 (#13236)

... (truncated)

Commits
  • 9699b8b chore: release 4.31.0 (#13266)
  • 202a341 refactor: move prune command to global commands schema (#13267)
  • 372463b feat: integrate serverless-prune-plugin functionality (#13244)
  • 3d8c4a5 chore(ci): optimize integration test execution for Ubuntu runners with maxWor...
  • 9e83b10 fix: add retry logic with exponential backoff to handle Windows EPERM errors ...
  • 325f1f1 chore(deps): bump @​graphql-tools/merge from 8.4.2 to 9.1.7 (#13263)
  • 49df6d2 feat: add support for ap-east-2 region (#13260)
  • 8e9a6ba chore(deps): upgrade dotenv to v17.2.3 and remove unused loadDotEnvFile uti...
  • e1b03b6 chore(deps): add glob v11 compatibility exclusion for Node.js 18 in dependabo...
  • 2022059 chore(deps): bump the aws-sdk group with 31 updates (#13253)
  • 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 serverless 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 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)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [tar](https://github.com/isaacs/node-tar) to 7.5.6 and updates ancestor dependencies [tar](https://github.com/isaacs/node-tar), [@vercel/nft](https://github.com/vercel/nft) and [serverless](https://github.com/serverless/serverless). These dependencies need to be updated together.


Updates `tar` from 4.4.19 to 7.5.6
- [Release notes](https://github.com/isaacs/node-tar/releases)
- [Changelog](https://github.com/isaacs/node-tar/blob/main/CHANGELOG.md)
- [Commits](isaacs/node-tar@v4.4.19...v7.5.6)

Updates `@vercel/nft` from 0.18.2 to 1.2.0
- [Release notes](https://github.com/vercel/nft/releases)
- [Commits](vercel/nft@0.18.2...1.2.0)

Updates `serverless` from 3.14.0 to 4.31.0
- [Release notes](https://github.com/serverless/serverless/releases)
- [Changelog](https://github.com/serverless/serverless/blob/main/RELEASE_PROCESS.md)
- [Commits](https://github.com/serverless/serverless/compare/v3.14.0...sf-core@4.31.0)

---
updated-dependencies:
- dependency-name: tar
  dependency-version: 7.5.6
  dependency-type: indirect
- dependency-name: "@vercel/nft"
  dependency-version: 1.2.0
  dependency-type: direct:production
- dependency-name: serverless
  dependency-version: 4.31.0
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jan 21, 2026
@wiz-a38520980d

Copy link
Copy Markdown

Wiz Scan Summary

Scanner Findings
Vulnerability Finding Vulnerabilities 1 High 1 Medium 1 Low
Data Finding Sensitive Data -
Secret Finding Secrets -
IaC Misconfiguration IaC Misconfigurations -
SAST Finding SAST Findings -
Total 1 High 1 Medium 1 Low

View scan details in Wiz

To detect these findings earlier in the dev lifecycle, try using Wiz Code VS Code Extension.

@dependabot @github

dependabot Bot commented on behalf of github Jan 29, 2026

Copy link
Copy Markdown
Author

Superseded by #10.

@dependabot dependabot Bot closed this Jan 29, 2026
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/multi-b118767aed branch January 29, 2026 01:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants