Upgrading Rsbuild
This section explains how to upgrade your project's Rsbuild dependencies to the latest version.
Tip
See npm - @rsbuild/core to view the latest version.
Semantic versioning
Rsbuild follows the Semantic Versioning specification.
- Major version: contains incompatible API changes.
- Minor version: contains backward compatible features and fixes.
- Patch version: contains backward compatible bug fixes.
Changelog
Visit GitHub - release to view the changes for each version of Rsbuild.
Using taze
We recommend using Taze to upgrade the Rsbuild version. Taze is a CLI tool for updating npm dependencies.
Usage
Run the following command to upgrade all dependencies that include rsbuild in their names:
The result will look similar to:
You can also adjust the include pattern to match specific packages. For example, to upgrade only packages under the @rsbuild scope:
Options
Here are some examples of using Taze options:
- In a monorepo, you can add the
-roption to upgrade recursively:
- Add
-lto upgrade locked versions:
- To upgrade to a major version:
For more options, please refer to the taze documentation.

