diff --git a/packages/registry/CHANGELOG.md b/packages/registry/CHANGELOG.md index d35a65a0fa..6476128e9a 100644 --- a/packages/registry/CHANGELOG.md +++ b/packages/registry/CHANGELOG.md @@ -8,6 +8,21 @@ +## 2.1.0 (2024-11-05) + +### Feature + +- Allow any type `js`, `cjs`, `mjs`, `ts` as configuration for the add-on registry. @sneridagh [#6458](https://github.com/plone/volto/issues/6458) + +### Bugfix + +- Fix ERR_REQUIRE from ESM module requiring CJS module. @sneridagh [#6458](https://github.com/plone/volto/issues/6458) +- Fix types for add-on's TypeScript. Fix `.tsconfig` for Node.js side. @sneridagh [#6461](https://github.com/plone/volto/issues/6461) + +### Internal + +- Replace `parcel` with `tsup` for build. @sneridagh [#6461](https://github.com/plone/volto/issues/6461) + ## 2.0.0 (2024-10-31) ### Internal diff --git a/packages/registry/news/6458.bugfix b/packages/registry/news/6458.bugfix deleted file mode 100644 index e5a6eceff0..0000000000 --- a/packages/registry/news/6458.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix ERR_REQUIRE from ESM module requiring CJS module. @sneridagh diff --git a/packages/registry/news/6458.feature b/packages/registry/news/6458.feature deleted file mode 100644 index 30054385d5..0000000000 --- a/packages/registry/news/6458.feature +++ /dev/null @@ -1 +0,0 @@ -Allow any type `js`, `cjs`, `mjs`, `ts` as configuration for the add-on registry. @sneridagh diff --git a/packages/registry/news/6461.bugfix b/packages/registry/news/6461.bugfix deleted file mode 100644 index ec4a0ab820..0000000000 --- a/packages/registry/news/6461.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix types for add-on's TypeScript. Fix `.tsconfig` for Node.js side. @sneridagh diff --git a/packages/registry/news/6461.internal b/packages/registry/news/6461.internal deleted file mode 100644 index 47e581e30f..0000000000 --- a/packages/registry/news/6461.internal +++ /dev/null @@ -1 +0,0 @@ -Replace `parcel` with `tsup` for build. @sneridagh diff --git a/packages/registry/package.json b/packages/registry/package.json index 588d36f8d4..2f4d144163 100644 --- a/packages/registry/package.json +++ b/packages/registry/package.json @@ -9,7 +9,7 @@ ], "funding": "https://github.com/sponsors/plone", "license": "MIT", - "version": "2.0.0", + "version": "2.1.0", "repository": { "type": "git", "url": "https://github.com/plone/volto.git"