diff --git a/CHANGELOG.md b/CHANGELOG.md index 8271b3b781..1ef9c5d819 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,12 @@ it according to semantic versioning. For example, if your PR adds a breaking cha should change the heading of the (upcoming) version to include a major version bump. --> +# 5.24.5 + +## @rjsf/utils + +- Fixed `package.json` to remove `node` from the `exports` block to fix ESM support + # 5.24.4 ## @rjsf/utils @@ -34,6 +40,7 @@ should change the heading of the (upcoming) version to include a major version b - Rollback [4446](https://github.com/rjsf-team/react-jsonschema-form/pull/4446) due to regression ## Dev / docs / playground + - Fixed issue with selector, where validator was getting refreshed on clicking on anything in selector. [#4472](https://github.com/rjsf-team/react-jsonschema-form/pull/4472) # 5.24.2 diff --git a/packages/utils/package.json b/packages/utils/package.json index 93357daaaa..0785b884b0 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -7,7 +7,6 @@ "description": "Utility functions for @rjsf/core", "exports": { "require": "./dist/index.js", - "node": "./dist/index.js", "import": "./lib/index.js", "types": "./lib/index.d.ts" },