chore(release): new release - #307
Open
github-actions[bot] wants to merge 1 commit into
Open
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
10 times, most recently
from
September 8, 2026 10:50
f3e097d to
f797a03
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
September 8, 2026 13:45
f797a03 to
d6b5add
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
diagnostics-webpack-plugin@1.0.0
Major Changes
quietis gone:reportAssays what a check reports its results as, one value covering its errors and its warnings alike and an object setting them apart, soquiet: trueisreportAs: { warnings: false }. (by @alexander-akait in #317)Renamed from
eslint-webpack-pluginand merged withstylelint-webpack-plugin: one plugin runs every linter through thechecksoption,new DiagnosticsPlugin({ checks: [{ use: "eslint" }, { use: "stylelint" }] }). Errors are reported as webpack errors and warnings as webpack warnings, withreportAsdeciding what each is reported as;stylelintmust be 17 or later. See the migration guides in the README. (by @alexander-akait in #306)Dropped Node.js 20, which is end-of-life. The minimum is now Node.js
>= 22.12.0. (by @alexander-akait in #309)Rewritten as ECMAScript modules. The package is now
"type": "module"and declares anexportsfield, shipping an ESM build next to a CommonJS one, soimport DiagnosticsPlugin from "diagnostics-webpack-plugin"andrequire("diagnostics-webpack-plugin")both keep working. (by @alexander-akait in #308)emitError,emitWarning,failOnErrorandfailOnWarningare onereportAsoption taking"error","warning"orfalse: it says what a check reports its results as, and reporting one as a webpack error is what fails the build. Left unset each result keeps its own severity,quietstill drops the warnings, and the build is no longer aborted from inside the plugin. See the migration table in the README. (by @alexander-akait in #315)Minor Changes
Added ESLint bulk suppressions.
applySuppressionsandsuppressionsLocationreach theESLintclass as they are on ESLint 10, and on ESLint 9.24 and later the plugin applies the suppressions itself, since ESLint only wires them into its CLI there. (by @alexander-akait in #311)Option validation now runs from webpack's
compiler.hooks.validate, so a mistake is reported where webpack validates the rest of the configuration andvalidate: falseturns it off. Where webpack predates the hook, in 5.106, the plugin validates as it did before. (by @alexander-akait in #313)Patch Changes
Lint only the files webpack rebuilt, reporting the rest from the previous compilation, and start linting while the module graph is still being built. (by @alexander-akait in #319)
Replace
globby,micromatchandnormalize-pathwithtinyglobbyandpicomatch, and compile the file matchers once per check rather than on every module. (by @alexander-akait in #316)