feat(deps): upgrade upstream dependencies#1406
Merged
Conversation
- rolldown: 27cb729 -> v1.0.0-rc.16 (edec4fa) - tsdown: 0.21.8 -> 0.21.9 - oxlint-tsgolint: 0.21.0 -> 0.21.1 - @vitejs/devtools: 0.1.13 -> 0.1.14 Code changes: - Cargo.toml: bump oxc crates 0.123.0 -> 0.126.0, add oxc_str, bump jsonschema 0.45.0 -> 0.46.0, add path-posix 0.0.1, drop smallvec - packages/cli/src/pack-bin.ts: adapt to new resolveUserConfig/ buildWithConfigs signature (configFiles: string[] -> configDeps: Set<string>) - pnpm-workspace.yaml: add import-without-cache and logs-sdk to minimumReleaseAgeExclude
✅ Deploy Preview for viteplus-preview canceled.
|
fengmk2
approved these changes
Apr 17, 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.
Summary
rolldowntov1.0.0-rc.16and re-merges its Cargo workspace,pulling in
oxc0.126.0,jsonschema0.46.0, and a newpath-posixdependency while dropping the unused
smallvecentry.tsdownto0.21.9,oxlint-tsgolintto0.21.1, and@vitejs/devtoolsto0.1.14.packages/cli/src/pack-bin.tsto the newresolveUserConfig/buildWithConfigssignature.Dependency updates
rolldown27cb729v1.0.0-rc.16 (edec4fa)tsdown0.21.80.21.9oxlint-tsgolint0.21.00.21.1@vitejs/devtools0.1.130.1.14Unchanged dependencies
vite:v8.0.8 (6e585dc)vitest:4.1.4@oxc-node/cli:0.1.0@oxc-node/core:0.1.0oxfmt:0.45.0oxlint:1.60.0Code changes
Cargo.toml: bumpoxcworkspace crates from0.123.0to0.126.0,add
oxc_str, bumpjsonschemafrom0.45.0to0.46.0, addpath-posix = "0.0.1", and drop the unusedsmallvecentry (rolldownworkspace re-merge).
packages/cli/src/pack-bin.ts: switch fromconfigFiles: string[]toconfigDeps: Set<string>and forward it toresolveUserConfig/buildWithConfigsto match the updated upstream signature.pnpm-workspace.yaml: addimport-without-cacheandlogs-sdktominimumReleaseAgeExclude.Cargo.lockandpnpm-lock.yamlregenerated to reflect the above.Build status
sync-remote-and-build: failurebuild-upstream: successNote
Medium Risk
Medium risk due to broad upstream dependency upgrades (notably
rolldown/oxc/jsonschema) that can change bundling/parsing behavior and introduce new transitive deps, plus a small CLI integration adjustment for updated config/build APIs.Overview
Upgrades upstream Rust and JS toolchain dependencies, including bumping
rolldown(pullingoxcto0.126.0andjsonschemato0.46.0), adding new deps likepath-posix/oxc_str, and refreshing lockfiles accordingly.Updates the
vp packCLI (packages/cli/src/pack-bin.ts) to track config dependency paths via aSetand pass them into the updatedresolveUserConfig/buildWithConfigssignatures. Also bumps@vitejs/devtools,tsdown, andoxlint-tsgolint, and adjusts workspace minimum-release-age exclusions for newly introduced packages.Reviewed by Cursor Bugbot for commit 8518b66. Bugbot is set up for automated code reviews on this repo. Configure here.