eltwallet
eltwallet copied to clipboard
Update react monorepo
This PR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
react (source) | dependencies | minor | 16.4.1 -> 16.11.0 |
react-native (changelog) | dependencies | minor | 0.56.0 -> 0.61.4 |
Release Notes
facebook/react
v16.11.0
React DOM
- Fix
mouseenter
handlers from firing twice inside nested React containers. @yuanoook in #16928 - Remove
unstable_createRoot
andunstable_createSyncRoot
experimental APIs. (These are available in the Experimental channel ascreateRoot
andcreateSyncRoot
.) (@acdlite in #17088)
v16.10.2
React DOM
- Fix regression in react-native-web by restoring order of arguments in event plugin extractors (@necolas in #16978)
v16.10.1
React DOM
- Fix regression in Next.js apps by allowing Suspense mismatch during hydration to silently proceed (@sebmarkbage in #16943)
v16.10.0
React DOM
- Fix edge case where a hook update wasn't being memoized. (@sebmarkbage in #16359)
- Fix heuristic for determining when to hydrate, so we don't incorrectly hydrate during an update. (@sebmarkbage in #16739)
- Clear additional fiber fields during unmount to save memory. (@trueadm in #16807)
- Fix bug with required text fields in Firefox. (@halvves in #16578)
- Prefer
Object.is
instead of inline polyfill, when available. (@ku8ar in #16212) - Fix bug when mixing Suspense and error handling. (@acdlite in #16801)
Scheduler (Experimental)
- Improve queue performance by switching its internal data structure to a min binary heap. (@acdlite in #16245)
- Use
postMessage
loop with short intervals instead of attempting to align to frame boundaries withrequestAnimationFrame
. (@acdlite in #16214)
useSubscription
- Avoid tearing issue when a mutation happens and the previous update is still in progress. (@bvaughn in #16623)
v16.9.0
React
- Add
<React.Profiler>
API for gathering performance measurements programmatically. (@bvaughn in #15172) - Remove
unstable_ConcurrentMode
in favor ofunstable_createRoot
. (@acdlite in #15532)
React DOM
- Deprecate old names for the
UNSAFE_*
lifecycle methods. (@bvaughn in #15186 and @threepointone in #16103) - Deprecate
javascript:
URLs as a common attack surface. (@sebmarkbage in #15047) - Deprecate uncommon "module pattern" (factory) components. (@sebmarkbage in #15145)
- Add support for the
disablePictureInPicture
attribute on<video>
. (@eek in #15334) - Add support for
onLoad
event for<embed>
. (@cherniavskii in #15614) - Add support for editing
useState
state from DevTools. (@bvaughn in #14906) - Add support for toggling Suspense from DevTools. (@gaearon in #15232)
- Warn when
setState
is called fromuseEffect
, creating a loop. (@gaearon in #15180) - Fix a memory leak. (@paulshen in #16115)
- Fix a crash inside
findDOMNode
for components wrapped in<Suspense>
. (@acdlite in #15312) - Fix pending effects from being flushed too late. (@acdlite in #15650)
- Fix incorrect argument order in a warning message. (@brickspert in #15345)
- Fix hiding Suspense fallback nodes when there is an
!important
style. (@acdlite in #15861 and #15882) - Slightly improve hydration performance. (@bmeurer in #15998)
React DOM Server
React Test Utilities and Test Renderer
- Add
act(async () => ...)
for testing asynchronous state updates. (@threepointone in #14853) - Add support for nesting
act
from different renderers. (@threepointone in #16039 and #16042) - Warn in Strict Mode if effects are scheduled outside an
act()
call. (@threepointone in #15763 and #16041) - Warn when using
act
from the wrong renderer. (@threepointone in #15756)
ESLint Plugin: React Hooks
v16.8.6
React DOM
- Fix an incorrect bailout in
useReducer()
. (@acdlite in #15124) - Fix iframe warnings in Safari DevTools. (@renanvalentin in #15099)
- Warn if
contextType
is set toContext.Consumer
instead ofContext
. (@aweary in #14831) - Warn if
contextType
is set to invalid values. (@gaearon in #15142)
v16.8.5
React DOM
- Don't set the first option as selected in select tag with
size
attribute. (@kulek1 in #14242) - Improve the
useEffect(async () => ...)
warning message. (@gaearon in #15118) - Improve the error message sometimes caused by duplicate React. (@jaredpalmer in #15139)
React DOM Server
React Shallow Renderer
- Fix
setState
in shallow renderer to work with Hooks. (@gaearon in #15120) - Fix shallow renderer to support
React.memo
. (@aweary in #14816) - Fix shallow renderer to support Hooks inside
forwardRef
. (@eps1lon in #15100)
v16.8.4
React DOM and other renderers
- Fix a bug where DevTools caused a runtime error when inspecting a component that used a
useContext
hook. (@bvaughn in #14940)
v16.8.3
React DOM
- Fix a bug that caused inputs to behave incorrectly in UMD builds. (@gaearon in #14914)
- Fix a bug that caused render phase updates to be discarded. (@gaearon in #14852)
React DOM Server
- Unwind the context stack when a stream is destroyed without completing, to prevent incorrect values during a subsequent render. (@overlookmotel in #14706)
ESLint Plugin for React Hooks
v16.8.2
React DOM
- Fix
ReactDOM.render
being ignored insideuseEffect
. (@gaearon in #14799) - Fix a crash when unmounting empty portals. (@gaearon in #14820)
- Fix
useImperativeHandle
to work correctly when no deps are specified. (@gaearon in #14801) - Fix
crossOrigin
attribute to work in SVGimage
elements. (@aweary in #14832) - Fix a false positive warning when using Suspense with Hooks. (@gaearon in #14821)
React Test Utils and React Test Renderer
- Include component stack into the
act()
warning. (@threepointone in #14855)
v16.8.1
React DOM and React Test Renderer
React Test Utils
- Fix a crash in Node environment. (@threepointone in #14768)
v16.8.0
React
- Add Hooks — a way to use state and other React features without writing a class. (@acdlite et al. in #13968)
- Improve the
useReducer
Hook lazy initialization API. (@acdlite in #14723)
React DOM
- Bail out of rendering on identical values for
useState
anduseReducer
Hooks. (@acdlite in #14569) - Use
Object.is
algorithm for comparinguseState
anduseReducer
values. (@Jessidhia in #14752) - Don’t compare the first argument passed to
useEffect
/useMemo
/useCallback
Hooks. (@acdlite in #14594) - Support synchronous thenables passed to
React.lazy()
. (@gaearon in #14626) - Render components with Hooks twice in Strict Mode (DEV-only) to match class behavior. (@gaearon in #14654)
- Warn about mismatching Hook order in development. (@threepointone in #14585 and @acdlite in #14591)
- Effect clean-up functions must return either
undefined
or a function. All other values, includingnull
, are not allowed. @acdlite in #14119
React Test Renderer and Test Utils
- Support Hooks in the shallow renderer. (@trueadm in #14567)
- Fix wrong state in
shouldComponentUpdate
in the presence ofgetDerivedStateFromProps
for Shallow Renderer. (@chenesan in #14613) - Add
ReactTestRenderer.act()
andReactTestUtils.act()
for batching updates so that tests more closely match real behavior. (@threepointone in #14744)
ESLint Plugin: React Hooks
- Initial release. (@calebmer in #13968)
- Fix reporting after encountering a loop. (@calebmer and @Yurickh in #14661)
- Don't consider throwing to be a rule violation. (@sophiebits in #14040)
v16.7.0
React DOM
- Fix performance of
React.lazy
for large numbers of lazily-loaded components. (@acdlite in #14429) - Clear fields on unmount to avoid memory leaks. (@trueadm in #14276)
- Fix bug with SSR and context when mixing
react-dom/[email protected]
andreact@<16.6
. (@gaearon in #14291) - Fix a performance regression in profiling mode. (@bvaughn in #14383)
Scheduler (Experimental)
- Post to MessageChannel instead of window. (@acdlite in #14234)
- Reduce serialization overhead. (@developit in #14249)
- Fix fallback to
setTimeout
in testing environments. (@bvaughn in #14358) - Add methods for debugging. (@mrkev in #14053)
v16.6.3
React DOM
- Fix bugs in
Suspense
andlazy
. (@acdlite in #14133, #14157, and #14164) - Fix highlighting of
React.memo
updates in React DevTools. (@bvaughn in #14141) - Fix interaction of Suspense with the React Profiler. (@bvaughn in #14065)
- Fix a false positive warning when using Suspense. (@acdlite in #14158)
React DOM Server
- Fix incorrect sharing of context state between
renderToNodeStream()
calls. (@sebmarkbage in #14182) - Add a warning about incorrect usage of the context API. (@trueadm in #14033)
v16.6.2
This release was published in a broken state and should be skipped.
v16.6.1
React DOM
- Fallback should not remount every time a promise resolves. (@acdlite in #14083)
- Fix bug where Suspense keeps showing fallback even after everything finishes loading. (@acdlite in #14083)
- Fix a crash when Suspense finishes loading in IE11. (@sophiebits in #14126)
- Fix unresolved default props in lifecycle methods of a lazy component. (@gaearon in #14112)
- Fix bug when recovering from an error thrown during complete phase. (@gaearon in #14104)
Scheduler (Experimental)
v16.6.0
React
- Add
React.memo()
as an alternative toPureComponent
for functions. (@acdlite in #13748) - Add
React.lazy()
for code splitting components. (@acdlite in #13885) -
React.StrictMode
now warns about legacy context API. (@bvaughn in #13760) -
React.StrictMode
now warns aboutfindDOMNode
. (@sebmarkbage in #13841) - Rename
unstable_AsyncMode
tounstable_ConcurrentMode
. (@trueadm in #13732) - Rename
unstable_Placeholder
toSuspense
, anddelayMs
tomaxDuration
. (@gaearon in #13799 and @sebmarkbage in #13922)
React DOM
- Add
contextType
as a more ergonomic way to subscribe to context from a class. (@bvaughn in #13728) - Add
getDerivedStateFromError
lifecycle method for catching errors in a future asynchronous server-side renderer. (@bvaughn in #13746) - Warn when
<Context>
is used instead of<Context.Consumer>
. (@trueadm in #13829) - Fix gray overlay on iOS Safari. (@philipp-spiess in #13778)
- Fix a bug caused by overwriting
window.event
in development. (@sergei-startsev in #13697)
React DOM Server
- Add support for
React.memo()
. (@alexmckenley in #13855) - Add support for
contextType
. (@alexmckenley and @sebmarkbage in #13889)
Scheduler (Experimental)
- Rename the package to
scheduler
. (@gaearon in #13683) - Support priority levels, continuations, and wrapped callbacks. (@acdlite in #13720 and #13842)
- Improve the fallback mechanism in non-DOM environments. (@acdlite in #13740)
- Schedule
requestAnimationFrame
earlier. (@acdlite in #13785) - Fix the DOM detection to be more thorough. (@trueadm in #13731)
- Fix bugs with interaction tracing. (@bvaughn in #13590)
- Add the
envify
transform to the package. (@mridgway in #13766)
v16.5.2
React DOM
- Fixed a recent
<iframe>
regression (@JSteunou in #13650) - Fix
updateWrapper
so that<textarea>
s no longer re-render when data is unchanged (@joelbarbosa in #13643)
Schedule (Experimental)
- Renaming "tracking" API to "tracing" (@bvaughn in #13641)
- Add UMD production+profiling entry points (@bvaughn in #13642)
- Refactored
schedule
to remove some React-isms and improve performance for when deferred updates time out (@acdlite in #13582)
v16.5.1
React
- Improve the warning when
React.forwardRef
receives an unexpected number of arguments. (@andresroberto in #13636)
React DOM
- Fix a regression in unstable exports used by React Native Web. (@aweary in #13598)
- Fix a crash when component defines a method called
isReactComponent
. (@gaearon in #13608) - Fix a crash in development mode in IE9 when printing a warning. (@link-alex in #13620)
- Provide a better error message when running
react-dom/profiling
withschedule/tracking
. (@bvaughn in #13605) - If a
ForwardRef
component defines adisplayName
, use it in warnings. (@probablyup in #13615)
Schedule (Experimental)
v16.5.0
React
- Add a warning if
React.forwardRef
render function doesn't take exactly two arguments (@bvaughn in #13168) - Improve the error message when passing an element to
createElement
by mistake (@DCtheTall in #13131) - Don't call profiler
onRender
until after mutations (@bvaughn in #13572)
React DOM
- Add support for React DevTools Profiler (@bvaughn in #13058)
- Add
react-dom/profiling
entry point alias for profiling in production (@bvaughn in #13570) - Add
onAuxClick
event for browsers that support it (@jquense in #11571) - Add
movementX
andmovementY
fields to mouse events (@jasonwilliams in #9018) - Add
tangentialPressure
andtwist
fields to pointer events (@motiz88 in #13374) - Minimally support iframes (nested browsing contexts) in selection event handling (@acusti in #12037)
- Support passing booleans to the
focusable
SVG attribute (@gaearon in #13339) - Ignore
<noscript>
on the client when hydrating (@Ephem in #13537) - Fix
gridArea
to be treated as a unitless CSS property (@mgol in #13550) - Fix incorrect data in
compositionend
event when typing Korean on IE11 (@crux153 in #12563) - Fix a crash when using dynamic
children
in the<option>
tag (@Slowyn in #13261, @gaearon in #13465) - Fix the
checked
attribute not getting initially set on theinput
(@dilidili in #13114) - Fix hydration of
dangerouslySetInnerHTML
when__html
is not a string (@gaearon in #13353) - Fix a warning about missing controlled
onChange
to fire on falsy values too (@nicolevy in #12628) - Fix
submit
andreset
buttons getting an empty label (@ellsclytn in #12780) - Fix the
onSelect
event not being triggered after drag and drop (@gaearon in #13422) - Fix the
onClick
event not working inside a portal on iOS (@aweary in #11927) - Fix a performance issue when thousands of roots are re-rendered (@gaearon in #13335)
- Fix a performance regression that also caused
onChange
to not fire in some cases (@gaearon in #13423) - Handle errors in more edge cases gracefully (@gaearon in #13237 and @acdlite in #13269)
- Don't use proxies for synthetic events in development (@gaearon in #12171)
- Warn when
"false"
or"true"
is the value of a boolean DOM prop (@motiz88 in #13372) - Warn when
this.state
is initialized toprops
(@veekas in #11658) - Don't compare
style
on hydration in IE due to noisy false positives (@mgol in #13534) - Include
StrictMode
in the component stack (@gaearon in #13240) - Don't overwrite
window.event
in IE (@ConradIrwin in #11696) - Improve component stack for the
folder/index.js
naming convention (@gaearon in #12059) - Improve a warning when using
getDerivedStateFromProps
without initialized state (@flxwu in #13317) - Improve a warning about invalid textarea usage (@raunofreiberg in #13361)
- Treat invalid Symbol and function values more consistently (@raunofreiberg in #13362 and #13389)
- Allow Electron
<webview>
tag without warnings (@philipp-spiess in #13301) - Don't show the uncaught error addendum if
e.preventDefault()
was called (@gaearon in #13384) - Warn about rendering Generators (@gaearon in #13312)
- Remove irrelevant suggestion of a legacy method from a warning (@zx6658 in #13169)
- Remove
unstable_deferredUpdates
in favor ofunstable_scheduleWork
fromschedule
(@gaearon in #13488) - Fix unstable asynchronous mode from doing unnecessary work when an update takes too long (@acdlite in #13503)
React DOM Server
- Fix crash with nullish children when using
dangerouslySetInnerHtml
in a selected<option>
(@mridgway in #13078) - Fix crash when
setTimeout
is missing (@dustinsoftware in #13088)
React Test Renderer and Test Utils
- Fix
this
in a functional component for shallow renderer to beundefined
(@koba04 in #13144) - Deprecate a Jest-specific
ReactTestUtils.mockComponent()
helper (@bvaughn in #13193) - Warn about
ReactDOM.createPortal
usage within the test renderer (@bvaughn in #12895) - Improve a confusing error message (@gaearon in #13351)
React ART
- Add support for DevTools (@yunchancho in #13173)
Schedule (Experimental)
- New package for cooperatively scheduling work in a browser environment. It's used by React internally, but its public API is not finalized yet. (@flarnie in #12624)
v16.4.2
React DOM Server
-
Fix a potential XSS vulnerability when the attacker controls an attribute name (
CVE-2018-6341
). This fix is available in the latest[email protected]
, as well as in previous affected minor versions:[email protected]
,[email protected]
,[email protected]
, and[email protected]
. (@gaearon in #13302) -
Fix a crash in the server renderer when an attribute is called
hasOwnProperty
. This fix is only available in[email protected]
. (@gaearon in #13303)
facebook/react-native
v0.61.4
This release fixes a few minor issues that were reported by the community. You can view the complete changelog here.
You can participate in the conversation for the next patch release in the dedicated issue.
To help you upgrade to this version, you can use the new upgrade helper webtool ⚛️
You can find the whole changelog history over at react-native-releases
.
v0.61.3
This release fixes few minor issues that were reported by the community. You can view the complete changelog here.
You can participate in the conversation for the next patch release in the dedicated issue.
To help you upgrade to this version, you can use the new upgrade helper webtool ⚛️
You can find the whole changelog history over at react-native-releases
.
v0.61.2
This release fixes shadow issues that were happening on Android as well as improves StatusBar
API to better support iOS 13 dark mode.
Unfortunately, it re-introduces an issue with ripple effect not respecting borderRadius
. Consider using the workaround provided in the linked issue while we are working on a better solution.
You can participate in the conversation for the next patch release in the dedicated issue.
To help you upgrade to this version, you can use the new upgrade helper webtool ⚛️
You can find the whole changelog history over at react-native-releases
.
v0.61.1
This release fixes issues with react-native-gesture-handler
.
You can participate in the conversation for the next patch release in the dedicated issue.
To help you upgrade to this version, you can use the new upgrade helper webtool ⚛️
You can find the whole changelog history over at react-native-releases
.
v0.61.0
0.61 stable is here 🎉
Thanks to everyone who contributed and helped to get this together, everyone worked really hard and we hope you are as excited as we are 🤗
Some of the major changes that this version brings:
-
Whole new hot reloading experience, called "Fast refresh". It is turned on by default and can be accessed under the developer menu. Expect more details about this feature in the upcoming blog post.
-
React version has been updated to 16.9 -
0ccedf3
-
Better CocoaPods support with
use_frameworks!
Please refer to this issue for updates on the status of this release candidate - also, you can post here the link to the issues you have reported for this version so that they can be surfaced easily.
You can also test upgrading to this version using the upgrade helper webtool ⚛️
You can find the whole changelog history over at react-native-releases
.
v0.60.6
This is a small patch release with a commit to fix the build break in MSVC (thanks @acoates!) to help the users of react-native-windows.
You can participate to the conversation for the next patch release in the dedicated issue.
To help you upgrading to this version, you can use the new upgrade helper webtool ⚛️
You can find the whole changelog history over at react-native-releases
.
v0.60.5
This is a patch release that consist of a few commits requested in the dedicated conversation to improve the quality of the 0.60 release. Thanks to everyone who contributed!
Added
- Added a default Prettier config for new projects (f4d5e8c by @jpdriver)
Android specific
- Add showSoftInputOnFocus to TextInput (b476ca0)
Changed
- Bump CLI to ^2.6.0 (72473c7 by @thymikee)
Fixed
Android specific
- Fix
ClassNotFound
exception in Android during Release builds (ffdf3f2 by @thecodrr) - Remove unnecessary flag when running JS server (5a4fac7 by @thecodrr)
- Correctly set the border radius on android (feb931f by @cabelitos)
- Fix addition of comma at the end of accessibility labels on Android. (812abfd by @marcmulcahy)
iOS specific
- Don't call sharedApplication in App Extension (683908d by @zhongwuzw)
- Delete fishhook (95c747e by @mmmulani)
You can participate to the conversation for the next patch release in the dedicated issue.
To help you upgrading to this version, you can use the new upgrade helper webtool ⚛️
You can find the whole changelog history over at react-native-releases
.
v0.60.4
This is a patch release that contains two more Hermes related fixes, thanks to the contributors for helping improving the support!
- Generate correct source map if hermes not enabled (
b1f81be
by @HazAT) - Generate source maps outside of assets/ (
60e75dc
by @motiz88)
You can participate to the conversation for the next patch release in the dedicated issue.
To help you upgrading to this version, you can use the new upgrade helper webtool ⚛️
You can find the whole changelog history over at react-native-releases
.
v0.60.3
This is a patch release that fixes the binary path to Hermes package, thanks to @zoontek for creating the PR!
You can participate to the conversation for the next patch release in the dedicated issue.
To help you upgrading to this version, you can use the new upgrade helper webtool ⚛️
You can find the whole changelog history over at react-native-releases
.
v0.60.2
This patch release includes the Hermes JavaScript Engine announced at Chain React Conf 2019: https://github.com/facebook/hermes
Check out the documentation to opt-in and give Hermes a try: https://facebook.github.io/react-native/docs/hermes
v0.60.1
This is a patch release that includes the Hermes JavaScript Engine announced at Chain React Conf 2019.
Check out the documentation to opt-in and give Hermes a try!
You can participate to the conversation for the next patch release in the dedicated issue.
To help you upgrading to this version, you can use the new upgrade helper webtool ⚛️
You can find the whole changelog history over at react-native-releases
.
v0.60.0
0.60 stable is here 🎉
Check out the dedicated release blog post 📝
Thanks to everyone who contributed and helped getting this together, everyone worked really hard and we hope you are as excited as we are 🤗
Highlights of changes:
- AndroidX support (this will be a Breaking Change!)
- Full removal of WebView & Geolocation, you now need to rely on the extracted versions
- CocoaPods integration by default
- Autolinking of packages
And much much more! The full list of changes can be found in the changelog.
You can participate to the conversation for the next patch release in the dedicated issue.
To help you upgrading to this version, you can use the new upgrade helper webtool ⚛️
You can find the whole changelog history over at react-native-releases
.
v0.59.10
This is likely the last patch release for version 59 of React Native for the foreseeable future: it contains an important Android side update for the JavaScript Core, to prevent a great number of crashes mostly related to Samsung devices - thanks to @kudo for his work on fixing this!
Thanks everyone who participated in the discussion.
And we hope you are getting ready for 0.60.0, as it's coming soon and it will be packed with exciting new features and improvements 🚀
You can find the whole changelog history over at react-native-releases
.
v0.59.9
This is a patch fix release addressing a couple ScrollView regressions, and "future-proof" RN 59 from crashes caused by upgrading Gradle (now can support up to 5.4.1 & 3.4.0 for the plugin) and Xcode 11 Beta 1. You can upgrade to this version without upgrading your tooling.
Thanks everyone who contributed code or participated in the discussion for cherry-picking commits. You can participate to the conversation for the next patch release in the dedicated issue.
Changed
-
If
isInteraction
is not specified in the config, it would always default totrue
which would block interactions like VirtualizedList updates. This is generally not what you want with useNativeDriver since the animation won't be interrupted by JS. If something does end up interfering with an animation and causes frame drops,isInteraction
can be set manually. (ded7119 by @sahrens)
Android specific
- Bump Gradle to 5.4.1 & Android Gradle plugin to 3.4.0 (2282c15, 4652392, 184108f, deb41eb by @dulmandakh)
Fixed
- Fixes wrong time unit of scroll event throttle (ebe2827 by @zhongwuzw)
Android specific
iOS specific
- Fix Xcode 11 Beta 1 builds (52cda84 by @ericlewis)
You can find the whole changelog history over at react-native-releases
.
v0.59.8
This is a patch fix release addressing regressions, crashes, and a few developer-experience pain points (in particular, check the KeyboardAvoidingView
change). Thanks everyone who contributed code or participated in the discussion for cherry-picking commits.
Fixed
- Fix regexp on
hasteImpl
(bcd1e2 by @CaptainNic) - Fix sparse array handling in
EventEmitter#listeners()
(f68dc8 by @ide) - Fix VirtualizedList to call
_updateViewableItems
immediately (08141e by @sahrens) - Fix prop overrides of TouchableWithoutFeedback (0c4206 by @aleclarson)
- Fix resolve relative size rendering error in inspector (4884ab by @gandreadis)
- Fix VirtualizedSectionList by making sure to check array bounds (54f91d by @vonovak)
- Update
_scrollAnimatedValue
offset of ScrollView (e0d1b3 by @miyabi) - Fix infinite
setState
in VirtualizedList (c40a93 by @sahrens)
iOS specific
Renovate configuration
:date: Schedule: At any time (no schedule defined).
:vertical_traffic_light: Automerge: Disabled by config. Please merge this manually once you are satisfied.
:recycle: Rebasing: Whenever PR becomes conflicted, or if you modify the PR title to begin with "rebase!
".
:ghost: Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
- [ ] If you want to rebase/retry this PR, check this box
This PR has been generated by Renovate Bot. View repository job log here.