diff --git a/CHANGELOG.md b/CHANGELOG.md index 37895bf32af..e0db25d2e59 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # rollup changelog +## 4.17.0 + +_2024-04-27_ + +### Features + +- Track function call arguments to optimize functions only called once or with the same literal values (re-release from 4.16.0) (#5483) + +### Bug Fixes + +- Reduce browser WASM size to a fraction by changing optimization settings (#5494) + +### Pull Requests + +- [#5483](https://github.com/rollup/rollup/pull/5483): feature(fix): function parameter tracking (@liuly0322) +- [#5488](https://github.com/rollup/rollup/pull/5488): Report performance in CI (@TrickyPi) +- [#5489](https://github.com/rollup/rollup/pull/5489): Create FUNDING.json (@BenJam) +- [#5492](https://github.com/rollup/rollup/pull/5492): chore(deps): lock file maintenance minor/patch updates (@renovate[bot]) +- [#5493](https://github.com/rollup/rollup/pull/5493): chore(deps): lock file maintenance minor/patch updates (@renovate[bot]) +- [#5494](https://github.com/rollup/rollup/pull/5494): Use opt-level=z for browser wasm (@sapphi-red) + ## 4.16.4 _2024-04-23_ diff --git a/browser/package.json b/browser/package.json index 440053949e7..2c7a0cbe6b5 100644 --- a/browser/package.json +++ b/browser/package.json @@ -1,6 +1,6 @@ { "name": "@rollup/browser", - "version": "4.16.4", + "version": "4.17.0", "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 c5d83c20141..9134130bf65 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "rollup", - "version": "4.16.4", + "version": "4.17.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "rollup", - "version": "4.16.4", + "version": "4.17.0", "license": "MIT", "dependencies": { "@types/estree": "1.0.5" diff --git a/package.json b/package.json index 62cdaaf6b5d..53477f75af9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rollup", - "version": "4.16.4", + "version": "4.17.0", "description": "Next-generation ES module bundler", "main": "dist/rollup.js", "module": "dist/es/rollup.js",