-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Comparing changes
Open a pull request
base repository: rollup/rollup
base: v4.62.0
head repository: rollup/rollup
compare: v4.62.1
- 9 commits
- 146 files changed
- 7 contributors
Commits on Jun 19, 2026
-
chore(deps): lock file maintenance minor/patch updates (#6420)
* chore(deps): lock file maintenance minor/patch updates * 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 d89b90a - Browse repository at this point
Copy the full SHA d89b90aView commit details -
chore(deps): update msys2/setup-msys2 digest to 66cd2cc (#6417)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for ecd164b - Browse repository at this point
Copy the full SHA ecd164bView commit details -
chore(deps): update dependency eslint-plugin-unicorn to v66 (#6419)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 1d6db3d - Browse repository at this point
Copy the full SHA 1d6db3dView commit details -
fix(deps): update minor/patch updates (#6418)
* fix(deps): update minor/patch updates * Fix dependency update --------- 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 dfac590 - Browse repository at this point
Copy the full SHA dfac590View commit details -
fix: advance value past wildcard prefix before suffix check in getLog…
…Filter (#6415) The wildcard pattern matching in testFilter checked whether the value started with the prefix (parts[0]) but did not advance the search position past it before checking the suffix. This caused false positive matches when the prefix and suffix were the same string and the value was exactly equal to one copy of that string. For example, the pattern 'code:foo*foo' incorrectly matched { code: 'foo' } because 'foo'.startsWith('foo') is true AND 'foo'.endsWith('foo') is true, even though the wildcard '*' would need to match -3 characters (impossible). The fix slices value past parts[0] after the prefix check so that the suffix search only operates on the remaining substring. Co-authored-by: JSap0914 <JSap0914@users.noreply.github.com> Co-authored-by: Lukas Taegert-Atkinson <lukastaegert@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 2cd8194 - Browse repository at this point
Copy the full SHA 2cd8194View commit details -
Use import attributes for importing JSON (#6393)
* Use import attributes for importing JSON * Apply review comments --------- Co-authored-by: Lukas Taegert-Atkinson <lukas.taegert-atkinson@tngtech.com>
Configuration menu - View commit details
-
Copy full SHA for 532bd0a - Browse repository at this point
Copy the full SHA 532bd0aView commit details -
fix: insert conflict numbers before first extension in multi-extensio…
…n filenames (#6408) * fix: insert conflict numbers before first extension in multi-extension filenames makeUnique used node:path extname() which returns only the last extension, so a chunkFileNames pattern like "chunk.d.ts" would produce "chunk.d2.ts" on conflict instead of the correct "chunk2.d.ts". TypeScript declaration chunks generated with rollup-plugin-dts are a common example where this matters because the toolchain requires the full .d.ts extension. Replace the extname() call with a helper that finds the first dot in the filename (skipping a leading dot in hidden-file names) so that all trailing extensions are preserved as a unit when the dedup index is inserted. Fixes #5822 * fix: inline getFirstExtension and fix prettier formatting per review Apply lukastaegert's review comments: inline the getFirstExtension helper directly into makeUnique, working with dotIndex to avoid the Math.max call, and always start the dot search at index 1 instead of conditionally skipping dotfiles. Also fix a prettier line-length violation in the test config. * Ignore dots in directory names and improve coverage --------- Co-authored-by: Lukas Taegert-Atkinson <lukas.taegert-atkinson@tngtech.com>
Configuration menu - View commit details
-
Copy full SHA for 1ba1fc2 - Browse repository at this point
Copy the full SHA 1ba1fc2View commit details -
Configuration menu - View commit details
-
Copy full SHA for d1e8297 - Browse repository at this point
Copy the full SHA d1e8297View commit details -
Configuration menu - View commit details
-
Copy full SHA for caacf70 - Browse repository at this point
Copy the full SHA caacf70View 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.62.0...v4.62.1