January 10, 2024
Announcing Rsbuild 0.3

Rsbuild 0.3 version has upgraded Rspack to 0.5 and now supports Module Federation. In addition, it includes some incompatible API changes. Please refer to the current documentation for upgrading.
Rspack 0.5
Bump Rspack to v0.5.0, see: Rspack 0.5 Release Announcement
Notable changes:
TOML / YAML plugin
The need to import TOML and YAML in JS is not common, so Rsbuild core will no longer support import TOML and YAML by default in v0.3.0.
The TOML and YAML plugin will become a independent plugin:
- TOML:
- YAML:
JavaScript API
Some JavaScript APIs have changed:
- The
printURLsoption ofrsbuild.startDevServeris deprecated, use server.printUrls instead. - The
loggeroption ofrsbuild.startDevServeris deprecated, use logger.override() instead.
Node target
- Adjust default browserslist for node target, from
node >= 14tonode >= 16. - The default value of
output.distPath.serveris changed from'bundles'to'server'

