chore(release): new release#288
Merged
Merged
Conversation
a7f5373 to
53210a9
Compare
c50c2ff to
24ecb29
Compare
97981a5 to
71b5e02
Compare
47ad92d to
13af9fd
Compare
f421827 to
d82d1fa
Compare
d82d1fa to
c83fda6
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
watchpack@2.5.2
Patch Changes
fix: retry
fs.lstaton transientEBUSYerrors instead of emitting a spuriousremoveevent (fixes Webpack watch stops if one of the output files is busy #223, Watch Mode stops functioning if emitted file is busy or locked #44). The retry count is controlled by theWATCHPACK_RETRIESenvironment variable (default:3; set to0or"false"to disable retrying). (by @alexander-akait in #293)Improve perfomance for ignored and improve perfomance for reduce plan. (by @alexander-akait in #289)
perf: speed up
ignoredmatchers (~35–45% faster on POSIX paths) andreducePlan(~20–40% faster on medium and large plans). Also adds a tinybench suite underbench/and a CodSpeed GitHub Actions workflow to catch future regressions. (by @alexander-akait in #287)fix: don't log "Watchpack Error (initial scan)" for unreadable entries inside a watched parent directory, e.g.
pagefile.syson WSL or/efion Linux (fixes Watchpack Error (initial scan): Error: EACCES: permission denied, lstat '/mnt/c/...' #187).EACCES/ENODEV(andEINVALon Windows) errors are now handled likeEPERM/ENOENT/EBUSY: the entry is recorded as missing and the scan continues silently. (by @alexander-akait in #298)fix: prevent unbounded watcher growth when a symlinked directory points back to one of its own ancestors (e.g.
a/b/loop -> ..) withfollowSymlinks: true. Such symlinks are now recorded as plain entries instead of being descended into; symlinks pointing outside the watched tree (Add support for watching symlinks that resolve to paths outside the watch folder #231) behave as before. (by @alexander-akait in #297)