chore(deps): update rspack monorepo to 0.100.0#81
Conversation
fcf9a3e to
5ec35c4
Compare
📝 WalkthroughWalkthroughThis PR updates the 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 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 `@Cargo.toml`:
- Line 16: The Cargo.toml dependency rspack_sources is inconsistent with the
other rspack packages: change the entry rspack_sources = { version = "0.100.0" }
to pin the exact same version and format as the others by using rspack_sources =
{ version = "=0.100.5" } so it matches the other rspack dependencies'
exact-version constraint and avoids compatibility drift.
🪄 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: Organization UI
Review profile: CHILL
Plan: Pro Plus
Run ID: a2cc5ceb-db22-4c7e-8637-910d4279c167
⛔ Files ignored due to path filters (1)
Cargo.lockis excluded by!**/*.lock
📒 Files selected for processing (1)
Cargo.toml
|
|
||
| async-trait = { version = "0.1" } | ||
| rspack_sources = { version = "0.4.21" } | ||
| rspack_sources = { version = "0.100.0" } |
There was a problem hiding this comment.
Version mismatch with other rspack dependencies.
All other rspack dependencies (lines 9-13) are pinned to exact version =0.100.5, but rspack_sources is being updated to 0.100.0. This creates two issues:
- Version discrepancy:
rspack_sourcesat 0.100.0 while other rspack monorepo packages are at 0.100.5, which may cause compatibility issues. - Constraint inconsistency: Missing the
=prefix that other rspack dependencies use for exact version pinning, allowing any 0.100.x version instead of exactly 0.100.0.
🔧 Suggested fix
-rspack_sources = { version = "0.100.0" }
+rspack_sources = { version = "=0.100.5" }📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
| rspack_sources = { version = "0.100.0" } | |
| rspack_sources = { version = "=0.100.5" } |
🤖 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 `@Cargo.toml` at line 16, The Cargo.toml dependency rspack_sources is
inconsistent with the other rspack packages: change the entry rspack_sources = {
version = "0.100.0" } to pin the exact same version and format as the others by
using rspack_sources = { version = "=0.100.5" } so it matches the other rspack
dependencies' exact-version constraint and avoids compatibility drift.
This PR contains the following updates:
0.4.21→0.100.0Configuration
📅 Schedule: (in timezone Asia/Shanghai)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.