diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a6943d59..4dabd1e77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # rollup changelog +## 4.25.0 + +_2024-11-09_ + +### Features + +- Add `output.sourcemapDebugIds` option to add matching debug ids to sourcemaps and code for tools like Sentry or Rollbar (#5712) + +### Bug Fixes + +- Make it easier to manually reproduce base16 hashes by using a more standard base16 conversion algorithm (#5719) + +### Pull Requests + +- [#5712](https://github.com/rollup/rollup/pull/5712): feat: Add support for injecting Debug IDs (@timfish) +- [#5717](https://github.com/rollup/rollup/pull/5717): fix(deps): update swc monorepo (major) (@renovate[bot]) +- [#5718](https://github.com/rollup/rollup/pull/5718): chore(deps): lock file maintenance minor/patch updates (@renovate[bot]) +- [#5719](https://github.com/rollup/rollup/pull/5719): Use a less surprising base-16 encoding (@lukastaegert) + ## 4.24.4 _2024-11-04_ diff --git a/browser/package.json b/browser/package.json index 84f5b8f6c..5819c749b 100644 --- a/browser/package.json +++ b/browser/package.json @@ -1,6 +1,6 @@ { "name": "@rollup/browser", - "version": "4.24.4", + "version": "4.25.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 8010e3514..a19eb449c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "rollup", - "version": "4.24.4", + "version": "4.25.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "rollup", - "version": "4.24.4", + "version": "4.25.0", "license": "MIT", "dependencies": { "@types/estree": "1.0.6" diff --git a/package.json b/package.json index 70e11ef37..c24d24560 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rollup", - "version": "4.24.4", + "version": "4.25.0", "description": "Next-generation ES module bundler", "main": "dist/rollup.js", "module": "dist/es/rollup.js",