feat(deps): upgrade upstream dependencies#1375
Merged
Conversation
✅ Deploy Preview for viteplus-preview canceled.
|
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 8249925. Configure here.
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 8249925af9
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
fengmk2
reviewed
Apr 14, 2026
fengmk2
reviewed
Apr 14, 2026
`readJsonFile`, `readYamlFile`, and `readNearestPackageJson` used a type parameter only in the return type, which trips oxlint 1.60's `typescript-eslint/no-unnecessary-type-parameters` rule. Remove the generic (and the `eslint-disable` workarounds) and use `as T` at call sites instead. `editJsonFile` keeps its generic because T is used in both the callback input and output.
fengmk2
reviewed
Apr 14, 2026
oxlint 1.60 validates OXLINT_TSGOLINT_PATH lazily when tsgolint is actually invoked, not upfront. The check-oxlint-env fixture had no lintable sources, so `vp lint --type-aware` now short-circuits with "No files found to lint" before reaching the path check, silently dropping the assertion that the env-path error is reported. Add a minimal TS source plus a vite.config.ts enabling typeAware so the command reaches tsgolint invocation and again surfaces: "Failed to find tsgolint executable: OXLINT_TSGOLINT_PATH points to './invalid-path' which does not exist".
fengmk2
approved these changes
Apr 14, 2026
Han5991
added a commit
to Han5991/vite-plus
that referenced
this pull request
Apr 14, 2026
rolldown upgrade in voidzero-dev#1375 introduced \`path-posix\` in \`rolldown_plugin_vite_import_glob\` but it was not added to the root workspace dependencies, causing \`cargo build\` to fail after \`just init\`. Fixes voidzero-dev#1381 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This was referenced Apr 14, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Automated daily upgrade of upstream dependencies:
Build status: success
Note
Medium Risk
Mostly dependency bumps and snapshot updates, but upgrading
oxlint/oxfmtcan subtly change CLI behavior and output (including lint exit conditions), which may affect CI or user workflows.Overview
Upgrades upstream tooling versions (notably
oxfmt0.45.0,oxlint1.60.0, andtsdown0.21.8, plus related lockfile updates) and alignspackages/corepeer/bundled versions accordingly.Updates CLI snapshot tests to match new outputs/help text (including the new
--no-error-on-unmatched-patternoption and updated lint/no-files messaging) and applies small lint-suppression comments for generic JSON/YAML/package helpers to satisfy stricter rules.Reviewed by Cursor Bugbot for commit 8249925. Bugbot is set up for automated code reviews on this repo. Configure here.