Skip to content

Bump tar, @vercel/nft and serverless#17

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

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

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Mar 5, 2026

Copy link
Copy Markdown

Bumps tar to 7.5.10 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.10

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
  • 2b72abc 7.5.10
  • 7bc755d parse root off paths before sanitizing .. parts
  • c8cb846 update deps
  • 1f0c2c9 7.5.9
  • fbb0851 build minified version as default export
  • 6b8eba0 7.5.8
  • 2cb1120 fix(unpack): improve UnpackSync symlink error "into" path accuracy
  • d18e4e1 fix: do not write linkpaths through symlinks
  • 4a37eb9 7.5.7
  • f4a7aa9 fix: properly sanitize hard links containing ..
  • 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 @vercel/nft from 0.18.2 to 1.3.2

Release notes

Sourced from @​vercel/nft's releases.

1.3.2

1.3.2 (2026-02-23)

Bug Fixes

  • do not follow absolute paths outside job base (#568) (0ce8e2c)

1.3.1

1.3.1 (2026-02-10)

Bug Fixes

  • Resolve symlinks relative to real file location (#564) (8f6a609), closes #563

1.3.0

1.3.0 (2026-01-21)

Features

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)

... (truncated)

Commits
  • 0ce8e2c fix: do not follow absolute paths outside job base (#568)
  • 8f6a609 fix: Resolve symlinks relative to real file location (#564)
  • 34f1ec7 feat: add depth option (#561)
  • 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 ...
  • 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.33.0

Release notes

Sourced from serverless's releases.

4.33.0

Features

Serverless Framework

  • Added AWS Bedrock AgentCore integration for deploying and managing AI agents. Define agents, tools, memory, browsers, and code interpreters via a new ai top-level block in serverless.yml. The Framework compiles agent resources to CloudFormation with least-privilege IAM roles, builds and uploads Docker images to ECR, and supports both JavaScript and Python runtimes. New CLI commands include sls invoke -a <agent> (with JSON and SSE streaming), sls logs -a <agent>, and sls dev mode for agents with hot-reload. Includes 20+ example agents covering LangGraph, MCP servers, browser automation, code interpreters, and more. Read more in the AI Agents documentation. (#13353)
functions:
  calculatorFunction:
    handler: handlers/calculator.handler
ai:
tools:
calculator:
function: calculatorFunction
toolSchema:
- name: calculate
inputSchema:
type: object
properties:
expression:
type: string
required:
- expression
agents:
assistant:
memory:
expiration: 30

# Deploy the agent
sls deploy
Invoke with streaming
sls invoke -a assistant -d "What is 2+2?"
Tail agent logs
sls logs -a assistant --tail

  • Dev mode now matches the shim runtime to your local Node.js version. Previously, dev mode always used nodejs20.x for the remote shim regardless of your local Node.js version. The Framework now automatically selects the matching AWS Lambda runtime (e.g., local Node.js 22 -> nodejs22.x), and falls back to nodejs20.x with a warning when the local version isn't supported by Lambda. (#13355, #13362)

  • Added JSDoc descriptions to the configuration schema for TypeScript type generation. All JSON Schema properties across 30+ config schema files now include description, @see, @example, @default, @deprecated, and @since annotations. This enables auto-generated TypeScript type definitions (via serverless/typescript) with rich inline documentation, hover tooltips, and link-to-docs support in IDEs. (#13345)

Bug Fixes

Serverless Framework

... (truncated)

Commits
  • 406252e chore: release 4.33.0 (#13364)
  • f308bab fix(tests): update path handling and Python binary detection for Windows comp...
  • 5bffeee docs(agents): add configuration guide to menu and fix comment formatting (#13...
  • 83677fd feat: add Bedrock AgentCore integration for AI agents (#13353)
  • 1e5fd26 chore(deps): update minimatch in prod deps (#13363)
  • e4c2b47 chore(deps): bump the aws-sdk group with 30 updates (#13357)
  • 1f0abd8 feat(dev-mode): match shim runtime to local Node.js version (#13362)
  • d0d9ee3 chore(deps): bump is-wsl from 3.1.0 to 3.1.1 in the patch-updates group (#13358)
  • 34ab370 chore(deps): bump @​slack/web-api from 7.13.0 to 7.14.0 (#13359)
  • 4e5460f chore(deps): bump golang.org/x/mod in /binary-installer (#13356)
  • 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.

Install script changes

This version modifies postinstall script that runs during installation. Review the package contents before updating.


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.

Bumps [tar](https://github.com/isaacs/node-tar) to 7.5.10 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.10
- [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.10)

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

Updates `serverless` from 3.14.0 to 4.33.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.33.0)

---
updated-dependencies:
- dependency-name: tar
  dependency-version: 7.5.10
  dependency-type: indirect
- dependency-name: "@vercel/nft"
  dependency-version: 1.3.2
  dependency-type: direct:production
- dependency-name: serverless
  dependency-version: 4.33.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 Mar 5, 2026
@wiz-a38520980d

wiz-a38520980d Bot commented Mar 5, 2026

Copy link
Copy Markdown

Wiz Scan Summary

Scanner Findings
Vulnerability Finding Vulnerabilities 4 High 1 Medium 1 Low
Data Finding Sensitive Data -
Secret Finding Secrets -
IaC Misconfiguration IaC Misconfigurations -
SAST Finding SAST Findings -
Total 4 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 Mar 11, 2026

Copy link
Copy Markdown
Author

Superseded by #18.

@dependabot dependabot Bot closed this Mar 11, 2026
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/multi-582511129e branch March 11, 2026 08:29
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