chore(release): new release - #2393
Merged
Merged
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
6 times, most recently
from
September 2, 2026 17:31
fcdf103 to
c57f179
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
September 2, 2026 19:14
c57f179 to
fd2ae8b
Compare
alexander-akait
added a commit
that referenced
this pull request
Sep 2, 2026
A pull request opened with the repository's own GITHUB_TOKEN does not trigger workflows, so the release pull request never ran lint, the test matrix or the client job -- #2393 has only the two Socket checks on it, and with no checks reported it cannot be merged. The repository already generates an app token for the dependabot auto-merge workflow; the release job now does the same and hands it to changesets/action. v2 takes a custom token through the github-token input rather than the environment variable, which stays set because changeset version runs the changelog generator against the GitHub API.
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
September 3, 2026 02:05
fd2ae8b to
af122f3
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
September 3, 2026 02:38
af122f3 to
8450cca
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-dev-middleware@8.3.0
Minor Changes
Added a
hotoption that enables hot module replacement, replacing the need forwebpack-hot-middleware. Passhot: trueto enable with defaults, orhot: { path, heartbeat, progress, statsOptions }to customize. The client runtime is served by the middleware itself. (by @bjohansebas in #2370)Take the diagnostics a hot payload carries from the
statsoption, so one setting governs what a build reports in the terminal and in the browser:stats: "errors-only"keeps warnings out of both, andstats: falsekeeps errors and warnings out of both, the client's error overlay included — reach for the client's?logging=or?overlay=to quiet the browser alone.hot.statsOptionsis deprecated and will be removed in the next major release; itshash,timingsandchildrenkeys are now ignored, because they could leave a payload without the hash the client compares, or carry a child compilation's hash instead, which stopped updates applying and forced a full page reload on every rebuild. (by @alexander-akait in #2392)Patch Changes
Fixed a crash when calling
invalidate()in plugin mode (isPlugin = true). Since the host (webpack-cli, webpack-dev-server, etc.) ownscompiler.watch(), the middleware now invalidates the host'swatchinginstead (each child compiler's one for aMultiCompileron webpack < 5.109). When nothing is watching it logs a warning and completes the callback, asclose()does, rather than leavinginvalidate(callback)waiting on a build that never runs. (by @bjohansebas in #2378)Reject with
403 Forbiddenthe requests whose resolved filename falls outsideoutputPath(GHSA-g84c-rxfj-3j2c). With apublicPathwithout a trailing slash, a sibling path sharing its prefix (/assets../secret) escaped the output root once the prefix was stripped and joined. (by @bjohansebas in #2404)Update the changelog generator to the
@changesets/get-github-info1.0 API. (by @alexander-akait in #2396)Update dependencies. (by @alexander-akait in #2394)