build(deps): bump vite from 6.3.5 to 7.3.2 in /google-calendar-mcp#34
build(deps): bump vite from 6.3.5 to 7.3.2 in /google-calendar-mcp#34dependabot[bot] wants to merge 1 commit into
Conversation
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 6.3.5 to 7.3.2. - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/v7.3.2/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v7.3.2/packages/vite) --- updated-dependencies: - dependency-name: vite dependency-version: 7.3.2 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com>
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 7794cf0. Configure here.
| }, | ||
| "engines": { | ||
| "node": "^18.0.0 || ^20.0.0 || >=22.0.0" | ||
| "node": "^20.19.0 || >=22.12.0" |
There was a problem hiding this comment.
Vite 7 drops Node 18 support, Dockerfile uses Node 18
Medium Severity
vite 7.3.2 requires node: ^20.19.0 || >=22.12.0, dropping Node 18 support. The project's Dockerfile uses node:18-alpine and scripts/build.js targets node18. While the Docker build itself uses esbuild (not vite), running npm test (which invokes vitest, which depends on vite) on Node 18 environments will fail. Any CI pipeline or developer using Node 18 will be broken for testing workflows.
Reviewed by Cursor Bugbot for commit 7794cf0. Configure here.


Bumps vite from 6.3.5 to 7.3.2.
Release notes
Sourced from vite's releases.
... (truncated)
Changelog
Sourced from vite's changelog.
... (truncated)
Commits
cc383e0release: v7.3.209d8c90fix: avoid path traversal with optimize deps sourcemap handler (#22161)f8103ccfix: checkserver.fsafter stripping query as well (#22160)19db0f2fix: backport #22159, apply server.fs check to env transport (#22162)95e8923release: v7.3.19d39d37feat: addignoreOutdatedRequestsoption tooptimizeDeps(#21364)acf7e05release: v7.3.0cff26ecfeat(deps): update esbuild from ^0.25.0 to ^0.27.0 (#21183)317b3b2release: v7.2.7721f163fix: plugin shortcut support (#21211)Maintainer changes
This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for vite 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.
Note
Medium Risk
Upgrades the build/tooling stack (Vite and its transitive deps), which can change bundling behavior and Node engine requirements; runtime code isn’t directly modified but dev/build workflows may break on older Node versions.
Overview
Updates the
google-calendar-mcplockfile to upgrade Vite from6.3.5to7.3.2, pulling in newer transitive tooling deps (notablyesbuild0.27.x,rollup,postcss,tinyglobby,fdir, andpicomatch) and adding additional platform-specific@esbuild/*optional packages.This also reflects stricter Node engine constraints for the Vite dependency (
^20.19.0 || >=22.12.0) as captured inpackage-lock.json.Reviewed by Cursor Bugbot for commit 7794cf0. Bugbot is set up for automated code reviews on this repo. Configure here.