build: update all non-major dependencies #25021
Merged
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:
5.58.0->5.59.05.58.0->5.59.0v3.5.1->v3.5.20.17.16->0.17.170.17.16->0.17.170.17.16->0.17.170.17.16->0.17.174.0.0->4.1.04.0.0->4.1.08.4.21->8.4.228.4.21->8.4.227.4.0->7.5.07.4.0->7.5.04.13.2->4.13.34.13.2->4.13.3Release Notes
typescript-eslint/typescript-eslint (@typescript-eslint/eslint-plugin)
v5.59.0Compare Source
Bug Fixes
Features
typescript-eslint/typescript-eslint (@typescript-eslint/parser)
v5.59.0Compare Source
Note: Version bump only for package @typescript-eslint/parser
actions/checkout
v3.5.2Compare Source
evanw/esbuild
v0.17.17Compare Source
Fix CSS nesting transform for top-level
&(#3052)Previously esbuild could crash with a stack overflow when lowering CSS nesting rules with a top-level
&, such as in the code below. This happened because esbuild's CSS nesting transform didn't handle top-level&, causing esbuild to inline the top-level selector into itself. This release handles top-level&by replacing it with the:scopepseudo-class:Support
exportsinpackage.jsonforextendsintsconfig.json(#3058)TypeScript 5.0 added the ability to use
extendsintsconfig.jsonto reference a path in a package whosepackage.jsonfile contains anexportsmap that points to the correct location. This doesn't automatically work in esbuild becausetsconfig.jsonaffects esbuild's path resolution, so esbuild's normal path resolution logic doesn't apply.This release adds support for doing this by adding some additional code that attempts to resolve the
extendspath using theexportsfield. The behavior should be similar enough to esbuild's main path resolution logic to work as expected.Note that esbuild always treats this
extendsimport as arequire()import since that's what TypeScript appears to do. Specifically therequirecondition will be active and theimportcondition will be inactive.Fix watch mode with
NODE_PATH(#3062)Node has a rarely-used feature where you can extend the set of directories that node searches for packages using the
NODE_PATHenvironment variable. While esbuild supports this too, previously a bug prevented esbuild's watch mode from picking up changes to imported files that were contained directly in aNODE_PATHdirectory. You're supposed to useNODE_PATHfor packages, but some people abuse this feature by putting files in that directory instead (e.g.node_modules/some-file.jsinstead ofnode_modules/some-pkg/some-file.js). The watch mode bug happens when you do this because esbuild first tries to readsome-file.jsas a directory and then as a file. Watch mode was incorrectly waiting forsome-file.jsto become a valid directory. This release fixes this edge case bug by changing watch mode to watchsome-file.jsas a file when this happens.npm/ini
v4.1.0Compare Source
Features
622106a#205 add "align" and "sort" options (#205) (@rquadling)dc64a1a#204 add bracketedArray option (#204) (@wraithgar)6a3cb38#199 add platform option to force line endings (#199) (@wraithgar, Francois-Xavier Kowalski)b363ae6#198 add newline option (#198) (@wraithgar, Francois-Xavier Kowalski)Bug Fixes
ad4b5d8#200 Refactored section split logic (#200) (@wraithgar, @platinumazure)5b5c9b7#123 residual space after section causes bad parsing (#123) (@Nautigsam)fa2c17e#201 ignore all whitespace lines (#201) (@wraithgar)postcss/postcss
v8.4.22Compare Source
node16(by Remco Haszing).npm/node-semver
v7.5.0Compare Source
Features
503a4e5#548 allow identifierBase to be false (#548) (@lsvalina)Bug Fixes
e219bb4#552 throw on bad version with correct error message (#552) (@wraithgar)fc2f3df#546 incorrect results from diff sometimes with prerelease versions (#546) (@tjenkinson)2781767#547 avoid re-instantiating SemVer during diff compare (#547) (@macno)webpack/webpack-dev-server
v4.13.3Compare Source
Configuration
📅 Schedule: Branch creation - "after 10:00pm every weekday,before 4:00am every weekday,every weekend" in timezone America/Tijuana, Automerge - At any time (no schedule defined).
🚦 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 has been generated by Renovate Bot.