build: update all non-major dependencies #21993
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.2.2
->4.2.3
5.1.0
->5.2.0
5.1.0
->5.2.0
8.2.2
->8.2.3
3.18.3
->3.19.0
0.0.12
->0.0.14
6.4.0
->6.5.0
0.13.8
->0.13.9
0.13.8
->0.13.9
8.0.1
->8.1.0
7.0.2
->7.0.4
2.4.2
->2.4.3
13.0.0-rc.1
->13.0.0-rc.3
8.3.0
->8.4.0
8.3.9
->8.3.11
1.43.2
->1.43.4
5.1.6
->5.2.0
5.59.0
->5.60.0
Release Notes
bazelbuild/buildtools
v4.2.3
Compare Source
bzl-visibility
warning for javateststypescript-eslint/typescript-eslint
v5.2.0
Compare Source
Note: Version bump only for package @typescript-eslint/parser
babel/babel-loader
v8.2.3
Compare Source
This release fixes compatibility with Node.js 17
Thanks @Reptarsrage!
zloirock/core-js
v3.19.0
Compare Source
core-js
for preventing possible cases of breaking / observing the internal state by patching / deleting of them.call
/.apply
prototype methods that could be patchedinstanceof
operator - implicit.prototype
/@@​hasInstance
access that could be patchedRegExp#test
,String#match
and some over methods - implicit.exec
andRegExp
well-known symbols access that could be patchedError
stack from extra entries experimentally added toAggregateError
, #996, in case lack of problems it will be extended to other casesSymbol
support, new well-known symbols created with usageSymbol.for
for ensuring the same keys in different realms, #998process
polyfill bug that incorrectly reports V8 version that's used in some cases ofcore-js
feature detectionmessage
AggregateError
argumentMath.scale
, a spec draft bugcore-js-builder
work in NodeJS 17, added a workaround ofwebpack
+ NodeJS 17 issueGoogleChromeLabs/critters
v0.0.14
Compare Source
v0.0.13
Compare Source
This fixes a bug in
critters@0.0.12
where HTTP (as opposed to HTTPS) remote stylesheets were not skipped (thanks @alan-agius4 - #83)Full Changelog: GoogleChromeLabs/critters@critters-0.0.12...critters-0.0.13
webpack-contrib/css-loader
v6.5.0
Compare Source
Features
url()
whenexperiments.buildHttp
enabled (#1389) (8946be4)Bug Fixes
nosources
in thedevtool
option (c60eff2)evanw/esbuild
v0.13.9
Compare Source
Add support for
imports
inpackage.json
(#1691)This release adds basic support for the
imports
field inpackage.json
. It behaves similarly to theexports
field but only applies to import paths that start with#
. Theimports
field provides a way for a package to remap its own internal imports for itself, while theexports
field provides a way for a package to remap its external exports for other packages. This is useful because theimports
field respects the currently-configured conditions which means that the import mapping can change at run-time. For example:Now that esbuild supports this feature too, import paths starting with
#
and any provided conditions will be respected when bundling:Fix using
npm rebuild
with theesbuild
package (#1703)Version 0.13.4 accidentally introduced a regression in the install script where running
npm rebuild
multiple times could fail after the second time. The install script creates a copy of the binary executable usinglink
followed byrename
. Usinglink
creates a hard link which saves space on the file system, andrename
is used for safety since it atomically replaces the destination.However, the
rename
syscall has an edge case where it silently fails if the source and destination are both the same link. This meant that the install script would fail after being run twice in a row. With this release, the install script now deletes the source after callingrename
in case it has silently failed, so this issue should now be fixed. It should now be safe to usenpm rebuild
with theesbuild
package.Fix invalid CSS minification of
border-radius
(#1702)CSS minification does collapsing of
border-radius
related properties. For example:However, this only works for numeric tokens, not identifiers. For example:
Transforming this to
div{border-radius:inherit 1px 1px}
, 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.eslint/eslint
v8.1.0
Compare Source
446b4b3
Docs: Update commit message format docs (#15200) (Nicholas C. Zakas)d9d84a0
Fix: keyword-spacing conflict with space-infix-ops on>
(fixes #14712) (#15172) (Milos Djermanovic)a1f7ad7
Fix: allowbaseConfig
to extend preloaded plugin config (fixes #15079) (#15187) (Milos Djermanovic)3d370fb
New: Add no-unused-private-class-members rule (fixes #14859) (#14895) (Tim van der Lippe)e926b17
New: Add name to RuleTester (#15179) (Gareth Jones)90a5b6b
Chore: improve performance of:function
selector (#15181) (Milos Djermanovic)31af1c8
Chore: fix counting of files in performance test (#15190) (Milos Djermanovic)1b87fa8
Build: add node v17 (#15193) (唯然)0fb3bb2
Docs: removeinstanceof
from keyword-spacing docs (#15180) (Milos Djermanovic)249a040
Upgrade:eslint-plugin-eslint-plugin
to v4 (#15169) (Bryan Mishkin)35f3254
Docs: Describe range in rule docs (fixes #14162) (#15174) (Nicholas C. Zakas)b5049c8
Chore: Update stale bot settings (#15173) (Nicholas C. Zakas)2b32f50
Docs: Fix typo in README.md (#15168) (Dmitriy Fishman)dd58cd4
Chore: migrate master to main (#15062) (Nitesh Seram)ec0f8e0
Chore: Add stale issue/PR checker (#15151) (Nicholas C. Zakas)2cfbd4b
Docs: Update README team and sponsors (ESLint Jenkins)typicode/husky
v7.0.4
Compare Source
No changes. Husky v7.0.3 was reverted, this version is the same as v7.0.2.
v7.0.3
Compare Source
webpack-contrib/mini-css-extract-plugin
v2.4.3
Compare Source
ng-packagr/ng-packagr
v13.0.0-rc.3
Compare Source
Bug Fixes
v13.0.0-rc.2
Compare Source
Bug Fixes
node-sass-tilde-importer
with custom sass importer (5cf363b), closes #2125sindresorhus/open
v8.4.0
Compare Source
b58fb1f
postcss/postcss
v8.3.11
Compare Source
v8.3.10
Compare Source
Maximum call stack
issue of some source maps (by Yeting Li).sass/dart-sass
v1.43.4
Compare Source
JS API
logger
option was ignored for therender()
function.v1.43.3
Compare Source
verdaccio/verdaccio
v5.2.0
Compare Source
Features
Bug Fixes
webpack/webpack
v5.60.0
Compare Source
Features
experiments.lazyCompilation
. e. g. port, https stuffBugfixes
output.hashFunction
used to persistent caching toobuildDependencies
Set correctly when loaders are added inbeforeLoaders
hookv5.59.1
Compare Source
Bugfixes
experiments.buildHttp
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.