-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Comparing changes
Open a pull request
base repository: rollup/rollup
base: v4.60.1
head repository: rollup/rollup
compare: v4.60.2
- 19 commits
- 61 files changed
- 6 contributors
Commits on Apr 4, 2026
-
chore(deps): lock file maintenance (#6335)
* chore(deps): lock file maintenance * Resolve audit --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Lukas Taegert-Atkinson <lukas.taegert-atkinson@tngtech.com>
Configuration menu - View commit details
-
Copy full SHA for ca60daf - Browse repository at this point
Copy the full SHA ca60dafView commit details -
fix(deps): update minor/patch updates (#6331)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 6e49b22 - Browse repository at this point
Copy the full SHA 6e49b22View commit details -
chore(deps): update dependency eslint-plugin-unicorn to v64 (#6333)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 6d9e040 - Browse repository at this point
Copy the full SHA 6d9e040View commit details -
fix(deps): update rust crate swc_compiler_base to v51 (#6334)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 064b977 - Browse repository at this point
Copy the full SHA 064b977View commit details -
chore(deps): update codecov/codecov-action action to v6 (#6332)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 186b352 - Browse repository at this point
Copy the full SHA 186b352View commit details
Commits on Apr 12, 2026
-
chore(deps): lock file maintenance (#6349)
* chore(deps): lock file maintenance * Resolve audit --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Lukas Taegert-Atkinson <lukas.taegert-atkinson@tngtech.com>
Configuration menu - View commit details
-
Copy full SHA for fe4857a - Browse repository at this point
Copy the full SHA fe4857aView commit details -
fix(deps): update minor/patch updates (#6346)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for cf98e07 - Browse repository at this point
Copy the full SHA cf98e07View commit details -
chore(deps): update dependency lru-cache to v11 (#6347)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 0f75545 - Browse repository at this point
Copy the full SHA 0f75545View commit details -
docs: fix various typos in source and documentation (#6327)
Co-authored-by: Lukas Taegert-Atkinson <lukastaegert@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 790d545 - Browse repository at this point
Copy the full SHA 790d545View commit details -
fix(deps): update swc monorepo (major) (#6348)
* fix(deps): update swc monorepo * Explain why @napi-rs/cli cannot be updated * Use release build for OpenBSD to reduce size --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Lukas Taegert-Atkinson <lukas.taegert-atkinson@tngtech.com>
Configuration menu - View commit details
-
Copy full SHA for f58d278 - Browse repository at this point
Copy the full SHA f58d278View commit details
Commits on Apr 16, 2026
-
chore(deps): lock file maintenance (#6354)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 1d5bcb4 - Browse repository at this point
Copy the full SHA 1d5bcb4View commit details -
chore(deps): update minor/patch updates (#6351)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 32e8517 - Browse repository at this point
Copy the full SHA 32e8517View commit details -
chore(deps): lock file maintenance (#6355)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for e6d2ff9 - Browse repository at this point
Copy the full SHA e6d2ff9View commit details
Commits on Apr 17, 2026
-
chore(deps): lock file maintenance (#6356)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for fd464a9 - Browse repository at this point
Copy the full SHA fd464a9View commit details -
chore(deps): update dependency lru-cache to v11 (#6353)
* chore(deps): update dependency lru-cache to v11 * Update lockfile --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Lukas Taegert-Atkinson <lukas.taegert-atkinson@tngtech.com>
Configuration menu - View commit details
-
Copy full SHA for 819332e - Browse repository at this point
Copy the full SHA 819332eView commit details -
chore(deps): update cross-platform-actions/action action to v1 (#6352)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 1fa79d0 - Browse repository at this point
Copy the full SHA 1fa79d0View commit details
Commits on Apr 18, 2026
-
Configuration menu - View commit details
-
Copy full SHA for 7542834 - Browse repository at this point
Copy the full SHA 7542834View commit details -
fix: reset variable render names between outputs in the same generate (…
…#6350) When the same input bundle is generated for multiple outputs in one `output` array, `Variable.renderBaseName` set during a chunked output's import deconfliction (e.g. `vendor` for `_` imported from a chunk) was left on the shared `Variable` instance. The next output's `deconflictTopLevelVariables` then skipped that variable because of the existing `renderBaseName`, so the function declaration was rendered as `function vendor._(...)` — invalid JavaScript. Reset `renderBaseName`/`renderName` for the chunk's top-level variables at the start of `setIdentifierRenderResolutions`, before either the exports loop or `deconflictChunk` reassigns them. Co-authored-by: Lukas Taegert-Atkinson <lukastaegert@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 5e6fb9f - Browse repository at this point
Copy the full SHA 5e6fb9fView commit details -
Configuration menu - View commit details
-
Copy full SHA for a6be82b - Browse repository at this point
Copy the full SHA a6be82bView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v4.60.1...v4.60.2