chore(release): new release#561
Merged
Merged
Conversation
b4b6695 to
e63e2d7
Compare
cfef6ce to
1969be4
Compare
1969be4 to
595d327
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
enhanced-resolve@5.21.1
Patch Changes
Allocation-free reductions on hot-path code: hoist
/#/g,/\$/gand/\\/gto module-level constants and gate the corresponding.replacecalls behindincludes(…)so paths/queries/requests without the match char skip the regex state machine entirely (the common case); share a singleEMPTY_NO_MATCHtuple instead of allocating[[], null]per "no match" / "no condition matched" return; switchdirectMapping'sfor...ofovermappingTargetand inner results to indexed loops to avoid iterator-object allocation per call; inlineisConditionalMappingat its two hot-path call sites and merge the duplicatedefault/conditionNames.has(condition)branches incomputeConditionalMapping; replaceinvalidSegmentRegEx.exec(…) !== nullwith.test(…)(no match-array allocation); drop the deaddeprecatedInvalidSegmentRegEx.test(…) !== nullclause inImportsFieldPlugin(.testreturns boolean;true !== nullandfalse !== nullare both true, so it was&& true); drop the redundantrelativePath.length === 0guard before!startsWith("./")inExportsFieldPlugin(the empty-string case is already covered). (by @alexander-akait in #558)restore plugin compatibility for
[...resolveContext.stack]iteration (by @alexander-akait in #569)fix
TsconfigPathsPluginto supportresolveSyncwithuseSyncFileSystemCalls(by @alexander-akait in #572)