Skip to content

Bump tar, @vercel/nft and serverless#18

Open
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/multi-018670fd9b
Open

Bump tar, @vercel/nft and serverless#18
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/multi-018670fd9b

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot bot commented on behalf of github Mar 11, 2026

Bumps tar to 7.5.11 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.11

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.

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.

Summary by CodeRabbit

  • Chores
    • Updated dependency versions for improved compatibility and maintenance.

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

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.11
  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 11, 2026
@wiz-a38520980d
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.

@coderabbitai
Copy link
Copy Markdown

coderabbitai bot commented Mar 11, 2026

📝 Walkthrough

Walkthrough

This pull request updates two dependency versions in package.json: @vercel/nft from 0.18.2 to 1.3.2 and serverless from 3.14.0 to 4.33.0.

Changes

Cohort / File(s) Summary
Dependency Version Updates
package.json
Upgraded @vercel/nft (1.3.2) in dependencies and serverless (4.33.0) in devDependencies.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~4 minutes

Poem

🐰 A hop and a bound through the version tree,
Dependencies dance so merrily,
Nft leaps up, serverless soars high,
Fresh bunny bytes beneath the sky! ✨

🚥 Pre-merge checks | ✅ 1 | ❌ 2

❌ Failed checks (1 warning, 1 inconclusive)

Check name Status Explanation Resolution
Description check ⚠️ Warning The PR description includes detailed information about all three dependencies, release notes, and changelogs, but does not follow the required template structure with sections like 'Updated dependencies', 'Future work', and 'Checklist'. Restructure the description to follow the repository template: add 'Updated dependencies' section with a list, include 'Future work' section if applicable, and complete the 'Checklist' with checkmarks.
Title check ❓ Inconclusive The PR title 'Bump tar, @vercel/nft and serverless' accurately summarizes the main change—updating three dependencies. However, it omits 'tar' from the summary, which is incomplete since tar is mentioned in the title but the raw_summary indicates only @vercel/nft and serverless are actually changed in package.json. Verify whether tar was actually updated in package.json. If tar was not updated, the title should be corrected to 'Bump @vercel/nft and serverless' to match the actual changes.
✅ Passed checks (1 passed)
Check name Status Explanation
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch dependabot/npm_and_yarn/multi-018670fd9b

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Copy Markdown

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@package.json`:
- Line 61: Update the repo's Node engine floor and TypeScript preset to match
bumped deps: change the "engines.node" value in package.json from ">=14.0.0" to
">=20.0.0" (or ">=20" per project style) so installs/CI cannot run on older Node
versions, and update tsconfig.json's "extends" from
"@tsconfig/node14/tsconfig.json" to a Node 20-compatible preset (e.g.,
"@tsconfig/node20/tsconfig.json" or an equivalent) so the TypeScript config
aligns with Node 20.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: 0984ab57-8ce8-47fa-8e8a-977b1764c7ce

📥 Commits

Reviewing files that changed from the base of the PR and between beca356 and f477e3f.

⛔ Files ignored due to path filters (1)
  • package-lock.json is excluded by !**/package-lock.json
📒 Files selected for processing (1)
  • package.json

"lint-staged": "^12.3.8",
"prettier": "^2.6.2",
"serverless": "3.14.0",
"serverless": "4.33.0",
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
set -euo pipefail

echo "== Local package metadata =="
jq '{engines, dependencies: { "@vercel/nft": .dependencies["@vercel/nft"] }, devDependencies: { "serverless": .devDependencies.serverless }}' package.json

echo
echo "== Repo references to older Node targets =="
rg -n --glob '!node_modules/**' '@tsconfig/node14|node14|\"node\"\\s*:' .

echo
echo "== Published metadata for bumped packages =="
python - <<'PY'
import json, urllib.parse, urllib.request

for name, version in [("@vercel/nft", "1.3.2"), ("serverless", "4.33.0")]:
    url = f"https://registry.npmjs.org/{urllib.parse.quote(name, safe='')}/{version}"
    with urllib.request.urlopen(url) as r:
        data = json.load(r)
    print(f"{name}@{version}")
    print("  engines:", data.get("engines"))
    print("  postinstall:", data.get("scripts", {}).get("postinstall"))
PY

Repository: neofinancial/serverless-plugin-neo

Length of output: 449


🏁 Script executed:

#!/bin/bash
set -euo pipefail

echo "== Repo references to Node 14/16 targets =="
rg -n --glob '!node_modules/**' '(`@tsconfig/node14`|node14|engines)' . 2>/dev/null || echo "No matches found"

echo
echo "== Published metadata for bumped packages =="
python3 - <<'PY'
import json
import urllib.parse
import urllib.request

for name, version in [("@vercel/nft", "1.3.2"), ("serverless", "4.33.0")]:
    try:
        url = f"https://registry.npmjs.org/{urllib.parse.quote(name, safe='')}/{version}"
        with urllib.request.urlopen(url, timeout=10) as r:
            data = json.load(r)
        print(f"\n{name}@{version}")
        if "engines" in data:
            print(f"  engines: {data['engines']}")
        else:
            print(f"  engines: not specified")
    except Exception as e:
        print(f"\nError fetching {name}@{version}: {e}")
PY

Repository: neofinancial/serverless-plugin-neo

Length of output: 22084


🏁 Script executed:

#!/bin/bash
set -euo pipefail

echo "== Fetch npm package metadata via curl (insecure) =="
for name in "@vercel/nft" "serverless"; do
  case "$name" in
    "@vercel/nft")
      version="1.3.2"
      encoded_name="@vercel%2Fnft"
      ;;
    "serverless")
      version="4.33.0"
      encoded_name="serverless"
      ;;
  esac
  
  echo ""
  echo "=== $name@$version ==="
  curl -s -k "https://registry.npmjs.org/${encoded_name}/${version}" | python3 -m json.tool 2>/dev/null | grep -A 10 '"engines"' || echo "  engines: not found"
done

Repository: neofinancial/serverless-plugin-neo

Length of output: 961


Raise the repo's Node floor to >=20 to match the bumped dependencies.

Both @vercel/nft@1.3.2 (dependencies) and serverless@4.33.0 (devDependencies) require higher Node versions than this repo declares: @vercel/nft requires >=20, while serverless requires >=18.0.0. The repo currently advertises >=14.0.0, which is inconsistent and will allow installs/CI on incompatible Node versions. Update package.json:11 to at least >=20.0.0, and consider updating tsconfig.json:2 from @tsconfig/node14 to a Node 20-compatible preset.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@package.json` at line 61, Update the repo's Node engine floor and TypeScript
preset to match bumped deps: change the "engines.node" value in package.json
from ">=14.0.0" to ">=20.0.0" (or ">=20" per project style) so installs/CI
cannot run on older Node versions, and update tsconfig.json's "extends" from
"@tsconfig/node14/tsconfig.json" to a Node 20-compatible preset (e.g.,
"@tsconfig/node20/tsconfig.json" or an equivalent) so the TypeScript config
aligns with Node 20.

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