Skip to content

chore: downgrade vercel from 54.2.0 to 54.1.0#3578

Merged
KATO-Hiro merged 3 commits into
stagingfrom
#3576
May 21, 2026
Merged

chore: downgrade vercel from 54.2.0 to 54.1.0#3578
KATO-Hiro merged 3 commits into
stagingfrom
#3576

Conversation

@KATO-Hiro
Copy link
Copy Markdown
Collaborator

@KATO-Hiro KATO-Hiro commented May 21, 2026

close #3576

Summary by CodeRabbit

  • Chores
    • Vercel の依存バージョンを 54.2.0 から 54.1.0 にダウングレードしました。
    • それ以外の依存関係やパッケージ情報、スクリプトに変更はありません。

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented May 21, 2026

Warning

Rate limit exceeded

@KATO-Hiro has exceeded the limit for the number of commits that can be reviewed per hour. Please wait 14 minutes and 23 seconds before requesting another review.

You’ve run out of usage credits. Purchase more in the billing tab.

⌛ How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout.

Please see our FAQ for further information.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro

Run ID: f1fb3a2c-8c12-43bd-8366-23896dac7898

📥 Commits

Reviewing files that changed from the base of the PR and between 107709e and f8d07d6.

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

Walkthrough

package.jsondependencies 内で vercel を 54.2.0 から 54.1.0 にダウングレード。54.2.0 が nitro-nightly を本番依存に含めたための脆弱性アラート対応。

Changes

Vercel 依存関係の修正

Layer / File(s) Summary
vercel バージョンの下げ
package.json
vercel54.2.054.1.0 にダウングレードした。

Possibly related PRs

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Poem

🔄 vercel 戻る一行で
nitro の影をそっと避けて
依存は静かに深呼吸
ビルドはまた穏やかに動き出す ✨

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed プルリクエストのタイトルは、Vercelパッケージのバージョンを54.2.0から54.1.0にダウングレードするという変更内容を正確かつ簡潔に説明しており、変更セットの主要な目的を明確に反映している。
Linked Issues check ✅ Passed プルリクエストはリンク済みissue #3576の要件を完全に満たしており、nitro-nightlyの本番依存を削除して脆弱性アラートを解消するためのVercelsのダウングレードを実装している。
Out of Scope Changes check ✅ Passed 変更内容はpackage.jsonのVercelバージョン更新のみであり、リンク済みissue #3576の要件範囲内の変更であり、スコープ外の変更は検出されない。
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
  • Commit unit tests in branch #3576

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

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

Copy link
Copy Markdown
Contributor

@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

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (1)
package.json (1)

73-89: ⚠️ Potential issue | 🟡 Minor | ⚡ Quick win

verceldevDependencies へ移すことを検討

src から vercel の import/require(import("vercel") 含む)は見つからない一方、.github/workflows/ci.yml の preview job で pnpm vercel pull/build/deploy を実行しているため、用途は CLI です。CI が pnpm install(devDependencies 含む)前提なら verceldevDependencies に移して依存性を整理できます。

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@package.json` around lines 73 - 89, The package.json currently lists the CLI
package "vercel" under "dependencies"; since there are no runtime imports of
"vercel" (search for import/require or dynamic import("vercel") and none are
found) and it's only used by CI preview steps that call pnpm vercel
pull/build/deploy, move the "vercel": "54.1.0" entry from the "dependencies"
object into "devDependencies", update package.json accordingly, run a lockfile
update (pnpm install) and run the CI/preview job locally or via pipeline to
confirm the devDependency is available to the job.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@package.json`:
- Line 88: The package.json change (the "vercel": "54.1.0" dependency) requires
updating the lockfile; run `pnpm install` locally to regenerate pnpm-lock.yaml
so the resolved versions match the package.json change, then add and commit the
updated pnpm-lock.yaml to this PR so installations use the new vercel version.

---

Outside diff comments:
In `@package.json`:
- Around line 73-89: The package.json currently lists the CLI package "vercel"
under "dependencies"; since there are no runtime imports of "vercel" (search for
import/require or dynamic import("vercel") and none are found) and it's only
used by CI preview steps that call pnpm vercel pull/build/deploy, move the
"vercel": "54.1.0" entry from the "dependencies" object into "devDependencies",
update package.json accordingly, run a lockfile update (pnpm install) and run
the CI/preview job locally or via pipeline to confirm the devDependency is
available to the job.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro

Run ID: 4506302c-61f7-4084-9563-5b54d32ffbfa

📥 Commits

Reviewing files that changed from the base of the PR and between 2642dfb and 8fc8bfb.

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

Comment thread package.json Outdated
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Copy link
Copy Markdown
Collaborator Author

@KATO-Hiro KATO-Hiro left a comment

Choose a reason for hiding this comment

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

LGTM

@KATO-Hiro KATO-Hiro merged commit 5691b67 into staging May 21, 2026
3 checks passed
@KATO-Hiro KATO-Hiro deleted the #3576 branch May 21, 2026 14:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

chore: revert vercel from 54.2.0 to 54.1.0

1 participant