build: update all non-major dependencies#24176
Merged
alan-agius4 merged 1 commit intoangular:mainfrom Nov 7, 2022
Merged
Conversation
5f4a622 to
f21a2be
Compare
alan-agius4
approved these changes
Nov 3, 2022
01d7faf to
676e402
Compare
676e402 to
698d4b3
Compare
|
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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:
7.19.6->7.20.27.19.6->7.20.27.20.1->7.20.27.20.1->7.20.27.19.4->7.20.27.19.4->7.20.2v1.15.0->v1.16.09.0.1->9.1.09.0.1->9.1.017.0.1->17.0.217.0.1->17.0.20.15.12->0.15.130.15.12->0.15.130.15.12->0.15.130.15.12->0.15.138.26.0->8.27.00.7.1->0.8.01.55.0->1.56.01.55.0->1.56.017.6.0->17.6.217.6.0->17.6.2Release Notes
babel/babel
v7.20.2Compare Source
🐛 Bug Fix
babel-core,babel-helper-create-class-features-plugin,babel-helper-module-transforms,babel-helper-plugin-utils,babel-helper-simple-access,babel-node,babel-plugin-transform-block-scoping,babel-plugin-transform-classes,babel-plugin-transform-react-constant-elements,babel-preset-env,babel-standalone,babel-types@babel/noderepl and enableno-use-before-definerule (@liuxingbaoyu)babel-plugin-transform-typescripttsSatisfiesExpressioncheck with different duplicated@babel/typesversions (@liuxingbaoyu)babel-parserparsertypings for plugins (@liuxingbaoyu)babel-generatorbabel-plugin-proposal-decorators,babel-plugin-proposal-object-rest-spread,babel-plugin-transform-jscriptbabel-plugin-transform-destructuringfor ( let { } = 0 ; 0 ; )(@liuxingbaoyu)aspect-build/bazel-lib
v1.16.0Compare Source
Using Bzlmod:
--experimental_enable_bzlmodin.bazelrc.MODULE.bazelfile:Using WORKSPACE
Paste this snippet into your file:
Optional toolchains:
What's Changed
Full Changelog: bazel-contrib/bazel-lib@v1.15.0...v1.16.0
babel/babel-loader
v9.1.0Compare Source
New features
Full Changelog: babel/babel-loader@v9.0.1...v9.1.0
npm/cacache
v17.0.2Compare Source
Bug Fixes
4a7382f#152 replace @npmcli/move-file with @npmcli/fs (@lukekarrys)evanw/esbuild
v0.15.13Compare Source
Add support for the TypeScript 4.9
satisfiesoperator (#2509)TypeScript 4.9 introduces a new operator called
satisfiesthat lets you check that a given value satisfies a less specific type without casting it to that less specific type and without generating any additional code at run-time. It looks like this:Before this existed, you could use a cast with
asto check that a value satisfies a less specific type, but that removes any additional knowledge that TypeScript has about that specific value:You can read more about this feature in TypeScript's blog post for 4.9 as well as the associated TypeScript issue for this feature.
This feature was implemented in esbuild by @magic-akari.
Fix watch mode constantly rebuilding if the parent directory is inaccessible (#2640)
Android is unusual in that it has an inaccessible directory in the path to the root, which esbuild was not originally built to handle. To handle cases like this, the path resolution layer in esbuild has a hack where it treats inaccessible directories as empty. However, esbuild's watch implementation currently triggers a rebuild if a directory previously encountered an error but the directory now exists. The assumption is that the previous error was caused by the directory not existing. Although that's usually the case, it's not the case for this particular parent directory on Android. Instead the error is that the directory previously existed but was inaccessible.
This discrepancy between esbuild's path resolution layer and its watch mode was causing watch mode to rebuild continuously on Android. With this release, esbuild's watch mode instead checks for an error status change in the
readdirfile system call, so watch mode should no longer rebuild continuously on Android.Apply a fix for a rare deadlock with the JavaScript API (#1842, #2485)
There have been reports of esbuild sometimes exiting with an "all goroutines are asleep" deadlock message from the Go language runtime. This issue hasn't made much progress until recently, where a possible cause was discovered (thanks to @jfirebaugh for the investigation). This release contains a possible fix for that possible cause, so this deadlock may have been fixed. The fix cannot be easily verified because the deadlock is non-deterministic and rare. If this was indeed the cause, then this issue only affected the JavaScript API in situations where esbuild was already in the process of exiting.
In detail: The underlying cause is that Go's
sync.WaitGroupAPI for waiting for a set of goroutines to finish is not fully thread-safe. Specifically it's not safe to callAdd()concurrently withWait()when the wait group counter is zero due to a data race. This situation could come up with esbuild's JavaScript API when the host JavaScript process closes the child process's stdin and the child process (with no active tasks) callsWait()to check that there are no active tasks, at the same time as esbuild's watchdog timer callsAdd()to add an active task (that pings the host to see if it's still there). The fix in this release is to avoid callingAdd()once we learn that stdin has been closed but before we callWait().eslint/eslint
v8.27.0Compare Source
Features
f14587cfeat: newno-new-native-nonconstructorrule (#16368) (Sosuke Suzuki)978799bfeat: add new ruleno-empty-static-block(#16325) (Sosuke Suzuki)69216eefeat: no-empty suggest to add comment in empty BlockStatement (#16470) (Nitin Kumar)319f0a5feat: usecontext.languageOptions.ecmaVersionin core rules (#16458) (Milos Djermanovic)Bug Fixes
c3ce521fix: Ensure unmatched glob patterns throw an error (#16462) (Nicholas C. Zakas)886a038fix: handle files with unspecified path ingetRulesMetaForResults(#16437) (Francesco Trotta)Documentation
ce93b42docs: Stylelint property-no-unknown (#16497) (Nick Schonning)d2cecb4docs: Stylelint declaration-block-no-shorthand-property-overrides (#16498) (Nick Schonning)0a92805docs: stylelint color-hex-case (#16496) (Nick Schonning)74a5af4docs: fix stylelint error (#16491) (Milos Djermanovic)324db1adocs: explicit stylelint color related rules (#16465) (Nick Schonning)94dc4f1docs: use Stylelint for HTML files (#16468) (Nick Schonning)cc6128ddocs: enable stylelint declaration-block-no-duplicate-properties (#16466) (Nick Schonning)d03a8bfdocs: Add heading to justification explanation (#16430) (Maritaria)8a15968docs: add Stylelint configuration and cleanup (#16379) (Nick Schonning)9b0a469docs: note commit messages don't support scope (#16435) (Andy Edwards)1581405docs: improve context.getScope() docs (#16417) (Ben Perlmutter)b797149docs: update formatters template (#16454) (Milos Djermanovic)5ac4de9docs: fix link to formatters on the Core Concepts page (#16455) (Vladislav)33313efdocs: core-concepts: fix link to semi rule (#16453) (coderaiser)bazelbuild/rules_pkg
v0.8.0Compare Source
New Features
Fixes #20
Bug Fixes
--incompatible_config_setting_private_default_visibilitysass/dart-sass
v1.56.0Compare Source
Potentially breaking change: To match the CSS spec, SassScript expressions
beginning with
notor(are no longer supported at the beginning ofparenthesized sections of media queries. For example,
@​media (width >= 500px) and (not (grid))will now be emitted unchanged, instead of producing
@​media (width >= 500px) and (false)See the Sass website for details.
Potentially breaking bug fix: Angle units like
radorturnare nowproperly converted to equivalent
degvalues forhsl(),hsla(),adjust-hue(),color.adjust(), andcolor.change().See the Sass website for
details.
Fix indentation for selectors that span multiple lines in a
@mediaquery.Emit a deprecation warning when passing
$alphavalues with units tocolor.adjust()orcolor.change(). This will be an error in Dart Sass2.0.0.
See the Sass website for
details.
Emit a deprecation warning when passing a
$weightvalue with no units orwith units other than
%tocolor.mix(). This will be an error in Dart Sass2.0.0.
See the Sass website for
details.
Emit a deprecation warning when passing
$nvalues with units tolist.nth()or
list.set-nth(). This will be an error in Dart Sass 2.0.0.See the Sass website for
details.
Improve existing deprecation warnings to wrap
/-as-division suggestions incalc()expressions.Properly mark the warning for passing numbers with units to
random()as adeprecation warning.
Fix a bug where
@extendcould behave unpredicatably when used along withmeta.load-css()and shared modules that contained no CSS themselves butloaded CSS from other modules.
Dart API
sassIndexwith units toValue.sassIndexToListIndex(). This will be an error in Dart Sass 2.0.0.JS API
Importer results now validate whether
contentsis actually a string type.Importer result argument errors are now rendered correctly.
yargs/yargs
v17.6.2Compare Source
Bug Fixes
v17.6.1Compare Source
Bug Fixes
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.