Update all non-major dependencies#1297
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
15ccdd9 to
fc2c022
Compare
4baa79e to
19f7d24
Compare
2321bef to
568a1f4
Compare
48d9835 to
8e221b1
Compare
384322a to
2bb2702
Compare
a0c1dd2 to
65af9a9
Compare
96e3aaa to
90d0016
Compare
0171d21 to
4ca7257
Compare
23c0be4 to
b31a629
Compare
42e1d7e to
36920cc
Compare
ae77c93 to
5773141
Compare
cd2e409 to
788a17c
Compare
788a17c to
2be3d18
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 contains the following updates:
4.22.1→4.28.25.3.0→5.6.25.15.0→5.21.69.0.0→9.1.23.1.1→3.10.12.25.4→2.32.027.2.3→27.9.046.8.2→46.10.15.0.0→5.5.57.33.1→7.37.56.0.0→6.5.08.10.2→8.15.93.0.3→3.8.34.0.2→4.1.05.0.1→5.3.25.2.2→5.9.3v0.8.0→v0.10.0Release Notes
browserslist/browserslist (browserslist)
v4.28.2Compare Source
v4.28.1Compare Source
v4.28.0Compare Source
v4.27.0Compare Source
BROWSERSLIST_TRACE_WARNINGenvironment variable.v4.26.3Compare Source
throwOnMissingwithextendsquery (by @alexander-akait).v4.26.2Compare Source
baseline-browser-mappingversion requirement.v4.26.1Compare Source
v4.26.0Compare Source
v4.25.4Compare Source
v4.25.3Compare Source
v4.25.2Compare Source
--permissionsupport (by @broofa).v4.25.1Compare Source
v4.25.0Compare Source
cover 95% in browserslist-config-mycompany statsquery support.v4.24.5Compare Source
v4.24.4Compare Source
v4.24.3Compare Source
v4.24.2Compare Source
caniuse-litewarning text.v4.24.1Compare Source
caniuse-liteupdate to the warning (by @mezhnin).v4.24.0Compare Source
browserslist.findConfigFile()helper (by @JLHwung).v4.23.3Compare Source
>=query forios(by @syi0808).v4.23.2Compare Source
v4.23.1Compare Source
v4.23.0Compare Source
BROWSERSLIST_ROOT_PATH(by @teleclimber).v4.22.3Compare Source
supportsquery (@g-plane).@company/package/browserslist-config(@boucodes).v4.22.2Compare Source
mobileToDesktop(by Aliaksei Sapach).chalk/chalk (chalk)
v5.6.2Compare Source
v5.6.0Compare Source
a8f5bf7v5.5.0Compare Source
79ee2d3v5.4.1Compare Source
navigatornot definedReferenceError(#642)4ebb62dv5.4.0Compare Source
CIRCLECIenvironments to return level 3 color supportf838120webpack/enhanced-resolve (enhanced-resolve)
v5.21.6Compare Source
Patch Changes
Speed up alias resolution on the hot path. (by @alexander-akait in #589)
AliasPlugin/TsconfigPathsPlugin: bucket compiled alias options by the first char code ofname, so resolves skip options whose name can't possibly match the request's first char. Gated to cases with 2+ distinct first chars so degenerate single-bucket lists (e.g. long alias chains) don't pay for theMap.get.TsconfigPathsPlugin: memoize_selectPathsDataForContext(map, requestPath)per map so the per-source-filecontextListscan only runs once per directory. Gated to maps with 2+ contexts so single-context tsconfigs aren't penalized by the cache lookup.Biggest wins on alias-heavy configs (300+ entries):
huge-alias-miss+151%,huge-alias-list+126%,alias-first-char-miss+120%.v5.21.5Compare Source
Patch Changes
61f36fd)v5.21.4Compare Source
Patch Changes
tsconfig: trueis used, walk up parent directories to findtsconfig.json, matching TypeScript's ownfindConfigFilebehavior. (by @xiaoxiaojx in #585)v5.21.3Compare Source
Patch Changes
pathspattern matches but the mapped path does not exist, matching TypeScript's native resolution behavior. Previously, patterns like"@​*"would block scoped npm packages (e.g.@sentry/react) from resolving vianode_modules. (by @xiaoxiaojx in #579)v5.21.2Compare Source
Patch Changes
Fix TsconfigPathsPlugin circular project references causing stack overflow, add support for extending from unscoped npm packages, and use
statinstead ofreadFilefor existence checks in extends resolution. (by @xiaoxiaojx in #575)perf: dedupe miss paths in
DirectoryExistsPlugin/FileExistsPluginand prune the per-resolveTsconfigPathsPlugincontext scan. (by @alexander-akait in #574)perf: drop a dead Map lookup in
findMatchand flattenAliasFieldPlugin's cache check. (by @alexander-akait in #574)perf: hot-path tweaks in
ImportsFieldPlugin,AliasUtils, andutil/entrypoints. (by @alexander-akait in #574)perf: cut per-resolve allocations in
Resolver.parse,loadDescriptionFile, andTsconfigPathsPlugin._selectPathsDataForContext. (by @alexander-akait in #574)v5.21.1Compare Source
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)v5.21.0Compare Source
Minor Changes
Added promise API and support to resolve without
contextandresolveContext. (by @alexander-akait in #520)Add
extensionAliasForExportsoption. Whentrue,extensionAliasalso applies to paths resolved through thepackage.jsonexportsfield. Off by default to match Node.js; opt in for full TypeScript-resolver parity with packages that ship.tssources alongside the compiled.jsthey declare inexports. (by @alexander-akait in #554)Patch Changes
Properly handle DOS device paths (
\\?\…and\\.\…). (by @alexander-akait in #551)Prevent fallback to parent node_modules when the
exportsfield target file is not found. (by @xiaoxiaojx in #495)Imports field spec deviation: non-relative targets (e.g.
"#a": "#b") no longer re-enter imports resolution, aligning with the Node.js ESM spec wherePACKAGE_IMPORTS_RESOLVEdoes not recursively resolve#specifiers. (by @xiaoxiaojx in #503)Previously
{ "#a": "#b", "#b": "./the.js" }would chain-resolve#ato./the.js; now it correctly fails, matching Node.js behavior.Move
cachedJoin/cachedDirname/createCachedBasenamecaches from module-level globals to per-Resolver instances. This prevents unbounded memory growth in long-running processes — when a Resolver is garbage collected, its join/dirname/basename caches are released with it. (by @xiaoxiaojx in #507)Fixed when
tsconfig: trueis used (default config file) and notsconfig.jsonexists. (by @xiaoxiaojx in #502)Apply the
extensionAliasoption to theimportsfield to be align with typescript resolution. (by @alexander-akait in #549)Improved performance of the many plugins. (by @alexander-akait in #529)
Replace the
Set<string>-based resolver stack with a singly-linkedStackEntryclass that exposes a Set-compatible API. (by @xiaoxiaojx in #526)Each
doResolvecall now prepends a single linked-list node instead of cloning the entire Set, making stack push O(1) in time and memory. Recursion detection walks the linked list (O(n)), but because the stack is typically shallow this is much cheaper than cloning a Set per call.Cache the result of
stripJsonComments+JSON.parseinreadJsonusing aWeakMapkeyed by the raw file buffer. This avoids redundant comment-stripping and JSON parsing on every resolve call that reads tsconfig.json files (viastripComments: true), improving TsconfigPathsPlugin warm performance by ~20-35% depending on the depth of theextendschain. (by @xiaoxiaojx in #524)Avoid OOM in CachedInputFileSystem when duration is Infinity. (by @alexander-akait in #527)
v5.20.1Compare Source
Patch Changes
Optimize
TsconfigPathsPluginand fix extends resolution bugs. (by @alexander-akait in #492)Improve resolver cache hit rate. (by @alexander-akait in #492)
v5.20.0Compare Source
Features
baseUrloption to override the tsconfig.json'sbaseUrlFixes
tsconfig.jsontsconfig.jsonv5.19.0Compare Source
Features
tsconfig-paths-webpack-plugin) .v5.18.4Compare Source
Fixes
#/file:schemav5.18.3Compare Source
Fixes
Performance
v5.18.2Compare Source
Fixes
v5.18.1Compare Source
Perf
\0v5.18.0Compare Source
Features
v5.17.1Compare Source
Fixes
exportsandimportsarray target resolvingPerf
v5.17.0Compare Source
Features
defaultcondition to be anywherev5.16.1Compare Source
Bugfixes
v5.16.0Compare Source
Features:
Bugfixes
v5.15.1Compare Source
Bugfixes
pnpapithe issuer belongs toprettier/eslint-config-prettier (eslint-config-prettier)
v9.1.2Compare Source
v9.1.0Compare Source
ESLINT_CONFIG_PRETTIER_NO_DEPRECATEDenvironment variable.import-js/eslint-import-resolver-typescript (eslint-import-resolver-typescript)
v3.10.1Compare Source
Patch Changes
c1d64c3Thanks @JounQin! - chore: bumpunrs-resolverto v1.6.2Full Changelog: import-js/eslint-import-resolver-typescript@v3.10.0...v3.10.1
v3.10.0Compare Source
Minor Changes
#413
89c2795Thanks @JounQin! - chore: housekeeping, bump all (dev) depsMigrate
rspack-resolverto rebrandingunrs-resolverfor more targets support and other bug fixesFull Changelog: import-js/eslint-import-resolver-typescript@v3.9.1...v3.10.0
v3.9.1Compare Source
Patch Changes
4a9176eThanks @JounQin! - fix: userspack-resolverfork for pnp supportv3.9.0Compare Source
Minor Changes
6814443Thanks @JounQin! - feat: migrateenhanced-resolvetooxc-resolverv3.8.7Compare Source
Patch Changes
a14fdd9Thanks @carlocorradini! - fix: include mapper with no files and force non-dynamic projects to use absolute pathsv3.8.6Compare Source
Patch Changes
c9d5ab0Thanks @JounQin! - fix: add support for importing with .js extension as tsx importeev3.8.5Compare Source
Patch Changes
366eeafThanks @carlocorradini! - fix: if file has no corresponding mapper function, apply all of them, starting with the nearest one.v3.8.4Compare Source
Patch Changes
c940785Thanks @JounQin! - fix: support multiple matching ts pathsv3.8.3Compare Source
Patch Changes
#360
8192976Thanks @carlocorradini! - Force tiniglobby to expand dot directories#360
8192976Thanks @carlocorradini! - Update tinyglobby to latest versionv3.8.2Compare Source
Patch Changes
5fd349eThanks @carlocorradini! - Update thetinyglobbyto the latest version to solve performance regressions.v3.8.1Compare Source
Patch Changes
0c6303dThanks @carlocorradini! - Set cwd while resolving tsconfig includev3.8.0Compare Source
Minor Changes
#345
fcc8883Thanks @carlocorradini! - Enable the mapper function just for a set of allowed files. Improves project discovery using glob and POSIX separator.#346
c124e87Thanks @carlocorradini! - Update get-tsconfig to the the latest version. We now support the${configDir}variable, introduced in TypeScript 5.5.v3.7.0Compare Source
Minor Changes
#326
93ea130Thanks @SukkaW! - This version has implemented theeslint-plugin-import-x's v3 resolver interface. This allows you to use import/require to referenceeslint-import-resolver-typescriptdirectly in your ESLint flat config:Previously
Now
Note that this only works with
eslint-plugin-import-x@>=4.5.0. You can't usecreateTypeScriptImportResolverwith the older versions ofeslint-plugin-import-xor any existing versions ofeslint-plugin-import.v3.6.3Compare Source
Patch Changes
#305
f8d7b82Thanks @SukkaW! - Fix resolve fornode:test,node:sea, andnode:sqlitewithout sacrificing installation size#288
a4c6c78Thanks @SunsetTechuila! - fix: ignore bun built-in modulesv3.6.1Compare Source
Patch Changes
cf5d67fThanks @klippx! - Fix CJS import to make it compatible with ESM projectsv3.6.0Compare Source
Minor Changes
b5ea367Thanks @SukkaW! - refactor: dropglobbyandsynckitv3.5.5Compare Source
Patch Changes
84b0649Thanks @JounQin! - fix: mark eslint-module-utils as depv3.5.4Compare Source
Patch Changes
25f3920Thanks @JounQin! - fix: enhanced-resolve is commonjs only - close #213#219
0bf6ffbThanks @lsmurray! - fix: check if cwd changed to bust mapper cachev3.5.3Compare Source
Patch Changes
6531badThanks @marvinhagemeister! - Only try to resolve a module directory when we know that the path is a directory. This can lead to a 15% speedup on projects with many files.v3.5.2Compare Source
Patch Changes
#193
8756a26Thanks @Rialgar! - chore(package): remove node 12 from engines field#187
7a91dafThanks @scott-ut! - fix: resolve modules if folder contains a package.json filev3.5.1Compare Source
Patch Changes
afeb928Thanks @chenxinyanc! - perf: disablethrowIfNoEntryon Node 14+v3.5.0Compare Source
Minor Changes
66a3e6cThanks @JounQin! - feat: reuseeslint-module-utils/hash.jsfor better cachingPatch Changes
00abb6fThanks @JounQin! - fix: incorrect exports mappingv3.4.2Compare Source
Patch Changes
594df9cThanks @HanSeo0507! - chore(deps): update dependency synckit to ^0.8.3 for yarn PnP (#169)v3.4.1Compare Source
Patch Changes
8892a8cThanks @thatsmydoing! - perf: add filesystem caching supportv3.4.0Compare Source
Minor Changes
82d090bThanks @rbong! - feat: add support forjsconfig.jsonv3.3.0Compare Source
Minor Changes
#154
42f2dd6Thanks @JounQin! - feat: addexternsionAliasoption support,.d.([cm]?ts|tsx)are always preferred than.([cm]?js|jsx)typescriptresolvestypescript/lib/typescript.d.tsinstead oftypescript/lib/typescript.jsby default#154
42f2dd6Thanks @JounQin! - feat: exportsglobSync,defaultExtensions,defaultMainFields,defaultConditionNamesanddefaultExtensionAliasfor reusingPatch Changes
#154
42f2dd6Thanks @JounQin! - perf: cacheoptionsandresolver#154
42f2dd6Thanks @JounQin! - chore: align with Angular Package Format correctlyreference: https://angular.io/guide/angular-package-format
#156
4bd60c3Thanks @JounQin! - docs: document options fromenhanced-resolvev3.2.7[Compare Source](https://redirect.
Configuration
📅 Schedule: (in timezone Europe/London)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.