diff --git a/CHANGELOG.md b/CHANGELOG.md index 346f94200b5..24c979ac24a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # rollup changelog +## 4.6.0 + +_2023-11-26_ + +### Features + +- Allow `this.addWatchFile` in all plugin hooks (#5270) + +### Bug Fixes + +- Show helpful error when native binaries are not installed due to an `npm` issue (#5267) +- Do not access `this` context in `this.addWatchFile` so it does not need to be bound when passed around (#5270) + +### Pull Requests + +- [#5267](https://github.com/rollup/rollup/pull/5267): Add friendly error for npm bug (@sapphi-red) +- [#5270](https://github.com/rollup/rollup/pull/5270): Allow this.addWatchFile in all hooks (@lukastaegert) +- [#5272](https://github.com/rollup/rollup/pull/5272): Debug deployed graphs (@lukastaegert) + ## 4.5.2 _2023-11-24_ diff --git a/browser/package.json b/browser/package.json index a78527b915d..1bf338aea55 100644 --- a/browser/package.json +++ b/browser/package.json @@ -1,6 +1,6 @@ { "name": "@rollup/browser", - "version": "4.5.2", + "version": "4.6.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 f970a638dde..2d7360dcb7b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "rollup", - "version": "4.5.2", + "version": "4.6.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "rollup", - "version": "4.5.2", + "version": "4.6.0", "license": "MIT", "bin": { "rollup": "dist/bin/rollup" diff --git a/package.json b/package.json index 76c698abb44..c9dfc92e91d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rollup", - "version": "4.5.2", + "version": "4.6.0", "description": "Next-generation ES module bundler", "main": "dist/rollup.js", "module": "dist/es/rollup.js",