diff --git a/CHANGELOG.md b/CHANGELOG.md index f0befdeffea..3f9dc91f975 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # rollup changelog +## 4.14.2 + +_2024-04-12_ + +### Bug Fixes + +- Do not create invalid code when reexporting both a namespace and the default export from that namespace (#5466) +- Ensure ppc64 platform is properly detected (#5460) + +### Pull Requests + +- [#5456](https://github.com/rollup/rollup/pull/5456): Add high-level architecture documentation (@lukastaegert) +- [#5460](https://github.com/rollup/rollup/pull/5460): Fix ppc64le target (@lukastaegert) +- [#5463](https://github.com/rollup/rollup/pull/5463): chore: tweak the comment about files should not be edited (@TrickyPi) +- [#5466](https://github.com/rollup/rollup/pull/5466): Ensure reexported namespaces do not prevent creation of default export helpers (@lukastaegert) +- [#5468](https://github.com/rollup/rollup/pull/5468): chore(deps): update dependency eslint-plugin-unicorn to v52 (@renovate[bot], @lukastaegert) +- [#5469](https://github.com/rollup/rollup/pull/5469): chore(deps): lock file maintenance minor/patch updates (@renovate[bot]) +- [#5470](https://github.com/rollup/rollup/pull/5470): chore(deps): lock file maintenance (@renovate[bot]) + ## 4.14.1 _2024-04-07_ diff --git a/browser/package.json b/browser/package.json index bc9ae36601e..a967d6031fb 100644 --- a/browser/package.json +++ b/browser/package.json @@ -1,6 +1,6 @@ { "name": "@rollup/browser", - "version": "4.14.1", + "version": "4.14.2", "description": "Next-generation ES module bundler browser build", "main": "dist/rollup.browser.js", "module": "dist/es/rollup.browser.js", diff --git a/package-lock.json b/package-lock.json index c0b36008e03..9c26a32ca42 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "rollup", - "version": "4.14.1", + "version": "4.14.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "rollup", - "version": "4.14.1", + "version": "4.14.2", "license": "MIT", "dependencies": { "@types/estree": "1.0.5" diff --git a/package.json b/package.json index 47492b5a8f2..d2f531da120 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rollup", - "version": "4.14.1", + "version": "4.14.2", "description": "Next-generation ES module bundler", "main": "dist/rollup.js", "module": "dist/es/rollup.js",