Skip to content

chore(deps): update rspack dependencies - #79

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/rspack-deps
Open

chore(deps): update rspack dependencies#79
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/rspack-deps

Conversation

@renovate

@renovate renovate Bot commented Jun 7, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update Pending
@rspack/core (source) 2.0.52.2.1 age confidence dependencies minor
rspack_binding_build (source) =0.100.5=0.102.0 age confidence workspace.dependencies minor 0.102.1
rspack_binding_builder (source) =0.100.5=0.102.0 age confidence workspace.dependencies minor 0.102.1
rspack_binding_builder_macros (source) =0.100.5=0.102.0 age confidence workspace.dependencies minor 0.102.1
rspack_cacheable =0.100.5=0.102.0 age confidence workspace.dependencies minor 0.102.1
rspack_collections (source) =0.100.5=0.102.0 age confidence workspace.dependencies minor 0.102.1
rspack_core =0.100.5=0.102.0 age confidence workspace.dependencies minor 0.102.1
rspack_error =0.100.5=0.102.0 age confidence workspace.dependencies minor 0.102.1
rspack_hook =0.100.5=0.102.0 age confidence workspace.dependencies minor 0.102.1

Release Notes

web-infra-dev/rspack (@​rspack/core)

v2.2.1

Compare Source

Highlights

Corrected compact-hashed IDs naming

Rspack 2.2.0 introduced compact hashed module and chunk IDs under the mistakenly named compat-hashed option and CompatHashedModuleIdsPlugin / CompatHashedChunkIdsPlugin APIs. Rspack 2.2.1 corrects these names to compact-hashed, CompactHashedModuleIdsPlugin, and CompactHashedChunkIdsPlugin.

The names introduced in 2.2.0 remain available as deprecated compatibility aliases, but we recommend upgrading to Rspack 2.2.1 and using the corrected names:

module.exports = {
  optimization: {
    moduleIds: 'compact-hashed',
    chunkIds: 'compact-hashed',
  },
};

What's Changed

New Features 🎉
Performance 🚀
Bug Fixes 🐞
Refactor 🔨
Document 📖
Other Changes

New Contributors

Full Changelog: web-infra-dev/rspack@v2.2.0...v2.2.1

v2.2.0

Compare Source

What's Changed

🎉 See Announcing Rspack 2.2 for more details.

New Features 🎉
Performance 🚀
Bug Fixes 🐞
Refactor 🔨
Document 📖
Other Changes

New Contributors

Full Changelog: web-infra-dev/rspack@v2.1.10...v2.2.0

v2.1.10

Compare Source

[!NOTE]
Removed noisy import.meta warnings

Rspack 2.1.9 introduced warnings for unknown import.meta properties. Because they proved overly noisy in real-world builds, Rspack 2.1.10 removes them to reduce unnecessary diagnostics for custom or runtime-specific extensions. See #​15166 for detail.

What's Changed
New Features 🎉
Bug Fixes 🐞
Refactor 🔨
Document 📖
Other Changes
New Contributors

Full Changelog: web-infra-dev/rspack@v2.1.9...v2.1.10

v2.1.9

Compare Source

What's Changed

New Features 🎉
Performance 🚀
Bug Fixes 🐞
Refactor 🔨
Document 📖
Other Changes

New Contributors

Full Changelog: web-infra-dev/rspack@v2.1.8...v2.1.9

v2.1.8

Compare Source

Highlights

Persistent cache storage options now align with webpack

Rspack now supports cache.name and cache.storage.location, aligning with webpack's persistent cache semantics. cache.storage.directory is now the base directory, while the final cache location defaults to <directory>/<cache.name>. Default cache paths remain unchanged.

If you previously used storage.directory as the exact cache path, migrate it to storage.location. Existing cache data is not migrated automatically.

cache: {
  type: 'persistent',
  storage: {
    type: 'filesystem',
-   directory: '/custom/cache',
+   location: '/custom/cache',
  },
}

What's Changed

New Features 🎉
Performance 🚀
Bug Fixes 🐞
Refactor 🔨
  • refactor(binding): replace compilation pointers with compilation ids by @​SyMind in #​14988
Document 📖
Other Changes

Note

PR body was truncated to here.


Configuration

📅 Schedule: (in timezone Asia/Shanghai)

  • Branch creation
    • Between 12:00 AM and 03:59 AM, on day 1 and 15 of the month (* 0-3 1,15 * *)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot added the dependencies label Jun 7, 2026
@renovate
renovate Bot force-pushed the renovate/rspack-deps branch from b3515f8 to e109045 Compare June 13, 2026 19:49
@coderabbitai

coderabbitai Bot commented Jun 13, 2026

Copy link
Copy Markdown

Review Change Stack

📝 Walkthrough

Walkthrough

This pull request updates rspack ecosystem dependencies across the project from versions 0.100.5 and 2.0.5 to 0.100.8 and 2.0.8. The Cargo.toml file pins eight Rust crates in [workspace.dependencies] to the new version, including core crates (rspack_cacheable, rspack_collections, rspack_core, rspack_error, rspack_hook) and binding crates (rspack_binding_build, rspack_binding_builder, rspack_binding_builder_macros). The package.json file updates the @rspack/core npm dependency to the corresponding JavaScript version. No other sections or functionality are modified.

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
Title check ✅ Passed The title clearly and concisely identifies the primary change: updating Rspack dependencies.
Description check ✅ Passed The description is directly related to the dependency updates and provides package changes, release notes, and Renovate metadata.
✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch renovate/rspack-deps

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.

@renovate
renovate Bot force-pushed the renovate/rspack-deps branch 4 times, most recently from 4abe0d3 to 732a9ea Compare June 30, 2026 07:56
@renovate
renovate Bot force-pushed the renovate/rspack-deps branch from 732a9ea to aa853db Compare July 7, 2026 14:51
@renovate

renovate Bot commented Jul 7, 2026

Copy link
Copy Markdown
Contributor Author

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path Cargo.toml --workspace
    Updating crates.io index
error: failed to select a version for `napi`.
    ... required by package `rspack_binding_api v0.102.0`
    ... which satisfies dependency `rspack_binding_api = "=0.102.0"` of package `rspack_binding_builder v0.102.0`
    ... which satisfies dependency `rspack_binding_builder = "=0.102.0"` of package `binding v0.0.0 (/tmp/renovate/repos/github/rstackjs/rspack-binding-template/crates/binding)`
versions that meet the requirements `^3.10.5` are: 3.12.2, 3.12.1, 3.12.0, 3.11.0, 3.10.5

all possible versions conflict with previously selected packages

  previously selected package `napi v3.8.6`
    ... which satisfies dependency `napi = "=3.8.6"` of package `binding v0.0.0 (/tmp/renovate/repos/github/rstackjs/rspack-binding-template/crates/binding)`

failed to select a version for `napi` which could resolve this conflict

@renovate
renovate Bot force-pushed the renovate/rspack-deps branch 3 times, most recently from bcacb66 to dc49886 Compare July 13, 2026 13:18
@renovate
renovate Bot enabled auto-merge (squash) July 13, 2026 13:18
@renovate renovate Bot removed the dependencies label Jul 13, 2026
@renovate
renovate Bot force-pushed the renovate/rspack-deps branch 3 times, most recently from e21ca15 to 865b851 Compare July 18, 2026 01:11
@chenjiahan
chenjiahan requested a review from SyMind July 20, 2026 02:07
@renovate
renovate Bot force-pushed the renovate/rspack-deps branch 3 times, most recently from 1bdd6c4 to 76dffc8 Compare July 22, 2026 12:38
@renovate
renovate Bot force-pushed the renovate/rspack-deps branch 4 times, most recently from e44b13d to 4b1ba03 Compare August 4, 2026 11:37
@renovate
renovate Bot force-pushed the renovate/rspack-deps branch 3 times, most recently from 947a1cf to 7462468 Compare August 12, 2026 15:57
@renovate
renovate Bot force-pushed the renovate/rspack-deps branch from 7462468 to 9134e95 Compare August 13, 2026 11:51
@renovate
renovate Bot force-pushed the renovate/rspack-deps branch from 9134e95 to 6a9b656 Compare August 14, 2026 17:30
@renovate
renovate Bot force-pushed the renovate/rspack-deps branch 2 times, most recently from d5c0516 to dad690a Compare August 27, 2026 02:53
@renovate
renovate Bot force-pushed the renovate/rspack-deps branch from dad690a to 2e191ff Compare August 27, 2026 12:17
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.

1 participant