I've noticed that `6.0.0-beta.1` for [@rjsf/core](https://www.npmjs.com/package/@rjsf/core), [@rjsf/mui](https://www.npmjs.com/package/@rjsf/mui), etc. is `latest`:  This means that `npm install @rjsf/core` resolves to `6.0.0-beta.1` instead of `5.24.10`. Until v6 has reached stability, I suggest modifying dist-tags on npm: https://docs.npmjs.com/cli/v11/commands/npm-dist-tag Example: ```sh npm dist-tag add @rjsf/core@6.0.0-beta.1 canary npm dist-tag add @rjsf/core@5.24.10 latest ``` You don't need to re-publish packages to do this.