Skip to content

v2.2.1

Latest

Choose a tag to compare

@LingyuCoder LingyuCoder released this 27 Aug 11:34
· 4 commits to main since this release
ca3ea54

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 馃殌

  • perf(core): store FactorizeInfo path dependencies as compact slices by @stormslowly in #15306

Bug Fixes 馃悶

Refactor 馃敤

Document 馃摉

Other Changes

New Contributors

Full Changelog: v2.2.0...v2.2.1