build: update all non-major dependencies #21861
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:
4.32.0->4.33.04.32.0->4.33.03.18.1->3.18.20.13.3->0.13.40.13.3->0.13.48.1.5->8.2.04.1.1->4.1.22.3.0->2.4.18.3.8->8.3.95.55.1->5.57.14.3.0->4.3.1Release Notes
typescript-eslint/typescript-eslint
v4.33.0Compare Source
Note: Version bump only for package @typescript-eslint/parser
zloirock/core-js
v3.18.2Compare Source
{ Array, %TypedArray% }.fromAsyncerrors moved to the promise, per the latest changes of the spec draftToInteger(OrInfinity)operation returns+0for-0argument, ES2020+ updateNumberconstructor wrapperString.rawwith extra argumentsevanw/esbuild
v0.13.4Compare Source
Fix permission issues with the install script (#1642)
The
esbuildpackage contains a small JavaScript stub file that implements the CLI (command-line interface). Its only purpose is to spawn the binary esbuild executable as a child process and forward the command-line arguments to it.The install script contains an optimization that replaces this small JavaScript stub with the actual binary executable at install time to avoid the overhead of unnecessarily creating a new
nodeprocess. This optimization can't be done at package publish time because there is only oneesbuildpackage but there are many supported platforms, so the binary executable for the current platform must live outside of theesbuildpackage.However, the optimization was implemented with an unlink operation followed by a link operation. This means that if the first step fails, the package is left in a broken state since the JavaScript stub file is deleted but not yet replaced.
With this release, the optimization is now implemented with a link operation followed by a rename operation. This should always leave the package in a working state even if either step fails.
Add a fallback for
npm install esbuild --no-optional(#1647)The installation method for esbuild's platform-specific binary executable was recently changed in version 0.13.0. Before that version esbuild downloaded it in an install script, and after that version esbuild lets the package manager download it using the
optionalDependenciesfeature inpackage.json. This change was made because downloading the binary executable in an install script never really fully worked. The reasons are complex but basically there are a variety of edge cases where people people want to install esbuild in environments that they have customized such that downloading esbuild isn't possible. UsingoptionalDependenciesinstead lets the package manager deal with it instead, which should work fine in all cases (either that or your package manager has a bug, but that's not esbuild's problem).There is one case where this new installation method doesn't work: if you pass the
--no-optionalflag to npm to disable theoptionalDependenciesfeature. If you do this, you prevent esbuild from being installed. This is not a problem with esbuild because you are manually enabling a flag to change npm's behavior such that esbuild doesn't install correctly. However, people still want to do this.With this release, esbuild will now fall back to the old installation method if the new installation method fails. THIS MAY NOT WORK. The new
optionalDependenciesinstallation method is the only supported way to install esbuild with npm. The old downloading installation method was removed because it doesn't always work. The downloading method is only being provided to try to be helpful but it's not the supported installation method. If you pass--no-optionaland the download fails due to some environment customization you did, the recommended fix is to just remove the--no-optionalflag.Support the new
.mtsand.ctsTypeScript file extensionsThe upcoming version 4.5 of TypeScript has two new file extensions:
.mtsand.cts. Files with these extensions can be imported using the.mjsand.cjs, respectively. So the statementimport "./foo.mjs"in TypeScript can actually succeed even if the file./foo.mjsdoesn't exist on the file system as long as the file./foo.mtsdoes exist. The import path with the.mjsextension is automatically re-routed to the corresponding file with the.mtsextension at type-checking time by the TypeScript compiler. See the TypeScript 4.5 beta announcement for details.With this release, esbuild will also automatically rewrite
.mjsto.mtsand.cjsto.ctswhen resolving import paths to files on the file system. This should make it possible to bundle code written in this new style. In addition, the extensions.mtsand.ctsare now also considered valid TypeScript file extensions by default along with the.tsextension.Fix invalid CSS minification of
marginandpadding(#1657)CSS minification does collapsing of
marginandpaddingrelated properties. For example:However, while this works for the
autokeyword, it doesn't work for other keywords. For example:Transforming this to
div{margin:5px inherit inherit 5px}, as was done in previous releases of esbuild, is an invalid transformation and results in incorrect CSS. This release of esbuild fixes this CSS transformation bug.SBoudrias/Inquirer.js
v8.2.0Compare Source
checkboxprompt: Update the help message to be more complete. And the help message is now shown until a selection is made.webpack-contrib/mini-css-extract-plugin
v2.4.1Compare Source
v2.4.0Compare Source
Performance
5.52.0(recommended latest stable), for older versions the old API will be used (except explicit enabling of theexperimentalUseImportModuleoption)Features
supports()andlayer()in@importat-rule (#843) (e751080)Bug Fixes
exportLocalsConventionoption (#844) (0f8d501)postcss/postcss
v8.3.9Compare Source
nanocolorstopicocolors.webpack/webpack
v5.57.1Compare Source
Bugfix
v5.57.0Compare Source
Performance
Bugfixes
v5.56.1Compare Source
Bugfix
v5.56.0Compare Source
Performance
webpack/webpack-dev-server
v4.3.1Compare Source
Configuration
📅 Schedule: "after 10pm every weekday,before 4am every weekday,every weekend" in timezone America/Tijuana.
🚦 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 WhiteSource Renovate. View repository job log here.