chore(release): new release - #674
Open
github-actions[bot] wants to merge 1 commit into
Open
github-actions[bot] wants to merge 1 commit into
github-actions[bot] wants to merge 1 commit into
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
4 times, most recently
from
September 21, 2026 07:17
485edae to
14a2bd8
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
September 21, 2026 08:31
14a2bd8 to
c1eccfd
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.26.0
Minor Changes
Add experimental support for Node.js package maps through a new
packageMapoption, which takes the path of the configuration file (or afile:URL) or an already-parsedpackagesobject. When it is set, a bare specifier is resolved through the importing package'sdependenciestable and the target package's location is handed to the regular pipeline, instead of walkingnode_modules; relative and absolute requests andnode:builtins are unaffected. Because several package entries may share oneurl, the package a request resolved into is exposed aspackageIdon the result and can be passed back in ascontext.packageIdto resolve from that package unambiguously. Package maps are stability 1 (experimental) in Node.js, and this option tracks that specification and may change with it. (by @alexander-akait in #667)Explain an
exports/importsfield whose conditions wrap subpaths, instead of failing with a message that points at the request. A field shaped like{ "import": { ".": "./esm/index.js", "./*": "./esm/*.js" }, "require": "./build/bundle.js" }is not supported by Node.js: the subpaths inside a condition are read as condition names, so they match nothing, and every request into the package failed as"./foo" is not exported under the conditions [...]— which reads as though the package forgot to export./foo. Such a failure now names the offending keys and shows the arrangement that works, with the subpaths at the top level and the conditions nested inside them. Resolution itself is unchanged: the diagnosis runs only on a request that has already failed, so nothing that resolves today starts failing, and a successful resolve does no extra work. Errors raised while processing either field also name thepackage.jsonthey came from, which previously only appeared in the resolver log. (by @alexander-akait in #676)Generate the published type declarations with TypeScript instead of
webpack/tooling, which is no longer a dependency. Every name the package exported before is still exported, andtypes.d.tsis still the entry point, but the declarations themselves now live intypes/and are emitted bytscfrom the JSDoc inlib/. Two shapes follow the sources more closely than the previous generator did: the object form ofPluginno longer declaresthis: Resolveronapply(it is called asplugin.apply(resolver), sothisis the plugin), and the entries ofResolveContext.stackdeclarename: string | undefinedrather than an optionalname. Class fields that the old generator dropped, such as the cache backends onCachedInputFileSystem, are now part of the declarations. (by @alexander-akait in #675)