chore(release): new release - #245
Merged
Merged
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
4 times, most recently
from
July 5, 2026 12:18
2398608 to
720aa64
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
July 5, 2026 19:49
720aa64 to
06feccc
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
webpack-sources@3.5.1
Patch Changes
perf: stream potential tokens in OriginalSource instead of materialising an array (by @alexander-akait in #246)
OriginalSource.streamChunks(and thereforemap()/sourceAndMap()) previously built the fullsplitIntoPotentialTokensarray of substrings and then iterated it — even thoughmap()andsourceAndMap()run withfinalSource: trueand discard every chunk substring. The scan is now streamed by offset, so chunk substrings are only allocated when actually emitted. This removes the intermediate array and, on the dominant final-source paths, all per-token slices:map()/sourceAndMap()allocate ~38–46% less memory and run ~15–40% faster.Reduce allocations and CPU in
map()/sourceAndMap(): mappings are serialized into a reused byte buffer instead of per-mapping strings,ReplaceSourceverifies original content through a line-offset index instead of splitting sources into line arrays, andReplaceSource.streamChunksemits position-only chunks and returns the final source directly whenfinalSourceis requested. (by @alexander-akait in #251)Skip sorting ReplaceSource replacements when they were added in order. (by @alexander-akait in #249)
perf: use lookup table in splitIntoPotentialTokens for faster character classification (by @xiaoxiaojx in #240)
Replace multi-comparison chains (4 comparisons in phase 1, 6 in phase 2) with a single Uint8Array bitmask lookup per character. This reduces per-character branching overhead, yielding ~7% improvement on typical source and ~21% on large sources.